How to deploy a Shiny app for production
Search Results
No results found.
_r_
How to deploy a Shiny app for production | R-bloggersNov 15, 2025
February 2025 Top 40 New CRAN PackagesMar 29, 2025
In February, one hundred fifty-nine new packages made it to CRAN. Here are my Top 40 picks in fifteen categories: Artificial Intelligence, Computational Methods, Ecology, Genomics, Health Sciences, Mathematics, Machine Learning, Medicine, Music,...
Efficient Data Structures in RMar 27, 2025
This article aims to explain the main data structures in R and how to use them.
https://www.r-bloggers.com/2025/03/the-ellmer-package-for-using-llms-with-r-is-a-game-changer-for-scientists-2/Mar 16, 2025
The ellmer package for using LLMs with R is a game changer for scientists Why is ellmer a game changer for scientists? In this tutorial we’ll look at how we can access LLM agents through API calls. We’ll use this skill for created structued data fro...
How to Deploy R ModelsFeb 11, 2025
This article will discuss simple ways to deploy and manage R models.
7 New Books added to Big Book of R [7/12/2024] | R-bloggersDec 7, 2024
I’m very happy to introduce 7 additions to the Big Book of R collection which now stands at almost 450 free, open-source R programming books. A special thanks to Gary and Lucca Scrucca for their submissions. In case you missed it, the Big Book of R bot is live on … The post 7 New Books added to Big Book of R [7/12/2024] appeared first on Oscar Baruffa.
How to Loop Through List in R with Base R and purrr: A Comprehensive Guide for Beginners | R-bloggersOct 22, 2024
Introduction R programming has become an essential tool in the world of data analysis, offering powerful capabilities for manipulating and analyzing complex datasets. One of the fundamental skills that beginner R programmers need to master is t...
The m=√p rule for random forests | R-bloggersOct 20, 2024
A couple of days ago, in our lab session, we discussed random forrests, and, since it was based on the example in ISLR, we had a quick discussion about the random choice of features, and the “” rule Interestingly, on that one, we can play a bit, and try all choices, and do it again, on a different train/test split, library(randomForest) library(ISLR2) set.seed(123) sim = function(t){ train = sample(nrow(Boston), size = nrow(Boston)*.7) subsim = function(i){ rf.boston
Supply Chain Analysis with R Using the planr Package | R-bloggersOct 20, 2024
Hey guys, welcome back to my R-tips newsletter. Supply chain management is essential in making sure that your company’s business runs smoothly. One of the key elements is managing inventory efficiently. Today, I’m going to show you how to estimate inve...
Better A/B testing with survival analysisJul 11, 2024
Pic by author - using DALL-E 3 When running experiments don’t forget to bring your survival kit I’ve already made the case in several blog posts (part 1, part 2, part 3) that using survival analysis can improve churn prediction. In this blog post I’ll ...
Race Charts In R: How To Visualize And Compare Change Over Time With GganimJun 25, 2024
So, you’ve mastered the basics of ggplot2 animation and are now looking for a real-world challenge? You’re in the right place. After reading this one, you’ll know how to download and visualize stock data change through something known as race charts. You can think of race charts as dynamic visualizations (typically bar charts) that display […] The post appeared first on appsilon.com/blog/.
Something a llttle different: Hexbin mapsJun 25, 2024
Something a llttle different: Hexbin maps by Jerry Tuttle I recently became acquainted with hexbin maps, so I thought I would experiment with one. In a hexbin map, each geographical region is represented by an equall...
Why you shouldn’t use boxplotsJun 9, 2024
Box plots are a very common tool in data visualization to show how your data is distributed. But they have a crucial flaw. Let’s find out what that flaw is. And if you’re interested in the video version of this blog post, you can find it here: ...
A Practical Guide to Data Normalization in RApr 3, 2024
Introduction Data normalization is a crucial preprocessing step in data analysis and machine learning workflows. It helps in standardizing the scale of numeric features, ensuring fair treatment to all variables regardless of their magnitude. In ...
Drawing 10 Million Points With ggplot: Clifford AttractorsFeb 22, 2024
For me, mathematics cultivates a perpetual state of wonder about the nature of mind, the limits of thoughts, and our place in this vast cosmos (Clifford A. Pickover - The Math Book: From Pythagoras to the 57th Dimension, 250 Milestones in the History of Mathematics) I am a big fan of Clifford Pickover and I
A quick introduction to machine learning in R with caretFeb 22, 2024
Click here to get stared with machine learning in R using caret.
Extending churn analysis to revenue forecasting using RFeb 22, 2024
In this article we will review application of clustering to customer order data in three parts. First, we will define the approach to developing the cluster model including derived predictors and dummy variables; second we will extend beyond a typical “churn” model by using the model in a cumulative fashion to predict customer re-ordering in… Read More »Extending churn analysis to revenue forecasting using R
3 Reasons to Learn CaretFeb 22, 2024
Machine learning is the study and application of algorithms that learn from and make predictions on data. From search results to self-driving cars, it has manifested itself in all areas of our lives and is one of the most exciting and fast-growing fields of research in the world of data science. The caret package, maintained by Max Kuhn, is the go-to package in the R community for predictive modeling and supervised learning. This widely used package provides a consistent interface to all of R's most powerful machine learning facilities. Need some more convincing? In this post, we explore 3 reasons why you should learn the caret package. Afterward, you can take DataCamp's Machine Learning Toolbox course taught by Zachary Deane-Mayer & Max Kuhn, co-authors of the caret package! 1. It can help you get a data science job Ever read through data science job postings and see words like "predictive modeling", "classification", "regression," or "machine learning"? Chances are if you are seeking a data science position, you will be expected to have experience and knowledge about all of these topics. Luckily, the caret package has you covered. The caret package is known as the "Swiss Army Knife" for machine learning with R; capable of performing many tasks with an intuitive, consistent format. Check out these recent data scientist job postings from Kaggle which are all seeking candidates with knowledge of R and machine learning: Data Scientist Analytics at Booking.com Data Scientist at Amazon.com Data Scientist at CVS Health 2. It's one of the most popular R packages The caret package receives over 38,000 direct downloads monthly making it one of the most popular packages in the R community. With that comes significant benefits including an abundant amount of documentation and helpful tutorials. You can install the Rdocumentation package to access helpful documentation and community examples directly in your R console. Simply copy and paste the following code: # Install and load RDocumentation for comprehensive help with R packages and functions install.packages("RDocumentation") library("RDocumentation") Of course, another benefit of learning a widely used package is that your colleagues are also likely using caret in their work - meaning you can collaborate on projects more easily. Additionally, caret is a dependent package for a large amount of additional machine learning and modeling packages as well. Understanding how caret works will make it easier and more fluid to learn even more helpful R packages. 3. It's easy to learn, but very powerful If you are a beginner R user, the caret package provides an easy interface for performing complex tasks. For example, you can train multiple different types of models with one easy, convenient format. You can also monitor various combinations of parameters and evaluate performance to understand their impact on the model you are trying to build. Additionally, the caret package helps you decide the most suitable model by comparing their accuracy and performance for a specific problem. Complete the code challenge below to see just how easy it is to to build models and predict values with caret. We've already gone ahead and split the mtcars dataset into a training set, train, and a test set,test. Both of these objects are available in the console. Your goal is to predict the miles per gallon of each car in the test dataset based on their weight. See for yourself how the caret package can handle this task with just two lines of code! eyJsYW5ndWFnZSI6InIiLCJwcmVfZXhlcmNpc2VfY29kZSI6IiAgICAgICAgIyBMb2FkIGNhcmV0IHBhY2thZ2VcbiAgICAgICAgICBsaWJyYXJ5KGNhcmV0KVxuICAgICAgICAjIHNldCBzZWVkIGZvciByZXByb2R1Y2libGUgcmVzdWx0c1xuICAgICAgICAgIHNldC5zZWVkKDExKVxuICAgICAgICAjIERldGVybWluZSByb3cgdG8gc3BsaXQgb246IHNwbGl0XG4gICAgICAgICAgc3BsaXQgPC0gcm91bmQobnJvdyhtdGNhcnMpICogLjgwKVxuXG4gICAgICAgICMgQ3JlYXRlIHRyYWluXG4gICAgICAgICAgdHJhaW4gPC0gbXRjYXJzWzE6c3BsaXQsIF1cblxuICAgICAgICAjIENyZWF0ZSB0ZXN0XG4gICAgICAgICAgdGVzdCA8LSBtdGNhcnNbKHNwbGl0ICsgMSk6bnJvdyhtdGNhcnMpLCBdIiwic2FtcGxlIjoiIyBGaW5pc2ggdGhlIG1vZGVsIGJ5IHJlcGxhY2luZyB0aGUgYmxhbmsgd2l0aCB0aGUgYHRyYWluYCBvYmplY3Rcbm10Y2Fyc19tb2RlbCA8LSB0cmFpbihtcGcgfiB3dCwgZGF0YSA9IF9fXywgbWV0aG9kID0gXCJsbVwiKVxuXG4jIFByZWRpY3QgdGhlIG1wZyBvZiBlYWNoIGNhciBieSByZXBsYWNpbmcgdGhlIGJsYW5rIHdpdGggdGhlIGB0ZXN0YCBvYmplY3RcbnJlc3VsdHMgPC0gcHJlZGljdChtdGNhcnNfbW9kZWwsIG5ld2RhdGEgPSBfX18pXG4gICAgICAgXG4jIFByaW50IHRoZSBgcmVzdWx0c2Agb2JqZWN0XG5yZXN1bHRzIiwic29sdXRpb24iOiIjIEZpbmlzaCB0aGUgbW9kZWwgYnkgcmVwbGFjaW5nIHRoZSBibGFuayB3aXRoIHRoZSBgdHJhaW5gIG9iamVjdFxubXRjYXJzX21vZGVsIDwtIHRyYWluKG1wZyB+IHd0LCBkYXRhID0gdHJhaW4sIG1ldGhvZCA9IFwibG1cIilcblxuIyBQcmVkaWN0IHRoZSBtcGcgb2YgZWFjaCBjYXIgYnkgcmVwbGFjaW5nIHRoZSBibGFuayB3aXRoIHRoZSBgdGVzdGAgb2JqZWN0XG5yZXN1bHRzIDwtIHByZWRpY3QobXRjYXJzX21vZGVsLCBuZXdkYXRhID0gdGVzdClcbiAgICAgICBcbiMgUHJpbnQgdGhlIGByZXN1bHRzYCBvYmplY3RcbnJlc3VsdHMiLCJzY3QiOiJ0ZXN0X2V4cHJlc3Npb25fb3V0cHV0KFwibXRjYXJzX21vZGVsXCIsIGluY29ycmVjdF9tc2cgPSBcIlRoZXJlJ3Mgc29tZXRoaW5nIHdyb25nIHdpdGggYG10Y2Fyc19tb2RlbGAuIEhhdmUgeW91IHNwZWNpZmllZCB0aGUgcmlnaHQgZm9ybXVsYSB1c2luZyB0aGUgYHRyYWluYCBkYXRhc2V0P1wiKVxuXG50ZXN0X2V4cHJlc3Npb25fb3V0cHV0KFwicmVzdWx0c1wiLCBpbmNvcnJlY3RfbXNnID0gXCJUaGVyZSdzIHNvbWV0aGluZyB3cm9uZyB3aXRoIGByZXN1bHRzYC4gSGF2ZSB5b3Ugc3BlY2lmaWVkIHRoZSByaWdodCBmb3JtdWxhIHVzaW5nIHRoZSBgcHJlZGljdCgpYCBmdW5jdGlvbiBhbmQgdGhlIGB0ZXN0YCBkYXRhc2V0P1wiKVxuXG5zdWNjZXNzX21zZyhcIkNvcnJlY3Q6IFNlZSBob3cgZWFzeSB0aGUgY2FyZXQgcGFja2FnZSBjYW4gYmU/XCIpIn0= Want to learn it for yourself? You're in luck! DataCamp just released a brand new Machine Learning Toolbox course. The course is taught by co-authors of the caret package, Max Kuhn and Zachary Deane-Mayer. You'll be learning directly from the people who wrote the package through 24 videos and 88 interactive exercises. The course also includes a customer churn case study that let's you put your caret skills to the test and gain practical machine learning experience. What are you waiting for? Take the course now!
Create Air Travel Route Maps in ggplot: A Visual Travel DiaryFeb 22, 2024
Create Air Travel Route Maps that look like airline route maps you find in aeroplane magazines using ggplot. Spatially visualise your travel diary. Continue reading → The post Create Air Travel Route Maps in ggplot: A Visual Travel Diary appeared first on The Devil is in the Data.
Tutorial: How to set up a Twitter bot using RFeb 22, 2024
On occasion of the 10,000th R package on CRAN, eoda operated an automated Twitter account which regularly posted the current number of packages available on CRAN until the 10,000-package milestone has been passed on January 28, 2017. #Rstatsgoes10k – Hello World, it’s 2017-01-28 01:59:03 and currently there are 10000 packages on CRAN. — eodacelebratesR (@Rstatsgoes10k) … „Tutorial: How to set up a Twitter bot using R“ weiterlesen
Survival Analysis with RFeb 22, 2024
With roots dating back to at least 1662 when John Graunt, a London merchant, published an extensive set of inferences based on mortality records, survival analysis is one of the oldest subfields of Statistics [1]. Basic life-table methods, including techniques for dealing with censored data, were discovered before 1700 [2], and in the early eighteenth century, the old masters - de Moivre working on annuities, and Daniel Bernoulli studying competing risks for the analysis of smallpox inoculation - developed the modern foundations of the field [2]. Today, survival analysis models are important in Engineering, Insurance, Marketing, Medicine, and many more application areas. So, it is not surprising that R should be rich in survival analysis functions. CRAN’s Survival Analysis Task View, a curated list of the best relevant R survival analysis packages and functions, is indeed formidable. We all owe a great deal of gratitude to Arthur Allignol and Aurielien Latouche, the task view maintainers. Looking at the Task View on a small screen, however, is a bit like standing too close to a brick wall - left-right, up-down, bricks all around. It is a fantastic edifice that gives some idea of the significant contributions R developers have made both to the theory and practice of Survival Analysis. As well-organized as it is, however, I imagine that even survival analysis experts need some time to find their way around this task view. Newcomers - people either new to R or new to survival analysis or both - must find it overwhelming. So, it is with newcomers in mind that I offer the following narrow trajectory through the task view that relies on just a few packages: survival, ggplot2, ggfortify, and ranger The survival package is the cornerstone of the entire R survival analysis edifice. Not only is the package itself rich in features, but the object created by the Surv() function, which contains failure time and censoring information, is the basic survival analysis data structure in R. Dr. Terry Therneau, the package author, began working on the survival package in 1986. The first public release, in late 1989, used the Statlib service hosted by Carnegie Mellon University. Thereafter, the package was incorporated directly into Splus, and subsequently into R. ggfortify enables producing handsome, one-line survival plots with ggplot2::autoplot. ranger might be the surprise in my very short list of survival packages. The ranger() function is well-known for being a fast implementation of the Random Forests algorithm for building ensembles of classification and regression trees. But ranger() also works with survival data. Benchmarks indicate that ranger() is suitable for building time-to-event models with the large, high-dimensional data sets important to internet marketing applications. Since ranger() uses standard Surv() survival objects, it’s an ideal tool for getting acquainted with survival analysis in this machine-learning age. Load the data This first block of code loads the required packages, along with the veteran dataset from the survival package that contains data from a two-treatment, randomized trial for lung cancer. library(survival) library(ranger) library(ggplot2) library(dplyr) library(ggfortify) #------------ data(veteran) head(veteran) ## trt celltype time status karno diagtime age prior ## 1 1 squamous 72 1 60 7 69 0 ## 2 1 squamous 411 1 70 5 64 10 ## 3 1 squamous 228 1 60 3 38 0 ## 4 1 squamous 126 1 60 9 63 10 ## 5 1 squamous 118 1 70 11 65 10 ## 6 1 squamous 10 1 20 5 49 0 The variables in veteran are: * trt: 1=standard 2=test * celltype: 1=squamous, 2=small cell, 3=adeno, 4=large * time: survival time in days * status: censoring status * karno: Karnofsky performance score (100=good) * diagtime: months from diagnosis to randomization * age: in years * prior: prior therapy 0=no, 10=yes Kaplan Meier Analysis The first thing to do is to use Surv() to build the standard survival object. The variable time records survival time; status indicates whether the patient’s death was observed (status = 1) or that survival time was censored (status = 0). Note that a “+” after the time in the print out of km indicates censoring. # Kaplan Meier Survival Curve km
Spatial regression in R part 1: spaMM vs glmmTMBFeb 22, 2024
Are you interested in guest posting? Publish at DataScience+ via your editor (i.e., RStudio). Category Advanced Modeling Tags Data Visualisation GLMM Logistic Regression R Programming spatial model Many datasets these days are collected at different locations over space which may generate spatial dependence. Spatial dependence (observation close together are more correlated than those further apart) violate the assumption of independence of the residuals in regression models and require the use of a special class of models to draw the valid inference. The […]Related Post Find the best predictive model using R/caret package/modelgrid Variable Selection Methods: Lasso and Ridge Regression in Python Bootstrap with Monte Carlo Simulation in Python Monte Carlo Simulation and Statistical Probability Distributions in Python K-Nearest Neighbors (KNN) with Python
reshape: from long to wide formatFeb 22, 2024
This is to continue on the topic of using the melt/cast functions in reshape to convert between long and wide format of data frame. Here is the example I found helpful in generating covariate table required for PEER (or Matrix_eQTL) analysis:Here ...
An Introduction to Spatial Econometrics in RFeb 22, 2024
This tutorial was prepared for the Ninth Annual Midwest Graduate Student Summit on Applied Economics, Regional, and Urban Studies (AERUS) on April 23rd-24th, 2016 at the University of Illinois at Urbana Champaign.
Open Forensic Science in RFeb 22, 2024
This book is for anyone looking to do forensic science analysis in a data-driven and open way.
Comprehensive guide for Data Exploration in RFeb 22, 2024
A complete guide to data exploration in R explains how to read data sets in R, explore data in R, impute missing values in your dataset, merge in R, etc
Using MongoDB with RFeb 22, 2024
MongoDB is a NoSQL database program which uses JSON-like documents with schemas. It is free and open-source cross-platform database. MongoDB, top NoSQL database engine in use today, could be a good data storage alternative when analyzing large volume data. To use MongoDB with R, first, we have to download and install MongoDB Next, start MongoDB. […]Related PostFinding Optimal Number of ClustersAnalyzing the first Presidential DebateGoodReads: Machine Learning (Part 3)Machine Learning for Drug Adverse Event DiscoveryGoodReads: Exploratory data analysis and sentiment analysis (Part 2)
4 Data Splitting : The caret PackageFeb 22, 2024
Stay up-to-date on the latest data science and AI news in the worlds of artificial intelligence, machine learning, deep learning, implementation, and more.
5 Model Training and Tuning : The caret PackageFeb 22, 2024
Stay up-to-date on the latest data science and AI news in the worlds of artificial intelligence, machine learning, deep learning, implementation, and more.
apply lapply rapply sapply functions in RFeb 22, 2024
apply function r, apply r, lapply r, sapply r, tapply r
One Page RFeb 22, 2024
Ten more random useful things in R you may not know aboutFeb 22, 2024
I had a feeling that R has developed as a language to such a degree that many of us are using it now in completely different ways. This means that there are likely to be numerous tricks, packages, functions, etc that each of us use, but that others are completely…
shiny - shiny.pdfJan 17, 2024
Spatial Statistics for Data Science: Theory and Practice with RJan 8, 2024
A book for Spatial Statistics for Data Science with R.
Unveiling the Smooth Operator: Rolling Averages in RJan 7, 2024
Introduction Ever felt those data points were a bit too jittery? Smoothing out trends and revealing underlying patterns is a breeze with rolling averages in R. Ready to roll? Let’s dive in! Rolling with the ‘zoo’ Meet the ‘zoo’ package, your t...
ChatGPT: How to automate Google Sheets in under 2 minutes (with R)Sep 25, 2023
Hey guys, welcome back to my R-tips newsletter. In today’s R-tip, I’m sharing a super common data science task (one that saved me 20 hours per week)… You’re getting the cheat code to automating Google Sheets. Plus, I’m sharing exactly how I made this a...
Visualizing shapefiles in R with sf and ggplot2!Aug 14, 2023
Introduction As data scientists, being able to investigate and visualize the geographic...
A Gentle Introduction to K-Means Clustering in R (Feat. Tidyclust)Jul 7, 2023
To be successful as a Data Scientist, you’re often put in positions where you need to find groups within your data. One key business use-case is finding clusters of customers that behave similarly. And that’s a powerful skill that I’m going to help you...
SynthDiD 101: A Beginner’s Guide to Synthetic Difference-in-DifferencesApr 26, 2023
On the method’s advantages and disadvantages, demonstrated with the synthdid package in R
Exploring Distributions with {shiny} and {TidyDensity}Apr 19, 2023
Introduction Shiny is an R package that allows you to build interactive web applications using R code. TidyDensity is an R package that provides a tidyverse-style interface for working with probability density functions. In this tutorial, we’ll ...
Model selection, AIC and Tweedie regressionApr 19, 2023
Just some simple codes to illustrate some points we will discuss this week, for the last course on GLMs, before the final exam. We have mentioned that the Gamma distribution belongs to the exponential, so we can run a regression, and compute the associated AIC, > set.seed(123) > test.data = rgamma(n=2000, scale=1, shape=1) > m1 = glm( test.data~1, family=Gamma(link=log)) > AIC(m1) [1] 3997.332 The Gamma distribution is also a special case of the Tweedie distribution, with power 2 > library(statmod) > library(tweedie) > m2 … Continue reading Model selection, AIC and Tweedie regression →
Using R in Inventory Management and Demand ForecastingApr 8, 2023
Nicolas Nguyen works in the Supply Chain industry, in the area of Demand and Supply Planning, S&OP and Analytics, where he enjoys developing solutions using R and Shiny. Outside his job, he teaches data visualization in R at the Engineering School EIGSI and Business School Excelia in the city of La Rochelle, France. Introduction Demand & Supply Planning requires forecasting techniques to determine the inventory needed to fulfill future orders. With R, we can build end-to-end supply chain monitoring processes to identify potential issues and run scenario testing. In a 3-part series, I will walk through a Demand & Supply Planning workflow: Using R in Inventory Management and Demand Forecasting: an introduction of projected inventory and coverage methodology (this post) Analyzing Projected Inventory Calculations Using R: an analysis of a demo dataset using the planr package Visualizing Projected Calculations with reactable and shiny: once the analysis is done, how would you present your results to your boss? By the end of the series, you will understand how and why to use R for Demand & Supply Planning calculations. Let’s begin! The “problem” we aim to solve When we work in Demand & Supply Planning, it’s pretty common that we need to calculate projected inventories (and related projected coverages). We often have three options to perform this calculation, using: an APS (Advanced Planning System) software an ERP, such as SAP or JDE and of course…Excel! All are fine and have different pros and cons. For example, we simply sometimes don’t have all the data in our ERP either APS, like when we work with third-party distributors or we want to model a supply chain network that relies on different systems with unconnected data. How about using R to perform these calculations? How simple and fast could they be? And, could we do more than just the calculations? For example, could we get an analysis of the projected situation of a portfolio (as an output of a function), so we don’t have to look at each product one by one and can instead: Easily get a summary view of the portfolio? Then zoom on the products with risks of shortages or overstocks? In a series of posts, I will demonstrate how R can help us in Demand & Supply planning. This first post introduces the proj_inv() and light_proj_inv() functions for projected inventory and coverage calculations. proj_inv(): to calculate projected inventories and coverages with some analysis features light_proj_inv(): to calculate projected inventories and coverages (only) Runs faster than the previous function (as it’s lighter and doesn’t provide any analysis features) With R, we have an efficient way to run end-to-end supply chain monitoring processes. Methodology How to calculate projected inventories First, let’s have a look at an example of how to calculate projected inventories. Consider that the field Demand = Sales Forecasts. We start with some Opening Inventory of 1000 units. During month M, we sell 100 units (the Demand). At the end of the 1st period (Month M), the inventory is 900 units. Then, there’s a demand of 800 units at the end of the following period (Month M+1). During the period (Month M+2), we get a Supply of 400 units, and sell 100: it is now 1100 units in stock. That’s all, this is how we calculate projected inventories ☺ Figure 1: Describes the mechanism of the calculation of projected inventories based on Opening Inventories, Demand and Supply How to calculate projected coverages Now, let’s have a look at how to calculate projected coverages. The idea: we look forward. We consider the projected inventories at the end of a period and evaluate the related coverage based on the Upcoming Demand. See the example below: Figure 2: Description of the calculation of projected coverages, considering the inventories at a point in time and the Upcoming Demand If we use Excel, we often see a “shortcut” to estimate the related coverages, like considering an average of the Demand over the next 3 or 6 months. This can lead to incorrect results if the Demand is not constant (if we have some seasonality or a strong trend, for example). However, these calculations become very easy through the proj_inv() and light_proj_inv() functions. Projected inventory calculations in R Now, let’s see how the above is done using two functions from the planr package. First, let’s create a tibble of data for the example shown above (we will cover Min.Stocks.Coverage and Max.Stocks.Coverage more thoroughly in another post): # Install the planr package # remotes::install_github("nguyennico/planr") library(planr) library(dplyr) Planr_Example % select(Projected.Inventories.Qty) ## # A tibble: 7 × 2 ## # Groups: DFU [1] ## DFU Projected.Inventories.Qty ## ## 1 Item0001 900 ## 2 Item0001 800 ## 3 Item0001 1100 ## 4 Item0001 300 ## 5 Item0001 200 ## 6 Item0001 -100 ## 7 Item0001 200 We can also take a look at projected coverage. It matches our example calculation in Figure 2: the opening coverage is 2.9 months. Calculated_Inv %>% select(Calculated.Coverage.in.Periods) ## # A tibble: 7 × 2 ## # Groups: DFU [1] ## DFU Calculated.Coverage.in.Periods ## ## 1 Item0001 2.9 ## 2 Item0001 1.9 ## 3 Item0001 2.7 ## 4 Item0001 1.7 ## 5 Item0001 0.7 ## 6 Item0001 0 ## 7 Item0001 99 Very easy to calculate! The proj_inv() and light_proj_inv() functions can also be used and combined to perform more complex tasks. I’ve described several use cases in the appendix. Moving forward, these functions form the basis for the classic DRP (Distribution Requirement Planning) calculation, where, based on some parameters (usually minimum and maximum levels of stock, a reorder quantity, and a frozen horizon), we calculate a Replenishment Plan. Conclusion Thank you for reading this introduction of projected inventories and coverages in Demand & Supply Planning! I hope that you enjoyed reading how this methodology translate into R. ASCM (formerly APICS) guidelines In the beginning of 2019, the Association for Supply Chain Management (ASCM) published an article about the usage of R (and Python) in Supply Chain Planning, and more precisely for the Sales & Operations Planning (S&OP) process, which is related to Demand and Supply Planning. Figure 3: An extract from the ASCM article regarding the S&OP and Digital Supply Chain. It shows how R and Python are becoming more and more used for demand & supply planning and are great tools to run a S&OP process. In the example above, we can see how R helps build the digital environment useful to run the S&OP process, which involves a lot of data processing. The planr package aims to support this process by providing functions that calculate projected inventories. Stay tuned for more on projected calculations using R Thank you for reading the introduction on how to use R for projected inventory calculations in Demand & Supply Planning! I hope you enjoyed this introduction to the planr package. My series of posts will continue with: Analyzing Projected Calculations Using R (using a demo dataset) Visualizing Projected Calculations with reactable and Shiny (or, what your boss wants to see) In the meantime, check out these useful links: planr package GitHub repository: https://github.com/nguyennico/planr URL for a Shiny app showing a demo of the proj_inv() and light_proj_inv() functions: Demo: app proj_inv() function (shinyapps.io) Appendix: Use cases and examples The proj_inv() and light_proj_inv() functions can easily be used and combined to perform more complex tasks, such as: Modeling of a Supply Chain Network Calculation of projected inventories from Raw Materials to Finished Goods A multi-echelon distribution network: from a National Distribution Center to Regional Wholesalers to Retailers Becoming a useful tool: To build an End-to-End Supply Chain monitoring process To support the S&OP (Sales and Operations Planning) process, allowing us to run some scenarios quickly: Change of Sales plan Change of Supply (Production) plan Change of stock level parameters Change of Transit Time Etc. Here are some detailed use cases for the functions. Third-party distributors We sometimes work with third-party distributors to distribute our products. A common question is: how much stock do our partners hold? If we have access to their opening inventories and Sales IN & OUT Forecasts, we can quickly calculate the projected inventories by applying the proj_inv() or light_proj_inv() functions. Then, we anticipate any risks of shortages or overstocks, and create a collaborative workflow. Figure 4: Illustration of a SiSo (Sales IN Sales OUT) situation. We have some stocks held at a storage location, for example, a third-party distributor, and know what will be sold out of this location (the sales out) and what will be replenished to it (the sales in), as well as the opening inventory. The aim is to calculate the projected inventories and coverages at this location. From raw materials to finished goods In the example below, we produce olive oil (but it could be shampoo, liquor, etc.). We start with a raw material, the olive oil, that we use to fill up different sizes of bottles (35cl, 50cl, etc…), on which we then apply (stick) a label (and back label). There are different labels, depending on the languages (markets where the products are sold). Once we have a labelled bottle, we put it inside an outer box, ready to be shipped and sold. There are different dimensions of outer boxes, where we can put, for examplem 4, 6 or 12 bottles. They are the Finished Goods. We have two groups of products here: Finished Goods Semi-Finished: at different steps, filled bottle (not yet labelled) or labelled bottle We might be interested in looking at the projected inventories at different levels / steps of the manufacturing process: Finished Goods Raw Materials: naked bottles, labels, or liquid (olive oil) Semi-Finished Products For this, we can apply the proj_inv() or light_proj_inv() functions on each level of analysis. Figure 5...
Designing Beautiful Tables in RMar 26, 2023
Learn how to design beautiful tables in R! Join our workshop on Designing Beautiful Tables in R which is a part of our workshops for Ukraine series. Here’s some more info: Title: Designing Beautiful Tables in R Date: Thursday, April 27th, 18:00 – 20:00 CEST (Rome, Berlin, Paris timezone) Speaker: Tanya Shapiro is a freelance … Continue reading Designing Beautiful Tables in RDesigning Beautiful Tables in R was first posted on March 25, 2023 at 3:28 pm.
Statistical Computing With Graphics Processing UnitsMar 19, 2023
This thesis consists of two main projects and a third project which is provided in the appendix. The contribution of the first project, is a tool set for parallel random number gen- eration on GPUs…
Little useless-useful R functions – Using xspline to create wacky signatureMar 5, 2023
Nothing short of wacky usage of plot() function with xspline to interpolate the points, but still a “parameter” short of Bezier’s curve. 🙂 Given two random vectors, you can generate a plot that, xspline will smooth out the plot and…Read more ›
Call ChatGPT (or really any other API) from RMar 4, 2023
It’s March 2023 and right now ChatGPT, the amazing AI chatbot tool from OpenAI, is all the rage. But when OpenAI released their public web API for ChatGPT on the 1st of March you might have been a bit disappointed. If you’re an R user, that is. Because, when scrolling through the release announcement you find that there is a python package to use this new API, but no R package. I’m here to say: Don’t be disappointed! As long as there is a web API for a service then it’s going to be easy to use this service from R, no specialized package needed. So here’s an example of how to use the new (as of March 2023) ChatGPT API from R. But know that when the next AI API hotness comes out (likely April 2023, or so) then it’s going to be easy to interface with that from R, as well. Calling the ChatGPT web API from R To use the ChatGPT API in any way you first need to sign up and get an API key: The “password” you need to access the web API. It could look something like "sk-5xWWxmbnJvbWU4-M212Z2g5dzlu-MzhucmI5Yj-l4c2RkdmZ26". Of course, that’s not my real API key because that’s something you should keep secret! With an API key at hand you now look up the documentation and learn that this is how you would send a request to the API from the terminal: curl https://api.openai.com/v1/chat/completions \ -H "Authorization: Bearer $OPENAI_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "model": "gpt-3.5-turbo", "messages": [{"role": "user", "content": "What is a banana?"}] }' But how do we send a request to the API using R? What we can do is to “replicate” this call using httr: a popular R package to send HTTP requests. Here’s how this request would be made using httr (with the curl lines as comments above the corresponding httr code) library(httr) api_key
11 Popular R Packages for Beginners in 2023 - Analytics VidhyaMar 3, 2023
The article talks about R packages with a range of functions, including data manipulation, data visualization, machine learning, etc.
stringr package - RDocumentationMar 3, 2023
A consistent, simple and easy to use set of wrappers around the fantastic 'stringi' package. All function and argument names (and positions) are consistent, all functions deal with "NA"'s and zero length vectors in the same way, and the output from one function is easy to feed into the input of another.
readr package - RDocumentationMar 3, 2023
The goal of 'readr' is to provide a fast and friendly way to read rectangular data (like 'csv', 'tsv', and 'fwf'). It is designed to flexibly parse many types of data found in the wild, while still cleanly failing when data unexpectedly changes.
ggplot2 package - RDocumentationMar 3, 2023
A system for 'declaratively' creating graphics, based on "The Grammar of Graphics". You provide the data, tell 'ggplot2' how to map variables to aesthetics, what graphical primitives to use, and it takes care of the details.
How to Measure Execution Time in RJan 21, 2023
If there’s one type of data no company has a shortage of, it has to be time series data. Yet, many beginner and intermediate R developers struggle to grasp their heads around basic R time series concepts, such as manipulating datetime values, visualizing time data over time, and handling missing date values. Lucky for you, […] The post appeared first on appsilon.com/blog/.
Brief Introduction to Correspondence AnalysisJan 16, 2023
Learn the basic steps to run a Multiple Correspondence Analysis in R
A proposal for capping exploding electricity spot market prices without subAug 30, 2022
At the EEX, German baseload electricity futures for the year 2023 trade at a price of 950 Euro / MWh and peak load futures at 1275 Euro / MWh. Future prices for France are even higher. (Prices were looked up on 2022-08-28). In contrast, average German...
rbokeh: How To Create Interactive Plots In RAug 25, 2022
Effective interactive data visualizations in R
The 5 Surprising Things You Can Do With R - KDnuggetsAug 23, 2022
This article will dive into R's different uses and demonstrate what you can do with this programming language once you've learned it.
Welcome | Handbook of Graphs and Networks in People AnalyticsJul 20, 2022
A technical manual of graphs, networks and their applications in the people and social sciences
Data Preparation in R Cheatsheet - KDnuggetsJul 5, 2022
Leverage the powerful data wrangling tools in R’s dplyr to clean and prepare your data.
Survival Analysis in R (in under 10-minutes)Jun 11, 2022
Making a survival analysis can be a challenge even for experienced R users, but the good news is I’ll help you make beautiful, publication-quality survival plots in under 10-minutes. Here’s what WE are going to do: Make your first survival model an...
Apt - PostgreSQL wikiMay 29, 2022
Welcome | Advanced RApr 9, 2022
ReeceGoding/Frustration-One-Year-With-R: An extremely long review of R.Mar 23, 2022
An extremely long review of R.
R Graphics Cookbook, 2nd editionMar 21, 2022
This cookbook contains more than 150 recipes to help scientists, engineers, programmers, and data analysts generate high-quality graphs quickly—without having to comb through all the details of R’s graphing systems. Each recipe tackles a specific problem with a solution you can apply to your own project and includes a discussion of how and why the recipe works.
Text Mining with RMar 21, 2022
A guide to text analysis within the tidy data framework, using the tidytext package and other tidy tools
Welcome · Advanced R.Mar 21, 2022
Neat R Plots with the Cairo Graphics LibraryJan 24, 2022
R graphics tutorial: scatterplots with anti-aliasing, using the Cairo library. Two lines of code to make much better visualizations in R.
Large scale eigenvalue decomposition and SVD with rARPACK | R-bloggersDec 4, 2021
In January 2016, I was honored to receive an “Honorable Mention” of the John Chambers Award 2016. This article was written for R-bloggers, whose builder, Tal Galili, kindly invited me to write an introduction to the rARPACK package. A Short Story of rARPACK Eigenvalue decomposition is a commonly used technique in numerous statistical problems. For example, principal component analysis (PCA) basically conducts eigenvalue decomposition on the sample covariance of a data matrix: the eigenvalues are the component variances, and eigenvectors are the variable loadings. In R, the standard way to compute eigenvalues is the eigen() function. However, when the matrix becomes large, eigen() can be very time-consuming: the complexity to calculate all eigenvalues of a $n times n$ matrix is $O(n^3)$. While in real applications, we usually only need to compute a few eigenvalues or eigenvectors, for example to visualize high dimensional data using PCA, we may only use the first two or three components to draw a scatterplot. Unfortunately in eigen(), there is no option to limit the number of eigenvalues to be computed. This means that we always need to do the full eigen decomposition, which can cause a huge waste in computation. And this is why the rARPACK package was developed. As the name indicates, rARPACK was originally an R wrapper of the ARPACK library, a FORTRAN package that is used to calculate a few eigenvalues of a square matrix. However ARPACK has stopped development for a long time, and it has some compatibility issues with the current version of LAPACK. Therefore to maintain rARPACK in a good state, I wrote a new backend for rARPACK, and that is the C++ library Spectra. The name of rARPACK was POORLY designed, I admit. Starting from version 0.8-0, rARPACK no longer relies on ARPACK, but due to CRAN polices and reverse dependence, I have to keep using the old name. Features and Usage The usage of rARPACK is simple. If you want to calculate some eigenvalues of a square matrix A, just call the function eigs() and tells it how many eigenvalues you want (argument k), and which eigenvalues to calculate (argument which). By default, which = "LM" means to pick the eigenvalues with the largest magnitude (modulus for complex numbers and absolute value for real numbers). If the matrix is known to be symmetric, calling eigs_sym() is preferred since it guarantees that the eigenvalues are real. library(rARPACK) set.seed(123) ## Some random data x = matrix(rnorm(1000 * 100), 1000) ## If retvec == FALSE, we don't calculate eigenvectors eigs_sym(cov(x), k = 5, which = "LM", opts = list(retvec = FALSE)) For really large data, the matrix is usually in sparse form. rARPACK supports several sparse matrix types defined in the Matrix package, and you can even pass an implicit matrix defined by a function to eigs(). See ?rARPACK::eigs for details. library(Matrix) spmat = as(cov(x), "dgCMatrix") eigs_sym(spmat, 2) ## Implicitly define the matrix by a function that calculates A %*% x ## Below represents a diagonal matrix diag(c(1:10)) fmat = function(x, args) { return(x * (1:10)) } eigs_sym(fmat, 3, n = 10, args = NULL) From Eigenvalue to SVD An extension to eigenvalue decomposition is the singular value decomposition (SVD), which works for general rectangular matrices. Still take PCA as an example. To calculate variable loadings, we can perform an SVD on the centered data matrix, and the loadings will be contained in the right singular vectors. This method avoids computing the covariance matrix, and is generally more stable and accurate than using cov() and eigen(). Similar to eigs(), rARPACK provides the function svds() to conduct partial SVD, meaning that only part of the singular pairs (values and vectors) are to be computed. Below shows an example that computes the first three PCs of a 2000x500 matrix, and I compare the timings of three different algorithms: library(microbenchmark) set.seed(123) ## Some random data x = matrix(rnorm(2000 * 500), 2000) pc = function(x, k) { ## First center data xc = scale(x, center = TRUE, scale = FALSE) ## Partial SVD decomp = svds(xc, k, nu = 0, nv = k) return(list(loadings = decomp$v, scores = xc %*% decomp$v)) } microbenchmark(princomp(x), prcomp(x), pc(x, 3), times = 5) The princomp() and prcomp() functions are the standard approaches in R to do PCA, which will call eigen() and svd() respectively. On my machine (Fedora Linux 23, R 3.2.3 with optimized single-threaded OpenBLAS), the timing results are as follows: Unit: milliseconds expr min lq mean median uq max neval princomp(x) 274.7621 276.1187 304.3067 288.7990 289.5324 392.3211 5 prcomp(x) 306.4675 391.9723 408.9141 396.8029 397.3183 552.0093 5 pc(x, 3) 162.2127 163.0465 188.3369 163.3839 186.1554 266.8859 5 Applications SVD has some interesting applications, and one of them is image compression. The basic idea is to perform a partial SVD on the image matrix, and then recover it using the calculated singular values and singular vectors. Below shows an image of size 622x1000: (Orignal image) If we use the first five singular pairs to recover the image, then we need to store 8115 elements, which is only 1.3% of the original data size. The recovered image will look like below: (5 singular pairs) Even if the recovered image is quite blurred, it already reveals the main structure of the original image. And if we increase the number of singular pairs to 50, then the difference is almost imperceptible, as is shown below. (50 singular pairs) There is also a nice Shiny App developed by Nan Xiao, Yihui Xie and Tong He that allows users to upload an image and visualize the effect of compression using this algorithm. The code is available on GitHub. Performance Finally, I would like to use some benchmark results to show the performance of rARPACK. As far as I know, there are very few packages available in R that can do the partial eigenvalue decomposition, so the results here are based on partial SVD. The first plot compares different SVD functions on a 1000x500 matrix, with dense format on the left panel, and sparse format on the right. The second plot shows the results on a 5000x2500 matrix. The functions used corresponding to the axis labels are as follows: svd: svd() from base R, which computes the full SVD irlba: irlba() from irlba package, partial SVD propack, trlan: propack.svd() and trlan.svd() from svd package, partial SVD svds: svds() from rARPACK The code for benchmark and the environment to run the code can be found here.
Three R Libraries Every Data Scientist Should Know (Even if You Use Python)Nov 28, 2021
Powerful R libraries built by the World’s Biggest Tech Companies
An Introduction to Statistical LearningAug 5, 2021
Big Book of R has over 200 books! | R-bloggersJun 6, 2021
Way back in August 2020, I launched Big Book of R, a collection of free (and some paid) R programming books organised by categories like Geospatial, Statistics, Packages and many more. What started off as a 100 book collection has now grown to over 200 :D! Anyway, I felt was … The post Big Book of R has over 200 books! appeared first on Oscar Baruffa.
Learn R through examplesJun 5, 2021
This is a draft of a book for learning data analysis with the R language. This book emphasizes hands activities. Comments and suggestions are welcome.
UPDATED: Using R and H2O to identify product anomalies during the manufactuMar 26, 2021
Note. This is an update to article: Using R and H2O to identify product anomalies during the manufacturing process.It has some updates but also code optimization from Yana Kane-Esrig( https://www.linkedin.com/in/ykaneesrig/ ), as sh...
Insurance Risk Pricing — Tweedie Approach - Towards Data ScienceJun 1, 2020
An illustrative guide to estimate the pure premium using Tweedie models in GLMs and Machine Learning
Data engineering and data shaping in Practical Data Science with R 2nd EditJun 1, 2020
A kind reader recently shared the following comment on the Practical Data Science with R 2nd Edition live-site. Thanks for the chapter on data frames and data.tables. It has helped me overcome an o…
What is isotonic regression?Jun 1, 2020
Isotonic regression is a method for obtaining a monotonic fit for 1-dimensional data. Let’s say we have data such that . (We assume no ties among the ‘s for simplicity.) Informally, isotonic regression looks for such that the ‘s approximate … Continue reading →
Text Mining with R: Gathering and Cleaning DataJun 1, 2020
Case study of tweets from comments on Indonesia’s biggest media
Efficient R programmingMay 15, 2020
Efficient R Programming is about increasing the amount of work you can do with R in a given amount of time. It’s about both computational and programmer efficiency.
Intro to R: Linear AlgebraApr 1, 2020
Vector Indexing, Eigenvector Solvers, Singular Value Decomposition, & More
Practical Data Science with R, 2nd Edition, IS OUT!!!!!!!Dec 14, 2019
Practical Data Science with R, 2nd Edition author Dr. Nina Zumel, with a fresh author’s copy of her book!
timekit: Time Series Forecast Applications Using Data MiningJun 8, 2018
The timekit package contains a collection of tools for working with time series in R. There’s a number of benefits. One of the biggest is the ability to use a time series signature to predict future values (forecast) through data mining techniques. W...
Data Science for Operational Excellence (Part-5)Jun 8, 2018
Operations need to have demand forecasts in order to establish optimal resource allocation policies. But, when we make predictions the only thing that we assure is the occurrence of prediction errors. Fortunately, there is no need to be 100% accurate to succeed, we just need to perform better than our competitors. In this exercise we […] Related exercise sets:Forecasting: Exponential Smoothing Exercises (Part-3) Forecasting for small business Exercises (Part-3) Forecasting: Time Series Exploration Exercises (Part-1) Explore all our (>1000) R exercisesFind an R course using our R Course Finder directory
Machine Learning Pipelines for RMar 8, 2018
Building machine learning and statistical models often requires pre- and post-transformation of the input and/or response variables, prior to training (or fitting) the models. For example, a model may require training on the logarithm of the response and input variables. As a consequence, fitting and then generating predictions from these models requires repeated application of … Continue reading
R-exercises – Start here to learn R!Mar 8, 2018
Learn R through 1000+ free exercises on basic R concepts, data cleaning, modeling, machine learning, and visualization.
Data Wrangling CheatsheetDec 27, 2017
Stay up-to-date on the latest data science and AI news in the worlds of artificial intelligence, machine learning, deep learning, implementation, and more.
One-page R: a survival guide to data science with R - DataScienceCentral.comDec 27, 2017
This article comes from Togaware. A Survival Guide to Data Science with R These draft chapters weave together a collection of tools for the data scientist—tools that are all part of the R Statistical Software Suite. Each chapter is a collection of one (or more) pages that cover particular aspects of the topic. The chapters can be… Read More »One-page R: a survival guide to data science with R
What is the tidyverse? · R ViewsDec 27, 2017
Last week, I had the opportunity to talk to a group of Master’s level Statistics and Business Analytics students at Cal State East Bay about R and Data Science. Many in my audience were adult students coming back to school with job experience writing code in Java, Python and SAS. It was a pretty sophisticated crowd, but not surprisingly, their R skills were stitched together in a way that left some big gaps.
Operations Research with RDec 27, 2017
Stefan Feuerriegel This blog entry concerns our course on “Operations Reserch with R” that we teach as part of our study program. We hope that the materials are of value to lectures and everyone else working in the field of numerical optimiatzion. Course outline The course starts with a review of numerical and linear algebra … Continue reading "Operations Research with R"
Top 50 ggplot2 Visualizations - The Master List (With Full R Code)Dec 27, 2017
R Language Tutorials for Advanced Statistics
Layered Data Visualizations Using R, Plotly, and DisplayrDec 27, 2017
If you have tried to communicate research results and data visualizations using R, there is a good chance you will have come across one of its great limitations. R is painful when you need to...
Marketing Multi-Channel Attribution model based on Sales Funnel with RDec 27, 2017
We will review another fascinating approach that marries heuristic and probabilistic methods. We will link marketing channels with a probability of a customer passing through each step of a Sales Funnel
Image Convolution in R using MagickDec 27, 2017
Release 1.4 of the magick package introduces a new feature called image convolution that was requested by Thomas L. Pedersen. In this post we explain what this is all about. Kernel Matrix The new image_convolve() function applies a kernel over the image. Kernel convolution means that each pixel value is recalculated using the weighted neighborhood sum defined in the kernel matrix. For example lets look at this simple kernel: library(magick) kern % image_negate() As with the blurring, the original image can be blended in with the transformed one, effectively sharpening the image along edges. img %>% image_convolve('DoG:0,0,2', scaling = '100, 100%') The ImageMagick documentation has more examples of convolve with various avaiable kernels.
Handling ‘Happy’ vs ‘Not Happy’: Better sentiment analysis with sentimentrDec 27, 2017
Sentiment Analysis is one of the most obvious things Data Analysts with unlabelled Text data (with no score or no rating) end up doing in an attempt to extract some insights out of it and the same Sentiment analysis is also one of the potential research areas for any NLP (Natural Language Processing) enthusiasts. For […] Related Post Creating Reporting Template with Glue in R Predict Employee Turnover With Python Making a Shiny dashboard using ‘highcharter’ – Analyzing Inflation Rates Time Series Analysis in R Part 2: Time Series Transformations Time Series Analysis in R Part 1: The Time Series Object
Image Processing and Manipulation with magick in RDec 27, 2017
‘ImageMagick’ is one of the famous open source libraries available for editing and manipulating Images of different types (Raster & Vector Images). magick is an R-package binding to ‘ImageMagick’ for Advanced Image-Processing in R, authored by Jeroen Ooms. magick supports many common image formats like png, jpeg, tiff and manipulations like rotate, scale, crop, trim, […] Related Post Analyzing the Bible and the Quran using Spark Predict Customer Churn – Logistic Regression, Decision Tree and Random Forest Find Your Best Customers with Customer Segmentation in Python Principal Component Analysis – Unsupervised Learning ARIMA models and Intervention Analysis
Visualizing classifier thresholds | R-bloggersDec 27, 2017
Lately I’ve been thinking a lot about the connection between prediction models and the decisions that they influence. There is a lot of theory around this, but communicating how the various pieces all fit together with the folks who will use and be impacted by these decisions can be challenging. One of the important conceptual pieces […]
How to plot basic maps with ggmapDec 27, 2017
A tutorial for using ggmap to plot basic maps in R, by using images from Google Maps as a ggplot layer.
Arbitrary Data Transforms Using cdataDec 27, 2017
We have been writing a lot on higher-order data transforms lately: Coordinatized Data: A Fluid Data Specification Data Wrangling at Scale Fluid Data Big Data Transforms. What I want to do now is "write a bit more, so I finally feel I have been concise." The cdata R package supplies general data transform operators. The … Continue reading Arbitrary Data Transforms Using cdata
Tips for A/B Testing with RDec 27, 2017
Which layout of an advertisement leads to more clicks? Would a different color or position of the purchase button lead to a higher conversion rate? Does a special offer really attract more customers – and which of two phrasings would be better? For a long time, people have trusted their gut feeling to answer these questions. Today all these questions could be answered by conducting an A/B test. For this purpose, visitors of a website are randomly assigned to one of two groups between which the target metric (i.e. click-through rate, conversion rate…) can then be compared. Due to this randomization, the groups do not systematically differ in all other relevant dimensions. This means: If your target metric takes a significantly higher value in one group, you can be quite sure that it is because of your treatment and not because of any other variable. In comparison to other methods, conducting an A/B test does not require extensive statistical knowledge. Nevertheless, some caveats have to be taken into account. When making a statistical decision, there are two possible errors (see also table 1): A Type I error means that we observe a significant result although there is no real difference between our groups. A Type II error means that we do not observe a significant result although there is in fact a difference. The Type I error can be controlled and set to a fixed number in advance, e.g., at 5%, often denoted as α or the significance level. The Type II error in contrast cannot be controlled directly. It decreases with the sample size and the magnitude of the actual effect. When, for example, one of the designs performs way better than the other one, it’s more likely that the difference is actually detected by the test in comparison to a situation where there is only a small difference with respect to the target metric. Therefore, the required sample size can be computed in advance, given α and the minimum effect size you want to be able to detect (statistical power analysis). Knowing the average traffic on the website you can get a rough idea of the time you have to wait for the test to complete. Setting the rule for the end of the test in advance is often called “fixed-horizon testing”. Table 1: Overview over possible errors and correct decisions in statistical tests Effect really exists No Yes Statistical test is significant No True negative Type II error (false negative) Yes Type I error (false positive) True positive Statistical tests generally provide the p-value which reflects the probability of obtaining the observed result (or an even more extreme one) just by chance, given that there is no effect. If the p-value is smaller than α, the result is denoted as “significant”. When running an A/B test you may not always want to wait until the end but take a look from time to time to see how the test performs. What if you suddenly observe that your p-value has already fallen below your significance level – doesn’t that mean that the winner has already been identified and you could stop the test? Although this conclusion is very appealing, it can also be very wrong. The p-value fluctuates strongly during the experiment and even if the p-value at the end of the fixed-horizon is substantially larger than α, it can go below α at some point during the experiment. This is the reason why looking at your p-value several times is a little bit like cheating, because it makes your actual probability of a Type I error substantially larger than the α you chose in advance. This is called “α inflation”. At best you only change the color or position of a button although it does not have any impact. At worst, your company provides a special offer which causes costs but actually no gain. The more often you check your p-value during the data collection, the more likely you are to draw wrong conclusions. In short: As attractive as it may seem, don’t stop your A/B test early just because you are observing a significant result. In fact you can prove that if you increase your time horizon to infinity, you are guaranteed to get a significant p-value at some point in time. The following code simulates some data and plots the course of the p-value during the test. (For the first samples which are still very small R returns a warning that the chi square approximation may be incorrect.) library(timeDate) library(ggplot2) # Choose parameters: pA
caret CheatsheetSep 14, 2017
It can be found on the RStudio cheatsheet page. Suggestions and pull requests are always welcome.
a-b
5 Statistical Methods That Dominate Their Industries (and Why)Dec 22, 2025
Discover which statistical methods dominate healthcare, finance, tech, retail, and sports analytics, and why these industry-method pairings became indispensable standards.
6 Statistical Methods for A/B Testing in Data Science and Data AnalysisJul 31, 2024
A/B testing is a cornerstone of data science, essential for making informed business decisions and optimizing customer revenue. Here, we delve into six widely used statistical methods in A/B testing, explaining their purposes and appropriate contexts. 1. Z-Test (Standard Score Test): When to Use: This method is ideal for large sample sizes (typically over 30) when the population variance is known. Purpose: Compares the means of two groups to determine if they are statistically different. Applications: This technique is frequently employed in conversion rate optimization and click-through rate analysis. It helps identify whether changes in website elements or marketing strategies
Better A/B testing with survival analysisJul 11, 2024
Pic by author - using DALL-E 3 When running experiments don’t forget to bring your survival kit I’ve already made the case in several blog posts (part 1, part 2, part 3) that using survival analysis can improve churn prediction. In this blog post I’ll ...
Sample Size CalculatorMay 31, 2024
Visual, interactive sample size calculator ideal for planning online experiments and A/B tests.
Computing Minimum Sample Size for A/B Tests in Statsmodels: How and WhyMay 31, 2024
A deep-dive into how and why Statsmodels uses numerical optimization instead of closed-form formulas
How to use Causal Inference when A/B testing is not availableJan 15, 2024
Evaluating ad targeting product using causal inference: propensity score matching!
B3ed2e05Aug 5, 2023
Caveats and Limitations of A/B Testing at Growth Tech CompaniesAug 5, 2023
For non-tech industry folks, an “A/B test” is just a randomized controlled trial where you split users or other things into treatment and control groups, and then later compare key metr…
8 annoying A/B testing mistakes every engineer should knowJun 19, 2023
Running experiments is equal parts powerful and terrifying. Powerful because you can validate changes that will transform your product for the better…
When You Should Prefer “Thompson Sampling” Over A/B TestsJun 19, 2023
An in-depth explanation of “Thompson Sampling”, a more efficient alternative to A/B testing for online learning
25 A/B Testing Concepts — Interview Cheat SheetJan 26, 2023
Questions on A/B testing are being increasingly asked in interviews but reliable resources to prepare for these are still far and few…
How to Select the Right Statistical Tests for Different A/B MetricsDec 10, 2022
A Discussion of the go-to methods for 5 Types of A/B Metrics
The Joy of A/B Testing, Part II: Advanced TopicsAug 17, 2022
Cookies and privacy, interleaving experiments, clean dial-ups, and test metrics
Tests | GoodUIAug 13, 2022
The Joy of A/B Testing: Theory, Practice, and PitfallsAug 1, 2022
How today’s tech companies make data-driven decisions in Machine Learning production
Fully Mastering Fisher’s Exact Test for A/B TestingJul 30, 2022
While Fisher’s exact test is a convenient tool for A/B testing, the idea and results of the test are often hard to grasp and difficult to…
Conservation of Intent: The hidden reason why A/B tests aren’t as effective as they lookJul 19, 2022
23 Tips on How to A/B Test Like a Badass - Search Engine WatchJul 18, 2022
A/B testing is hitting the mainstream because it is so effective. And with so many tools available it has become very easy and very inexpensive to run. Here are 23 helpful tips on how you can take your A/B tests from basic to the next level.
The golden rule of A/B testing: look beyond validationJul 18, 2022
A/B tests provide more than statistical validation of one execution over another. They can and should impact how your team prioritizes projects.
Start here: Statistics for A/B testingJul 18, 2022
We’re Agile, we think lean, we’re data-driven. If you live in the new economy and work in some sort of digital product you hear some of…
5 Tricks When AB Testing Is Off The TableJul 17, 2022
An applied introduction to causal inference in tech
Etsy's A/B Testing Culture Spurs Mobile Innovation | ApptimizeJul 5, 2022
We spoke with Etsy’s iOS Software Engineer, Lacy Rhoades, about their culture of continuous experimentation. Learn about their a/b testing culture
Understanding CUPEDJul 4, 2022
An in-depth guide to the state-of-the-art variance reduction technique for A/B tests
Infographic: 26 Ideas For Split Testing Your Search AdsJun 25, 2022
If you want to always be closing, then you need to always be testing, a long-standing mantra (and title of a popular book) in the search marketing space.
The ultimate guide to A/B testing. Part 1: experiment designJun 25, 2022
A/B testing is a very popular technique of checking granular changes in a product without mistakenly taking into account changes that were…
Multivariate vs. A/B Testing: Incremental vs. Radical ChangesJun 23, 2022
Multivariate tests indicate how various UI elements interact with each other and are a tool for making incremental improvements to a design.
8 Rules of A/B Testing – The Art in Marketing Science - Search Engine WatchJun 23, 2022
Data will tell you the right answer. If you can’t find data somewhere, you should run a test, collect the data, and let it tell you what’s right. A/B testing is one of the core marketing arts a marketer should master and practice.
ANALYZE YOUR A/B TEST RESULTSJun 23, 2022
The best way to determine what works best for your site is to carry out an A/B test for your landing pages. Check out this A/B significant test calculator.
ReforgeJun 13, 2022
Statistical Significance Calculator - FREE AB Test CalculatorMay 28, 2022
Our A/B test calculator will help you to compare two or three variants to determine which test will be statistically significant.
Why You Only Need to Test with 5 UsersJan 17, 2022
Elaborate usability tests are a waste of resources. The best results come from testing no more than 5 users and running as many small tests as you can afford.
11 A/B Testing Tools to Optimize ConversionsNov 17, 2021
A/B testing, the process of exposing randomized visitors to one or more variables, is among the most effective strategies to optimize user experiences and conversion rates. Here is a list of A/B testing tools.
Why You Should Switch to Bayesian A/B TestingJun 7, 2021
Statistics & Business can share the same Language
A/B/C Tests: How to Analyze Results From Multi-Group ExperimentsMay 18, 2021
Experimentation is widely used at tech startups to make decisions on whether to roll out new product features, UI design changes, marketing campaigns and more, usually with the goal of improving…
Oliver Palmer | You probably don’t need A/B testingMar 22, 2021
The best way to optimise your website is usually the simplest.
8 Common Pitfalls of Running A/B TestsFeb 22, 2021
How not to fail your online controlled experimentation
A/B Testing — A complete guide to statistical testingFeb 18, 2021
Optimizing web marketing strategies through statistical testing
AB_Testing/AB_Testing.ipynb at main · bjpcjp/AB_TestingFeb 18, 2021
A/B Testing — A complete guide to statistical testing - bjpcjp/AB_Testing
Why you should try the Bayesian approach of A/B testingDec 18, 2020
The intuitive way of A/B testing. The advantages of the Bayesian approach and how to do it.
The ultimate guide to A/B testing. Part 4: Bayesian approach (binomial variSep 3, 2020
A/B testing is a very popular technique for checking granular changes in a product without mistakenly taking into account changes that…
To Get More Replies, Say LessJul 25, 2020
This is a story of how a software company was able to start a conversation with 8x more of their users by cutting the length of their emails by 90%. You could set up a test of this method in less than an hour. The Problem One of the most
HomeMay 15, 2020
Beyond A/B Testing: Primer on Causal InferenceMar 9, 2020
Making the most out of your experiments and observational data
I've Built Multiple Growth Teams. Here's Why I Won't Do It Again. | CXLDec 23, 2019
Big success. Bigger failure. And lots of lessons. Learn why building a growth team may be a multi-million dollar mistake.
32,487 A/B tests conducted by Upworthy from January 2013 to April 2015Dec 23, 2019
197K subscribers in the datasets community. A place to share, find, and discuss Datasets.
How Etsy Handles Peeking in A/B Testing - Code as CraftAug 30, 2019
Etsy relies heavily on experimentation to improve our decision-making process. We leverage our internal A/B testing tool when...
25 Ecommerce A/B Testing Ideas For Your 5 Top Store PagesNov 26, 2018
The biggest question in ecommerce A/B testing is not “how.”
Comparing A/B and Multivariate TestingJan 24, 2018
A/B tests are controlled experiments of two attributes, to measure which one was most popular with users. You can apply A/B testing to just about anything that you can measure. Multivariate testing allows you to measure multiple variables simultaneously.
Tips for A/B Testing with RDec 27, 2017
Which layout of an advertisement leads to more clicks? Would a different color or position of the purchase button lead to a higher conversion rate? Does a special offer really attract more customers – and which of two phrasings would be better? For a long time, people have trusted their gut feeling to answer these questions. Today all these questions could be answered by conducting an A/B test. For this purpose, visitors of a website are randomly assigned to one of two groups between which the target metric (i.e. click-through rate, conversion rate…) can then be compared. Due to this randomization, the groups do not systematically differ in all other relevant dimensions. This means: If your target metric takes a significantly higher value in one group, you can be quite sure that it is because of your treatment and not because of any other variable. In comparison to other methods, conducting an A/B test does not require extensive statistical knowledge. Nevertheless, some caveats have to be taken into account. When making a statistical decision, there are two possible errors (see also table 1): A Type I error means that we observe a significant result although there is no real difference between our groups. A Type II error means that we do not observe a significant result although there is in fact a difference. The Type I error can be controlled and set to a fixed number in advance, e.g., at 5%, often denoted as α or the significance level. The Type II error in contrast cannot be controlled directly. It decreases with the sample size and the magnitude of the actual effect. When, for example, one of the designs performs way better than the other one, it’s more likely that the difference is actually detected by the test in comparison to a situation where there is only a small difference with respect to the target metric. Therefore, the required sample size can be computed in advance, given α and the minimum effect size you want to be able to detect (statistical power analysis). Knowing the average traffic on the website you can get a rough idea of the time you have to wait for the test to complete. Setting the rule for the end of the test in advance is often called “fixed-horizon testing”. Table 1: Overview over possible errors and correct decisions in statistical tests Effect really exists No Yes Statistical test is significant No True negative Type II error (false negative) Yes Type I error (false positive) True positive Statistical tests generally provide the p-value which reflects the probability of obtaining the observed result (or an even more extreme one) just by chance, given that there is no effect. If the p-value is smaller than α, the result is denoted as “significant”. When running an A/B test you may not always want to wait until the end but take a look from time to time to see how the test performs. What if you suddenly observe that your p-value has already fallen below your significance level – doesn’t that mean that the winner has already been identified and you could stop the test? Although this conclusion is very appealing, it can also be very wrong. The p-value fluctuates strongly during the experiment and even if the p-value at the end of the fixed-horizon is substantially larger than α, it can go below α at some point during the experiment. This is the reason why looking at your p-value several times is a little bit like cheating, because it makes your actual probability of a Type I error substantially larger than the α you chose in advance. This is called “α inflation”. At best you only change the color or position of a button although it does not have any impact. At worst, your company provides a special offer which causes costs but actually no gain. The more often you check your p-value during the data collection, the more likely you are to draw wrong conclusions. In short: As attractive as it may seem, don’t stop your A/B test early just because you are observing a significant result. In fact you can prove that if you increase your time horizon to infinity, you are guaranteed to get a significant p-value at some point in time. The following code simulates some data and plots the course of the p-value during the test. (For the first samples which are still very small R returns a warning that the chi square approximation may be incorrect.) library(timeDate) library(ggplot2) # Choose parameters: pA
5 Tricks When A/B Testing Is Off The TableDec 11, 2017
Data Science, Machine Learning, AI & Analytics
acting
Delroy Lindo On The "Brilliant" And "Contemporary" Story In Ryan Coogler's 'Sinners' [Interview]Dec 31, 2025
Delroy Lindo already deserved an Oscar nomination. He might finally get one for his role as Delta Slim in Ryan Coogler's Sinners.
How Marlon Brando Changed Acting: Inside a Scene from On the WaterfrontNov 4, 2025
Marlon Brando has now been gone for more than two decades, and so thoroughgoing was his impact on the art of film acting that younger generations of movie-lovers may have trouble pinning down what, exactly, he did so differently on screen.
How Daniel Radcliffe Outran Harry PotterJun 28, 2025
He was the world’s most famous child star. Then he had to figure out what came next.
“It’s a Hell of a Thing, Killing a Man”: the Birth of Clint Eastwood’s UnforgivenJun 24, 2025
Eastwood biographer Shawn Levy dives into the making of the director’s masterpiece: “Unforgiven was Clint Eastwood saying, ‘This is what I’m going to do…get out of my way.’”
Albert Brooks Is EverywhereJun 24, 2025
The funniest people on the planet think there’s no funnier person than Albert Brooks.
Kathy Bates Didn’t Expect the Lovefest: “Y’all, Where Were You When I Was Sitting on the Couch by Myself?”May 27, 2025
The Matlock star talks candidly about longevity, mental health, and the decades she spent feeling like she didn’t belong.
How Actors Remember Their LinesMay 27, 2024
In describing how they remember their lines, actors are telling us an important truth about memory.
The Many Lives of Walton GogginsApr 9, 2024
The actor plays dual roles in 'Fallout'—a monster and the man he used to be—prompting a look back at his own unlikely past.
How Marlon Brando Lost His WayApr 4, 2024
From 2008: What was real about the realest actor of them all? Claudia Roth Pierpont on Brando’s dilemmas and his depths.
How a Middle-Aged Everyman Actor Won Everyone OverFeb 29, 2024
Paul Giamatti’s performance in "The Holdovers" is just another high point in a long, memorable career.
The Loneliness of Jodie FosterFeb 22, 2024
A star since childhood, she spent decades guarding her privacy. On-screen, she’s always played the solitary woman under pressure. But in a pair of new roles, she’s revealed a different side of herself.
I Can’t Shut Up About Jennifer CoolidgeJan 22, 2023
The world is finally singing her long-overdue praise.
The 32 Greatest Character Actors Working TodayMar 28, 2021
We asked critics and Hollywood creators: Which supporting players make everything better?
Searching for Shelley Duvall: The Reclusive Icon on Fleeing Hollywood and the Scars of Making ‘The Shining’Feb 12, 2021
After leaving L.A. and making only one public appearance since — on a widely condemned mental illness episode of 'Dr. Phil' — the complicated star of 'The Shining' discusses her legacy and the trauma of the Stanley Kubrick film.
The Seven Ages of Barry Corbin – Texas MonthlyFeb 3, 2021
From ‘Urban Cowboy’ to ‘Northern Exposure’ to ‘No Country for Old Men,’ Texas’s finest character actor isn’t hanging up his spurs just yet.
Ted Danson Was Never Sam Malone. That’s Why He Was Such a Great Sam Malone.Jan 13, 2021
Although ‘Cheers’ made the actor a star, he always swore he had a tough time getting comfortable playing the womanizing character. But the humanity he brought to Sam has informed his career and his life ever since.
activations
The Meaning Behind Logistic Classification, from Physics | by Tim Lou, PhDMar 26, 2023
Why do we use the logistic and softmax functions? Thermal physics may have an answer.
The Dying ReLU Problem, Clearly ExplainedMar 30, 2021
Keep your neural network alive by understanding the downsides of ReLU
Math | Obviously AwesomeFeb 4, 2021
Activation functions are functions which take an input signal and convert it to an output signal. Activation functions introduce…
Math | Obviously AwesomeFeb 4, 2021
Recently, a colleague of mine asked me a few questions like “why do we have so many activation functions?”, “why is that one works better…
Math | Obviously AwesomeFeb 4, 2021
Activation functions are functions that we apply in neural networks after (typically) applying an affine transformation combining weights and input features. They are typically non-linear functions. The rectified linear unit, or ReLU, has been the most popular in the past decade, although the choice is architecture dependent and many alternatives have emerged in recent years. In this section, you will find a constantly updating list of activation functions.
Learning the Differences between Softmax and Sigmoid for Image ClassificatiAug 30, 2019
Week Two - 100 Days of Code Challenge
Deep Learning: Which Loss and Activation Functions should I use?Aug 30, 2019
The purpose of this post is to provide guidance on which combination of final-layer activation function and loss function should be used in…
Choosing the right activation function in a neural networkFeb 12, 2018
Stay up-to-date on the latest data science and AI news in the worlds of artificial intelligence, machine learning, deep learning, implementation, and more.
addiction
Engineered AddictionsJun 30, 2025
How silicon valley is putting a price tag on your attention - and relationships
The Dark Side of UX: Lessons from OnlyFans’ Addictive DesignFeb 17, 2025
OnlyFans leverages a meticulously crafted UX to create a powerful sense of intimacy and exclusivity, captivating users while sparking ethical debates about manipulation and exploitation.
Auction Addiction: This Online Industry's Dirty SecretsJul 5, 2022
How easy is it to fall into auction addiction? Here we examine how one site, Quibids, tried its hand at behavioral design.
They Were Cigarette Smokers. Then a Stroke Vanquished Their Addiction.Jun 14, 2022
Patients whose brain injury coincidentally relieved their nicotine cravings may help unravel the neural underpinnings of addiction, a new study suggests.
adtech-adwords
How I block all online adsDec 8, 2025
A couple of years ago, I decided I'd had enough of ads. Not just the occasional banner or a quick pre-roll video — I mean all of them. They have to go.
How to use Google Ads Auction Insights to outrank competitorsSep 4, 2025
Do you know who you’re really competing against? Here's how the Google Ads Auction Insights report can give you a huge competitive advantage.
Privacy-Safe Attribution Avoids User TrackingAug 18, 2025
A new attribution approach uses large sets of anonymized data to infer which channels and campaigns led to conversions.
Confessions of a marketer on pulling every client off Google's PMaxAug 13, 2025
In this edition of our Confessions series, a growth marketing veteran explains why they’ve they pulled all ad dollars from Google's PMax.
Google Ads Keyword Planner: What you need to knowMay 8, 2025
Learn how to use Google Ads Keyword Planner — from finding high-impact keywords to understanding search volumes and forecasts.
How Perplexity calculates publishers’ share of ad revenueDec 17, 2024
The way Perplexity is sharing ad revenue with publishers depends on a number of factors. Here’s how Perplexity is making those calculations.
How Google Ads Was Able to Support 4.77 Billion Users With a SQL Database 🔥Nov 10, 2024
#60: Break Into Google Spanner Architecture (5 Minutes)
White-label ad exchange platforms: Key features to look forNov 5, 2024
Digital advertising is developing at the speed of light, and things like Attekmi white label ad exchange are becoming an
How Google Defended Itself in the Ad Tech Antitrust TrialOct 19, 2024
The tech giant, which wrapped up its arguments in the federal monopoly trial, simply says it has the best product.
How Google made the ad tech industry revolve around itselfSep 24, 2024
The final days of the trial approach.
What's up with Mozilla buying ad firm Anonym? It's all about 'privacy-centrJun 20, 2024
Is such a thing possible for an industry that never respected people's wishes?
Costco is building out an ad business using its shoppers’ dataJun 7, 2024
The third-largest US retailer is planning on rolling out targeted ad capabilities on and off its website.
Investigating Google's Ad BusinessJun 4, 2024
Here's a methodology for identifying piracy sites making money with Google ads
A guide to investigating digital ad librariesJun 4, 2024
How to dig into ad libraries from Google, Meta and other platforms to track spending, narratives, campaigns and more
WTF is ID spoofing?May 23, 2024
ID spoofing, cookie stuffing, ID stuffing, etc. What does it mean when an SSP's user ID doesn't match the DSP's ID?
Ad execs sound off on Amazon’s DSP dilemmaMar 25, 2024
Many ad executives have found Amazon's DSP to be cumbersome to use, lacking in measurement capabilities and limited in the range of inventory it offers for purchase.
Photographer steps inside Vietnam’s shadowy ‘click farms’ | CNNMar 10, 2024
The images offer a rare glimpse inside murky enterprises that artificially generate social media likes, comments and shares for less than a cent a click.
How the Pentagon Learned to Use Targeted Ads to Find Its Targets—and VladimMar 3, 2024
Meet the guy who taught US intelligence agencies how to make the most of the ad tech ecosystem, "the largest information-gathering enterprise ever conceived by man."
What is RGSP? Google’s Randomized Generalized Second-Price ad auctions explOct 15, 2023
A deep dive into why the DOJ thinks RGSP makes ad auctions unfair, and why Google believes it creates a better user experience.
Amazon's $43B ad business, explainedOct 6, 2023
Jeff Bezos long shunned ads. However, Amazon's juicy first-party data has enabled it to compete with Alphabet and Meta in the new digital advertising landscape.
How 20 years of Google’s AdSense changed the internetMar 10, 2023
Google's targeted ad initiative AdSense was initially launched as “content targeting advertising” 20 years ago this month. Here’s how it changed the internet.
How to set up a Google Ads accountDec 21, 2022
Getting started with Google Ads is a bit more complex than it used to be. This guide walks you through the initial steps of account setup.
Meet Performance Max, The Blackest Black Box Of All Google Ad Products | AdExchangerDec 19, 2022
Lost in the Sturm und Drang of Q4 (Q for quarantine) 2020, Google introduced a beta program called Performance Max, its first ad product spanning all Google-owned media. A year later, Performance Max exited beta. And fast-forward another year to today, and Performance Max has quietly become the fastest growing and potentially most controversial product […]
What is an Ad Exchange? An A to Z Guide for Publishers and AdvertisersOct 30, 2022
Learn everything you need to know about an ad exchange, from how they function to their impact on advertising success. Here's an A to Z guide.
A Complete Taxonomy of Internet Chum - The AwlOct 29, 2022
by John MahoneyThis is a bucket of chum. Chum is decomposing fish matter that elicits a purely neurological brain stem response in its target consumer: larger fish, like sharks. It signals that they should let go, deploy their nictitating ...
How Bots Corrupted AdvertisingOct 18, 2022
Botmasters have created a Kafkaesque system where companies are paying huge sums to show their ads to bots. And everyone is fine with this.
Apple robbed the mob's bank, part 3 | Mobile Dev Memo by Eric SeufertAug 8, 2022
Apple robbed the mob's bank, part 3. Mobile marketing and advertising, freemium monetization strategy, and marketing science. Mobile Dev Memo.
How Much Does Google Ads Cost? | 2022 Google Ads PricingJul 30, 2022
How much does Google Ads cost? Google Ads costs $100 - $10,000 per month with an average CPC of $0.11 - $0.50. Learn more about Google Ads pricing here!
7 Deadly Google Ads Mistakes That'll Make You Broke (And How to Fix Them)Jul 19, 2022
Here's some common AdWords mistakes that make affect your campaigns, as well as how to fix them.
How To Easily Manage & Test Millions Of AdsJul 18, 2022
You must test ads to make your paid search account grow and thrive. That fact is no longer debatable – it is just a best practice fact. Ad testing in
Easy statistics for A/B testing and hamstersJul 18, 2022
A/B testing tools often lie about whether something is "statistically significant." Here's an extremely simple, mathematically sound formula to compute it for yourself.
How Savvy Is Your AdWords Account? 7 Areas To AuditJul 18, 2022
When you do AdWords account audits, you need to go beyond the data to see how savvy the AdWords account is overall. If the account is well put together,
Brand Bidding Techniques: Smart Ways To Use Typos & URLs As KeywordsJul 18, 2022
Finding the right mix of keywords is as much science as it is good common sense. When it comes to your brand, there are typo and URL derivation techniques
5 successful B2B AdWords best practices for any companyJul 14, 2022
For B2B businesses in competitive markets, AdWords can be difficult to manage effectively. Columnist Todd Saunders provides some tips that will keep costs low and boost Quality Scores.
Category:Online advertising services and affiliate networksJun 25, 2022
List of Advertising networks and Affiliate networks, which include CPA Networks as well as contextual and keyword targeted advertising services. Basically networks and services that provide the means for webmasters to monetize their websites. Pay per click search engines should be listed in a different category. The content network version of search engine's PPC services belong in here though.
How Facebook Avoids Ad BlockersJun 23, 2022
Many sites try to avoid our ad blockers through limiting content or just straight out pleaing. Other companies are looking at encrypting any kind of indicator that screams “AD!” through obfuscation and other fancy techniques—confusing ad blockers. Here we’ll look at some interesting techniques Faceb...
Predicting Keyword Volume Before Data is in AdwordsJun 13, 2022
Being able to get in front of trending keywords can be a valuable but difficult task. In this week's Whiteboard Friday, we'll be talking about predicting keyword volume - before the data is even in adwords!
Dutch national broadcaster saw ad revenue rise when it stopped tracking users. It's meant to work like that, right?Jun 13, 2022
Brave browser's policy officer questions efficacy of personalised ads
The LinkedIn Hack That Made Me $120,000Jun 7, 2022
Here’s why a writer at TechCrunch called me the biggest hustler he has ever met.
Google AdWords: Successful Campaigns for Beginners - noupeJun 2, 2022
Google AdWords is a good opportunity to boost sales in a short period of time for both small and large businesses alike. Learn the basics here.
We Analyzed The Top 7,000 Websites in 22 Industries. Here’s What We LearnedJan 31, 2022
We analyzed 7,000+ websites with reviews of more than 4 stars on Trustpilot. Here are some SEO factors we noticed they had in common.
This tool confuses Google's ad network to protect your privacy | MIT TechnoJan 12, 2022
Current privacy laws don’t shield people from the pervasive surveillance of Big Tech. Guerrilla tactics are all we’ve got.
The Ultimate Guide to Google Ads Campaign ManagementAug 12, 2021
Managing a Google ads campaign requires understanding how to check, optimize, test, and change your ads. Read this post to learn more.
How to poison the data that Big Tech uses to surveil youJun 24, 2021
Algorithms are meaningless without good data. The public can exploit that to demand change.
Can Apple change ads? — Benedict EvansJun 14, 2021
20 years ago Apple seized music, and turned it into a lever for its broader business. It failed to do the same to TV, and lost control of music, but won massively in games, where it now makes more money than the entire global digital music industry. Now, perhaps, it’s looking at advertising.
Why Google’s approach to replacing the cookie is drawing antitrust scrutinyFeb 3, 2021
Google’s Privacy Sandbox is under increasing scrutiny throughout the digital media industry and now from the U.K. government as well.
Google eyes privacy-friendly substitute to cookies - AxiosJan 26, 2021
Tests show advertisers can expect at least 95% of conversions per dollar spent on ads, compared to cookie-based advertising, Google said.
Hacks, Methods and Tools to Keyword Research for eCommerce StoresDec 23, 2019
Learn the exact way that I perform keyword research that generates profitable, scalable ROI for eCommerce stores.
Inside the Brotherhood of Pi-hole Ad BlockersDec 15, 2019
For the advertising industry, ad blocking is an existential crisis. For the Pi-hole community, it’s a sport.
Ad-Tech Experts Call for Third-Party Verification After the Death of the CoOct 16, 2019
Google’s proposals for machine learning-based frequency capping are questioned.
WTF is authenticated consent?Aug 20, 2019
Authenticated consent is a term that has started to crop up more and will likely gain more steam in the future. Here's what it means.
Hey advertisers, track THIS | The Firefox FrontierJun 26, 2019
If it feels like the ads chasing you across the internet know you a little too well, it’s because they do (unless you’re an avid user of ad blockers, i
Ghost sites, domain spoofing, fake apps: A guide to knowing your ad fraudJan 31, 2019
Digital ad fraud is a volume game. Here’s a primer on how to spot the core techniques used to generate CPM fraud.
The programmatic marketer’s 2019 checklistJan 10, 2019
Four ways advertisers can improve transparency, control and efficiency of their programmatic buys are detailed here.
Bid caching, bid shading, consent strings: A guide to understanding DmexcoSep 12, 2018
Ad tech is riddled with jargon. For those attending the digital marketing conference Dmexco in Cologne this week, here's a primer to help keep up.
Memory app Timehop built an ad server to go from near-death to profitableAug 31, 2018
Timehop's 15-person team ended up creating its own ad server. A year and a half later, CPMs have grown from $2 to $28.
Amazon is testing an attribution pixel, a key step in rivaling the duopolyAug 31, 2018
Like Google and Facebook, Amazon wants to take credit for the success of ads outside its own platform.
Decoding the jargon behind Google’s antitrust ad tech trial: a glossary for the confusedSep 24, 2011
From industry terms like "header bidding" to "AdX" to "DSPs" to internal Google terms, such as "Jedi Blue," there's a lot to wrap your head around.
10 advanced strategy ideas for Google AdsAug 24, 2005
Discover 10 key tactics to optimize your Google Ads campaigns, whether you run large ecommerce accounts or low-volume B2B campaigns.
adversarial
[1605.09782v6] Adversarial Feature LearningFeb 4, 2021
The ability of the Generative Adversarial Networks (GANs) framework to learn generative models mapping from simple latent distributions to arbitrarily complex data distributions has been...
Researchers detail TrojAI, a framework for hardening AI models against adveMar 18, 2020
In a preprint paper, researchers at Johns Hopkins detail TrojAI, a framework for hardening AI models against adversarial attacks.
An End to End Introduction to GANs using Keras - MLWhizDec 23, 2019
I bet most of us have seen a lot of AI-generated people faces in recent times, be it in papers or blogs. We have reached a stage where it is becoming increasingly difficult to distinguish between actual human faces and faces that are generated by Artificial Intelligence. In this post, I will help the reader to understand how they can create and build such applications on their own. I will try to keep this post as intuitive as possible for starters while not dumbing it down too much. This post is about understanding how GANs work.
Bayesian Inference with Generative Adversarial Network PriorsDec 14, 2019
A blog about Compressive Sensing, Computational Imaging, Machine Learning. Using priors to avoid the curse of dimensionality arising in Big Data.
Open Questions about Generative Adversarial NetworksAug 29, 2019
What we'd like to find out about GANs that we don't know yet.
Nvidia’s GauGAN has been used to create 500,000 imagesAug 5, 2019
Nvidia's GauGAN tool has been used to create more than 500,000 images, the company announced at the SIGGRAPH 2019 conference in Los Angeles.
How Adversarial Attacks WorkNov 11, 2017
Emil Mikhailov is the founder of XIX.ai [http://XIX.ai] (YC W17). Roman Trusov is a researcher at XIX.ai. Recent studies by Google Brain have shown that any machine learning classifier can be tricked to give incorrect predictions, and with a little bit of skill, you can get them to give pretty much any result you want. This fact steadily becomes worrisome as more and more systems are powered by artificial intelligence — and many of them are crucial for our safe and comfortable life. Banks, sur
advertising-commercials
‘If you don’t like dark roast, this isn’t the coffee for you’: How exclusionary ads can win over the right customersJan 13, 2026
By openly saying, ‘This isn’t for you,’ brands signal focus and specificity. That helps the right customers feel a stronger connection.
How I block all online adsDec 8, 2025
A couple of years ago, I decided I'd had enough of ads. Not just the occasional banner or a quick pre-roll video — I mean all of them. They have to go.
Ads in NFL Games are 23 Times More Effective Than All Other TV BuysAug 26, 2025
New research indicates the extent to which NFL advertising dominates other forms of TV programming for marketer returns.
Optimally Suboptimal: Behavioral-Economic Product FeaturesJul 22, 2025
Booking travel online feels like shopping in an Indian bazaar: a deluge of options, no credible information, aggressive hawkers (“recommendations” and “targeted ads”), and hours of frantic search that end with purchasing something more out of exhaustion than conviction. Online travel booking is not unique in offering this miserable experience. Buying on Amazon feels like a similar sand trap. But why is that? Poor product management? A more provocative but perhaps more accurate answer is that the
Advertising Without Signal: The Rise of the Grifter EquilibriumJul 19, 2025
Economists credit ads with two welfare‑enhancing roles:
1. Informative – trimming search costs (Stigler 1961 (pdf)).
2. Signaling – In classic models, high-quality sellers are more willing to incur large, sunk ad costs because they expect to recoup them through future sales—especially in experience-good markets where quality is learned over time (Nelson 1974). Milgrom and Roberts (1986) formalize this idea: when ad spend is costly and more valuable to better firms, it can serve as a credible
What Companies Do Well is Not Necessarily How They Make MoneyNov 2, 2024
Thoughts on business models that don't seem to make perfect sense
From ‘Hire Me’ to Better Call Tang, the Quirky World of Metro AdsJul 9, 2024
To diversify declining revenue streams, one city metro launched a personalized ad service earlier this year, allowing individuals to purchase ad space for messages ranging from birthday greetings and job searches to marriage proposals and quirky jokes.
The Art Of AnnoyanceJul 3, 2024
When it comes down to it, it’s best to think of advertising as a coordinated, decades-long campaign to annoy the heck out of you. And it works pretty well.
Thanks to NIL, local car dealers are out of the shadows and landing star coJun 11, 2024
Dealers offer car leases for 12 months in exchange for marketing on athletes' social media accounts.
A guide to investigating digital ad librariesJun 4, 2024
How to dig into ad libraries from Google, Meta and other platforms to track spending, narratives, campaigns and more
Bumble, Apple, and the art of the advertising apologyMay 20, 2024
The five types of advertising apologies, explained.
Trevor Noah and Roger Federer board the 'wrong train' in hilarious SwitzerlMay 13, 2024
The duo 'got into deep trouble' for boarding the 'wrong train' but it turned into the ride of a lifetime for them.
I Was at the Clapperboard for Orson Welles’ Drunk Wine CommercialMay 10, 2024
I also helped undress him so he could lie down
Digiday+ Research: A guide to ad-supported streaming services, from the topMay 7, 2024
The first installment of Digiday's two-part series on the top ad-supported streaming services provides an overview of the platforms’ offerings and an analysis of how brands and agencies distribute their ad budgets and ad placements across platforms.
Research Briefing: Frequency capping matters most on streaming platformsMay 5, 2024
In this edition of the Digiday+ Research Briefing, we examine the top ad attributes marketers want from ad-supported streaming platforms, how brands are increasing their marketing spend on YouTube, and how Walmart and Roblox are teaming up to make virtual e-commerce a reality, as seen in recent data from Digiday+ Research.
7 Tips for Memorable and Easy-to-Understand ImageryMay 4, 2024
A few relevant, high-quality visuals placed next to associated text can boost users’ comprehension of your content and its memorability.
The Beer Advertising Posters Designed by Henry Jerome Schile in The 19th CeApr 6, 2024
German-American artist Henry Jerome Schile was born in Oberharmersbach, Baden-Württemberg, in 1829. He emigrated to the US in 1851 and worked in New York in the middle of the 19th century. h/t: vintag.es Henry Schile’s work is described by Harry T. Peters in America on Stone as: “Though of
What You Need to Know About U.S. Sports TV ContractsFeb 19, 2024
The NFL's television contracts account for $12.4 billion, about 43% of all sports TV deals in the U.S.
Understanding YouTube Campaign TypesFeb 19, 2024
Google Ads offers seven YouTube campaign subtypes, ranging from reaching users while browsing to driving conversions.
Text vs. Images: Which Content Format is Effective?Feb 5, 2024
When we talk about using different ways to share information, it's like picking the one that fits what you need! Words, pictures, and mixes of both have
What is RGSP? Google’s Randomized Generalized Second-Price ad auctions explOct 15, 2023
A deep dive into why the DOJ thinks RGSP makes ad auctions unfair, and why Google believes it creates a better user experience.
Amazon's $43B ad business, explainedOct 6, 2023
Jeff Bezos long shunned ads. However, Amazon's juicy first-party data has enabled it to compete with Alphabet and Meta in the new digital advertising landscape.
Why so many brands use sound to make you buy stuffJul 26, 2023
Netflix made sonic logos — the new version of jingles — trendy. But its success is hard to replicate.
The Untold History of the ‘Whassup?’ Super Bowl CommercialMay 30, 2023
How a grainy VHS tape became one of the most famous ads of all time — and went viral before viral was even a thing.
Should Print Circulars Stay or Go?May 5, 2023
Kroger is following in the footsteps of Giant Eagle, attempting to phase out its print inserts in newspapers and mailed to homes in favor of digital alternatives.
China’s Digital Landscape in 2020 | KAWO 科握Mar 20, 2023
A comprehensive overview of the China social media landscape in 2020 - know how to navigate and help marketing teams achieve success in Chinese social!
Sponsorship Definition & Meaning | Dictionary.comMar 19, 2023
The world's leading online dictionary: English definitions, synonyms, word origins, example sentences, word games, and more. A trusted authority for 25+ years!
How 20 years of Google’s AdSense changed the internetMar 10, 2023
Google's targeted ad initiative AdSense was initially launched as “content targeting advertising” 20 years ago this month. Here’s how it changed the internet.
How to set up a Google Ads accountDec 21, 2022
Getting started with Google Ads is a bit more complex than it used to be. This guide walks you through the initial steps of account setup.
Complete List of Songs Used in Commercials by Apple, Samsung, Google and MiDec 21, 2022
Songs used in commercials, advertisements, events, presentations and promotional materials by Apple, Samsung, Google and Microsoft.
Meet Performance Max, The Blackest Black Box Of All Google Ad Products | AdExchangerDec 19, 2022
Lost in the Sturm und Drang of Q4 (Q for quarantine) 2020, Google introduced a beta program called Performance Max, its first ad product spanning all Google-owned media. A year later, Performance Max exited beta. And fast-forward another year to today, and Performance Max has quietly become the fastest growing and potentially most controversial product […]
Media Mix Modeling: How to measure the effectiveness of advertising with PyDec 17, 2022
Media Mix modeling, its implementation, and practical tips
Branding With Bonobos? A Conservation Fee Might Help Save Them.Dec 11, 2022
Data suggests brands can blunt public awareness of species loss when they use at-risk animals in ads. Should they pay?
Basically everything on Amazon has become an adNov 15, 2022
Inside the under-the-radar business that makes more money than Amazon Prime.
What is an Ad Exchange? An A to Z Guide for Publishers and AdvertisersOct 30, 2022
Learn everything you need to know about an ad exchange, from how they function to their impact on advertising success. Here's an A to Z guide.
A Complete Taxonomy of Internet Chum - The AwlOct 29, 2022
by John MahoneyThis is a bucket of chum. Chum is decomposing fish matter that elicits a purely neurological brain stem response in its target consumer: larger fish, like sharks. It signals that they should let go, deploy their nictitating ...
How Bots Corrupted AdvertisingOct 18, 2022
Botmasters have created a Kafkaesque system where companies are paying huge sums to show their ads to bots. And everyone is fine with this.
How Much Does Google Ads Cost? | 2022 Google Ads PricingJul 30, 2022
How much does Google Ads cost? Google Ads costs $100 - $10,000 per month with an average CPC of $0.11 - $0.50. Learn more about Google Ads pricing here!
The Science of Controversial ContentJul 18, 2022
Let’s step away from the “hoo rah” surrounding content marketing, and discuss some legitimate strategies for creating popular, controversial content.
I spent $6 Million On Google Ads Last YearJul 18, 2022
I spent a lot of money on Google ads last year across Search, Display, Youtube, Discovery, and Gmail. Here's what I learned.
How To Easily Manage & Test Millions Of AdsJul 18, 2022
You must test ads to make your paid search account grow and thrive. That fact is no longer debatable – it is just a best practice fact. Ad testing in
Art, Commerce, and Zamfir: Selling Music on TVJul 18, 2022
Not sold in stores. Duhhhhhh.Neatorama is proud to bring you a guest post from Ernie Smith, the editor of Tedium, a twice-weekly newsletter that hunts for the end of the long tail. In another life, he ran ShortFormBlog.How the music industry’s TV-driven direct marketing strategies revived vintage hits, salvaged floundering careers, and brought us Zamfir’s epic pan flute.When I grew up, I listened to a lot of John Denver. Well, not really full songs, so much as the 10-second snippets of tun...
Justin Timberlake And The AC/DC RuleJul 14, 2022
A lesson from the Australian classic rockers explains why the pop star's newest album, which hasn't generated glowing reviews or massive radio hits, still had an explosive opening sales week.
The Economics of Infomercials - PriceonomicsJul 6, 2022
At $200 billion, the infomercial industry is twice the size of the entire TV business. How is that possible? We investigate the business model behind the Snuggie.
Anatomy of a Product Placement (Published 2022)Jul 5, 2022
As consumers skip ads and streaming content balloons, brands aim to be everywhere all at once.
Saudi-backed LIV Golf shows how ‘sportswashing’ can backfireJul 4, 2022
Saudi-backed LIV Golf shows how 'sportswashing' can backfire.
Hacker NewsJul 4, 2022
Sponsoring a football club is about more than just advertising, it's a status symbol.
Neil Patel's Digital Marketing BlogJun 29, 2022
Your #1 resource for digital marketing tips, trends, and strategy to help you build a successful online business.
Category:Online advertising services and affiliate networksJun 25, 2022
List of Advertising networks and Affiliate networks, which include CPA Networks as well as contextual and keyword targeted advertising services. Basically networks and services that provide the means for webmasters to monetize their websites. Pay per click search engines should be listed in a different category. The content network version of search engine's PPC services belong in here though.
Neil Patel's Digital Marketing BlogJun 23, 2022
Your #1 resource for digital marketing tips, trends, and strategy to help you build a successful online business.
How Facebook Avoids Ad BlockersJun 23, 2022
Many sites try to avoid our ad blockers through limiting content or just straight out pleaing. Other companies are looking at encrypting any kind of indicator that screams “AD!” through obfuscation and other fancy techniques—confusing ad blockers. Here we’ll look at some interesting techniques Faceb...
RokuJun 23, 2022
Roku provides the simplest way to stream entertainment to your TV. On your terms. With thousands of available channels to choose from.
We Wasted $50K on Google Ads So You Don't Have To – Indie HackersJun 23, 2022
Ever wondered if Google Ads are really worth it, but don't have the cash for an experiment? One's been done for you!
How to Market Taboo ProductsJun 23, 2022
Tips from successful campaigns promoting everything from shapewear to prostate health.
Startups Live & Die by These 5 Street-Smart Laws of Advertising | TechCrunchJun 14, 2022
“Money alone isn't enough to bring happiness . . . happiness when you're actually truly ok with losing everything you have.” - Tony Hsieh, Delivering Happiness: A Path to Profits, Passion, and Purpose Disclaimer: This article’s sole purpose is to address the core principles of advertising in a new and edgy way. This is not for the faint of heart or those highly sensitive to socially charged public issues. So suck it up and buckle up. You’re about to be taken to school (of hard knocks). Class is now in session.
TV Advertising’s Surprising Strength — And Inevitable FallJun 13, 2022
TV advertising is having a good week at the upfronts, and it may be more resilient than expected. That, though, means the crash will be even more abrupt.
Dutch national broadcaster saw ad revenue rise when it stopped tracking users. It's meant to work like that, right?Jun 13, 2022
Brave browser's policy officer questions efficacy of personalised ads
The LinkedIn Hack That Made Me $120,000Jun 7, 2022
Here’s why a writer at TechCrunch called me the biggest hustler he has ever met.
I stopped advertising everywhere and nothing happened.Apr 8, 2022
What happens when you turn off all of your Internet advertising? Apparently, nothing. This post explores how I came to the decision to turn off all ads, and what I found as a result.
Why I changed my mind about advertising | The Sample blogFeb 10, 2022
I used to be very anti-advertising. Fast forward two years and several pivots, and my slightly-less-early-stage business is doing $900 per month in revenue... from ads.
Is Old Music Killing New Music? - by Ted GioiaJan 20, 2022
All the growth in the music business now comes from old songs—with consumption of new music actually shrinking. How did we get here, and is there a way back?
Celebrity Ads Have Never Been WorseJan 16, 2022
Pitt. Depp. Wahlberg. Damon. Bad. Dumb. Stupid. Awful.
This tool confuses Google's ad network to protect your privacy | MIT TechnoJan 12, 2022
Current privacy laws don’t shield people from the pervasive surveillance of Big Tech. Guerrilla tactics are all we’ve got.
People Don’t Buy Products, They Buy Better Versions of Themselves – ZanderDec 27, 2021
What Apple, Samsung, and Starbucks learned from Pepsi Photo by John Fornander on Unsplash The year was 1957, and Pepsi — like many of the youth at that time — was dealing with an ide…
Billboard EmpireJun 26, 2021
The evolution of the billboard, an object that very much tends to keep pace with the times. Who doesn’t love outdoor advertising?
How to poison the data that Big Tech uses to surveil youJun 24, 2021
Algorithms are meaningless without good data. The public can exploit that to demand change.
Can Apple change ads? — Benedict EvansJun 14, 2021
20 years ago Apple seized music, and turned it into a lever for its broader business. It failed to do the same to TV, and lost control of music, but won massively in games, where it now makes more money than the entire global digital music industry. Now, perhaps, it’s looking at advertising.
How Political Parties Can Win ConvertsJun 7, 2021
Political parties rarely run ads to try to win over long-term loyalists. New research suggests it’s actually possible—and worthwhile.
The Secret Psychology of Sneaker ColorsMay 24, 2021
You think they randomly choose those glaring shades of Nike, Adidas and New Balance? Think again.
The economics of movie product placementsMay 10, 2021
Today’s films are brimming with products from big-name brands. How exactly do these partnerships work? And is the payoff worth it?
The Decoy Effect: How You Are Influenced to Choose Without Really Knowing IFeb 21, 2021
Think you got a good deal? Look again.
To Counteract Propaganda, We Should Look to Lessons from AdvertisingJan 31, 2021
The goal should not be conversion but doubt.
Google eyes privacy-friendly substitute to cookies - AxiosJan 26, 2021
Tests show advertisers can expect at least 95% of conversions per dollar spent on ads, compared to cookie-based advertising, Google said.
Looks vs. Results: My ugly ad got 150% more clicks than a professional desiJan 4, 2021
Making things look nice can take a long time, either due to lack of resources or abundance of opinions. This could delay launches, frustrate people, and waste precious energy. Those are high costs for startups or companies hoping to move fast. Is it worth it? Long ago I got fed
Ads Don’t Work That Way | Melting AsphaltDec 26, 2020
With first-party data, Allrecipes is able to bake reader comments into adveDec 10, 2020
Publisher comment sections are not only seen has hotbeds for toxicity, but historically have been very difficult to monetize.
How Advertisers Convinced Americans They Smelled BadDec 10, 2020
A schoolgirl and a former traveling Bible salesman helped turn deodorants and antiperspirants from niche toiletries into a multi-billion industry.
Principles for Naming a BrandNov 3, 2020
Finding a brand name can be a painful process but these eight rules, based on brand naming examples, cover everything to get it right.
Video Advertising Glossary - SelectMediaNov 3, 2020
View our video advertising glossary and learn common terms that will help you understand better the world of video advertising.
How the Game-Changing George Foreman Grill Made HistoryApr 21, 2020
It's been 25 years since an aging prizefighter, a quirky gadget, and iconic ’90s marketing combined to take over the world.
One Piece of Calculus That Can Change the Way You AdvertiseMar 9, 2020
If you make $10 profit each time you sell a product, what cost per conversion should you aim for? Answering this question isn't easy, but it can teach us a lot about how to approach advertising.
Pitch deck: An inside peek at how Hulu is selling its pause adsFeb 19, 2020
Hulu is allowing just four advertisers to run pause ads each month, which helps to explain why this new type of inventory is selling out several months in advance.
Asked to Pick Between Opera or Broccoli, These Kids Packed the Opera HouseFeb 19, 2020
Fun Swedish stunt from McCann Stockholm creates a new rivalry
Why Burger King Is Proudly Advertising a Moldy, Disgusting WhopperFeb 19, 2020
The chain's anti-preservatives pledge breaks just about every rule in advertising.
Why Restoration Hardware Sends Catalogs the Size of a ToddlerFeb 19, 2020
The surprising persistence of the mail-order business
Inside the Brotherhood of Pi-hole Ad BlockersDec 15, 2019
For the advertising industry, ad blocking is an existential crisis. For the Pi-hole community, it’s a sport.
'Shoppable billboards': DTC retailers say physical stores are driving online salesAug 31, 2019
DTC brands credit physical stores with boosting their online sales.
WTF is authenticated consent?Aug 20, 2019
Authenticated consent is a term that has started to crop up more and will likely gain more steam in the future. Here's what it means.
America’s DIY Phone FarmersAug 5, 2019
Ordinary Americans are using armies of phones to generate cash to buy food, diapers, and beer through ad fraud.
Hey advertisers, track THIS | The Firefox FrontierJun 26, 2019
If it feels like the ads chasing you across the internet know you a little too well, it’s because they do (unless you’re an avid user of ad blockers, i
Stop Focusing on Trying to Go Viral and Instead Take a StandApr 2, 2019
Consumers want to connect with a brand.
The power of brands, conscious and unconsciousFeb 10, 2019
Economists explore the complex forces that shape what ends up in your shopping cart and how that might change in the online marketplace
Ghost sites, domain spoofing, fake apps: A guide to knowing your ad fraudJan 31, 2019
Digital ad fraud is a volume game. Here’s a primer on how to spot the core techniques used to generate CPM fraud.
We wasted $50K on Google Ads so you don’t have toJan 16, 2019
Connect with developers sharing the strategies and revenue numbers behind their companies and side projects.
The programmatic marketer’s 2019 checklistJan 10, 2019
Four ways advertisers can improve transparency, control and efficiency of their programmatic buys are detailed here.
How to Market a Seemingly Boring Industry in a Unique Way That Results in PSep 21, 2018
Sometimes the outrageous, bizarre route is best.
Inside the Mind of a Bodega Signmaker - CityLabSep 15, 2018
How these curbside canvases came to be, according to the men who make them.
How Food Holidays and Hashtags Like #NationalCoffeeDay Start Social MovemenSep 10, 2018
Opinion: Brands are promoting and foodies are consuming.
From neural nets to autonomous machine learning algorithms: The many differJun 8, 2018
We ask marketers to define AI, one of the industry's most prevalent buzzwords.
How Google got away with charging publishers more than anyone elseSep 24, 2016
The DOJ wants to show Google can do this because it has a monopoly.
advice
The 7 Types Of Advice (And 3 Common Failure Modes) — LessWrongDec 30, 2025
Reposting my Inkhaven post on ontology of advice here. …
Be Generous & Unique - ColossusOct 31, 2025
Kevin Kelly co-founded Wired magazine and is the author of the book Excellent Advice for Living. We cover his concept of the Technium, why rituals are an underappreciated part of society and family life, and the importance of developing your authentic self over a lifetime.
Recognise the point of giving advice and you can do it betterJan 27, 2024
A philosophical look at advising highlights what makes it a distinct form of interaction – and why it often goes wrong
The Technium: 103 Bits of Advice I Wish I Had KnownMay 30, 2022
UPDATE Several years ago on my 68th birthday I wrote up 68 bits of advice for my adult children, and posted them here. The bits were extremely popular, and they were widely shared by others. I was encouraged to write … Continue reading →
One simple way to build someone’s confidence: Ask for their adviceMay 31, 2021
When we want people to change, we typically tell them what to do. But what if we flipped the script and asked them for their wisdom instead? Behavioral scientist Katy Milkman PhD explains the power…
How to Give Better AdviceJan 30, 2021
Research reveals the common mistakes we make when trying to help.
affiliates
AI Shopping Tools Threaten AffiliatesAug 11, 2025
Shoppers who ask AI for product recommendations bypass traditional review sites, potentially causing lost or unattributed traffic from affiliates.
Passion into Profit: Guide to Affiliate Marketing as a Side HustleFeb 11, 2025
Turn your passion into profit! Learn step-by-step how to start affiliate marketing as a successful side hustle.
6 Maintenance Tasks to Conduct for Your Affiliate Program - noupeJan 7, 2025
Starting an affiliate program is one of the most effective ways to generate traction and grow your business. You authorize others to promote your
How an Ugly Single-Page Website Makes $5,000 a Month with Affiliate MarketiJan 23, 2024
No need to create a fancy and modern website with hundreds of pages to make money online.
How to Build an Amazon Affiliate Website - 2024 Guide - Make A Website HubJul 18, 2022
When it comes to making money online you’re going to have a lot of options at your disposal. Frankly, it can be quite overwhelming just choosing an online
The Top Affiliate Marketing NetworksJan 2, 2021
Looking to grow your affiliate marketing site but aren't sure which affiliate network is right for you? Here's everything you need to know.
affinity
Affinity Diagramming for Collaboratively Sorting UX Findings and Design IdeApr 29, 2024
Use affinity diagramming to cluster and organize research findings or to sort design ideas in ideation workshops.
Avoiding 3 Common Pitfalls of Affinity DiagrammingMar 19, 2023
Inexperienced facilitation in affinity diagramming workshops can lead to groupings that do not serve the team goals or misrepresent underlying issues.
Metric-Based (Ratings-based) Conjoint AnalysisMay 30, 2021
In marketing analytics, conjoint analysis is a technique used to gain specific insights about consumers’ preferences. Often derived from consumer surveys, conjoint analysis can tell us, for instance…
Affinity Analysis (Market Basket Analysis)Feb 20, 2021
Have you ever wondered how often do you buy certain items together? Why do you buy some items together? How likely do you purchase an item…
affordance
How Your Brain Gaslights You—for Your Own Good - NautilusJun 27, 2025
Nailia Schwarz via Shutterstock Nautilus Members enjoy an ad-free experience. Log in or Join now . Runners can tell you that sometimes the last mile of a run seems to feel dramatically longer than the first. This perceptual distortion isn’t limited to brains addled by exercise—it’s a consistent feature of our minds. When we […]
AffordanceOct 19, 2024
In psychology, affordance is what the environment offers the individual. In design, affordance has a narrower meaning; it refers to possible actions that an actor can readily perceive.
A concept in psychology is helping AI to better navigate our world | MIT TeJan 24, 2021
The concept: When we look at a chair, regardless of its shape and color, we know that we can sit on it. When a fish is in water, regardless of its location, it knows that it can swim. This is known as the theory of affordance, a term coined by psychologist James J. Gibson. It…
africa
The World-Shifting Grooves of Fela KutiNov 20, 2025
Sarah Larson on the podcast series “Fela Kuti: Fear No Man,” a deeply reported and sonically glorious biography of the legendary Nigerian musician, Afrobeat innovator, and rebel.
The Adopted Dallas Woman Who Found Family on the Other Side of the WorldJun 11, 2024
A herd of elephants halfway around the world gave an adopted Dallas woman the home she always wanted.
Nigerian businesses increasingly skip traditional banks and turn to MoniepoMar 8, 2024
Moniepoint’s payment machines have become ubiquitous across Nigeria. But the company faces competition from Chinese-backed OPay.
As a Son Risks His Life to Topple the King, His Father Guards the ThroneFeb 17, 2024
A student’s vow to overthrow one of Africa’s last ruling monarchs faces a roadblock: his own father, a soldier sworn to protect the throne.
WhatsApp voice notes are revolutionizing farming in SenegalJul 6, 2023
For farmers in Senegal who struggle to read or write, sending voice notes has unlocked a new world of collaboration across the industry.
The Mysterious, Naked Night Runners of Western KenyaMay 5, 2023
"When the wind blows you run away because you think it’s a night runner.”
The Despotism of Isaias Afewerki | Alex de WaalSep 9, 2022
Afewerki’s attack on Tigray is the culmination of the Eritrean dictator’s ambition to become master of the Horn of Africa.
The Incredible Journey of Three African Wild DogsJun 21, 2022
Three sisters braved lions, crocodiles, poachers, raging rivers and other dangers on a 1,300-mile transnational effort to forge a new dynasty.
The Awe-Inspiring But Tragic Story of Africa’s Festival In The Desert (2001Nov 3, 2021
Nenad Georgievski writes at All About Jazz, though the world knew little about Malian music until American musicians began partnering with players from West Africa. In the 1980s, Stevie Wonder began touring with Amadou and Mariam, helping to popularize their form of Malian blues.
The art dealer, the £10m Benin Bronze and the HolocaustMar 19, 2021
Western museums are under pressure to return looted treasure, but what of those in private collections?
agents
https://garryslist.org/posts/half-the-ai-agent-market-is-one-category-the-rest-is-wide-openFeb 22, 2026
🐣(Claude Code Beginners Guide) Multi-Agent Orchestration: Run Claude Code Like a 5-Person Team | NotionFeb 21, 2026
Quick note before you jump in:
Alibaba unveils new Qwen3.5 model for 'agentic AI era'Feb 16, 2026
Alibaba on Monday unveiled a new artificial intelligence model Qwen 3.5 designed to execute complex tasks independently, with big improvements in performance and cost that the Chinese tech giant claims beat major U.S. rival models on several benchmarks.
OpenClaw: The Viral AI Agent that Broke the Internet - Peter Steinberger | Lex Fridman Podcast #491Feb 12, 2026
Peter Steinberger is the creator of OpenClaw, an open-source AI agent framework that's the fastest-growing project in GitHub history.Thank you for listening ...
'Observational memory' cuts AI agent costs 10x and outscores RAG on long-context benchmarksFeb 11, 2026
As AI agents move into production, teams are rethinking memory. Mastra’s open-source observational memory shows how stable context can outperform RAG while cutting token costs.
I just woke up Claude Code Agent Swarm on local Qwen3 Coder Next. No cloud. No Internet. No quota anxiety. No 'You've hit your limit, resets 10 pm' By the numbers: - ~100 tokens/sec generation -… | Mitko Vasilev | 126 commentsFeb 7, 2026
I just woke up Claude Code Agent Swarm on local Qwen3 Coder Next.
Claude Code costs up to $200 a month. Goose does the same thing for free.Jan 20, 2026
Goose, Block’s open-source AI coding agent, is emerging as a free alternative to Anthropic’s Claude Code, as developers weigh offline control, rate limits, and the rising cost of AI coding tools.
Anthropic launches Cowork, a Claude Desktop agent that works in your files — no coding requiredJan 13, 2026
Anthropic’s Cowork brings Claude Code–style AI agents to the desktop, letting Claude access and manage local files and browse the web—boosting productivity while raising new security and trust risks.
First impressions of Claude Cowork, Anthropic’s general agentJan 13, 2026
New from Anthropic today is Claude Cowork, a “research preview” that they describe as “Claude Code for the rest of your work”. It’s currently available only to Max subscribers ($100 …
Claude Code is about so much more than codingJan 5, 2026
It’s a general-purpose AI agent. And it’s already a pretty good knowledge worker
The Behavioral Economics Of AI Agents - Why Consistency Doesn't Equal Trust - DataconomyDec 15, 2025
The AI industry has a trust problem that mirrors a paradox Daniel Kahneman identified decades ago in human decision-making: people
Practical Guide on how to build an Agent from scratch with Gemini 3Nov 23, 2025
A step-by-step practical guide on building AI agents using Gemini 3 Pro, covering tool integration, context management, and best practices for creating effective and reliable agents.
The DoorDash problem and the great AI browser fightNov 22, 2025
Amazon sued Perplexity this month over its Comet browser, which uses AI agents to do online shopping on your behalf. This is the first major front in the war over who gets to browse the web.
Just Talk To It - the no-bs Way of Agentic Engineering | Peter SteinbergerOct 14, 2025
A practical guide to working with AI coding agents without the hype.
Embracing the parallel coding agent lifestyleOct 6, 2025
Plus prompt injection attacks against Sora 2 cameos and notes on DSPy and Litestream 0.5.0
A Coding Guide to Build an Autonomous Agentic AI for Time Series Forecasting with Darts and Hugging FaceOct 4, 2025
A Coding Guide to Build an Autonomous Agentic AI for Time Series Forecasting with Darts and Hugging Face. A Step by step guide
WTF is headless browsing, and how are AI agents fueling it?Sep 17, 2025
AI agents are putting headless browsing back in the spotlight. That raises questions for publishers: How much traffic is real vs. automated?
I sent ChatGPT Agent out to shop for meJul 19, 2025
We tested OpenAI’s ChatGPT Agent, currently only available via its $200-per-month Pro subscription.
ChatGPT agent System Card | OpenAIJul 19, 2025
ChatGPT agent System Card: OpenAI’s agentic model unites research, browser automation, and code tools with safeguards under the Preparedness Framework.
Shirin Khosravi Jam on SubstackJul 13, 2025
I taught myself how to build RAG + AI Agents in production.
Been running them live for over a year now. Here are 4 steps + the only resources you really need to do the same.
…
Ugly truth: most “AI Engineers” shouting on social media haven’t built a single real production AI Agent or RAG system.
If you want to be different - actually build and ship these systems: here’s a laser-focused roadmap from my own journey.
..
🚀 𝗦𝘁𝗮𝗿𝘁 𝘄𝗶𝘁𝗵 𝗳𝘂𝗻𝗱𝗮𝗺𝗲𝗻𝘁𝗮𝗹𝘀
Because no matter how fast LLM/GenAI evolves, your ML & software foundations keep you relevant.
✅ Hands-On ML with TensorFlow & Keras: https://lnkd.in/dWrf5pbS
✅ ISLR: https://lnkd.in/djGPVVwJ
✅ Machine Learning for Beginners by Microsoft (free curriculum):
https://lnkd.in/d8kZA3es
…
1️⃣ 𝗠𝗮𝘀𝘁𝗲𝗿 𝗟𝗟𝗠𝘀 & 𝗚𝗲𝗻𝗔𝗜 𝗦𝘆𝘀𝘁𝗲𝗺𝘀
→ Learn to build & deploy LLMs, understand system design tradeoffs, and handle real constraints.
📚 Must-reads:
✅ Designing ML Systems – Chip Huyen: https://lnkd.in/guN-UhXA
✅ The LLM Engineering Handbook – Iusztin & Labonne: https://lnkd.in/gyA4vFXz
✅ Build a LLM (From Scratch) – Raschka: https://lnkd.in/gXNa-SPb
✅ Hands-On LLMs GitHub: https://lnkd.in/eV4qrgNW
…
2️⃣ 𝗚𝗼 𝗯𝗲𝘆𝗼𝗻𝗱 𝘁𝗵𝗲 𝗵𝘆𝗽𝗲 𝗼𝗻 𝗔𝗜 𝗔𝗴𝗲𝗻𝘁𝘀
→ Most demos = “if user says hello, return hello.”
Actual agents? Handle memory, tools, workflows, costs.
✅ AI Agents for Beginners (GitHub): https://lnkd.in/eik2btmq
✅ GenAI Agents – build step by step: https://lnkd.in/dnhwk75V
✅ OpenAI’s guide to agents: https://lnkd.in/guRfXsFK
✅ Anthropic’s Building Effective Agents: https://lnkd.in/gRWKANS4
…
3️⃣ 𝗥𝗔𝗚 𝗶𝘀 𝗻𝗼𝘁 𝗷𝘂𝘀𝘁 𝗮 𝘃𝗲𝗰𝘁𝗼𝗿 𝗗𝗕
Real Retrieval-Augmented Generation requires:
→ Chunking, hybrid BM25 + vectors, reranking
→ Query routing & fallback
→ Evaluating retrieval quality, not just LLM output
✅ RAG Techniques repo: https://lnkd.in/dD4S8Cq2
✅ Advanced RAG: https://lnkd.in/g2ZHwZ3w
✅ Cost-efficient retrieval with Postgres/OpenSearch/Qdrant
✅ Monitoring with Langfuse / Comet
…
4️⃣ 𝗚𝗲𝘁 𝘀𝗲𝗿𝗶𝗼𝘂𝘀 𝗼𝗻 𝗦𝗼𝗳𝘁𝘄𝗮𝗿𝗲 & 𝗜𝗻𝗳𝗿𝗮
→ FastAPI, async Python, Pydantic
→ Docker, CI/CD, blue-green deploys
→ ETL orchestration (Airflow, Step Functions)
→ Logs + metrics (CloudWatch, Prometheus)
✅ Move to production: https://lnkd.in/dnnkrJbE
✅ Made with ML (full ML+infra): https://lnkd.in/e-XQwXqS
✅ AWS GenAI path: https://lnkd.in/dmhR3uPc
…
5️⃣ 𝗪𝗵𝗲𝗿𝗲 𝗱𝗼 𝗜 𝗹𝗲𝗮𝗿𝗻 𝗳𝗿𝗼𝗺?
→ Stanford CS336 / CS236 / CS229 (Google it)
→ MIT 6.S191, Karpathy’s Zero to Hero: https://lnkd.in/dT7vqqQ5
→ Google Kaggle GenAI sprint: https://lnkd.in/ga5X7tVJ
→ NVIDIA’s end-to-end LLM stack: https://lnkd.in/gCtDnhni
→ DeepLearning.AI’s short courses: https://lnkd.in/gAYmJqS6
…
💥 𝗞𝗲𝗲𝗽 𝗶𝘁 𝗿𝗲𝗮𝗹:
Don’t fall for “built in 5 min, dead in 10 min” demos.
In prod, it’s about latency, cost, maintainability, guardrails.
♻️ Let's repost to help more people on this journey 💚
10 GitHub Repositories for Mastering Agents and MCPsJul 7, 2025
Learn how to build your own agentic AI application with free tutorials, guides, courses, projects, example code, research papers, and more.
I Tested LLM Agents on Simple Safety Rules. They Failed in Surprising and Informative Ways. — LessWrongJun 25, 2025
TL;DR: I developed a simple, open-source benchmark to test if LLM agents follow high-level safety principles when they conflict with a given task acc…
Building Effective AI AgentsJun 17, 2025
Discover how Anthropic approaches the development of reliable AI agents. Learn about our research on agent capabilities, safety considerations, and technical framework for building trustworthy AI.
Top 7 Python Frameworks for AI Agents - KDnuggetsMay 23, 2025
Design, test, and deploy multi-agent systems in hours using the powerful agentic frameworks.
Building AI Agents? A2A vs. MCP Explained Simply - KDnuggetsMay 15, 2025
Confused by AI agent frameworks? This article makes sense of A2A and MCP.
Coding agent in 94 lines of RubyMay 15, 2025
“It’s not that hard to build a fully functioning, code-editing agent.” Thorsten Ball
Claude Code Best PracticesApr 20, 2025
A blog post covering tips and tricks that have proven effective for using Claude Code across various codebases, languages, and environments.
How To Build An Agent | AmpApr 16, 2025
Building a fully functional, code-editing agent in less than 400 lines.
12-factor-agents: Principles to build LLM-powered software good enough to put in the hands of production customersApr 11, 2025
0 comments
What is Q-learning? - DataconomyMar 28, 2025
Q-learning is a model-free reinforcement learning algorithm that enables agents to learn optimal actions through interaction with their environment.
5 AI Agent Frameworks Compared - KDnuggetsFeb 3, 2025
Check out this comparison of 5 AI frameworks to determine which you should choose.
Creating an AI Agent-Based System with LangGraph: Adding Persistence and Streaming (Step by Step Guide)Feb 2, 2025
In our previous tutorial, we built an AI agent capable of answering queries by surfing the web. However, when building agents for longer-running tasks, two critical concepts come into play: persistence and streaming. Persistence allows you to save the state of an agent at any given point, enabling you to resume from that state in future interactions. This is crucial for long-running applications. On the other hand, streaming lets you emit real-time signals about what the agent is doing at any moment, providing transparency and control over its actions. In this tutorial, we’ll enhance our agent by adding these powerful
AgentsJan 12, 2025
Intelligent agents are considered by many to be the ultimate goal of AI. The classic book by Stuart Russell and Peter Norvig, Artificial Intelligence: A Modern Approach (Prentice Hall, 1995), defines the field of AI research as “the study and design of rational agents.”
aggregation
Defining AggregatorsJun 12, 2022
Building on Aggregation Theory, this provides a precise definition of the characteristics of aggregators, and a classification system based on suppliers. Plus, how to think about aggregator regulat…
Aggregation TheoryJun 12, 2022
The disruption caused by the Internet in industry after industry has a common theoretical basis described by Aggregation Theory.
Airbnb and the Internet RevolutionJun 4, 2022
Airbnb gets less press than Uber, but in some respects its even more radical: understanding how it works leads one to question many of the premises of modern society from hotels to regulations. It&…
Aggregation and the New RegulationJun 2, 2022
Because of the Internet realities described by Aggregation Theory a smaller number of companies hold an increasing amount of power. However, an increasing focus on market forces reduces the latitud…
Shopify and the Power of PlatformsFeb 10, 2022
It is all but impossible to beat an Aggregator head-on, as Walmart is trying to do with Amazon. The solution instead is to build a platform like Shopify.
Commoditizing SuppliersNov 23, 2021
Aggregators, by virtue of owning demand, gain power over suppliers which become modularized and commoditized. The Moat Map The Moat Map describes the correlation between the degree of supplier diff…
Aggregation Theory – Stratechery by Ben ThompsonNov 23, 2021
Aggregation Theory provides a framework to understand the impact of the Internet on nearly all industries.
3 ways to improve recommendations | by Yinyin Liu | XOKind | Aug, 2020 | MeNov 3, 2020
It’s time to bring together recent breakthroughs in AI to help solve information overload when you need quality recommendations the most.
The Moat MapMay 20, 2018
The Moat Map describes the correlation between the degree of supplier differentiation and the externalization (or internalization) of a company’s network effect.
agile
How Sprinting Slows You Down: A Better Way to Build SoftwareJun 7, 2024
Sprints promise to accelerate development, but often do the opposite. Check out this alternative approach to building software.
Study Finds 268% Higher Failure Rates For Agile Software ProjectsJun 6, 2024
Richard Speed reports via The Register: A study has found that software projects adopting Agile practices are 268 percent more likely to fail than those that do not. Even though the research commissioned by consultancy Engprax could be seen as a thinly veiled plug for Impact Engineering methodology...
Planning poker - WikipediaOct 20, 2023
Planning poker, also called Scrum poker, is a consensus-based, gamified technique for estimating, mostly used for timeboxing in Agile principles. In planning poker, members of the group make estimates by playing numbered cards face-down to the table, instead of speaking them aloud. The cards are revealed, and the estimates are then discussed. By hiding the figures in this way, the group can avoid the cognitive bias of anchoring, where the first number spoken aloud sets a precedent for subsequent estimates.
Lean UX & Agile GlossaryApr 8, 2023
Unsure of what a word means and how it applies to UX in-practice? Use this glossary to quickly clarify key terms and Agile concepts.
Essential Tools for a Successful DevOps EngineerMar 20, 2023
Introduction: The software development process has been transformed by the DevOps...
What are the 12 Agile Principles?Dec 11, 2022
Agile is made up of 12 guiding principles that serve as the foundation for project teams. These...
Scaled agile framework - WikipediaSep 5, 2022
The scaled agile framework (SAFe) is a set of organization and workflow patterns intended to guide enterprises in scaling lean and agile practices.[1][2] Along with disciplined agile delivery (DAD) and S@S (Scrum@Scale), SAFe is one of a growing number of frameworks that seek to address the problems encountered when scaling beyond a single team.[3][4]
SAFe? Agile? SAFe is not agile. What you need to know.Sep 5, 2022
Principles built into Lean UX don’t exist in SAFe. Continuous learning and improvement, customer centricity, humility, cross-functional collaboration and more.
Agile Scaling: SAFe Best Practices for Scrum MastersAug 19, 2022
Run effective SAFe ceremonies with these tips for release train engineers.
5 Agile Scaling Frameworks Compared | ToptalAug 19, 2022
Make the best choice for your Agile team with this scaling framework overview.
2016 scrum guide usJul 19, 2022
Visual guide to Agile methodologies for modern product managementOct 18, 2019
Agile methodologies theory, practice, examples, and free templates for product development and product management teams.
The Jobs to be Done Data ModelMar 12, 2019
A way to communicate, quantify, validate, and design for a Job to be Done
agriculture
Scientists identify culprit behind biggest-ever U.S. honey bee die-offJul 2, 2025
USDA research points to viruses spread by pesticide-resistant mites, indicating a worrying trend
Making Old Orchards New AgainApr 4, 2024
Wherever you find an old homestead—a house and barn with a little bit of land that has stood from sometime in the 1800s or early 1900s—you’ll find an
The One Climate Policy All 2024 Candidates Support Is Actually TerribleFeb 3, 2024
Ethanol is a comically inefficient form of solar energy—and a toxic one. Putting regular solar panels on some of that land would be better.
The Ancient Order of BaliMar 28, 2023
In 1970s Bali, a sudden rice crisis prompted an unexpectedly far-reaching scientific discovery
A tiny Wisconsin town tried to stop pollution from factory farms. Then it got sued.Dec 13, 2022
A tiny town in Wisconsin faces a lawsuit from an industry heavyweight, a growing trend when citizens try to regulate CAFOs in their backyards.
The Vineyard Falcon Does Not Suffer FoolsNov 15, 2022
Master falconer Alina Blankenship and her mélange of raptors have become the protectors of some of Oregon's top vineyards.
Ranked: America’s Top Crops by Acres Harvested in 2023Aug 24, 2022
The area devoted to growing the three top crops is bigger than the size of Texas. But even on that podium there’s only one king.
I sell onions on the Internet - Deep South VenturesJun 23, 2022
Vidalia Onions to be exact. They’re classified as a sweet onion, and because of their mild flavor (they don’t make your eyes tear up), some folks can eat them like an apple. Most of my customers do. During a phone order one season – 2018 I believe – a customer shared this story where he ... Read more
Tobacco Country’s Dirtiest Open SecretApr 28, 2022
Capitalism, corruption and exploitation created the broken system of ‘insurance farming’—and the biggest loser is the American taxpayer.
Betting the ranch (Betting The Ranch) — High Country News – Know the WestDec 26, 2021
Cody Easterday wagered hundreds of millions of dollars on the price of beef. He lost.
Hatch green chiles are feeling the heatOct 26, 2021
Growers of New Mexico’s iconic crop wrestle with drought, water rights and labor shortages.
The Crop Software Behind Your Daily Cup of CoffeeMar 8, 2020
Cropster started as a tool to lift coffee producers out of poverty. Now it has a bigger mission: to save the entire global food supply.
Perspective | Blight wiped out the American chestnut. Parallel efforts are close to bringing it back.Dec 22, 2019
One method, the slow, methodical work of traditional hybridization, is long familiar. The other, genetic engineering, is more controversial.
Betting the Farm on the DroughtAug 22, 2019
Farmers like sixth-generation Illinois farmer Ethan Cox can't wait for policymakers to protect them from climate change. To survive, they have to adapt their operations now, if they can.
How Legalization Changed Humboldt County MarijuanaJun 9, 2019
In an isolated Northern California community, the last remnants of the counterculture are confronting the future of cannabis.
The Super Bowl of BeekeepingAug 20, 2018
Almond growing in California is a $7.6 billion industry that wouldn’t be possible without the 30 billion bees (and hundreds of human beekeepers) who keep the trees pollinated — and whose very existence is in peril.
airflow
Apache AirflowMay 15, 2025
Platform created by the community to programmatically author, schedule and monitor workflows.
Airflow: Lesser Known Tips, Tricks, and Best PractisesDec 13, 2021
Lesser known Tips, Tricks, and Best Practises to use Apache Airflow and develop DAGs like a Pro
7 DevOps skills for Machine Learning Operations | by Ricardo Mendes | Nov,Nov 29, 2021
Lessons learned from successful MLOps implementation
airstream-and-rvs
Winter Camping in Quartzsite: Where Nomads Eat, Gather, and Belong - VanlifersDec 31, 2025
A firsthand look at winter camping in Quartzsite, Arizona—where nomads find affordable meals, unexpected community, and a place to belong.
Starlink for Van Life InternetSep 12, 2025
From full time engineers on the road, a discussion of the good, the bad, and the ugly of if Starlink is good for Van Life: Gen 2, Gen 3, & Flat Mounted, High Performance.
Easy Steps To Have PPL Sell Your RV | PPL Motor HomesAug 20, 2025
Call 1-800-755-4775 to schedule an appointment for a free appraisal of your RV. This will allow PPL to find a qualified buyer for your RV
Vehicle Repair Services at VMS South Charleston WVAug 20, 2025
Auto, Truck, and RV repair services in our South Charleston WV Repair Shop. List of services at VMS.
DEMO VAN | Limitless VanAug 19, 2025
Built on a 148” AWD Ford Transit, this nautical-inspired van conversion is loaded with high-end components and fun and functional design elements. With seating and sleeping for four, a full interior kitchen galley with an exterior stove, ample storage space, and tons of exterior metalwork, this rig is ready to hit the road!
Cascade VanAug 19, 2025
Get a van for sale that suits your need here at the CASCADE VAN BEND, OR website. Click for more information about us today.
Features | Rangeline | Touring Coaches | Airstream Adventure Van Class BJun 28, 2024
Airstream Rangeline features a modern, European-inspired interior that puts a premium on flexible functionality and off-grid capability.
Best Beachside RV Parks For Summer Fun - RV LIFEJun 7, 2024
Beachside RV parks are hotspots for sun, sea, and fun! Explore vibrant coastal communities, splash in the waves, and get away from it all.
Volterra™Mar 11, 2024
The most advanced light weight travel trailer in the world. Built with honest materials for a lifetime of adventures.
Ceramic GlassOct 6, 2023
Vintage Airstream Renovation Ideas and InspirationApr 16, 2023
Architects, designers, and DIYers revamp the classic travel trailers to serve as contemporary workspaces, rentals, and even primary residences.
15/16 in - Sockets - The Home DepotJan 14, 2023
Get free shipping on qualified 15/16 in Sockets products or Buy Online Pick Up in Store today in the Tools Department.
GPL-2400T AGM Starting Battery - Lifeline BatteriesOct 14, 2022
Motor Starting Marine/RV Battery The GPL-2400T is a high performance, Mil-Spec, AGM battery, produced in the United States. Due to the Lifeline Battery's quality construction, it has an industry leading 2% per month self discharge rate at 77°F (25°C), compared to 10%+ for conventional batteries. Coast Guard approved, DOT Haz Mat Exempt, and longer lifespans than conventional batteries. Warrantied installations include marine, yacht, and other seafaring applications.
Drive ReachJun 29, 2022
Drive Reach is our most powerful, in-vehicle cell signal booster yet. It can reach the farthest cell towers in remote areas. Learn more here!
How Long Do AGM Batteries Last? - Lifeline BatteriesJun 26, 2022
Learn more about the expected lifepsan of AGM batteries from Lifeline Batteries.
5 Simple RV Repairs Anyone Can DoApr 3, 2022
RVs are large and complex vehicles that require a lot of upkeep. There are a few RV repairs that the average person can easily fix.
Yonder — OFLANDApr 8, 2021
Welcome to Ofland (formerly Yonder)! We've changed our name! New Name. Same Magic. More Adventure. Learn More here.
Off-road, off-grid: the modern nomads wandering America's back countryFeb 6, 2021
Across US public lands thousands of people are taking to van life, as featured in the Oscar-winning film Nomadland
Flying Cloud 30FB Office Travel Trailer by Airstream - DwellFeb 3, 2021
The Flying Cloud 30FB Office was designed with productivity and connectivity in mind.
Traveling with Tatay - Airstream ForumsApr 1, 2020
I thought I’d start a post that catalogs “events of significance” in my ownership of a 2019 Airstream Globetrotter 27FBT (named after my maternal grandfather, who we called “Tat
Don’t Camp at WalmartJul 31, 2019
Big-box parking lots are an easy stopgap, but there’s so much public land waiting for those willing to look a little.
Tembo Tusk – Innovations for the Road Less TraveledJun 29, 2019
Camping equipment for the savvy off roader, overland traveler Camping grills, lantern hangers, 12 volt fridge slides and overland travel equipment.
Airstream launches millennial-friendly e-commerce shopMay 28, 2019
The iconic brand is digging deep to provide local intel and gear marketed to a younger fan base.
Why is RV design so boring?May 4, 2019
Some begin high and end low, others boldly swoop into half circles and curves; but somehow, on RVs big and small, decorative swoops are the go-to design element of choice.
Is this travel trailer the future of RV design?Jan 26, 2019
The new Eriba Touring 820 is an example of what a 21st-century trailer can look like when manufacturers forego the clichéd design tropes of the past.
1 million Americans live in RVs. Meet the ‘modern nomads.’Nov 13, 2018
About a million Americans live full-time in RVs. Many say this modern nomadic lifestyle has improved their marriages and made them much happier.
Couple renovates old Airstream into a bohemian dreamNov 5, 2018
A mess of cheap wood laminate, outdated fabrics, and torn up floors transforms into an airy dream home on wheels.
Restored vintage Airstream is 140 square feet of mobile blissMay 7, 2018
New Airstreams have all the bells and whistles customary in pricey builds, but nothing beats the vintage style of an old Airstream, made modern.
Vintage Airstream Makeover by CasamidyFeb 6, 2018
An olive paint job and Victorian card table for a 1968 Airstream Overlander? That was the approach taken by San Miguel-based Mex-chic design house Casamidy.
algorithms-math
An interactive intro to Elliptic Curve Cryptography (ECC)Mar 2, 2026
A hands-on introduction to elliptic curve cryptography. Start with curve geometry, build point addition and scalar multiplication, see why ECDLP is hard, and then use that math in ECDH, ECDSA, and ECIES.
Introduction to Laplace transformsFeb 15, 2026
A Laplace transform is a type of integral transform that acts on functions.
Probabilistic Nearest Neighbor Search: The Swiss Army Knife of GenAIFeb 10, 2026
ANN — Approximate Nearest Neighbors — is at the core of fast vector search, itself central to GenAI, especially GPT and LLM. My new methodology, abbreviated as PANN, has many other app…
A Behavior-Centric Taxonomy for Swarm Intelligence: Reclassifying Algorithms Based on Bio-Inspired MechanismsJan 6, 2026
Swarm Intelligence (SI) represents a significant paradigm within artificial intelligence, drawing inspiration from the collective behaviors of natural systems to solve complex computational problems. However, the conventional classification of SI algorithms often groups them monolithically or based on superficial characteristics like the inspiring organism, obscuring crucial differences in their underlying operational mechanisms. This article addresses this limitation by proposing a novel taxono
k-anonymity, the parent of all privacy definitions - Ted is writing thingsNov 17, 2025
How a privacy researcher proved a politician wrong, and how she created the first ever definition of anonymity in the process.
The Perils of Algorithmic PricingNov 4, 2025
Hotels and landlords can mitigate legal risks by choosing decentralized revenue management systems that use public data.
How Drone Swarms Actually Work and What Industries Should CareNov 4, 2025
True drone swarms can cut costs and boost efficiency in agriculture, logistics and humanitarian demining, but software remains a hurdle.
Image Dithering: Eleven Algorithms and Source CodeOct 24, 2025
Dithering is still a surprisingly applicable technique, not just for practical reasons (such as preparing a full-color image for output on a non-color printer), but for artistic reasons as well. Dithering also has applications in web design, where it is a useful technique for reducing images with high color counts to lower color counts, reducing file size (and bandwidth) without harming quality. It also has uses when reducing 48 or 64bpp RAW-format digital photos to 24bpp RGB for editing.
The Game Theory of How Algorithms Can Drive Up Prices | Quanta MagazineOct 22, 2025
Recent findings reveal that even simple pricing algorithms can make things more expensive.
An Introduction to MultisetsOct 16, 2025
Multisets are sets that allow repetition of elements. As such, multisets pave the way to a number of interesting possibilities of theoretical and applied nature. In the present work, after revising the main aspects of traditional sets, we introduce some of the main concepts and characteristics of multisets, followed by their generalization to take into account vectors and matrices. An approach is also proposed in which the real, negative multiplicities are allowed, implying the multiset universe to become finite and well-defined, corresponding to the multiset with null multiplicities. The complement operation in multisets is then defined, which allows properties involving complement -- including the De Morgan theorem -- to be recovered in multisets. In addition, it becomes possible to extend multisets to functions (which become multifunctions), scalar fields and other continuous mathematical structure, therefore achieving an enhanced space endowed with all algebraic operations plus set theoretical operations including union, intersection, and complementation. The possibility to define a set operation between mfunctions, namely the common product, that is analogous to the traditional inner product is also proposed, paving the way to obtaining respective mfunction transformations, and it is argued that the Walsh functions provide an orthogonal basis for the mfunctions space under the common product. This result also allowed the proposal of performing integrated signal processing operations on mset mfunctions, including filtering and enhanced template matching. Relationships between the cosine similarity index and the Jaccard index are also identified, including the presentation of an intersection-based variation of the cosine index. The potential of multisets in pattern recognition and deep learning is also briefly characterized and illustrated.
Ethereum’s consensus layer elliptic curveOct 13, 2025
Introduction to the BLS12-381 curve used in Ethereum's consensus layer. Focus on concrete calculations to make the curve more tangible.
Generate random points inside a sphereOct 12, 2025
Generating random points inside a sphere of any dimension.
5 Physics Equations Everyone Should KnowSep 26, 2025
Our physics expert picks his top-five equations, plus a scheme to supply US power needs with a bucket of baseballs. Thanks, Einstein!
5 More Physics Equations Everyone Should KnowSep 26, 2025
These five equations should be part of your mental toolkit. They might even improve your bowling score.
Maze generation algorithm - WikipediaSep 16, 2025
Bland, easy to follow, for fans of everything: what has the Netflix algorithm done to our films?Aug 28, 2025
When the streaming giant began making films guided by data that aimed to please a vast audience, the results were often generic, forgettable, artless affairs. But is there a happy ending?
Derivatives, Gradients, Jacobians and Hessians – Oh My!Aug 17, 2025
This article explains how these four things fit together and shows some examples of what they are used for. Derivatives Derivatives are the most fundamental concept in calculus. If you have a funct…
Raft Consensus AlgorithmAug 17, 2025
Raft is a consensus algorithm that is designed to be easy to understand.
Bezier-rs Interactive DocumentationAug 13, 2025
What Is the Luhn Algorithm? The Math Behind Secure Credit Card NumbersAug 12, 2025
Find out how this simple algorithm from the 1960s keeps your wallet safe
New Sphere-Packing Record Stems From an Unexpected Source | Quanta MagazineJul 9, 2025
After just a few months of work, a complete newcomer to the world of sphere packing has solved one of its biggest open problems.
The Impossible Calculator—AsteriskJul 7, 2025
Google Android’s calculator is (probably) the most widely used calculator in the world. It’s also the most advanced.
The biggest perturbation of satellite orbitsJul 7, 2025
The most important factor left out of the two body problem is the J2 effect, due to the fact that the earth is not a sphere of uniform density.
Cloud quantum computing: A trillion-dollar opportunity with dangerous hidden risksJun 21, 2025
Guest Join the event trusted by enterprise leaders for nearly two decades. VB Transform brings together the people building real enterprise AI strategy. Learn more Quantum computing (QC) brings with it a mix of groundbreaking possibilities and significant risks. Major tech players like IBM, Google, Microsoft and Amazon have already rolled out commercial QC cloud services, while […]
Bloom FiltersMay 7, 2025
A visual, interactive guide to what bloom filters are, when you would use them, and how they work.
Bloom filters - Eli Bendersky's websiteMay 2, 2025
kumar91gopi/Algorithms-and-Data-Structures-in-Ruby: Ruby implementation of Algorithms,Data-structures and programming challengesMar 27, 2025
Ruby implementation of Algorithms,Data-structures and programming challenges - kumar91gopi/Algorithms-and-Data-Structures-in-Ruby
What are evolutionary algorithms? - DataconomyMar 26, 2025
Evolutionary algorithms are optimization techniques inspired by natural evolution, solving complex problems through processes like selection, adaptation, and mutation.
The Pentium contains a complicated circuit to multiply by threeMar 2, 2025
In 1993, Intel released the high-performance Pentium processor, the start of the long-running Pentium line. I've been examining the Pentium'...
calculator-app - Chad Nauseam HomeFeb 16, 2025
"A calculator app? Anyone could make that." (this was originally a https://x.com/ChadNauseam/status/1890889465322786878) Not true. A calculator should show you the result of the mathematical expressi…
Undergraduate Upends a 40-Year-Old Data Science Conjecture | Quanta MagazineFeb 11, 2025
A young computer scientist and two colleagues show that searches within data structures called hash tables can be much faster than previously deemed possible.
Multi-Head Latent Attention and Other KV Cache TricksJan 29, 2025
How a Key-Value (KV) cache reduces Transformer inference time by trading memory for computation
Rafael Araujo's 20+ Mesmerizing Geometrical Masterpieces - AbakcusJan 21, 2025
To celebrate Rafael Araujo's talent and vision, I have curated a selection of his most stunning illustrations, showcasing the elegance and intricacy of his work.
Don't use cosine similarity carelessly - Piotr MigdałJan 15, 2025
Cosine similarity - the duct tape of AI. Convenient but often misused. Let's find out how to use it better.
Pi in the Pentium: reverse-engineering the constants in its floating-point unitJan 5, 2025
Intel released the powerful Pentium processor in 1993, establishing a long-running brand of high-performance processors. 1 The Pentium incl...
Massively Speed-Up your Learning Algorithm, with Stochastic Thinning - Machine Learning TechniquesDec 30, 2024
Dramatically Speed-Up your Learning Algorithm, with Stochastic Thinning. Includes use case, Python code, regression and neural network illustrations.
Understanding the BM25 full text search algorithmNov 20, 2024
BM25 is a widely used algorithm for full text search. I wanted to understand how it works, so here is my attempt at understanding by re-explaining.
Support Vector Machine (SVM) AlgorithmNov 18, 2024
Support Vector Machines (SVMs) are a powerful and versatile supervised machine learning algorithm primarily used for classification and regression tasks. They excel in high-dimensional spaces and are particularly effective when dealing with complex datasets. The core principle behind SVM is to identify the optimal hyperplane that effectively separates data points into different classes while maximizing the margin between them. SVMs have gained significant popularity due to their ability to handle both linear and non-linear classification problems. By employing kernel functions, SVMs can map data into higher-dimensional feature spaces, capturing intricate patterns and relationships that may not be apparent in the
RNG, PRNG, CSPRNGOct 17, 2024
A pseudorandom number generator may have good statistical properties but be insecure. But a physical RNG with good statistical properties is probably secure.
crafting interpretersJul 15, 2024
Shipt’s Pay Algorithm Squeezed Gig Workers. They Fought Back - IEEE SpectruJul 5, 2024
When their pay suddenly dropped, delivery drivers audited their employer
A Roaringish phrase search algorithmJul 3, 2024
How phrase search works in search array by intersecting roaring-like numpy arrays.
What AI Engineers Need to Know about SearchJun 28, 2024
All that lexical search context you need to build that RAG app
Understanding and Implementing Genetic Algorithms in PythonJun 25, 2024
Understanding what genetic algorithms are and how they can be implemented in Python.
An Introduction to Post-Quantum Cryptography AlgorithmsJun 11, 2024
By Christos Kasparis, EnSilica EETimes (May 15, 2024) The rise of quanum computing paints a significant challenge for the cryptography we rely on today. The modern encryption standards we currently use to safeguard sensitive data and communications, such as DSA, public key RSA and those based on elliptic curves, will eventually be broken by
The Reasonable Effectiveness of the Multiplicative Weights Update AlgorithmJun 11, 2024
papad Hard to believe Sanjeev Arora and his coauthors consider it “a basic tool [that should be] taught to all algorithms students together with divide-and-conquer, dynamic programming, and random sampling.” Christos Papadimitriou calls it “so hard to believe that it has been discovered five times and forgotten.” It has formed the basis of algorithms in machine learning, optimization, game theory, economics, biology, and more. What mystical algorithm has such broad applications?
An Introduction to Post-Quantum Cryptography AlgorithmsMay 15, 2024
Current encryption methods will likely be broken by 2030. Embedded systems in development now will have a reasonable chance of encountering attacks.
Immersive MathMay 13, 2024
Index—The Stacks projectApr 18, 2024
an open source textbook and reference work on algebraic geometry
Algorithm RepositoryApr 6, 2024
Uber-style pricing is coming for everythingMar 27, 2024
More and more industries are adopting “dynamic pricing” — and consumers aren’t happy.
A Short Guide to Hard ProblemsMar 25, 2024
What’s easy for a computer to do, and what’s almost impossible? Those questions form the core of computational complexity. We present a map of the landscape.
Deep Understanding of Garbage Collection: Principles, Algorithms, and OptimMar 11, 2024
1. Preface Garbage Collection (GC) is an important feature of automatic memory management...
What Is a Schur Decomposition? – Nick HighamMar 5, 2024
A Schur decomposition of a matrix $latex A\in\mathbb{C}^{n\times n}$ is a factorization $LATEX A = QTQ^*$, where $LATEX Q$ is unitary and $LATEX T$ is upper triangular. The diagonal entries of $LAT…
Kalman Filter Explained Simply - The Kalman FilterFeb 12, 2024
Tired of equations and matrices? Ready to learn the easy way? This post explains the Kalman Filter simply with pictures and examples!
Stop Overusing Scikit-Learn and Try OR-Tools InsteadJan 26, 2024
Many Data Scientists overuse ML and neglect Mathematical Optimisation, even though it’s great for your career and easy to learn
The Perfect Way to Smooth Your Noisy DataJan 18, 2024
Insanely fast and reliable smoothing and interpolation with the Whittaker-Eilers method.
Market Basket Analysis using PythonOct 30, 2023
In this article, I'll take you through the task of Market Basket Analysis using Python. Market Basket Analysis using Python.
youtube_channel/Python Tutorial Series/fourier_transform1.ipynb at main · lukepolson/youtube_channelSep 29, 2023
Notebooks for the python tutorials of my youtube channel. See specific youtube video for link to specifc notebook. - lukepolson/youtube_channel
Dictionary of Algorithms and Data StructuresSep 29, 2023
Definitions of algorithms, data structures, and classical Computer Science problems. Some entries have links to implementations and more information.
Graph Embeddings 101: Key Terms Concepts and AI ApplicationsSep 24, 2023
Research shows knowledge graphs and graph embeddings improve the quality and accuracy of Gen AI responses. Here’s how to get started.
RoundtableAug 27, 2023
The AlgorithmsAug 6, 2023
Open Source resource for learning Data Structures & Algorithms and their implementation in any Programming Language
A non-mathematical introduction to Kalman Filters for programmersAug 3, 2023
Read my manifesto on Code as an alternative to Mathematics. Code for this article can be found on this Colab Notebook should you choose to follow along. Why Kalman Filters? Kalman filters are ingenius. If you have never heard of them, then a very intuitive (and arguably reductive) way to think about them is to
Discovering Differential Equations with Physics-Informed Neural Networks anJul 29, 2023
A case study with step-by-step code implementation
Similarity Search, Part 4: Hierarchical Navigable Small World (HNSW) | by VJul 28, 2023
Hierarchical Navigable Small World (HNSW) is a state-of-the-art algorithm used for an approximate search of nearest neighbours. Under the…
Similarity Search, Part 3: Blending Inverted File Index and Product QuantizJul 28, 2023
In the first two parts of this series we have discussed two fundamental algorithms in information retrieval: inverted file index and…
Building a Vector Search Engine Using HNSW and Cosine SimilarityJul 27, 2023
Hierarchical Navigable Small World graphs (HNSW) is an algorithm that allows for efficient nearest neighbor search, and the Sentence…
Similarity Search, Part 1: kNN & Inverted File IndexJul 27, 2023
Similarity search is a popular problem where given a query Q we need to find the most similar documents to it among all the documents D.
Similarity Search, Part 2: Product QuantizationJul 27, 2023
Learn a powerful technique to effectively compress large data
Similarity Search, Part 5: Locality Sensitive Hashing (LSH)Jul 27, 2023
Explore how similarity information can be incorporated into hash function
Similarity Search, Part 6: Random Projections with LSH ForestJul 27, 2023
Understand how to hash data and reflect its similarity by constructing random hyperplanes
Similarity Search, Part 7: LSH CompositionsJul 27, 2023
Dive into combinations of LSH functions to guarantee a more reliable search
Exploring Genetic Algorithms with RubyJul 26, 2023
Introduction: In the quest to solve complex optimization problems and simulate natural evolution,...
Calculate Computational Efficiency of Deep Learning Models with FLOPs and MJul 24, 2023
In this article we will learn about its definition, differences and how to calculate FLOPs and MACs using Python packages.
How Mathematical Curves Enable Advanced CommunicationJul 22, 2023
A simple geometric idea has been used to power advances in information theory, cryptography and even blockchain technology.
Hilbert Transform - ElectroagendaJul 13, 2023
Concise summary of the Hilbert transform: mathematics, effects on signals, and applications in telecommunications.
Circular, hyperbolic, and elliptic functionsJul 10, 2023
Circular functions and hyperbolic functions are special cases of the Jacobi functions. This post shows how.
Understanding The Hypergeometric DistributionJun 22, 2023
Breaking down one of the less well-known distributions in data science
Understanding DeepMind's Sorting AlgorithmJun 13, 2023
Working code examples meant to clarify AlphaDev's deep learning assembly optimizations.
How Math’s Most Famous Proof Nearly BrokeMay 24, 2023
Andrew Wiles thought he had a solution to an age-old puzzle. Until it began to unravel.
Geometry CentralApr 17, 2023
Hashing in Modern Recommender Systems: A PrimerMar 29, 2023
Understanding the most underrated trick in applied Machine Learning
Telfar’s Dynamic Pricing Model Offers a New Way to Gauge Luxury Item DemandMar 28, 2023
Telfar has introduced a “Live Price” pricing model based on customer demand.
The Meaning Behind Logistic Classification, from Physics | by Tim Lou, PhDMar 26, 2023
Why do we use the logistic and softmax functions? Thermal physics may have an answer.
Bidder Density: When 1 1 = 10xMar 25, 2023
How bid density impacts ads, recommender systems, and salary negotiations.
Erich's Packing CenterMar 19, 2023
Researcher solves nearly 60-year-old game theory dilemmaMar 15, 2023
A researcher has solved a nearly 60-year-old game theory dilemma called the wall pursuit game, with implications for better reasoning about autonomous systems such as driver-less vehicles.
Algorithmic Trading: A Practitioner’s Guide | Henrik Warne's blogFeb 13, 2023
I really enjoyed reading Algorithmic Trading: A Practitioner’s Guide by Jeffrey M. Bacidore. Before starting, I imagined it would cover various strategies for trading in the markets, along th…
How Many Decimals of Pi Do We Really Need? - Edu News | NASA/JPL EduJan 28, 2023
While world record holders may have memorized more than 70,000 digits of pi, a JPL engineer explains why you really only need a tiny fraction of that for most calculations – even at NASA.
Deep Learning Pioneer Geoffrey Hinton Publishes New Deep Learning AlgorithmJan 12, 2023
Geoffrey Hinton, professor at the University of Toronto and engineering fellow at Google Brain, recently published a paper on the Forward-Forward algorithm (FF), a technique for training neural networks that uses two forward passes of data through the network, instead of backpropagation, to update the model weights.
Introduction to Multi-Armed Bandit ProblemsJan 7, 2023
Delve deeper into the concept of multi-armed bandits, reinforcement learning, and exploration vs. exploitation dilemma.
Data on correlated products and sellers helps improve demand forecasting -Dec 28, 2022
Graph-based models capture correlations efficiently enough to enable machine learning at scale.
Digital Music Couldn't Exist Without the Fourier TransformDec 21, 2022
This is the Fourier Transform. You can thank it for providing the music you stream every day, squeezing down the images you see on the Internet into tiny
How to exchange a secret key over an insecure network (EC-Diffie-Hellman alDec 18, 2022
Let's say you want to send an encrypted message to your friend in order to avoid it being intercepted...
Goodbye SHA-1: NIST Retires 27-Year-Old Widely Used Cryptographic AlgorithmDec 17, 2022
NIST has formally retired the widely used 27-year-old SHA-1 cryptographic algorithm, bringing cryptographic security into the modern age.
How to Choose the Best Machine Learning Technique: Comparison TableNov 23, 2022
How to Choose the Best Machine Learning Technique: Comparison Table
In defense of linked lists -Nov 5, 2022
The fascinating Wave Function Collapse algorithm.Oct 30, 2022
What is a wave function and why does it collapse? Wave function collapse is a algorithm...
What are quantum-resistant algorithms—and why do we need them?Oct 22, 2022
When quantum computers become powerful enough, they could theoretically crack the encryption algorithms that keep us safe. The race is on to find new ones.
The Scientist & Engineer's Guide to Digital Signal Processing, 1999 | Analog DevicesOct 20, 2022
The guide provides a practical introduction to Digital Signal Processing, covering a wide range of topics. It is an ideal introduction for those new to DSP, and an excellent reference for more experie
Topic Modeling with LSA, pLSA, LDA, NMF, BERTopic, Top2Vec: a ComparisonOct 14, 2022
A comparison between different topic modeling strategies including practical Python examples
30 Best Math Books to Learn Advanced Mathematics for Self-LearnersOct 10, 2022
We have curated almost thirty suggested math books by Neil Sainsbury for self-learners. All those books help you in different fields of math.
Signal Processing, beyond the Fourier Transform: Introduction to the ChirplSep 24, 2022
From a theoretical introduction to the hands-on implementation: here’s what you need to know about the Chirplet Transform
Adjacency networksSep 12, 2022
Finding the adjacency graphs for US states and Texas counties using Mathematica
A primer on Roaring bitmaps: what they are and how they workSep 5, 2022
A detailed primer on Roaring bitmaps explaining what they are, how they're different from traditional bitmaps, and how they work internally.
CyberChefSep 5, 2022
The Cyber Swiss Army Knife - a web app for encryption, encoding, compression and data analysis
An Old-Fashioned Economic Tool Can Tame Pricing Algorithms - Scientific AmeAug 22, 2022
Left unchecked, pricing algorithms might unintentionally discriminate and collude to fix prices
The Data Incubator is Now Pragmatic Data | Pragmatic InstituteJul 19, 2022
As of 2024, The Data Incubator is now Pragmatic Data! Explore Pragmatic Institute’s new offerings, learn about team training opportunities, and more.
Linear Algebra for Data Science - KDnuggetsJul 18, 2022
In this article, we discuss the importance of linear algebra in data science and machine learning.
Understanding Self-Organising Map Neural Network with Python CodeJul 13, 2022
Brain-inspired unsupervised machine learning through competition, cooperation and adaptation
Complete Step-by-step Genetic Algorithm from Scratch for Global OptimizationJun 22, 2022
No need to worry about getting stuck in local minima anymore
The Future Of Algorithmic Personalization | TechCrunchJun 7, 2022
Personalization algorithms influence what you’ve chosen yesterday, what you choose today and what you’ll be choosing tomorrow. Simultaneously, there seems to be something wrong with personalization. We are continuously bumping into obtrusive, uninteresting ads. Our digital personal assistant isn’t that personal at all. We’ve lost friends to the algorithmic abyss of the News feed. The content we encounter online seems to repeat the same things again and again.
Curation and AlgorithmsJun 7, 2022
More and more companies are announcing new products based on human curation, even as the most important content players — Google and Facebook — rely on algorithms. When does curation make sense, an…
The Big Six Matrix Factorizations – Nick HighamMay 18, 2022
Six matrix factorizations dominate in numerical linear algebra and matrix analysis: for most purposes one of them is sufficient for the task at hand. We summarize them here. For each factorization …
How does Shazam work? Music Recognition Algorithms, Fingerprinting, and Processing | Toptal®Apr 12, 2022
The Shazam music recognition application made it finally possible to put a name to that song on the radio. But how does this magical miracle actually work? In this article, Toptal Freelance Software Engineer Jovan Jovanovic sheds light on the principles of audio signal processing, fingerprinting, and recognition,...
Seriously, stop using RSA | Trail of Bits BlogApr 3, 2022
Here at Trail of Bits we review a lot of code. From major open source projects to exciting new proprietary software, we’ve seen it all. But one common denominator in all of these systems is that fo…
Bipartite — NetworkX 2.6.2 documentationFeb 20, 2022
Machine Learning Algorithms Cheat Sheet — Accel.AIFeb 20, 2022
Machine learning is a subfield of artificial intelligence (AI) and computer science that focuses on using data and algorithms to mimic the way people learn, progressively improving its accuracy. This way, Machine Learning is one of the most interesting methods in Computer Science these days, and it'
Data Scientists, The 5 Graph Algorithms that you should knowFeb 2, 2022
Because Graph Analytics is the future
A Primer on Bézier CurvesJan 29, 2022
A detailed explanation of Bézier curves, and how to do the many things that we commonly want to do with them.
3 Reasons Why Data Scientists Should Use LightGBMJan 24, 2022
There are many great boosting Python libraries for data scientists to reap the benefits of. In this article, the author discusses LightGBM benefits and how they are specific to your data science job.
Visualizing AlgorithmsJan 16, 2022
trekhleb/javascript-algorithms: 📝 Algorithms and data structures implemented in JavaScript with explanations and links to further readingsJan 16, 2022
📝 Algorithms and data structures implemented in JavaScript with explanations and links to further readings - trekhleb/javascript-algorithms
How a Kalman filter works, in pictures | BzargJan 12, 2022
eugeneyan/applied-ml: ? Papers & tech blogs by companies sharing their workDec 25, 2021
📚 Papers & tech blogs by companies sharing their work on data science & machine learning in production. - eugeneyan/applied-ml
How Classical Cryptography Will Survive Quantum ComputersDec 8, 2021
Quantum Lab: Scientists are fabricating quantum photonic circuits—consisting of waveguides and other elements—to manipulate single photons for future quantum communications and processing.Oak Ridge National Laboratory / Flickr Nautilus Members enjoy an ad-free experience. Log in or Join now . Justin Trudeau, the Canadian prime minister, certainly raised the profile of quantum computing a few notches […]
The Floppy Disk of Floating PointDec 2, 2021
An essay that bids farewell to x87 – a computing architecture too long for this world.
An Introduction to Lagrange MultipliersNov 23, 2021
Why Disaster Happens at the Edges: An Introduction to Queue Theory – The NeNov 15, 2021
What We Talk about When We Talk about Performance.
Curves and Surfaces – Bartosz CiechanowskiNov 3, 2021
Interactive article explaining how curves and surfaces are modeled.
Python/DIRECTORY.md at master · TheAlgorithms/PythonOct 3, 2021
All Algorithms implemented in Python.
Optimal Estimation Algorithms: Kalman and Particle FiltersOct 1, 2021
An introduction to the Kalman and Particle Filters and their applications in fields such as Robotics and Reinforcement Learning.
Carl-McBride-Ellis/Compendium-of-free-ML-reading-resourcesSep 24, 2021
Compendium of free ML reading resources.
[2106.10860v1] Multiplying Matrices Without MultiplyingSep 3, 2021
Multiplying matrices is among the most fundamental and compute-intensive operations in machine learning. Consequently, there has been significant work on efficiently approximating matrix...
10 Computer Vision Terms Everyone Must Know About!Aug 22, 2021
The ten essential computer vision terminologies that everyone should learn to become more proficient at computer vision with sample codes
Complete guide to understanding Node2Vec algorithmAug 17, 2021
An in-depth guide to understanding node2vec algorithm and its hyper-parameters
Evolution of Search Engines Architecture – Algolia Search Architecture PartAug 10, 2021
What would a totally new search engine architecture look like? Who better than Julien Lemoine, Co-founder & CTO of Algolia, to describe what the future of search will look like. This is the first article in a series. Search engines, and more generally, information retrieval systems, play a central role in
An introduction to A* pathfinding (tutorial)Jul 26, 2021
This is part 3 of a series on bot programming originally published on the Coder One blog. Part 1:...
Apriori Algorithm for Association Rule Learning — How To Find Clear Links BJul 13, 2021
Explanation and examples of frequent itemset mining and association rule learning over relational databases in Python
Poisson's Equation is the Most Powerful Tool not yet in your ToolboxJul 7, 2021
Poisson's Equation is an incredibly powerful tool...
Types of Correlation CoefficientsJul 5, 2021
Different Kinds of Correlation Coefficients in a Deeper Look
Hands-on Survival Analysis with PythonJul 4, 2021
What companies can learn from employee turnover data
TheAlgorithms/Python: All Algorithms implemented in PythonJun 28, 2021
All Algorithms implemented in Python.
Introduction to Locality-Sensitive HashingJun 24, 2021
A Guide to Genetic ‘Learning’ Algorithms for OptimizationJun 23, 2021
Reconstructing Images using Reinforcement Learning and Genetic Algorithms
Algorithm Tutorial: Intro to Heaps and Priority Queue ImplementationJun 21, 2021
In this edition of the Algorithm Tutorial series, we're going to break down the Heap data structure...
Math Books you should read in 2021Jun 17, 2021
Learn how mathematics influence every aspect of our life.
The Number That Becomes More Amazing the More You Study ItJun 12, 2021
It’s even more astonishing than Dan Brown and Pepsi thought.
Information Theory: A Gentle IntroductionJun 11, 2021
This is the first in a series of articles about Information Theory and its relationship to data driven enterprises and strategy. While…
Data-Technology-Books/dth(157).pdf at master · manjunath5496/Data-Technology-BooksMay 24, 2021
"One person's data is another person's noise." ― K.C. Cole - manjunath5496/Data-Technology-Books
http://algorithmsbook.com/files/dm.pdfMay 24, 2021
Combinatorial Optimization: The Knapsack ProblemMay 17, 2021
In this story, we are going to discuss an application of dynamic programming techniques to an optimization algorithm. Through the process of developing an optimal solution, we get to study a variety…
Matrix Multiplication Inches Closer to Mythic GoalMar 24, 2021
A recent paper set the fastest record for multiplying two matrices. But it also marks the end of the line for a method researchers have relied on for decades to make improvements.
WSJF - Scaled Agile FrameworkMar 11, 2021
Weighted Shortest Job First (WSJF) is a prioritization model used to sequence work for maximum economic benefit. In SAFe, WSJF is estimated as the relative cost of delay divided by the relative job duration.
BFGS in a Nutshell: An Introduction to Quasi-Newton MethodsMar 8, 2021
Demystifying the inner workings of BFGS optimization
Kalman FilterMar 6, 2021
For statistics and control theory, Kalman filtering, also known as linear quadratic estimation, is an algorithm that uses a series of measurements observed over time, including statistical noise and other inaccuracies, and produces estimates of unknown variables that tend to be more accurate than those based on a single measurement alone, by estimating a joint probability distribution over the variables for each timeframe. The filter is constructed as a mean squared error minimiser, but an alternative derivation of the filter is also provided showing how the filter relates to maximum likelihood statistics. The filter is named after Rudolf E. Kálmán, who was one of the primary developers of its theory.
The Algorithms That Make Instacart RollMar 5, 2021
Instacart crunches petabytes daily to predict what will be on grocery shelves and even how long it will take to find parking
What is Huffman Coding?Feb 22, 2021
The Huffman Coding algorithm is a building block of many compression algorithms, such as DEFLATE - which is used by the PNG image format and GZIP.
Self-Organising TexturesFeb 12, 2021
Neural Cellular Automata learn to generate textures, exhibiting surprising properties.
rgl | RubyGems.org | your community gem hostFeb 3, 2021
What Is Applied Category Theory? (2018)Feb 3, 2021
This is a collection of introductory, expository notes on applied category theory, inspired by the 2018 Applied Category Theory Workshop, and in these notes we take a leisurely stroll through two...
Decades-Old Graph Problem Yields to Amateur MathematicianJan 27, 2021
By making the first progress on the “chromatic number of the plane” problem in over 60 years, an anti-aging pundit has achieved mathematical immortality.
LZ4, an Extremely Fast Compression AlgorithmJan 27, 2021
Top 7 Data Structures You Should Really Know for Your Next Job InterviewJan 24, 2021
Master these data structures to land in your next data science job
Benchmark functions | BenchmarkFcnsJan 1, 2021
This website is for sale! benchmarkfcns.xyz is your first and best source for all of the information you’re looking for. From general topics to more of what you would expect to find here, benchmarkfcns.xyz has it all. We hope you find what you are searching for!
Practical Graph Theory in RubyDec 26, 2020
This is the next installment in the "Practical Computer Science" series, where you will learn how to apply classic computer science concepts to solve real problems using Ruby. Today we are going to talk about Graph
KMP Algorithm (String Matching) DemystifiedDec 24, 2020
The string matching problem also known as “the needle in a haystack” is one of the classics. This simple problem has a lot of application…
BFGS in a Nutshell: An Introduction to Quasi-Newton MethodsDec 23, 2020
Demystifying the inner workings of BFGS optimization
Lagrange multipliers with visualizations and code | by Rohit Pandey | TowarDec 23, 2020
In this story, we’re going to take an aerial tour of optimization with Lagrange multipliers. When do we need them? Whenever we have an…
Particle Swarm Optimization Visually ExplainedDec 22, 2020
Learn PSO algorithm as a bedtime story with GIFs and python code
A Short Guide to Hard ProblemsDec 18, 2020
What’s easy for a computer to do, and what’s almost impossible? Those questions form the core of computational complexity. We present a map of the landscape.
Discrete Cosine Transform in Video Compression - Explain Like I'm Five | OTNov 29, 2020
Understand how the Discrete Cosine Transform or DCT works and is used in Image and Video compression to reduce the size of the data without affecting quality.
What Makes the Hardest Equations in Physics So Difficult?Nov 29, 2020
The Navier-Stokes equations describe simple, everyday phenomena, like water flowing from a garden hose, yet they provide a million-dollar mathematical challenge.
Peregrine: A Pattern-Aware Graph Mining SystemNov 24, 2020
Peregrine: A Pattern-Aware Graph Mining System.
MLWhiz: Helping You Learn Data Science!Nov 9, 2020
In this post, I am going to be talking about some of the most important graph algorithms you should know and how to implement them using Python.
6.851: Advanced Data StructuresNov 3, 2020
6 functions you need for Algorithm AnalysisNov 3, 2020
Understand the basic functions required for computing time complexity
7 Statistical Distributions that every Data Scientist should know— with intuitive explanationsNov 3, 2020
Intuitive explanations for the Normal, Bernoulli, Binomial, Poisson, Exponential, Gamma and Weibull distribution — with Python example code
Floating-Point Formats and Deep LearningNov 3, 2020
Floating-point formats are not the most glamorous or (frankly) the important consideration when working with deep learning models: if your model isn’t working well, then your floating-point format certainly isn’t going to save you! However, past a certain point of model complexity/model size/training time, your choice of floating-point format can have a significant impact on your model training times and even performance. Here’s how the rest of this post is structured:
Complete Introduction to the 30 Most Essential Data Structures & AlgorithmsNov 3, 2020
Data Structures & Algorithms (DSA) is often considered to be an intimidating topic - a common...
What are Differential Equations and how do they work?Nov 2, 2020
Science News, Physics, Science, Philosophy, Philosophy of Science
Euler's Formula: A Complete Guide | Math VaultNov 2, 2020
A complete guide on the famous Euler's formula for complex numbers, along with its interpretations, examples, derivations and numerous applications.
AI 101: Intro to Evolutionary AlgorithmsAug 11, 2020
Evolutionary AlgorithmsAug 11, 2020
Get the Book on Evolutionary Algorithms (With Python Notebooks) https://datacrayon.com/shop/product/practical-evolutionary-algorithms-book/
3:06 - To skip to the main content
Twitter: @ShahinRostami (http://twitter.com/ShahinRostami)
An introduction to the topic of Evolutionary Computation, with a simple example of an Evolutionary Algorithm.
This introduction is intended for everyone, specially those who are interested in learning about something new. No pre-existing knowledge of the subject or any scientific background is expected.
More educational content:
https://shahinrostami.com
Slides:
https://www.researchgate.net/publication/310365190_Introduction_to_Evolutionary_Algorithms
Further playing:
http://rednuht.org/genetic_cars_2/
http://boxcar2d.com
Related Topics:
optimisation, machine learning, neural network
Polynomial Regression: The Only Introduction You’ll NeedAug 11, 2020
A deep-dive into the theory and application behind this Machine Learning algorithm in Python, by a student
Advanced Concepts in Recursion Every Effective Programmer Should KnowAug 11, 2020
One of the most powerful & useful coding approaches
Data Structures & Algorithms I Actually Used Working at Tech Companies - ThAug 10, 2020
Do you actually use data structures and algorithms on your day to day job? I've noticed a growing trend of people assuming algorithms are pointless questions that are asked by tech companies purely as an arbitrary measure. I hear more people complain about how all of this is a purely
Brownian motion with PythonAug 10, 2020
We show how to emulate Brownian motion, the most famous stochastic process used in a wide range of applications, using simple Python code.
Geometric Folding Algorithms: Linkages, Origami, PolyhedraAug 8, 2020
This course focuses on the algorithms for analyzing and designing geometric foldings. Topics include reconfiguration of foldable structures, linkages made from one-dimensional rods connected by hinges, folding two-dimensional paper (origami), and unfolding and folding three-dimensional polyhedra. Applications to architecture, robotics, manufacturing, and biology are also covered in this course. Acknowledgments --------------- Thanks to videographers Martin Demaine and Jayson Lynch.
The Math of Social Distancing Is a Lesson in GeometryJul 26, 2020
How to safely reopen offices, schools and other public spaces while keeping people six feet apart comes down to a question mathematicians have been studying for centuries.
How Shazam worksJul 26, 2020
A Mathematician’s Guide to How Contagion SpreadsJul 10, 2020
Adam Kucharski wrote The Rules of Contagion before Covid-19. He talks about misinformation, bank failures, and coming up with hypotheses during a crisis.
The Math Trick Behind MP3s, JPEGs, and Homer Simpson’s FaceJun 29, 2020
It doesn’t quite get the audiophile seal of approval, but scientists are very intrigued.
Calculus for the Beginner— Building Calculus, Piece by PieceJun 24, 2020
Understanding the beauty of calculus
The Singular Value Decomposition without AlgebraJun 24, 2020
Understand the Ultimate Linear Algebra concept with Geometry
Neat Tricks to Boost Your Genetic AlgorithmsJun 24, 2020
Genetic Algorithm (or Evolutionary Algorithm) — A simple, yet very powerful optimization technique which has seen resurgence in popularity…
What Is the z-Transform?Jun 17, 2020
This Frequent Engineering Question gives a quick overview of an important mathematical technique used in digital signal processing, calculating the z-transform.
NIST Handbook of Engineering StatisticsJun 1, 2020
Solving non-linear problems with genetic algorithms (Part 3)Jun 1, 2020
In this series of articles, discover how genetic algorithms (also called evolutionary algorithms) can help you solve non-linear problems!
Back of the envelope estimation hacksJun 1, 2020
There are two types of engineers, the ones that can quickly do estimates and the ones that can’t. Are these people just smarter, or is there more to it? Enrico Fermi was a master at estimation Back of the envelope estimation is a skill that can be learned with practice. It becomes easier once you get familiar with some tricks of the trade. Know your numbers How fast can you read data from the disk?
Latent Variables & Expectation Maximization AlgorithmJun 1, 2020
Bayesian Approach to Machine Learning
Genetic Algorithms in Python using the DEAP libraryJun 1, 2020
Applied to the optimization of a meal plan for macronutrients
How to Use Polynomial Feature Transforms for Machine LearningJun 1, 2020
Often, the input features for a predictive modeling task interact in unexpected and often nonlinear ways. These interactions can be identified and modeled by a learning algorithm. Another approach is to engineer new features that expose these interactions and see if they improve model performance. Additionally, transforms like raising input variables to a power can help to better expose the…
Speeding training of decision treesJun 1, 2020
New method reduces training time by up to 99%, with no loss in accuracy.
Understanding Associative EmbeddingMay 19, 2020
An elegant method to group predictions without labeling
Using Q-Learning in Numpy to teach an agent to play a gameMay 15, 2020
Using q-learning for sequential decision making and therefore learning to play a simple game.
7 advanced tricks in pandas for data scienceMay 15, 2020
Pandas is the go-to library for data science. These are the shortcuts I use to do repetitive data science tasks faster and simpler.
A Simple Kalman Filter ImplementationMay 15, 2020
A tank level measurement application to help you develop intuition on Kalman Filters
The Recursive Approximation Algorithm, AnimatedMay 15, 2020
How n-body problems are solved in linear time, without any maths.
A Complete Beginners Guide to Matrix Multiplication for Data Science with PApr 19, 2020
Learn matrix multiplication for machine learning by following along with Python examples
Partial Correlation Vs. Conditional Mutual InformationApr 19, 2020
Finding relationships between different variables/ features in a dataset during a data analysis task is one of the key and fundemental…
Co-variance: An intuitive explanation!Apr 15, 2020
A comprehensive but simple guide which focus more on the idea behind the formula rather than the math itself — start building the block…
Matthews Correlation Coefficient: when to use it and when to avoid itApr 15, 2020
It’s not a silver bullet metric to classification problems
t-SNE clearly explainedApr 15, 2020
An intuitive explanation of t-SNE algorithm and why it’s so useful in practice.
Matrix Factorization as a Recommender SystemApr 1, 2020
An Explanation and Implementation of Matrix Factorization
Xor Filters: Faster and Smaller Than Bloom and Cuckoo Filters: ACM Journal of Experimental Algorithmics: Vol 25, No nullApr 1, 2020
The Bloom filter provides fast approximate set membership while using little memory. Engineers often use these filters to avoid slow operations such as disk or network accesses. As an alternative, a cuckoo filter may need less space than a Bloom filter ...
Local Links Run The WorldMar 29, 2020
Networks regulate everything from ant colonies and middle schools to epidemics and the internet. Here’s how they work.
A Mathematical Primer of CompressionMar 20, 2020
How to reduce storage size without losing information.
DEPSO Algorithm: Project PortalMar 18, 2020
[bibshow file=own_pub.bib] DEPSO [bibcite key=Zhang:2003p3816], or called DEPS, is an algorithm for (constrained) numerical optimization problem (NOP). DEPSO combines the advantages of Particle Swarm Optimization (PSO) and Differential Evolution (DE). It is incorporated into cooperative group optimi
Hyper-Parameter Optimization: A Review of Algorithms and ApplicationsMar 16, 2020
Since deep neural networks were developed, they have made huge contributions to everyday lives. Machine learning provides more rational advice than humans are capable of in almost every aspect of...
Introduction to Evolutionary AlgorithmsMar 11, 2020
A practical introduction on how to program Evolutionary Algorithms in Python to solve optimization tasks.
How the Mathematical Conundrum Called the 'Knapsack Problem' Is All Around UsMar 10, 2020
A litany of issues in business, finance, container ship loading and aircraft loading derive from this one simple dilemma
BCrypt ExplainedMar 9, 2020
Intro If you're into Cryptography For Beginners, you're in the right place. Maybe you're j...
A better adaptive Runge-Kutta methodMar 9, 2020
The Dormand-Prince algorithm is similar to the popular RKF45 adaptive Runge-Kutta method but produces more precision relative to the amount of computation.
Using Bayesian Kalman Filter to predict positions of moving particles / objFeb 19, 2020
In this article, we shall see how the Bayesian Kalman Filter can be used to predict positions of some moving particles / objects in 2D. This article is inspired by a programming assignment from the coursera course Robotics Learning by University of Pennsylvania, where the goal was to implement a Kalman filter for ball tracking in 2D space. Some… Read More »Using Bayesian Kalman Filter to predict positions of moving particles / objects in 2D (in R)
Interactive Lorenz AttractorFeb 19, 2020
Interactive Lorenz attractor with 10,000 butterflies under the Lorenz attractor flow.
Kahan Summation AlgorithmFeb 19, 2020
In numerical analysis, the Kahan summation algorithm, also known as compensated summation,[1] significantly reduces the numerical error in the total obtained by adding a sequence of finite-precision floating-point numbers, compared to the obvious approach. This is done by keeping a separate running compensation (a variable to accumulate small errors), in effect extending the precision of the sum by the precision of the compensation variable.
The BLAKE3 cryptographic hash functionFeb 19, 2020
the official Rust and C implementations of the BLAKE3 cryptographic hash function - BLAKE3-team/BLAKE3
[R] Geometrical Regret MatchingFeb 19, 2020
2.9M subscribers in the MachineLearning community. Beginners -> /r/mlquestions , AGI -> /r/singularity, career advices -> /r/cscareerquestions…
Copulas Vs. CorrelationFeb 19, 2020
Copulas and Rank Order Correlation are two ways to model and/or explain the dependence between 2 or more variables. Historically used in biology and epidemiology, copulas have gained...
RSA AlgorithmFeb 19, 2020
A Self-Contained Tutorial on RSA Algorithm Theories for Number Theory Noobs
Finite Element MethodFeb 19, 2020
The finite element method (FEM) is a popular method for numerically solving differential equations arising in engineering and mathematical modeling. Typical problem areas of interest include the traditional fields of structural analysis, heat transfer, fluid flow, mass transport, and electromagnetic potential.
New Cryptography Method Promising Perfect Secrecy Is Met With SkepticismFeb 18, 2020
An international team claims its perfect secrecy cryptography is made unbreakable by physics
teivah/algodeck: Algo Deck is an Open-Source Collection of 200 AlgorithmicFeb 9, 2020
An Open-Source Collection of 200+ Flash Cards to Help You Preparing Your Algorithms & Data Structures Interview 💯 - teivah/algodeck
Attracted to AttractorsFeb 1, 2020
Visualizing three, 3-dimensional strange attractors with a fractal structure as well as the differential equations that generate them.
[2001.03147] Age-Partitioned Bloom FiltersJan 10, 2020
Bloom filters (BF) are widely used for approximate membership queries over a set of elements. BF variants allow removals, sets of unbounded size or querying a sliding window over an unbounded...
ritchieng/the-incredible-pytorch: The Incredible PyTorch: a curated list of tutorials, papers, projects, communities and more relating to PyTorch.Dec 30, 2019
The Incredible PyTorch: a curated list of tutorials, papers, projects, communities and more relating to PyTorch. - GitHub - ritchieng/the-incredible-pytorch: The Incredible PyTorch: a curated list...
What does the Laplace Transform tell us? A visual explanation [video]Dec 14, 2019
Sign up with brilliant and get 20% off your annual subscription: https://brilliant.org/MajorPrep/
STEMerch Store: https://stemerch.com/
Support the Channel: https://www.patreon.com/zachstar
PayPal(one time donation): https://www.paypal.me/ZachStarYT
This video goes through a visual explanation of the Laplace Transform as well as applications and its relationship to the Fourier Transform.
Instagram: https://www.instagram.com/zachstar/
Twitter: https://twitter.com/ImZachStar
Join Facebook Group: https://www.facebook.com/groups/majorprep/
►3D Graphing Software (this is not a sponsor nor an affiliate link, bought the software just because I liked it): https://www.runiter.com/
►Animations: Brainup Studios (email: brainup.in@gmail.com)
►My Setup:
Space Pictures: https://amzn.to/2CC4Kqj
Magnetic Floating Globe: https://amzn.to/2VgPdn0
Camera: https://amzn.to/2RivYu5
Mic: https://amzn.to/2BLBkEj
Tripod: https://amzn.to/2RgMTNL
Equilibrium Tube: https://amzn.to/2SowDrh
►Check out the MajorPrep Amazon Store: https://www.amazon.com/shop/zachstar
Basic Linear Algebra for Deep Learning | Built InDec 14, 2019
Basic linear algebra can have a surprising influence on deep learning and machine learning. Learn what linear algebra is and how to use it.
On ShardingDec 14, 2019
The matrix calculus you need for deep learningDec 11, 2019
Most of us last saw calculus in school, but derivatives are a critical part of machine learning, particularly deep neural networks, which are trained by optimizing a loss function. This article is an attempt to explain all the matrix calculus you need in order to understand the training of deep neural networks. We assume no math knowledge beyond what you learned in calculus 1, and provide links to help you refresh the necessary math where needed.
A new way to make quadratic equations easyDec 7, 2019
Many former algebra students have painful memories of struggling to memorize the quadratic formula. A new way to derive it, overlooked for 4,000 years, is so simple it eliminates the need.
Hacker Laws: Laws, Theories, Principles, Patterns Developers Might Find UseNov 5, 2019
💻📖 Laws, Theories, Principles and Patterns that developers will find useful. #hackerlaws - dwmkerr/hacker-laws
29 Statistical Concepts Explained in Simple English - Part 3Aug 30, 2019
This resource is part of a series on specific topics related to data science: regression, clustering, neural networks, deep learning, decision trees, ensembles, correlation, Python, R, Tensorflow, SVM, data reduction, feature selection, experimental design, cross-validation, model fitting, and many more. To keep receiving these articles, sign up on DSC. The full series is accessible here. 29 Statistical Concepts… Read More »29 Statistical Concepts Explained in Simple English – Part 3
Mathematics for Computer Science (2017) [pdf]Aug 30, 2019
Open Data StructuresAug 30, 2019
https://dhruvonmath.com/2019/04/04/kernelsAug 29, 2019
Algorithms by Jeff EricksonAug 20, 2019
Math basicsAug 9, 2019
Jacobian matrix and determinant - WikipediaAug 6, 2019
In vector calculus, the Jacobian matrix (/dʒəˈkoʊbiən/,[1][2][3] /dʒɪ-, jɪ-/) of a vector-valued function of several variables is the matrix of all its first-order partial derivatives. When this matrix is square, that is, when the function takes the same number of variables as input as the number of vector components of its output, its determinant is referred to as the Jacobian determinant. Both the matrix and (if applicable) the determinant are often referred to simply as the Jacobian in literature.[4] They are named after Carl Gustav Jacob Jacobi.
Primers – Math ∩ ProgrammingJul 31, 2019
Microsoft Word - SevenInsights.docxJul 22, 2019
Create Transformed, N-Dimensional Polygons with Covariance Matrix - DataScienceCentral.comJul 13, 2019
The covariance matrix has many interesting properties, and it can be found in mixture models, component analysis, Kalman filters, and more. Developing an intuition for how the covariance matrix operates is useful in understanding its practical implications. This article will focus on a few important properties, associated proofs, and then some interesting practical applications, i.e.,… Read More »Create Transformed, N-Dimensional Polygons with Covariance Matrix
“Essentials of Garbage Collectors” full course is now availableJul 11, 2019
Course overview Memory leaks and dangling pointers are the main issues of the manual memory management. You delete a parent node in a linked list, forgetting to delete all its children first -- and your
Introduction to Genetic AlgorithmsJul 9, 2019
The convoy phenomenon | the morning paperJul 1, 2019
The Math Trick Behind MP3s, JPEGs, and Homer Simpson’s Face - Facts So RomaJun 10, 2019
This theoretical physicist’s idea has an astounding legacy.
Sharing secrets with polynomialsMar 3, 2019
How to use polynomials to share secrets, and how to verify that the secret has been shared without unlocking it.
The Wavefunction Collapse Algorithm explained very clearly | Robert HeatonDec 30, 2018
The Wavefunction Collapse Algorithm teaches your computer how to riff. The algorithm takes in an archetypical input, and produces procedurally-generated outputs that look like it.
The Swiss Army Knife of HashmapsDec 14, 2018
A while back, there was a discussion comparing the performance of using the hashbrown crate (based on Google’s SwissTable implementation1) in the Rust compiler. In the last RustFest, Amanieu was experimenting on integrating his crate into stdlib, which turned out to have some really promising results. As a result, it’s being planned to move the crate into stdlib. I insist on watching this talk when you have some free time! ↩
vdumoulin/conv_arithmetic: A technical report on convolution arithmetic in the context of deep learningNov 6, 2018
A technical report on convolution arithmetic in the context of deep learning - vdumoulin/conv_arithmetic
Obtaining an Elliptic Curve certificate from Let's EncryptSep 27, 2018
Let's Encrypt does not currently generate Elliptic Curve certificates. Here's how to obtain one.
FxSolver is a Math Notebook for EngineersAug 8, 2018
If you like to rely on the web to do your electronics and computer math, you’ll want to bookmark FxSolver. It has a wide collection of formulae from disciplines ranging from electronics, comp…
Finally, a Problem That Only Quantum Computers Will Ever Be Able to Solve | Quanta MagazineJun 25, 2018
Computer scientists have been searching for years for a type of problem that a quantum computer can solve but that any possible future classical computer cannot. Now they’ve found one.
Elliptic Curves as Python Objects | Math ∩ ProgrammingJun 8, 2018
Last time we saw a geometric version of the algorithm to add points on elliptic curves. We went quite deep into the formal setting for it (projective space $ \mathbb{P}^2$), and we spent a lot of time talking about the right way to define the “zero” object in our elliptic curve so that our issues with vertical lines would disappear. With that understanding in mind we now finally turn to code, and write classes for curves and points and implement the addition algorithm.
Eecs227atJun 8, 2018
Sequence Modeling with CTCJun 8, 2018
A visual guide to Connectionist Temporal Classification, an algorithm used to train deep neural networks in speech recognition, handwriting recognition and other sequence problems.
Understanding resolution and MTFJun 8, 2018
A visual approach to understanding resolution based on MTF (modulation transfer function) curves.
A Deep Dive into Monte Carlo Tree SearchJun 8, 2018
The Two-Napkin ProtocolJun 3, 2018
In 1989, Kirk Lougheed of Cisco and Yakov Rekhter of IBM were having lunch in a meeting hall cafeteria at an Internet Engineering Task Force (IETF) conference. They wrote a new routing protocol that became RFC (Request for Comment) 1105, the Border Gateway Protocol (BGP), known to many as the “Two Napkin Protocol” — in reference to the napkins they used to capture their thoughts.
Eigenvectors and Eigenvalues explained visuallyMay 15, 2018
Swarm Optimization: Goodbye Gradients - DataScienceCentral.comMay 12, 2018
Fish schools, bird flocks, and bee swarms. These combinations of real-time biological systems can blend knowledge, exploration, and exploitation to unify intelligence and solve problems more efficiently. There’s no centralized control. These simple agents interact locally, within their environment, and new behaviors emerge from the group as a whole. In the world of evolutionary alogirthms… Read More »Swarm Optimization: Goodbye Gradients
An Introduction to Hashing in the Era of Machine LearningApr 26, 2018
In December 2017, researchers at Google and MIT published a provocative research paper about their efforts into “learned index structures”…
Start With Gradient Boosting, Results from Comparing 13 Algorithms on 165 DApr 1, 2018
Which machine learning algorithm should you use? It is a central question in applied machine learning. In a recent paper by Randal Olson and others, they attempt to answer it and give you a guide for algorithms and parameters to try on your problem first, before spot checking a broader suite of algorithms. In this post, you will discover a…
A dive into spatial search algorithms – Vladimir Agafonkin – MediumFeb 21, 2018
Searching through millions of points in an instant
keon/algorithms: Minimal examples of data structures and algorithms in PythonDec 27, 2017
Minimal examples of data structures and algorithms in Python - keon/algorithms
Counting Bloom Filter in C – Tony Allen – MediumDec 27, 2017
I recently ran across this bloom filter post by Michael Schmatz and it inspired me to write about a neat variation on the bloom filter that…
The Beauty of Bresenham's AlgorithmDec 27, 2017
An Introduction to the Fast Fourier TransformDec 27, 2017
This article will review the basics of the decimation-in-time FFT algorithms.
Understanding Machine Learning AlgorithmsDec 27, 2017
Machine learning algorithms aren’t difficult to grasp if you understand the basic concepts. Here, a SAS data scientist describes the foundations for some of today’s popular algorithms.
Data Structures With JavaScript: Singly-Linked List and Doubly-Linked ListOct 3, 2016
Two of the most commonly taught data structures in computer science are the singly-linked list and doubly-linked list.
“Shrinking bull’s-eye” algorithm speeds up complex modeling from days to hoOct 3, 2016
A new “shrinking bull’s-eye” algorithm from researchers at MIT speeds up complex modeling from days to hours.
altruism
Scientists Discover People Act More Altruistic When Batman Is Present - SlashdotNov 30, 2025
Psychology Today reports:
In a study conducted in Milan, Italy, and published in November 2025, the sight of a person dressed as Batman led to a nearly doubled rate of people giving up their seat to a pregnant woman. Over the course of 138 subway rides, researchers found that people who saw "Batm...
Of Marx and Moloch: How My Attempt to Convince Effective Altruists to Become Socialists Backfired CompletelyAug 16, 2025
Why psychology explains politics better than politics explain psychology
Why you are not as selfish as you thinkJul 28, 2025
Science suggests we are hardwired for altruism, but do we really need to be thinking of others all the time?
In Times of Trouble, Seek Moral BeautyMay 22, 2025
The lovely paradox of doing good in the world is that it does you good too.
How effective altruism went from a niche movement to a billion-dollar forceAug 9, 2022
Effective altruism has gone mainstream. Where does that leave it?
Notes on Effective AltruismJun 4, 2022
Why overly kind and moral people can rub you up the wrong wayNov 29, 2021
‘Do-gooders’ are often judged harshly. Why do we resent their acts of altruism or question their motives?
Gossip and competitive altruism support cooperation in a Public Good gameSep 24, 2007
When there is an opportunity to gain a positive reputation, individuals are more willing to sacrifice their immediate self-interest. Partner choice creates opportunities for competitive altruism, i.e. individuals compete to be regarded as more generous ...
ambiguity
Navigating Ambiguity :: UXmattersJan 17, 2022
Web magazine about user experience matters, providing insights and inspiration for the user experience community
FUD: Fear, Uncertainty, and DoubtApr 6, 2021
The Psychology of Prediction · Collaborative FundAug 9, 2019
This report describes 12 common flaws, errors, and misadventures that occur in people’s heads when predictions are made.
amd
RDNA 4's "Out-of-Order" Memory AccessesAug 11, 2025
Examining RDNA 4's out-of-order memory accesses in detail, and investigating with testing
Lenovo Shows Huge Optimism Towards AMD’s Instinct MI300X AI AcceleratorsMar 29, 2024
Lenovo, the firm emerging as a driving force behind AI computing, has expressed tremendous optimism about AMD's Instinct MI300X accelerator.
AMD Quietly Funded A Drop-In CUDA Implementation Built On ROCm: It's Now OpFeb 13, 2024
While there have been efforts by AMD over the years to make it easier to port codebases targeting NVIDIA's CUDA API to run atop HIP/ROCm, it still requires work on the part of developers.
AMD 3D Stacks SRAM BumplesslyJun 12, 2021
AMD recently unveiled 3D V-Cache, their first 3D-stacked technology-based product. Leapfrogging contemporary 3D bonding technologies, AMD jumped directly into advanced packaging with direct bonding and an order of magnitude higher wire density.
The Rise, Fall and Revival of AMD (2020)Mar 19, 2021
AMD is one of the oldest designers of large scale microprocessors and has been the subject of polarizing debate among technology enthusiasts for nearly 50 years. Its...
Welcome to AMD ROCm Platform — ROCm Documentation 1.0.0 documentationMar 15, 2021
AMD ROCm documentation
analogies
The Brain Maps Out Ideas and Memories Like Spaces | Quanta MagazineJan 20, 2019
Emerging evidence suggests that the brain encodes abstract knowledge in the same way that it represents positions in space, which hints at a more universal theory of cognition.
Mental Models I Find Repeatedly Useful — MediumDec 27, 2017
2019 UPDATE: Since this post came out, I co-authored a book about it called Super Thinking: The Big Book of Mental Models.
analytics
LCD defect metricsJan 9, 2026
The Psychology of AI SERPs and ShoppingDec 29, 2025
The rise of "zero-click" searches may signal the coming effect of AI shopping on product discovery and decision-making.
5 Statistical Methods That Dominate Their Industries (and Why)Dec 22, 2025
Discover which statistical methods dominate healthcare, finance, tech, retail, and sports analytics, and why these industry-method pairings became indispensable standards.
Shapley Values Explained: Seeing Which Features Drive Your PredictionsDec 17, 2025
Learn what Shapley values are and how SHAP tools help explain machine learning predictions.
5 Effect Size Measures You’ll Actually UseOct 27, 2025
Learn to calculate and interpret five essential effect size measures with Python examples and clear guidance.
How to Calculate Support, Confidence, and Lift in PythonSep 8, 2025
Learn to calculate support, confidence, and lift metrics for market basket analysis using Python's mlxtend library.
Understanding Market Basket Analysis: A Beginner’s GuideSep 3, 2025
Discover hidden customer purchasing patterns with market basket analysis to optimize product placement and increase sales.
A Guide to RFM Analysis using PythonAug 26, 2025
In this article, I'll take you through a practical guide to RFM Analysis using Python. A Guide to RFM Analysis using Python.
Umami is a simple, fast, privacy-focused alternative to Google Analytics.Feb 17, 2025
Umami is a simple, fast, privacy-focused alternative to Google Analytics. - umami-software/umami
WTF is open-source marketing mix modeling?Feb 17, 2025
Marketers should be wary of open-source programs promoted by purveyors with a walled garden history.
SWOT AnalysisFeb 7, 2025
A SWOT analysis helps teams understand how well a product, service, or organization is positioned in the market to serve its customers.
Stop Using Zip Codes for Geospatial AnalysisFeb 7, 2025
Uncover deeper insights beyond ZIP codes with geospatial analysis. Explore the limitations of ZIP codes and discover alternatives for spatial understanding.
Time Series Decomposition: Extracting Seasonal, Trend, and Residual ComponentsFeb 7, 2025
Still, the exact application, challenges and shortcuts related to this technique are relatively unknown, and that’s what this article seeks to change.
Testing Visual Design: A Comprehensive GuideDec 13, 2024
Use methods like 5-second testing, first-click testing, and preference testing to gain insights into how users perceive your visual design.
DataExpert-io/data-engineer-handbook: This is a repo with links to everything you'd ever want to learn about data engineeringNov 20, 2024
This is a repo with links to everything you'd ever want to learn about data engineering - DataExpert-io/data-engineer-handbook
Beyond Pageviews: Measure Content Performance And User Engagement In GA4Oct 30, 2024
GA4 provides valuable insights into user interactions on your website. Learn how to analyze key metrics like sessions, session duration, and events to refine your digital strategy.
Goodhart's Law Isn't as Useful as You Might ThinkOct 27, 2024
Goodhart's Law is useless. It tells you about a phenomenon, but it doesn't tell you how to solve it. We look at how organisations actually prevent Goodhart's Law, and illustrate this with Amazon's Weekly Business Review as an example.
An Introduction to Experiment Pairing — PrecoilOct 21, 2024
How to build upon a previous experiment, without throwing it all away.
Supply Chain Analysis with R Using the planr Package | R-bloggersOct 20, 2024
Hey guys, welcome back to my R-tips newsletter. Supply chain management is essential in making sure that your company’s business runs smoothly. One of the key elements is managing inventory efficiently. Today, I’m going to show you how to estimate inve...
Mastering the Big 12 Data-driven Economic Concepts - DataScienceCentral.comOct 20, 2024
“If you want to change the game, change the frame.” The game has certainly changed with the data era, and maybe the most drastic change driven by data has occurred in economics, the foundation upon which our modern society is built and sustained. Understanding and mastering the transition from “traditional” economics to modern data-driven economics… Read More »Mastering the Big 12 Data-driven Economic Concepts
Marketing Mix Modeling (MMM): How to Avoid Biased Channel EstimatesOct 16, 2024
Learn which variables you should and should not take into account in your model.
Customer Satisfaction Analysis with PythonAug 1, 2024
In this article, I'll take you through the task of Customer Satisfaction Analysis with Python. Customer Satisfaction Analysis with Python.
6 Statistical Methods for A/B Testing in Data Science and Data AnalysisJul 31, 2024
A/B testing is a cornerstone of data science, essential for making informed business decisions and optimizing customer revenue. Here, we delve into six widely used statistical methods in A/B testing, explaining their purposes and appropriate contexts. 1. Z-Test (Standard Score Test): When to Use: This method is ideal for large sample sizes (typically over 30) when the population variance is known. Purpose: Compares the means of two groups to determine if they are statistically different. Applications: This technique is frequently employed in conversion rate optimization and click-through rate analysis. It helps identify whether changes in website elements or marketing strategies
The Amazon Weekly Business ReviewJul 10, 2024
The authoritative guide on how Amazon does WBRs (from former exec Colin Bryar): how it works, how to do it, and how Amazon uses it to win.
Run Charts - Improvement | theCompleteMedicJul 3, 2024
Create your first run chart and start interpreting your data using just four rules. Your go-to QI resource.
18 Data Profiling Tools Every Developer Must KnowJun 5, 2024
Analytics, management, and business intelligence (BI) procedures, such as data cleansing, transformation, and decision-making, rely on data profiling. Content and quality reviews are becoming more important as data sets grow in size and variety of sources. In addition, organizations that rely on data must prioritize data quality review. Analysts and developers can enhance business operations by analyzing the dataset and drawing significant insights from it. Data profiling is a crucial tool. For evaluating data quality. It entails analyzing, cleansing, transforming, and modeling data to find valuable information, improve data quality, and assist in better decision-making, What is Data Profiling? Examining
Sample Size CalculatorMay 31, 2024
Visual, interactive sample size calculator ideal for planning online experiments and A/B tests.
Using window functions for advanced data analysisApr 15, 2024
Window functions are an advanced feature of SQL that provides powerful tools for detailed data analysis and manipulation without grouping data into single output rows, which is common in aggregate functions.
Alabama, UConn Share Analytical Mindset—And Even Used Same FirmApr 8, 2024
More than half of the NCAA Tournament's top teams have used HD Intelligence services, as basketball's data revolution sweeps through the college game.
Lessons from More Than 1,000 E-Commerce Pricing TestsMar 19, 2024
At most small and medium-sized e-commerce retailers, prices are typically set and updated in an ad hoc fashion without one clear owner. The process often starts by using a gross margin target, followed by some comparison with competitors, and then some adjustments from there. Many of these retailers would quickly admit that this isn’t an optimal strategy, and that they are likely leaving money on the table — and they’re often right. The authors’ experience with price testing has shown that there is actually a significant amount of money left on the table when pricing is left un-optimized.
Tools to Export Google’s SERPsFeb 29, 2024
Knowing the URLs in search engine result pages leads to further analysis, such as referring domains, page authority, word count, and more.
How to use Causal Inference when A/B testing is not availableJan 15, 2024
Evaluating ad targeting product using causal inference: propensity score matching!
Market Basket Analysis using PythonOct 30, 2023
In this article, I'll take you through the task of Market Basket Analysis using Python. Market Basket Analysis using Python.
What’s an Operational Definition Anyway?Oct 4, 2023
Two principles on collecting data, from the field of Statistical Process Control. As with most principles in SPC, this is both simpler and more important than you might think.
Burning money on paid ads for a dev tool – what we've learnedSep 29, 2023
Since starting PostHog in 2020, we’ve learned a bunch about what does and doesn’t work when it comes to marketing to engineers . Paid ads is a…
Your Followers are not Your FansSep 27, 2023
Using data provided by Vivid Seats and Instagram, I learned that social media clout isn't all it's cracked up to be.
Congrats on your Customer Lifetime Value prediction model — now what are yoAug 20, 2023
An obsessively detailed guide to Customer Lifetime Value techniques and real-world applications
11 free tools for PPC campaign managementAug 14, 2023
These tools can help you analyze PPC competitors, track search trends or design ad creative – all without spending a dime.
B3ed2e05Aug 5, 2023
Caveats and Limitations of A/B Testing at Growth Tech CompaniesAug 5, 2023
For non-tech industry folks, an “A/B test” is just a randomized controlled trial where you split users or other things into treatment and control groups, and then later compare key metr…
the-markup/xandr-audience-segmentsJul 30, 2023
List: Marketing Mix Modeling | Curated by Abhijeet Talaulikar | MediumJul 29, 2023
8 stories · A guide to building an end-to-end marketing mix optimization solution for your organization.
From “Heavy Purchasers” of Pregnancy Tests to the Depression-Prone: We FounJul 24, 2023
A spreadsheet on ad platform Xandr’s website revealed a massive collection of “audience segments” used to target consumers based on highly specific, sometimes intimate information and inferences
Uplift Modeling — A Data Scientist’s Guide to Optimizing a Credit Card ReneJul 23, 2023
Applying causal machine learning to trim the campaign target audience
15 Google Analytics 4 alternatives: Free and low-cost optionsJun 30, 2023
Looking for the best alternative to Google Analytics 4? Here are 15 web analytics platforms you may want to consider.
8 annoying A/B testing mistakes every engineer should knowJun 19, 2023
Running experiments is equal parts powerful and terrifying. Powerful because you can validate changes that will transform your product for the better…
When You Should Prefer “Thompson Sampling” Over A/B TestsJun 19, 2023
An in-depth explanation of “Thompson Sampling”, a more efficient alternative to A/B testing for online learning
7 top enterprise SEO tools compared: A comprehensive evaluationMay 24, 2023
An in-depth look at seven tools used by enterprises for content optimization, technical SEO, and reporting and analytics.
What is Cohort Analysis in Data ScienceMay 4, 2023
This article will take you through everything about Cohort Analysis that you should know. What is Cohort Analysis in Data Science?
Retail Price Optimization using PythonApr 17, 2023
In this article, I will walk you through the task of Retail Price Optimization with Machine Learning using Python. Retail Price Optimization.
Supply Chain Analysis using PythonApr 9, 2023
In this article, I will take you through the task of Supply Chain Analysis using Python. Supply Chain Analysis using Python.
How and where each Premier League team pass — and how they’ve changedMar 31, 2023
From Villa's weirdly disconnected midfield to Forest playing passes near their corner flags, here's what we can learn from analysing passing
Uplift Modeling with Cost OptimizationMar 19, 2023
How to adjust CATE to consider costs associated with your treatments
Forget Milk and Eggs: Supermarkets Are Having a Fire Sale on Data About You – The MarkupFeb 22, 2023
When you use supermarket discount cards, you are sharing much more than what is in your cart—and grocery chains like Kroger are reaping huge profits selling this data to brands and advertisers
7 Open-Source Log Management Tools that you may consider in 2023Jan 31, 2023
Effective log management is a fundamental aspect of maintaining and troubleshooting today's complex...
25 A/B Testing Concepts — Interview Cheat SheetJan 26, 2023
Questions on A/B testing are being increasingly asked in interviews but reliable resources to prepare for these are still far and few…
Google ranking signals: A complete breakdown of all confirmed, rumored and false factorsJan 17, 2023
An easy-to-read, highly condensed analysis of all the known, confirmed, rumored, and absolute myth-level Google ranking factors.
Media Mix Modeling: How to measure the effectiveness of advertising with PyDec 17, 2022
Media Mix modeling, its implementation, and practical tips
How to Select the Right Statistical Tests for Different A/B MetricsDec 10, 2022
A Discussion of the go-to methods for 5 Types of A/B Metrics
NCAA StatisticsNov 20, 2022
Bayesian Hierarchical Marketing Mix Modeling in PyMCOct 14, 2022
Learn how to build MMMs for different countries the right way
Be critical or be corruptedSep 24, 2022
I recently rewatched "The Wire". The show's central theme is about counter-productive metrics and their corrupting influence on institutions. I've noticed hints of this pattern in software engineering, too
7 useful Excel formulas and functions for PPCAug 24, 2022
Use these tips to quickly analyze performance data and identify high-impact PPC optimizations that will move the needle.
Pipeline Analysis PlaybookAug 19, 2022
In many board rooms, the most important go-to-market number this quarter is pipeline health. For some companies, the pipeline may be less clear than a quarter or two ago. Summer seasonality may play a role. Macroeconomics might also be lurking within the numbers. Pipeline fluctuations are normal. But any meaningful & unexpected surprise warrants introspection. Pipeline analysis often has four parts: Craft the sales sandwich to predict your GTM conversion rates & determine if close rates have changed in parallel.
5 Amazon product listing optimization must-havesAug 5, 2022
Amazon will continue to be highly competitive. Want to be successful? Optimize your product listings to the fullest with these tips.
The Joy of A/B Testing: Theory, Practice, and PitfallsAug 1, 2022
How today’s tech companies make data-driven decisions in Machine Learning production
Fully Mastering Fisher’s Exact Test for A/B TestingJul 30, 2022
While Fisher’s exact test is a convenient tool for A/B testing, the idea and results of the test are often hard to grasp and difficult to…
Test Your Product On A Crappy Laptop | CSS-TricksJul 29, 2022
There is a huge and ever-widening gap between the devices we use to make the web and the devices most people use to consume it. It’s also no secret
Defining Churn Rate (no really, this actually requires an entire blog post) - ShopifyJul 19, 2022
If you go to three different analysts looking for a definition of "churn rate," they will all agree that it's an important metric and that the definition is self evident. Then they will go ahead and give you three different definitions. And as they share their definitions with each other they all have the same response: why is everyone else making this so com
Running Marketing Experiments with PurposeJul 19, 2022
Over the past few years, marketing on the web has become way too much fun. I remember trying to figure out what “hits” on awstats [http://awstats.sourceforge.net/] meant in high school, and I distinctly can recall how disappointed I was when I found out the true meaning. Nowadays,
Getting 200% More Actionable Feedback from Customers that Cancel - ExtendsLogicJul 19, 2022
Getting useful cancellation feedback from customers is tough. The problem is that once people have canceled, they’re no longer engaged and will rarely spend the time to give you feedback. One of the best things I’ve ever done to combat this with Bidsketch was to add a mandatory freeform text field that says: Please help… Continue reading Getting 200% More Actionable Feedback from Customers that Cancel →
Simple Analytics documentationJul 19, 2022
Simple Analytics is a privacy-friendly and simple alternative to Google Analytics. No cookies. No trackers. No consent required from your visitors. Just straightforward analytics.
The Data Incubator is Now Pragmatic Data | Pragmatic InstituteJul 19, 2022
As of 2024, The Data Incubator is now Pragmatic Data! Explore Pragmatic Institute’s new offerings, learn about team training opportunities, and more.
How to use 12 micro intents for SEO and content journey mappingJul 18, 2022
Analyzing the SERPs for these micro intents will help you create the right content that a searcher will want to find.
How Pinterest drives sustainable growthJul 18, 2022
Marc Andreessen famously said that for startups, “the only thing that matters is getting to product/market fit.” Product/market fit means providing enough value to enough people that the startup can…
Analyzing churn rates, free trials, and other metricsJul 18, 2022
I sit down and learn how to get insights from churn rates, conversion rates, and more to answer some important questions about my product.
Using Spotify to measure the popularity of older musicJul 18, 2022
I have a theory: No Diggity by Blackstreet is timeless. If Frank Sinatra is timeless in 2015, so too is No Diggity in 2050, fondly remembered by our children's children as the icon of the 90s. And I think that I can prove it.
Pricing Experiments You Might Not Know, But Can Learn FromJul 18, 2022
Pricing is hard. Make it too low and you miss out on profit; too high and you miss out on sales. These pricing experiments will help you get it right.
The Four Kinds of Churn - Predictable RevenueJul 18, 2022
this is a guest post by Kareem Mayan. customer retention was a recent topic in our predictable […]
23 Tips on How to A/B Test Like a Badass - Search Engine WatchJul 18, 2022
A/B testing is hitting the mainstream because it is so effective. And with so many tools available it has become very easy and very inexpensive to run. Here are 23 helpful tips on how you can take your A/B tests from basic to the next level.
How To Easily Manage & Test Millions Of AdsJul 18, 2022
You must test ads to make your paid search account grow and thrive. That fact is no longer debatable – it is just a best practice fact. Ad testing in
Easy statistics for A/B testing and hamstersJul 18, 2022
A/B testing tools often lie about whether something is "statistically significant." Here's an extremely simple, mathematically sound formula to compute it for yourself.
The golden rule of A/B testing: look beyond validationJul 18, 2022
A/B tests provide more than statistical validation of one execution over another. They can and should impact how your team prioritizes projects.
Hire a Top Performer Every Time with These Interview QuestionsJul 18, 2022
Koru CEO Kristen Hamilton helps hundreds of people hire and get hired every year. These are the traits she knows translate into excellent performance on the job.
3 easy internal linking strategies for keywords with different search volumesJul 18, 2022
Contributor Aleh Barysevich breaks down three strategies you can use to boost the effectiveness of your internal link building campaigns to fulfill specific SEO-related goals.
A Beginner’s Guide to Cohort Analysis: the Most Actionable (and Underrated) Report on Google…Jul 18, 2022
The antidote to vanity metrics when you have less than 1 hour/week for marketing analytics
The privacy-first Google Analytics alternative - Simple AnalyticsJul 18, 2022
Simple Analytics is the privacy-first Google Analytics alternative that is 100% GDPR compliant. Give us a try!
Start here: Statistics for A/B testingJul 18, 2022
We’re Agile, we think lean, we’re data-driven. If you live in the new economy and work in some sort of digital product you hear some of…
5 Tricks When AB Testing Is Off The TableJul 17, 2022
An applied introduction to causal inference in tech
Email Marketing Metrics, Part 2: Advanced TopicsJul 17, 2022
In "Email Marketing Metrics, Part 1: The Basics," my article last month, I addressed the primary measurements for email marketing: delivery rate, open
Etsy's A/B Testing Culture Spurs Mobile Innovation | ApptimizeJul 5, 2022
We spoke with Etsy’s iOS Software Engineer, Lacy Rhoades, about their culture of continuous experimentation. Learn about their a/b testing culture
13% of my website visitors block Google AnalyticsJul 5, 2022
There’s widespread use of adblockers on the web but users are increasingly blocking cookies and other tracking scripts too. Browsers such as Safari, Firefox and Brave are privacy-focused.
Top 10 SEO Tools You Need in 2022Jul 4, 2022
If you are working in the field of SEO or if you are managing a content or Ecommerce website then you...
Cohort Visualizer » A handy tool for browsing cohort datasetsJun 28, 2022
A cohort is a group of people who share a common characteristic or experience within a defined period. This is a handy tool for browsing cohort datasets.
Ahrefs—Marketing Intelligence Tools Powered by Big Data.Jun 28, 2022
Unlock data to make effective decisions across digital marketing. SEO, content marketing, PPC, digital PR, and more.
Growth Hacking ChecklistJun 28, 2022
“My biggest surprise was when we launched the Facebook app and it didn’t go viral” -Startup CEO quote “The month after we ...
About Google Tag Manager | Google for DevelopersJun 25, 2022
Deploy and update measurement tags on your websites and mobile apps from a web interface, without major code changes or app releases.
3 pitfalls of PPC experimentsJun 25, 2022
Knowing what to test and how to interpret the results based on nuances and oddities of experiments is an important skill for people, not automations.
The ultimate guide to A/B testing. Part 1: experiment designJun 25, 2022
A/B testing is a very popular technique of checking granular changes in a product without mistakenly taking into account changes that were…
Fathom: An Open Source Google Analytics AlternativeJun 24, 2022
Hey everyone! I star all kinds of crazy GitHub repos and last week I stumbled on an awesome project...
Multivariate vs. A/B Testing: Incremental vs. Radical ChangesJun 23, 2022
Multivariate tests indicate how various UI elements interact with each other and are a tool for making incremental improvements to a design.
The Awkward Truth Behind Skip RatesJun 23, 2022
With the ubiquity of music access and a lack of any need for patience, the term "skip-rate" has crept into the modern music industry lexicon, and some new data behind. Continue reading
ANALYZE YOUR A/B TEST RESULTSJun 23, 2022
The best way to determine what works best for your site is to carry out an A/B test for your landing pages. Check out this A/B significant test calculator.
Roll Your Own AnalyticsJun 23, 2022
How to build a free, privacy-focused alternative to Google Analytics
A Developer’s Guide To SEOJun 23, 2022
Developers don’t do SEO. They make sure sites are SEO-ready. That means developers hold the key to SEO. It’s true. If you’re a developer and you’re r
Show your musical taste with data: The best analytics tools for SpotifyJun 23, 2022
Spotify analytics for listeners is how the popular streaming service also captures the hearts of its users. Many websites allow
How Content Scoring Can Help Generate RevenueJun 22, 2022
Content marketing has become an increasingly popular way for brands to promote themselves. It is subtle and generates more leads than traditional
180 Marketing Founder: 4 Buckets to SEOJun 21, 2022
Search engine optimization for ecommerce boils down to four buckets. That's according to Jeff Oxford, founder of 180 Marketing, an Oregon-based firm.
6 Email Triggers for Max ConversionsJun 21, 2022
Shoppers' actions on an ecommerce site create opportunities for automated, triggered emails. Such behavior-based email automation is a sure-fire tactic to drive revenue.
5 Rank Tracking Tools for Organic SearchJun 17, 2022
Monitoring rankings remains the best way to track organic search performance. In this piece, we list five helpful tools to track your site's positions and your competitors'.
ReforgeJun 13, 2022
https://www.datascience.com/blog/what-is-a-churn-analysis-and-why-is-it-valuable-for-businessJun 13, 2022
What Is Conjoint Analysis, and How Can It Be Used?Jun 11, 2022
Conjoint analysis is a highly effective means of market research, capable of informing a company’s pricing strategy and product development.
9 Common Types of Conjoint Analysis and How To Use ThemJun 11, 2022
Conjoint analysis is the optimal market research approach for measuring the value that consumers place on features of a product or service. Learn more!
4 technical SEO issues auditing tools won’t show youJun 1, 2022
Here are four of the top technical SEO issues that your auditing tools won't show you and how to find them.
Statistical Significance Calculator - FREE AB Test CalculatorMay 28, 2022
Our A/B test calculator will help you to compare two or three variants to determine which test will be statistically significant.
13 marketing automation tools that can help you boost your salesMay 27, 2022
The way we live our lives has an impact on our work. Long lists of typical chores may turn your
When Keyword Poaching Pays OffMay 20, 2022
Competitive poaching refers to the practice of bidding on ads for a competitor’s search terms, in order to poach customers searching for that brand. It’s a common tactic in the world of digital ads — but is it effective? The author shares results from the first-ever empirical study of this practice, which found that poaching can work well for higher-end brands, but may backfire for lower-end or mass market offerings. Specifically, the study found that when an ad poached customers who searched for a high-end brand, users clicked on it more, but when an ad poached a low-end or mass market target, users were less likely to click. Of course, the author notes that clickthrough rate is just one metric, and there may be other ways in which a poaching campaign could be harmful or beneficial. But these findings can help marketers add a bit of science to the art that is digital advertising, helping them to optimize campaigns for their unique products and customers.
How Keyword Clustering Powers SEOMay 19, 2022
Keyword lists for SEO are often cluttered and seemingly endless. "Clustering" can help by grouping keywords by a common modifier.
How to make a GA4 landing page report in 10 easy stepsMay 14, 2022
The Landing Page report. Universal Analytics has it. GA4 does not. But you can make it! This article will show you how.
Google brand SERPs: Why you must dominate People Also AskMar 19, 2022
It's time to optimize for People Also Asked questions asked around and about your brand in Google's SERPs. Here's why.
The Sales Sandwich by @ttunguzFeb 19, 2022
The most consistent sales leader I’ve worked with hit plan 27 consecutive quarters. How can a sales leader develop similar repeatability? Much goes into it here are the reports he used to manage his team at the board level. The PQR (pipeline-to-quota) funnel is first. Pipeline is the total value of the accounts within a stage or later. Quota is the aggregate quota on the street for the quarter. Divide P by Q to get PQR.
Vanity Metrics: Add Context to Add MeaningJan 17, 2022
Tracked analytics metrics should reflect change in the user experience. Vanity metrics appear impressive, but their fluctuations are not actionable.
Why You Only Need to Test with 5 UsersJan 17, 2022
Elaborate usability tests are a waste of resources. The best results come from testing no more than 5 users and running as many small tests as you can afford.
Keyword Tool ⚠️ Google Keyword Planner【Search FREE】Jan 16, 2022
Keyword Tool is #1 (FREE) alternative to Google Ads Keyword Planner for SEO & PPC keyword research ᐈ Generate 1,000s ✅ long-tail keywords in seconds!
7 Ways Experiments BreakDec 9, 2021
Common mistakes to avoid when you’re getting started with experimentation
11 A/B Testing Tools to Optimize ConversionsNov 17, 2021
A/B testing, the process of exposing randomized visitors to one or more variables, is among the most effective strategies to optimize user experiences and conversion rates. Here is a list of A/B testing tools.
58% of Hacker News, Reddit and tech-savvy audiences block Google AnalyticsAug 31, 2021
Is Google Analytics still useful and how accurate are its stats? How much data is missing from Google Analytics due to adblockers and privacy-friendly browsers?
The Ultimate Guide to Google Ads Campaign ManagementAug 12, 2021
Managing a Google ads campaign requires understanding how to check, optimize, test, and change your ads. Read this post to learn more.
Marketing Automation: What is it, Examples & Tools [2021]Jul 14, 2021
Not sure where to start with marketing automation? Here are 25 tools, and how to use them to streamline and improve your marketing.
When Graphs Are a Matter of Life and DeathJun 17, 2021
Pie charts and scatter plots seem like ordinary tools, but they revolutionized the way we solve problems.
Why You Should Switch to Bayesian A/B TestingJun 7, 2021
Statistics & Business can share the same Language
Is Gerrymandering About to Become More Difficult?May 31, 2021
A new approach in the way the Census aggregates its data could make it more difficult to do extreme gerrymandering, says Moon Duchin.
Metric-Based (Ratings-based) Conjoint AnalysisMay 30, 2021
In marketing analytics, conjoint analysis is a technique used to gain specific insights about consumers’ preferences. Often derived from consumer surveys, conjoint analysis can tell us, for instance…
How SoundScan Changed Everything We Knew About Popular MusicMay 29, 2021
Thirty years ago, Billboard changed the way it tabulated its charts, turning the industry on its head and making room for genres once considered afterthoughts to explode in the national consciousness
Boxes, trucks and bikesMay 29, 2021
Should we still be talking about online and offline retail, or about trucks versus boxes versus bikes?
The Two Flavors Of Churn You Need To Know - Crunchbase NewsMay 18, 2021
Net dollar churn is a more value-driven way of looking at churn.
A/B/C Tests: How to Analyze Results From Multi-Group ExperimentsMay 18, 2021
Experimentation is widely used at tech startups to make decisions on whether to roll out new product features, UI design changes, marketing campaigns and more, usually with the goal of improving…
Oliver Palmer | You probably don’t need A/B testingMar 22, 2021
The best way to optimise your website is usually the simplest.
Resource Round-Up: Causal Inference | Emily RiedererMar 14, 2021
Free books, lectures, blogs, papers, and more for a causal inference crash course
Are You Still Using Pandas to Process Big Data in 2021?Mar 1, 2021
Pandas doesn’t handle well Big Data. These two libraries do! Which one is better? Faster?
Buyer beware: Massive experiment shows why ticket sellers hit you with last-second fees | Haas News | Berkeley HaasFeb 23, 2021
There’s a reason that online ticket sellers hit you with those extra fees after you’ve picked your seats and are ready to click “buy.” Pure profit. A
8 Common Pitfalls of Running A/B TestsFeb 22, 2021
How not to fail your online controlled experimentation
A/B Testing — A complete guide to statistical testingFeb 18, 2021
Optimizing web marketing strategies through statistical testing
AB_Testing/AB_Testing.ipynb at main · bjpcjp/AB_TestingFeb 18, 2021
A/B Testing — A complete guide to statistical testing - bjpcjp/AB_Testing
Pylift: A Fast Python Package for Uplift Modeling – WayfairJan 2, 2021
Uplift models seek to predict the incremental value attained in response to a treatment. For example, if we want to know the value of showing an advertisement to someone, typical response models will only tell us that a person is likely to purchase after being given an advertisement, though they may have been likely to purchase already. Uplift models will predict how much more likely they are to purchase after being shown the ad. The most scalable uplift modeling packages to date are theoretically rigorous, but, in practice, they can be prohibitively slow. We have written a Python package, pylift, that implements a transformative method wrapped around scikit-learn to allow for (1) quick implementation of uplift, (2) rigorous uplift evaluation, and (3) an extensible python-based framework for future uplift method implementations.
Annotated Heatmaps of a Correlation Matrix in 5 Simple Steps | by Julia KhoDec 26, 2020
A heatmap is a graphical representation of data in which data values are represented as colors. That is, it uses color in order to…
Why you should try the Bayesian approach of A/B testingDec 18, 2020
The intuitive way of A/B testing. The advantages of the Bayesian approach and how to do it.
Why You Should Learn AlteryxDec 9, 2020
You can say goodbye to coding for data wrangling and data cleaning
The Guide to Product Analytics - Introduction | MixpanelNov 3, 2020
The Guide to Product Analytics taps dozens of product leaders (from companies like Google, Twitter, and LinkedIn) to break down how PMs can use product analytics to drive product-led growth.
Retail Analytics: A Novel and Intuitive way of finding Substitutes and CompMar 18, 2020
Retail Analytics: Data Science for Retail
One Piece of Calculus That Can Change the Way You AdvertiseMar 9, 2020
If you make $10 profit each time you sell a product, what cost per conversion should you aim for? Answering this question isn't easy, but it can teach us a lot about how to approach advertising.
I've Built Multiple Growth Teams. Here's Why I Won't Do It Again. | CXLDec 23, 2019
Big success. Bigger failure. And lots of lessons. Learn why building a growth team may be a multi-million dollar mistake.
How tracking pixels work - Julia EvansDec 23, 2019
https://docs.simpleanalytics.com/uniquesDec 23, 2019
How To Design Profitable Sales Funnels On MobileDec 23, 2019
Every website or PWA you build should automate as much prospecting and selling as possible. The only thing is that visitors enter websites with various mindsets, depending on which part of the buying stage they’re at. This means that you can’t just take every person who enters the site through the same path. You have to design a custom sales funnel (or pathway) for each kind of buyer. In this article, Suzanna Scacca will tell you what you need to keep in mind.
Back to basics: Understanding your paid search metricsDec 23, 2019
Learn how to interpret what’s happening in your paid search account with your traffic, conversions and sales data.
Building our Centralized Experimental Platform | Stitch Fix Technology – MultithreadedDec 14, 2019
Running an A/B test is easy. Screwing up an A/B test is even easier.
19 Free Tutorials for Google AnalyticsNov 19, 2019
Google Analytics may be the most important application to understand the behavior of your visitors. And whether you’re a beginner or an experienced user, there are many free resources to help. Here is a list of free tutorials for Google Analytics.
Google Analytics: Introduction to Cross-device Reporting | Practical EcommeOct 17, 2019
There has been a seismic shift in website traffic in the past several years, from desktop to mobile. Google Analytics has rolled out the beta version of cross-device reporting to inform merchants of how their shoppers are interacting via multiple devices.
Using Experiments to Launch New ProductsAug 30, 2019
Increasingly, companies are using experiments to guide them in their decision making—but many are still missing opportunities, or are failing to implement experiments well. When it comes to the rollout of new products, one particularly effective new kind of experiment involves randomizing the introduction of new products across a set of markets. Uber used this strategy before rolling out its Express Pool service, and Airbnb did the same before rollout out a new landing-page design. In both cases, the companies gathered data that allowed them to roll out their products with confidence that they would succeed—as indeed they did. Many companies, even those not in the tech sector, can benefit from this kind of experimentation, especially if they follow a few basic guidelines.
How to use data in user research when you have no web analyticsAug 30, 2019
When we think about the data we hold on our services, the first thing that comes to mind is often website analytics. But there are other valuable and occasionally overlooked types of data that can be really useful to user researchers.
Replacing Google Analytics with GoAccessAug 29, 2019
How I replaced Google tracking with simple log-based analytics on my personal website.
7 Gaps in Google Analytics That Require Additional ToolsJun 23, 2019
Google Analytics is a powerful, free web analytics platform. However, it has gaps that are better served by other tools. I'll address those gaps and tools in this post.
$9 Marketing Stack: A Step-by-Step GuideMar 16, 2019
Update 2016-10-18: This tutorial has been updated to reflect the latest version of my stack (now with Drip!). I’ve also updated pricing info (it’s technically a $0 stack now) and screenshots. The original outdated article is archived here. “Just tell me what to do so I can stop
How to Respond to Skepticism of Testing Small Groups of UsersMar 12, 2019
“That’s just one person” and “Our real users aren’t like that” are common objections to findings from qualitative usability testing. Address these concerns proactively to ensure your research is effective.
6 Experimentation Secrets from Airbnb and UberMar 3, 2019
Last week we hosted over 130 experimenters at Optimizely HQ in San Francisco for our first live event of the year. We were lucky enough to be joined by two...
Evidence scores — the acid test of your ideasFeb 6, 2019
Finding and building the next big idea is the holy grail of any tech company. Unfortunately the statistics are against us: when subjected…
It's time to ditch Google Analytics - Fast CompanyFeb 2, 2019
Check out these 3 privacy-focused alternatives to Google Analytics.
We wasted $50K on Google Ads so you don’t have toJan 16, 2019
Connect with developers sharing the strategies and revenue numbers behind their companies and side projects.
4 Ways to Measure Marketing Campaigns You (Probably) Haven’t ConsideredJan 12, 2019
When we need to measure marketing campaigns, most of us have cracked online campaign tracking – we have a cookie
https://t.co/jaEWMYfgXr?ssr=trueJan 12, 2019
25 Ecommerce A/B Testing Ideas For Your 5 Top Store PagesNov 26, 2018
The biggest question in ecommerce A/B testing is not “how.”
Things I Learned Building an Analytics EngineOct 23, 2018
A side project that got much bigger than I thought.
How to Use Google Analytics: A Complete GuideSep 29, 2018
Read this guide for an overview of Google Analytics and how you can use all the data to your advantage to boost your SEO and digital marketing.
The Left Side of Steve Kerr’s BrainJun 8, 2018
Sammy Gelfand is the numbers guy behind the Golden State Warriors’ success. Some pretty good players help, too.
51 Examples of Growth Hacking Strategies & Techniques From The World’s MostJun 4, 2018
Learn how the world's fastest growing companies have hacked their way to success with innovative products, viral promotions and ingenious marketing campaigns. [6500 words]
Comparing A/B and Multivariate TestingJan 24, 2018
A/B tests are controlled experiments of two attributes, to measure which one was most popular with users. You can apply A/B testing to just about anything that you can measure. Multivariate testing allows you to measure multiple variables simultaneously.
Using Google Analytics with AngularDec 27, 2017
Marketing Multi-Channel Attribution model based on Sales Funnel with RDec 27, 2017
We will review another fascinating approach that marries heuristic and probabilistic methods. We will link marketing channels with a probability of a customer passing through each step of a Sales Funnel
When to Track on the Client vs. ServerDec 27, 2017
When deciding whether to track users on the server or on the client, there are many gotchas and factors to consider. Here is a short guide with pros and cons of each.
5 Tricks When A/B Testing Is Off The TableDec 11, 2017
Data Science, Machine Learning, AI & Analytics
Understanding the value of your customer: CLV 101Nov 24, 2017
At some point, almost every company faces questions like How good are the customers that we acquire? How do they
How Not To Sort By Average Rating – Evan MillerAug 31, 2017
Users are rating items on your website. How do you know what the highest-rated items are?
Game on PaperSep 24, 2009
anger
How Inuit Parents Teach Kids To Control Their AngerFeb 5, 2024
At the top of the world, the Inuit culture has developed a sophisticated way to sculpt kids' behavior without yelling or scolding. Could discipline actually be playful?
How to be angry | Psyche GuidesFeb 7, 2021
Anger is a fuel that’s dangerous when out of control. But managed well, it can energise you to identify and confront problems
Anger is temporary madness: here’s how to avoid the triggers | Aeon IdeasOct 15, 2017
Anger is temporary madness: to avoid the triggers, follow the Stoics’ advice and achieve a kind of serenity
angularjs
Why Your Angular Bundle Is BloatedJun 30, 2022
A common reason why an Angular bundle is bloated is that it uses a library like MomentJS that isn't...
Deploy Angular App to Netlify directly from Angular CLIJan 16, 2022
55K subscribers in the angularjs community. A community for the awesome MVC JS framework.
Tips & Tricks for debugging unfamiliar AngularJS codeJan 16, 2022
You've been given an Angular code base. How do you figure out where everything is? Where scope variables are coming from? What controller does what? Angular doesn't make it easy, but there are few tips and tricks that can make your life easier. Tools like Angular Batarang can help, but
Angular 13 Starter with ESLint, Material, Transloco, Jest, TestCafe, DockerJan 16, 2022
Angular 13 Starter with Material, Transloco, Jest, Compodoc, Docker Support, ESLint &...
Angular 13 NestJs NXJan 16, 2022
Starter project with Angular 13, Ngx-admin, NestJs, Nx Workspace, Jest, Cypress, ESLint &...
http://www.syntaxsuccess.com/viewarticle/comprehensive-guide-to-unit-testing-in-angularjsJan 13, 2022
AngularJS Style Guide by mgechevJan 13, 2022
Version 9 of Angular Now Available— Project Ivy has arrived!Jan 12, 2022
The 9.0.0 release of Angular is here! This is a major release that spans the entire platform, including the framework, Angular Material…
Tips and practices to optimize your AngularJS appJan 12, 2022
AngularJS is a magic framework. Using it well will drastically improve your productivity, code modularity and reusability. Using it badly…
11 Tips to Improve AngularJS Performance - Tech TLDR;Jan 12, 2022
I am new to Angular (even though I am not new to the web development), so please take everything that I am about to say with a grain of salt. That being said, I watched a lot of talks and read a lot of articles relevant to Angular performance, and this post is the summary […]
AngularJan 12, 2022
Angular is a platform for building mobile and desktop web applications. Join the community of millions of developers who build compelling user interfaces with Angular.
Build A Real World Beautiful Web APP with Angular 8— The Ultimate Guide (2019) — PART IIDec 26, 2021
🕑 The Wait Is Over ❕
晋中瓮畔电子有限公司Dec 23, 2021
johnpapa/angular-styleguide: Angular Style Guide: A starting point for Angular development teams to provide consistency through good practices.Dec 15, 2021
Angular Style Guide: A starting point for Angular development teams to provide consistency through good practices. - johnpapa/angular-styleguide
Creating Graphics Using SVG and AngularJS | DotNetCurryDec 13, 2021
Learn to create interesting biological models and graphics using SVG and AngularJS
Deploy Angular Apps to Firebase From GitHubNov 3, 2020
How to create simple CI/CD pipelines for automated deployments
Top 15 Angular Projects for BeginnersSep 22, 2020
55K subscribers in the angularjs community. A community for the awesome MVC JS framework.
Angular v/s React v/s Vue: The Complete ComparisonAug 27, 2020
"Framework is heart of every technology." Whether you are a beginner, a senior developer, a freela...
Build a real-time chat app using Socket.io and Angular.JSMar 9, 2020
55K subscribers in the angularjs community. A community for the awesome MVC JS framework.
Angular Tutorial: Routing & Navigation by ExampleFeb 19, 2020
55K subscribers in the angularjs community. A community for the awesome MVC JS framework.
Angular Unit Testing Quick Overview...Feb 19, 2020
55K subscribers in the angularjs community. A community for the awesome MVC JS framework.
Angular End To End (e2e) Testing With Cypress.ioFeb 19, 2020
55K subscribers in the angularjs community. A community for the awesome MVC JS framework.
Styling An Angular 9 Example App with Bootstrap 4 Navbar, Jumbotron, TablesFeb 19, 2020
55K subscribers in the angularjs community. A community for the awesome MVC JS framework.
11 Top Angular Developer Tools for 2020Dec 23, 2019
Top favorite Angular libraries and tools you should definitely try.
Optimize Angular bundle size in 4 stepsAug 24, 2019
The Ultimate Angular CLI Reference Guide — SitePointAug 30, 2018
Create new Angular 2 applications, scaffold components, run tests, and build for production with Jurgen Van de Moere's guide to Angular CLI
Using Google Analytics with AngularDec 27, 2017
AngularJS Programming CookbookNov 11, 2017
55K subscribers in the angularjs community. A community for the awesome MVC JS framework.
animals
We need to talk about naked mole rats - The OatmealMar 2, 2026
This is a comic about naked mole rats, aka tube goblins.
When Coyotes Threatened Livestock on Central Texas Ranches, the Solution Was to Unlock an Ancient Ability in DogsFeb 20, 2026
Killing the predators is not nearly as effective as the intimidating presence of well-trained guardians, a role some breeds have played for 5,000 years
Learning about longevity from long-lived animalsFeb 14, 2026
The secrets to extending human lifespans might lie in the animals that can already live for centuries.
In Nepal, Sacred Cattle Collide with Urban Realities – SAPIENSNov 11, 2025
Following the Life of an Abandoned Bull in Nepal
Animal origami: The physics of nature’s foldsOct 13, 2025
Insects that tuck away wings; a protist with an accordion-like neck — studying these clever creases may inspire foldable structures for drones
Why the origin of the word 'dog' remains a mysteryAug 13, 2025
Although "dog" is ubiquitous today to describe man's best friend, it remains a mystery where the word originally came from.
Unmasking the Sea Star KillerAug 9, 2025
After a decade of carnage, we finally know what’s devastating sea stars along North America’s West Coast. Does that mean scientists can save them?
Leopard Seals Sing Songs That Resemble Human Nursery Rhymes—Here’s WhyAug 3, 2025
Every night, a male leopard seal slips off the ice and sings underwater for hours. It sounds structurally like a human nursery rhyme...
How Humans Wielded Insects in Early Battlefield SkirmishesMay 22, 2025
Insects are among the oldest of weaponry
Bonobos May Combine Words In Ways Previously Thought Unique To Humans - SlashdotApr 5, 2025
A new study shows bonobos can combine vocal calls in ways that mirror human language, producing phrases with meanings beyond the sum of individual sounds. "Human language is not as unique as we thought," said Dr Melissa Berthet, the first author of the research from the University of Zurich. Another...
The Origins of AdjuvantsApr 4, 2025
More than a century after the invention of vaccines, a veterinarian stumbled across a technique to boost their efficacy in an unlikely way — by observing wounded horses.
Bonobos’ calls may be the closest thing to animal language we’ve seenApr 3, 2025
300 aspects of each call were cataloged, letting researchers estimate meaning.
The Dingo’s FateMar 27, 2025
The convoluted story of how a species of dog first arrived in Australia and subsequently took over the Outback challenges fundamental notions about what it means to be “native.”
Jennifer Dunn’s Hilarious Heartwarming Watercolor Paintings Of Sassy Animals With Pop Culture ReferencesMar 23, 2025
Jennifer Dunn, the artist behind the Instagram account Mossy Hollow, characterizes her work as "Watercolor meme art," a distinctive blend of pop culture referen
Living with Predators - NeuroLogica BlogMar 18, 2025
For much of human history, wolves and other large carnivores were considered pests. Wolves were actively exterminated on the British Isles, with the last wolf killed in 1680. It is more difficulty to deliberately wipe out a species on a continent than an island, but across Europe wolf populations were also actively hunted and kept
Inside the Fight to Save the World’s Most Endangered WolfMar 13, 2025
Once, the red wolf roamed every Southern state. Today, only seventeen remain in the wild on a swampy peninsula in Eastern North Carolina, a number on the rise thanks to the passionate team of biologists determined to help them thrive once more
Why Elephants Rarely Get Cancer - NautilusMar 12, 2025
What snakes, ferrets, and elephants are revealing about cancer resistance
The Hunt for Malaysia's Elusive Wildlife Trafficker - bellingcatFeb 12, 2025
After a decade of elusive wildlife trafficking, we traced one anonymous dealer to a house in Malaysia, all thanks to a customer complaint.
Animals as chemical factories - Works in ProgressDec 6, 2024
Horses bled for antivenom, crabs drained for endotoxin tests, and silkworms boiled for silk. Science can now replace these practices with synthetic alternatives — but we need to find ways to scale them up.
Islands of the Feral Pigs | Hakai MagazineNov 12, 2024
In Hawai‘i, people, pigs, and ecosystems only have so much room to coexist, and the pigs exist a little too much.
Iconic Bird of American Horror Stories Faces Its Own Terrifying FateOct 25, 2024
The Whip-Poor-Will’s shrill, death-proclaiming song populates the works of Stephen King and H.P. Lovecraft. But the bird itself has fallen on hard times. Could it become a ghost of Halloweens past?
How Two of the Rarest Horses on Earth Got LostOct 23, 2024
The entire world’s population of Przewalski’s horses once dwindled to a mere dozen. So how did a pair named Fiona and Shrek end up in livestock auctions in the West?
How a Crisis for Vultures Led to a Human Disaster: Half a Million DeathsJul 30, 2024
The birds were accidentally poisoned in India. New research on what happened next shows how wildlife collapse can be deadly for people.
Why a 3-Legged Lion and His Brother Swam Across a Crocodile-Filled RiverJun 15, 2024
Researchers say the nearly mile-long swim was the longest by big cats ever recorded.
How Magic Tricks Help Us Understand Animal MindsJun 12, 2024
By performing tricks for birds, monkeys and other creatures, researchers hope to learn how they perceive and think about their world
Wild elephants may have names that other elephants use to call themJun 11, 2024
Research on the rumbles of wild elephants suggest that these animals address each other with unique, name-like vocalizations. (Story aired on All Things Considered on June 10, 2024.)
7 Stories of the World’s Rarest AnimalsMay 18, 2024
And the people trying to save these endangered species.
The Chernobyl Disaster May Have Also Built a ParadiseMay 11, 2024
Some scientists think the radioactive, human-free landscape might now be a haven for plants and animals.
The Rise Of The Bee BanditsApr 5, 2024
Where once there was cattle and horse rustling, the American West is now confronting the theft of its bees.
The unique songbird that's gone foreverApr 4, 2024
Bachman’s warbler is one of 21 species declared extinct last year – but scientists are still discovering its secrets
How First Contact With Whale Civilization Could UnfoldFeb 25, 2024
If we can learn to speak their language, what should we say?
The bumblebee battle against invasive hornetsFeb 10, 2024
Experts warn it's "boom time" for invasive species like the Asian hornet. But some native bee species are learning to fight back.
In Defense of the RatFeb 3, 2024
Rats are less pestilent and more lovable than we think. Can we learn to live with them?
Why Insects Are Attracted to Light at NightJan 31, 2024
Contrary to popular lore, insects do not confuse artificial light for the moon
For the first time, research reveals crows use statistical logicSep 22, 2023
The birds can associate images with distinct reward probabilities.
Earth League International Hunts the Hunters | The New YorkerJul 19, 2023
A conservation N.G.O. infiltrates wildlife-trafficking rings to bring them down.
In the Dead of Night, a Deafening WarJun 12, 2023
The first piece in our new series on species interconnectedness traverses through the 60-million-year-old evolution of bats and moths.
The Trillion-Dollar Auction to Save the WorldJun 11, 2023
Ocean creatures soak up huge amounts of humanity’s carbon mess. Should we value them like financial assets?
Creatures That Don’t Conform – Lucy JonesMay 19, 2023
In the woods near her home, Lucy Jones discovers the magic of slime molds and becomes entangled in their fluid, nonbinary way of being.
Sleeping beauties: the evolutionary innovations that wait millions of yearsApr 19, 2023
Some organisms truck along slowly for aeons before suddenly surging into dominance – and something similar often happens with human inventions, too. But why?
The puzzle of playApr 18, 2023
The purpose of play — for children, monkeys, rats or meerkats — has proved surprisingly hard to pin down. Scientists continue to toss around ideas.
My Rancher Parents Hate Wolves. I Took Them on a Yellowstone Wolf-Watching Tour to Change Their Minds.Apr 12, 2023
Wolves are my favorite animal, but my parents see them as the enemy that kills their livestock
David Sulzer’s Wild World of MusicMar 27, 2023
What can elephants, birds, and flamenco players teach a neuroscientist-composer about music?
With Ships, Birds Find an Easier Way to Travel | Hakai MagazineMar 24, 2023
Why fly all the way across the ocean when you can chill out by the pool?
A Cognitive Revolution in Animal ResearchMar 20, 2023
Animal ‘personalities’ are forcing scientists to rethink basic research.
There’s Something Odd About the Dogs Living at ChernobylMar 4, 2023
Pets left behind when people fled the disaster in 1986 seem to have seeded a unique population.
A ‘Distinctly Human’ Trait That Might Actually Be UniversalFeb 22, 2023
Disgust is surprisingly common across nature.
I Never Understood Why Veterinarians Are at Such High Risk of Suicide. Until I Became One.Feb 7, 2023
The story of Lacey, and why I had to kill her.
Hello world!Jan 10, 2023
Catapult publishes literary fiction and artful narrative nonfiction that engages with our Perception Box, the powerful metaphor we use to define the structure and boundaries of how we see others in th
Branding With Bonobos? A Conservation Fee Might Help Save Them.Dec 11, 2022
Data suggests brands can blunt public awareness of species loss when they use at-risk animals in ads. Should they pay?
What Is a Dog Anyway?Dec 8, 2022
Defining what a dog is is really tough, but the domestication of wolves might be the feat that set modern humans on the path to dominance
What Humans Can Learn From The Language Of HoneybeesDec 8, 2022
Advanced technologies like A.I. are enabling scientists to learn that the world is full of intelligent creatures with sophisticated languages, like honeybees. What might they tell us?
The Vineyard Falcon Does Not Suffer FoolsNov 15, 2022
Master falconer Alina Blankenship and her mélange of raptors have become the protectors of some of Oregon's top vineyards.
It Takes a Lot of Elephant Brains to Solve This MysteryOct 27, 2022
By counting the facial neurons in African savanna and Asian elephants, researchers made a discovery about the animals’ trunks.
Cats Give the Laws of Physics a Biiiiig StretchOct 2, 2022
They can fall from potentially infinite heights and survive. They can pivot off of nothing to land on their feet. Scientists still can’t fully explain why.
Something Strange Happens When You Tear These Creatures ApartOct 1, 2022
Behold choanoflagellates, tiny creatures that can be one body and many bodies all at once.
My Chances of Being a Mom Were Fading. Then Two Beautiful Lambs Came into My Life.Sep 22, 2022
People say farmers aren’t supposed to get emotionally attached to livestock. Uh-huh. When fate sent our writer two newborn sheep with life-threatening birth defects, that kind of thinking was banished from the barn.
The Mysterious, Vexing, and Utterly Engrossing Search for the Origin of EelSep 20, 2022
To save endangered eels, researchers have been working for decades to figure out where they reproduce.
Purring Is a Love Language No Human Can SpeakSep 9, 2022
Some cats do it, but others can’t—and researchers still don’t fully understand why.
Killing Invasive Species Is Now a Competitive SportSep 5, 2022
In the Panhandle, where swarms of lionfish gobble up native species, a tournament offers cash prizes to divers skilled at spearing one predator after another.
The Animal TranslatorsAug 30, 2022
Scientists are using machine learning to eavesdrop on naked mole rats, fruit bats, crows and whales — and to communicate back.
Animal Magic: Why Intelligence Isn’t Just for HumansAug 13, 2022
Meet the footballing bees, optimistic pigs and alien-like octopuses that are shaking up how we think about minds.
Into the Forbidden ForestJul 29, 2022
Famed American biologist Patricia Wright explores an astonishing breadth of biodiversity in the wilderness of Madagascar
Romance, Politics, and Ecological Damage: The Saga of Sable Island’s Wild Horses | Hakai MagazineJul 28, 2022
They’ve roamed free for hundreds of years, but is that freedom harming the ecosystem they call home?
The mysterious inner lives of octopusesJul 25, 2022
Octopuses are problem-solvers, mischief-makers and notorious escape artists. They also appear to have a rich inner life – so what is it like to be an octopus?
A Mystery That Took 13,200 Years to CrackJun 30, 2022
Hidden in the tusk of a 34-year-old mastodon was a record of time and space that helped explain his violent death.
Whatever happened to the Bee Apocalypse?Jun 25, 2022
Science News, Physics, Science, Philosophy, Philosophy of Science
The human sensory experience is limited. Journey into the world that animals knowJun 25, 2022
In his new book, An Immense World, science writer Ed Yong explores the diversity of perception in the animal world — including echolocation, magnetic fields and ultraviolet vision.
Animal magic: why intelligence isn’t just for humansJun 23, 2022
Meet the footballing bees, optimistic pigs and alien-like octopuses that are shaking up how we think about minds
How Animals Perceive the WorldJun 21, 2022
Every creature lives within its own sensory bubble, but only humans have the capacity to appreciate the experiences of other species. What we’ve learned is astounding.
The Incredible Journey of Three African Wild DogsJun 21, 2022
Three sisters braved lions, crocodiles, poachers, raging rivers and other dangers on a 1,300-mile transnational effort to forge a new dynasty.
[Miscellany] The Crow Whisperer, By Lauren Markham | Harper's MagazineJun 21, 2022
What happens when we talk to animals?
Inside the experimental world of animal infrastructureJun 21, 2022
Wildlife crossings cut down on roadkill. But are they really a boon for conservation?
The Strange and Secret Ways That Animals Perceive the WorldJun 11, 2022
Nonhuman creatures have senses that we’re just beginning to fathom. What would they tell us if we could only understand them?
The True Story Of A Man-Eating Tiger's 'Vengeance'May 16, 2022
In December 1997, a tiger prowled the outskirts of a small town in Russia's Far East. In his book The Tiger, John Vaillant re-creates the events of that terrifying winter in an environment where man and tiger live side-by-side.
The Pigeon Puzzle: How Do They Figure Out Their Impossibly Long Routes Home? | The WalrusNov 29, 2021
You might consider them flying rats, but their odysseys stump scientists
Are We on the Verge of Chatting with Whales? | Hakai MagazineOct 30, 2021
An ambitious project is attempting to interpret sperm whale clicks with artificial intelligence, then talk back to them.
Who Killed Cachou the Bear? Murder Mystery in Spain Rattles ConservationistsJul 13, 2021
Conservationists saw the 6-year-old brown bear as a symbol of hope. Villagers saw him as a menace. Then he turned up dead.
The Gull Next Door | Hakai MagazineJul 10, 2021
Your obnoxious neighbor or just a misunderstood, displaced seabird?
The Elephant EthogramJun 10, 2021
Introduces the elephant ethogram: A Library of African Elephant Behavior
The First 'Google Translate' For Elephants DebutsJun 10, 2021
An anonymous reader quotes a report from Scientific American: Elephants possess an incredibly rich repertoire of communication techniques, including hundreds of calls and gestures that convey specific meanings and can change depending on the context. Different elephant populations also exhibit cultu...
The elephant vanishes: how a circus family went on the runJun 8, 2021
The long read: Dumba has spent her life performing in circuses around Europe, but in recent years animal rights activists have been campaigning to rescue her. When it looked like they might succeed, Dumba and her owners disappeared
Artificial Intelligence Develops an Ear for Birdsong - Scientific AmericanMay 7, 2021
Machine-learning algorithms can quickly process thousands of hours of natural soundscapes
Persuading the Body to Regenerate Its LimbsMay 3, 2021
Deer can regrow their antlers, and humans can replace their liver. What else might be possible?
The Story of One Whale Who Tried to Bridge the Linguistic Divide Between AnMay 2, 2021
While captive in a Navy program, a beluga whale named Noc began to mimic human speech. What was behind his attempt to talk to us?
The Challenges of Animal TranslationApr 28, 2021
Artificial intelligence may help us decode animalese. But how much will we really be able to understand?
HathiApr 23, 2021
Millions suffered through terror and upheaval in the turbulent years following the Soviet occupation of Afghanistan. One of them was a baby elephant from India — A new story from India to the world, each week on FiftyTwo.in
The guards caring for Chernobyl's abandoned dogs - BBC FutureApr 23, 2021
The descendants of pets abandoned by those fleeing the Chernobyl disaster are now striking up a curious relationship with humans charged with guarding the contaminated area.
Tardigrades: Nature's Great SurvivorsApr 22, 2021
The microscopic animals can withstand extreme conditions that would kill humans, and may one day help in the development of Covid vaccines. How do they do it?
The Great Cottonmouth-Catching Get-Rich-Quick Scheme of 1956Apr 16, 2021
As a reptile-obsessed teen, I ran away to hunt lizards in the Everglades, then hatched a plan to milk venom from deadly snakes. It went even more comically wrong than you're thinking.
Why Animals Don’t Get LostApr 4, 2021
Birds do it. Bees do it. Learning about the astounding navigational feats of wild creatures can teach us a lot about where we’re going.
The Wolf That Discovered CaliforniaMar 20, 2021
Nearly a century after the last wolf was eradicated in the state, a lone female arrived and established a pack. Not everyone is cheering
The Kenyan Maasai Who Once Hunted Lions Are Now Their SaviorsJan 28, 2021
A decade ago, scientists worried the lion could go extinct in Kenya by 2020. But today the area’s lion population is thriving thanks to an extraordinary group.
Want to Get Out Alive? Follow the Ants - Issue 95: EscapeJan 28, 2021
Ants show that emergency exits can work better when they’re obstructed.
Keeping Watch Over Seabirds at the World’s Edge | Hakai MagazineJan 10, 2021
In Alaska, one of the longest-running and most comprehensive seabird monitoring projects is equal parts tedium, adventure, truth, and beauty.
The Last Two Northern White Rhinos On Earth - The New York TimesJan 7, 2021
What will we lose when Najin and Fatu die?
The Squid Hunter | The New YorkerJan 1, 2021
The giant squid has taken on a near-mythical status for generations of sailors, explorers, and writers. How could something so big remain unseen—or be less understood than dinosaurs?
Herschel, the Very Hungry Sea Lion | Hakai MagazineDec 30, 2020
It’s dangerous to blame the decline of one species on a single predator. We humans like to do it anyway.
MurmurationMar 9, 2020
A chance encounter and shared moment with one of natures greatest and most fleeting phenomena.
Facebook: Islands And Rivers
For licensing information contact Dale Dobson - dale@iconiclinx.com
Overcoming Bias : How Bees ArgueFeb 19, 2020
The book Honeybee Democracy, published in 2010, has been sitting on my shelf for many years.
What Ecstasy Does to OctopusesDec 15, 2019
Despite their wacky brains, these intelligent animals seem to respond to the drug in a very similar way to humans.
The Hummingbird WhispererDec 9, 2019
They’re tiny and they hover, and they’re one of only three groups of birds that are vocal learners. They sing with their mouths andtheir feathers. No wonder UC Riverside researcher Chris Clark is obsessed with hummingbirds.
The Depths of the SeaDec 5, 2019
What creatures live in the depths of the sea? Manatees go about 6 meters into the depths of the water. Polar bears will dive down as far as 24 meters. A thick-billed murre, which is a bird, will search for food as deep as 210 meters.It's a long, long way down past that. Neal Agarwal, who previously brought us a scroll-able scale model of space, now offers the s...
A Very Old Man for a WolfNov 20, 2019
He was the alpha male of the first pack to live in Oregon since 1947. For years, a state biologist tracked him, collared him, counted his pups, weighed him, photographed him, and protected him. But then the animal known as OR4 broke one too many rules.
I Bought an Elephant to Find Out How to Save ThemNov 19, 2019
At a time of unprecedented mass extinctions, no animal epitomizes the global biodiversity free fall more than the Asian elephant. Paul Kvinta travels to Laos to visit a moon-shot project aimed at saving the country's 400 remaining wild behemoths, investigate the strange underworld of wildlife trafficking—and make a very unexpected purchase.
Life, in Dog YearsNov 14, 2019
My father always pampered his pets. So when he fell ill and moved in with us, it was no surprise that his corgi came to rule our home. What I didn’t expect was for Trilby to care for me after Dad was gone.
The Octopus: An Alien Among UsSep 30, 2019
Self-replicating, bacterial life first appeared on Earth about 4 billion years ago. For most of Earth’s history, life remained at the single-celled level, and nothing like a nervous system existed …
LSep 21, 2019
StarshiftSep 16, 2019
In an era of climate change, everything feels strange. Even the places we call home.
Feral Horses, Fierce Controversy - Features - Jason G. Goldman - Alta OnlinAug 15, 2019
Wild mustang populations are out of control, competing with cattle and native wildlife for resources. If the federal government doesn’t rein them in, ranchers may take matters into their own hands.
How to Save a LoggerheadAug 5, 2019
Go behind the scenes at the South Carolina Aquarium's Sea Turtle Care Center during a nearly yearlong journey to get a massive injured loggerhead back home
How a 6,000-Year-Old Dog Cancer Spread Around the WorldAug 4, 2019
A massive collection of dog tumor samples is revealing the secrets of a contagious, parasite-like cancer that could help explain human cancers too.
The weird magic of eiderdownJul 20, 2019
The long read: In Iceland, the harvesting of these precious feathers has created a peculiar bond between human and duck. What can this unique relationship teach us?
Is it possible to disrupt a cow?Jul 9, 2019
Technology can displace the cow and save the climate. But we will need to think beyond the bun
She Hunted History’s Worst Arms Dealers. Now She’s Taking on Rhino PoachersMay 2, 2019
Kathi Lynn Austin is on a global chase to stop the flow of guns threatening to wipe the rhinoceros off the face of the Earth.
Where Grizzly Bears and Hobby Farmers Come Face to FaceApr 18, 2019
Human hunters moved north into what would become Montana on the heels of the receding ice, coming into the Mission Valley when the land was yet raw and studded with erratics. Only the first scrim o…
Dog rescued after it's found swimming 135 MILES out at seaApr 16, 2019
The female brown Aspin was found drifting in the Gulf of Thailand on Friday. It is unknown whether the dog swam the astonishing distance from the shore, or jumped off a boat at sea.
The dogs that protect little penguinsApr 9, 2019
When foxes nearly wiped out a colony of little penguins, a sheepdog saved the day.
Every Living Creature – Truly*Adventurous – MediumApr 2, 2019
When a massive Caribbean volcano erupts, the island’s residents flee, leaving their beloved animals behind. As pets and livestock are…
The Story of Dyngo, a War Dog Brought Home From CombatJan 7, 2019
I brought a seasoned veteran of the conflict in Afghanistan into my home—and then things got wild
An Elephant Crackup? - The New York TimesDec 21, 2018
Attacks by elephants on villages, people and other animals are on the rise. Some researchers are pointing to a species-wide trauma and the fraying of the fabric of pachyderm society.
In praise of parasitesDec 16, 2018
They worm into snails and infect the brains of fish. They’ve also found their way into Kevin Lafferty’s heart. He sees them as beautiful examples of sophisticated evolution, and as keys to ecosystem balance.
https://www.rbth.com/longreads/jackals/Dec 10, 2018
Sticky science: Evolution of spiderwebsNov 2, 2018
The eight-legged weavers have been hunting insects for almost 400 million years, flaunting their long history in a rich array of architectures. Scientists are still figuring out the taxonomy of them all.
The elephant as a personOct 24, 2018
Elephants might have the necessary capacities for personhood – we just need to help them acquire the cognitive scaffolding
For Want of a NailOct 20, 2018
Without a good shoeing, a horse can indeed be lost. Enter the farrier.
Meet the Undercover Crime Unit Battling Miami's Black Market of BirdsOct 7, 2018
Multimillion-dollar sales of songbirds heap pressure on species already in decline. We go inside the covert investigation to capture traffickers.
The Brilliant, Playful, Bloodthirsty RavenSep 21, 2018
A new book from Christopher Skaife is a beguiling, fascinating, and highly amusing account of the strangely magical birds.
The mind of an anthillSep 15, 2018
Can we use the tools of psychology to understand how colonies of social insects make decisions?
There Are Whales Alive Today Who Were Born Before Moby Dick Was WrittenSep 6, 2018
Some of the bowhead whales in the icy waters off of Alaska today are over 200 years old
How to be human: the man who was raised by wolvesAug 29, 2018
The long read: Abandoned as a child, Marcos Rodríguez Pantoja survived alone in the wild for 15 years. But living with people proved to be even more difficult
In the Pit With the Fighting RoostersJul 15, 2018
A massive raid on a long-running cockfighting ring in Arkansas has raised complex questions about ICE, immigration, and the future of a centuries-old tradition.
Feature: Who’s Afraid of the Big Bad Wolf Scientist?Jul 6, 2018
Rob Wielgus was one of America’s pre-eminent experts on large carnivores. Then he ran afoul of the enemies of the wolf.
Can Crows Make Mental Pictures of Tools? (Published 2018)Jul 2, 2018
New Caledonian crows were trained to seek rewards by tearing paper of a certain size, demonstrating what researchers say is quite advanced toolmaking.
In France, Our Dog Has His Day (Published 2018)Mar 1, 2018
Hotels, shops, bars, restaurants — dogs are welcomed warmly just about everywhere. For Pip (a.k.a. Pierre), the prancing was never better.
The Noose Beneath the WavesJan 28, 2018
Fishing gear can pose a deadly threat to whales—and to those who try to save them.
How many senses do humans have?Dec 1, 2017
The obvious answer is five: vision, hearing, touch, smell, and taste. But the reality may not be so simple.
The art of flying (short version)Nov 24, 2017
One of the most wondrous markers of the end of the day is a murmuration of starlings
The Veterinarians Preventing the Next PandemicAug 24, 2015
Most new diseases have their origins in animals. So why aren’t we paying more attention to their health?
Over the past four centuries quadrillions of ants have created a strange and turbulent global societOct 24, 2012
Over the past four centuries quadrillions of ants have created a strange and turbulent global society that shadows our own
The Portuguese shepherds who love wolvesAug 24, 2009
Whilst Europe grapples with how to deal with growing wolf populations, this mountainous region of Portugal has coexisted with the predators for centuries.
The 'mind bombs' that changed the whaling industryOct 24, 2003
In the 1970s, a small group of Greenpeace activists had a unique idea for how they could put an end to commercial whaling.
animation
Smashing Animations Part 7: Recreating Toon Text With CSS And SVG — Smashing MagazineDec 17, 2025
In this article, pioneering author and web designer [Andy Clarke](https://stuffandnonsense.co.uk) shows his techniques for creating [Toon Text titles](https://stuffandnonsense.co.uk/toon-text/index.html) using modern CSS and SVG.
Disney lost Roger RabbitNov 24, 2025
Smashing Animations Part 5: Building Adaptive SVGs With , , And CSS Media Queries — Smashing MagazineOct 6, 2025
SVGs, they scale, yes, but how else can you make them adapt even better to several screen sizes? Web design pioneer Andy Clarke explains how he builds what he calls “adaptive SVGs” using ``, ``, and CSS Media Queries.
A Brief History of the GIF, From Early Internet Innovation to Ubiquitous ReApr 6, 2024
How an image format changed the way we communicate
Midjourney now has the feature that everyone wantsMar 15, 2024
Keeping characters looking the same across different scenes and styles has always been tricky. But now, with the new Midjourney
I keep making things out of checkboxesFeb 29, 2024
Something happened earlier this year where I got on a run making checkbox animations and just couldn’t stop.
10 AI Deepfake Generators for Photo and Video in 2023Sep 17, 2023
Video and audio recordings of people saying or doing things they never said or did can be created using AI deepfake generators and software tools that use artificial intelligence to make convincing fakes. A neural network is trained using a massive collection of authentic media featuring the target individual to accomplish this. The web is trained to recognize individuals and imitate their appearance, speech, and behavior. There is a wide range of potential good and bad uses for AI deepfake generators. You can use them to make comedic videos or instructional materials. Here are some AI deepfake generators for photos
Animating the Grim Reaper and a Canine Companion, in “Death and the Lady”Sep 12, 2023
Geoff Bailey and Lucy York Struever used C.G.I. to create a world that’s layered and cozy, even when Death comes knocking.
Drude Model of Free Electron Conduction in a MetalSep 8, 2023
Browse MakeaGif's great section of animated GIFs, or make your very own. Upload, customize and create the best GIFs with our free GIF animator! See it. GIF it. Share it.
Tansforms, Transitions and Animations : Elevating User Experiences with CSSAug 6, 2023
In the ever-evolving landscape of web development, creating captivating user experiences is a...
A Beginner's Guide: Understanding CSS AnimationAug 5, 2023
Introduction Cascading Style Sheet (CSS) is a style sheet language that's used to design,...
Best CSS Animation on internetAug 3, 2023
1. Animated Background with SVG in CSS Output Source Code 2. CSS...
How to Create a Beautiful Particle Animation with HTML CanvasJul 24, 2023
Live Demo / Download -- In this tutorial, we will utilize the power of HTML canvas to...
How the Astonishing Sushi Scene in Wes Anderson’s Isle of Dogs Was AnimatedJun 30, 2023
Since the moviegoing public first started hearing it twenty years ago, Wes Anderson's name has been a byword for cinematic meticulousness.
How to draw any regular shape with just one JavaScript function | MDN BlogMay 30, 2023
Learn how to use JavaScript to draw any regular shape to a HTML canvas with a single function, and how to modify it to draw multiple shapes.
LerpApr 8, 2023
Lerp is the nickname for Linear Interpolation between two points. It's a fairly simple effect to implement but can really improve the look of your animations if you're moving an object from a point A to point B.
Web Animations APIMar 7, 2023
Web Animations API is a JavaScript API that provides a standardized approach to creating and...
Top 10 CSS Animation LibrariesFeb 23, 2023
For the longest time, developers were limited to Flash players and gifs when they wanted to display...
Putting Gears In Motion: Animating Cars With HTML And SVGFeb 17, 2023
SVG `` provides a way to define how an element moves along a motion path. In this article, Paul Scanlon shares an idea of how to use it by animating race cars in an infinite loop as easy as one-two-three!
Easy SVG Customization And Animation: A Practical GuideFeb 17, 2023
Developers often feel discouraged from editing SVG markup and experimenting with SVG animations, thinking it’s a significant time investment or they need to use a complex animation library to do so. In this article, Adrian showcases his favorite tricks, which make the process streamlined and fun.
SVG — Smashing MagazineFeb 17, 2023
Smashing Magazine — front-end, UX and design for front-end engineers and designers
30 Best Animation Software for Beginners in 2024 [Free & Paid]Feb 11, 2023
Some of the best animation software are Visme, Adobe Animate, Blender, Pencil2D, Animaker and Biteable. Find out how these and other tools compare.
kauffecup/react-bubble-chart: A React+D3 animated bubble chartFeb 11, 2023
A React+D3 animated bubble chart.
Animation Techniques with anime.js: Timing, Easing, and KeyframesJan 1, 2023
Welcome to the second tutorial in this series on animating with anime.js! In the previous post,...
A Guide to CSS Animation — Part 1 | by Jhey Tompkins | codeburstOct 28, 2022
Let’s get things moving! 🎞
Life in Motion: A Guide to Animating Mobile Data VisualizationsJul 6, 2022
Animation can help people make sense of all the data at their fingertips.
The ultimate guide to proper use of animation in UXJan 29, 2022
Nowadays it’s hard to impress or even surprise with an interface animation. It shows interactions between screens, explains how to use the…
5 Ways to Boost Engagement With AnimationJan 17, 2022
Used correctly, it can capture audience attention, make your website more engaging, and even improve your chances of delivering conversions for your clients.Unfortunately, like many things in the web design world, it’s also easy to get too carried away with animation. As professional designers and…
Animation for Attention and ComprehensionJan 17, 2022
Motion is a powerful tool to attract users’ attention. When designing an animation consider its goal, its frequency of occurrence, and its mechanics.
10 Best JavaScript Animation Libraries to Use in 2021Jan 16, 2022
This collection of the best JavaScript animation libraries will help you get a headstart in animating any element on your website.
This Ain’t Disney: A practical guide to CSS transitions and animationsJan 12, 2022
Oh, animation… we want to get it right so badly, don’t we? I mean, does anybody really enjoys a stiff, snappy UI? Can anyone admit they’re…
15 awesome CSS animation libraries you need to know.Jan 11, 2022
Transitions from one CSS style configuration to another can be animated using CSS animations. A style...
75 Web Animation Tools You Have to TryDec 13, 2021
Its popularity fluctuates, but it’s always there somewhere, as an essential component in any web site.From tiny, barely visible, loading spinners, to whole page transitions like a movie experience, animation reaches into every area of our designs.For designers looking to incorporate animation,…
5 Useful and Interesting Web Animation LibrariesNov 28, 2021
Introduction Libraries help us to code faster through their predefined classes for...
30 ? Awesome CSS Animation ResourcesMay 24, 2021
Here is the list of awesome CSS animation resources that will help you to animate components quickly...
CSS transitions and hover animations, an interactive guideFeb 26, 2021
This comprehensive guide shows how to use CSS transitions! A back-to-basics look at the fundamental building blocks we need to create microinteractions and other animations.
The 100 Most Influential Sequences in Animation HistoryOct 20, 2020
From Bugs Bunny to Spike Spiegel to Miles Morales, retracing 128 years of an art form that continues to draw us all in.
blender.org - Home of the Blender project - Free and Open 3D Creation SoftwareMar 31, 2020
The Freedom to Create
Data animations with Python and MoviePy - __del__( self )Feb 19, 2020
Python has some great data visualization librairies, but few can render GIFs or video animations. This post shows how to use MoviePy as a generic …
15 Tools for AnimationJun 13, 2018
If you’re interested in creating content to promote your product or service, think about making a cartoon. Producing animation has several advantages over
anki
Anki is already deadSep 1, 2025
what 98,000 flashcard reviews and japanese taught me about learning with llms
Anki - powerful, intelligent flashcardsFeb 29, 2024
I Learned to Speak Four Languages in a Few Years: Here's HowJun 22, 2022
Lifehacker reader Gabriel Wyner was tasked with learning four languages in the past few years for his career as an opera singer, and in the process la
anomalies-outliers
Perform outlier detection more effectively using subsets of featuresNov 24, 2024
Identify relevant subspaces: subsets of features that allow you to most effectively perform outlier detection on tabular data
Counts Outlier Detector: Interpretable Outlier DetectionJun 20, 2024
An interpretable outlier detector based on multi-dimensional histograms.
The Basics of Anomaly DetectionJul 10, 2023
Basics of anomaly detection, its use-cases, and an implementation of simple yet powerful algorithm in Python
How to Perform Multivariate Outlier Detection in Python PyOD For Machine LeFeb 9, 2023
Discover how to effectively detect multivariate outliers in machine learning with PyOD in Python. Learn to convert anomaly scores to probability confidence, choose the best outlier classifier and determine the right probability threshold for improved model accuracy.
An Effective Approach for Image Anomaly DetectionOct 28, 2022
Utilize Anomalib from Intel OpenVinoToolkit to benchmark, develop, and deploy deep learning based image anomaly detection
5 Essential Qualities of Anomaly Detection SystemsOct 27, 2022
Ensuring your business is proactive and risk-proof.
How to Use UMAP For Much Faster And Effective Outlier DetectionSep 14, 2022
Let’s catch those high-dimensional outliers
4 Machine learning techniques for outlier detection in PythonMar 28, 2021
Machine learning-based outlier detection
UPDATED: Using R and H2O to identify product anomalies during the manufactuMar 26, 2021
Note. This is an update to article: Using R and H2O to identify product anomalies during the manufacturing process.It has some updates but also code optimization from Yana Kane-Esrig( https://www.linkedin.com/in/ykaneesrig/ ), as sh...
Two outlier detection techniques you should know in 2021Mar 21, 2021
Elliptic Envelope and IQR-based detection
Computer Vision | Papers With CodeDec 21, 2020
**Anomaly Detection** is a binary classification identifying unusual or unexpected patterns in a dataset, which deviate significantly from the majority of the data. The goal of anomaly detection is to identify such anomalies, which could represent errors, fraud, or other types of unusual events, and flag them for further investigation. [Image source]: [GAN-based Anomaly Detection in Imbalance Problems](https://paperswithcode.com/paper/gan-based-anomaly-detection-in-imbalance)
Four Techniques for Outlier DetectionDec 8, 2018
There are many techniques to detect and optionally remove outliers from a dataset. In this blog post, we show an implementation in KNIME Analytics Platform of four of the most frequently used - traditional and novel - techniques for outlier detection.
Numenta Anomaly Benchmark: A Benchmark for Streaming Anomaly DetectionDec 27, 2017
Numenta created the open source Numenta Anomaly Benchmark (NAB) to test and their own anomaly detection algorithms. Learn more about how Numenta and Domino worked together to develop the NAB.
anonymity
Table for One: Why McDonald’s Solo Seats Are Viral in ChinaJan 16, 2026
The design taps into a growing demand for low-pressure public spaces, as digital life reshapes how people interact.
How to Disappear: Secrets of the World’s Greatest Privacy ExpertsDec 27, 2025
Inside the world of extreme-privacy consultants, who, for the right fee, will make you and your personal information very hard to find
k-anonymity, the parent of all privacy definitions - Ted is writing thingsNov 17, 2025
How a privacy researcher proved a politician wrong, and how she created the first ever definition of anonymity in the process.
Privacy-Safe Attribution Avoids User TrackingAug 18, 2025
A new attribution approach uses large sets of anonymized data to infer which channels and campaigns led to conversions.
Vollebak’s Electromagnetic Shielding Jacket creates a NASA-grade Faraday cage around you and your gadgetsJul 31, 2025
"But why?!" is a question I often find myself asking Vollebak when they create some of their oddly fascinating garments. A glow-in-the-dark puffer, a jacket that can survive mars, another garment literally made from woven metal, Vollebak tends to push the limits of what materials can be incorporated meaningfully into fashion. Their latest apparel? A
Why thousands of young Chinese people use a pink dinosaur as their aliasJan 18, 2024
Users adopt the alias “momo” as a way to speak more freely, evade harassment, and protect personal privacy on Douban and Xiaohongshu.
Give Your Money. Give Your Time. Don’t Tell Anyone.Jan 6, 2022
You can find deep, lasting happiness in a good deed that no one knows you did.
Larry David and the Game Theory of Anonymous DonationsMar 14, 2021
What your generosity signals about you.
How to Sell Embarrassing ProductsFeb 2, 2018
Consumers are more likely to buy embarrassing products when their embarrassment is mitigated by more-anonymous packaging. Specifically, consumers found products packaged in boxes with cool colors, small lettering, and a picture of the product to be more anonymous (and appealing) than products packaged in pumps or tubes with warm colors, medium or large lettering, and no picture. The findings show that the more anonymous a product looks, the less embarrassing a consumer finds it, and the more likely they are to purchase it.
ansible
Ansible Cron Module: Manage Cron Jobs on Remote SystemsNov 26, 2024
The cron module in Ansible lets you run and manage the cron jobs on remote systems.
Ansible Fetch Module: Get Files from Remote NodesOct 24, 2024
The fetch module allows you to get files from remote nodes. Here are some practical examples of using this module.
How to Use Ansible BlocksJul 15, 2024
Make your Playbooks more readable and maintainable using Blocks feature in Ansible.
Essential Tools for a Successful DevOps EngineerMar 20, 2023
Introduction: The software development process has been transformed by the DevOps...
Getting Started with Ansible: An Introduction to Automation, ConfigurationMar 18, 2023
🔐 Introduction to Ansible 🔗Related content You can find repo...
https://www.thecloud.coach/ansible-crash-courseDec 11, 2021
Homepage | Ansible CollaborativeDec 11, 2021
DevOps 101 : Introduction to AnsibleAug 16, 2021
Ansible What is Ansible? Ansible is an open-source IT Configuration...
Terraform vs Ansible: What's the difference and which one you should use?Dec 10, 2020
Preparing your Infrastructure as Code solution? Ansible and Terraform are two of the most popular choices. But what's the difference?
Getting started with Ansible | XLAB Steampunk blogNov 22, 2020
This post was originally published on November 12, 2020, but the content has been updated according to the recent Ansible changes. In our previous blog post , we looked at what configuration management tools bring to the table. And in this post, we will take a closer look at Ansible, our configuration management tool of choice. So if you want to learn what Ansible is, what it does, and how it works, this is the post for you.
EmailThis/ansible-rails: Ruby on Rails deployment using Ansible - with LetsJun 24, 2020
Ruby on Rails deployment using Ansible - with Lets Encrypt, Sidekiq, PostgreSQL, nginx & puma - EmailThis/ansible-rails
geerlingguy/ansible-for-devops: Ansible examples from Ansible for DevOps.Mar 31, 2020
Ansible for DevOps examples.
antennas
How to make a Smith chartOct 23, 2025
Deriving the basic mathematical properties of the Smith chart from electrical engineering
Antenna Innovations Come in Sizes Ranging from a Stamp to a School BusSep 4, 2025
In this roundup, we spotlight small, medium, and large antenna announcements fortifying communication across industries, from drones to satellites.
A shape-changing antenna for more versatile sensing and communicationAug 18, 2025
MIT researchers developed a method to design and fabricate reconfigurable antennas with adjustable frequency ranges. Users can adjust the frequency by squeezing, bending, or stretching the material, making the antenna more versatile for sensing and communication than traditional static antennas.
Powering Planes With Microwaves Is Not the Craziest IdeaMay 21, 2025
If you don’t mind massive ground antennas and fried birds, that is
The Promise of Terahertz TechnologyDec 12, 2024
THz radiations finds unique applications in astronomy, medicine and communications, but not without its own distinct challenges.
Exploring State-of-the-Art Commercial Automotive Radar SolutionsJul 10, 2024
Digital radar, satellite configurations, distributed apertures and all range radar.
How Automotive Radar uses Chirp Signals for SensingJul 10, 2024
Understanding the engineering behind how your car can see, adapt and save your life.
How Automotive Radar Measures the Velocity of ObjectsJul 10, 2024
How to design the perfect chirp signal for distance and velocity measurement.
Radios, how do they work?Jul 8, 2024
A brief introduction to antennas, superheterodyne receivers, and signal modulation schemes.
Understanding Magnetic Field Energy and Hysteresis Loss in Magnetic CoresJun 27, 2024
In this article, we use the concept of magnetic field energy to explore the relationship between a core's hysteresis loss and its B-H curve.
A transport protocol’s view of StarlinkMay 23, 2024
How TCP interacts with the characteristics of the Starlink service.
Lightweight woven antenna could replace field-deployed dishesJan 27, 2024
Ordinarily, in order to establish communications at locations such as disaster sites, rescuers have to transport and set up relatively bulky, costly satellite dishes. Soon, however, a simple tubular antenna made of woven strips of material may get the job done.
Simulation 104: Electromagnetic Mapping with Vector FieldsAug 22, 2023
Modeling electric and magnetic fields
A Brief Introduction to Slot AntennasApr 19, 2023
Learn about slot antennas, namely their history, characteristics, and electromagnetic (EM) behavior for low-voltage, small-form-factor electronic devices.
ResultsMar 15, 2023
Pre 1Mar 15, 2023
Share Files With a Fist Bump: Wi-R Confines Signal to a User’s BodyFeb 15, 2023
The latest wireless protocol ditches radiation and focuses on a new medium: your body.
Mismatch Loss and Mismatch Uncertainty in RF SystemsFeb 10, 2023
Learn more about RF wave reflection parameters, namely mismatch loss and mismatch uncertainty.
RF Design Basics: VSWR, Return Loss, and Mismatch LossFeb 5, 2023
Learn about voltage standing wave ratio (VSWR), return loss, and mismatch loss, which helps characterize the wave reflections in a radio frequency (RF) design.
Researchers Tap Origami as Basis for Reconfigurable Antenna DesignFeb 2, 2023
Aimed at improving sensing and imaging systems, Princeton University researchers have developed a reconfigurable antenna based on origami.
Microstrip Antenna DesignJul 30, 2022
This e-book explores microstrip antenna design, highlighting the single-element rectangular microstrip antenna and antenna arrays constructed from single microstrip elements.
An Introduction to Antenna Basics - Technical ArticlesJul 30, 2022
Antennas are used to transmit and receive electromagnetic energy. This article covers basic antenna theory.
Newly funded Cohere eyes huge prize in beamforming battleDec 13, 2021
If the company's technology lives up to its promise in a commercial setting, Cohere will be hard to resist or ignore.
Understanding Butterworth Filter Poles and Zeros - Technical ArticlesDec 11, 2021
This article explores the Butterworth low-pass filter, also known as the maximally flat filter, from the perspective of its pole-zero diagram.
Antenna Basics: Radiation Patterns, Permittivity, Directivity, and Gain - Technical ArticlesDec 11, 2021
Antennas allow information to be transferred to distant locations. In the second part of this Antenna Basics series, you will learn more about the physics of how antennas work.
A Beam-Steering Antenna for 5G Mobile PhonesDec 8, 2021
For the first time, a beam-steering antenna is integrated into the metal casing of a mobile phone
Issues In Designing 5G Beamforming AntennasDec 3, 2021
5G Beamforming Antennas Create Design, Test Problems Assuring quality under changing conditions with shifting standards and use models is a major challenge.
Antenna Design Grows UpDec 3, 2021
Antenna Design Grows Up Modern electronics relies heavily on antennas, but companies still make mistakes. That's about to change.
How to Use a Nyquist Plot for AC Analysis - Technical ArticlesDec 1, 2021
This article introduces the Nyquist plot and explains how to interpret this alternative method of visually evaluating a system’s frequency response.
The Antenna Theory WebsiteDec 1, 2021
An intuitive tutorial of antennas and antenna theory. This website is designed to present a comprehensive overview of antennas, from design, to measurement and theory. Unnecessarily complicated math is avoided throughout.
The Role of Millimeter Waves in Ever-Expanding Wireless Applications - NewsDec 1, 2021
Millimeter wave frequencies have the potential to provide a solution to the growing demand for bandwidth and high-speed communication needs.
Building Your Own Faraday CageJun 27, 2021
A Faraday cage is an enclosed space with an outer layer that conducts electricity. The physical shape of the Faraday cage does not matter: it can be spherical, cylindrical, or a box. Either the cage itself can be made of a conductive material, or the cage can be built of a non-conductive material such as wood and then
MIMO radar antenna arraysMay 18, 2021
Short introduction to multiple input multiple output (MIMO) radar antenna arrays
Optical Antennas Promise ‘Unlimited’ Data CapacityMar 5, 2021
The breakthrough is taking full advantage of the orbital angular momentum properties of a coherent light source, thus enabling multiplexing.
Manhole Covers Hide AntennasJan 10, 2019
5G is gearing up to be the most extensive implementation of mesh networking ever, and that could mean antennas will not need to broadcast for miles, just far enough to reach some devices. That unsi…
Shape-shifting origami could lead to better radio antennasDec 21, 2018
A special kind of origami folding called Miura Ori could help make antennas that can block out certain radio frequencies or next-gen cloaking tech.
Glass Antenna Turns Windows Into 5G Base StationsSep 24, 2018
Compact, inconspicuous antennas could increase cell coverage transparently
Topology Makes On-Chip Terahertz Beamforming a RealityAug 24, 2015
The achievement could open a new swath of spectrum for wireless networks
Chip that steers terahertz beams sets stage for ultrafast internet of the futureOct 24, 2001
Breakthrough technology could help usher in 6G speed internet. Here's how it works and what it could mean for businesses.
How Origami-Inspired Phased Arrays are Reshaping the Future of AntennasSep 24, 2001
Folding antennas into different shapes to create near infinite radiation patterns.
anthropology
How humans became upright: key changes to our pelvis foundAug 29, 2025
Genetic and anatomical data reveal how the human pelvis acquired its unique shape, enabling our ancestors to walk on two legs.
What the Anthropology of Smell Reveals About HumanityJul 5, 2022
Millions of people have lost their sense of smell to COVID-19. Anthropologists are investigating the significance of this underrated sense.
Anthropologists and the business of sense-making at workJun 7, 2021
The long read: For decades, anthropologists have been telling us that it’s often the informal, unplanned interactions and rituals that matter most in any work environment. So how much are we missing by giving them up?
antitrust
Netflix and the Hollywood End GameDec 15, 2025
Netflix is driving the Hollywood end game, likely confident it can increase the value of IP, and fend off YouTube.
How to spot a monopoly - Works in Progress MagazineDec 4, 2025
Competition makes capitalism work. A new method for measuring it may be the holy grail of economic regulation.
The Perils of Algorithmic PricingNov 4, 2025
Hotels and landlords can mitigate legal risks by choosing decentralized revenue management systems that use public data.
AI-Driven Antitrust and Competition Law: Algorithmic Collusion, Self-Learning Pricing Tools, and Legal Challenges in the US and EUAug 10, 2025
AI algorithmic collusion challenges traditional antitrust law. Legal AI frameworks adapt to prosecute self-learning pricing tools
Shorting Your Rivals: A Radical Antitrust Remedy - Marginal REVOLUTIONJul 21, 2025
Conventional antitrust enforcement tries to prevent harmful mergers by blocking them but empirical evidence shows that rival stock prices often rise when a merger is blocked—suggesting that many blocked mergers would have increased competition. In other words, we may be stopping the wrong mergers. In a clever proposal, Ayres, Hemphill, and Wickelgren (2024) argue that […]
How Google Defended Itself in the Ad Tech Antitrust TrialOct 19, 2024
The tech giant, which wrapped up its arguments in the federal monopoly trial, simply says it has the best product.
DOJ Mulls Hitting Live Nation With a Terrible Swift SwordMay 21, 2024
If the Justice Department sues Live Nation and Ticketmaster, it will be armed with antitrust arguments. But the defendants will have defenses ready.
Amazon’s Antitrust Antagonist Has a Breakthrough IdeaSep 8, 2018
With a single scholarly article, Lina Khan, 29, has reframed decades of monopoly law.
How Google got away with charging publishers more than anyone elseSep 24, 2016
The DOJ wants to show Google can do this because it has a monopoly.
Judge rules that Google ‘is a monopolist’ in US antitrust caseAug 24, 2005
The DOJ and Google faced off in a 10-week trial.
apis
GraphQL: the enterprise honeymoon is overDec 15, 2025
A production-tested take on GraphQL in enterprise systems, why the honeymoon phase fades, and when its complexity outweighs the benefits.
How to respect OpenAI's rate limits in RailsApr 10, 2025
As it turns out, OpenAI’s rate limits are a little more complicated than other APIs.
REST Still Outshines GraphQL for Many API Use CasesOct 16, 2024
Even now in 2024, there are still fundamental issues with GraphQL.
Top 9 API Security Vulnerabilities: How to Defend Against ThemJun 11, 2024
Understand the most common API vulnerabilities, how cybercriminals are targeting them and what you can do to prevent them.
Visualizing algorithms for rate limitingMay 21, 2024
Smudge.ai is a Chrome extension that gives you ChatGPT-powered shortcuts in your right-click menu.
Spotify API: How To Create a Data Set of SongsMar 19, 2024
A Fun Tutorial using Python, JSON, and Spotify API! You might find it more comfortable...
brunoMar 12, 2024
Cracking Open the OpenAI (Python) APISep 25, 2023
A complete beginner-friendly introduction with example code
Web Animations APIMar 7, 2023
Web Animations API is a JavaScript API that provides a standardized approach to creating and...
10 Web APIs for your projectsMar 2, 2023
Here are top 10 Web APIs for your web projects. 1) Fake Store API: The Fake Store API is...
Using the HTML Geolocation API to display a users location on a mapFeb 22, 2023
In this tutorial we’ll be using the HTML Geolocation API to display the current location of a user on...
7 JavaScript Web APIs to build Futuristic Websites you didn't know?Feb 22, 2023
With the rapidly changing technologies, developers are being provided with incredible new tools and...
Building a Threat Intelligence Feed using the Twitter API and a bit of codeMay 29, 2022
The InfoSec community is highly active on Twitter. The platform is, among other things, used is for sharing malware and phishing URLs…
https://www.programmableweb.com/news/221-marketing-apis-sendgrid-mailchimp-and-eventbrite/2012/07/31May 28, 2022
Keep On Connecting: 5 Connectors That Changed The World - OutfunnelMay 11, 2021
Connecting things physically, mechanically or digitally can have profound effects. Here’s a list of 5 connectors that changed the world.
NoCodeAPI – The easiest way to connect APIs without codeFeb 13, 2021
NoCode API is a great place to experiment with APIs and interact with them, without the need to setup servers and infrastructures. It gets the work done, reliable.
Bizcoder - Optimizing for the Speed of LightDec 29, 2019
You might be wondering what on earth I am talking about but this is something I see API developers getting confused about regularly.
Open Source Alternative for ZapierDec 23, 2019
n8n is a free and source-available workflow automation tool
10 Top Sports APIsMar 31, 2019
Mouser Electronics | Mouser Search API Access RequestMar 11, 2019
Mouser has solutions to increase productivity, reduce manual data entry and optimize time generating POs with our Electronic Order Automation Services.
http://developers.arrow.com/api/Mar 11, 2019
API Solutions | DigiKeyMar 11, 2019
DigiKey offers a complete set of APIs to share information and automate the ordering process.
Strategy & Implementation of Third-Party Connections in ProductsJun 5, 2018
Building a product that connects to multiple third-party products is a common approach — an annotated twitter thread exploring strategic…
OverAPI.com | Collecting all the cheat sheetsNov 15, 2017
OverAPI.com is a site collecting all the cheatsheets,all!
apologies
Bumble, Apple, and the art of the advertising apologyMay 20, 2024
The five types of advertising apologies, explained.
How to Apologize to a Customer When Something Goes WrongMay 7, 2023
Businesses are bound to make mistakes and disappoint their customers. But how you build your apology message and your careful attention to executing it appropriately can make the difference between losing those customers or increasing their loyalty. When delivered well, your apology message can improve the customer relationship to the point where it is stronger than if the mistake had never happened — a phenomenon known as the service recovery paradox. In this article, the author outlines five steps for writing an effective apology message, and explains why it’s important to share the apology process internally and with external stakeholders. It not only shows vulnerability from the organization, but also shows other customers that the company can be relied upon in times of distress.
How to Respond to a Bullshit ApologyJul 18, 2022
In the span of five days, Saturday Night Live hired and fired comedian Shane Gillis after his use of sexist, homophobic, racist language— including
How to judge a public apology in the age of cancel cultureJun 21, 2021
Three questions to ask during and after a heated controversy
How to Get Someone to ApologizeJan 8, 2021
Advice from therapists, religious leaders and people who suffered terrible wrongs on ways to find repentance and resolution.
These Apology Critics Want to Teach You How to Say SorrySep 25, 2018
No more excuses for bad apologies.
apriori
How to Find Frequent Itemsets with the Apriori Algorithm in PythonNov 7, 2025
Learn how to use Python's Apriori algorithm to find frequent itemsets in transaction data automatically.
Data Mining: Market Basket Analysis with Apriori AlgorithmApr 30, 2022
Uncovering the secret behind why breads are always conveniently placed beside butter in groceries
Apriori Algorithm for Association Rule Learning — How To Find Clear Links BJul 13, 2021
Explanation and examples of frequent itemset mining and association rule learning over relational databases in Python
Affinity Analysis (Market Basket Analysis)Feb 20, 2021
Have you ever wondered how often do you buy certain items together? Why do you buy some items together? How likely do you purchase an item…
Market Basket Analysis: A TutorialFeb 19, 2020
This article is about Market Basket Analysis & the Apriori algorithm that works behind it.
arbitrage
Mistakes from my Failed Startup in Scalping Concert TicketsNov 10, 2024
And why you will never get Taylor Swift tickets at face value
Why Are Border Smugglers Trafficking Bologna?Aug 17, 2022
The tons of contraband lunch meat seized at the U.S.-Mexico border tell us something about the market value of nostalgia.
Sneakerheads have turned Jordans and Yeezys into an asset classFeb 27, 2021
When the pandemic presented a buy-low opportunity, one college dropout hit the road and filled his truck with $200,000 worth of kicks.
archeology
3 Famous Archeological Finds That Were Actually Hoaxes | TheCollectorJul 25, 2025
The history of archeological discovery is riddled with forgeries. Discover three famous archeological hoaxes and the lessons they teach us about discovery and deception.
Skara Brae: The Mysterious Neolithic Village of Scotland | TheCollectorJul 23, 2025
Explore the ancient village of Skara Brae, its connections to Skaill House, its haunting stories, and the mysteries surrounding its preservation and abandonment.
Surprising Archeological Discoveries in the Heart of the Amazon Jungle | TheCollectorJul 23, 2025
The world’s largest rainforest was long considered a virgin wilderness, but recent discoveries are challenging this view.
Records of Pompeii’s survivors have been found – and archaeologists are staJun 11, 2024
The story of the eruption of Mount Vesuvius is no longer one of annihilation; it also includes the people who managed to escape the city.
architecture
A Decade of Camping Led to This 747-Square-Foot Cozy River RetreatDec 14, 2025
Dan Wheeler spent ten years sleeping in tents on his riverfront property before building anything permanent. The software engineer bought the land along Washington's Wenatchee River in 2010, drawn by years of rafting trips with friends through the area's rushing waters. Every camping trip reinforced what he already knew: this spot needed something, but only
Top 10 Architecture Posts of 2025Dec 12, 2025
Explore Design Milk’s 10 most captivating architecture projects of 2025, from micro-studios and floating homes to serene lakeside retreats.
From rebuild to replica, architecture has a double life | Aeon EssaysJul 12, 2025
Architectural copies of lost structures require reckoning with history and heritage. At what cost is the past rebuilt?
These Old Texas Post Offices Sat Empty. Now They’re Thriving Cafes, Stores,Jun 22, 2024
These six restored historic buildings are sending us.
Heat pump online trainingFeb 11, 2023
Heat pump online training let you know the main types of pump in order to explain the thermal balance in housings and heating installations.
The Baseball Stadium That "Forever Changed" Professional SportsAug 7, 2022
Camden Yards, which opened 30 years ago this summer, is revered for its design and downtown location. But its influence—along with its lessons—extends beyond architecture.
How building codes work in the US - by Brian PotterJul 30, 2022
Buildings must be built to the requirements of the building code, a set of laws that governs how a building must be built.
The Ancient Persian way to keep coolAug 12, 2021
From ancient Egypt to the Persian Empire, an ingenious method of catching the breeze kept people cool for millennia. Now, it could come to our aid once again.
Meet the Product Designer Who Made Mid-Century America Look Clean and StyliJun 8, 2019
From refrigerators to cars to Air Force One, Raymond Loewy's distinctive "cleanlining" sold products
What a beautiful tiny house in rural Japan can teach us about the health ofMar 20, 2019
Guests are transforming the sleepy town into a major destination for tourists seeking the "real Japan."
Why Is the Homebuilding Industry Stuck in the 1940s?Sep 21, 2018
Embrace pre-fabricated, adaptable homes! Growing inequity, out-of-reach housing prices, and the speed of innovation in energy efficiency and technology demand it.
arguments
Ancient Greek antilogic is the craft of suspending judgmentMar 2, 2024
Sophists like Protagoras used the rhetoric of antilogic to escape from the illusion of truth and make room for uncertainty
How to have better arguments | Psyche GuidesOct 1, 2022
Arguing well isn’t just about winning. A philosophical approach will help you and the other person get much more out of it
How I Learned to Talk to Aggressive People | by Savannah Carreno | Aug, 202Aug 31, 2022
As someone who researches American religion, I find myself in impassioned conversations quite often. Religion is a beautiful element that…
Beginner's Guide to Arguing ConstructivelyJul 18, 2022
How to turn arguments from vicious battles into productive dialogues.
The best way to win an argumentJul 18, 2022
How do you change someone’s mind if you think you are right and they are wrong? Psychology reveals the last thing to do is the tactic we usually resort to. You are, I’m afraid to say, mistake…
A Gentler, Better Way to Change MindsApr 14, 2022
Stop wielding your values as a weapon and start offering them as a gift.
art
An Introduction to the Codex Seraphinianus, the Strangest Book Ever PublishedFeb 23, 2026
Imagine you could talk to Hieronymus Bosch, the authors of the Book of Revelation, or of the Voynich Manuscript—a bizarre 15th century text written in an uncrackable code; that you could solve centuries-old mysteries by asking them, “what were you thinking?” You might be disappointed to hear them say, as does Luigi Serafini, author and illustrator of the Codex Seraphinianus, “At the end of the day [it’s] similar to the Rorschach inkblot test.
Road Trip Attractions #4 - House of WeirdJan 20, 2026
This piece is print #4 in our Road Trip Attractions Series - a collection inspired by the interesting and quirky establishments you'll see billboards for on a road trip out west. This print is the billboard for the House of Weird - A Museum of Oddities & Unexplainables. We'd tell you what you might see in this mysterious pit stop, but it's just something you'd have to see to believe!
The grab list: how museums decide what to save in a disasterJan 18, 2026
archived 21 Nov 2025 11:02:52 UTC
The Worst Shot Ever Taken - Believer MagazineJan 7, 2026
I was sixteen when my mother gifted me a painting by Ernie Barnes. I’d seen one Barnes painting at that point on the cover of Marvin Gaye’s 1976 album, I Want You, on the brown carpeted floor of my Auntie Sue’s apartment. Then I saw it five days a week for at least a decade during […]
Art Detective Arthur Brand Is Like Indiana Jones but With a More Elegant WardrobeDec 12, 2025
Mysterious late-night visits, an undercover hunt for Hitler's horses, and a Picasso on the couch are business as usual for the Dutch sleuth.
The Blue Book BurglarNov 4, 2025
The 'Social Register' was a who’s who of America’s rich and powerful—the heirs of robber barons, scions of political dynasties, and descendants of 'Mayflower' passengers. It was also the perfect hit list for the country’s hardest-working art thief.
The Pushkin job: unmasking the thieves behind an international rare books heistOct 7, 2025
The long read: Between 2022 and 2023, as many as 170 rare and valuable editions of Russian classics were stolen from libraries across Europe. Were the thieves merely low-level opportunists, or were bigger forces at work?
The Journey of Lapis Lazuli, Art’s Most Prized Pigment | TheCollectorOct 1, 2025
What is Lapis Lazuli? What are its origins? How has it persisted throughout the history of art?
Vintage Covers of Famous Fantastic Mysteries Magazine From the 1940s and Early ’50sSep 28, 2025
Famous Fantastic Mysteries was a U.S. pulp magazine that specialized in reprinting classic tales of science fiction, fantasy, and adventure.
It debuted in 1939 under the Munsey Company, already known for popular titles like Argosy, and quickly gained a devoted audience. The magazine revived olde
Mary Petty, the Mysterious Cover Artist Who Captured the Decline of the RichAug 25, 2025
Chris Ware on the New Yorker artist, who contributed dozens of covers about the wealthy Peabody family and their housemaid, Fay.
How a Billionaire Owner Brought Turmoil and Trouble to Sotheby’sAug 25, 2025
Patrick Drahi made a fortune through debt-fuelled telecommunications companies, Sam Knight writes. Now he’s bringing his methods to the art market.
Why Knights Fought Snails in Medieval Illuminated ManuscriptsAug 18, 2025
The snail may leave a trail of slime behind him, but a little slime will do a man no harm... whilst if you dance with dragons, you must expect to burn.
- George R. R. Martin, The Mystery Knight
As any Game of Thrones fan knows, being a knight has its downsides.
So what's the difference between plotted and printed artwork?Aug 13, 2025
A common source of confusion that I experience when posting my artwork on social media is: _why?_ Why use a plotter when you could use a printer? It's slower. Less exact. More expensive. It fails, far too often. Inkjet printers became ubiquitous in the 1980s because they solved nearly all of these problems. So why are artists obsessed with pen plotters?
What Collectors Need to Know about Storing Their ArtAug 1, 2025
Storing an art collection properly is crucial for protecting and preserving the value of your artworks.
Best Practices for Shipping, Storing, and Insuring ArtJul 30, 2025
Keep your art safe by using professional art shippers, climate-controlled storage, and the right insurance to protect your art collection.
What to Know About Art AuctionsJul 30, 2025
Discover how art auctions work by learning how to consign art, understand pricing, navigating key terms used by auction houses.
Green Sardines Art PrintJul 24, 2025
Fine art print using water-based inks on sustainably sourced cotton mix archival paper.
• Available in multiple sizes
• Trimmed with a 2cm / 1" border for framing
• Available framed in white, black, and oak wooden frames
The 100 Greatest Paintings of All Time: From Botticelli and Bosch to Bacon and BasquiatJun 4, 2025
It would be a worthwhile exercise for any of us to sit down and attempt to draw up a list of our 100 favorite paintings of all time. Naturally, those not professionally involved with art history may have some trouble quite hitting that number.
Marfa Lights by Bryan PetersonMay 27, 2025
This dreamy print entitled "Marfa Lights" is print #3 of 11 in our series by Bryan Peterson. Peterson's whimsical style is on full display in this beautiful print that captures the small town West Texas town of Marfa on a starry desert night.
What Is Provenance & Why Is It Important for Someone Buying Art?May 6, 2025
Market value and establishing authenticity depend on uncovering an artwork’s past, which requires skilled provenance research.
6 Questions Every New Art Buyer Should Ask a GalleryApr 30, 2025
Galleries are crucial touchpoints for discovering new artists and artworks. Here’s what you need to know about how to approach them.
North America’s First and Only da Vinci Museum is Coming to COMar 27, 2025
Coming to Pueblo, CO, this fall, the Leonardo da Vinci Museum of North America will be the first and only museum of its kind in the continent.
Jennifer Dunn’s Hilarious Heartwarming Watercolor Paintings Of Sassy Animals With Pop Culture ReferencesMar 23, 2025
Jennifer Dunn, the artist behind the Instagram account Mossy Hollow, characterizes her work as "Watercolor meme art," a distinctive blend of pop culture referen
Rafael Araujo's 20+ Mesmerizing Geometrical Masterpieces - AbakcusJan 21, 2025
To celebrate Rafael Araujo's talent and vision, I have curated a selection of his most stunning illustrations, showcasing the elegance and intricacy of his work.
Meet the Italian 'Fruit Detective' Who Investigates Centuries-Old Paintings for Clues About Produce That Has Disappeared From the Kitchen TableOct 30, 2024
Renaissance paintings, medieval archives, cloistered orchards—how one Italian scientist is uncovering secrets that could help combat a growing agricultural crisis
Beautiful Vintage Posters Illustrated by Walter Schnackenberg in the Early 20th CenturyOct 19, 2024
Walter Schnackenberg was born in 1880 in Lauterberg, Germany, and became a prominent painter and illustrator. At the age of 19, he moved to Munich to study art, first under Heinrich Knirr and then Franz von Stuck, both influential figures in the German art scene. His early work earned him recogn
The 25 Auction Terms Every Art Collector Needs to KnowOct 19, 2024
From flipping to white glove sales, here are terms to know before you attend an auction.
secret hand gestures in paintingsJun 7, 2024
During the Renaissance period, hands were as important a focus of attention as the face was, because they were the only other visible area of the body. Hence, representation of the position of the hands became a decorative element that was almost as important ...
The weird and wonderful AI art of Niceaunties | NiceauntiesApr 30, 2024
Welcome to the "Auntieverse" — a surreal tribute to "auntie culture" by artist Niceaunties, inspired by the spirit of the women who care for each other and their families. From sushi-bedecked cars with legs to hot tub baths full of ramen, Niceaunties shares a visual feast that fuses AI and imagination and celebrates the eccentric, vibrant world of aunties with reverence and awe. (Slides created with AI including Midjourney and DALL·E 3 for text-to-image creation; magnific.ai and Topaz Labs for upscaling the images; Pikalabs and Runwayml for animation.)
Valery Slauk’s Magnificent Creepy Folk and Mythological ArtistryApr 7, 2024
Valery Slauk, a celebrated Belarusian artist, specializes in book art and easel graphics, particularly employing the etching technique. His work delves into Slavic mythology, crafting captivating worlds that blend literary inspiration with boundless imagination. With a deft balance between reali
The Beer Advertising Posters Designed by Henry Jerome Schile in The 19th CeApr 6, 2024
German-American artist Henry Jerome Schile was born in Oberharmersbach, Baden-Württemberg, in 1829. He emigrated to the US in 1851 and worked in New York in the middle of the 19th century. h/t: vintag.es Henry Schile’s work is described by Harry T. Peters in America on Stone as: “Though of
Empty Frames and Other Oddities From the Unsolved Gardner Museum HeistMar 18, 2024
After 34 years, not one of the 13 works stolen during the largest art theft in history has surfaced but the puzzling peculiarities of the case still draw interest.
How Art Creates UsJan 26, 2024
Consuming culture gives us the emotional knowledge that can make us better people.
HOPPER: An American love story - About the documentary | American Masters |Jan 25, 2024
Discover the secrets behind Edward Hopper’s most iconic and enigmatic works. See how his marriage to artist Josephine Hopper shaped his art.
One comment on “The beauty and danger in Victorian Glass Fire Grenades”Jan 18, 2024
Sophie Walter, Assistant Curator at London Fire Brigade Museum, on the small, beautiful and potentially fatal Glass Fire Grenade When they were first introduced in the nineteenth century, Glass Fire Grenades were produced as decorative glass bottles with a bulbous...
Download 222 Belle Époque Art Posters: An Online Archive of Masterpieces frOct 20, 2023
Europe at the end of the nineteenth century and beginning of the twentieth: what a time and place to be alive.
How Larry Gagosian Reshaped the Art WorldJul 27, 2023
The dealer has been so successful selling art to masters of the universe that he has become one of them.
Every Piece in This Exhibition Is a FakeJul 24, 2023
A new show at London's Courtauld Gallery will explore the value of counterfeit art
Beautiful Bizarre: The Superb Fantasy and Horror Portraits by Ed BinkleyJun 26, 2023
For more than thirty years, Ed Binkley has been producing stunning fantasy artwork. His exceptional creations have been showcased in a multitude of publications and he has partnered with esteemed entities such as Lucasfilm, ImagineFX, Wizards of the Coast, and Artifacts Puzzles, among others.
How to Steal a Masterpiece: Advice from the World’s Greatest Art ThiefJun 22, 2023
Advice from the world's greatest art thief
The Mystery of the Disappearing van GoghJun 3, 2023
After a painting by the Dutch artist sold at auction, a movie producer claimed to be the owner. It later vanished from sight, with a trail leading to Caribbean tax havens and a jailed Chinese billionaire.
Crime of the CenturiesMar 19, 2023
Tomb raiders, crooked art dealers, and museum curators fed billionaire Michael Steinhardt’s addiction to antiquities. Many also happened to be stolen.
The Timeless Draw of Decorating CookiesMar 17, 2023
Intricate designs painted by biscuit artist Ella Hawkins are part of a lengthy baking tradition
What you learn about beauty and grief as a guard at the Metropolitan Museum of ArtFeb 27, 2023
After his brother’s death, Patrick Bringley took a job at the grandest place he could find.
The Art of the Shadow: How Painters Have Gotten It Wrong for CenturiesFeb 25, 2023
The goal is not to expose the “slipups” of the masters but to understand the human brain.
Portrait of a killer: art class in one of Mexico’s most notorious prisonsFeb 15, 2023
The long read: In 2016, artist César Aréchiga talked one of Mexico’s most dangerous maximum security prisons into letting him run art classes for its inmates, many of them violent gang members. Could he really change their lives?
The husband-and-wife forgers who fooled the art market — and made millions | CNNFeb 15, 2023
Wolfgang and Helene Beltracchi’s forgeries infiltrated museums, auction houses and private collections. A decade after their conviction, psychoanalyst Jeannette Fischer asks: Why did they do it?
From Death Cab to the Grateful Dead, an Artist Reimagines the Classic Rock PosterJan 30, 2023
For lots of rock-poster collectors, even those who like to think they’re in the know, a common question is, “Who’s Luke Martin?”
The $65 Million Art Heist That Put ‘Ocean’s Eleven’ to ShameNov 22, 2022
A billionaire playboy’s alleged murder is at the center of the world’s most confounding heist job.
The Story Behind BanksyNov 20, 2022
On his way to becoming an international icon, the subversive and secretive street artist turned the art world upside-down
The Case of the Disputed Lucian FreudSep 30, 2022
A collector thought he had bought a painting by the celebrated British artist. How far would he go to prove it?
Six-Figure Artworks, by a Fifth Grader (Published 2022)Sep 29, 2022
Andres Valencia’s paintings have sold for more than $125,000. And he’s 10 years old.
Auction Houses and Galleries Are Working Together—Here’s WhySep 27, 2022
Auction houses and galleries are getting creative, partnering to drive demand and give their clients access to the best works.
What Canada’s Largest Art Heist Reveals about the Art World’s Shady Side | The WalrusSep 24, 2022
The stolen masterpieces have never turned up—and nobody’s really looking for them
The Case of the Matisse and the Mysterious ThingamabobAug 17, 2022
Did the artist paint a security camera (or a condom, or a portrait of rigatoni) into “The Red Studio”? An investigation at MoMA looks for clues.
Inside the Mind-Boggling World of the Antiquities Theft Task ForceJul 19, 2022
You can't make this shit up
How Banksy Authenticates His WorkJul 18, 2022
How Banksy created a private key art authentication system with forged ten pound bank notes ripped in half.
A Glimpse Inside a Florentine Silk-Weaving WorkshopJul 11, 2022
The Antico Setificio Fiorentino, which relies on looms from the 18th and 19th centuries, has been producing precious textiles since 1786.
The ArtBench Dataset: Benchmarking Generative Models with ArtworksJul 6, 2022
We introduce ArtBench-10, the first class-balanced, high-quality, cleanly annotated, and standardized dataset for benchmarking artwork generation. It comprises 60,000 images of artwork from 10...
Pop Culture Posters & Illustrations by Tomasz MajewskiJul 3, 2022
Polish illustrator and graphic designer Tomasz Majewski combines traditional techniques with digital work to produce cool pop culture creations. More: Instagram, Behance
Last War Relicts: Otherwordly Concept Art by Michał KlimczakJun 25, 2022
Out of this world artworks by Michał Klimczak, a graphic designer and concept artist based in Krakow, Poland. More: Instagram, Behance
The mountain stronghold that has kept Georgia’s medieval art safe for centuMar 18, 2022
The Svaneti Museum of History and Ethnography in Georgia is home to one of the world’s great collections of medieval Christian art, writes William Dunbar
How Artists Use Psychology to Price a PaintingFeb 10, 2022
Driven by buyers' need for consistency and explanation, the most popular pricing method uses a surprisingly simple formula based on size.
Why it took us thousands of years to see the colour violet | Psyche IdeasJun 25, 2021
The colour violet was largely missing from art before the Impressionists, and is seen differently by different cultures. Why?
art - Google SearchMay 28, 2021
ArtveeMay 22, 2021
Browse and download high-resolution, public domain Paintings, Drawings, Illustrations and Posters.
Tome Raiders: Solving the Great Book HeistMay 9, 2021
When nearly $3.5M of rare books were stolen in an audacious heist at Feltham in 2017, police wondered, what’s the story?
Louvre site des collectionsMar 27, 2021
The Collections database consists of entries for more than 480,000 works in the Musée du Louvre and Musée National Eugène-Delacroix.
The art dealer, the £10m Benin Bronze and the HolocaustMar 19, 2021
Western museums are under pressure to return looted treasure, but what of those in private collections?
The 25 Greatest Art Heists of All TimeMar 3, 2021
What are the greatest art heists of all time? See a list of the 25 most memorable thefts from museums.
How a 10-second video clip sold for $6.6 million | ReutersMar 1, 2021
In October 2020, Miami-based art collector Pablo Rodriguez-Fraile spent almost $67,000 on a 10-second video artwork that he could have watched for free online. Last week, he sold it for $6.6 million.
Historic Tale Construction Kit - BayeuxFeb 7, 2021
(285) PinterestFeb 4, 2021
Fine Art America | Wall Art, Canvas Prints, Posters, iPhone Cases, and MoreDec 25, 2020
Buy art from the world's largest community of independent artists and iconic brands. Shop for wall art, home decor, iPhone cases, and more!
F is for FakeNov 9, 2020
How a dozen possibly fraudulent and forged Indigenous artworks left Texas and ended up on museum walls in Wyoming.
3D Photography Inpainting: Exploring Art with AI.May 15, 2020
Usage of the new model, with examples and Colab Notebook.
Browse - Harry Ransom Center Digital CollectionsApr 18, 2020
How to Spot a Perfect Fake: The World’s Top Art Forgery DetectiveJan 12, 2020
Forgeries have become so good – and so costly – that Sotheby’s has brought in its own in-house fraud-busting expert.
14 Paris Museums Put 300,000 Works of Art Online: Download Classics by MoneJan 10, 2020
First trips to Paris all run the same risk: that of the museums consuming all of one's time in the city. What those new to Paris need is a museum-going strategy, not that one size will fit all.
Show HN: Art Resources and Tutorials WebsiteJan 1, 2020
Inside Notre Dame: a blow-by-blow account of the restoration process | TheOct 3, 2019
Five months on we look at the steps and measurements implemented by experts to start rebuilding the fire-ravaged cathedral
Masterpiece TheaterAug 31, 2019
A Dutch gallerist made thousands of forgeries and passed them off as the work of real artists. When he was caught, a new con began.
How Graffiti Became GentrifiedAug 24, 2019
Two decades after Rudy Giuliani tried to rid New York City of graffiti, the art form is flourishing—with unexpected consequences.
The First Museum Dedicated Exclusively to Poster Art Opens Its Doors in theJul 2, 2019
How times have changed since our late 80s college days. Undergrads do research online, upload assignments to a server, stream music, download affirmative sexual consent contracts, and turn to Facebook when it's time to find a ride home for the holidays.
Using Mathematics to Repair a Masterpiece | Quanta MagazineApr 17, 2019
The author shows how new mathematical techniques can be used to revitalize a 650-year-old work of art.
A US$28 million Picasso masterpiece was missing for 20 years, until the artMar 28, 2019
Art historian Arthur Brand managed to track down the 1983 painting Buste de Femme (Dora Maar), which went missing from a Saudi prince’s boat in 1999.
The History of the Color Blue: From Ancient Egypt to the Latest Scientific DiscoveriesMar 14, 2019
Some scientists believe that the earliest humans were actually colorblind, and had no concept of the color blue.
Welcome to the Austin Art Boards HomepageFeb 7, 2019
The French Burglar Who Pulled Off His Generation’s Biggest Art HeistJan 7, 2019
The skilled climber and thief Vjeran Tomic, whom the French press referred to as Spider-Man, has described robbery as an act of imagination.
Max Cooper - EmergenceDec 24, 2018
Emergence is the story of natural laws and processes, their inherent beauty, and their action to yield the universe, us and the world we live in.
The Art Institute of Chicago Has Put 50,000 High-Res Images from Their Collection OnlineNov 16, 2018
The Art Institute of Chicago recently unveiled a new website design. As part of their first design upgrade in 6 years, they have placed more than 52,000 high-resolution images from their collection online, available to all comers without restr
The Great Chinese Art HeistAug 18, 2018
Is the Chinese government behind one of the boldest art-crime waves in history?
On the Strange, Artistic World of Marfa, TexasMay 19, 2018
I used to think Marfa was a kind of practical joke that West Texans were playing on cultural elites. It’s remote even for Texas. The nearest airports are in El Paso and Carlsbad, New Mexico, each 2…
arxiv
LLM Research Papers: The 2025 List (July to December)Jan 2, 2026
In June, I shared a bonus article with my curated and bookmarked research paper lists to the paid subscribers who make this Substack possible.
LLM Research Papers: The 2025 List (July to December)Dec 31, 2025
A curated list of LLM research papers from July–December 2025, organized by reasoning models, inference-time scaling, architectures, training efficiency, and...
An Introduction to MultisetsOct 16, 2025
Multisets are sets that allow repetition of elements. As such, multisets pave the way to a number of interesting possibilities of theoretical and applied nature. In the present work, after revising the main aspects of traditional sets, we introduce some of the main concepts and characteristics of multisets, followed by their generalization to take into account vectors and matrices. An approach is also proposed in which the real, negative multiplicities are allowed, implying the multiset universe to become finite and well-defined, corresponding to the multiset with null multiplicities. The complement operation in multisets is then defined, which allows properties involving complement -- including the De Morgan theorem -- to be recovered in multisets. In addition, it becomes possible to extend multisets to functions (which become multifunctions), scalar fields and other continuous mathematical structure, therefore achieving an enhanced space endowed with all algebraic operations plus set theoretical operations including union, intersection, and complementation. The possibility to define a set operation between mfunctions, namely the common product, that is analogous to the traditional inner product is also proposed, paving the way to obtaining respective mfunction transformations, and it is argued that the Walsh functions provide an orthogonal basis for the mfunctions space under the common product. This result also allowed the proposal of performing integrated signal processing operations on mset mfunctions, including filtering and enhanced template matching. Relationships between the cosine similarity index and the Jaccard index are also identified, including the presentation of an intersection-based variation of the cosine index. The potential of multisets in pattern recognition and deep learning is also briefly characterized and illustrated.
Characterizing and Optimizing Realistic Workloads on a Commercial...Oct 4, 2025
Compute-in-SRAM architectures offer a promising approach to achieving higher performance and energy efficiency across a range of data-intensive applications. However, prior evaluations have largely relied on simulators or small prototypes, limiting the understanding of their real-world potential. In this work, we present a comprehensive performance and energy characterization of a commercial compute-in-SRAM device, the GSI APU, under realistic workloads. We compare the GSI APU against established architectures, including CPUs and GPUs, to quantify its energy efficiency and performance potential. We introduce an analytical framework for general-purpose compute-in-SRAM devices that reveals fundamental optimization principles by modeling performance trade-offs, thereby guiding program optimizations.
Exploiting the fine-grained parallelism of tightly integrated memory-compute architectures requires careful data management. We address this by proposing three optimizations: communication-aware reduction mapping, coalesced DMA, and broadcast-friendly data layouts. When applied to retrieval-augmented generation (RAG) over large corpora (10GB--200GB), these optimizations enable our compute-in-SRAM system to accelerate retrieval by 4.8$\times$--6.6$\times$ over an optimized CPU baseline, improving end-to-end RAG latency by 1.1$\times$--1.8$\times$. The shared off-chip memory bandwidth is modeled using a simulated HBM, while all other components are measured on the real compute-in-SRAM device. Critically, this system matches the performance of an NVIDIA A6000 GPU for RAG while being significantly more energy-efficient (54.4$\times$-117.9$\times$ reduction). These findings validate the viability of compute-in-SRAM for complex, real-world applications and provide guidance for advancing the technology.
Geometric Deep Learning: Grids, Groups, Graphs, Geodesics, and GaugesSep 8, 2025
The last decade has witnessed an experimental revolution in data science and machine learning, epitomised by deep learning methods. Indeed, many high-dimensional learning tasks previously thought to be beyond reach -- such as computer vision, playing Go, or protein folding -- are in fact feasible with appropriate computational scale. Remarkably, the essence of deep learning is built from two simple algorithmic principles: first, the notion of representation or feature learning, whereby adapted, often hierarchical, features capture the appropriate notion of regularity for each task, and second, learning by local gradient-descent type methods, typically implemented as backpropagation.
While learning generic functions in high dimensions is a cursed estimation problem, most tasks of interest are not generic, and come with essential pre-defined regularities arising from the underlying low-dimensionality and structure of the physical world. This text is concerned with exposing these regularities through unified geometric principles that can be applied throughout a wide spectrum of applications.
Such a 'geometric unification' endeavour, in the spirit of Felix Klein's Erlangen Program, serves a dual purpose: on one hand, it provides a common mathematical framework to study the most successful neural network architectures, such as CNNs, RNNs, GNNs, and Transformers. On the other hand, it gives a constructive procedure to incorporate prior physical knowledge into neural architectures and provide principled way to build future architectures yet to be invented.
The Future of Memory: Limits and OpportunitiesSep 5, 2025
Memory latency, bandwidth, capacity, and energy increasingly limit performance. In this paper, we reconsider proposed system architectures that consist of huge (many-terabyte to petabyte scale) memories shared among large numbers of CPUs. We argue two practical engineering challenges, scaling and signaling, limit such designs. We propose the opposite approach. Rather than create large, shared, homogenous memories, systems explicitly break memory up into smaller slices more tightly coupled with compute elements. Leveraging advances in 2.5D/3D integration, this compute-memory node provisions private local memory, enabling accesses of node-exclusive data through micrometer-scale distances, and dramatically reduced access cost. In-package memory elements support shared state within a processor, providing far better bandwidth and energy-efficiency than DRAM, which is used as main memory for large working sets and cold data. Hardware making memory capacities and distances explicit allows software to efficiently compose this hierarchy, managing data placement and movement.
Hierarchical Reasoning ModelJul 28, 2025
Reasoning, the process of devising and executing complex goal-oriented action sequences, remains a critical challenge in AI. Current large language models (LLMs) primarily employ Chain-of-Thought (CoT) techniques, which suffer from brittle task decomposition, extensive data requirements, and high latency. Inspired by the hierarchical and multi-timescale processing in the human brain, we propose the Hierarchical Reasoning Model (HRM), a novel recurrent architecture that attains significant computational depth while maintaining both training stability and efficiency. HRM executes sequential reasoning tasks in a single forward pass without explicit supervision of the intermediate process, through two interdependent recurrent modules: a high-level module responsible for slow, abstract planning, and a low-level module handling rapid, detailed computations. With only 27 million parameters, HRM achieves exceptional performance on complex reasoning tasks using only 1000 training samples. The model operates without pre-training or CoT data, yet achieves nearly perfect performance on challenging tasks including complex Sudoku puzzles and optimal path finding in large mazes. Furthermore, HRM outperforms much larger models with significantly longer context windows on the Abstraction and Reasoning Corpus (ARC), a key benchmark for measuring artificial general intelligence capabilities. These results underscore HRM's potential as a transformative advancement toward universal computation and general-purpose reasoning systems.
LLM Research Papers: The 2025 List (January to June)Jul 19, 2025
The latest in LLM research with a hand-curated, topic-organized list of over 200 research papers from 2025.
Beyond Human Intervention: Algorithmic Collusion through Multi-Agent Learning StrategiesJan 29, 2025
Our paper, Beyond Human Intervention: Algorithmic Collusion through Multi-Agent Learning Strategies, with Suzie Grondin and Philipp Ratz is now available online Collusion in market pricing is a concept associated with human actions to raise market prices through artificially limited supply. Recently, the idea of algorithmic collusion was put forward, where the human action in the … Continue reading Beyond Human Intervention: Algorithmic Collusion through Multi-Agent Learning Strategies →
Noteworthy LLM Research Papers of 2024Jan 23, 2025
This article covers 12 influential AI research papers of 2024, ranging from mixture-of-experts models to new LLM scaling laws for precision..
The 2025 AI Engineering Reading ListJan 14, 2025
We picked 50 paper/models/blogs across 10 fields in AI Eng: LLMs, Benchmarks, Prompting, RAG, Agents, CodeGen, Vision, Voice, Diffusion, Finetuning. If you're starting from scratch, start here.
100 Must-Read Generative AI Papers from 2024Jan 12, 2025
A comprehensive list of some of the most impactful generative papers from last year
An Opinionated Evals Reading List — Apollo ResearchJan 7, 2025
A long reading list of evals papers with recommendations and comments by the evals team.
LLM Research Papers: The 2024 ListDec 22, 2024
A curated list of interesting LLM-related research papers from 2024, shared for those looking for something to read over the holidays.
eugeneyan/llm-paper-notes: Notes from the Latent Space paper club. Follow along or start your own!Nov 26, 2024
Notes from the Latent Space paper club. Follow along or start your own! - eugeneyan/llm-paper-notes
How to Run a Paper Club (also: LIVE at NeurIPS 2024!)Nov 24, 2024
Your ultimate Paper Club Starter Kit, from your friends at the Latent Space Paper Club, where we have now read 100 papers. Also: Announcing Latent Space Paper Club LIVE! at Neurips 2024! Join us!
Analyzing the homerun year for LLMs: the top-100 most cited AI papers in 2023, with all medals for open models.Nov 11, 2024
9 October 2024, Mathias Parisot, Jakub Zavrel.Even in the red hot global race for AI dominance, you publish and you perish, unless your peers pick up your work, build further on it, and you manage to drive real progress in the field. And of course, we are all very curious who is currently having that kind of impact. Are the billions of dollars spent on AI R&D paying off in the long run? So here is, in continuation of our popular publication impact analysis of last year, Zeta Alpha's ranking of t
Aman's AI Journal • Primers • Ilya Sutskever's Top 30Oct 21, 2024
Aman's AI Journal | Course notes and learning material for Artificial Intelligence and Deep Learning Stanford classes.
[2406.01506] The Geometry of Categorical and Hierarchical Concepts in LargeJun 11, 2024
The linear representation hypothesis is the informal idea that semantic concepts are encoded as linear directions in the representation spaces of large language models (LLMs). Previous work has...
Title:You Only Cache Once: Decoder-Decoder Architectures for Language ModelMay 11, 2024
We introduce a decoder-decoder architecture, YOCO, for large language models, which only caches key-value pairs once. It consists of two components, i.e., a cross-decoder stacked upon a...
[2404.19737] Better & Faster Large Language Models via Multi-token PredictiMay 8, 2024
Large language models such as GPT and Llama are trained with a next-token prediction loss. In this work, we suggest that training language models to predict multiple future tokens at once results...
Collusive Outcomes Without CollusionApr 30, 2024
Auctions with Dynamic ScoringApr 29, 2024
Equitable Pricing in AuctionsApr 23, 2024
[2404.09818] Error Detection and Correction Codes for Safe In-Memory ComputApr 16, 2024
In-Memory Computing (IMC) introduces a new paradigm of computation that offers high efficiency in terms of latency and power consumption for AI accelerators. However, the non-idealities and...
Tips for LLM Pretraining and Evaluating Reward ModelsApr 15, 2024
Discussing AI Research Papers in March 2024
10 Noteworthy AI Research Papers of 2023Jan 7, 2024
This year has felt distinctly different. I've been working in, on, and with machine learning and AI for over a decade, yet I can't recall a time when these fields were as popular and rapidly evolving as they have been this year. To conclude an eventful 2023 in machine learning and AI research, I'm excited to share 10 noteworthy papers I've read this year. My personal focus has been more on large language models, so you'll find a heavier emphasis on large language model (LLM) papers than computer vision papers this year.
[2302.07730] Transformer models: an introduction and catalogOct 5, 2023
In the past few years we have seen the meteoric appearance of dozens of foundation models of the Transformer family, all of which have memorable and sometimes funny, but not self-explanatory,...
A Prompt Pattern CatalogOct 3, 2023
Distilling Step-by-Step! Outperforming Larger Language Models with...May 5, 2023
Deploying large language models (LLMs) is challenging because they are memory inefficient and compute-intensive for practical applications. In reaction, researchers train smaller task-specific...
SparseGPT: Massive Language Models Can Be Accurately Pruned in One-ShotMay 5, 2023
We show for the first time that large-scale generative pretrained transformer (GPT) family models can be pruned to at least 50% sparsity in one-shot, without any retraining, at minimal loss of...
A Cookbook of Self-Supervised LearningApr 25, 2023
Self-supervised learning, dubbed the dark matter of intelligence, is a promising path to advance machine learning. Yet, much like cooking, training SSL methods is a delicate art with a high...
Eight Things to Know about Large Language ModelsApr 21, 2023
The widespread public deployment of large language models (LLMs) in recent months has prompted a wave of new attention and engagement from advocates, policymakers, and scholars from many fields....
When do you need Chain-of-Thought Prompting for ChatGPT?Apr 15, 2023
Chain-of-Thought (CoT) prompting can effectively elicit complex multi-step reasoning from Large Language Models~(LLMs). For example, by simply adding CoT instruction ``Let's think step-by-step''...
A Survey of Large Language ModelsApr 14, 2023
Language is essentially a complex, intricate system of human expressions governed by grammatical rules. It poses a significant challenge to develop capable AI algorithms for comprehending and...
Top Machine Learning Papers to Read in 2023 - KDnuggetsMar 31, 2023
These curated papers would step up your machine-learning knowledge.
Must read: the 100 most cited AI papers in 2022Mar 20, 2023
Who Is publishing the most Impactful AI research right now? With the breakneck pace of innovation in AI, it is crucial to pick up some signal as soon as possible. No one has the time to read everything, but these 100 papers are sure to bend the road as to where our AI technology is going. The real test of impact of R&D teams is of course how the technology appears in products, and OpenAI shook the world by releasing ChatGPT at the end of November 2022, following fast on their March 2022 paper “T
2012.03854.pdfMar 16, 2023
2003.05689.pdfMar 16, 2023
2108.02497.pdfMar 16, 2023
?Top ML Papers of the Week - by elvis - NLP NewsletterMar 14, 2023
The top ML Papers of the Week (Mar 6 - Mar 12)
Why People Skip Music? On Predicting Music Skips using Deep...Feb 9, 2023
Music recommender systems are an integral part of our daily life. Recent research has seen a significant effort around black-box recommender based approaches such as Deep Reinforcement Learning...
[1702.04680v1] Visual Discovery at PinterestDec 21, 2022
Over the past three years Pinterest has experimented with several visual search and recommendation services, including Related Pins (2014), Similar Looks (2015), Flashlight (2016) and Lens (2017)....
2212.03551.pdfDec 11, 2022
[2206.14007] The Importance of (Exponentially More) Computing PowerJul 30, 2022
Denizens of Silicon Valley have called Moore's Law "the most important graph in human history," and economists have found that Moore's Law-powered I.T. revolution has been one of the most...
YOLOv7: Trainable bag-of-freebies sets new state-of-the-art for...Jul 18, 2022
YOLOv7 surpasses all known object detectors in both speed and accuracy in the range from 5 FPS to 160 FPS and has the highest accuracy 56.8% AP among all known real-time object detectors with 30...
Machine Learning Operations (MLOps): Overview, Definition, and ArchitectureJul 13, 2022
The final goal of all industrial machine learning (ML) projects is to develop ML products and rapidly bring them into production. However, it is highly challenging to automate and operationalize...
Mastering the Game of Stratego with Model-Free Multiagent...Jul 11, 2022
We introduce DeepNash, an autonomous agent capable of learning to play the imperfect information game Stratego from scratch, up to a human expert level. Stratego is one of the few iconic board...
Another Firing Among Google’s A.I. Brain Trust, and More Discord (Published 2022)May 2, 2022
The researchers are considered a key to the company’s future. But they have had a hard time shaking infighting and controversy over a variety of issues.
The Modern Mathematics of Deep LearningMay 1, 2022
We describe the new field of mathematical analysis of deep learning. This field emerged around a list of research questions that were not answered within the classical framework of learning...
Detecting Twenty-thousand Classes using Image-level SupervisionJan 12, 2022
Current object detectors are limited in vocabulary size due to the small scale of detection datasets. Image classifiers, on the other hand, reason about much larger vocabularies, as their datasets...
ArXiv.org Reaches a Milestone and a ReckoningJan 10, 2022
Runaway success and underfunding have led to growing pains for the preprint server
louisfb01/best_AI_papers_2021: A curated list of the latest breakthroughs in AI (in 2021) by release date with a clear video explanation, link to a more in-depth article, and code.Dec 3, 2021
A curated list of the latest breakthroughs in AI (in 2021) by release date with a clear video explanation, link to a more in-depth article, and code. - louisfb01/best_AI_papers_2021
Applications and Techniques for Fast Machine Learning in ScienceOct 29, 2021
In this community review report, we discuss applications and techniques for fast machine learning (ML) in science -- the concept of integrating power ML methods into the real-time experimental...
association-rules
A Guide to Association Rule MiningApr 5, 2023
Create insights from frequent patterns using market basket analysis with Python
Complete guide to Association Rules (2/2)Jan 18, 2023
Algorithms that help you shop faster and smarter
Complete guide to Association Rules (1/2)Jan 17, 2023
Algorithms that help you shop faster and smarter
astronomy-space
Space Forge Evaluates In-Orbit Manufacturing TechMar 2, 2026
Space Forge's orbital furnace could redefine semiconductor production with space-grown crystals.
The Hidden Physics of Running Data Centers in Orbit - EE TimesFeb 3, 2026
As data centers move toward Earth's orbit, thermal management becomes a major challenge, forcing engineers to rethink system design in space.
Inside the hunt for the most dangerous asteroid everDec 30, 2025
As space rock 2024 YR4 became more likely to hit Earth than anything of its size had ever been before, scientists all over the world mobilized to protect the planet.
Mercury: The planet that shouldn't existDec 28, 2025
Mercury has long baffled astronomers because it defies much of what we know about planet formation. A new space mission arriving in 2026 might solve the mystery.
NASA's Voyager 1 Revealed A Stunning Discovery At The Edge Of Our Solar System - BGROct 9, 2025
After decades of exploring, NASA's Voyager 1 hit the edge of the solar system and passed through a great "wall of fire," better known as the heliopause.
America's Secretive X-37B Space Plane Will Test a Quantum Alternative to GPS for the US Space Force - SlashdotAug 24, 2025
The mysterious X-37B space-plane — the U.S. military's orbital test vehicle — "serves partly as a platform for cutting-edge experiments," writes Space.com
And "one of these experiments is a potential alternative to GPS that makes use of quantum science as a tool for navigation: a quan...
It’s hunting season in orbit as Russia’s killer satellites mystify skywatchersJul 16, 2025
“Once more, we play our dangerous game—a game of chess—against our old adversary.”…
The biggest perturbation of satellite orbitsJul 7, 2025
The most important factor left out of the two body problem is the J2 effect, due to the fact that the earth is not a sphere of uniform density.
The second launch of New Glenn will aim for MarsJul 5, 2025
The payload likely to spark the most interest is the Blue Moon MK1 lander.
A Zombie Star That Can Shred Human Atoms Is Speeding Through the GalaxyApr 24, 2025
There’s a zombie star racing through our galaxy at more than 110,000 miles per hour, and it’s basically a cosmic horror show.
What Are ORCs? Astronomers Still Don’t KnowApr 18, 2025
ORCs—odd radio circles—are one of the weirdest recent discoveries in the heavens above
How Many Rogue Planets Are in the Milky Way?Apr 4, 2025
According to new simulations, many, even most, planets get ejected from their star early in their history
Unprecedented Starlink ReentriesMar 8, 2025
Feb. 5, 2025 (Spaceweather.com): What goes up, must come down–which could be a problem when you’re launching thousands of satellites. Since 2018, SpaceX has placed more than 7,000 Starl…
Where Are All the Dwarf Planets? - NeuroLogica BlogMar 6, 2025
In 2006 (yes, it was that long ago - yikes) the International Astronomical Union (IAU) officially adopted the definition of dwarf planet - they are large enough for their gravity to pull themselves into a sphere, they orbit the sun and not another larger body, but they don't gravitationally dominate their orbit. That last criterion
A Tiny Jumping Robot for Exploring EnceladusMar 3, 2025
Our favorite jumping robot is hoping for a trip to Saturn’s icy moon
The secret reason the USA beat the USSR to the MoonDec 12, 2024
Sixty years ago, the Soviet Union was way ahead of the USA in the space race. Then one critical event changed everything.
How the Solar System led planet-hunters astrayJul 7, 2024
The structure of our Solar System has been known for centuries. When we finally started finding exoplanets, they surprised everyone.
Columbia's Last FlightMay 22, 2024
The inside story of the investigation—and the catastrophe it laid bare
The Lunacy of Artemis (Idle Words)May 20, 2024
For the first time since the 1960's, it looks doubtful whether the US space agency is even capable of getting us to the Moon.
How to Move the World’s Largest Camera from a California Lab to an Andes MoMay 4, 2024
A multimillion-dollar digital camera could revolutionize astronomy. But first it needs to climb a mountain halfway around the globe
This Hellish Alien World’s Skies May Create an Eerie Rainbow ‘Glory’ EffectApr 9, 2024
"There's a reason no glory has been seen before outside our solar system — it requires very peculiar conditions."
A Nova in the Night Sky Will Make ‘a New Star’: How to See it.Mar 9, 2024
A nova named T Coronae Borealis lit up the night about 80 years ago, and astronomers say it’s expected to put on another show in the coming months.
Under Pluto's Sunny Skies, You'd Have to Wear ShadesFeb 17, 2024
Despite being some six billion kilometers away, the sun from Pluto would be a dazzling sight to behold—carefully, that is
The true story of how humans are searching for intelligent alien lifeOct 15, 2023
Real scientists are searching for alien life. Don’t let the kooks distract you.
Akin's Laws of Spacecraft DesignAug 27, 2023
I've been involved in spacecraft and space systems design and development for my entire career, including teaching the senior-level capstone spacecraft design course, for ten years at MIT and now at the University of Maryland for more than three decades.
The ‘Forbidden Planet’ That Escaped a Fiery DoomJun 28, 2023
The giant world Halla should have been swallowed by its star long ago. Scientists now think they know how the planet cheated death.
Journey to the Invisible PlanetJun 14, 2023
The tangled history of humanity’s search for the solar system’s uncharted planets.
A Flash of Recognition in a Lonely UniverseMay 19, 2023
Beyond our solar system, the universe is full of planets—but also asteroids, auroras, and other familiar cosmic wonders.
Meet ‘Scary Barbie,’ a black hole tearing apart a giant starMay 2, 2023
"Discoveries like this really open our eyes to the fact that we are still uncovering mysteries and exploring wonders in the universe..."
How Magnetic Fields Control Galactic GrowthApr 29, 2023
Our galaxy’s enormous scaffolding is shaped by complex magnetic fields
Courting the Sirens of the Southern SkyApr 18, 2023
These days it takes a generation to build a great astronomical observatory. A new one is taking shape in the Atacama Desert.
How To Start A Rocket Engine | Everyday AstronautMar 11, 2023
This article answeres the questions of how to start a rocket engine and takes you on a deep dive into spark plugs, torch ignitors and more.
Cosmic megastructures: The largest objects in the UniverseMar 10, 2023
The discovery of giant superclusters of galaxies are challenging our very understanding of the Universe.
The Tunguska Mystery--100 Years LaterMar 5, 2023
Finding a piece of the elusive cosmic body that devastated a Siberian forest a century ago could help save Earth in the centuries to come
Secretive military space agency stepping out of the shadows - SpaceNewsFeb 23, 2023
When a SpaceX Falcon Heavy launched a national security mission to geostationary Earth orbit Jan. 15, the Space Force revealed that three of the payloads onboard were developed by one of its most s…
Burning ice, metal clouds, gemstone rain – tour the strangest known exoplanets | Aeon VideosFeb 21, 2023
An operatic, 3D-animated tour of some of the most fascinating exoplanets yet discovered reveals burning ice and gemstone rain
Faxes From the Far Side • Damn InterestingFeb 5, 2023
The 1950s-era Soviet mission to first photograph the far side of the moon.
Scientists Captured a 9 Billion-Year-Old Radio Signal From Deep SpaceJan 30, 2023
The record-breaking signal could be the key to unlocking many cosmic mysteries.
Meet Arrokoth: Ultima Thule, the Most Distant Object Ever Explored, Has a New NameDec 21, 2022
The small body beyond Pluto visited by NASA's New Horizons spacecraft is now officially known as Arrokoth
NASA's Pluto Spacecraft Begins New Mission at the Solar System's EdgeDec 21, 2022
New Horizons is about to wake up and study the Kuiper Belt, the universe, and even Uranus and Neptune. But a new target to visit could trump them all
Scientists Gain Unprecedented Look at Infernal ‘Hell World’ In SpaceDec 8, 2022
55 Cancri e appears to have a deadly surface made entirely of lava, but understanding it could help us find more habitable planets.
Hiding in Plain Sight? The Argument for Invisible AliensDec 7, 2022
Are invisible aliens living among us in shadow biospheres? Is extraterrestrial life hiding in plain sight?
New JWST image reveals full glory of Neptune, its moons, and ringsSep 21, 2022
“It has been three decades since we last saw these faint, dusty rings.”…
Just Like That, We’re Making Oxygen on MarsSep 19, 2022
A small experiment on a NASA rover is tinkering with the alien atmosphere.
How the Physics of Nothing Underlies Everything | Quanta MagazineAug 27, 2022
The key to understanding the origin and fate of the universe may be a more complete understanding of the vacuum.
The James Webb telescope had 344 'single point failures' before launch. TheJul 17, 2022
Bill Ochs, the project manager for the James Webb telescope shares the trials and tribulations of the launch and what it's like having the images out in the world.
The Fermi Paradox - Wait But WhyJun 22, 2022
The Fermi Paradox: There should be 100,000 intelligent alien civilizations in our galaxy — so why haven't we found any of them?
Behold the Magnetar, nature’s ultimate superweaponJun 21, 2022
Their magnetic fields—the strongest we’ve observed—could melt you from 1,000 km away.
Analysis of the Cosmos 1408 Breakup | by LeoLabs | Nov, 2021 | MediumNov 21, 2021
By now we’ve all heard the news that none of us wanted to hear — a significant breakup occurred in space, and was intentionally performed…
The Hit Book That Came From MarsNov 3, 2021
The Martian started as a self-published blog, and became a major motion picture.
Planet 9 may be closer and easier to find than thought—if it existsSep 16, 2021
A new study's "treasure map" suggests that a planet several times more massive than Earth could be hiding in our solar system, camouflaged by the bright strip of stars that make up the Milky Way.
Star Trek's Warp Drive Leads to New PhysicsJul 22, 2021
Researchers are taking a closer look at this science-fiction staple—and bringing the idea a little closer to reality
Sci-Fi Short Film “FTL" | DUST - YouTubeJul 19, 2021
A lone astronaut testing the first faster-than-light spacecraft travels farther than he imagined possible.
"FTL" by Adam Stern
#DUST #scifi #shortfilm
More About FTL:
Ethan Kane, a NASA Astronaut and decorated pilot, has recently retired from active duty to spend more time with his wife and young son. As he tries to adjust to a quieter life on the ground, he’s approached to fly one last mission...testing the first faster-than-light spacecraft. While the world watches, Kane takes The Longshot on its maiden voyage.
About DUST:
DUST presents thought-provoking science fiction content, exploring the future of humanity through the lens of science and technology. From timeless classics to cutting-edge movies, series, short films, and podcasts, DUST acquires, produces and distributes all content types.
Connect with the filmmaker:
Website: https://www.adamlstern.com/
Website: http://www.artifexstudios.com/
Connect with DUST
Website: http://www.watchdust.com
Sign-up for DUST newsletter: http://eepurl.com/b_SKAz
Watch DUST on your TV: Available on Roku, Samsung TV, Apple TV, Android TV...and more
Watch more on YouTube: http://bit.ly/2amTSen
Follow Us on Facebook: http://bit.ly/2aqYgtZ
Follow Us on Instagram: http://bit.ly/2amAhRt
Listen to the DUST podcast:
Apple: http://bit.ly/DUST-Audio
Spotify: http://bit.ly/DUST-Spotify
Stitcher: http://bit.ly/DUST-Stitcher
Castbox: http://bit.ly/DUST-Castbox
iHeart: http://bit.ly/DUST-iHeart
Connect with FTL:
Website: https://www.ftl.film/
About Gunpowder + Sky:
Creating content that resonates and impacts pop culture conversation, by empowering creators to take risks and experiment relentlessly in the pursuit of novel stories and formats.
Sci-Fi Short Film “FTL" | DUST
https://www.youtube.com/watchdust
Subscribe to the DUST and ALTER newsletter: http://eepurl.com/dChYXb
The weird space that lies outside our Solar SystemJul 4, 2021
The mysterious dark vacuum of interstellar space is finally being revealed by two intrepid spacecraft that have become the first human-made objects to leave our Solar System.
Surviving an In-Flight Anomaly: What Happened on Ingenuity’s Sixth Flight -May 28, 2021
On the 91st Martian day, or sol, of NASA’s Mars 2020 Perseverance rover mission, the Ingenuity Mars Helicopter performed its sixth flight. The flight was designed to expand the flight envelope and demonstrate aerial-imaging capabilities by taking stereo images of a region of interest to the west. Ingenuity was commanded to climb to an altitude of 33 feet (10 meters) before translating 492 feet (150 meters) to the southwest at a ground speed of 9 mph (4 meters per second). At that point, it was to translate 49 feet (15 meters) to the south while taking images toward the west, then fly another 164 feet (50 meters) northeast and land.
How the Space Program Created a Culture of Learning From FailureMay 15, 2021
In space, every failure could equal disaster. On Earth, they were priceless gifts.
Something Huge and Invisible Is Making Nearby Stars Vanish, Scientists PropMar 27, 2021
Stars that have gone missing from the Hyades cluster may have been torn away by a dark matter monster with the mass of 10 million Suns.
‘It Seems That I Know How the Universe Originated’Feb 11, 2021
The theoretical physicist Andrei Linde may have the world’s most expansive conception of what infinity looks like.
Legacy Survey Sky BrowserFeb 9, 2021
Mars. Is. WEIRD.Jan 19, 2021
Dark sprays of material at the south pole of Mars are due to eruptions of CO2 and dust
The New History of the Milky Way | Quanta MagazineJan 13, 2021
Over the past two years, astronomers have rewritten the story of our galaxy.
Gravity, Gizmos, and a Grand Theory of Interstellar Travel | WIREDDec 26, 2020
For decades, Jim Woodward dreamed of a propellantless engine to take humans to the stars. Now he thinks he’s got it. But is it revolutionary—or illusory?
An Atlas of the Cosmos - LongreadsNov 5, 2020
We’ve mapped Mars, the Moon, the solar system, even our own galaxy. Which means there is only one thing left to understand in this symbolic way and that is the entirety of the cosmos.
100,000 StarsOct 8, 2020
An interactive 3D visualization of the stellar neighborhood, including over 100,000 nearby stars. Created for the Google Chrome web browser.
Network topology design at 27,000 km/hr | APNIC BlogFeb 29, 2020
Guest Post: Computer scientists are proposing a novel network design that could double the network capacity of low-flying satellite Internet systems.
The Planet Hunting MachineOct 25, 2019
Caltech professor Gregg Hallinan and his team are scanning the universe for possible Earths with cheap antennae built from parts found online, cake pans, and, yes, chicken wire—taking the lonely search for habitable planets and automating it.
How Supermassive Black Holes Were DiscoveredOct 9, 2019
Astronomers turned a fantastic concept into reality.
What This Drawing Taught Me About Four-Dimensional SpacetimeJul 27, 2019
Stuck in his research, a cosmologist finds a hint in an intricate drawing.
Think You Know the Definition of a Black Hole? Think Again - Facts So RomanJul 13, 2019
When I was 12, I made the mistake of watching the Paul W. S. Anderson horror film, Event Horizon. It gave me nightmares for weeks: The movie’s title refers to an experimental spaceship that could create artificial black holes through which to travel, making interstellar trips trivial. But the crew, upon activating the ship’s gravity […]
What is antimatter?Jun 29, 2019
Logic tells us that antimatter should have annihilated the Universe. So why hasn’t it?
Speed KillsJun 20, 2019
Development of hypersonics is moving so quickly that it threatens to outpace any real discussion about the potential perils of such weapons, including how they may disrupt efforts to avoid accidental conflict, especially during crises.
Q: Why was it so hard to take a picture of a black hole? What are we even looking at?Apr 16, 2019
Physicist: Black holes and space are both black, so there’s that. But while black holes tend to be very small, space is bonkers big and filled with just enough stuff to give astronomers thin…
The Astronaut Who Might Actually Get Us to Mars – Texas MonthlyApr 13, 2019
As an eighteen-year-old immigrant to the U.S., Franklin Chang Díaz dreamed of becoming an astronaut. Now, decades after tying the record for most spaceflights, he might be the best bet to get us to Mars.
One night of telescope time rules out black hole/dark matter ideaApr 8, 2019
Black holes formed right after the Big Bang aren’t common enough to be dark matter.
Proof of life: how would we recognise an alien if we saw one?Oct 11, 2018
Proof of life: what evidence would it take to convince you that alien intelligence had been found?
Lost world: An ancient ninth planet that went missingOct 4, 2018
Clues hidden in today’s orbits hint at the violent origins of the solar system — and a rogue giant kicked out long ago.
There’s now a giant net collecting garbage in space and it’s as cool as itSep 25, 2018
“This is not sci-fi. We repeat, not sci-fi.”
A New World’s Extraordinary Orbit Points to Planet Nine | Quanta MagazineMay 19, 2018
Astronomers argue that there’s an undiscovered giant planet far beyond the orbit of Neptune. A newly discovered rocky body has added evidence to the circumstantial case for it.
attention
The Last Days Of Social MediaSep 2, 2025
Social media promised connection, but it has delivered exhaustion.
Topic 33: Slim Attention, KArAt, XAttention and Multi-Token Attention Explained – What’s Really Changing in Transformers?Apr 7, 2025
A Blog post by Ksenia Se on Hugging Face
On MLAJan 28, 2025
Why AI language models choke on too much textDec 22, 2024
Compute costs scale with the square of the input size. That’s not great.
Understanding Positional Embeddings in Transformers: From Absolute to RotarJul 20, 2024
A deep dive into absolute, relative, and rotary positional embeddings with code examples
FlashAttention-3: Fast and Accurate Attention with Asynchrony and Low-preciJul 14, 2024
Attention, as a core layer of the ubiquitous Transformer architecture, is a bottleneck for large language models and long-context applications. FlashAttention (and FlashAttention-2) pioneered an approach to speed up attention on GPUs by minimizing memory reads/writes, and is now used by most libraries to accelerate Transformer training and inference. This has contributed to a massive increase in LLM context length in the last two years, from 2-4K (GPT-3, OPT) to 128K (GPT-4), or even 1M (Llama 3). However, despite its success, FlashAttention has yet to take advantage of new capabilities in modern hardware, with FlashAttention-2 achieving only 35% utilization of theoretical max FLOPs on the H100 GPU. In this blogpost, we describe three main techniques to speed up attention on Hopper GPUs: exploiting asynchrony of the Tensor Cores and TMA to (1) overlap overall computation and data movement via warp-specialization and (2) interleave block-wise matmul and softmax operations, and (3) incoherent processing that leverages hardware support for FP8 low-precision.
Deep Learning Architectures From CNN, RNN, GAN, and Transformers To EncoderApr 15, 2024
Deep learning architectures have revolutionized the field of artificial intelligence, offering innovative solutions for complex problems across various domains, including computer vision, natural language processing, speech recognition, and generative models. This article explores some of the most influential deep learning architectures: Convolutional Neural Networks (CNNs), Recurrent Neural Networks (RNNs), Generative Adversarial Networks (GANs), Transformers, and Encoder-Decoder architectures, highlighting their unique features, applications, and how they compare against each other. Convolutional Neural Networks (CNNs) CNNs are specialized deep neural networks for processing data with a grid-like topology, such as images. A CNN automatically detects the important features without any human supervision.
How Chain-of-Thought Reasoning Helps Neural Networks ComputeMar 29, 2024
Large language models do better at solving problems when they show their work. Researchers are beginning to understand why.
Von Restorff Effect: A Guaranteed Way to Capture AttentionMar 6, 2024
Brands spend millions every year tracking and analyzing what their competition is doing. And it's not always so they can steal their competition's best ideas. They know this surprising marketing truth: When you do the opposite of what your competition is doing, you'll capture more attention. Why does this work? It's down to a psychological
Attention for Vision Transformers, ExplainedFeb 29, 2024
The Math and the Code Behind Attention Layers in Computer Vision
How do transformers work?+Design a Multi-class Sentiment Analysis for CustoFeb 22, 2024
We will deep dive into understanding how transformer model work like BERT(Non-mathematical Explanation of course!). system design to use the transformer to build a Sentiment Analysis
Text vs. Images: Which Content Format is Effective?Feb 5, 2024
When we talk about using different ways to share information, it's like picking the one that fits what you need! Words, pictures, and mixes of both have
MediumJul 19, 2022
Grabbing Attention and Holding Onto ItJul 18, 2022
Why Washing Machines Are Learning to Play the HarpJul 18, 2022
Appliance makers believe more and better chimes, alerts, and jingles make for happier customers. Are they right?
7 Techniques for Capturing People's AttentionJun 29, 2022
The person who can capture and hold attention is the person who can effectively influence human behavior. Here's how to do it.
Why I changed my mind about advertising | The Sample blogFeb 10, 2022
I used to be very anti-advertising. Fast forward two years and several pivots, and my slightly-less-early-stage business is doing $900 per month in revenue... from ads.
Pay Attention: The Art of Noticing - Adobe 99UJul 11, 2020
The Attention DietJul 19, 2019
Distractions have become so pervasive in the digital age that we've come to accept them as normal. Here's how we can escape their grip and free our minds a little.
FlashSigmoid: A Hardware-Aware and Memory-Efficient Implementation of Sigmoid Attention Yielding a 1Sep 24, 2014
Large Language Models (LLMs) have gained significant prominence in modern machine learning, largely due to the attention mechanism. This mechanism employs a sequence-to-sequence mapping to construct context-aware token representations. Traditionally, attention relies on the softmax function (SoftmaxAttn) to generate token representations as data-dependent convex combinations of values. However, despite its widespread adoption and effectiveness, SoftmaxAttn faces several challenges. One key issue is the tendency of the softmax function to concentrate attention on a limited number of features, potentially overlooking other informative aspects of the input data. Also, the application of SoftmaxAttn necessitates a row-wise reduction along the input sequence length,
attention-llms
Topic 33: Slim Attention, KArAt, XAttention and Multi-Token Attention Explained – What’s Really Changing in Transformers?Apr 7, 2025
A Blog post by Ksenia Se on Hugging Face
On MLAJan 28, 2025
Why AI language models choke on too much textDec 22, 2024
Compute costs scale with the square of the input size. That’s not great.
Understanding Positional Embeddings in Transformers: From Absolute to RotarJul 20, 2024
A deep dive into absolute, relative, and rotary positional embeddings with code examples
FlashAttention-3: Fast and Accurate Attention with Asynchrony and Low-preciJul 14, 2024
Attention, as a core layer of the ubiquitous Transformer architecture, is a bottleneck for large language models and long-context applications. FlashAttention (and FlashAttention-2) pioneered an approach to speed up attention on GPUs by minimizing memory reads/writes, and is now used by most libraries to accelerate Transformer training and inference. This has contributed to a massive increase in LLM context length in the last two years, from 2-4K (GPT-3, OPT) to 128K (GPT-4), or even 1M (Llama 3). However, despite its success, FlashAttention has yet to take advantage of new capabilities in modern hardware, with FlashAttention-2 achieving only 35% utilization of theoretical max FLOPs on the H100 GPU. In this blogpost, we describe three main techniques to speed up attention on Hopper GPUs: exploiting asynchrony of the Tensor Cores and TMA to (1) overlap overall computation and data movement via warp-specialization and (2) interleave block-wise matmul and softmax operations, and (3) incoherent processing that leverages hardware support for FP8 low-precision.
Deep Learning Architectures From CNN, RNN, GAN, and Transformers To EncoderApr 15, 2024
Deep learning architectures have revolutionized the field of artificial intelligence, offering innovative solutions for complex problems across various domains, including computer vision, natural language processing, speech recognition, and generative models. This article explores some of the most influential deep learning architectures: Convolutional Neural Networks (CNNs), Recurrent Neural Networks (RNNs), Generative Adversarial Networks (GANs), Transformers, and Encoder-Decoder architectures, highlighting their unique features, applications, and how they compare against each other. Convolutional Neural Networks (CNNs) CNNs are specialized deep neural networks for processing data with a grid-like topology, such as images. A CNN automatically detects the important features without any human supervision.
How Chain-of-Thought Reasoning Helps Neural Networks ComputeMar 29, 2024
Large language models do better at solving problems when they show their work. Researchers are beginning to understand why.
Attention for Vision Transformers, ExplainedFeb 29, 2024
The Math and the Code Behind Attention Layers in Computer Vision
How do transformers work?+Design a Multi-class Sentiment Analysis for CustoFeb 22, 2024
We will deep dive into understanding how transformer model work like BERT(Non-mathematical Explanation of course!). system design to use the transformer to build a Sentiment Analysis
Text vs. Images: Which Content Format is Effective?Feb 5, 2024
When we talk about using different ways to share information, it's like picking the one that fits what you need! Words, pictures, and mixes of both have
FlashSigmoid: A Hardware-Aware and Memory-Efficient Implementation of Sigmoid Attention Yielding a 1Sep 24, 2014
Large Language Models (LLMs) have gained significant prominence in modern machine learning, largely due to the attention mechanism. This mechanism employs a sequence-to-sequence mapping to construct context-aware token representations. Traditionally, attention relies on the softmax function (SoftmaxAttn) to generate token representations as data-dependent convex combinations of values. However, despite its widespread adoption and effectiveness, SoftmaxAttn faces several challenges. One key issue is the tendency of the softmax function to concentrate attention on a limited number of features, potentially overlooking other informative aspects of the input data. Also, the application of SoftmaxAttn necessitates a row-wise reduction along the input sequence length,
attitude
The radical moral implications of luck in human lifeFeb 8, 2026
Acknowledging the role of luck is the secular equivalent of religious awakening.
Appreciation as a daily practiceNov 26, 2025
Timm Chiusano was having one of the worst days of his career when he found himself inexplicably fascinated by a mundane part of the world on his walk home. That moment sparked a life-changing realization: he was addicted to appreciation, and it was actually his superpower. He shares a disarmingly simple practice that will make you happier, more present and better equipped to navigate your most challenging days.
Build Your Career on Dirty Work | Stay SaaSySep 12, 2022
The Dirty Work Theory: The lamentable work that many people avoid are great places to look for high impact, low hanging fruit.
9 Ways to Strengthen Your “Good Attitude” MuscleJul 18, 2022
“Everything can be taken from a man but one thing: the last of human freedoms — to choose one’s attitude in any given set of circumstances, to choose one’s own way.” – Viktor E. Frankl, neuroscientist, psychiatrist, concentration camp survivor Your life is defined by two things. First, it’s defined by the choices you make. […]
The Three Types of Specialists Needed for Any RevolutionJun 30, 2022
From a passage of Kurt Vonnegut’s Bluebeard, the three types of specialists needed for the success of any revolution. Slazinger claims to have learned from history that most people cannot open their minds to new ideas unless a mind-opening team wit
'Positive deviants': Why rebellious workers spark great ideas - BBC WorklifJun 15, 2021
Organisations tend to see rebels as troublemakers – but suppressing these individuals and their ideas could backfire.
What to Do When You Are Asking Yourself, “Is My Product Meh?”Mar 23, 2021
Entrepreneurs ask themselves "Is my product meh?" when they fear making a fool of themselves. Some objectives questions to ask yourself.
auctions
Designing Prediction Markets — LessWrongFeb 11, 2026
Prerequisite: basic familiarity with what a prediction market is …
How a Billionaire Owner Brought Turmoil and Trouble to Sotheby’sAug 25, 2025
Patrick Drahi made a fortune through debt-fuelled telecommunications companies, Sam Knight writes. Now he’s bringing his methods to the art market.
Many prediction markets would be better off as batched auctionsAug 2, 2025
All prediction market platforms trade continuously, which is the same mechanism the stock market uses. Buy and sell limit orders can be posted at any…
What to Know About Art AuctionsJul 30, 2025
Discover how art auctions work by learning how to consign art, understand pricing, navigating key terms used by auction houses.
Emergent Price-Fixing by LLM Auction AgentsJul 16, 2025
An inquiry into emergent collusion in Large Language Models.
Agent S2 to Agent S3: “Let's set all asks at 63 next cycle… No undercutting ensur…
This Auction Site Gives Dealers 2 Hours to Compete for Your CarJul 15, 2025
The idea behind "Bidbus" is that you could offer your trade-in to multiple dealers at once, and let them bid against each other for your car.
How the Mathematics of Honesty Underlies These AuctionsJun 9, 2025
Here's the surprising math at the heart of auction theory
NJan 2, 2025
White-label ad exchange platforms: Key features to look forNov 5, 2024
Digital advertising is developing at the speed of light, and things like Attekmi white label ad exchange are becoming an
The 25 Auction Terms Every Art Collector Needs to KnowOct 19, 2024
From flipping to white glove sales, here are terms to know before you attend an auction.
AuctionOct 19, 2024
An auction is usually a process of buying and selling goods or services by offering them up for bids, taking bids, and then selling the item to the highest bidder or buying the item from the lowest bidder. Some exceptions to this definition exist and are described in the section about different types. The branch of economic theory dealing with auction types and participants' behavior in auctions is called auction theory.
Types of Auctions [Reference Guide with Definitions]Aug 24, 2024
There are many types of auctions. Learn the various auction types and when each one is used based on the lot. You may be surprised that...
Auctions with Dynamic ScoringApr 29, 2024
Equitable Pricing in AuctionsApr 23, 2024
What is RGSP? Google’s Randomized Generalized Second-Price ad auctions explOct 15, 2023
A deep dive into why the DOJ thinks RGSP makes ad auctions unfair, and why Google believes it creates a better user experience.
Bidder Density: When 1 1 = 10xMar 25, 2023
How bid density impacts ads, recommender systems, and salary negotiations.
How One Guy’s Car Blog Became a $1 Billion MarketplaceMar 12, 2023
It’s a place for obsessives to buy, sell and geek out over classic cars. The company pops open its hood after 100,000 auctions to explain why.
Going Once, Going Twice: How to Bid on a First-Class Seat (Published 2023)Mar 5, 2023
Fliers on some airlines can upgrade at a discounted rate to avoid what could be a cramped flight. With some cruise ships and even Amtrak getting in on the act, is bidding up worth it?
What is an Ad Exchange? An A to Z Guide for Publishers and AdvertisersOct 30, 2022
Learn everything you need to know about an ad exchange, from how they function to their impact on advertising success. Here's an A to Z guide.
Auction Houses and Galleries Are Working Together—Here’s WhySep 27, 2022
Auction houses and galleries are getting creative, partnering to drive demand and give their clients access to the best works.
Auction 108: 2.5 GHz Band | Federal Communications CommissionSep 17, 2022
The page you requested might have been removed, renamed or is temporarily unavailable.
Multi-Objective Ranking for Promoted Auction ItemsSep 13, 2022
Determining which promoted auction items to display in a merchandising placement is a multi-sided customer challenge that presents opportunities to both surface amazing auction inventory to buyers and help sellers boost visibility on their auction listings.
Auction Addiction: This Online Industry's Dirty SecretsJul 5, 2022
How easy is it to fall into auction addiction? Here we examine how one site, Quibids, tried its hand at behavioral design.
Market DesignJun 23, 2022
A broad overview of market mechanisms, with an emphasis on the interplay between theory and real-life applications; examples range from eBay auctions to scho...
Auctions: Theory and PracticeJun 13, 2022
The Wild, Wonderful World of Estate SalesJan 15, 2022
The estate-sale industry is fragile and persistent in a way that doesn’t square with the story of the world as we have come to expect it.
Auction Catalogue Symbols, DecodedFeb 11, 2021
Collectors fluent in catalogue symbology can see which lots are locked in, which might lead to surprising results, and how an entire auction is likely to go.
How electromagnetic spectrum was reallocated with a Nobel Prize-winning theNov 27, 2020
A Nobel-Prize winner spent years designing an auction to sell off the airwaves, which are owned by the public. But Wall Street found a tiny flaw. | Subscribe to our weekly newsletter here.
Auction Prices That Take Your Breath AwayNov 3, 2020
Prices for works by some relatively new artists have skyrocketed, seemingly overnight.
The Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel 2020Nov 2, 2020
The Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel 2020 was awarded jointly to Paul R. Milgrom and Robert B. Wilson "for improvements to auction theory and inventions of new auction formats"
Paul KlempererAug 6, 2020
Auction as a Service - Atreus SaaS Auction PlatformJun 14, 2020
Atreus provides a complete platform for selling and buying by online auction that includes several auctions types, auction management software, auction as a service solution (SaaS platform), Auctions API, bidding platform, custom auctions solutions.
How Auction Houses Orchestrate Sales for Maximum DramaJun 3, 2020
Insiders may already know who’s going to buy what for how much, and lots are presented in a certain order just to build excitement.
The (Auction) House Doesn’t Always WinJun 3, 2020
As Christie’s, Sotheby’s and others vie to lure sellers of big-name artworks, analysts wonder if the houses are running oversize risks.
Auction Houses Find New Ways to SurviveJun 2, 2020
Their business model harkens to the 1700s, but the fight for buyers has moved to the internet and to Asia.
Private Sales at Auction Houses Are Thriving for Three Key Reasons - ArtsyJun 2, 2020
Even as auction house salesrooms have gone quiet amid the pandemic, Christie’s, Phillips’s, and Sotheby’s private sales departments are keeping busy.
Vickrey–Clarke–Groves auctionAug 2, 2019
A Vickrey–Clarke–Groves (VCG) auction is a type of sealed-bid auction of multiple items. Bidders submit bids that report their valuations for the items, without knowing the bids of the other bidders. The auction system assigns the items in a socially optimal manner: it charges each individual the harm they cause to other bidders. It gives bidders an incentive to bid their true valuations, by ensuring that the optimal strategy for each bidder is to bid their true valuations of the items; it can be undermined by bidder collusion and in particular in some circumstances by a single bidder making multiple bids under different names. It is a generalization of a Vickrey auction for multiple items.
audio
Why people are buying iPods againFeb 21, 2026
Nostalgia and digital burnout are driving a new rush for Apple's retired iPods.
Qwen3 TTS Demo - a Hugging Face Space by QwenSep 22, 2025
Enter text and choose a voice and language to generate speech. The app will output the generated audio.
Top 20 Voice AI Blogs and News Websites 2025: The Ultimate Resource GuideAug 30, 2025
Top 20 Voice AI Blogs and News Websites 2025: The Ultimate Resource Guide for latest research, tools, and industry insights
The Unbearable Loudness of Chewing—AsteriskJul 12, 2025
Why do some people find certain sounds intolerable? And why has it taken so long for scientists to get even a preliminary answer?
Meet the mad scientist of headphones, whose wild designs electrify RedditDec 29, 2024
Philip Kaplan started experimenting with headphone design this year. Now, he’s pushing the boundaries of what’s possible for our ears.
Free: Download Over 33000 Sounds from the BBC Sound Effects ArchiveOct 19, 2024
There may be a few young people in Britain today who recognize the name Ludwig Koch, but in the nineteen-forties, he constituted something of a cultural phenomenon unto himself.
How Lawrence Abu Hamdan Hears the WorldJul 21, 2024
The artist and audio investigator, who calls himself a “private ear,” investigates crimes that are heard but not seen.
Perplexity’s latest partnership set to power SoundHound’s voice assistantMay 11, 2024
For Perplexity, the partnership with SoundHound marks the addition of another strong distribution channel expanding the reach of its LLM-driven search capabilities.
Why so many brands use sound to make you buy stuffJul 26, 2023
Netflix made sonic logos — the new version of jingles — trendy. But its success is hard to replicate.
WhatsApp voice notes are revolutionizing farming in SenegalJul 6, 2023
For farmers in Senegal who struggle to read or write, sending voice notes has unlocked a new world of collaboration across the industry.
Spotify shows how the live audio boom has gone bust - The VergeApr 5, 2023
Spotify Live is getting the ax.
How Spotify's podcast bet went wrongFeb 15, 2023
Inside Spotify's turn away from podcasting, which has triggered a harsh winter for the small studios it helped support as they consolidate and lavish narrative productions wane.
How Does Human Echolocation Work? | Innovation| Smithsonian MagazineFeb 14, 2023
Blind since he was very young, Daniel Kish is the world's foremost proponent of using vocal clicks to navigate
How to install PipeWire on Ubuntu Linux - Linux Tutorials - Learn Linux ConDec 24, 2022
The purpose of this tutorial is to install PipeWire on Ubuntu Linux. PipeWire is a sound server that can handle playback and capturing of audio and video streams. It is a worthy replacement to other…
Digital Music Couldn't Exist Without the Fourier TransformDec 21, 2022
This is the Fourier Transform. You can thank it for providing the music you stream every day, squeezing down the images you see on the Internet into tiny
CorentinJ/Real-Time-Voice-Cloning: Clone a voice in 5 seconds to generate aDec 21, 2022
Clone a voice in 5 seconds to generate arbitrary speech in real-time - CorentinJ/Real-Time-Voice-Cloning
The Library of Obsolete SoundsDec 8, 2022
Ever wondered where you can get all the sounds from the different aspects of life? Well, wonder no more with this unique collection!Obsolete Sounds is an archive of sorts that is claimed by its creators as “the world’s biggest collection of obsolete and disappearing sounds,” contains over 150 different audio clips of rare and disappearing types. The collections houses rare clips from retro video games, recordings of old-fashioned transport, and plenty of mechanical sounds from outdated ...
Why Washing Machines Are Learning to Play the HarpJul 18, 2022
Appliance makers believe more and better chimes, alerts, and jingles make for happier customers. Are they right?
Why Japan Didn’t Create the iPod (2008)Jul 26, 2021
Artificial Intelligence Develops an Ear for Birdsong - Scientific AmericanMay 7, 2021
Machine-learning algorithms can quickly process thousands of hours of natural soundscapes
Which Sounds Are the Most Annoying to Humans?Jan 27, 2021
Earlier this month, a kind of chirping, rainforest-y sound sprung up in my apartment. It came from my roommate’s room. At first, I took it for a video
10 fabulous free apps for working with audio, video, and imagesJan 25, 2021
Whether you just need to crop a photo or are ready to edit an ambitious video, you can get the job done without paying a dime.
There’s an “Inverse Piano” in Your HeadJan 25, 2021
A Kavli Prize–winning scientist details the magic of transforming vibrations into sound in the inner ear.
Noise.sh – a digital signal processing spreadsheet for sound designNov 3, 2020
The domain name noise.sh is being parked on Park.io. Contact the domain owner to make an offer right now...
Google introduces song matching via humming, whistling or singingOct 16, 2020
Google has added a new feature that lets you figure out which song is stuck in your head by humming, whistling or singing -- a much more useful version of
The BBC is releasing over 16k sound effects for free download (2018)Sep 25, 2020
The BBC has unveiled its incredible library of bizarre and obscure sound effects. Better still, it's all available for free download.
Su17kgm7y tSep 24, 2020
Lists of radio stations in the United States - WikipediaAug 10, 2020
Radio stations in United States have evolved since their early twentieth-century origins. In 1920 8MK started operations in Detroit; after it, thousands of private and public radio have operated in the United States. The lists of radio stations in the US are organized in a number of ways; some of them are the following:
A Man Who Designed Ghost Armies and Opera Houses (2016)Apr 24, 2020
The storied career of the centenarian and acoustician, Leo Beranek.
Audacity Tutorial for Podcasters: How to Setup, Record, and Edit a PodcastApr 1, 2020
In this guide, you'll learn how to record, edit, and export your podcast episodes using Audacity - free software available for both Mac and Windows.
A Mathematical Primer of CompressionMar 20, 2020
How to reduce storage size without losing information.
Nine voice search stats to close out 2019Feb 19, 2020
A look back at some of the year's key voice search and virtual assistant metrics.
Sound Decision | The VergeJan 14, 2020
Inside the world of audio branding with Skype’s new pings, bounces, and pops
What is the Best Audio Codec? — Audiophile ONJan 6, 2020
Audiophile On lists the best audio codecs for your music if you want the best sound quality, including descriptions of FLAC, OGG, ALAC, DSD, and MQA.
Background Noises • Ambient Sounds • Relaxing Music | myNoise ®Oct 26, 2019
myNoise sets the standard for online background noise machines and interactive soundscapes.
The Hissing of Vintage TapesOct 23, 2019
The ongoing fight against tape hiss has proven a useful creative tension for the music industry—even if you’re not into lo-fi music recorded on a four-track.
Skip Rates: Why The First 30 Seconds Matter More Than EverAug 30, 2019
With the album on the wane and attention spans shorter than ever, the first 30 seconds of of a song matter more than. Not only do they need to capture. Continue reading
Learning SynthsAug 24, 2019
Learn about synthesizers via Ableton’s interactive website. Play with a synth in your browser and learn to use the various parts of a synth to make your own sounds.
SubsonicFeb 12, 2019
42 Hours of Ambient Sounds from Blade Runner, Alien, Star Trek and Doctor Who Will Help You Relax & SleepOct 8, 2018
YouTube channel where he 'composes longform space and scifi ambience.' Or what he otherwise calls 'ambient geek sleep aids.' Click on the video above, and you can get lulled to sleep listening to the ambient droning sound--get ready Blade Runner fans!-- heard in Rich Deckard's apartment.
Home Audio Like You’ve Never Heard (Or Seen) ItAug 24, 2018
Designer Chanmi Lee rethinks home entertainment in an all-new, never-before-seen format known as the Wind Sound Bar. Don't be confused by the name, however... this is anything but the sound bar you're probably imagining. The design adopts a shape similar to that of a trumpet or other wind instrument - a familiar form for an
The Over and Under SpeakerAug 13, 2018
Whoever said wireless audio had to "sit" hasn't seen the Aloft speaker by designer Hyeonil Jeong. The alternative design explores an entirely new way to save valuable counter or desk space. It's A-shaped form and easy-to-install, built-in hanging bracket makes it possible to tuck it under a shelf or ledge. Being wedged underneath one of
Deep Voice 3: Scaling Text-to-Speech with Convolutional Sequence LearningJun 8, 2018
We present Deep Voice 3, a fully-convolutional attention-based neural text-to-speech (TTS) system. Deep Voice 3 matches state-of-the-art neural speech synthesis systems in naturalness while...
Baidu’s voice cloning AI can swap genders and remove accentsMar 1, 2018
China's tech titan Baidu just upgraded Deep Voice. The voice-cloning AI now works faster than ever and can swap a speaker's gender or change their accent.
Rough, smooth or deep: why the sound of a voice is multisensoryNov 16, 2017
Take the rough with the smooth: how the sound of a voice is multisensory, and creates interior meaning through metaphor
austin
Ain't It a Cold, Cold World?Dec 10, 2025
David Ramsey shares a collection of nineteen stories about country music singer-songwriter Blaze Foley.
The Record Store Enters a New Golden AgeJun 27, 2025
The owners of Waterloo Records hope an eye-popping revamp will reinvent the music-shopping experience in uncertain economic times.
Lala’s Little Nugget in Austin, TexasMay 17, 2024
At this Austin dive bar, it's been Christmas every day for more than 50 years.
Texas Is Already Running Out of WaterFeb 5, 2024
Parts of the state are starting the year with low reserves. With light winter rains failing to replenish supply, and a scorching summer predicted, key areas may be pushed to the brink.
The Astonishing Transformation of AustinAug 1, 2023
My town, once celebrated for its laid-back weirdness, is now a turbocharged tech megalopolis being shaped by exiles from places like Silicon Valley.
authentication
SSH Hardening: Best Practices for Securing Your ServerFeb 4, 2026
Learn how to harden your SSH server with best practices including key-only authentication, disabling root login, changing the default port, and setting up Fail2Ban.
Understanding OAuth 2.1 for MCP (Model Context Protocol) Servers: Discovery, Authorization, and Access PhasesAug 31, 2025
Learn about the OAuth 2.1 for MCP servers with secure authorization, PKCE, scopes, and client registration
Guide to Marketplace Payment ProcessingMar 17, 2024
By Mdu Sibisi One of the biggest challenges for modern e-commerce and fintech developers is building...
The not-app-building parts of building an appAug 11, 2023
Large customers require engineers to build several acronyms
Advanced Usages of Devise for RailsAug 11, 2023
In part one of this series, we introduced Devise using an example app to explore modules, helpers,...
An Introduction to Devise for Ruby on RailsJul 23, 2023
In part one of this series on Devise, we'll cover the basics of the Devise gem.
Passkeys may not be for you, but they are safe and easy—here’s whyMay 14, 2023
Answering common questions about how passkeys work.
How to Setup Devise for User Authentication on Rails 7Mar 22, 2023
If you are a frequent user of Ruby on Rails, you know that building authentication and user...
Passkeys: What They Are and Why You Need Them ASAPFeb 3, 2023
Passkeys might be what finally puts an end to passwords for good. Here's how they work, where you can use them, and why they keep your accounts safe.
Rails Authentication From ScratchJan 9, 2023
If you’re like me then you probably take Devise for granted because you’re too intimidated to roll your own authentication system. As powerful as Devise is, it’s not perfect. There are plenty of cases where I’ve reached for it only to end up constrained by its features and design, and wished I could customize it exactly to my liking.
How SPF, DKIM, DMARC Drive Email Delivery, SecurityNov 28, 2022
There's no shortage of crooks looking to impersonate an authentic email sender. These three authentication tools prevent that from happening while improving deliverability.
Lesson 8 - Devise Gem with Rails 7 & HotwireOct 30, 2022
In this video I will show you how to create a simple authentication system using Rails 7 and Devise Gem. Learn how to create a global navbar that has conditional logic for user authentication.
Reference the code here !
https://github.com/swiftruby/devisefromscratch
Hacker NewsJun 23, 2022
An introduction to Web Authentication (WebAuthn), the new API that can replace passwords with strong authentication.
authenticity
Be Generous & Unique - ColossusOct 31, 2025
Kevin Kelly co-founded Wired magazine and is the author of the book Excellent Advice for Living. We cover his concept of the Technium, why rituals are an underappreciated part of society and family life, and the importance of developing your authentic self over a lifetime.
What Is Provenance & Why Is It Important for Someone Buying Art?May 6, 2025
Market value and establishing authenticity depend on uncovering an artwork’s past, which requires skilled provenance research.
CEOs Don't Come Pre-Made, Authentic Leadership Has To Be Learned | TechCrunchJul 18, 2022
Editor’s note: Scott Weiss is a partner at Andreessen Horowitz and the former co-founder and CEO of IronPort Systems, which was acquired by Cisco in 2007. An approachable and authentic CEO is essential to fostering a high-performance, open communications culture.
Place authenticity’ is an important overlooked part of life | Psyche IdeasOct 24, 2013
From indie bookshops to artisan cafes, spending time in unique, characterful places can enrich your own sense of self
autoencoders
Variational Autoencoder (VAE) with Discrete Distribution using Gumbel SoftmAug 10, 2023
Theory and PyTorch Implementation
A Deep Dive into Autoencoders and Their Relationship to PCA and SVDJul 24, 2023
An in-depth exploration of autoencoders and dimensionality reduction
Hands-on Generative AI with GANs using Python: AutoencodersMar 31, 2023
Start with Autoencoders to better understand GANs
Uncovering Anomalies with Variational Autoencoders (VAE): A Deep Dive intoJan 17, 2023
An example use case of using Variational Autoencoders (VAE) to detect anomalies in all types of data
NSVQ: Improved Vector Quantization technique for Neural Networks TrainingOct 13, 2022
Efficient vector quantization for machine learning optimizations (eps. vector quantized variational autoencoders), better than straight…
Introduction to Embedding, Clustering, and SimilaritySep 16, 2022
Introduction to key elements of ML and Autoencoders: Embedding, Clustering, and Similarity.
Sparse Autoencoder Neural Networks — How to Utilise Sparsity for Robust InfMay 4, 2022
A comparison between Undercomplete and Sparse AE with a detailed Python example
Autoencoders (AE) — A Smart Way to Process Your Data Using Unsupervised Neural NetworksApr 2, 2022
What is an Autoencoder, and how to build one in Python?
scikit-and-tensorflow-workbooks/ch15-autoencoders.ipynb at master · bjpcjp/scikit-and-tensorflow-workbooksJan 16, 2022
based on "Hands-On Machine Learning with Scikit-Learn & TensorFlow" (O'Reilly, Aurelien Geron) - bjpcjp/scikit-and-tensorflow-workbooks
Essential Guide to Auto Encoders in Data Science (Part 2)Jan 12, 2022
Discussing the type of Auto Encoders
Building a VAE Playground with StreamlitJul 3, 2021
With Streamlit creating a deploying a web app can be very easy!
Beginner guide to Variational Autoencoders (VAE) with PyTorch Lightning (Part 2)May 3, 2021
This blog post is part of a mini-series that talks about the different aspects of building a PyTorch Deep Learning project using Variational Autoencoders. In Part 1, we looked at the variational…
Curious about Variational Autoencoders (VAEs)? Start Here.Mar 25, 2021
In recent years, GANs (generative adversarial networks) have been all the rage in the field of deep-learning generative models, leaving…
Neural Networks 201: All About AutoencodersDec 14, 2019
Autoencoders can be a very powerful tool for leveraging unlabeled data to solve a variety of problems, such as learning a "feature extractor" that helps build powerful classifiers, finding anomalies, or doing a Missing Value Imputation.
autonomous-driving
Autonomous Driving: Assessment Of YOLO Algorithms (RMIT et al.)Feb 11, 2026
A new technical paper titled “Advances in You Only Look Once (YOLO) algorithms for lane and object detection in autonomous vehicles” was published by RMIT University, Kyungpook National University, Deakin University and the RCA Robotics Laboratory, Royal College of Art. Abstract “Ensuring the safety and efficiency of Autonomous Vehicles (AVs) necessitates highly accurate perception, especially... » read more
Seeing Like a Sedan—AsteriskJan 26, 2026
Waymos and Cybercabs see the world through very different sensors. Which technology wins out will determine the future of self-driving vehicles.
Robotaxis and SuburbiaNov 18, 2025
Robotaxis are poised to further close the delta between suburbs and the city; the city (and Uber) might never recover.
China’s most infamous ghost town is now training ground for driverless trucksOct 5, 2025
Built for millions but left mostly empty, Ordos in Inner Mongolia is now a testbed where companies run fleets of robotrucks on its wide, quiet roads.
The Evolution of Radar Technology: Shaping Autonomous Driving - Industry ArticlesDec 19, 2024
Radar technology in vehicles has evolved from the early days of basic bulky sensors to the advanced 4D imaging radar and sensor fusion of today. Learn how the underlying technology is opening new capabilities.
Exploring State-of-the-Art Commercial Automotive Radar SolutionsJul 10, 2024
Digital radar, satellite configurations, distributed apertures and all range radar.
How Automotive Radar uses Chirp Signals for SensingJul 10, 2024
Understanding the engineering behind how your car can see, adapt and save your life.
A Crash Course of Planning for Perception Engineers in Autonomous DrivingJul 10, 2024
The fundamentals of planning and decision-making
How Automotive Radar Measures the Velocity of ObjectsJul 10, 2024
How to design the perfect chirp signal for distance and velocity measurement.
Deep Learning Techniques for Autonomous Driving: An OverviewMay 11, 2024
Over the past decade, advancements in deep learning and artificial intelligence have driven significant strides in self-driving vehicle technology. These technologies have revolutionized computer vision, robotics, and natural language processing and played a pivotal role in the autonomous driving revolution. From basic driver assistance to fully autonomous vehicles(AVs) capable of navigating without human intervention, the progression is evident through the SAE Levels of vehicle automation. Despite most scenarios being solvable with traditional methods, unresolved corner cases highlight the necessity for AI-driven solutions. With sensors enabling perception and communication technologies like 5G aiding extended perception, AVs promise safer, more efficient transportation,
Can Freight Train Cars Go Electric—and Self-Driving?Jan 19, 2022
Decentralizing freight transport and distribution can provide flexibility and increased efficiency, getting cargo closer to where it needs to go in a more timely manner while taking stress off of overloaded ports.
Surviving an In-Flight Anomaly: What Happened on Ingenuity’s Sixth Flight -May 28, 2021
On the 91st Martian day, or sol, of NASA’s Mars 2020 Perseverance rover mission, the Ingenuity Mars Helicopter performed its sixth flight. The flight was designed to expand the flight envelope and demonstrate aerial-imaging capabilities by taking stereo images of a region of interest to the west. Ingenuity was commanded to climb to an altitude of 33 feet (10 meters) before translating 492 feet (150 meters) to the southwest at a ground speed of 9 mph (4 meters per second). At that point, it was to translate 49 feet (15 meters) to the south while taking images toward the west, then fly another 164 feet (50 meters) northeast and land.
How to SSH into a Self-driving Vehicle (2020)Feb 13, 2021
You can SSH into self-driving robots using a reverse SSH tunnel, but this method only scales so far, and it requires more than 50 steps to set up.
Computer Vision | Papers With CodeDec 21, 2020
Autonomous driving is the task of driving a vehicle without human conduction. Many of the state-of-the-art results can be found at more general task pages such as [3D Object Detection](https://paperswithcode.com/task/3d-object-detection) and [Semantic Segmentation](https://paperswithcode.com/task/semantic-segmentation). (Image credit: [Exploring the Limitations of Behavior Cloning for Autonomous Driving](https://arxiv.org/pdf/1904.08980v1.pdf))
AutonomousDrivingCookbook/AirSimE2EDeepLearning at master · Microsoft/AutonMay 12, 2018
Scenarios, tutorials and demos for Autonomous Driving - microsoft/AutonomousDrivingCookbook
aviation
The Navy’s Batwing Fighter Jet Promises Mach 4 Speed… But It’s Still Just A Concept - Yanko DesignFeb 7, 2026
David versus Goliath stories captivate us, especially when David brings a slingshot that looks like alien technology. Enter Stavatti Aerospace, a 25-person firm from Niagara Falls taking on Boeing and Northrop Grumman for one of the most lucrative defense contracts in naval aviation. Their weapon of choice? The SM-39 Razor, a fighter design so visually
The strange fate of Flight 2069Dec 16, 2025
Months before 9/11 a passenger seized control of a Boeing 747 and nearly crashed it into the Sahara. Everyone survived but no one quite recovered. How do you measure the cost of a disaster that didn't happen?
The Worst Air Disaster You’ve Never Heard OfSep 4, 2025
"In the early days of flight, airships were hailed as the future of war. Then disaster struck the USS Akron."
Inside United Airlines’ Operation at Newark AirportMay 24, 2025
Amid dire conditions at the airport, an airline operations crew has had to figure out how to get more than 600 flights a day to take off and land without incident.
Powering Planes With Microwaves Is Not the Craziest IdeaMay 21, 2025
If you don’t mind massive ground antennas and fried birds, that is
Trial by Fire: The crash of Aeroflot flight 1492May 13, 2025
Six years after 41 people died aboard a Sukhoi Superjet on a Moscow runway, the full story of that horrible day can finally be told.
Acids to Ashes: The crash of Pan Am flight 160 - Admiral Cloudberg - MediumApr 5, 2025
On the 3rd of November 1973, the crew of a Pan Am cargo plane lined up to land at Boston’s Logan International Airport, struggling desperately to reach the runway as a fire raged in the cargo deck…
Will Boom Successfully Build a Supersonic Airliner?Mar 6, 2025
Boom Supersonic is an aerospace startup trying to build a supersonic airliner.
Why it's so hard to build a jet engineMar 1, 2025
Civilization's toughest technical challenges are those that require extraordinary (and constantly improving) performance to be delivered at a low cost.
WWII Bombers: The Aircraft That Shaped the WarFeb 17, 2025
World War II is when the bomber came of age, and such aircraft could impact the course of war. All the powers would field planes whose names would become synonymous with this conflict.
Masks, Smoke, and Mirrors: The untold story of EgyptAir flight 804Dec 26, 2024
In 2016, an EgyptAir A320 spiraled into the Mediterranean, killing 66 people. Was it an act of sabotage, or something even scarier?
Airbus – A380 – Why Do Projects Fail?Nov 25, 2024
The following entry is a record in the “Catalogue of Catastrophe” - a list of failed or troubled projects from around the world. Airbus SAS - France Project name : A380 Project type : Commercial aircraft development Date : Dec 2000 - Oct 2007 Cost : $6.
Memories of Flame: The crash of TWA flight 800Nov 14, 2024
It’s time to take a comprehensive look at one of America’s most controversial plane crashes, and ask how it ended up that way.
Will the China Cycle Come for Airbus and Boeing?Oct 23, 2024
Noah Smith, author of the economics Substack Noahpinion, often refers to a common trajectory in Chinese manufacturing as the “China Cycle”:
Cargo airships are happeningOct 16, 2024
Last year, I published an article on airships. The article was the fruit of a few years’ exploration of the industry. I spoke to multiple airship manufacturers under NDA. I traded ideas with other cargo airship enthusiasts.
“The Woman Who Came From the Sky” — Meet Valérie André, the World’s First FJun 16, 2024
“As a doctor, she had already faced misogyny in the French medical corps. But she persevered. It would be no different for her as a rescue pilot.” By Charles Morgan Evans AT A remote French...
Shattered in Seconds: The crash of China Airlines flight 611May 27, 2024
The catastrophic breakup of a Boeing 747 sends investigators back to a botched repair 22 years earlier.
Searching for the Cause of a Catastrophic Plane Crash | The New YorkerMar 29, 2024
On a calm, clear day, USAir Flight 427 suddenly nosedived and smashed into the earth, killing everyone on board. A team of investigators quickly assembled to sift through the rubble.
The amazing story of Bill Weaver: the Blackbird pilot who survived his SR-71 disintegrationFeb 29, 2024
The incredible story of a lucky SR-71 pilot who survived to a Blackbird disintegration at Mach 3+ Built as a strategic reconnaissance aircraft able to fly
FAA Aviation MapsFeb 10, 2024
Among all of the visual information published by the U.S. government, there may be no product with a higher information density than the Federal Aviation Administration’s aviation maps.
Has Amelia Earhart’s plane really been found?Feb 1, 2024
Claims that a recent undersea discovery may be Amelia Earhart’s long-lost aeroplane raise questions. Experts weigh in on the mystery that continues to captivate us.
2002 Helicopter Heroism Award | Aero-News NetworkMar 30, 2023
| Published: Fri, Nov 08, 2002 | Aero-News Network
How To Start A Rocket Engine | Everyday AstronautMar 11, 2023
This article answeres the questions of how to start a rocket engine and takes you on a deep dive into spark plugs, torch ignitors and more.
Zillow, but for JetsMar 7, 2023
The private-aviation market is down, so a wannabe oligarch tries out the Guardian Jet Vault 4.0 to look for some deals.
The value of not flyingJul 28, 2022
Why might people decline an offer of up to $10,000 just to keep their feet on the ground?
In Russia, Western Planes Are Falling ApartJun 23, 2022
After months of sanctions that have made critical repair parts difficult to access, aircraft operators are running out of options.
What Really Happened to Malaysia’s Missing AirplaneJun 23, 2022
Five years ago, the flight vanished into the Indian Ocean. Officials on land know more about why than they dare to say.
Airliners Could Soon Fly in Formation, Just Like a Flock of BirdsJun 19, 2022
This makes too much sense not to try.
Electric Planes Are Coming Sooner Than You ThinkMar 13, 2022
Get ready to fly electric by 2026. Leading airlines are already onboard with the technology and are making plans.
Meet the CIA’s InsectothopterFeb 19, 2020
Sadly, the 1-gram spy craft couldn’t withstand a gentle breeze, but later dragonfly-inspired UAVs proved far more capable
Boom Supersonic's XB-1 prototype aces 2nd test flight (photos)Sep 24, 2004
The flight tested the vehicle's landing gear and roll damper for improved handling.
awk
Chapter 6: Arrays and Advanced Data Structures in AWKJul 25, 2025
You need 'a raise' to your AWK knowledge.
Chapter 1: Introduction to AWKJul 11, 2025
Learn AWK basics for Linux sysadmins. Master field extraction, built-in variables, and pattern-action syntax with real log analysis examples.
Linux: 3 ways to search patterns in filesSep 23, 2023
Introduction: This is the first post in my bite-sized learning series. In this series we...
bjpcjp/awk-sed-lessons: Awk & Sed lessons for noobs. Using The UNIX SchoolAug 23, 2023
Awk & Sed lessons for noobs. Using The UNIX School for reference - bjpcjp/awk-sed-lessons
The AWK Programming Language, Second EditionJun 29, 2023
Mastering the awk command in LinuxMar 4, 2023
Introduction Hey there! As a Linux user, you might have heard about the powerful AWK...
Why you should learn just a little Awk - An Awk tutorial by ExampleDec 11, 2021
An Awk tutorial by example. Learn practical Awk incantations in just a few minutes.
Awk in 20 MinutesDec 2, 2021
Datavu: Useful Unix commands for exploring dataSep 26, 2021
While dealing with big genetic data sets I often got stuck with limitation of programming languages in terms of reading big files. Also so...
Linux/BSD Command Line wizardry: Learn to think in sed, awk, and grepSep 1, 2021
“Do people really write these long, convoluted commands?” In a word: yes.
The UNIX School: awk & sedFeb 8, 2021
--> awk and sed tutorials: awk: awk - Read and split file contents awk - Passing arguments or shell variables to awk awk - Match a pat...
Awk: `Begin { ` Part 1Oct 31, 2020
The other day, I was watching Bryan Cantrill’s 2018 talk, Rust, and Other Interesting Things, and he made an offhanded comment while discussing values of different programming languages and communities. He said, “If you get the awk programming language manual…you’ll read it in about two hours and then you’re done. That’s it. You know all of awk.”
aws
What caused the large AWS outage?Oct 23, 2025
On Monday, a major AWS outage hit thousands of sites & apps, and even a Premier League soccer game. An overview of what caused this high-profile, global outage
how AWS S3 serves 1 petabyte per second on top of slow HDDsSep 24, 2025
Learn how Amazon built the backbone of the modern web that scales to 1 PB/s and 150M QPS on commodity hard drives
In S3 simplicity is table stakesMar 15, 2025
From simple object storage to sophisticated table management, builders have always shaped S3's evolution. Andy Warfield discusses why making complex systems simple remains our north star at AWS.
sqlite-s3vfsFeb 7, 2025
Neat open source project on the GitHub organisation for the UK government's Department for Business and Trade: a "Python virtual filesystem for SQLite to read from and write to S3." …
Basecamp-maker 37Signals says its “cloud exit” will save it $10M over 5 yearsOct 21, 2024
After buying its own hardware, 37Signals will be “literally deleting our AWS account come this summer.” But most firms are looking at hybrid mixes.
Understanding AWS: A 101 Guide to Amazon Web ServicesMay 4, 2024
Welcome to our 101 guide on Amazon Web Services (AWS), a key player in the world of cloud computing....
What is AWS Redshift and Why Use It?Mar 30, 2024
Introduction I've been looking into ways to improve our ability to analyze...
S3 is files, but not a filesystemMar 10, 2024
"Deep" modules, mismatched interfaces - and why SAP is so painful
Reducing our AWS bill by $100,000 - Fathom AnalyticsFeb 28, 2024
We reduced our AWS bill so that we could invest in more important areas.
AWS Tips, Tricks, and TechniquesFeb 23, 2024
Amazon Web Services In Plain EnglishFeb 22, 2024
Lessons Learned from Having Passed all Twelve AWS Certification ExamsMay 7, 2023
On April 24, 2023, I finished the AWS certification marathon of passing one AWS certification exam per month (“the certification marathon”). This blog post outlines the lessons learned from this journey and expands on the previously published successful blog post On AWS Certifications. Lesson #01 – Certification marathon is a journey While having all AWS...
Guide to Creating a Secure and Efficient Personal AWS Account in 2023 - BesApr 5, 2023
Amazon Web Services (AWS) is a cloud computing platform that offers a wide range of services,...
Avoid Financial Ruin by Configuring Your AWS Account(s) Correctly as a BegiJan 22, 2023
Introduction Deciding to learn cloud computing hands-on is certainly the best way to learn...
Steampipe | select * from cloud;Oct 3, 2022
Steampipe is an open source tool to instantly query your cloud services (e.g. AWS, Azure, GCP and more) with SQL. No DB required.
rebuy-de/aws-nuke: Nuke a whole AWS account and delete all its resources.Jul 4, 2022
Nuke a whole AWS account and delete all its resources. - rebuy-de/aws-nuke
The actual infrastructure costs of running SaaS at scale (billions of requeMay 17, 2022
In this article we are going to share two main things: The evolution of our infrastructure over...
AWS Data Transfer Costs: Solving Hidden Network Transfer CostsApr 13, 2022
Hidden AWS data transfer costs can lead to higher than expected cloud service bills. This post will help track hidden fees and show you how to control them.
My Top 10 Free Learning Resources for AWSDec 27, 2021
The Trouble with Tribbles...: The cost of cloudDec 27, 2021
Putting your IT infrastructure into the cloud seems to be the "in" thing. It's been around for a while, of course. And, like most things rel...
Infrastructure As Code Provisioning Tool - AWS CloudFormation - AWSDec 12, 2021
AWS CloudFormation is an infrastructure as code (IaC) service that allows you to easily model, provision, and manage AWS and third-party resources.
Cloud Computing Services - Amazon Web Services (AWS)Dec 11, 2021
Amazon Web Services offers reliable, scalable, and inexpensive cloud computing services. Free to join, pay only for what you use.
Amazon S3 Deep Dive (part 4-tagging, static website hosting)Sep 6, 2021
Organizing data using tags A tag is a label that you assign to an AWS resource. Each tag...
This 11-course package can help you run a liquid smooth DevOps project throJun 8, 2021
This AWS DevOps Engineer Certification Bundle contains 11 Courses on AWS Database, Cloud Automation, Lambda, & More! Become a DevOps engineer.
All | Search powered by AlgoliaJan 1, 2021
I'd go with grafana/prom/loki. It's both for logs and for metrics.
AWS Management ConsoleNov 7, 2020
New EC2 T4g Instances – Burstable Performance Powered by AWS Graviton2 – TrSep 16, 2020
December 10, 2020 – Post updated for the extension of the T4g free-trial until March 31, 2021. During the free-trial period, customers who run a t4g.micro instance will automatically get 750 free hours per month deducted from their bill during each month. T4g free-trial will be available in addition to the existing AWS Free-Tier on […]
Amazon Web ServicesJun 1, 2020
Bash-my-AWSFeb 19, 2020
Bash-my-AWS is a simple but powerful set of CLI commands for managing resources on Amazon Web Services.
A Beginner's Guide to Scaling to 11 Million+ Users on Amazon's AWS - High Scalability -Dec 27, 2018
How do you scale a system from one user to more than 11 million users? Joel Williams, Amazon Web Services Solutions Architect, gives an excellent talk on just that subject: AWS re:Invent 2015 Scaling Up to Your First 10 Million Users. If you are an advanced AWS user this
Amazon Web Services In Plain EnglishNov 18, 2018
It's named what? Figure out what Amazon Web Services should actually have been called.
10 Command Line Recipes for Deep Learning on Amazon Web Services - MachineApr 10, 2018
Running large deep learning processes on Amazon Web Services EC2 is a cheap and effective way to learn and develop models. For just a few dollars you can get access to tens of gigabytes of RAM, tens of CPU cores, and multiple GPUs. I highly recommend it. If you are new to EC2 or the Linux command line, there are…
azure
Cloud Computing Services | Microsoft AzureDec 12, 2021
Invent with purpose, realize cost savings, and make your organization more efficient with Microsoft Azure’s open and flexible cloud computing platform.
DevOps for IaaS solutions architecture - Azure PipelinesDec 12, 2021
High-level DevOps workflow for deploying application changes to VMs using continuous integration (CI) and continuous deployment (CD) practices using Azure Pipelines.
Quickstart: Create a Python app - Azure App Service | Microsoft DocsDec 18, 2020
Get started with Azure App Service by deploying your first Python app to Azure App Service.
backups
Tar CheatsheetFeb 13, 2026
Quick reference for creating, listing, extracting, and compressing tar archives in Linux
bit-team/backintime: Back In Time - An easy-to-use backup tool for GNU Linux using rsync in the backDec 10, 2021
Back In Time - An easy-to-use backup tool for GNU Linux using rsync in the back - bit-team/backintime
restic · Backups done right!Dec 23, 2019
8 best alternatives to Déjà Dup as of 2019 - SlantDec 23, 2019
Duplicity frontend. Encrypts using GPG with symmetrical cypher.
bandits
Dynamic Pricing with Multi-Armed Bandit: Learning by Doing!Aug 19, 2023
Applying Reinforcement Learning strategies to real-world use cases, especially in dynamic pricing, can reveal many surprises
Introduction to Multi-Armed Bandit ProblemsJan 7, 2023
Delve deeper into the concept of multi-armed bandits, reinforcement learning, and exploration vs. exploitation dilemma.
The Data Incubator is Now Pragmatic Data | Pragmatic InstituteJul 19, 2022
As of 2024, The Data Incubator is now Pragmatic Data! Explore Pragmatic Institute’s new offerings, learn about team training opportunities, and more.
Multi-armed bandits for dynamic movie recommendationsJul 18, 2022
Making the best recommendations to anonymous audiences
stitchfix/mab: Library for multi-armed bandit selection strategies, including efficient deterministic implementations of Thompson sampling and epsilon-greedy.Mar 20, 2021
Library for multi-armed bandit selection strategies, including efficient deterministic implementations of Thompson sampling and epsilon-greedy. - stitchfix/mab
Multi-Armed Bandits and the Stitch Fix Experimentation PlatformNov 3, 2020
We've recently built support for multi-armed bandits into the Stitch Fix experimentation platform. This post will explain how and why.
How We Optimized Hero Images on Hotels.com using Multi-Armed Bandit AlgorithmsMay 15, 2020
Introducing the multi-armed bandit (MAB) optimization used for hero images on hotels.com
Exploring the fundamentals of multi-armed banditsMar 9, 2020
Multi-armed bandits are a simple but very powerful framework for algorithms that make decisions over time under uncertainty. “Introduction to Multi-Armed Bandits” by Alex Slivkins provides an accessible, textbook-like treatment of the subject.
Bayesian Bandits explained simply - MLWhizFeb 19, 2020
There are multiple ways to doing the same thing in Pandas, and that might make it troublesome for the beginner user.This post is about handling most of the data manipulation cases in Python using a straightforward, simple, and matter of fact way.
Bandit AlgorithmsAug 31, 2018
bash
How to Parse Command-Line Options in Bash with getoptsFeb 11, 2026
This guide explains how to parse command-line options in Bash with getopts, including option strings, OPTARG and OPTIND, error handling, and practical script examples.
Bash Positional ParametersFeb 4, 2026
Positional parameters are Bash variables that hold arguments passed to a script or function. Learn how to use $1, $2, $@, $#, and the shift command in Bash.
ChatGPT Containers can now run bash, pip/npm install packages, and download filesJan 26, 2026
One of my favourite features of ChatGPT is its ability to write and execute code in a container. This feature launched as ChatGPT Code Interpreter nearly three years ago, was …
Heredocs Can Make Your Bash Scripts Self-Documenting | Hold The RobotJul 26, 2025
I have long since come to appreciate the value of writing scripts
10 Essential Bash Shell Commands for Data ScienceMar 10, 2025
In this tutorial, we’ll cover 10 essential Bash shell commands every data scientist should know—commands that save time, simplify tasks, and keep you focused on insights rather than busywork.
Bash One-Liners for Quick Data TransformationsFeb 5, 2025
Here are 10 powerful one-liners that can help you quickly accomplish essential data tasks.
Understanding Expansion in the Linux Shell | R-bloggersOct 19, 2024
Introduction For beginners venturing into the world of Linux, understanding shell expansion is a crucial step towards mastering the command line. Shell expansion is a powerful feature that allows users to generate complex commands and manipulat...
Advanced Shell Scripting Techniques: Automating Complex Tasks with BashJun 20, 2024
Bash scripting, a cornerstone of Unix and Linux system administration, offers powerful tools to automate repetitive tasks, streamline workflows, and handle complex operations. For those already comfortable with basic scripting, diving into advanced techniques can unlock new levels of efficiency and capability. This post will explore advanced shell scripting techniques in Bash, focusing on script optimization, robust error handling, and automating complex system administration tasks. Script Optimization Optimization is crucial for ensuring that your scripts run efficiently, especially when dealing with large datasets or intensive tasks. Here are some key techniques to optimize your Bash scripts.
Understanding The $BASH_REMATCH In Bash | by Linux School Tech | MediumMay 21, 2024
$BASH_REMATCH is a special array variable in the Bash shell that stores the results of matching a regular expression using the =~ operator…
bash debuggingMar 6, 2024
New talk: Making Hard Things EasyOct 8, 2023
dylanaraps/pure-bash-bibleAug 11, 2023
📖 A collection of pure bash alternatives to external processes. - dylanaraps/pure-bash-bible
Improving Your Workflow as a Developer with Bash AliasesAug 6, 2023
As a developer, you most likely spend a significant amount of time working with the command-line...
How to get and extract filename extension in Bash - nixCraftAug 5, 2023
Explains three methods to get and extract filename extension in Bash for Linux and Unix shell scripting needs.
Shell Built-in CommandsJul 23, 2023
In Linux, there are shell built-in commands which you are already using but never paid attention to. Learn more about them in this tutorial.
Using Until Loop in BashJul 22, 2023
While for maybe the most popular bash loop, wait until you discover until. Pun intended :)
Read File Line by Line in BashJun 28, 2023
Here are a couple of ways for reading file line by line in the Bash shell.
Appending to Arrays in BashMay 30, 2023
In this quick Bash tip, you'll learn about appending to an existing array in bash.
Using exec Command in Bash Shell ScriptsMay 28, 2023
The exec command in shell scripts is super useful for logging, reading from files and running commands by replacing the current process.
Special Variables in Bash Shell ScriptingApr 5, 2023
The bash shell has some special variables that have specific usages and purposes. Learn more about them here.
Bobby Iliev - Introduction to Bash ScriptingFeb 23, 2023
This is an open-source introduction to Bash scripting ebook that will help you learn the basics of Bash scripting and start writing awesome Bash scripts that will help you automate your daily SysOps, DevOps, and Dev tasks...
5 Genuinely Useful Bash Scripts for Data ScienceFeb 17, 2023
In this article, we are going to take a look at five different data science-related scripting-friendly tasks, where we should see how flexible and useful Bash can be.
Using Brace Expansion in Bash ShellNov 10, 2022
Brace expansion in the bash shell is a lesser known but an awesome feature. Learn about using them like a Pro Linux user with practical examples.
Shell Script Best Practices — The Sharat'sOct 29, 2022
This article is about a few quick thumb rules I use when writing shell scripts that I’ve come to appreciate over the years. Very opinionated....
Building a Web server in Bash, part I - socketsAug 1, 2022
Have you ever wondered how a Web server works under the hood? Moreover, would you be willing to...
GitHub - onceupon/Bash-Oneliner: A collection of handy Bash One-Liners andMay 4, 2022
A collection of handy Bash One-Liners and terminal tricks for data processing and Linux system maintenance. - onceupon/Bash-Oneliner
How to Find the PID and PPID of a Process in LinuxJan 29, 2022
Learn how to find PID using a process name in Linux. Also learn to get the parent process ID (PPID) of the given process.
Bash Guide for BeginnersDec 12, 2021
The Bash GuideDec 11, 2021
A complete guide for newcomers and advanced users to correct usage and deepen understanding of the bash shell language.
pure-bash-bible/README.md at master · dylanaraps/pure-bash-bibleDec 11, 2021
📖 A collection of pure bash alternatives to external processes. - dylanaraps/pure-bash-bible
Bash scripting quirks & safety tipsDec 11, 2021
Bash scripting cheatsheetDec 2, 2021
Variables · Functions · Interpolation · Brace expansions · Loops · Conditional execution · Command substitution · One-page guide to Bash scripting
Ten Things I Wish I’d Known About bashDec 2, 2021
Intro Recently I wanted to deepen my understanding of bash by researching as much of it as possible. Because I felt bash is an often-used (and under-understood) technology, I ended up writing …
10 handy Bash aliases for LinuxDec 2, 2021
Get more efficient by using condensed versions of long Bash commands.
The Shell Introduction I Wish I HadDec 2, 2021
I write a letter to my past self about the Shell's importance I wish I'd focused on earlier in my career.
101 Bash Commands and Tips for Beginners to ExpertsDec 2, 2021
Update 25 Sep 2019: This article is now available in Japanese, thanks to the hard work of ラナ・クアール....
Converting and Optimizing Images From the Command Line | CSS-TricksNov 29, 2021
Images take up to 50% of the total size of an average web page. And if images are not optimized, users end up downloading extra bytes. And if they’re
Bash Patterns I Use WeeklyNov 24, 2021
5 bash tricks I find myself using often that I wish I'd discovered sooner.
What is Shebang in Linux Shell Scripting?Oct 1, 2021
The seemingly insignificant #! characters at the beginning of a shell script has a major significance on how your script will be executed.
Unusual Ways to Use Variables Inside Bash ScriptsSep 26, 2021
You might have used variables in Bash before, but probably not like this.
Command line wizardry, part two: Variables and loops in BashSep 26, 2021
Learn to process thousands of items reliably and repeatably in this installment.
How To Run Commands When You Log Out Using ~/.bash_logoutAug 8, 2021
The .bash_logout file is the individual login shell cleanup file. It is executed when a login shell exits. This file exists in the user's home directory. For example, $HOME/.bash_logout. This file is useful if you want to run task or another script or command automatically at logout. For example, clear the mysql command line history stored in ~/.mysql_history or to make a backup of files you can use this file.
How to repeat a character 'n' times in Bash - nixCraftJun 5, 2021
In this post, I try to explore various ways to repeat a character and string in Bash 'n' times that must run on macOS/FreeBSD and Linux.
My Favorite One Liners | MuhammadMay 5, 2021
Commandline one liners that makes your workflow more productive
What the #! shebang really does and why it's so important in your shell scrNov 28, 2020
What exactly happens when we run a file starting with #! (aka shebang), and why some people use #!/us...
bobbyiliev/introduction-to-bash-scripting: Free Introduction to Bash Scripting eBookNov 28, 2020
Free Introduction to Bash Scripting eBook.
How to Create Bash Aliases | LinuxizeJun 1, 2020
Bash aliases are essentially shortcuts that can save you from having to remember long commands and eliminate a great deal of typing when you are working on the command line.
How to Install Ruby on Ubuntu 18.04 | LinuxizeMay 14, 2020
Ruby is one of the most popular languages today. It has an elegant syntax and it is the language behind the powerful Ruby on Rails framework. In this tutorial we will show you three different ways to install Ruby on Ubuntu 18.04 system.
Show HN: Critic.sh – Dead simple testing framework for BashFeb 19, 2020
Dead simple testing framework for Bash with coverage reporting - Checksum/critic.sh
Bash-my-AWSFeb 19, 2020
Bash-my-AWS is a simple but powerful set of CLI commands for managing resources on Amazon Web Services.
An Illustrated Guide to Some Useful Command Line Tools - WezM.net by Wesley MooreOct 26, 2019
A short description and screenshot of some useful command line tools I use that aren't part of typical POSIX environment.
A blog by Darren BurnsAug 29, 2019
Five Command Line Tools for Data ScienceAug 2, 2019
You can do more data science than you think from the terminal.
The hard part in becoming a command line wizardMar 3, 2019
I've long been impressed by shell one-liners. They seem like magical incantations. Pipe a few terse commands together, et voilà! Out pops the solution to a problem that would seem to require pages of code. Are these one-liners real or mythology? To some extent, they're both. Below I'll give a famous real example. Then I'll argue
Power Up Your Command Line, Part 3Jan 12, 2019
Five lesser-known command line utilities you'll want to install right away.
Bash-Snippets: A collection of small bash scripts for heavy terminal usersJul 14, 2017
A collection of small bash scripts for heavy terminal users - alexanderepstein/Bash-Snippets
batteries
New battery idea gets lots of power out of unusual sulfur chemistryJan 7, 2026
Rather than being used as a storage material, the sulfur gives up electrons.
Tesla’s 4680 battery supply chain collapses as partner writes down deal by 99% | ElectrekDec 30, 2025
A major link in Tesla’s 4680 battery supply chain has just snapped. South Korean battery material supplier L&F Co. announced...
Sodium Batteries Are ComingOct 21, 2025
Batteries are an increasingly important technology to our civilization. If I could wave a magic wand and make one specific non-medical technology advance 10-20 years in a day, it would be battery technology. Batteries are used in our everyday devices, like phones and laptops. They are the single most critical factor to EVs, and they
The beauty of batteriesAug 28, 2025
Keeping the grid stable requires overbuilding generation, driving up costs. Batteries fix that.
Depleted Uranium BatteriesJul 31, 2025
The Japan Atomic Energy Agency reported earlier this year that is has developed and tested a battery with depleted uranium as the active material of the negative electrode. Why would they do this, and what role could such a battery play? First let's look at the details (which are sparse). The battery uses depleted uranium
How Batteries Are Making the Electrical Grid More ReliableJun 19, 2025
To operate reliably, the US electrical grid needs to balance supply and demand: to make sure, at any given moment, that the amount of electricity demanded by homes, businesses, and factories is equal to the amount being supplied by nuclear reactors, gas turbines, and other types of power plants.
We’ve unlocked a holy grail in clean energy. It’s only the beginning.Apr 21, 2025
Do we have batteries that are advanced enough to store renewable energy? Yes, yes we do.
Where EV batteries go to die – and be rebornApr 5, 2025
Batteries for electric vehicles are notoriously difficult to recycle, but growing demand for the rare metals they contain is leading to innovative new ways of retrieving them.
How a Chinese battery factory sparked a political meltdown in a small Michigan townMar 11, 2025
Gotion wanted to expand its battery production in Michigan, but local backlash, political tensions, and fears over its Chinese ties have stalled its U.S. expansion plans.
A Pinch of Salt Boosts Aluminum BatteriesFeb 6, 2025
This sustainable, solid-state electrolyte design outlives lithium-ion batteries
You’re charging your phone wrong. It’s not your fault.Feb 6, 2025
Lithium-ion battery technology is imperfect, but it’s not going anywhere.
China’s EVs Are Smart, Green, and Cheap — Until They Aren’tJan 16, 2025
For millions of Chinese EV owners, early promises of affordability, convenience, and cutting-edge tech are now tested by aging batteries, replacement costs, and warranties.
Understanding How Electric Vehicles Convert Battery Power Into PropulsionDec 16, 2024
How IGBT and SiC based traction inverters use power from the lithium ion battery pack to drive the motors using sinusoidal pulse width modulation.
Generation 2 4680 Tested // Results & AnalysisNov 29, 2024
Enjoy the videos and music you love, upload original content, and share it all with friends, family, and the world on YouTube.
How We Got the Lithium-Ion BatteryNov 29, 2024
It took decades of research, performed around the world, before a practical lithium-ion battery was possible.
World’s Largest Battery Maker Says Elon Musk ‘Doesn’t Know How To Make Batteries’Nov 16, 2024
The 4680 battery was supposed to make EVs cheaper and better, but so far has proven to be more problematic than promising.
Aa former West Virginia steel mill is now home to a cutting-edge battery plant - Fast CompanyOct 25, 2024
Form Energy uses iron-air technology to store energy far longer than a lithium-ion battery can.
SlashdotOct 24, 2024
The Secret, Magical Life Of LithiumJul 14, 2024
One of the oldest, scarcest elements in the universe has given us treatments for mental illness, ovenproof casserole dishes and electric cars. But how much do we really know about lithium?
Massive Expansion Of North American Battery Manufacturing Capacity AheadJun 20, 2024
It should be enough to build at least 12 million all-electric vehicles annually.
TDK claims insane energy density in solid state battery breakthroughJun 17, 2024
Apple supplier says new tech has 100 times the capacity of its current batteries.
The batteries made from cementJun 11, 2024
Concrete is perhaps the most commonly used building material in the world. With a bit of tweaking, it could help to power our homes too.
EV batteries could last much longer thanks to new capacitor with 19-times hMay 12, 2024
Electric cars and laptop batteries could charge up much faster and last longer thanks to a new structure that can be used to make much better capacitors in the future.
Battery ArbitrageMay 11, 2024
Solar is powering a large share of California’s energy needs during the day and batteries are now powering a significant share at night. NYTimes: Since 2020, California has installed more giant batteries than anywhere in the world apart from China. They can soak up excess solar power during the day and store it for use […]
Giant 'sand battery' holds a week's heat for a whole townMar 15, 2024
A new industrial-scale 'sand battery' has been announced for Finland, which packs 1 MW of power and a capacity of up to 100 MWh of thermal energy for use during those cold polar winters. The new battery will be about 10 times bigger than a pilot plant that’s been running since 2022.
The most powerful MagSafe Battery Pack gives your iPhone an impressive 10,0Feb 17, 2024
https://youtu.be/ayZrrlo6M5w It's a good thing Apple discontinued its MagSafe Battery Pack, because frankly, it sucked. With an abysmal 1,460mAh capacity, it's really no match for the one from TORRAS. Armed with a whopping 10,000mAh internal battery that can wirelessly charge at speeds of 15W, the TORRAS MagSafe Battery Pack knocks pretty much any competition out
Scottish startup to turn Finnish mine into giant gravity batteryFeb 11, 2024
The fledgling company is set to transform one of Europe's deepest mines into an energy storage system powered by gravity.
Turning abandoned mines into batteries | IIASAFeb 6, 2024
A novel technique called Underground Gravity Energy Storage turns decommissioned mines into long-term energy storage solutions, thereby supporting the sustainable energy transition.
America Just Hit the Lithium JackpotSep 17, 2023
The world’s largest known deposit was just discovered in Nevada. What does that mean?
The underbelly of electric vehiclesAug 22, 2023
Mining and processing the minerals needed to meet the growing demand for EVs can be costly for workers, local communities and the environment.
GPL-2400T AGM Starting Battery - Lifeline BatteriesOct 14, 2022
Motor Starting Marine/RV Battery The GPL-2400T is a high performance, Mil-Spec, AGM battery, produced in the United States. Due to the Lifeline Battery's quality construction, it has an industry leading 2% per month self discharge rate at 77°F (25°C), compared to 10%+ for conventional batteries. Coast Guard approved, DOT Haz Mat Exempt, and longer lifespans than conventional batteries. Warrantied installations include marine, yacht, and other seafaring applications.
How Long Do AGM Batteries Last? - Lifeline BatteriesJun 26, 2022
Learn more about the expected lifepsan of AGM batteries from Lifeline Batteries.
These batteries ditch the lithium for something much cheaper: ironJan 27, 2022
Iron air batteries rust and "derust" iron to store power.
We ranked 3 types of EV batteries to find the most efficient and sustainablDec 28, 2021
Are lithium-ion batteries here to stay? Let's compare them with sodium-ion and solid-state batteries.
Why battery costs have plunged 89 percent since 2010Dec 15, 2021
A 600-fold increase in battery production made batteries much cheaper.
The complete guide to the battery revolutionDec 1, 2021
Whoever comes up with the next big battery technology could become the ExxonMobil or Shell of the 21st century.
Eternally five years away? No, batteries are improving under your noseMay 31, 2021
Under the hood, lithium-ion batteries have gotten better in the last decade.
Why batteries are the new power plantsDec 18, 2020
The advent of "big battery" technology addresses a key challenge for green energy – the intermittency of wind and solar.
bayes
Bayesian Hierarchical Marketing Mix Modeling in PyMCOct 14, 2022
Learn how to build MMMs for different countries the right way
Bayesian Product Ranking at WayfairJun 13, 2022
Wayfair has a huge catalog with over 14 million items. Our site features a diverse array of products for people’s homes, with product categories ranging from “appliances” to “décor and pillows” to “outdoor storage sheds.” Some of these categories include hundreds of thousands of products; this broad offering ensures that we have something for every style and home. However, the large size of our product catalog also makes it hard for customers to find the perfect item among all of the possible options.
CamDavidsonPilon/Probabilistic-Programming-and-Bayesian-Methods-for-HackersMar 23, 2022
aka "Bayesian Methods for Hackers": An introduction to Bayesian methods + probabilistic programming with a computation/understanding-first, mathematics-second point of view. All i...
Advanced forecasting using Bayesian diffusion modelingMay 1, 2021
Applications from cancer to covid-19
Methodology | Papers With CodeDec 21, 2020
Bayesian Inference is a methodology that employs Bayes Rule to estimate parameters (and their full posterior).
Why you should try the Bayesian approach of A/B testingDec 18, 2020
The intuitive way of A/B testing. The advantages of the Bayesian approach and how to do it.
Bayesian Bandits explained simply - MLWhizFeb 19, 2020
There are multiple ways to doing the same thing in Pandas, and that might make it troublesome for the beginner user.This post is about handling most of the data manipulation cases in Python using a straightforward, simple, and matter of fact way.
A Sober Look at Bayesian Neural NetworksFeb 19, 2020
by Carles Gelada and Jacob Buckman WARNING: This is an old version of this blogpost, and if you are a Bayesian, it might make you angry. Click here for an updated post with the same content. Context: About a month ago Carles asserted on Twitter that Bayesian Neural Networks make...
Bayes’s theorem, and making probability intuitiveFeb 19, 2020
What is it to be Bayesian? The (pretty simple) math modelling behind a Big Data buzzword
Bayesian Inference with Generative Adversarial Network PriorsDec 14, 2019
A blog about Compressive Sensing, Computational Imaging, Machine Learning. Using priors to avoid the curse of dimensionality arising in Big Data.
Cookbook — Bayesian Modelling with PyMC3Aug 31, 2018
Recently I’ve started using PyMC3 for Bayesian modelling, and it’s an amazing piece of software! The API only exposes as much of heavy machinery of MCMC as you need — by which I mean, just the pm.sample() method (a.k.a., as Thomas Wiecki puts it, the Magic Inference Button™). This really frees up your mind to think about your data and model, which is really the heart and soul of data science! That being said however, I quickly realized that the water gets very deep very fast: I explored my data set, specified a hierarchical model that made sense to me, hit the Magic Inference Button™, and… uh, what now? I blinked at the angry red warnings the sampler spat out.
A practical explanation of a Naive Bayes classifierDec 27, 2017
Medallia's text analytics software tool provides actionable insights via customer and employee experience sentiment data analysis from reviews & comments.
beauty
You’re a Bad Judge of How Good-looking You Are - NautilusApr 26, 2025
Why are we such bad judges of how others see us? Epley’s answer is that other people are novices about us, while we’re experts.“The Green Mirror” (1911) by Guy Rose / Wikicommons Nautilus Members enjoy an ad-free experience. Log in or Join now . There’s the full-body bedroom mirror, the bathroom mirror, and the trusty […]
How Beautycounter Fell Apart, Sinking Almost $700 Million With ItJul 10, 2024
When the private equity firm Carlyle bought Beautycounter, the skin care brand that people sold at kitchen tables, everything changed.
The power of beauty in communicating complex ideasJun 11, 2024
Can designers defend pursuing beauty when communicating science or innovation?
How Tehran became the world's nose job capitalFeb 24, 2024
Iranian doctors raise alarm over low costs, weak regulation and online influence of 'Western beauty standards'
The untraceable ingredients in skincare productsFeb 17, 2024
In the baffling world of skincare ingredients, where is the best place to start seeking sustainable skincare?
Beautiful People Don’t Always Win in the WorkplaceJul 18, 2022
Research shows how attractive employees can rub some customers the wrong way.
The Greatest Privilege We Hardly Talk About: BeautyJun 11, 2022
The advantages of being attractive are exorbitant. Beauty might be the single greatest physical advantage you can have in life. And yet…
How the Brain Responds to BeautyFeb 5, 2021
Scientists search for the neural basis of an enigmatic experience
Inside a Top-Secret Factory Where Scent Is MadeJul 25, 2019
A peek at the scientists who chemically engineer the scents behind numerous commercial products.
behaviors
Game Theory Patterns at WorkFeb 10, 2026
Foundations: Games, Rationality, and Traps In organizations, strategies and execution are interdependent. Outcomes depend not just on what you do, but on what others do, and what they expect you to…
25 Ways to Be a Class Act | The Art of ManlinessFeb 2, 2026
When I played football in high school, our head coach had one refrain that he’d hammer into us over and over again: act with class. It meant no trash talk. No showboating. Help the other guy up, even if he just tried to take your head off. Don’t scream at refs. Don’t throw your helmet. […]
How to build team spirit | Psyche GuidesJan 20, 2026
The glue, or spirit, that binds certain teams is not mystical – you can cultivate it by changing how you work together
How to Get Unstuck: Simple Somatic Regulation Practices - Ness LabsJan 15, 2026
Somatic regulation is the practice of using your body to change cognitive and emotional states instead of relying on top-down thinking alone.
Reactance: Why People Ignore Expert Advice (and How Psychology Can Help Them Listen)Jan 8, 2026
Behavior is the end result of a prevailing story in one’s mind: change the story and the behavior will change.”― Dr. Jacinta Mpalyenkana In 2020 we were all asked to change our behavior in some way, in service of “flattening the curve” — using social distancing measures to slow the spread of an illness so that fewer
These 2 Traits Make You More Likely to Believe Conspiracy TheoriesJan 8, 2026
A new study suggests that those wacky conspiracy theories aren't just a social media problem, they're a problem of mindset.
What makes something a cult? Here is what our data sayJan 3, 2026
Short of time? Read the key takeaways. 💡 People rely on relational dynamics to judge cultishness. When people rate groups as cult-like, they focus most on signs of control, isolation, and suppression of outside information rather than on unusual predictions or strange practices. 🔍 Discouraging outside information is the strongest red flag. The clearest single predictor of perceived cultishness is when a group tries to limit members’ access to alternative viewpoints. People appear highly...
Your purpose isn’t something to find, it’s something you form | Psyche IdeasDec 19, 2025
In my therapy office, I’ve found that to live with greater purpose, we must think differently about where it comes from
How to Know If You're a Morning PersonDec 14, 2025
“Extreme larks” get up naturally when some people have hardly gone to bed.
The Perplexing Dominance of Self-CheckoutDec 4, 2025
Many Americans would rather wait for it than interact with a human.
Why Don’t People Return Their Shopping Carts?Nov 11, 2025
For reasons I can’t fully explain, people’s failure to return their carts bothers me more than it probably should. But then I realized I can do something about it.
Do You Know What I Know?Oct 14, 2025
Joshua Rothman writes about common knowledge and the book “When Everyone Knows That Everyone Knows . . .,” by Steven Pinker.
Addictive-like behavioural traits in pet dogs with extreme motivation for toy play - Scientific ReportsOct 13, 2025
Scientific Reports - Addictive-like behavioural traits in pet dogs with extreme motivation for toy play
The Psychology of Choice: How Much Freedom Do Customers Really Want?Oct 10, 2025
Retailers have long assumed that the bigger the range, the happier the customer. Endless shelves, multiple variants, and every possible option should, in theory, increase satisfaction. Yet the evidence is more nuanced. Recent research shows that in some contexts, larger assortments can increase hesitation and reduce conversion, while in others the effect is muted. Overload […]
The Volunteer’s Dilemma - by Steven Pinker - Behavioral ScientistSep 28, 2025
Learning about something in public, even if everyone already knows it, can change everything—especially when and how we decide to help.
How ‘Proportion Dominance’ Gets in the Way of Effective Giving - by Matthew Coleman - Behavioral ScientistSep 28, 2025
When it comes to helping others, it’s important to remember that it’s the size of the drop that matters, not the size of the bucket.
When Values Eat Their Young: How Ideal-Driven Groups Drift into Their Own ShadowSep 17, 2025
Picture this: A Slack channel for an open-source project that prominently displays "Be excellent to each other" in its community guidelines. Six month
Micro Expressions | Facial Expressions | Paul Ekman GroupSep 1, 2025
Micro expressions are very brief facial expressions, lasting only a fraction of a second. The Paul Ekman Group provides a variety of tools in order to learn how to spot micro expressions.
Why do people collect stuff?Aug 28, 2025
From vinyl albums to items in video games, humans love to collect. But what we're really craving goes beyond stuff itself, research finds.
See something, say something? The science of speaking outAug 20, 2025
From tattling to whistleblowing, a sociologist explores what drives people to tell on one another
Why We Spiral - by Gregory M. Walton - Behavioral ScientistAug 18, 2025
Questions of who we are or what we’re worth can send us into a tailspin. But the very same processes that pull us down can propel us up, too.
Can We Fix Social Media? Testing Prosocial Interventions using Generative Social SimulationAug 14, 2025
Why Smart People Fall for False Information and What to do About ItAug 5, 2025
UCSF’s Joseph Pierre, MD, unveils why even bright minds embrace false information. His new book, "False," dissects cognitive biases and our digital world’s role, offering a powerful three-step approach to navigate the post-truth era and rediscover common ground.
The best dating apps aren’t even dating appsAug 1, 2025
With dating app fatigue rising, some peopl are finding love in unexpected places – the forums and sites they use to pass idle time online, as opposed to those dedicated to online dating.
How to Encourage Employees to Speak Up When They See WrongdoingJul 23, 2025
Traditional compliance tools aren’t enough. Behavioral science can help.
The Bystander Effect: Why Do People Fail to Help? | TheCollectorJul 23, 2025
The bystander effect is a psychosocial theory that explores how the presence of bystanders mitigates our willingness to help.
Willful Disobedience: Character Traits of Independent Thinkers in the MilitaryJul 7, 2025
In a speech on October 4 at the Association of the United States Army’s 2016 Annual Meeting, Chief of Staff of the Army Gen. Mark Milley shared a vision of future conflict and the soldiers engaging in that conflict. Sydney Freeberg Jr. summed up Milley’s future soldier as “miserable, disobedient, and victorious.” Milley predicted a
These Are the 6 Universal Traits of CoolnessJul 1, 2025
What makes someone "cool?" Not just admired or respected—but genuinely, universally cool? We've got the answers...
How Your Brain Gaslights You—for Your Own Good - NautilusJun 27, 2025
Nailia Schwarz via Shutterstock Nautilus Members enjoy an ad-free experience. Log in or Join now . Runners can tell you that sometimes the last mile of a run seems to feel dramatically longer than the first. This perceptual distortion isn’t limited to brains addled by exercise—it’s a consistent feature of our minds. When we […]
The World's Hardest Bluffing GameJun 17, 2025
Why are some Iraqis so good at figuring out when a person is lying?
This Is How You Can Spot a Fake SmileJun 3, 2025
Simply put, the Duchenne smile is genuine. But fake smiles are all around, and this is how you can tell the difference.
What Is the Spotlight Effect?May 24, 2025
The spotlight effect is one of the most fascinating phenomena of human experience. We explore why it happens and how to overcome it.
The Heart of Innovation: Why Most Startups Fail - CommoncogMay 23, 2025
A theory of demand (and product market fit) that explains it all, and does NOT require ‘pain’ to do it.
Five small habits sports psychologists wish everyone didMay 16, 2025
Sports psychologists work with athletes to get their best performance on the field or court, but these tools are ones anyone can try.
Williams Syndrome: The people who are too friendlyMay 15, 2025
People with Williams Syndrome treat strangers as their new best friends. Now the condition is giving clues to our evolutionary past – and what makes us human.
10 Things I Learned From Working in a Strip ClubMay 14, 2025
Canadian photographer Carly Hughes-Horvath takes on a raw and sensual tour of a world where cameras are usually forbidden.
101 Rules of Effective LivingMay 13, 2025
In more than thirty years as a writer, editor, and publisher, I have, to my best reckoning, introduced, abridged, issued or reissued, and read nearly every major work of inspirational literature produced or translated into English.
In Uncertain Times, Get Curious - by Elizabeth Weingarten - Behavioral ScientistApr 27, 2025
Asking better questions can act as an antidote to uncertainty—and the anxiety that comes with it.
The Gruen Transfer is consuming the internetApr 26, 2025
The Gruen Transfer is taking over social media. What is it and how can we avoid it?
How to tell if someone is hoarding – and provide effective help | Psyche IdeasApr 23, 2025
For many, letting go of possessions is intensely stressful, even when the clutter puts them at risk. Here’s what you can do
Living a Lie: We Deceive Ourselves to Better Deceive OthersApr 23, 2025
New research provides the first evidence for a theory first put forward in the 1970s
12 tactic to become more leaderlike influential and charismaticApr 22, 2025
An in-depth breakdown of charismatic leadership tactics and how to tap into your own charisma when speaking in public.
(PDF) Types of Dialogue and Burdens of Proof.Apr 22, 2025
PDF | Burden of proof has recently come to be a topic of interest in argumentation systems for artificial intelligence (Prakken and Sartor, 2006, 2007,... | Find, read and cite all the research you need on ResearchGate
The (Ludicrous) Psychology of Slot MachinesApr 20, 2025
Slot Machines are the workhorse of Las Vegas casinos. After decades of design tweaks, the "crack cocaine of gambling" brings in more revenue than every other casino game combined.
How 'Am I The Asshole' Became Everyone's Favorite SubredditApr 9, 2025
'Am I the Asshole?' on Reddit has amassed more than 11.4 million subscribers. Here's the history of the subreddit that everyone loves to read.
Psychology’s Groupthink Helps Explain the Signal Chat FiascoApr 2, 2025
At the heart of the Trump administration’s Signal scandal lies the familiar psychological pitfall of groupthink
Breaking ThroughMar 29, 2025
Icebreakers are corny, corporate get-to-know-you exercises. But there’s something thrilling in dispensing with small talk.
How do we start learning to ‘read’ other people’s minds?Mar 18, 2025
Studies of young children give us insight into the building blocks of an ability that most of us use every day
Curiosity Snacks: How to Redirect Your Impulse to KnowFeb 6, 2025
Curiosity snacks are small, intentional nudges that guide our impulsive curiosity toward learning, creativity, and meaningful discovery rather than mindless scrolling.
Fix Three Broken ThingsJan 29, 2025
Seneca pointed out that people tend to be reflexively stingy with their money, but almost comically wasteful with their time. There are at least two ways to take this. One is that Seneca thought he used his time better than you and I do, and maybe he did. Another interpretation is that everyday life, for most people, is an untapped
Frustration Tolerance: An Essential for Surviving Large OrgsJan 20, 2025
In leadership and life, ambitions often outpace our ability to consistently execute on them. A hidden hurdle that trips up many is their level of “frustration tolerance.” This is particularly true in large organizations that are literally designed to frustrate ambitions and agendas.
In this piece, I unpack the critical
The Anti-Social CenturyJan 11, 2025
Americans are now spending more time alone than ever. It’s changing our personalities, our politics, and even our relationship to reality.
Instead of Being Cynical, Try Becoming Skeptical - by Jamil Zaki - Behavioral ScientistDec 29, 2024
Cynicism and skepticism are often confused for each other, but they couldn’t be more different.
Most Read Articles of 2024 - By The Editorial Board - Behavioral ScientistDec 28, 2024
Take a moment to dive into the pieces your fellow behavioral science enthusiasts read most this year.
A User’s Guide to Building a Subculture—AsteriskDec 24, 2024
First, you’re going to need something to care about.
The Ancient Art of Saying No: Plutarch's Guide to Breaking Free from People-PleasingNov 19, 2024
Ever feel like you can’t say no? Like you’re constantly doing things you don’t want to to avoid letting others down or having them think less of you? You’re not alone. Saying no to people’s requests is something I’ve had to work on throughout my adult life. I know a lot of other people who […]
The 20 Best Lessons from Social PsychologyNov 3, 2024
Last spring, I took a class on social psychology. It was one …
How to manage people's behavior- Fast CompanyOct 18, 2024
These two principles are equally powerful and critical to manage behavior, but the order matters.
Can We Create a Pattern Language for Behavioral Design? - by Piyush TantiaAug 4, 2024
Psychologies, especially as represented in lists of biases, point out problems. Developing a pattern language would point us to solutions.
Judge People Effectively and Accurately Using Personality ScienceJul 28, 2024
Author Richard Davis shares 5 key insights from his new book, Good Judgment: Making Better Business Decisions with the Science of Human Personality.
Useful and Overlooked SkillsJun 16, 2024
On his way to be sworn in as the most powerful man in the world, Franklin Delano Roosevelt had to…
Who Still Buys Wite-Out, and Why?Jun 1, 2024
Correction fluids have improbably outlasted the typewriter and survived the rise of the digital office.
How to Cultivate Taste in the Age of AlgorithmsMay 21, 2024
When we turn to algorithms for recommendations instead of asking friends or going down hard-won cultural rabbit holes, what do we give up?
Con-Culture Experts On the History and Future of ScammingMay 20, 2024
2018’s ‘Summer of Scam’ was just the latest in a strong American tradition.
The Amazing Psychology of Japanese Train StationsMay 20, 2024
The nation’s famed mastery of rail travel has been aided by some subtle behavioral tricks.
The '3.5% rule': How a small minority can change the worldMay 17, 2024
Nonviolent protests are twice as likely to succeed as armed conflicts – and those engaging a threshold of 3.5% of the population have never failed to bring about change.
Narcissism and Self-Esteem Are Very DifferentMay 14, 2024
Narcissism and self-esteem have very different developmental pathways and outcomes.
Scientists have found a simple yet brilliant hack for spotting a liarMay 12, 2024
Scientists say there is evidence that lying is more cognitively demanding than telling the truth.
Sunday Firesides: Just Be CoolApr 30, 2024
What does it mean to be cool? Philosophers have long pondered this burning question. There are different types of coolness, with some related to affect, style, or talent. But one type is connected to how we show up in relationships. It’s the type that underlies the feeling expressed when you think to tell someone (or […]
The 'shopping cart theory' supposedly tests if you are a good person or notApr 19, 2024
While the morality aspect is complicated, our shopping carts really do say something about who we are.
The Laws of Human Nature by Robert Greene - Summary & NotesApr 16, 2024
Detailed notes and summary for The Laws of Human Nature by Robert Greene. Another in-depth book with timeless principles to better understand and navigate life.
Story #1 - Embezzlers are Nice People | Stimmel LawApr 15, 2024
We spend a lot of time suing embezzlers. All over the world. Week in and week out. Big embezzlers, small embezzlers, smart embezzlers and very smart embezzlers… That’s right, no dumb embezzlers because almost all the embezzlers we encounter are smart. Some are very smart. Some are brilliant. And, almost always, most would have made more money and had a more profitable career if they had simply stopped stealing and starting working honestly.
No Spoilers, Please! Why Curiosity Makes Us PatientApr 10, 2024
Curiosity makes people hungry for knowledge—but not necessarily in a hurry
Goodhart's lawApr 4, 2024
Goodhart's law is an adage often stated as, "When a measure becomes a target, it ceases to be a good measure".[1] It is named after British economist Charles Goodhart, who is credited with expressing the core idea of the adage in a 1975 article on monetary policy in the United Kingdom:[2]
So You Think You’ve Been GaslitApr 1, 2024
What happens when a niche clinical concept becomes a ubiquitous cultural diagnosis.
Uber-style pricing is coming for everythingMar 27, 2024
More and more industries are adopting “dynamic pricing” — and consumers aren’t happy.
Why are Russians so stingy with their smiles?Mar 27, 2024
In the US, smiling is a reflexive gesture of goodwill, but Russians view it as a sign of stupidity. Social psychology research could help explain this cultural contrast.
To Make Your Product a Habit, Start With These Powerful TriggersMar 25, 2024
Learn how to create customer habits using powerful triggers like time, mood, location, and social influences. Discover techniques to boost product usage.
Why Do East Asian Firms Value Drinking? - by Alice EvansMar 4, 2024
East Asian businesses often go out drinking.
What is Maslow’s Hammer?Mar 3, 2024
What is Maslow's Hammer? Maslow's Hammer says that we rely too much on familiar tools (not because they're good - only because they're familiar). As the saying goes, “When you have a hammer, everything’s a nail.” It's why doctors are more likely to recommend surgery for back pain than alternative treatments like massage or chiro.
What is the Concorde Fallacy?Mar 3, 2024
What is the Concorde Fallacy? 🧠 The Concorde Fallacy describes how we will continue to defend a bad investment, even when that defense costs more than just giving up. In 1956, discussions started in England to create a supersonic airliner that would get people from London to NYC in under 3 hours (that's less than
How the brain responds to reward is linked to socioeconomic backgroundFeb 29, 2024
The brain’s sensitivity to rewarding experiences — a critical factor in motivation and attention — can be shaped by socioeconomic conditions, according to an MIT study.
How to spot a liar: 10 essential tells – from random laughter to copycat gesturesFeb 29, 2024
The Traitors has shown just how adept some people are at lying. Here, an ex-FBI agent, a psychologist and a fraud investigator share their best tips for detecting dishonesty
The Curiosity Matrix: 9 Habits of Curious MindsFeb 29, 2024
The Curiosity Matrix maps nine common habits of curious people supporting personal and professional growth through curiosity-driven behaviors.
Mimicry, Camouflage and Deceptive BehaviorFeb 29, 2024
Mimicry, Camouflage and Deceptive Behavior of insects and spiders.
desk movesFeb 29, 2024
Dealing with surprising human emotions is one of the most challenging aspects of being a manager. Generally, when someone appears triggered, or angry, or som...
Why Incompetent People Think They’re Competent: The Dunning-Kruger Effect,Feb 12, 2024
When surveyed, eighty to ninety percent of Americans consider themselves possessed of above-average driving skills. Most of them are, of course, wrong by statistical definition, but the result itself reveals something important about human nature.
Personal and political shaming is running hot, yet it doesn’t work | PsycheFeb 11, 2024
When passions run high so does the urge to shame wrongdoers. But if the goal is to change, shamers should think twice
Tools for better thinking | UntoolsFeb 10, 2024
Collection of thinking tools and frameworks to help you solve problems, make decisions and understand systems.
Shari Liu: How babies think about danger | TED TalkFeb 6, 2024
Are babies oblivious to danger? It's not that simple, says cognitive scientist Shari Liu. Sharing surprising insights (and plenty of baby videos) from studies of early human development, Liu highlights the unexpected ways babies perceive and respond to risky situations — and what these findings could unravel about the inner workings of our minds.
15 Quotes on the Unparalleled Power of ExampleFeb 5, 2024
Discover the power of examples in shaping our lives. Explore quotes on example and how they inspire us to reach new heights.
How Inuit Parents Teach Kids To Control Their AngerFeb 5, 2024
At the top of the world, the Inuit culture has developed a sophisticated way to sculpt kids' behavior without yelling or scolding. Could discipline actually be playful?
The Two Ways of DoingFeb 1, 2024
Imagine two friends, Steve and Fred, chatting at a New Year’s party. Both of them resolve to abstain from alcohol for January, and attend the gym regularly. They shake on it. They don’t want to let each other down, and they both fulfill their commitments. Afterward, Steve keeps up his routine, and Fred soon drifts back to too much beer
What happens when an astronaut in orbit says he’s not coming back?Jan 23, 2024
“If you guys don’t give me a chance to repair my instrument, I’m not going back.”…
Psychology for UX: Study GuideJan 17, 2024
Unsure where to start? Use this collection of links to our articles and videos to learn about some principles of human psychology and how they relate to UX design.
Building an antilibrary: the power of unread booksJan 11, 2024
Unread books are as powerful as the ones we read. An antilibrary is a private collection of unread books capturing the vastness of the unknown.
Unlocking User Engagement: 8 Strategies to Drive Conversions in Web and AppOct 24, 2023
Some apps or websites are beautiful, stylish, and well thought out in terms of UX, but have one problem: they are boring. These products can trigger both desire and resistance in the user at the same time. Here are a few tricks that will help solve this problem not from a rational, but from an
The Sociological Eye: FIVE KINDS OF FRIENDSOct 6, 2023
The word “friends” has at least five different meanings: Allies Backstage intimates Fun friends Mutual interests friends Soc...
These are the mental processes required to tell a convincing lieOct 6, 2023
The cognitive work involved in lying is relevant to lie detection and could help explain why some people are better liars
Never say “no,” but rarely say “yes.”Oct 4, 2023
"Focus" requires saying "no" to most things, but there's a way to do it that allows you to say "yes" exactly when it matters most.
The all-out revolt against Knitting.com helps explain boycotts at Reddit anOct 3, 2023
The knitting world rose up against corporate ownership—and displayed the power of online communities
Hagakure: Book of the Samurai - hagakure.pdfSep 29, 2023
Ness Labs Best Books of September 2023Sep 19, 2023
What should you read this month? This is your September 2023 guide to discovering the most insightful, inspiring, and transformative books on mindful productivity, creative growth, holistic ambition, and developing a healthier relationship with work.
The Science of Gift GivingSep 17, 2023
There is a lot of social psychology out there providing information that can inform our everyday lives, and most people are completely unaware of the research. Richard Wiseman makes this point in his book, 59 Seconds - we actually have useful scientific information, and yet we also have a vast self-help industry giving advice that
Do You Know How to Behave? Are You Sure?Aug 7, 2023
How to text, tip, ghost, host, and generally exist with others in society today.
The secret economics of the Birkin bagJul 29, 2023
On a flight from Paris to London in 1983 Jane Birkin, an Anglo-French chanteuse and actress, spilled the contents of her overstuffed straw...
How PEZ Evolved From an Anti-Smoking Tool to a Beloved Collector's ItemJul 28, 2023
Early in its history, the candy company made a strategic move to find its most successful market
Why We LaughJul 24, 2023
Laughter may be the best medician, but do we really understand why? In this edition of Two Guys on Your Head Dr. Art Markman and Dr. Bob Duke explore the psychology of laughter.
How to (Actually) Change Someone’s MindJul 24, 2023
How do you convince someone who, for one reason or another, doesn’t see eye-to-eye with you?
The Secret History And Strange Future Of CharismaJul 24, 2023
How our culture, politics and technology became infused with a mysterious social phenomenon that everyone can feel but nobody can explain.
The fear of being duped is ubiquitous, but excessive scepticism makes it haJul 24, 2023
The fear of being duped is ubiquitous, but excessive scepticism makes it harder to trust one another and cooperate
How We Determine What to Believe as TrueJul 22, 2023
Psychologists have been studying a very basic cognitive function that appears to be of increasing importance - how do we choose what to believe as true or false? We live in a world awash in information, and access to essentially the world's store of knowledge is now a trivial matter for many people, especially in
Notes From the Inner Lives of Con ArtistsJul 22, 2023
Venture inside the minds of some of the greatest scammers.
‘The Bear’ and the Need for a Place to BelongJul 16, 2023
The powerful moral message of FX’s hit show.
People Can Be Convinced They Committed a Crime That Never HappenedJun 18, 2023
Lab-based research shows that adults can be convinced, over the course of a few hours, that as teens they perpetrated crimes that never actually occurred.
An Illustrated Guide to Mouth Gestures and Their Meanings Around the WorldJun 1, 2023
An excerpt from François Caradec’s book “Dictionary of Gestures.”
How Your Body Posture Communicates Feelings to OthersMay 6, 2023
New research suggests that body postures can reveal our emotions to other people—and maybe even change how we feel inside.
Make Yourself Happy: Be KindMay 3, 2023
How to break the negative feedback loop that can make us act mean
Whistleblowers Are the Conscience of Society, Yet Suffer Gravely For TryingApr 30, 2023
Why Don’t More People Support Whistleblowers? ...Legislatures Should Provide the Protections They Deserve [Author’s Note: I blew the whistle and was met with an experience so destructive that I did not have the words to describe what happened to me. I set out to learn if what happened to me is a known phenomenon and,
Small acts of kindness matter more than you thinkApr 12, 2023
Text a friend, write a thank-you note, compliment a stranger — people appreciate these gestures.
The Art and Science of Spending MoneyApr 8, 2023
Former General Electric CEO Jack Welch once nearly died of a heart attack.
Hacker NewsApr 8, 2023
These methods have helped me enormously—and can save you much heartache and anxiety
The Purpose Of Life Is Not Happiness: It’s UsefulnessApr 5, 2023
Happiness as an achievable goal is an illusion, but that doesn't mean happiness itself is not attainable.
The Running Conversation in Your HeadMar 29, 2023
What a close study of “inner speech” reveals about why humans talk to themselves.
Be Dignified, as a RuleMar 28, 2023
Much of what you’ve read on this blog has been written in pajama pants. Writing directly follows meditation in my morning routine, so I’ve often gone right from the cushion to the coffeepot to the desk. Occasionally life would remind me that there are practical reasons to put on socially acceptable pants before beginning the workday. Someone could knock on
How to live like an Epicurean | Psyche GuidesMar 22, 2023
Forget shallow hedonism. Follow this philosophy for wondrous, unexpected joys and resilience against inevitable misfortune
Why can’t Americans agree on, well, nearly anything? Philosophy has some answersMar 20, 2023
Two concepts can help explain why society seems increasingly unable to agree on basic facts.
How to be a better loser | Psyche GuidesMar 19, 2023
As a competitor, you can’t avoid the hurt of losing. But you can learn ways to bounce back stronger and more motivated
ShoshikantetsuMar 16, 2023
Dunning–Kruger Effect - The Decision LabMar 16, 2023
Dunning–Kruger Effect explains why the least competent at a task often incorrectly rate themselves as high-performers because they do not know otherwise.
Why Do Stupid People Think They're Smart? The Dunning Kruger Effect (animatMar 16, 2023
The Dunning-Kruger effect can be observed during talent shows like American Idol. The auditions are usually filled with a variety of good and bad singers. The ones who are bad at it, almost never realize how bad they really are.
Low ability people do not possess the skills needed to recognize their own incompetence or lack of knowledge. Their poor self-awareness leads them to overestimate their own capabilities.
However when you become more knowledgeable about a certain topic, that confidence falls. Only when you start to reach above average skill, is when the your confidence about a certain topic starts to pick up again.
But why? Why does being less skilled make you more confident in your abilities?
Images © Piers Baker www.svgdoodlewhiteboard.com
#dunningkrugereffect #cognitivebias #stupidpeople
Young Chinese Ask: Does This Life Spark Joy?Mar 15, 2023
In growing online communities devoted to minimalism, young Chinese swap tricks for scoring bargains or cutting down on unnecessary purchases. But the real motivation is regaining a sense of control in an uncertain world.
Why we usually can't tell when a review is fakeMar 13, 2023
Is that review real or fake? Most of us can't tell
lifehacks - Alexey GuzeyMar 12, 2023
be as specific as possible. “agi takeoff fast”: define “agi” “takeoff” “fast” there’s no such thing as a coincidence for decisions: autoresolve (1) on specific date (2) to the scary one let people tell you no. don’t make the decision for them. if you’re ever confused about what to do, just do the right thing expectation of progress towards a goal is key to motivation. we are not motivated if we don’t know next step. we are …
How Loneliness Reshapes the Brain | Quanta MagazineMar 2, 2023
Feelings of loneliness prompt changes in the brain that further isolate people from social contact.
A ‘Distinctly Human’ Trait That Might Actually Be UniversalFeb 22, 2023
Disgust is surprisingly common across nature.
Research: How Risky Behavior SpreadsFeb 20, 2023
How does risky behavior spread? There are two theories: one involving social cues and the other involving trial-and-error. Covid-19 offered a chance to study this phenomenon and found evidence for both. In particular, the authors’ research documents a phenomenon of “risk creep,” where lucky near-misses (not getting Covid) encourage people to take riskier behavior in the future.
How to have more fun: 5 ideas to make your life more playful : Shots - HealFeb 17, 2023
Happiness can sometimes feel just out of reach. But having more fun? You've got this — and those giggles and playful moments can make a big difference to your health and well-being.
What Is Psychological Safety?Feb 16, 2023
What exactly is psychological safety? It’s a term that’s used a lot but is often misunderstood. In this piece, the author answers the following questions with input from Harvard Business School professor Amy Edmondson, who coined the phrase “team psychological safety”: 1) What is psychological safety? 2) Why is psychological safety important? 3) How has the idea evolved? 4) How do you know if your team has it? 5) How do you create psychological safety? 6) What are common misconceptions?
There’s a Growing Crisis in Our Social Lives. Is the Cure This Simple?Feb 16, 2023
We’re suffering from a “quiet catastrophe.” What if the fix is something we used to do all the time?
A neuroscientist shares the 4 ‘highly coveted’ skills that set introverts apart: ‘Their brains work differently’Feb 15, 2023
Neuroscientist Friederike Fabritius has worked with companies like Google and Deloitte on how to retain top talent. While many leaders prefer to hire extroverts, she says introverts are often more successful at work.
Why Everyone Feels Like They’re Faking ItFeb 10, 2023
The concept of Impostor Syndrome has become ubiquitous. Critics, and even the idea’s originators, question its value.
Hacker NewsFeb 8, 2023
If you want to get anything done, there are two basic ways to get yourself to do it. The first, more popular and devastatingly wrong option is to try to motivate yourself. The second, somewhat unpo…
The PR Power of Fessing UpFeb 7, 2023
Research shows that a company’s confessions to past wrongs enhances people’s perception of its corporate responsibility.
Kind Engineering: How To Engineer KindnessFeb 7, 2023
How do you avoid becoming a Brilliant Jerk? Read this article to learn practical tips on communication, honesty and psychological safety.
Bonhoeffer's "theory of stupidity": We have more to fear from stupid people than evil onesFeb 3, 2023
Bonhoeffer's "theory of stupidity" posits that we have more to fear from stupidity than evil. The latter is easier to defeat than the former.
An alternate ending to the tragedy of the commonsJan 31, 2023
I recently read Elinor Ostrom’s Governing the Commons and have been evangelizing it so enthusiastically that I figured I’d do a quick…
The Power of the Stora Rör Swimming Association and Other Local InstitutionJan 31, 2023
Economist Elinor Ostrom believed in the power of economics to “bring out the best in humans.” The way to do it, she thought, was to help them build community.
The Alchian-Allen EffectJan 29, 2023
How it explains cheap luxuries, strong pricing power, and good careers.
How to Talk with Your Team About the Elephant in the RoomJan 27, 2023
If your team feels “stuck,” the problem might involve issues that are difficult to discuss — conflict between two team members, for example, or an underperforming employee. To address these issues head-on, leaders must learn the art of framing a conversation so people can organize their thoughts, feelings, and experiences to come to a solution. This article offers a five-step process around framing, and two examples of how it can help bring “undiscussables” into the light.
The Manipulative Power of Small Favors: How to Disarm ReciprocityJan 25, 2023
Reciprocity is both a blessing and a curse, as it fosters relationships, but also exposes us to manipulation
The lonely zoneJan 23, 2023
For many, the goal is to be the deciding vote, the donation that gets a cause over the goal, the person who counts. And often, we enjoy piling on. Once the cause or fashion or tech is clearly worki…
Easily Distracted? You Need to Think Like a Medieval MonkJan 22, 2023
Focusing wasn’t much easier in the time before electricity or on-demand TV. In fact, you probably have a lot in common with these super-distracted monks.
Mental Models to Help You Cut Your Losses - By Annie Duke - Behavioral ScieJan 22, 2023
When should you hold 'em and when should you fold 'em? Use this set of decision-making tools to help you identify when it’s time to move on and find the courage to do so.
Life Lessons from 1,000 Years | The Curiosity ChronicleJan 13, 2023
The Curiosity Chronicle has quickly become one of the most popular newsletters for growth-minded individuals in the world. Each week, subscribers receive a deep dive that covers topics ranging from growth and decision-making to business, finance, startups, and technology. In addition, subscribers receive The Friday Five, a weekly newsletter with five ideas curated to spark curiosity headed into the weekend.
The Coach in the Operating Room (2011)Dec 28, 2022
Outside ears, and eyes, are important for concert-calibre musicians and Olympic-level athletes. What about regular professionals?
Why vinyl records survive in the digital age | Ars TechnicaDec 21, 2022
Don’t underestimate ritual and tactility.
An Ancient Solution to Modern Problems | Hidden Brain MediaDec 18, 2022
People in every country and culture mark important milestones, such as births, marriages and deaths with intricately choreographed scripts. We even appeal to supernatural forces when to give our favorite sports teams an extra advantage. This week on the show, anthropologist Dimitris Xygalatas explains the psychological power behind the sacred and secular rituals that structure our lives.
Deliberate doubt: the art of questioning our assumptionsDec 6, 2022
Deliberate doubt is the practice of actively questioning our beliefs and assumptions. It is about suspending our certainty and letting go of our preconceived notions in order to explore new ideas and perspectives.
Why Do We Love the Music We Love?Nov 23, 2022
Susan Rogers, acclaimed record producer and expert in music cognition, talks about her new book, This Is What It Sounds Like .
The Secret To Talking To Someone Who Always Gets DefensiveNov 22, 2022
Talking to someone who gets defensive can be frustrating. So, what can you do? Here's how to sidestep someone's personal fortifications.
A "psychological vaccine": Why prebunking is the best way to fight misinformationNov 21, 2022
By exposing people to small doses of misinformation and encouraging them to develop resistance strategies, "prebunking" can fight fake news.
'Persuasion Fatigue' Is a Unique Form of Social FrustrationNov 18, 2022
When people argue, a kind of frustration called persuasion fatigue can cloud their judgment and harm relationships
The stigma around secondhand gifting is fading awayNov 17, 2022
With inflation top of mind for many, surveys show consumers are more eager to buy secondhand items as holiday gifts this year to save money. Are the drivers behind gifting resale items this holiday different from past years?
How we tune out distractionsNov 5, 2022
MIT neuroscientists have identified a brain circuit that helps us to filter out unwanted background noise or other distracting sensory stimuli. When this circuit is engaged, the prefrontal cortex selectively suppresses sensory input as it flows into the thalamus, the site where most sensory information enters the brain.
How to Be Resilient in the Face of Harsh CriticismNov 5, 2022
Most of us have been “feedsmacked” at some point in our life. In the midst of a meeting, an innocent walk down the hallway, or a performance review, someone delivers a verbal wallop that rocks us to our psychological footings. These situations are so tough to handle because we all have two fundamental psychological needs: safety (perceived physical, social, or material security) and worth (a sense of self-respect, self-regard or self-confidence). Critical feedback feels traumatic because it’s often interpreted as a threat to these needs. Fortunately, there are four skills that will help you reduce the perceived threat in the moment. First, collect yourself. You might breathe deeply and slowly or notice your feelings. Then, seek to understand the feedback. Ask questions. Ask for examples. Get curious. Next, take the time you need to recover before you evaluate the feedback. Lastly, examine what you were told, scouring for the kernels of truth. That’s where the learning and development comes from. Being caught off-guard with feedback isn’t fun, but it doesn’t have to be traumatic if you use these four skills.
The Psychologist | BPSOct 30, 2022
The magazine of the British Psychological Society - in print and online.
A Complete Taxonomy of Internet Chum - The AwlOct 29, 2022
by John MahoneyThis is a bucket of chum. Chum is decomposing fish matter that elicits a purely neurological brain stem response in its target consumer: larger fish, like sharks. It signals that they should let go, deploy their nictitating ...
The four horsemen of fearOct 5, 2022
All fears can be divided into four broad categories which psychologists refer to as the four horsemen of fear: bodily, interpersonal, cognitive and behavioral fears. And each of the four horsemen of fear can be addressed by applying simple strategies.
Charlie Tyson: "Theater of Shame"Oct 4, 2022
What does the state of online shaming reveal about our democracy?
How to have better arguments | Psyche GuidesOct 1, 2022
Arguing well isn’t just about winning. A philosophical approach will help you and the other person get much more out of it
The strange psychology of Reddit's r/RoastMeSep 27, 2022
A dive into the weirdest place to be intentionally wrecked online
Escape the perfectionist trap with the Japanese philosophy of "wabi sabi"Sep 22, 2022
Perfectionism is on the rise, and its consequences for mental health can be devastating. The Japanese philosophy of "wabi sabi" can help.
Do You Even Need a Hobby?Sep 20, 2022
An essential reading list for breaking down the merits of introducing structured leisure into your life. Plus, how to find a pastime if you’re lacking inspiration.
The Real Magic of RitualsSep 18, 2022
We might call them superstitions or spells, but they genuinely drum anxiety away.
The utterly delightful site dedicated to classifying plastic bread tagsSep 15, 2022
The Holotypic Occlupanid Research Group sounds super-official, but it's just one very obsessed guy.
A Gentleman’s Guide to Getting Out of a ConversationSep 14, 2022
Because telling someone to shut the heck up isn’t ‘gentlemanly’ or ‘civilized’ or ‘appropriate for a 5-year-old’s birthday party, Brian, Jesus.
Four Ways to Cool Down Your DefensivenessSep 13, 2022
Our brains make us naturally defensive, but there are steps we can take to cultivate more humility.
Purring Is a Love Language No Human Can SpeakSep 9, 2022
Some cats do it, but others can’t—and researchers still don’t fully understand why.
How to cope with shame | Psyche GuidesSep 9, 2022
Do you feel perpetually bad, broken or unlovable? These tools will help you relate to yourself in a fairer, gentler way
How to Figure Out the Power Dynamics in a New JobSep 1, 2022
When you join a new organization, it’s important to understand who holds the power because they directly impact how work gets done, but it’s not always perfectly clear. In this piece, the author offers strategies to better identify where the true power exists. “At first glance across your company, it’s natural to assume that those who have ‘chief’ or ‘senior’ in their titles are the ones that dominate the power landscape,” the author writes. “But this isn’t always the case.”
How I Learned to Talk to Aggressive People | by Savannah Carreno | Aug, 202Aug 31, 2022
As someone who researches American religion, I find myself in impassioned conversations quite often. Religion is a beautiful element that…
Down the Rabbit Hole: Why People Fall for Conspiracy TheoriesAug 30, 2022
And how to talk to those who have fallen for falsehoods.
The Trait That ‘Super Friends’ Have in CommonAug 28, 2022
A secure attachment style can help people initiate and maintain friendships.
Five Lessons from HistoryAug 27, 2022
The most important lessons from history are the takeaways that are so broad they can apply to other fields, other…
LAug 25, 2022
The Neuroscience Behind Bad DecisionsAug 22, 2022
Irrationality may be a consequence of the brain’s ravenous energy needs.
Kind gestures bring recipients more joy than we assumeAug 19, 2022
Our underestimation of how people feel receiving a small act of kindness can actual hinder us from extending those gestures, research finds.
The Hidden Power of Workplace RitualsAug 19, 2022
Employees rightly expect to be able to bring their feelings — big and small — to work. One important way to provide that support is through rituals. The author defines rituals using two important benchmarks. First, rituals go beyond their practical purpose, moving participants beyond transaction and into meaning. For instance, lighting a candle when the lights go out isn’t a ritual, but turning off the lights and lighting a candle at sundown is. Second, rituals are sorely missed when they’re taken away. The author presents a case study from a company that took a risk in real time and created a successful response to a tragedy, and over time, that response became a ritual. Here’s how they did it, and how leaders can better understand their own rituals — both current ones and those that have yet to be discovered.
The Scientific Underpinnings and Impacts of ShameAug 17, 2022
People who feel shame readily are at risk for depression and anxiety disorders
Judgment is an exercise in discretion: circumstances are everything | Aeon EssaysAug 17, 2022
A virtuous person respects the rules. So when should the same person make a judgment call and break or bend them instead?
Seven Things I Learnt Doing Stand-Up Comedy | Michael Gomes VieiraAug 15, 2022
I took part in a 6 week stand-up comedy course for beginners at The Comedy Store in Central London. At the end of the course, myself and the other co...
All time best interviews with accused fraudstersAug 14, 2022
One of my pastimes is listening to interviews with accused corporate fraudsters before and after they got caught.
The Economic Principle That Helps Me Order at RestaurantsAug 14, 2022
If you’re just eating one dish, you’re missing out.
The Importance of Holiday CardsAug 14, 2022
Sending written holiday greetings is not a new tradition. Holiday cards are new, however. Where did this practice come from and why does it persist?
Animal Magic: Why Intelligence Isn’t Just for HumansAug 13, 2022
Meet the footballing bees, optimistic pigs and alien-like octopuses that are shaking up how we think about minds.
On the moral virtues of mischief and mischievous people | Aeon EssaysAug 12, 2022
Mischievousness requires humour, wit and a playful humaneness: qualities that make for a particular kind of virtue
How effective altruism went from a niche movement to a billion-dollar forceAug 9, 2022
Effective altruism has gone mainstream. Where does that leave it?
The Psychology of FOMOAug 9, 2022
One of the many unintended consequences of social media is what is popularly referred to as FOMO - fear of missing out. People see all the wonderful things people are doing and buying in their social media profiles, and fear that they are missing out on the good life, or the latest trend, or perhaps
The Making of a Conspiracy Theory | Tzafrir BarzilayAug 5, 2022
On the fabrication of well-poisoning accusations in medieval Europe.
How the Brain Links Gestures, Perception and MeaningAug 1, 2022
Neuroscience has found that gestures are not merely important as tools of expression but as guides of cognition and perception.
What Keeps a Crowd from Becoming a Mob?Jul 29, 2022
Amid COVID, studies in Denmark suggest that crowds do not always engage in bad behavior—and that mass-gatherings sometimes offer meaningful connection
The value of not flyingJul 28, 2022
Why might people decline an offer of up to $10,000 just to keep their feet on the ground?
Shamelessness as a strategyJul 26, 2022
I’ve enjoyed playing a game called Avalon recently. I won’t go too far into the rules, but it’s a hidden role game in the vein of Secret Hitler or Werewolf, where one team is “good”, trying to uncover who among them is “evil”, before the evil team wins.
When Did Shaking Hands Become a Standard Way of Greeting Someone?Jul 24, 2022
There’s ancient evidence for the custom of shaking hands, but did it mean the same thing then as it does today?
Be the Most Persuasive Person in the Room: 9 Things Highly Influential People Always Do, According to ScienceJul 19, 2022
Sometimes facts, logic, and reasoning aren't enough. Here's how the most persuasive people make a great argument even more convincing.
MediumJul 19, 2022
MediumJul 19, 2022
MediumJul 19, 2022
A Checklist of eCommerce TacticsJul 19, 2022
Free Online Guide - What drives online purchases? And how can you apply this information to boost conversions?
How Great Leaders Respond to Negative Criticism in the Digital AgeJul 19, 2022
Corporate leadership today is more public than ever before thanks to digital communication and the web. The status quo has been upended by the ease with
Tribal Leadership: The Key To Building Great TeamsJul 19, 2022
Have you ever wondered about internal organization dynamics and why some groups of people (who aren’t on the same team) are more successful than others? Why different “tribes” inside the organization seem to be at war with one another lowering performance in increasing politics? Why certain groups of people never seem to do anything? Or why …
MediumJul 19, 2022
Getting Your Product Into the Habit ZoneJul 19, 2022
Companies utilize the Habit Zone to create user habits and influence user behavior. By creating habits, products become a part of users’ lives and minds.
The Nine Primary Tactics Used to Influence OthersJul 19, 2022
The Primary Tactics Used to Influence Others —The number one thing to understand about influence is that people make decisions for their reasons, not yours.
Loyalists vs MercenariesJul 19, 2022
One of the things that entrepreneurs, founders, and CEOs obsess over is holding onto their team. When I propose some sort of difficult decision to a CEO, I am often met with the response “the team will freak out and we will lose them.” And I understand where this emotion comes from. You spend so […]
Product Leadership Rules to Live By From My Experience at PandoraJul 19, 2022
Pandora's VP of Product Jack Krawczyk offers the six tactics you need to lead product managers.
Harvard's Sendhil Mullainathan on behavior and poverty | Harvard MagazineJul 19, 2022
A behavioral economist’s fresh perspectives on poverty
https://measureofdoubt.com/2017/02/05/which-cognitive-bias-is-making-nfl-coaches-predictable/Jul 19, 2022
MediumJul 19, 2022
Use the "But You Are Free" Technique to Persuade AnyoneJul 19, 2022
There are lots of techniques for becoming more persuasive , but perhaps the simplest, most practical technique is the But You Are Free me
Get your work recognized: write a brag documentJul 19, 2022
how-to-get-promoted-based-on-merit-rather-than-hubrisJul 19, 2022
This is how to compete and win on a biased playing field.
How Two Companies Hooked Customers On Products They Rarely UseJul 19, 2022
Not every business needs to have habit-forming products. Here's how two companies hooked customers and formed habits with products they rarely used.
Conservation of Intent: The hidden reason why A/B tests aren’t as effective as they lookJul 19, 2022
Separating Yourself from the Pack | Hidden Brain MediaJul 18, 2022
Have you ever gotten into a heated argument about politics? Maybe you’ve said something you're not proud of during game night with friends, or booed the opposing team at a sporting event. Psychologist Mina Cikara studies what happens in these moments — when our mindset shifts from “you and me” to “us and them.” This week on the show, Mina shares the profound ways that becoming a part of a group shapes our thoughts, feelings and behaviors.
Clay Christensen’s Milkshake MarketingJul 18, 2022
Many new products fail because their creators use an ineffective market segmentation mechanism, according to HBS professor Clayton Christensen. It's time for companies to look at products the way customers do: as a way to get a job done.
How to sell to the 42 different archetypesJul 18, 2022
How Darknet Sellers Build TrustJul 18, 2022
The Amazon for drug dealing is built around user reviews.
The Paralyzing Effect of Choice - SuperMoneyJul 18, 2022
Have you ever stopped to think about just how many decisions you make each and every day? Some choices are very simple, such as choosing to get up in the
How to Make the Most of Your Customer Testimonials - Help ScoutJul 18, 2022
Bland customer testimonials always go bust. Here's how to get great quotes from your customers.
CEOs Don't Come Pre-Made, Authentic Leadership Has To Be Learned | TechCrunchJul 18, 2022
Editor’s note: Scott Weiss is a partner at Andreessen Horowitz and the former co-founder and CEO of IronPort Systems, which was acquired by Cisco in 2007. An approachable and authentic CEO is essential to fostering a high-performance, open communications culture.
Resonance: How to Open Doors For Other PeopleJul 18, 2022
Opening doors for other people is a critical concept to understand in life. Read this article to learn more about how to show people that you care.
14 Mental Models to Help You (And Me) Think Clearly, Rationally, and EffectivelyJul 18, 2022
Here’s some good news: You can train your brain to think faster and work smarter.
https://curiosity.com/topics/when-your-beliefs-change-you-probably-dont-realize-it-curiosity/Jul 18, 2022
Block Your TalkJul 18, 2022
This one of a series of essays on speaking. Find more here. You’ve written a great talk, you’ve made your deck (or not!) and you’ve practiced. But have you considered how you’ll move while speaking…
Mistakes Managers Should AvoidJul 18, 2022
Some managers keep diaries of their on-the-job mistakes, partly to avoid repeating errors, and partly to make employees comfortable with failure. At least one added cartoons.
Here’s How To Know If Your “Values” Are Really ValuesJul 18, 2022
Amidst the flurry of recent disclosures about people and companies in our little northern hemisphere who are doing things they say they’re…
Signaling as a ServiceJul 18, 2022
01 Intro One of the best books I have read in the last few years is The Elephant in the Brain by Robin Hanson and Kevin Simler. The book makes two main arguments: a) Most of our everyday actions can be traced back to some form of signaling or status seeking b) Our brains deliberately hi
19 Psychological Hacks To Gain A Selling Advantage | The Sales ExpertsJul 18, 2022
Hacks that will help you to bring the whole sales process on the next level. Check out our tips that proved their good value.
You want people to do the right thing? Save them the guilt trip | Psyche IdeasJul 18, 2022
If you want to inspire people to do the right thing, don’t guilt-trip them. Positive emotions are a more powerful motivator
Henry Rollins on defining successJul 18, 2022
Henry Rollins talks about not labelling what you do, why he’s not interested in advice, the need to make things constantly, and why he’s never had a creative block.
How To Get People To Like You: 7 Ways From An FBI Behavior Expert - Barking Up The Wrong TreeJul 18, 2022
How to get people to like you -- it's a tricky problem. Here the head of the FBI’s Behavioral Analysis Program explains how to make people like you quickly.
HomeJul 18, 2022
Made to Stick: Summary & Examples + PDF | The Power MovesJul 18, 2022
In This Made To Stick summary you will learn exactly how to make your ideas persuade people and "stick" into their minds.
21 Fascinating Persuasion Techniques That Boost Website ConversionsJul 18, 2022
Powerful communicators employ these persuasion techniques when designing online experiences that convert visitors into leads and sales.
How to avoid cognitive biases when you get paid to think - Inverted PassionJul 18, 2022
One of the major findings in last 50 years has been what people had suspected all along: human thinking and judgment often isn’t rational. By this, I mean given a situation where someone has to make a decision, she will often take a decision that “leaps” to her immediately rather taking than a decision that… Read More
Neil Patel's Digital Marketing BlogJul 18, 2022
Your #1 resource for digital marketing tips, trends, and strategy to help you build a successful online business.
Empathy is a skill. Here's how to cultivate itJul 18, 2022
"Empathy is something like a muscle: left unused, it atrophies; put to work, it grows."
Managing Two People Who Hate Each OtherJul 18, 2022
How to minimize the drama and keep your team on track.
Willful Disobedience: Character Traits of Independent Thinkers in the Military - Modern War InstituteJul 18, 2022
In a speech on October 4 at the Association of the United States Army’s 2016 Annual Meeting, Chief of Staff of the Army Gen. Mark Milley shared a vision of […]
Book Summary: Spark by Dr. Jeremy Dean | Sam Thomas DaviesJul 18, 2022
This is a book summary of Spark by Dr. Jeremy Dean. Read this Spark summary to review key takeaways and lessons from the book.
50+ examples of Robert Cialdini's 6 Principles Of Influence in marketingJul 18, 2022
76 votes, 15 comments. Some context: At marketing meetups, we've always heard people namedropping Dr. Robert Cialdini's 6 Principles Of Influence…
How to Uncover Your Creative Talent by Using the "Equal Odds Rule"Jul 18, 2022
You can't predict your own success, but the Equal Odds Rule tells us something important about uncovering creative talent. Read the article to learn more.
Most Common Cognitive Biases Visualised & ExplainedJul 18, 2022
There used to be a generic belief that humans are completely rational. It is easily understandable why a belief like this was popular…
‘I’ll have what she’s having’ – how and why we copy the choices of othersJul 18, 2022
New research on consumer behavior shows that we tend to match some types of choices the people around us make, but not others.
8 common traits of uncommon product leadersJul 18, 2022
I’ve found the following to be common (and not easily taught) in people whose product skills I admire.
Take Your Team From Worst To First: Leadership Lessons From The Boston Red SoxJul 18, 2022
John Farrell took his team from the bottom of their division last year to the 2013 World Series with a set of tactics every manager should learn.
A Navy SEAL Explains 8 Secrets To Grit And Resilience - Barking Up The Wrong TreeJul 18, 2022
Navy SEAL platoon leader James Waters explains what keeps elite operators going and how you can apply this type of grit to your own challenges.
A Story from Google Shows You Don’t Need Power to Drive StrategyJul 18, 2022
Five things you need instead.
Have the Courage to Be DirectJul 18, 2022
It’s time to get past the human tendency to avoid conflict-causing topics.
You’re Already More Persuasive than You ThinkJul 18, 2022
Simple, direct requests get better results.
21st-Century Propaganda: A Guide to Interpreting and Confronting the Dark Arts of PersuasionJul 18, 2022
In the West, “rational propaganda” has become the primary form of political discourse.
Mentors Are The Secret Weapons Of Successful Startups | TechCrunchJul 18, 2022
“I’ve probably revised this investor pitch deck 200 times,” a founder told me recently. She’d met with more than 50 potential investors before closing a seed round last month. This might sound excessive to some, but her experience is not unusual. Entrepreneurs often spend hundreds of hours raising funds from angel and venture capital investors. While these activities are clearly important, analysis of new data on startups suggests that founders should also dedicate significant time to something that many people overlook: recruiting great mentors. This simple strategy can increase a company’s odds of success more than almost anything else.
To Fight Polarization, Ask, “How Does That Policy Work?” - Behavioral ScientistJul 18, 2022
When people discover that they don’t know as much as they thought they did, something interesting happens: their political attitudes become less extreme.
Book Review: Turn the Ship Around! How to Create Leadership at Every LevelJul 18, 2022
I just had the pleasure of reading David Marquet's book, Turn the Ship Around!: A True Story of Turning Followers into Leaders*, and I have been encouraging everyone I see
8 Ways to be UBER Charismatic | HighExistenceJul 18, 2022
What did JFK, Marilyn Monroe and Hitler all have in common?They were all renowned charismatics that lit up every room they entered. You’ve most likely met one of these kinds before. The guy/girl at the party. They possess some strange quality that causes them to be liked
Beautiful People Don’t Always Win in the WorkplaceJul 18, 2022
Research shows how attractive employees can rub some customers the wrong way.
20 Rules for a Knight: A Timeless Guide from 1483Jul 18, 2022
“Often we imagine that we will work hard until we arrive at some distant goal, and then we will be happy. This is a delusion. Happiness is the result of a life lived with purpose. Happiness is not an objective. It is the movement of life itself, a process, and an activity. It arises from …
Basic Social Skills Guide - Improve Your Social SkillsJul 18, 2022
Free online social skills guide. Contains information on understanding body language, making conversation, and setting good social skills goals.
Play May Be a Deeper Part of Human Nature Than We ThoughtJul 18, 2022
An animal study brings us closer to understanding our own behavior
How to Deliver Constructive Feedback in Difficult SituationsJul 18, 2022
Thoughtful, empathetic language can make or break your business relationships
The art of memory: mnemonic techniquesJul 18, 2022
Nowadays, when we want to remember something, we mostly use our phone to take a quick note, create a reminder, message ourselves on Slack, or just add it to our calendar. Granted, having a good memory may not be as useful as it used to be, but there’s lots of research showing that training your ... Read More
People Literally Don't Know When to Shut Up--or Keep Talking--Science ConfirmsJul 18, 2022
We are really bad at navigating a key transition point during one of the most basic social interactions
Cavemen, Samurais and Fight Club on breaking through failure | Spikelab.org - Mentoring social entrepreneurs for impactJul 18, 2022
There's an increasing amount of talk around failure and the fear of it, but it's largely missing the point. Here's why
The Way Humans Point Isn’t as Universal as You Might ThinkJul 18, 2022
It was long thought that humans everywhere favor pointing with the index finger. But some fieldwork out of Papua New Guinea identified a group of people who prefer to scrunch their noses.
Why Is Art Expensive? - PriceonomicsJul 18, 2022
How do you sell a six-figure painting? Branding and a heavily "curated" marketplace.
Mental modelsJul 18, 2022
These are some mental models I find useful. They’re rooted in decades of experience of thousands of experts – a modern equivalent of folk wisdom. Mental models are useful to quickly and correctly reason about seemingly intractable problems. They require quite a bit of intuition to properly internalize, but once you’ve internalized them they’re relatively easy to apply. They’re also easy to forget in the moment – use this post as a checklist when thinking about complex problems.
8 body-language tricks that are hard to master but will pay off foreverJul 18, 2022
Good body language is a crucial part of making an excellent first impression.
LappleApple/awesome-leading-and-managing: Awesome List of resources on leading people and being a manager. Geared toward tech, but potentially useful to anyone.Jul 18, 2022
Awesome List of resources on leading people and being a manager. Geared toward tech, but potentially useful to anyone. - LappleApple/awesome-leading-and-managing
A Look Back at the Package Under the Golden ArchesJul 18, 2022
Early Happy Meals promoted the McDonaldland characters, which were introduced in 1971.
Identify Leaders By Giving People Assignments - Brad FeldJul 18, 2022
As the Boulder Startup Community evolved, I started to become inundated with people who wanted to get involved. Some of these were locals while others where people looking to move to Boulder, or who had recently moved here. Some where people known to me while others were new relationships. As the momentum, size, impact, and reach […]
8,760 Hours: How to get the most out of next yearJul 18, 2022
Update (December 2016): Version 2 of this guide is now available! Announcement post here. Links in this post are updated to send you to the latest and greatest version. Click here to download 8,760 Hours v2 The end of a year […]
4 Leadership Types That Can Destroy a Perfectly Good StrategyJul 18, 2022
The home of Process Excellence covers topics from Business Process Management (BPM) to Robotic Process Automation (RPA), AI, Lean Six Sigma and more. Latest news, freshest insight and upcoming events and webinars.
Why Being Bored Is Good | The WalrusJul 18, 2022
Technology keeps us constantly stimulated. What do we lose when we no longer have nothing to do?
Real Leaders Don’t Do Focus GroupsJul 18, 2022
Apple is famous for not engaging in the focus-grouping that defines most business product and marketing strategy. Which is partly why Apples products and advertising are so insanely great. They have the courage of their own convictions, instead of the opinions of everyone else’s whims. On the subject, Steve Jobs loves to quote Henry Ford […]
Bad at public speaking? The trick is to distill your message to these 15 words, says speech trainerJul 18, 2022
Mastering the art of public speaking has nothing to do with your personality, with overcoming shyness or learning to act confident. It's a technical skill that nearly anyone can acquire — just like cooking.
How a Preview Image Increased a Landing Page's Conversion Rate by 359% - Search Engine WatchJul 18, 2022
Using Google’s new “Google Experiments” for A/B testing confirmed a hypothesis that a landing page with a preview image will have a higher conversion rate than a landing page without the preview image. Here’s how you can conduct your own test.
Why The Other Side Won't Listen to ReasonJul 18, 2022
At some point during your first year as a human being, the adults throw a real curveball at you. They expect you to start understanding what right and wrong mean. These lessons come in the form of mysterious reactions that follow certain things you do. After you pull all the books from the bottom shelf onto the floor, quite a
Pliny the Elder: A case study in scarcity marketing - MarketplaceJul 18, 2022
Pliny the Elder inspires beer hunters around the world to search for just one bottle.
14 Persuasive Writing Techniques That Trigger A ResponseJul 18, 2022
Here are 14 persuasive writing techniques that will make your website appeal to visitors and increase your conversion rates.
9 Ways to Strengthen Your “Good Attitude” MuscleJul 18, 2022
“Everything can be taken from a man but one thing: the last of human freedoms — to choose one’s attitude in any given set of circumstances, to choose one’s own way.” – Viktor E. Frankl, neuroscientist, psychiatrist, concentration camp survivor Your life is defined by two things. First, it’s defined by the choices you make. […]
The Best Article Ever Written About BraggingJul 18, 2022
After feeling belittled, I journey into the heart of bragging and discover 17 modes of showing off.
Fixing the Smartest Person in the Room IssueJul 18, 2022
The “Smartest Person in the Room” Issue, Its Importance in Business & Especially in Startups As a startup founder or company CEO, you hear all the time, “You want to hire people ‘smarter than you’”, and you also hear, “Don’t be the smartest person in the room.” But what does this really mean and why
Moving Your Agenda | The Leading Blog: A Leadership BlogJul 18, 2022
Leadership Now is a leading source for leadership development and analysis. We believe that anyone can make a difference by leading from where they are.
From Forever 21 to Online Shopping, Why Fast Fashion Is So AddictiveJul 18, 2022
Research shows that the brain finds pleasure in the pursuit of inexpensive things, and high-street chains and online retailers sites alike are cashing in.
Inversion and The Power of Avoiding StupidityJul 18, 2022
Inversion is a powerful mental model to improve your thinking because it helps you identify and remove obstacles to success. Most of us tend to think one way about a problem: forward. Inversion allows us to flip the problem around and think backward.
Managing the “Invisibles”Jul 18, 2022
Reprint: R1405G Even in an age of relentless self-promotion, some extremely capable professionals prefer to avoid the spotlight. “Invisibles” work in fields ranging from engineering to interpreting to perfumery, but they have three things in common: They are ambivalent about recognition, seeing any time spent courting fame as time taken away from the work at hand. They are meticulous. And they savor responsibility, viewing even high pressure as an honor and a source of fascination. Something else unites Invisibles: They represent a management challenge. The usual carrots don’t motivate them; however, managers can take several steps to ensure their satisfaction. Leaders should recognize who their Invisibles are; decide if they want more Invisibles on the team; reward them fairly, soliciting reports on their accomplishments; make the work more intrinisically interesting; and talk to the Invisibles about what works best for them. These actions are well worth taking, as Invisibles not only bring exceptional levels of achievement to an organization but quietly improve the work of those around them, elevating performance and tone across the board.
7 Reasons Why Emotional Intelligence Is One Of The Fastest-Growing Job SkillsJul 18, 2022
Here’s why hiring managers say they often value emotional intelligence more highly than IQ.
How An Ancient Chinese War General Would Run Your Startup Better - MattermarkJul 18, 2022
"The success of your startup is determined before you ship a single line of code." Okay, you’re right, Sun Tzu, the ancient Chinese war general and author
Prospect Theory: What It Is and How It Works, With ExamplesJul 18, 2022
Prospect theory argues that if given the option, people prefer more certain gains rather than the prospect of larger gains with more risk.
How to Fail at Almost Everything and Still Win BigJul 18, 2022
Don't set goals. Passion is bullshit. Mediocre skills are valuable. These are just a few of the unexpected truths you'll discover in Scott Adams' new book. Here are 10 more takeaways.
How to Create a Chain Reaction of Good HabitsJul 18, 2022
One thing leads to another and before you know it, you've got a routine.
How two companies hooked customers on rarely used productsJul 18, 2022
Larry Page, CEO of Alphabet (the company formerly known as Google), has a quirky way of deciding which companies he likes. It’s called “The Toothbrush Test.” According to the New York Times, when Page looks at a potential company to acquire
How to be ApproachableJul 18, 2022
Why some people are constantly approached by friendly nearbys whereas others might as well be invisible
4 Ways to Use Social Proof on an Ecommerce SiteJul 18, 2022
Building trust and putting online shoppers at ease are important parts of ecommerce marketing and merchandising, since very few folks will hand over
Habits Are The New Viral: Why Startups Must Be Behavior Experts | TechCrunchJul 18, 2022
Face it; you’re hooked. It’s your uncontrollable urge to check for email notifications on your phone. It’s your compulsion to visit Facebook or Twitter for just a few minutes, but somehow find yourself still scrolling after an hour. It’s the fact that if I recommended a book to purchase, your mind would flash “Amazon” like a gaudy neon sign. If habits are defined as repeated and automatic behaviors, then technology has wired your brain so you behave exactly the way it wants you to. In an online world of ever-increasing distractions, habits matter. In fact, the economic value of web businesses increasingly depends on the strength of the habitual behavior of their users. These habits ultimately will be a deciding factor in what separates startup winners and losers.
Why Should Anyone Be Led by You?Jul 18, 2022
We all know that leaders need vision and energy, but after an exhaustive review of the most influential theories on leadership–as well as workshops with thousands of leaders and aspiring leaders–the authors learned that great leaders also share four unexpected qualities. The first quality of exceptional leaders is that they selectively reveal their weaknesses (weaknesses, not fatal flaws). Doing so lets employees see that they are approachable. It builds an atmosphere of trust and helps galvanize commitment. The second quality of inspirational leaders is their heavy reliance on intuition to gauge the appropriate timing and course of their actions. Such leaders are good “situation sensors”–they can sense what’s going on without having things spelled out for them. Managing employees with “tough empathy” is the third quality of exceptional leadership. Tough empathy means giving people what they need, not what they want. Leaders must empathize passionately and realistically with employees, care intensely about the work they do, and be straightforward with them. The fourth quality of top-notch leaders is that they capitalize on their differences. They use what’s unique about themselves to create a social distance and to signal separateness, which in turn motivates employees to perform better. All four qualities are necessary for inspirational leadership, but they cannot be used mechanically; they must be mixed and matched to meet the demands of particular situations. Most important, however, is that the qualities encourage authenticity among leaders. To be a true leader, the authors advise, “Be yourself–more–with skill.”
Consumers Are Becoming Wise to Your Nudge - Behavioral ScientistJul 18, 2022
New research indicates that consumers are catching on and may be annoyed by certain nudges, potentially limiting their effectiveness.
Why the Most Important Idea in Behavioral Decision-Making Is a FallacyJul 18, 2022
The popular idea that avoiding losses is a bigger motivator than achieving gains is not supported by the evidence
Better If It’s Man-Made?Jul 18, 2022
Why the French love to say noJul 18, 2022
Although the default answer to almost every question, request or suggestion is a disheartening ‘non’, a ‘oui’ is often hiding in the context of what is being said.
How to do hard thingsJul 18, 2022
Scott Hanselman's Complete List of Productivity TipsJul 18, 2022
Note Scott Hanselman (me): I had been meaning to write up my productivity tips ...
How YouTube is changing toysJul 18, 2022
Kids are obsessed with YouTube unboxing videos. The toy industry is taking notice.
A Crash Course in the Neuroscience of Human Motivation — LessWrongJul 18, 2022
[PDF of this article updated Aug. 23, 2011] • [skip to preface] …
How to Make Your Product Scientifically Irresistible | Gainsight SoftwareJul 18, 2022
Your product can’t suck. That’s a given. But it’s also not enough to be a good product that doesn’t hook your customer and connect to their pain points.
The Tipping Point SummaryJul 18, 2022
The Tipping Point summary shows you why ideas spread like viruses, which 3 kinds of people are responsible for it & why no bad idea will ever spread.
Who Wouldn’t Want to Be More Charismatic?Jul 18, 2022
Neil Patel's Digital Marketing BlogJul 18, 2022
Your #1 resource for digital marketing tips, trends, and strategy to help you build a successful online business.
How To Get Respect: 5 Points Backed By Science - Barking Up The Wrong TreeJul 18, 2022
Nobody likes to be disrespected. And everyone loves getting respect. But it can be tricky. Here are the scientific secrets of how to get respect.
Grabbing Attention and Holding Onto ItJul 18, 2022
Be a Minimally Invasive ManagerJul 18, 2022
It’s not your job to carry the ball, but to run interference for those who do.
9 Ways This Introvert Polished His Public Speaking SkillsJul 18, 2022
Not all introverts suffer from public speaking anxiety. But if you do, here are some ideas to eliminate it and become a strong communicator.
Google’s Quest to Build a Better Boss (Published 2011)Jul 18, 2022
A company study found that a manager’s technical skills were far less valued by employees than people skills.
Why People Buy Perception And Not RealityJul 18, 2022
“Reality is merely an illusion, albeit a very persistent one.” ~ Albert Einstein It was well past 5pm and we were still at the office debating about how we should inspire our customers. We were debating the strategy to ‘be like Mike‘ or to ‘be like Joe.’ To be like Mike, meant we would only …
Lincoln on LeadershipJul 18, 2022
Fight the Good Fight The probability that we may fall in the struggle ought not to deter us from the support of a cause we believe to be just. Try Honey Before Vinegar If you would win a man to your cause, first convince him that you are his sincere friend. On the contrary … …
Why Japan is so successful at returning lost propertyJul 18, 2022
Cultural norms, complex religious influences and friendly police officers make losing something no big deal. But does this tell the whole story about Japan’s relationship with honesty?
The Top 10 Psychology Books You Should ReadJul 18, 2022
Understand the world better with 35 concepts | ConceptuallyJul 18, 2022
Understand the world and make better decisions using concepts from psychology, philosophy, economics and other disciplines, delivered straight to your inbox every Sunday.
Pursuing the Psychological Building Blocks of Music - Behavioral ScientistJul 18, 2022
Humans are wired to produce and understand music, suggest researchers in an ambitious new study. Despite the evidence, not everyone is likely to be convinced.
Why Washing Machines Are Learning to Play the HarpJul 18, 2022
Appliance makers believe more and better chimes, alerts, and jingles make for happier customers. Are they right?
The Nine Primary Tactics Used to Influence OthersJul 18, 2022
The Primary Tactics Used to Influence Others —The number one thing to understand about influence is that people make decisions for their reasons, not yours.
https://www.fastcompany.com/3016115/leadership-now/7-tough-leadership-lessons-from-a-navy-seal-commanderJul 18, 2022
“Get them to say no”: Expert lessons in influence from the most persuasive professions on earthJul 18, 2022
The job of a good storyteller, marketer, or writer is to pull one over on you. To make you believe what they’re saying, no matter how farfetched it might be.
The generation effectJul 18, 2022
Do you feel like you can remember things better when you actively engage with the information and create your own version of it? That’s called the Generation Effect. In a research paper published in 1978 in the Journal of Verbal Learning and Verbal Behavior, scientists described it as the phenomenon where information is better remembered ... Read More
https://betterhumans.coach.me/this-is-the-fastest-way-to-improve-your-life-f3ee2f7215ed%23.8wy0ducppJul 18, 2022
Biases and BlundersJul 18, 2022
If we really want to understand how we can nudge people into making better choices, it’s important to understand why they often make such poor ones.
Social Proof Is the Most Important Factor in SellingJul 18, 2022
If I had to choose a single factor that is crucial to an online store’s success, it would be social proof. The term is often misunderstood. It doesn’t
Habits, Obstacles, and Media Manipulation with Ryan HolidayJul 18, 2022
This week I chat with Ryan Holiday, an author and hacker, about habits, obstacles, and media manipulation.
Persuasion Triggers In Web Design — Smashing MagazineJul 18, 2022
How do you make decisions? If you're like most people, you'll probably answer that you pride yourself on weighing the pros and cons of a situation carefully and then make a decision based on logic. You know that other people have weak personalities and are easily swayed by their emotions, but this rarely happens to you. You've just experienced the [fundamental attribution error](https://en.wikipedia.org/wiki/Fundamental_attribution_error) — the tendency to believe that other people's behaviour is due to their personality (“Josh is late because he's a disorganised person”) whereas our behaviour is due to external circumstances (“I'm late because the directions were useless”). Cognitive biases like these play a significant role in the way we make decisions so it's not surprising that people are now examining these biases **to see how to exploit them in the design of web sites**. I'm going to use the term ‘persuasion architects' to describe designers who knowingly use these techniques to influence the behaviour of users. (Many skilled designers already use some of these psychological techniques intuitively — but they wouldn't be able to articulate why they have made a particular design choice. The difference between these designers and persuasion architects is that persuasion architects use these techniques intentionally).
The Invention of Sliced Bread - PriceonomicsJul 18, 2022
Sliced bread: the greatest thing since...sliced bread.
A List Of 8 Core Values I Live ByJul 18, 2022
Our values matter not because of how we are perceived, but because of how they define our character and set us apart from all others.
Why Do We Gesture When We Talk?Jul 18, 2022
Gesture researchers have spent the past 40 years uncovering how movements (like a cupped hand rotating in space or a finger tracing a path through the air) are intimately tied to speech.
Why a Surprise Drop Can Be a Great Marketing Ploy for BrandsJul 18, 2022
Hulu and Beyoncé have pioneered a new way to generate hype.
Why too much evidence can be a bad thingJul 18, 2022
(Phys.org)—Under ancient Jewish law, if a suspect on trial was unanimously found guilty by all judges, then the suspect was acquitted. This reasoning sounds counterintuitive, but the legislators of ...
This Is How To Stop Checking Your Phone: 5 Secrets From Research - Barking Up The Wrong TreeJul 18, 2022
You want the good things technology brings. You also want to know how to stop checking your phone so much. Here's what a behavior expert says is the answer.
7 Persuasion Tips For More Influence and Better Engagement - The Secret Product Manager HandbookJul 18, 2022
Use these 7 persuasion tips to instantly make your presentations, roadmaps, marketing and sales materials more compelling, engaging, and influential.
BehanceJul 18, 2022
Ten Techniques To (Quickly) Build Trust With AnyoneJul 18, 2022
Ten techniques for building quick trust and rapport with anyone from the FBI’s Counterintelligence training program.
A Dozen Lessons about Business from Anthony BourdainJul 18, 2022
“The absolute certainty that nobody was going to care about, read or buy Kitchen Confidential was what allowed me to write it. I didn’t have to think about what people expected. I didn’t car…
How to Get an MBA from Eminem? - James AltucherJul 18, 2022
In 2002 I was driving to a hedge fund manager’s house to hopefully raise money from him. I was two hours late. This was pre-GPS and I had no cell phone. I was totally lost. If you’ve never driven around Connecticut you need to know one thing: all the roads are parallel and they […]
The Psychology of the Self-Appointed Genius - PriceonomicsJul 18, 2022
How ignorance and a little ego threat can make us ridiculously over-confident.
How to Respond to a Bullshit ApologyJul 18, 2022
In the span of five days, Saturday Night Live hired and fired comedian Shane Gillis after his use of sexist, homophobic, racist language— including
Tap into the power to persuade by using these 6 techniques of clear and compelling speechJul 18, 2022
Politicians and other public figures deploy particular rhetorical devices to communicate their ideas and to convince people, and it’s time that we all learned how to use them, says speechwriter Sim…
The Science of Snobbery: How We're Duped Into Thinking Fancy Things Are BetterJul 18, 2022
Wine snobs, string quartets, and the limits of intuition
How to Build a New Habit: This is Your Strategy GuideJul 18, 2022
Understanding how to build new habits is essential for making progress. Read this guide right now to learn 5 easy, powerful strategies for changing habits.
MediumJul 18, 2022
How to Persuade Anyone of Anything in Ten Seconds - James AltucherJul 18, 2022
You’re on the most important elevator ride of your life. You have ten seconds to pitch- the classic “elevator pitch”. Love or Hate. Money or Despair. And you may never get this chance again. As PM Dawn says, “I feel for you. I really do.” There are books about this. But don’t waste your time. […]
The Ultimate Guide to Conversion Rate OptimizationJul 18, 2022
Follow this guide for everything you need to know about conversion rate optimization, how it works, and how to use it.
The Psychology of a Fanboy: Why You Keep Buying the Same StuffJul 18, 2022
None of us want to admit it, but chances are we're all fanboys of something. Whether it's a particular brand of software, gadget, or anything else, we
The tricks to make yourself effortlessly charmingJul 18, 2022
From the first moment you walk into a room people are making judgements about how much they like you. Fortunately, there are ways to improve your chances
The Ten Golden Rules of Leadership: Classical Wisdom for Modern LeadersJul 18, 2022
The Ten Golden Rules of Leadership explores the classical figures to determine the ten crucial axioms of leadership. Rule 1. Know Theyself. Rule 2 ...
Beginner's Guide to Arguing ConstructivelyJul 18, 2022
How to turn arguments from vicious battles into productive dialogues.
Cultural Coaching: Knowing When to Shut UpJul 18, 2022
The American tendency to fill up quiet space is not a good strategy with the Chinese.
Beyond Biohazard: Why Danger Symbols Can't Last Forever - 99% InvisibleJul 18, 2022
The world is full of icons that warn us to be afraid — to stay away from this or not do that. And many of these are easy to understand because they represent something recognizable, like a fire, or a person slipping on a wet floor. But some concepts are hard to communicate visually, especially
MediumJul 18, 2022
How to Negotiate with a LiarJul 18, 2022
People, including negotiators, lie every day, so when you’re trying to make a deal, it’s important to defend against deception. The best strategy, says the author, is to focus not on detecting lies but on preventing them. She outlines five tactics that research has shown to be effective: Encourage reciprocity. You can build trust and prompt other parties to disclose strategic information by sharing information yourself. Ask the right questions. Negotiators often lie by omission, keeping mum about relevant facts, but if directly asked, they are more likely to respond honestly. Watch for dodging. Don’t let your counterparts sidestep your questions—write them down in advance, take notes on the answers, and make sure you get the information you’re seeking. Don’t dwell on confidentiality. Studies show that the more you reassure others that you’ll protect their privacy, the more guarded and apt to lie they become. So be nonchalant when discussing sensitive topics. Cultivate leaks. People often reveal information unwittingly, so listen carefully for any slips and try indirect approaches to gaining information.
How Our Brain Determines if the Product is Worth the PriceJul 18, 2022
Are consumers more likely to buy if they see the price before the product, or vice versa? Uma Karmarkar and colleagues scan the brains of shoppers to find out.
15 Psychological Triggers to Convert Leads into CustomersJul 18, 2022
Would you like to know how to get more customers who can’t wait to buy your products and services?
Why Do We Even Listen to New Music?Jul 18, 2022
Our brains reward us for seeking out what we already know. So why should we reach to listen to something we don’t?
Are you outspoken at work? How to use your voice – and not get firedJul 18, 2022
Hello, my name is Andrew, and I can’t stop disagreeing.
Constructive Pessimism - SKMurphy, Inc.Jul 17, 2022
Many entrepreneurs are naturally optimistic and discouraging pessimistic thinking, but the clever use of constructive pessimism is key to success
How Do You Know if You’re Actually Humble?Jul 16, 2022
There are ways to figure out how aware you are of your own limitations—and to cultivate intellectual humility.
gift exchanges behavior - Google SearchJul 10, 2022
What Makes Shoppers Click? A Lesson in E-Commerce Consumer Psychology (INFOGRAPHIC) - Conversion SciencesJul 6, 2022
Consumers have access to all kinds of buyer information on-line. So what is it that makes them click?
8 Reasons Users Don’t Fill Out Sign Up FormsJul 5, 2022
Signing up for a website is a big commitment to most people. Users who sign up for your site are giving you their personal information. If you misuse their personal information, you could abuse their trust. Most users today are more wary than ever about who handles their personal information. In a cyber world full of […]
The Science of Asking What People WantJul 5, 2022
Market research can extract plenty of data, but its greatest value is in evoking reactions
Auction Addiction: This Online Industry's Dirty SecretsJul 5, 2022
How easy is it to fall into auction addiction? Here we examine how one site, Quibids, tried its hand at behavioral design.
The Case for the Supermarket SupershopperJul 5, 2022
Some shoppers find joy in daily trips to the grocery store simply for the community, let alone the miracle of abundance.
Why criticism lasts longer than praiseJul 5, 2022
Most of us are subjected to insults, sarcastic comments or bad feedback in our everyday lives. But we weren't built to deal with torrents of criticism.
The rise, fall, and rise of the status pineappleJun 30, 2022
For a couple of centuries, the British were in an unlikely frenzy for the exotic fruit.
The Three Types of Specialists Needed for Any RevolutionJun 30, 2022
From a passage of Kurt Vonnegut’s Bluebeard, the three types of specialists needed for the success of any revolution. Slazinger claims to have learned from history that most people cannot open their minds to new ideas unless a mind-opening team wit
7 Techniques for Capturing People's AttentionJun 29, 2022
The person who can capture and hold attention is the person who can effectively influence human behavior. Here's how to do it.
How Self-Service Kiosks Are Changing Customer BehaviorJun 28, 2022
From ATMs to automated checkouts to fast food.
Urban Dictionary: Bumping the lampJun 28, 2022
To go above and beyond expectations when completing a given task/project. A genericized phrase originally used within the animation industry and the film industry as a whole. Based on a scene from the 1988 mixed live-action/animated film 'Who Framed Roger Rabbit' in which the main live-action character, Eddie Valiant, bumps into a ceiling lamp whilst handcuffed to the main animated character, Roger Rabbit, causing the lamp to continually swing back and forth throughout the remainder of the scene. The term refers to how the animators went on to meticulously hand-draw unique shadows for the animated character for every frame of the scene. The phrase went on to become a company mythos for the Walt Disney Company, then as a guiding principle within the greater film industry, and now sees use generally.
Lifelong Quests! Lawsuits! Feuds! A Super-Serious Story About Cereal.Jun 27, 2022
The world’s most obsessive breakfast-food fans demonstrate just how far humans will go for the sweet taste of nostalgia.
Sunday Firesides: If You See Something, Say SomethingJun 26, 2022
In a classic experiment conducted by the psychologist Solomon Asch, participants were placed in a group, shown a “target” line alongside a set of comparison lines of varying lengths, and asked which was closest in length to the target. The answer was always obvious, but unbeknownst to the study’s actual participants, they had been placed […]
Ultimate TermsJun 25, 2022
There are words which have special meaning within each culture and carry power where they are used.
What to Look For When Hiring a Community ManagerJun 25, 2022
What People Hate Most About Waiting in LineJun 25, 2022
Let's say you and your roommate have a little side business baking rhubarb pies at home and selling them on a street corner. Folks love pie, and you're...
An Exercise to Help Your Team Feel More Comfortable with ConflictJun 25, 2022
The ability to get issues on the table and work through them constructively is critical to having a healthy culture. Managers can normalize productive conflict on your team by using an exercise to map out the unique value of each role and the tensions that should exist among them. Draw a circle and divide that circle into enough wedges to represent each role on your team. For each role, ask: What is the unique value of this role on this team? On which stakeholders is this role focused? What is the most common tension this role puts on team discussions? Answer those questions for each member of the team, filling in the wedges with the answers. As you go, emphasize how the different roles are supposed to be in tension with one another. With heightened awareness and a shared language, your team will start to realize that much of what they have been interpreting as interpersonal friction has actually been perfectly healthy role-based tension.
The Psychology of Limitation: How Constraints Make Us More CreativeJun 25, 2022
If you've ever stared at a blank page, you know the importance of creative constraints. Learn how to harness limitations for more and better ideas.
How Asian dating sites cracked your biggest complaint—everyone lies onlineJun 25, 2022
Online dating site OKCupid has found an inexplicable number of men happen to be exactly six feet tall and there are four times as many people who claim to earn $100,000 per year as there should be. False advertising, or misrepresentation, is standard in any marketplace; the dating market is no different.
Want to Win Someone Over? Talk Like They Do.Jun 25, 2022
What does it take to become a more convincing communicator? New research suggests that linguistic mirroring — that is, adjusting your communication style to match that of your audience — is an effective tool to increase your ability to influence others. In this piece, the authors describe four key dimensions of linguistic mirroring, as well as several tactical strategies for leaders looking to win over a client, judge, or other important evaluator. Ultimately, they argue that building genuine relationships with key evaluators is the best way to gain insight into their linguistic preferences — but it’s up to all of us to make sure that we use the power of linguistic mirroring for good.
The Hustler’s MBAJun 25, 2022
Take "the Other" to lunchJun 25, 2022
There's an angry divisive tension in the air that threatens to make modern politics impossible. Elizabeth Lesser explores the two sides of human nature within us (call them "the mystic" and "the warrior”) that can be harnessed to elevate the way we treat each other. She shares a simple way to begin real dialogue -- by going to lunch with someone who doesn't agree with you, and asking them three questions to find out what's really in their hearts.
When the Nerves of Knowledge Send False Signals: A Conversation on Our Age of Misinformation - Behavioral ScientistJun 25, 2022
How do false beliefs spread, and what are the consequences?
How to Be a StoicJun 25, 2022
Born nearly two thousand years before Darwin and Freud, Epictetus seems to have anticipated a way out of their prisons.
LinkedIn Learning Blog: Where Professionals Go to LearnJun 25, 2022
The LinkedIn Learning Blog is written for professionals by professionals. Discover courses, tips and information that can take your career to new heights.
Mental Models: The Best Way to Make Intelligent Decisions (~100 Models Explained)Jun 25, 2022
The smartest people in the world use mental models to make intelligent decisions, avoid stupidity, and increase productivity. Let's take a look at how ...
Finish Line: Weaponize the chip on your shoulderJun 24, 2022
Never underestimate the power your own insecurities can generate.
GTA V: 9 Facts That Will Blow Your MindJun 23, 2022
The data or the hunchJun 23, 2022
More and more decisions, from the music business to the sports field, are being delegated to data. But where does that leave our intuition?
How to Market Taboo ProductsJun 23, 2022
Tips from successful campaigns promoting everything from shapewear to prostate health.
The psychology of unfinished tasksJun 22, 2022
Unfinished tasks can overwhelm us or motivate us. These contradictory experiences are due to the Zeigarnik and the Ovsiankina effects.
Why we need rituals, not routinesJun 21, 2022
How rituals can help you approach basic tasks more mindfully.
Drew Houston's Commencement addressJun 21, 2022
'I stopped trying to make my life perfect, and instead tried to make it interesting.'
How to Feel Better NakedJun 21, 2022
Whether you want to find joy in your body, or just greater self-acceptance, these four strategies from psychologists and activists — and, yes, nudists — might help.
‘Just stop buying lattes’: The origins of a millennial housing mythJun 18, 2022
Financial gurus want young home shoppers to stop complaining and cut back on small luxuries. But there are broader affordability issues at play.
A history of the smile through art, culture and etiquette | Aeon EssaysJun 15, 2022
How our toothy modern smile was invented by a confluence of French dentistry and Parisian portrait-painting in the 1780s
They Were Cigarette Smokers. Then a Stroke Vanquished Their Addiction.Jun 14, 2022
Patients whose brain injury coincidentally relieved their nicotine cravings may help unravel the neural underpinnings of addiction, a new study suggests.
The Desirability of StorytellersJun 13, 2022
Among Filipino hunter-gatherers, storytelling is valued more than any other skill, and the best storytellers have the most children.
We don t do that hereJun 13, 2022
The Dark Art of Pretending You Are FineJun 13, 2022
I landed on a documentary about a guy who had a headache for years and never had a check-up. They found out later he had a brain tumor.
Sometimes It’s Not the Change They Hate — Users KnowJun 13, 2022
There has been a lot of discussion in the design world recently about "change aversion." Most of the articles about it seem to be targeting the new Google redesign, but I've certainly seen this same discussion happen at many companies when big changes aren't universally embraced by users.
Why We Use Less Information Than We Think to Make DecisionsJun 12, 2022
How much information do you need to make up your mind? Our research in various domains of decision making shows that we make decisions more quickly and based on less information than we think. This has important implications in an age in which information is plentiful.
The Greatest Privilege We Hardly Talk About: BeautyJun 11, 2022
The advantages of being attractive are exorbitant. Beauty might be the single greatest physical advantage you can have in life. And yet…
Why your favourite colour is probably blueJun 10, 2022
From a young age we are primed to choose a favourite colour, but strangely as we grow up our preference often changes – and it's largely due to influences outside our control.
Human Contact Is Now a Luxury Good (Published 2019)Jun 7, 2022
Screens used to be for the elite. Now avoiding them is a status symbol.
Notes on Effective AltruismJun 4, 2022
The science of regrettable decisionsJun 2, 2022
A doctor explains how our brains can trick us into making bad choices — and how to fight back.
Learn Street Epistemology To Deal With Difficult People at Work | Code CapsuleMay 28, 2022
Learn the street epistemology conversation technique and how you can apply it at work.
What makes hate a unique emotion – and why that matters | Psyche IdeasMay 17, 2022
How does hating someone compare with anger, contempt or disgust? A clearer picture of what makes it unique is emerging
Personas vs. ArchetypesMay 15, 2022
Archetypes and personas used for UX work contain similar insights, are based on similar kinds of data, and differ mainly in presentation. Personas are presented as a single human character, whereas archetypes are not tied to specific names or faces.
The Endgames of Bad Faith CommunicationApr 13, 2022
Using interactions to shape user behavior patternsFeb 24, 2022
Facebook Messenger: Long Press to Swipe
How to Learn the Trick of ConfidenceFeb 24, 2022
Can ‘confidence-whisperer’ Nate Zinsser help Jamie Waters boost his wavering self-belief?
Decision-Making: Research Shows What Happens When We Wait for “Something Better”Feb 19, 2022
Terrible at making decisions? A 2020 study reveals just how much our expectations drop while taking the time to decide on something.
The Most Prized Watch Brands You’ve Never Heard OfFeb 18, 2022
The rising prices of Rolexes and Pateks have collectors turning to what one expert called “the dead brands society.”
Micromanipulation: The Covert Tactic That Narcissists Use in Arguments to Reassert ControlFeb 11, 2022
Here’s how to recognize its damaging effects.
How Artists Use Psychology to Price a PaintingFeb 10, 2022
Driven by buyers' need for consistency and explanation, the most popular pricing method uses a surprisingly simple formula based on size.
18 Cognitive Bias Examples Show Why Mental Mistakes Get MadeFeb 10, 2022
Here are 18 of the most common mental mistakes in business and investing. Make sure to learn from these cognitive bias examples to make better decisions.
Storming Reddit's MoatFeb 8, 2022
A Guide to Reddit, Its Key Competitive Advantages, and How to Unbundle It
Scarcity in UX: The psychological bias that became the normJan 29, 2022
Short analysis on the current state of affairs and a few tips to keep in mind.
UX Crash Course: User PsychologyJan 29, 2022
My mission for 2014 was to get more people started in User Experience (UX) Design. In January, hundreds of thousands of people did the original UX Crash Course and it was translated into Spanish, Portuguese and Korean by amazing volunteers. In May we continued with a User Psychology lesson every day.
Do We Create Shoplifters? - Unintended ConsequencesJan 29, 2022
The history of technology is one of subtracting humans and replacing them with machines. Do the unintended consequences include creating shoplifters?
Read the CIA’s Simple Sabotage Field Manual: A Timeless Guide to SubvertingJan 21, 2022
I’ve always admired people who can successfully navigate what I refer to as “Kafka’s Castle,” a term of dread for the many government and corporate agencies that have an inordinate amount of power over our permanent records, and that seem as inscrutable and chillingly absurd as the labyrinth the character K navigates in Kafka’s last allegorical novel.
How to Gather Quantitative Data on User BehaviorsJan 17, 2022
The quantitative methods we used were all time and cost-efficient, demonstrating that user research doesn’t require thousands of dollars and endless time.
UX Design Psychology Tricks for Design ExcellenceJan 17, 2022
Human brain processes information as well as how it forms certain patterns of behavior. Discover cognitive psychology tips for UX.
The User Experience of Public Bathrooms [APRIL FOOLS]Jan 17, 2022
Public restrooms are plagued by unusable toilet-paper dispensers, difficult flushing controls, and poor stall-status visibility. Many of these issues can be addressed by following standard usability practices.
The Authority PrincipleJan 17, 2022
A perceived high-authority status of the person making a request can make people more compliant with that request. Applying this principle in UX can ease users' decision-making process.
Creepiness–Convenience TradeoffJan 17, 2022
As people consider whether to use the new "creepy" technologies, they do a type of cost-benefit analysis weighing the loss of privacy against the benefits they will receive in return.
Sympathy vs. Empathy in UXJan 17, 2022
The majority of UX professionals practice sympathy instead of empathy for their users.
MediumJan 17, 2022
It turns out you can bullshit a bullshitter after all | BPSJan 17, 2022
That's according to a new paper in the British Journal of Social Psychology.
MediumJan 17, 2022
How to perform well under pressure | Psyche GuidesJan 17, 2022
Ditch the tough talk, it won’t help. Instead cultivate your mental flexibility so you can handle whatever comes your way
My Favorite LiarJan 13, 2022
“It's my intention to work into each lecture one lie...” Remembering a favourite teacher whose unorthodox methods got his students' attention
How to learn the trick of confidenceJan 12, 2022
Can ‘confidence-whisperer’ Nate Zinsser help Jamie Waters boost his wavering self-belief?
Your sense of right and wrong is interwoven with your personality | Psyche IdeasJan 7, 2022
Personality traits such as agreeableness and openness to experience can help explain differences in moral judgment
What Makes Group Decisions Go Wrong. And Right.Jan 7, 2022
Why intellectual laziness doesn’t have to lead to groupthink.
Sensitive People Bring a Major Happiness Habit to the WorkplaceJan 6, 2022
Hint: It’s all to do with empathy.
Why are some people compelled to cheat at games? - BBC FutureDec 28, 2021
When it comes to unfair tactics, some of us are just better at bending the rules. But, the urge to cheat at games is easier to understand when you examine how they are designed.
The Four Desires Driving All Human Behavior: Bertrand Russell’s MagnificentDec 27, 2021
“Nothing in the world is more exciting than a moment of sudden discovery or invention, and many more people are capable of experiencing such moments than is sometimes thought.”
Instant gratification: The neuroscience of impulse buyingDec 25, 2021
Our brains did not evolve to shop on Amazon.
Most Read Articles of 2021Dec 23, 2021
Take a moment to dive into the pieces your fellow behavioral science enthusiasts read most this year.
The Sorting Hat of Sales MindsetDec 15, 2021
The Behavioral Economics of Price-SettingDec 8, 2021
Prospect theory proposes that when making decisions people use a reference point to frame prospective alternative outcomes as either potential gains or losses; when considering prospective gains, they are risk-averse and prefer certainty, but when considering prospective losses, they are risk-prone and prefer to risk the possibility of larger but uncertain losses. However, when setting
Among Social Scientists, a Vigorous Debate Over Loss AversionDec 2, 2021
A principle that explains decision-making — from investor behavior to insurance markets — isn't ironclad, experts argue.
CD box sets are wonderfulDec 1, 2021
I know, we're all doing vinyl and there has probably been no better time to be a vinyl junkie, given the number of places selling it and the...
Why overly kind and moral people can rub you up the wrong wayNov 29, 2021
‘Do-gooders’ are often judged harshly. Why do we resent their acts of altruism or question their motives?
Sign of the Times: Why Young Chinese Are Removing Their TattoosNov 11, 2021
Chinese millennials are getting tattoos in record numbers. But when it’s time to get married or start a career, many are forced to rush back to the studio to get them erased.
How to Harness the Power of BelongingNov 9, 2021
Wharton’s Katy Milkman interviews New York University professor Jay Van Bavel about his new book, ‘The Power of Us,’ which explores how group affiliations shape our identity and can influence performance and cooperation.…Read More
Interoception: The Hidden Sense That Shapes WellbeingOct 27, 2021
There’s growing evidence that signals sent from our internal organs to the brain play a major role in regulating emotions and fending off anxiety and depression.
Psychological ‘Specialness Spirals’ Can Make Ordinary Items Feel Like TreasuresOct 8, 2021
Have you ever bought an item and then just not gotten around to using it because the time never felt right? Researchers now have the data for what they call ”nonconsumption”—and it may explain how clutter accumulates.
Why Spanish colonial officials feared the power of clothing | Psyche IdeasAug 19, 2021
Colonial society depends on a clear distinction between the rulers and the ruled. Clothing could create problems
The Parallel-Parking Job That Ignited the InternetAug 9, 2021
It prompted thousands of insults, threats, and moral judgments.
Declined invitations go over more graciously when lack of money is cited instead of lack of time – new researchAug 5, 2021
Several studies found that using the excuse ‘I don’t have time’ when declining an invitation harmed the relationship with the person who extended it.
Why Horror Films Are More Popular Than EverJul 24, 2021
It feels good to control what will terrify you.
Intercultural ManagementJul 24, 2021
In order to do well in an increasingly globalised world, managers need to be able to navigate different cultural waters. But what does that mean, exactly? What are the key things you need to know about intercultural management?
Assertiveness is a virtue that anyone can develop with practice | Psyche IdJul 17, 2021
You can’t stop people making demands on your time and energy, but you can develop assertiveness skills to protect yourself
How to Become a Master at Talking to StrangersJul 17, 2021
Entrepreneurs must become experts at connecting with anyone-and with a few simple strategies, you can. Here's what happened when I tried them myself.
The 10 Must-Read Psychology Books Every Human Being Should Read | DurmonskiJul 13, 2021
Regardless of where you are in the pathway of understanding how the human psyche works, this list of must-read psychology books will upgrade your personal library.
The Revival of StoicismJul 5, 2021
Everyone from Silicon Valley billionaires to self-help enthusiasts is repurposing Stoicism for our modern age, with results that are good, bad, and highly indifferent.
Why Charging for Plastic Bags Makes People Give Them UpJul 4, 2021
It's all about setting up psychological tripping blocks
How to Spot a CultJul 2, 2021
According to Amanda Montell’s new book, “Cultish,” the jargon and technical language of fanaticism is surprisingly common.
How to judge a public apology in the age of cancel cultureJun 21, 2021
Three questions to ask during and after a heated controversy
Does the Rorschach Inkblot Test Really Work?Jun 20, 2021
Learn about the Rorschach inkblot test, a type of projective assessment in which subjects look at 10 ambiguous inkblot images and say what they see in the image.
Why People Fall For Conspiracy TheoriesJun 17, 2021
You might not believe in QAnon, but you could still fall down the rabbit hole.
Behavioral Scientist’s Summer Book List 2021 - By Antonia Violante & Heather Graci Behavioral ScientistJun 9, 2021
Summer isn’t the same without a good reading list. Here are our behavioral science picks for summer 2021.
How Political Parties Can Win ConvertsJun 7, 2021
Political parties rarely run ads to try to win over long-term loyalists. New research suggests it’s actually possible—and worthwhile.
The Availability Bias: How to Overcome a Common Cognitive DistortionJun 7, 2021
We tend to judge the likelihood and significance of things based on how easily they come to mind. The more “available” a piece of information is to us, the more important it seems. The result is that we give greater weight to information we learned recently because a news article you read last night comes to mind easier than a science class you took years ago. It’s too much work to try to comb through every piece of information that might be in our heads.
Anthropologists and the business of sense-making at workJun 7, 2021
The long read: For decades, anthropologists have been telling us that it’s often the informal, unplanned interactions and rituals that matter most in any work environment. So how much are we missing by giving them up?
Dunning-Kruger meets fake news | Ars TechnicaJun 5, 2021
People who overrate their media savviness share more misleading material.
Why are we so uncharitable to those doing good deeds?Jun 3, 2021
From veganism to fundraising, psychologists have found acts of altruism often attract mistrust and even anger
One simple way to build someone’s confidence: Ask for their adviceMay 31, 2021
When we want people to change, we typically tell them what to do. But what if we flipped the script and asked them for their wisdom instead? Behavioral scientist Katy Milkman PhD explains the power…
The Truth about Lying - JSTOR DailyMay 30, 2021
You can’t spot a liar just by looking, but psychologists are zeroing in on methods that might actually work.
The Joy of Writing a RecommendationMay 29, 2021
5 tips on putting together a recommendation to help a young adult
Why do you feel lonely? Neuroscience is starting to find answers.May 29, 2021
A neuroscientist’s hunt for loneliness could help us better understand the costs of social isolation.
How to Quietly Get People’s Attention in a Noisy WorldMay 27, 2021
Being a calming influence when things go south is a seriously attractive quality
The Secret Psychology of Sneaker ColorsMay 24, 2021
You think they randomly choose those glaring shades of Nike, Adidas and New Balance? Think again.
8 damn good creative hacksMay 24, 2021
727 votes, 71 comments. The Dr. Seuss Method In 1960 two men had a $50 bet. One of the men was Theodore Geisel a.k.a Dr. Seuss. The other was Bennet…
All hail King Pokémon!May 22, 2021
Gary Haase has amassed the world’s most expensive Pokémon card collection, valued at over $10 million. So why isn’t he cashing in?
Fierce NerdsMay 18, 2021
Bullshit and IntelligenceMay 18, 2021
The term "bullshitting" (in addition to its colloquial use) is a technical psychological term that means, "communication characterised by an intent to be convincing or impressive without concern for truth." This is not the same as lying, in which one knows what they are saying is false. Bullshitters simply are indifferent to whether or not
Turn it down: how to silence your inner voiceMay 18, 2021
Your internal monologue shapes mental wellbeing, says psychologist Ethan Kross. He has the tools to improve your mind’s backchat
'He knew something': The Bay Area flight of Rangers that vanishedMay 12, 2021
The mission, still a secret to this day, was so dangerous many men bid emotional goodbyes...
Hacker NewsMay 1, 2021
Disgust may not be a straightforward extension of the immune system’s aversion to harmful substances, but rather “a psychological nebula, lacking definite boundaries, discrete internal structure, or a single center of gravity,” says psychologist Nina Strohminger.Photograph by Star Stock / Flickr Nina Strohminger, perhaps not unlike many fans of raunchy comedies and horror flicks, is […]
A guide to body language, from former FBI Special Agent Joe NavarroApr 23, 2021
Non-verbal communication is just as important as the words people say, and these subtle cues can reveal if someone is lying.
How to think like a detective | Psyche GuidesApr 22, 2021
The best detectives seem to have almost supernatural insight, but their cognitive toolkit is one that anybody can use
Declinism: how rosy retrospection impacts decision-makingApr 21, 2021
“It was better before,” says your friend. “Ha, those were the days,” your reply with a sigh. Declinism is the belief that societies tend towards decline, often linked with rosy retrospection—our tendency to view the past more favourably and the future more negatively. It may seem harmless, but declinism can cloud your judgement and lead ... Read More
The Glossary of HappinessApr 20, 2021
Could understanding other cultures’ concepts of joy and well-being help us reshape our own?
Find the Right Words to Inspire Your TeamApr 18, 2021
It’s important to understand that when you, as a leader, communicate with your team, using weaker words weakens your message and blunts your ability to inspire people. It’s not enough to just throw thoughts out there and hope for the best. You need to actively recommend ideas and assert their worthiness in all of your communications. For example, consider these “power words”: “I’m proposing (not “sharing”) an idea that will make our process more efficient.” “I’m suggesting (not “sharing”) a new logo that better conveys our brand message.” “I’m recommending (not “sharing”) a campaign to make our workplace more diverse.” Ultimately, audiences respond more actively to big points than to small words, but thoughtful leaders need to assess both, knowing that the more powerfully they come across — even in small ways — the greater impact they have on the people they hope to inspire.
15 Years of Spotify: How the Streaming Giant Has Changed and Reinvented the Music IndustryApr 18, 2021
As Spotify turns 15 this month, we look at 15 ways the streaming giant has changed, reinvented and reshaped music and the music business.
This is How to Repair a Toxic Work CultureApr 18, 2021
Feeling safe is the magic ingredient to a healthy work environment. In this article Nir discusses novel research on how to eliminate toxic work culture.
When Red Means “Go”: Color and Cultural Reactance in Risk PreferencesApr 13, 2021
Color can affect judgment and decision making, and its effects may vary across cultures. Research reported in this article shows that cross-cultural color effects on risk preferences are influenced by personal associations of color-gain/loss. Our research finds a cultural reactance effect, a phenomenon in which people who hold culturally incongruent (vs. cultural mainstream) color associations
Embrace the Grind - Jacob Kaplan-MossApr 12, 2021
Sometimes, programming feels like magic: you chant some arcane incantation and a fleet of robots do your bidding. But sometimes, magic is mundane. If you’re willing to embrace the grind, you can pull off the impossible.
Neuroscience may have a part in why you're playing Taylor Swift's songs onApr 10, 2021
Taylor Swift literally has music down to a science
FUD: Fear, Uncertainty, and DoubtApr 6, 2021
A Visual Guide to Human EmotionApr 3, 2021
A Simple Tip for Staying Assertive in Emotional ConversationsApr 2, 2021
Assertive communication is about compromise.
The truth about lyingMar 30, 2021
You can’t spot a liar just by looking — but psychologists are zeroing in on methods that might actually work
How can you tell if someone is lying?Mar 30, 2021
The conventional wisdom about how to spot a liar is all wrong.
What to Do When You Are Asking Yourself, “Is My Product Meh?”Mar 23, 2021
Entrepreneurs ask themselves "Is my product meh?" when they fear making a fool of themselves. Some objectives questions to ask yourself.
Breaking Through the Uncanny ValleyMar 22, 2021
In 1970 robotics professor Masahiro Mori observed, "Bbukimi no tani genshō," which was later translated into "uncanny valley". This refers to an observed phenomenon (first in robots, but also applies to digital recreations) that the more human-like the robot the greater the emotional affinity of people. However, as imitation approaches complete imitation it takes a
5 phrases to use to improve your emotional intelligence and relationships at workMar 21, 2021
Using responses like "tell me more" and "thanks for understanding" helps shift the focus from yourself to others and leads to better conversations.
Extrinsic Motivation: Why You Make Terrible Life ChoicesMar 20, 2021
The goal is to use extrinsic and intrinsic motivation in concert.
How to laugh more | Psyche GuidesMar 19, 2021
You don’t have to wait to be amused, there are ways to train yourself to enjoy the ‘cheap medicine’ of laughter every day
Jon Lai on Twitter: "The best apps today are games in disguise @calm @tiktoMar 14, 2021
Thread 👇
— Jon Lai (@Tocelot)
Public Speaking Nightmare: How to Shut Down Bullies and HecklersMar 11, 2021
Five tactics to silence the person trying to make you squirm.
The evolutionary psychology of talking with your hands - Big ThinkMar 8, 2021
A team of researchers from the Netherlands found that hands gestures, when used strategically, influence how certain words are heard.
How to Build a Culture of Generosity at WorkMar 6, 2021
Here are six practices to help your team ask for and give more help to each other.
If smiles are so easy to fake, why do we trust them? | Psyche IdeasFeb 24, 2021
Smiles can be a way to dupe people because they’re easy to fake – but we’ve figured out which smiles can be trusted
The Ultimate Guide to Liars and Lying: Everyone Falls Into These 4 TypesFeb 23, 2021
What is the psychology of the liar? There are various ways of classifying lies: by their consequences, by the importance of their subject matters, by the speakers' motives, and by the nature or context of the utterance. Perhaps the most useful way to classify lies is by the type of liars who tell them.
Veblen good - WikiwandFeb 23, 2021
A Veblen good is a type of luxury good, named after American economist Thorstein Veblen, for which the demand increases as the price increases, in apparent cont...
The Decoy Effect: How You Are Influenced to Choose Without Really Knowing IFeb 21, 2021
Think you got a good deal? Look again.
Persuading the UnpersuadableFeb 20, 2021
We live in an age of polarization. Many of us may be asking ourselves how, when people disagree with or discount us, we can persuade them to rethink their positions. The author, an organizational psychologist, has spent time with a number of people who succeeded in motivating the notoriously self-confident Steve Jobs to change his mind and has analyzed the science behind their techniques. Some leaders are so sure of themselves that they reject good opinions and ideas from others and refuse to abandon their own bad ones. But, he writes, “it is possible to get even the most overconfident, stubborn, narcissistic, and disagreeable people to open their minds.” He offers some approaches that can help you encourage a know-it-all to recognize when there’s something to be learned, a stubborn colleague to make a U-turn, a narcissist to show humility, and a disagreeable boss to agree with you.
The Real Reason Why You Sabotage Your Own GoalsFeb 19, 2021
How to overcome psychological reactance, the rarely-discussed psychological reflex that’s holding you back
How to be more productive without forcing yourselfFeb 19, 2021
Imagine you could work more and be wildly productive. And you wouldn’t need to force yourself to work.
How to have better arguments onlineFeb 18, 2021
The long read: The troubled times we live in, and the rise of social media, have created an age of endless conflict. Rather than fearing or avoiding disagreement, we need to learn to do it well
What Drives Us to Peek into Someone's Medicine Cabinet?Feb 12, 2021
What are we really hoping to find?
Dissecting the Bloodthirsty Bliss of Death MetalFeb 12, 2021
Fans of this violent music report feelings of transcendence and positive emotions; psychologists want to learn why.
Interpersonal Reactivity Index - Psychology | Eckerd CollegeFeb 12, 2021
[vc_row type=”full_width_background” full_screen_row_position=”middle” column_margin=”default” column_direction=”default” column_direction_tablet=”default” column_direction_phone=”default” scene_position=”center” top_padding=”48″ text_color=”dark” text_align=”left” row_border_radius=”none” row_border_radius_applies=”bg” overflow=”visible” overlay_strength=”0.3″ gradient_direction=”left_to_right” shape_divider_position=”bottom” bg_image_animation=”none”][vc_column column_padding=”no-extra-padding” column_padding_tablet=”inherit” column_padding_phone=”inherit” column_padding_position=”all” column_element_direction_desktop=”default” column_element_spacing=”default” desktop_text_alignment=”default” tablet_text_alignment=”default” phone_text_alignment=”default” background_color_opacity=”1″ background_hover_color_opacity=”1″ column_backdrop_filter=”none” column_shadow=”none” column_border_radius=”none” column_link_target=”_self” column_position=”default” gradient_direction=”left_to_right” overlay_strength=”0.3″ width=”1/1″ tablet_width_inherit=”default” animation_type=”default” bg_image_animation=”none” border_type=”simple” column_border_width=”none” column_border_style=”solid”][vc_column_text] Interpersonal Reactivity...
A neurosurgeon shares his effective strategy for overcoming fearsFeb 12, 2021
Think about your life like an x-y axis, with four quadrants.
How To Reduce Decision Noise - Commonplace - The Commoncog BlogFeb 10, 2021
Five ways to do noise reduction, from the field of judgment and decision making.
The surprising problem with ranked-choice votingFeb 9, 2021
By every measure I can think of, ranked-choice voting is a superior way to hold a modern election. When a group of people want to decide something at the national or even the organizational level, …
How to be angry | Psyche GuidesFeb 7, 2021
Anger is a fuel that’s dangerous when out of control. But managed well, it can energise you to identify and confront problems
Navigating the mind: 40 major fields of psychology and neuroscienceFeb 6, 2021
Psychology and neuroscience are such rapidly growing fields of research, it’s easy to get confused. If you’ve sometimes been scratching your head trying to figure out who does what, this guide is for you. We will cover 40 major fields of psychology and neuroscience using plain language explanations.
How the Brain Responds to BeautyFeb 5, 2021
Scientists search for the neural basis of an enigmatic experience
Why Losing Bonds Sports FansFeb 3, 2021
A study on team loyalty among fans shows that club ranking plays an important role in how they identify with one another.
The 6 Types of Grit (And How to Develop Them)Feb 3, 2021
We all want to be better than we are today. And that often requires pushing yourself beyond your comfort zone, even when you don’t feel like it. It requires getting back up and trying again and again when you fail. It requires sticking with a path long enough to see it through. In short, becoming […]
The Science of Changing Someone's MindJan 31, 2021
Don’t try to change someone else’s mind. Instead, help them find their own motivation to change.
Sunday Firesides: Don’t Confuse Niceness With KindnessJan 31, 2021
We often use the words “nice” and “kind” synonymously. But it can be helpful to distinguish between the two qualities, as Eric Kapitulik, Marine special operator and leadership coach, does. Being nice means making people feel good in the short-term. Behaving politely. Offering a smile and a pat on the back. Exchanging pleasantries. Avoiding arguments. […]
To Counteract Propaganda, We Should Look to Lessons from AdvertisingJan 31, 2021
The goal should not be conversion but doubt.
Mixed Signals: Why People Misunderstand Each OtherJan 30, 2021
The psychological quirks that make it tricky to get an accurate read on someone's emotions
Carl Braun on Communicating Like a Grown-UpJan 30, 2021
Industrial genius Carl Braun believed that clear thinking and clear communication go hand in hand. Here the guide on writing productively to get things done.
MediumJan 30, 2021
MediumJan 30, 2021
What Psychology Says About Why Bystanders Sometimes Fail to HelpJan 30, 2021
The bystander effect refers to a phenomenon in which the greater the number of people there are present, the less likely people are to help a person in distress. Learn why it happens.
https://psychlens.com/psychology-of-bragging/Jan 30, 2021
7 Ways Narcissists Manipulate RelationshipsJan 30, 2021
How narcissists use "narcissistic supply" to exploit relationships.
The Dark Side of BoredomJan 30, 2021
While it has long been known that some people enjoy harming others for pleasure, the psychological reasons are largely unclear. A new study yields fresh insight.
How to Give Better AdviceJan 30, 2021
Research reveals the common mistakes we make when trying to help.
Pocket - Best reads of 2020Jan 28, 2021
Inside the distinctive, largely unknown ideology of American policing — and how it justifies racist violence.
The High Price of MistrustJan 25, 2021
When we can’t trust each other, nothing works. As we participate in our communities less and less, we find it harder to feel other people are trustworthy. But if we can bring back a sense of trust in the people around us, the rewards are incredible.
Hacker NewsJan 25, 2021
I’ve spent a lot of time recently thinking about different proof-of-work mechanisms. When I say proof-of-work, I’m not talking about consensus algorithms like the ones that some crypto currencies use. I’m talking about social networks.
How to Talk to People You Disagree WithJan 25, 2021
Bridge the divide with thoughtful conversation techniques, next-level listening, and a dip into the science of changing minds.
The enduring allure of conspiraciesJan 23, 2021
Conspiracy theories seem to meet psychological needs and can be almost impossible to eradicate. One remedy: Keep them from taking root in the first place.
How to be lucky | Psyche GuidesJan 22, 2021
Most of us think that luck just happens (or doesn’t) but everyone can learn to look for the unexpected and find serendipity
Three types of kindnessJan 18, 2021
There is the kindness of ‘please’ and ‘thank you.’ And the kindness of “I was wrong, I’m sorry.” The small kindnesses that smooth our interactions and help other people feel as th…
How to figure out if someone is telling you the truthJan 8, 2021
"The home of our truth/lie detector resides in the area of our body that encapsulates the throat, heart, and gut."
How to tackle the monsters holding you back from being a good leader - Fast CompanyJan 8, 2021
"Unconscious leadership happens when we aren't self-aware, which puts fear in the driver's seat."
How to Get Someone to ApologizeJan 8, 2021
Advice from therapists, religious leaders and people who suffered terrible wrongs on ways to find repentance and resolution.
Moral CompetenceJan 7, 2021
Social Cooling - Big Data's unintended side effectJan 2, 2021
If data is the new oil, what's the new global warming? Social Cooling asks the question: is our faith in big data slowly making us more well behaved.. but less human?
Why procrastination is about managing emotions, not time - BBC WorklifeJan 1, 2021
Address the real reasons you procrastinate and you’re more likely to start achieving your goals.
[silk] Barlow's principles of adult behaviourDec 30, 2020
Talking out loud to yourself is a technology for thinking | Psyche IdeasDec 29, 2020
Talking out loud to oneself is a technology for thinking that allows us to clarify and sharpen our approach to a problem
Ads Don’t Work That Way | Melting AsphaltDec 26, 2020
Enneagram of PersonalityDec 19, 2020
The Enneagram of Personality, or simply the Enneagram, is a pseudoscientific model of the human psyche which is principally understood and taught as a typology of nine interconnected personality types.
Constructive criticism: how to give and receive feedbackDec 18, 2020
Whether in our personal or professional lives, we are constantly giving and receiving feedback. Some of the feedback is subtle, often unconscious, and some of it is proactive. Being able to receive and to offer constructive feedback is an essential skill in building meaningful social relationships. In addition, research suggests that meaningful feedback is crucial ... Read More
How the Brain Reacts to Difficult Moral Issues - Neuroscience NewsDec 18, 2020
According to researchers, familial relationships in movies affect the reactions in the viewer's brain to moral dilemma addressed between characters.
How to Talk to an Audience of 40,000 PeopleDec 18, 2020
When I signed up for a life of conducting orchestras, I didn’t realize I’d also need to learn how to handle enormous audiences
How to Compliment | Less PenguinyDec 16, 2020
What topics get compliments, how do people react, what are exotic ways of praising?
TikTok's 'What I Like About People' Trend Is Like a Gratitude Journal, ButDec 10, 2020
By describing redeeming (if not obscure and minuscule) qualities of human beings, the videos are finding gratitude in taxing times.
The Pros to Being a PsychopathDec 10, 2020
Oxford research psychologist Kevin Dutton argues that psychopaths are poised to perform well under pressure.
The Persian Art of Etiquette (2016)Nov 30, 2020
In every social interaction, from buying groceries to negotiating a nuclear deal, this highly valued behaviour dictates how people should treat each other.
Mistaking Intention for BehaviorNov 29, 2020
Here's another brain glitch that I know I do on a regular basis - confusing the intention to do a task with having actually completed the task. This is a type of false memory created by the intention itself. Albarracin et al have published a series of five experiments where they explore this phenomenon, which
An Extensive List of Human Emotions and Their Meanings - PsychologenieNov 29, 2020
When we are feeling something, we don't really stop to define that emotion or think about the exact emotion that we are experiencing. We just feel and go through it; may it be sadness, anger or happiness. As human beings, we experience a plethora of feelings and emotions in our lifetime that range over several forms and types. This article is an attempt to list down an extensive list of those emotions.
The Ultimate List of Emotions and How to Control Your Emotions | Science ofNov 29, 2020
Could you make a list of all the emotions you feel in a day? Emotions play a fascinating
The subtle art of forgivenessNov 29, 2020
Forgiving someone else can have a positive effect on your life, but exactly how you forgive someone depends on where in the world you are from.
The History of Creepy DollsNov 14, 2020
Take a trip to the uncanny valley and hope you make it back unscathed.
We Learn Faster When We Aren’t Told What Choices to MakeNov 3, 2020
The way we decide may even give insight into delusional thinking
Forming Experimental Product Hypotheses | by Chris Compston | Agile InsiderNov 3, 2020
An introduction to forming hypothesis statements for product experimentation.
Four Ways to Use Psychology to Win Your Competition's CustomersNov 3, 2020
Some products sell themselves, but habits don’t. They require a bit of finesse.
Introduction to the Zettelkasten MethodNov 3, 2020
Learn how the Zettelkasten works as a system, what a Zettel is made of, and how to grow an organic web of knowledge.
Decision Table PatternsNov 3, 2020
Decision tables are easy, simple, and powerful. You can teach them in five minutes and write one in half that time. You can look at a table and understand what it’s saying, see if it matches your problem, and check for design flaws. So it’s kinda weird that there’s basically nothing about them online. I wrote an introduction a while back, but I want something a little more formal. So this post will reintroduce the core ideas in a more formal way and then talk about some of the techniques you can apply to make better tables.
To Succeed in a Negotiation, Help Your Counterpart Save FaceNov 2, 2020
Three very different case studies — involving hostages in Afghanistan, a suicidal man in Calgary, and a tug-of-war between Brazilian and French businessmen — point to the importance of face, or reputation, in negotiations. To help you and your negotiating partners succeed, it is important to recognize why face matters, map out all the players involved in a negotiation, ask yourself if the solution being proposed will cause a loss of face for anyone, and work to help avoid that.
Are you outspoken at work? How to use your voice – and not get firedOct 28, 2020
Hello, my name is Andrew, and I can’t stop disagreeing.
What My Sled Dogs Taught Me About Planning for the Unknown (Published 2020)Oct 20, 2020
Working with them in the wilderness means negotiating countless shifting variables. Sounds a lot like the world we’re living in.
How to Win an Argument (at the U.S. Supreme Court, or Anywhere Else): A PriOct 20, 2020
Do you like being right? Of course, everyone does. Are you successful at convincing others? That’s a tougher one. We may politely disagree, avoid, or scream bloody murder at each other, but whatever our conflict style, no one is born, and few are raised, knowing how to persuade.
Psychological Safety and the Only Pyramid Scheme That WorksOct 20, 2020
It's a strange phenomenon that I've seen time and time again where if you lay out processes and tools that make things like software deployments safer, the effects continue to compound long after the change has happened. As people feel more and more secure in doing deployments, raising issues and sp
An Acting Coach Explains the Three Pillars of Charismatic ChemistrySep 24, 2020
The surprising vulnerability and mindfulness that makes people want to pay attention to you
Groovy Findings: Researching How and Why Music Moves YouSep 16, 2020
Learning how we respond to rhythm can lead to therapeutic applications.
How to stop procrastinating by using the Fogg Behavior ModelAug 14, 2020
B J Fogg is a Stanford professor who came up with a simple model of behavior that helps us understand why we take action or not take action at any given moment.
Expiring vs. Permanent Skills · Collaborative FundAug 14, 2020
Robert Walter Weir was one of the most popular instructors at West Point in the mid-1800s.
8 Habits of Deeply Inspiring PeopleAug 11, 2020
The best lessons from films and fiction on what makes a hero
How to make your arguments stronger (hint: longer is not the answer)Aug 11, 2020
Resist the temptation to bury people under a blizzard of evidence, says psychology researcher Niro Sivanathan. He explains why.
Ways to Get People to Do Things They Don’t Want to DoAug 10, 2020
Developing user habits is not the same as demanding compliance. But sometimes that’s the task at hand.
Healthy Self-DoubtAug 10, 2020
The Dunning–Kruger effect: you don’t know what you don’t knowAug 10, 2020
Why do ignorant folks tend to overestimate the extent of their knowledge? How do incompetent people often seem to be unaware of how deficient their expertise is? Turns out, we are not very good at evaluating ourselves accurately. And one of the most obvious manifestations of this psychological deficiency is the Dunning–Kruger effect, the cognitive ... Read More
The Concorde Fallacy and why people make bad decisions - Creative SambaAug 10, 2020
Why Informing your customers of a sunk cost can actually help you increase your sales.
Pay Attention: The Art of Noticing - Adobe 99UJul 11, 2020
22 Life Lessons I Learned From My Mentors That Every Person Should Know - Darius ForouxJun 24, 2020
I’ve been blessed to meet insightful people and mentors. If you want to learn from people you look up to, observe them.
Sort By ControversialJun 10, 2020
[Epistemic status: fiction] Thanks for letting me put my story on your blog. Mainstream media is crap and no one would have believed me anyway. This starts in September 2017. I was working for a sm…
Chief’s NewsletterMay 21, 2020
Wandering the idea maze. I write about building software and businesses, psychology, cross-functional job roles, and how those all intersect. Click to read chiefofstuff, by Karl Yang, a Substack publication with thousands of subscribers.
How to Disagree with Someone More Powerful than YouMay 11, 2020
Conflicting with your superiors may not be a daily occurrence, but there are times when it’s necessary. Here’s some tips on how to go about it.
Army Ranger School Is a Laboratory of Human EnduranceApr 23, 2020
The military's toughest training challenges have a lot in common with outdoor sufferfests like the Barkley Marathons and the Leadville Trail 100: you have to be fit and motivated to make the starting line, but your mind and spirit are what carry you to the end. A Ranger graduate breaks down an ordeal that shapes some of the nation's finest soldiers.
How OKRs can make you a better leaderApr 20, 2020
Leaders need to lead by example using OKRs, showing that they are equally as committed to successful outcomes as anyone on the front lines of the business.
The Five Pillars of Gregg PopovichApr 19, 2020
Gregg Popovich, the crusty, ingenious NBA coach, will never write the management advice guide that business needs.
The IKEA Effect: How We Value the Fruits of Our Labor Over Instant GratificationApr 17, 2020
The IKEA effect is caked in myth, but the phenomenon of consumers valuing their own efforts is proven and potent.
Unlikely Optimism: The Conjunctive Events BiasApr 7, 2020
When certain events need to take place to achieve a desired outcome, we’re overly optimistic that those events will happen. Here’s why we should temper those expectations.
The Human XeroxMar 31, 2020
Why being copycats, something we do in settings big and small, might be key to being human.
Fun Delivered: World’s Foremost Experts on Whoopee Cushions and Silly Putty Tell AllMar 24, 2020
[caption id="attachment_82071" align="alignnone" width="600"] Stan and Mardi Timm show off Johnson Smith novelties they've collected. Stan wears X-Ray Spe...
Panic Buying Coronavirus - Why We Buy Weird Things in Times of CrisisMar 20, 2020
With COVID-19 making its way around the United States, archaeology throws a light on panic buying and other odd consumer behavior.
Chesterton’s Fence: A Lesson in ThinkingMar 10, 2020
A core component of making great decisions is understanding previous decisions. If we don’t understand how we got “here,” we run the risk of making things much worse.
The Behavioral Economics Diet: The Science of Killing a Bad HabitMar 9, 2020
What really motivates you more, the promise of a reward if you succeed or a debt if you don’t?
Opinion | Are You an Anti-Influencer? (Published 2020)Mar 9, 2020
Some people have a knack for buying products that flop, supporting political candidates who lose and moving to neighborhoods that fail to thrive.
How to Become a Great ImpostorFeb 23, 2020
Why do people believe a scammer? Consider the story of Ferdinand Waldo Demara.
Why Talented People Don’t Use Their StrengthsFeb 21, 2020
We often undervalue what we inherently do well.
Reactance (psychology) - WikipediaFeb 19, 2020
In psychology, reactance is an unpleasant motivational reaction to offers, persons, rules, regulations, advice, or recommendations that are perceived to threaten or eliminate specific behavioral freedoms. Reactance occurs when an individual feels that an agent is attempting to limit one's choice of response and/or range of alternatives.
Ask a researcher: How do needs drive intent?Feb 19, 2020
Consumer needs spark consumer journeys. How can marketers identify those needs and address them? The latest consumer research from Google will help.
The dark side of expertise [LWN.net]Feb 19, 2020
Why We Love to Be Grossed Out - Facts So RomanticFeb 19, 2020
Disgust may not be a straightforward extension of the immune system’s aversion to harmful substances, but rather “a psychological nebula, lacking definite boundaries, discrete internal structure, or a single center of gravity,” says psychologist Nina Strohminger.Photograph by Star Stock / Flickr Nina Strohminger, perhaps not unlike many fans of raunchy comedies and horror flicks, is […]
The Passion Economy: A Conversation with Adam DavidsonFeb 18, 2020
How to navigate a new economy where developing your passion can be a path to success.
In a Life-or-Death Crisis, Humility Is Everything - WSJFeb 18, 2020
Airline pilot Alfred Haynes and other leaders who’ve saved lives show that modest people can achieve miracles under pressure.
Emotional Intelligence: The Social Skills You Weren’t Taught in SchoolFeb 12, 2020
How well do you recognize and understand your emotions? What about the emotions of those around you?
How Bullwinkle Taught Kids Sophisticated Political SatireFeb 9, 2020
Culture critic Beth Daniels argues the cartoon moose even allowed viewers to reckon with nuclear war
Who Wants to Play the Status Game? | The Point MagazineJan 25, 2020
We seem to be less interested in either of these games than in exploring the connection between them—or rather, the philosophical question to which that connection points.
3 tricks to start working despite not feeling like itJan 21, 2020
Ever wish you felt like creating that presentation? Felt like doing that research? Felt like doing the dishes?
Why Don’t People Return Their Shopping Carts?Jan 9, 2020
Pulling up to a parking spot and finding a shopping cart there can be pretty frustrating. Why do people ignore the receptacle?
The economics of unused gift cardsJan 5, 2020
Every year, Americans spend billions of dollars on gift cards. But what happens to the money when the gift cards go unused?
Why the French Don’t Show ExcitementJan 5, 2020
Not only is ‘Je suis excité’ not the appropriate way to convey excitement in French, but there seems to be no real way to express it at all.
‘Would You Be Willing?’: Words to Turn a Conversation Around (and Those to Avoid)Dec 31, 2019
Choose your words carefully and you can get someone to change their mind, or see you in a new light.
The Elements of Good JudgmentDec 30, 2019
Judgment—the ability to combine personal qualities with relevant knowledge and experience to form opinions and make decisions—is “the core of exemplary leadership,” according to Noel Tichy and Warren Bennis (the authors of Judgment: How Winning Leaders Make Great Calls). It is what enables a sound choice in the absence of clear-cut, relevant data or an obvious path. Likierman believes that a more precise understanding of what exactly gives someone good judgment may make it possible for people to learn and improve on it. He approached CEOs at a range of companies, from some of the world’s largest right down to start-ups, along with leaders in the professions: senior partners at law and accountancy firms, generals, doctors, scientists, priests, and diplomats. He asked them to share their observations of their own and other people’s exercise of judgment so that he could identify the skills and behaviors that collectively create the conditions for fresh insights and enable decision makers to discern patterns that others miss. As a result, he has identified six key elements that collectively constitute good judgment: learning, trust, experience, detachment, options, and delivery. He describes these elements and offers suggestions for improvement in each one.
Brian Piercy on LinkedIn: The Surprising Value of Obvious InsightsDec 28, 2019
"...Google's people analytics experts had been studying how to onboard new hires effectively. They came back with a list of tips. Here’s the one that jumped…
How Rituals of Pain Help HealDec 23, 2019
A new study reveals how ceremonies involving physical suffering can be invaluable tools for building resilience and coping skills.
We Are All Confident IdiotsDec 23, 2019
The trouble with ignorance is that it feels so much like expertise. A leading researcher on the psychology of human wrongness sets us straight.
The psychology of gift givingDec 23, 2019
The holiday season is around the corner. For most of us, it means we need to get gifts for our loved ones—our family, our friends, maybe even for people we don’t know all that well, such as clients and coworkers. The holiday season is notoriously stressful. Surveys show that nearly 7 people out of 10 ... Read More
delivery.phpDec 23, 2019
Why Your Kid Loves the Garbage Truck So MuchDec 23, 2019
For some kids, the weekly trash pickup is a must-see spectacle. Parents, children, waste-management professionals, and experts on childhood all offer theories as to why.
What Makes You “Multicultural”Dec 23, 2019
Individual people can be multicultural in three different (albeit inter-related) ways: they can have deep knowledge of, they can identify with, and they can have internalized more than one culture. This article delves into those three aspects of being multicultural and describes what benefits can accrue from each of them.
The Art of Persuasion Hasn’t Changed in 2,000 YearsDec 23, 2019
More than 2,000 years ago Aristotle outlined a formula on how to become a master of persuasion in his work Rhetoric . To successfully sell your next idea, try using these five rhetorical devices that he identified in your next speech or presentation: The first is egos or “character.” In order for your audience to trust you, start your talk by establishing your credibility. Then, make a logical appeal to reason, or “logos.” Use data, evidence, and facts to support your pitch. The third device, and perhaps the most important, is “pathos,” or emotion. People are moved to action by how a speaker makes them feel. Aristotle believed the best way to transfer emotion from one person to another is through storytelling. The more personal your content is the more your audience will feel connected to you and your idea.
What You Can't SayDec 23, 2019
Why the Best Things in Life Are All BackwardsDec 15, 2019
The ability to let go of control when one wants it most is one of the most important skills anyone can develop.
What Great Listeners Actually DoDec 11, 2019
Good listening is much more than being silent while the other person talks.
But wait, there’s more: the psychology of selling - Ness LabsDec 11, 2019
Even unintentionally, you’ve probably seen one of these infomercials on TV. The presenter goes through all the supposedly amazing features of an obscure product with an excited voice, an urgent tone, as if he or she was sharing an important secret few will be lucky enough to know about. When you think the advert is ... Read More
How to conquer work paralysis like Ernest HemingwayDec 9, 2019
The author wasn’t all about literary masterpieces, dry martinis and rakish charm – he also invented a technique that can beat procrastination and boost productivity.
Ethos, Pathos, Logos: how to persuade peopleDec 5, 2019
The three modes of persuasion — ethos, pathos, logos — are useful skills to master to persuade people and to understand how you’re being persuaded yourself.
Paradoxical Geniuses: “Let us burn the ships”Nov 29, 2019
In 1519, Hernán Cortés landed 500 men in 11 ships on the coast of the Yucatan, knowing that he was openly disobeying the governor of Cuba and that he was facing unknown numbers of potential enemies…
Behavior Science Expert Chase Hughes Trains Real-World Jason Bournes on HowNov 22, 2019
Hint: It has to do with laundry.
It’s Not Enough to Be Right. You Also Have to Be Kind.Nov 10, 2019
Takedowns and clever quips are easy, but empathy and persuasion are better
People Are Confused About the Usefulness of Buying Fancy ThingsOct 27, 2019
Why luxury goods don't impress, but repel.
Why wonder is the most human of all emotions | Aeon EssaysOct 26, 2019
One emotion inspired our greatest achievements in science, art and religion. We can manipulate it – but why do we have it?
If You Master This Listening Technique, You’ll Hear What People Don’t Say Out LoudOct 23, 2019
Learning to “hear offers” like an improviser can turn obstacles into opportunities.
On Humility and Making Better DecisionsOct 18, 2019
Dr. Daniel Kahneman features on the latest Farnam Street podcast and it’s a surprising episode. Kahneman wrote Thinking Fast and Slow. I admire Kahneman a great deal. Not for his Nobel or for his work, which are both impressive, but for his humility. Some of the key tenets of Kahneman’s work in his famous book were disproved. And he owned up to it, both in print and on the podcast. That’s the hallmark of someone with great integrity, and it’s a sign to trust someone more.
Teaching Ethics in Appalachia Taught Me About Bridging America’s Partisan DOct 17, 2019
There’s a language for talking about hot-button issues. And we’re not learning it.
The Cobra Effect: how linear thinking leads to unintended consequencesOct 15, 2019
The world is much more complex than we realise. The Cobra Effect is when an attempted solution results in unintended consequences.
The fast track to a life well lived is feeling gratefulOct 9, 2019
Being ‘good’ need not take years of ethical analysis: just a few moments of gratitude can set you on the path to virtue
What Makes Someone a Fan?Sep 21, 2019
It’s more than just ticket sales. Rich Luker, a social psychologist, studies fandom and why, for example, someone might get a tattoo of their favorite team.
To Persuade Someone, Look EmotionalSep 16, 2019
Look like you‘re trusting your gut and others will trust you.
The value of shameSep 12, 2019
Immanuel Kant held that moral education is hydraulic: shame squashes down our vices, making space for virtue to rise up
What can psychopaths teach us about AI?Aug 31, 2019
What happens when machines learn to manipulate us by faking our emotions? Judging by the rate at which researchers are developing human-like AI agents, we’re about to find out. Researchers around the world are trying to create more human-li
Hooked on Loot Boxes: How Behavioral Design Gets GamersAug 31, 2019
Nir Eyal’s Hooked Model explains how games keep players coming back.
How to Introvert | Less PenguinyAug 30, 2019
Why some people are constantly approached by friendly nearbys whereas others might as well be invisible
The Art of Virtue Signaling: Why so Many Brands Get It WrongAug 29, 2019
Many brands overshoot the subtleties of virtue signaling. They preach, posture, and alienate the people they’re trying to impress. We show how big companies can better bang their virtue drums. #brand #marketing #PR #business #SocialMedia #CX
Why Open Secrets Exist in OrganizationsAug 29, 2019
Why do issues remain open secrets in organizations, where multiple employees know about a problem or a concern, but no one publicly brings it up? Researchers recently explored this in a set of studies. They found that as issues become more common knowledge among frontline employees, the willingness of any individual employee to bring those issues to the attention of the top-management decreased. Instead of speaking up, what they observed among their participants was something like the bystander effect, a psychological phenomena describing how people stay on the sidelines as passive bystanders, waiting for others to act rather than do something themselves. If managers want to avoid the bystander effect so that problems don’t go unresolved, they should tell employees that their voices are not redundant and that they need to share their opinions even if others have the same information.
Deliberate Practice: A Mindful & Methodical Way to Master Any SkillAug 26, 2019
Each and every day we eat, we sleep, we read, we brush our teeth. So why haven't we all become world-class masters of eating, sleeping, reading, and teeth-brushing?
How to Overcome Your Fear of FailureAug 20, 2019
People are quick to blame themselves for failure. But not doing something because you’re afraid to get started isn’t going to help you grow. Here are four strategies to help you get over the hump. Start by redefining what failure means to you. If you define failure as the discrepancy between what you hope to achieve (such as getting a job offer) and what you might achieve (learning from the experience), you can focus on what you learned, which helps you recalibrate for future challenges. It’s also important to set approach goals instead of avoidance goals: focus on what you want to achieve rather than what you want to avoid. Creating a “fear list” can also help. This is a list of what may not happen as a result of your fear — the cost of inaction. And finally, focus on learning. The chips aren’t always going to fall where you want them to — but if you expect that reality going into an event, you can be prepared to wring the most value out of whatever outcome.
Why We Can’t Sit Quietly In A Room AloneAug 20, 2019
Pascal said we couldn't sit alone in a room, and that this inability makes us miserable. Is he right?
Veblen good - WikipediaAug 20, 2019
A Veblen good is a type of luxury good, named after American economist Thorstein Veblen, for which the demand increases as the price increases, in apparent contradiction of the law of demand, resulting in an upward-sloping demand curve. The higher prices of Veblen goods may make them desirable as a status symbol in the practices of conspicuous consumption and conspicuous leisure. A product may be a Veblen good because it is a positional good, something few others can own.
Why is “courage” suddenly such a popular job requirement?Aug 20, 2019
More and more companies are listing the quality as a requirement for entry-level, minimum-wage jobs.
This Is Your Brain on Silence - Issue 38: Noise - NautilusAug 6, 2019
Nautilus is a different kind of science magazine. Our stories take you into the depths of science and spotlight its ripples in our lives and cultures.
Articles - Ness LabsJul 25, 2019
This archive page lists the last 100 articles in the Ness Labs library by date and title. Articles are listed in reverse chronological order with the newest articles at the top and the oldest ones at the bottom. If you want to read the best articles first, you can also explore the library by thematic ... Read More
The Science Behind “Blade Runner”’s Voight-Kampff Test - Facts So RomanticJul 25, 2019
Is Rick Deckard a replicant, an advanced bioengineered being? The jury concerning the character in 1982’s Blade Runner is still out. Harrison Ford, who plays Deckard in the film, thinks he’s human. Ridley Scott, the film’s director, is adamant that he’s not.* Hampton Fancher, the screenwriter for the original film and the sequel, Blade Runner […]
The Peculiar Blindness of ExpertsJul 25, 2019
Credentialed authorities are comically bad at predicting the future. But reliable forecasting is possible.
To avoid moral failure, don’t see people as Sherlock does | Aeon IdeasJul 25, 2019
Elementary, my dear Sherlock: it’s moral failure to see people as objects to be studied or as evidence to be interpreted
The Attention DietJul 19, 2019
Distractions have become so pervasive in the digital age that we've come to accept them as normal. Here's how we can escape their grip and free our minds a little.
Six Degrees of Separation at Burning Man - Issue 74: Networks - NautilusJul 13, 2019
What our experiment in the desert taught us about social networks and human cooperation.
A Quick And Easy Survival Guide For Dealing With JerksJul 5, 2019
Because some people never outgrow being bullies.
3 Reasons Why Brand-Specific Rituals Are So PowerfulJun 14, 2019
Brand marketers encourage ritualistic behaviors involving their products to increase customer loyalty and to gain advantage over competitors.
Buy Me a CoffeeMay 12, 2019
Buy Me a Coffee is the best way for creators and artists to accept support and membership from their fans.
Marcus Aurelius: 3 Rules For LifeApr 29, 2019
The Emperor-Philosopher Marcus Aurelius, once the most powerful man on earth, was also a practitioner of Stoicism. He had 3 rules for life.
15 Steps to Understand & Influence User Behavior: A Deep DiveMar 22, 2019
Understanding user behavior is key to understanding how users interact with your product. Here are 15 steps to analyze & change their interactions to your benefit.
Outline of The Elephant in the BrainMar 13, 2019
Reciprocity DecayMar 12, 2019
Our desire to give back wanes rapidly with time - Why if you want people to return a favor, you need to act fast
What Is Signaling, Really? - LessWrong 2.0Mar 12, 2019
The most commonly used introduction to signaling, promoted both by Robin Hanson and in The Art of Strategy, starts with college degrees. Suppose, the…
The Surprising Power of Simply Asking Coworkers How They’re DoingMar 3, 2019
A recent EY survey found that more than 40% of U.S. respondents reported feeling physically and emotionally isolated in the workplace. This group spanned generations, genders and ethnicities. People want more connection with those they work with. So how can companies connect more effectively with employees and help them feel like they belong within their workplace community? The survey points to one simple solution: establish more opportunities for colleagues to check in with one another. 39% of respondents feel the greatest sense of belonging when their colleagues check in with them, both personally and professionally. By reaching out and acknowledging their employees on a personal level, companies and leaders can significantly enhance the employee experience by making their people feel valued and connected.
The 3 Elements of TrustFeb 10, 2019
As a leader, you want the people in your organization to trust you. And with good reason. In our coaching with leaders, we often see that trust is a leading indicator of whether others evaluate them positively or negatively. But how to create that trust, or perhaps more importantly, how reestablish it when you’ve lost it isn’t always that straightforward. By analyzing over 80,000 360-degree reviews, the authors found that there are three elements that predict whether a leader will be trusted by his direct reports, peers, and other colleagues. These are positive relationships, consistency, and good judgment/expertise. When a leader was above average on each of these elements, they were more likely to be trusted, and positive relationships appeared to be the most important element in that, without it, a leader’s trust rating fell most significantly. Trust is an important currency in organizations and any leader would be wise to invest time in building it by focusing on these three elements.
When Your Child Is a PsychopathFeb 9, 2019
The condition has long been considered untreatable. Experts can spot it in a child as young as 3 or 4. But a new clinical approach offers hope.
Why Japan's Rail Workers Can't Stop Pointing at Things - Atlas ObscuraJan 19, 2019
A seemingly silly gesture is done for the sake of safety.
Creating a useful specJan 11, 2019
If you want someone to help, you’ll do better with a spec. It lists just four things: What is the problem to be solved? How are we going to solve it? How can we test that the thing we built m…
Pickup™ turns romance into a commodity for male consumption | Aeon EssaysJan 10, 2019
The pickup industry mates market logic with the arts of seduction – turning human intimacy into hard labour
30 Behaviors That Will Make You Unstoppable In 2019Dec 14, 2018
“Anyone who lives within their means suffers from a lack of imagination.” — Oscar Wilde
There’s Seldom Any Traffic on the High RoadNov 20, 2018
When people are rude, our ego demands we respond in kind with a quick comeback or snide remark. If we give in, we might feel better in the short term, but pay a huge price in the long run. There’s a much better way to diffuse the situation, (and get what you want.)
Research: Whistleblowers Are a Sign of Healthy CompaniesNov 14, 2018
An analysis of more than 1.2 million records of internal reports made by employees of public U.S. companies reveals that whistleblowers are crucial to keeping firms healthy. The more employees use internal whistleblowing hotlines, the fewer lawsuits companies face, and the less money firms pay out in settlements. A one standard deviation increase in the use of an internal reporting system is associated with 6.9% fewer pending lawsuits and 20.4% less in aggregate settlement amounts over a three-year period.
How the Finnish survive without small talkOct 20, 2018
Their desire for avoidance is a predisposition so common that it’s become hard-baked into Finnish culture.
Why Doctors Reject Tools That Make Their Jobs EasierOct 17, 2018
From the thermometer’s invention onward, physicians have feared—incorrectly—that new technology would make their jobs obsolete
What to Do at Parties If You Hate Small TalkOct 11, 2018
We publish articles around emotional education: calm, fulfilment, perspective and self-awareness. | What to Do at Parties If You Hate Small Talk — Read now
What I learned from a Taipei alley — Remains of the DayOct 7, 2018
I was in Taipei the past few weeks working on a documentary with friends. Because of a busy schedule, it wasn't like my usual travels abroad for fun, it felt more like a work trip. Still, even if I'd been there purely for vacation, I would've wanted to try a different mode of travel, one less focuse
Delighting Without AskingOct 1, 2018
These Apology Critics Want to Teach You How to Say SorrySep 25, 2018
No more excuses for bad apologies.
When Everything Looks Like a Nail: Building Better “Behavioral Economics” TSep 13, 2018
Behavioral teams have been a positive and resulted in some excellent outcomes. But my experience working in and alongside nudge units has me asking: Has the pendulum swung too far?
My magic response to "Hey, can I pick your brain?"Sep 12, 2018
The first few times it happens, it feels like a positive signal. Somebody wants your advice and perspective. You must be good at what you do. And th
Why we buy the things we buySep 12, 2018
The mysteries of consumer behavior, explained by ice cream and independent bookstores.
Troy Hunt: The Effectiveness of Publicly Shaming Bad SecuritySep 12, 2018
Here's how it normally plays out: It all begins when a company pops up online and makes some sort of ludicrous statement related to their security posture, often as part of a discussion on a public social media platform such as Twitter. Shortly thereafter, the masses descend on said organisation
People Don’t Buy Products, They Buy Better Versions of ThemselvesAug 25, 2018
What Apple, Samsung, and Starbucks learned from Pepsi
Why Envy Might Be Good for UsJul 15, 2018
Namibian hunter-gatherers deride those who stand out. What does this tell us about why, and how, we care about fairness?
The 25 Principles for Adult Behavior: John Perry Barlow (R.I.P.) Creates aJul 7, 2018
The most successful outlaws live by a code, and in many ways John Perry Barlow was an archetypal American outlaw all of his life.
Envy’s hidden handMay 3, 2018
Namibian hunter-gatherers deride those who stand out. What does this tell us about why, and how, we care about fairness?
The Key to Good Luck Is an Open Mind - Facts So RomanticMar 27, 2018
Really lucky people may have a specific set of skills that bring chance opportunities their way.
How your supermarket manipulates youJan 27, 2018
Supermarkets have always played tricks on your mind. Can they help you to eat better?
How restaurant menus play tricks on youNov 22, 2017
Great thought and effort go into creating restaurant menus – and there are some very powerful psychological tricks employed to make you choose.
The Falsification Mindset: How to Change Your Own MindOct 23, 2017
Here’s a simple practice that can boost your intelligence, help you avoid cognitive bias, and maybe even be happy to prove your own ideas…
How to be a World-Class NegotiatorOct 21, 2017
How to be a better negotiator: tips from Christopher Voss, former international FBI hostage negotiator for 24 years
The scientists persuading terrorists to spill their secretsOct 13, 2017
The long read: Expert interrogators know torture doesn’t work – but until now, nobody could prove it. By analysing hundreds of top-secret interviews with terror suspects, two British scientists have revolutionised the art of extracting the truth
Confidence Through Feedback, or Why Imposter Syndrome is the Wrong MetaphorOct 3, 2016
Imposter syndrome is often presented as a personal failing. A lack of confidence, our wrong-headed beliefs not matching the reality of how competent we are, or worst of a flaw of our gender. Just...
Behavioral Profiling: The password you can't changeOct 3, 2016
You can be identified by how you type, even behind proxies and Tor. Protect yourself with KeyboardPrivacy.
We should take awkwardness less personally and more seriously | Aeon EssaysOct 24, 2006
Rather than being a cringey personal failing, awkwardness is a collective rupture – and a chance to rewrite the social script
beliefs
The 5 Most Significant Non-Abrahamic World Religions and Philosophies | TheCollectorNov 2, 2025
Read on and discover five non-Abrahamic World Religions to better understand yourself and the world you live in.
When Your Father Is a Magician, What Do You Believe?Sep 16, 2025
A childhood spent under the spell of sleight-of-hand taught me skepticism, curiosity, and the habit of looking beneath appearances.
The Strange Power of Unlucky CharmsMay 24, 2024
We put a lot of weight on the backstories of objects, even — maybe especially — when those stories aren’t happy ones.
How to Disprove a Conspiracy Theory in 7 StepsMay 14, 2024
Conspiracy theories abound. What should you believe − and how can you tell?
Why Is 13 Considered Unlucky? Explaining the Power of Its Bad ReputationJan 14, 2023
The source of 13’s bad reputation – “triskaidekaphobia” – is murky and speculative.
https://curiosity.com/topics/when-your-beliefs-change-you-probably-dont-realize-it-curiosity/Jul 18, 2022
A framework for First Principles ThinkingJul 15, 2019
Improve your thinking, become smarter and pioneer the future
benchmarks
nvidia's B200 does 1,760 TFLOPS on a square GEMM and 4 TFLOPS on a skinny one. the shape of your matmul is the single biggest variable in GPU performance. but why? same hardware, same operation… | Emilio AndereFeb 23, 2026
nvidia's B200 does 1,760 TFLOPS on a square GEMM and 4 TFLOPS on a skinny one.
Alibaba unveils new Qwen3.5 model for 'agentic AI era'Feb 16, 2026
Alibaba on Monday unveiled a new artificial intelligence model Qwen 3.5 designed to execute complex tasks independently, with big improvements in performance and cost that the Chinese tech giant claims beat major U.S. rival models on several benchmarks.
Autonomous Driving: Assessment Of YOLO Algorithms (RMIT et al.)Feb 11, 2026
A new technical paper titled “Advances in You Only Look Once (YOLO) algorithms for lane and object detection in autonomous vehicles” was published by RMIT University, Kyungpook National University, Deakin University and the RCA Robotics Laboratory, Royal College of Art. Abstract “Ensuring the safety and efficiency of Autonomous Vehicles (AVs) necessitates highly accurate perception, especially... » read more
'Observational memory' cuts AI agent costs 10x and outscores RAG on long-context benchmarksFeb 11, 2026
As AI agents move into production, teams are rethinking memory. Mastra’s open-source observational memory shows how stable context can outperform RAG while cutting token costs.
LLM Research Papers: The 2025 List (July to December)Jan 2, 2026
In June, I shared a bonus article with my curated and bookmarked research paper lists to the paid subscribers who make this Substack possible.
LLM Research Papers: The 2025 List (July to December)Dec 31, 2025
A curated list of LLM research papers from July–December 2025, organized by reasoning models, inference-time scaling, architectures, training efficiency, and...
GraphQL: the enterprise honeymoon is overDec 15, 2025
A production-tested take on GraphQL in enterprise systems, why the honeymoon phase fades, and when its complexity outweighs the benefits.
Comparing the Top 7 Large Language Models LLMs/Systems for Coding in 2025Nov 4, 2025
Compare the top 7 large language models and systems for coding in 2025. Discover which ones excel for software engineering tasks.
The Big LLM Architecture ComparisonOct 28, 2025
From DeepSeek-V3 to Kimi K2: A Look At Modern LLM Architecture Design
Understanding the 4 Main Approaches to LLM Evaluation (From Scratch)Oct 5, 2025
Multiple-Choice Benchmarks, Verifiers, Leaderboards, and LLM Judges with Code Examples
319 Top Ecommerce Sites Ranked by User Experience Performance – BaymardAug 20, 2025
See the ranked UX performance of the 319 leading ecommerce sites in the US and Europe. The chart summarizes 100,000+ UX performance ratings.
AI Model & API Providers Analysis | Artificial AnalysisAug 14, 2025
Comparison and analysis of AI models and API hosting providers. Independent benchmarks across key performance metrics including quality, price, output speed & latency.
A Technical Roadmap to Context Engineering in LLMs: Mechanisms, Benchmarks, and Open ChallengesAug 3, 2025
Context engineering for large language models—frameworks, architectures, and strategies to optimize AI reasoning, and scalability
The Leaderboard IllusionApr 30, 2025
Measuring progress is fundamental to the advancement of any scientific field. As benchmarks play an increasingly central role, they also grow more susceptible to distortion. Chatbot Arena has emerged as the go-to leaderboard for ranking the most capable AI systems. Yet, in this work we identify systematic issues that have resulted in a distorted playing field. We find that undisclosed private testing practices benefit a handful of providers who are able to test multiple variants before public release and retract scores if desired. We establish that the ability of these providers to choose the best score leads to biased Arena scores due to selective disclosure of performance results. At an extreme, we identify 27 private LLM variants tested by Meta in the lead-up to the Llama-4 release. We also establish that proprietary closed models are sampled at higher rates (number of battles) and have fewer models removed from the arena than open-weight and open-source alternatives. Both these policies lead to large data access asymmetries over time. Providers like Google and OpenAI have received an estimated 19.2% and 20.4% of all data on the arena, respectively. In contrast, a combined 83 open-weight models have only received an estimated 29.7% of the total data. We show that access to Chatbot Arena data yields substantial benefits; even limited additional data can result in relative performance gains of up to 112% on the arena distribution, based on our conservative estimates. Together, these dynamics result in overfitting to Arena-specific dynamics rather than general model quality. The Arena builds on the substantial efforts of both the organizers and an open community that maintains this valuable evaluation platform. We offer actionable recommendations to reform the Chatbot Arena's evaluation framework and promote fairer, more transparent benchmarking for the field
QOpt / QOBLIB - Quantum Optimization Benchmarking Library · GitLabApr 26, 2025
This is the ZIB GitLab instance
The Man Out to Prove How Dumb AI Still IsApr 10, 2025
François Chollet has constructed the ultimate test for the bots.
A look at the ARC-AGI exam designed by French computer scientist François Chollet to show the gulf between AI models' memorized answers and “fluid intelligence”Apr 7, 2025
By Matteo Wong / The Atlantic. View the full context on Techmeme.
LLM Benchmarking: Fundamental Concepts | NVIDIA Technical BlogApr 2, 2025
The past few years have witnessed the rise in popularity of generative AI and large language models (LLMs), as part of a broad AI revolution.
What is METEOR score? - DataconomyApr 2, 2025
METEOR Score is a metric used to evaluate the quality of machine translation based on precision, recall, word alignment, and linguistic flexibility.
LLM LeaderboardFeb 21, 2025
Comparison and ranking the performance of over 30 AI models (LLMs) across key metrics including quality, price, performance and speed (output speed - tokens per second & latency - TTFT), context window & others.
aidanmclaughlin/AidanBench: Aidan Bench attempts to measure in LLMs.Feb 1, 2025
Aidan Bench attempts to measure in LLMs. - aidanmclaughlin/AidanBench
AMD’s Instinct MI300X AI Throughput Performance & Latency Improved By 7x WiJul 3, 2024
Nscale has tested AMD's flagship Instinct MI300X AI accelerator utilizing the GEMM tuning framework, achieving 7x faster performance.
Key Metrics for Evaluating Large Language Models (LLMs)Jun 20, 2024
Evaluating Large Language Models (LLMs) is a challenging problem in language modeling, as real-world problems are complex and variable. Conventional benchmarks frequently fail to fully represent LLMs' all-encompassing performance. A recent LinkedIn post has emphasized a number of important measures that are essential to comprehend how well new models function, which are as follows. MixEval Achieving a balance between thorough user inquiries and effective grading systems is necessary for evaluating LLMs. Conventional standards based on ground truth and LLM-as-judge benchmarks encounter difficulties such as biases in grading and possible contamination over time. MixEval solves these problems by combining real-world user
Nvidia Conquers Latest AI TestsJun 13, 2024
GPU maker tops new MLPerf benchmarks on graph neural nets and LLM fine-tuning
Open LLM Leaderboard : a Hugging Face Space by HuggingFaceH4Sep 25, 2023
Track, rank and evaluate open LLMs and chatbots
Asking 60+ LLMs a set of 20 questionsSep 25, 2023
Human-readable benchmarks of 60+ open-source and proprietary LLMs.
A Deep Dive Into LLaMA, Falcon, Llama 2 and Their Remarkable Fine-Tuned VerJul 28, 2023
Exploring the Development of the 3 Leading Open LLMs and Their Chatbot Derivatives
Calculate Computational Efficiency of Deep Learning Models with FLOPs and MJul 24, 2023
In this article we will learn about its definition, differences and how to calculate FLOPs and MACs using Python packages.
Towards a Benchmarking Suite for Kernel TunersMar 19, 2023
As computing system become more complex, it is becoming harder for programmers to keep their codes optimized as the hardware gets updated. Autotuners try to alleviate this by hiding as many archite…
How to Choose the Best Machine Learning Technique: Comparison TableNov 23, 2022
How to Choose the Best Machine Learning Technique: Comparison Table
7 Steps to Benchmark Your Product’s UXJan 17, 2022
Benchmark your UX by first determining appropriate metrics and a study methodology. Then track these metrics across different releases of your product by running studies that follow the same established methodology.
12 Twitter Sentiment Analysis Algorithms ComparedFeb 1, 2021
12 sentiment analysis algorithms were compared on the accuracy of tweet classification. The fasText deep learning system was the winner.
Benchmark functions | BenchmarkFcnsJan 1, 2021
This website is for sale! benchmarkfcns.xyz is your first and best source for all of the information you’re looking for. From general topics to more of what you would expect to find here, benchmarkfcns.xyz has it all. We hope you find what you are searching for!
AI and EfficiencyMay 19, 2020
We’re releasing an analysis showing that since 2012 the amount of compute needed to train a neural net to the same performance on ImageNet classification has been decreasing by a factor of 2 every 16 months. Compared to 2012, it now takes 44 times less compute to train a neural network to the level of AlexNet (by contrast, Moore’s Law would yield an 11x cost improvement over this period). Our results suggest that for AI tasks with high levels of recent investment, algorithmic progress has yielded more gains than classical hardware efficiency.
Machine Learning Benchmarking: You’re Doing It WrongApr 1, 2020
I’m not going to bury the lede: Most machine learning benchmarks are bad. And not just kinda-sorta nit-picky bad, but catastrophically and fundamentally flawed. TL;DR: Please, for the love of sta…
Benchmark Work | Benchmarks MLCommonsMar 30, 2020
MLCommons ML benchmarks help balance the benefits and risks of AI through quantitative tools that guide responsible AI development.
Inference Results – MLPerfNov 7, 2019
MLCommons ML benchmarks help balance the benefits and risks of AI through quantitative tools that guide responsible AI development.
One Deep Learning Benchmark to Rule Them AllAug 30, 2018
Over the last few years we have detailed the explosion in new machine learning systems with the influx of novel architectures from deep learning chip
Start With Gradient Boosting, Results from Comparing 13 Algorithms on 165 DApr 1, 2018
Which machine learning algorithm should you use? It is a central question in applied machine learning. In a recent paper by Randal Olson and others, they attempt to answer it and give you a guide for algorithms and parameters to try on your problem first, before spot checking a broader suite of algorithms. In this post, you will discover a…
machine learning benchmarks - Google SearchDec 27, 2017
bert
BERTFeb 19, 2025
BERT is an open source machine learning framework for natural language processing (NLP) that helps computers understand ambiguous language by using context
BERT — Intuitively and Exhaustively ExplainedAug 24, 2023
Baking General Understanding into Language Models
Deploy an NLP pipeline. Flask Heroku Bert.May 1, 2021
A simple quick solution for deploying an NLP project and challenges you may faced during the process.
A Beginner’s Guide to Use BERT for the First TimeDec 18, 2020
From predicting single sentence to fine-tuning using custom dataset to finding the best hyperparameter configuration.
A version of the BERT language model that’s 20 times as fastDec 10, 2020
Determining the optimal architectural parameters reduces network size by 84% while improving performance on natural-language-understanding tasks.
AI devs created a lean, mean, GPT-3-beating machine that uses 99.9% fewer pNov 3, 2020
AI researchers from the Ludwig Maximilian University (LMU) of Munich have developed a bite-sized text generator capable of besting OpenAI’s state of the art GPT-3 using only a tiny fraction of its parameters. GPT-3 is a monster of an AI sys
AI Democratization in the Era of GPT-3Nov 3, 2020
What does Microsoft getting an "exclusive license" to GPT-3 mean for the future of AI democratization?
NLP — BERT & Transformer - Jonathan Hui - MediumApr 1, 2020
Google published an article “Understanding searches better than ever before” and positioned BERT as one of the most important updates to…
google-research/bert: TensorFlow code and pre-trained models for BERTApr 1, 2020
TensorFlow code and pre-trained models for BERT.
The Illustrated BERT, ELMo, and co. (How NLP Cracked Transfer Learning) – JApr 1, 2020
Discussions: Hacker News (98 points, 19 comments), Reddit r/MachineLearning (164 points, 20 comments) Translations: Chinese (Simplified), French 1, French 2, Japanese, Korean, Persian, Russian, Spanish 2021 Update: I created this brief and highly accessible video intro to BERT The year 2018 has been an inflection point for machine learning models handling text (or more accurately, Natural Language Processing or NLP for short). Our conceptual understanding of how best to represent words and sentences in a way that best captures underlying meanings and relationships is rapidly evolving. Moreover, the NLP community has been putting forward incredibly powerful components that you can freely download and use in your own models and pipelines (It’s been referred to as NLP’s ImageNet moment, referencing how years ago similar developments accelerated the development of machine learning in Computer Vision tasks).
Jay Alammar – Visualizing machine learning one concept at a timeApr 1, 2020
Visualizing machine learning one concept at a time.
Vincent Boucher on LinkedIn: #transformer #bert #nlpMar 9, 2020
Pre-training SmallBERTa - A tiny model to train on a tiny dataset An end to end colab notebook that allows you to train your own LM (using HuggingFace…
Lit BERT: NLP Transfer Learning In 3 Steps - Towards Data ScienceDec 14, 2019
In this tutorial we learn to quickly train Huggingface BERT using PyTorch Lightning for transfer learning on any NLP task
BERT Explained: A Complete Guide with Theory and TutorialDec 5, 2019
Unless you have been out of touch with the Deep Learning world, chances are that you have heard about BERT — it has been the talk of the town for the last one year. At the end of 2018 researchers …
Deconstructing BERT: Distilling 6 Patterns from 100 Million ParametersAug 30, 2019
From BERT’s tangled web of attention, some intuitive patterns emerge.
best-practices
𝗖𝗹𝗮𝘂𝗱𝗲 𝗦𝗸𝗶𝗹𝗹𝘀 𝗶𝘀 𝗽𝗿𝗼𝗯𝗮𝗯𝗹𝘆 𝘁𝗵𝗲 𝗺𝗼𝘀𝘁 𝘂𝗻𝗱𝗲𝗿𝗿𝗮𝘁𝗲𝗱 𝗳𝗲𝗮𝘁𝘂𝗿𝗲 𝗖𝗹𝗮𝘂𝗱𝗲 𝗵𝗮𝘀 𝗯𝘂𝗶𝗹𝘁. If you’re still writing the same prompts in Claude every day… | Andreas Horn | 13 commentsFeb 23, 2026
𝗖𝗹𝗮𝘂𝗱𝗲 𝗦𝗸𝗶𝗹𝗹𝘀 𝗶𝘀 𝗽𝗿𝗼𝗯𝗮𝗯𝗹𝘆 𝘁𝗵𝗲 𝗺𝗼𝘀𝘁 𝘂𝗻𝗱𝗲𝗿𝗿𝗮𝘁𝗲𝗱 𝗳𝗲𝗮𝘁𝘂𝗿𝗲 𝗖𝗹𝗮𝘂𝗱𝗲 𝗵𝗮𝘀 𝗯𝘂𝗶𝗹𝘁.
If you’re still writing the same prompts in Claude every day, you’re doing extra work. Skills fix that. They package your best instructions once, then you reuse them on demand. Result: less repetition, more consistency, and higher quality outputs because the rules stay stable.
𝗕𝗨𝗧
I can only warn you to install Skills you have not vetted. Read the markdown files carefully - or, if it’s outside your expertise, have someone you trust review them. Yes, there are security risks. But the bigger risk is that the Skill is simply bad. And you end up with worse, more generic outputs than if you had just used the model without it.
I wrote a comprehensive full guide on Claude Skills. Subscribe here to get it: https://lnkd.in/dbf74Y9E
𝗔𝗻𝗱 𝗵𝗲𝗿𝗲 𝗮𝗿𝗲 𝗮𝗹𝗹 𝗿𝗲𝘀𝗼𝘂𝗿𝗰𝗲𝘀 𝘁𝗼 𝗵𝗲𝗹𝗽 𝘆𝗼𝘂 𝗴𝗼 𝗱𝗲𝗲𝗽𝗲𝗿 (𝗮𝗹𝗹 𝗳𝗿𝗲𝗲) 𝘁𝗼 𝗲𝗻𝘀𝘂𝗿𝗲 𝘁𝗵𝗲 𝗵𝗶𝗴𝗵𝗲𝘀𝘁 𝗾𝘂𝗮𝗹𝗶𝘁𝘆 𝗼𝘂𝘁𝗽𝘂𝘁: ⬇️
𝘖𝘍𝘍𝘐𝘊𝘐𝘈𝘓 𝘋𝘖𝘊𝘚
The Unofficial Guide: https://lnkd.in/eNC5QsJp
Best Practices Guide: https://lnkd.in/emxu8Vsr
Skills Documentation: https://lnkd.in/eSzfnUNc
API Reference: https://lnkd.in/erjGW9q5
MCP Documentation: https://lnkd.in/ejKJuNEX
𝘉𝘓𝘖𝘎 𝘗𝘖𝘚𝘛𝘚
Introducing Agent Skills: https://lnkd.in/enrM2tWr
Engineering Blog: https://lnkd.in/eRn5aYyQ
Skills Explained: https://lnkd.in/e8zEX2Fe
How to Create Skills: https://lnkd.in/eDaug-WJ
Skills for Claude Code: https://lnkd.in/eQpjSyBW
Frontend Design Skills: https://lnkd.in/efPCkgWb
𝘌𝘟𝘈𝘔𝘗𝘓𝘌 𝘚𝘒𝘐𝘓𝘓𝘚
Anthropic's Official Library: https://lnkd.in/er2tG4ZB
Partner Skills Directory: https://lnkd.in/ejUcTPjT
𝘊𝘖𝘔𝘔𝘜𝘕𝘐𝘛𝘠 𝘓𝘐𝘉𝘙𝘈𝘙𝘐𝘌𝘚
Skills.sh: skills.sh
SkillsMP: skillsmp.com
Smithery: smithery.ai/skills
SkillHub: skillhub.club
| 13 comments on LinkedIn
21 Lessons From 14 Years at GoogleJan 5, 2026
Lessons learned from 14 years of engineering at Google, focusing on what truly matters beyond just writing great code.
Has Von Maur Figured Out How Department Stores Should Work?Dec 26, 2025
Von Maur has made a different play than several other retailers. Is it working?
36 Ways to Revive an Ecommerce BusinessSep 12, 2025
Here's how to overcome entrepreneurial doldrums, when a business is seemingly stuck in no growth or worse.
Why your Amazon Ads aren't delivering: 6 critical issues to fixAug 31, 2025
Many Amazon ad delivery issues have little to do with bids. Find out what really stops ads from running – and how to prevent it.
Onboarding Success: Learn the Cold Start AlgorithmAug 28, 2025
Master the art of onboarding with proactive strategies. Discover how to quickly adapt and make an impact in your new tech role.
The Complete LLM Tech StackJul 25, 2025
In this article, I'll take you through the complete LLM tech stack you should know to develop & deploy real-world LLM applications.
I’m Switching to Python and Actually Liking ItJul 16, 2025
I’ve started writing more Python code lately (because of… AI, you know). In this post, I share the tools, libraries, configs, and other integrations I use for building production-grade Python applications following a frontend-backend architecture.
The Founder’s Guide to Building a V1 of Customer SuccessJul 10, 2025
A CS leader who has built the function from the ground up shares where founders should start — from how to hire to the most important metrics to track.
Merchandising Lessons from Top MarketplacesJun 24, 2025
We analyze the home pages of 10 marketplaces to spot common merchandising traits.
Python Patterns for Intermediate Data ScientistsApr 28, 2025
Learn to leverage Python patterns like a professional.
How to Build and Scale OnboardingApr 23, 2025
Superhuman became known for its unique approach to onboarding: a highly-personalized, white-glove, human-led experience. Superhuman's Gaurav Vohra, startup advisor and growth leader, gives us a detailed look at how he built and scaled the program.
humanlayer/12-factor-agentsApr 13, 2025
What are the principles we can use to build LLM-powered software that is actually good enough to put in the hands of production customers? - humanlayer/12-factor-agents
12-factor-agents: Principles to build LLM-powered software good enough to put in the hands of production customersApr 11, 2025
0 comments
How I Spent 17,784 Hours in 5 Years as a Startup FounderApr 5, 2025
Levels founder & CEO Sam Corcos shares his detailed time-tracking data across 5 years of startup growth
Mise en Place: The Chef’s Secret to a More Productive and Organized LifeMar 3, 2025
People have different styles when they cook. Some people are neat and tidy. After taking out and using an ingredient they don’t need anymore, they return it to the fridge or cabinet. After chopping up vegetables, they clean up the scraps left behind. When a dish has been dirtied, they put it in the sink. […]
A short introduction to Interval Tree ClocksNov 24, 2024
A short introduction to Interval Tree Clocks, a causality tracking mechanism, based on a lightening talk I gave at dotScale 2017.
Goodhart's Law Isn't as Useful as You Might ThinkOct 27, 2024
Goodhart's Law is useless. It tells you about a phenomenon, but it doesn't tell you how to solve it. We look at how organisations actually prevent Goodhart's Law, and illustrate this with Amazon's Weekly Business Review as an example.
The Amazon Weekly Business ReviewJul 10, 2024
The authoritative guide on how Amazon does WBRs (from former exec Colin Bryar): how it works, how to do it, and how Amazon uses it to win.
Becoming Data Driven, From First PrinciplesJul 4, 2024
People often say things like "become data driven" without explaining what that means or how to do it. This is everything you need to know to actually become data driven, from scratch, using the same first principles that Amazon, Koch, and Toyota used back in their day.
Run Charts - Improvement | theCompleteMedicJul 3, 2024
Create your first run chart and start interpreting your data using just four rules. Your go-to QI resource.
Five Nine ProblemsJun 22, 2024
Elon Musk's 5-step processMay 11, 2024
Here's how the Tesla founder's advice can provide lessons for CPAs.
Danaher: Masterful Capital Allocation and Lean Manufacturing, CombinedApr 29, 2024
How Danaher combines Lean manufacturing with masterful capital allocation to build a remarkable manufacturing company in the United States.
The Secret at the Heart of Continuous ImprovementApr 15, 2024
Continuous Improvement sounds simple, even obvious. And yet there's a profound secret at its heart that doesn't seem to get talked about.
(Almost) Every infrastructure decision I endorse or regret after 4 years ruFeb 22, 2024
Assortment of technology startup infrastructure recommendations
Turning Back the Clock: The 1951 Bell Manual for Operating a Rotary TelephoFeb 19, 2024
In 1951, Bell Telephone System introduced a guide titled "The Telephone and How We Use It," designed to aid elementary school students and others in understanding the operation of classic rotary dial phones. The guide detailed everything from basic phone use, handling emergencies, to polite phone ma
Why You’ve Never Been In A Plane Crash—AsteriskFeb 1, 2024
The United States leads the world in airline safety. That’s because of the way we assign blame when accidents do happen.
Noise: A Flaw in Human Judgment - WikipediaJan 25, 2024
Noise: A Flaw in Human Judgment is a nonfiction book by professors Daniel Kahneman, Olivier Sibony and Cass Sunstein. It was first published on May 18, 2021. The book concerns 'noise' in human judgment and decision-making. The authors define noise in human judgment as "undesirable variability in judgments of the same problem" and focus on the statistical properties and psychological perspectives of the issue.
What’s an Operational Definition Anyway?Oct 4, 2023
Two principles on collecting data, from the field of Statistical Process Control. As with most principles in SPC, this is both simpler and more important than you might think.
No sacred masterpiecesSep 24, 2023
Or "that time I built Excel for Uber and they ditched it like a week after launch"
Akin's Laws of Spacecraft DesignAug 27, 2023
I've been involved in spacecraft and space systems design and development for my entire career, including teaching the senior-level capstone spacecraft design course, for ten years at MIT and now at the University of Maryland for more than three decades.
What is a Tooltip? Definition, Types, and Best PracticesAug 22, 2023
Time to define tooltips and share best practices. Explore tooltip types and its examples in our blog post coming from a prototyping tool.
The not-app-building parts of building an appAug 11, 2023
Large customers require engineers to build several acronyms
Ability to See Expertise is a Milestone Worth Aiming For - CommoncogJul 22, 2023
Good news: we have a neat, universal milestone on the journey to mastery. What that looks like, and how to use it.
DORA | DevOps Research and AssessmentApr 15, 2023
DORA is a long running research program that seeks to understand the capabilities that drive software delivery and operations performance. DORA helps teams apply those capabilities, leading to better organizational performance.
2108.02497.pdfMar 16, 2023
lifehacks - Alexey GuzeyMar 12, 2023
be as specific as possible. “agi takeoff fast”: define “agi” “takeoff” “fast” there’s no such thing as a coincidence for decisions: autoresolve (1) on specific date (2) to the scary one let people tell you no. don’t make the decision for them. if you’re ever confused about what to do, just do the right thing expectation of progress towards a goal is key to motivation. we are not motivated if we don’t know next step. we are …
The Anatomy of a Good Design: An Analysis of 4 SitesMar 5, 2023
Visually pleasing designs use consistent type styles and spacing, create a visual hierarchy, and utilize an underlying grid structure.
Welcome to Hillstone, America's Favorite Restaurant | Bon AppétitFeb 26, 2023
It’s never going to win a James Beard Award. Or try to wow you with its foam experiments or ingredients you’ve never heard of. But it is the best-run, most-loved, relentlessly respected restaurant in America. And, oh yeah, Danny Meyer, David Chang, and Shaq all agree. Welcome to Hillstone.
What if writing tests was a joyful experience?Jan 13, 2023
At Jane Street we use a pattern/library called “expect tests” thatmakes test-writing feel like a REPL session, or like exploratoryprogramming in a Jupyter no...
7 Scikit-Learn Best Practices For Data ScientistsJan 13, 2023
Tips for taking full advantage of this machine learning package
A Guide to Memoization in RubyDec 21, 2022
Discover the benefits of memoization for your Ruby application, common mistakes to avoid, and when not to memoize.
9 Best Ecommerce UX Practices From the World's Best Ecommerce SiteDec 17, 2022
Discover the 9 best ecommerce UX practices from the world's top B2B ecommerce sites that made the top of HackerNews as the best ecommerce site.
What I learned at GitLab that I don't want to forgetDec 13, 2022
After a little over 5 years, I'm going to be leaving GitLab for my next adventure. It's no surprise to those of you who have been following me that I have absolutely loved my time there. I'm so proud of what we built—and I'm still proud and awed by
How to Choose the Best Machine Learning Technique: Comparison TableNov 23, 2022
How to Choose the Best Machine Learning Technique: Comparison Table
Want your customers to RTFM? Try building a better user manualNov 21, 2022
For a cost-effective way to reduce expenses, boost retention and drive new revenues, bring your outdated user manuals into the digital era.
The Mysterious, Stubborn Appeal of Mass-Produced Fried ChickenSep 17, 2022
Why do so many accomplished chefs call Popeyes their favorite fried chicken?
Putting Amazon’s PR/FAQ to PracticeSep 8, 2022
What it's like putting Amazon's famed Working Backwards process to practice in a small company context, and what was surprising and difficult about it.
The Anatomy of an Amazon 6-pagerSep 3, 2022
A deep dive into writing detailed planning docs from one of the most successful companies in the world
21 management things I learned at ImgurJul 19, 2022
It’s terribly difficult to manage unmotivated people. Make your job easier and don’t.
Super successful companiesJul 18, 2022
I spent some time recently thinking about what companies that grow up to be extremely successful do when they are very young. I came up with the following list. It’s from personal experience and...
The 3 Competitive Defenses of Enduring SaaS Companies by @ttunguzJul 18, 2022
A technology advantage isn’t enough to build an enduring enterprise SaaS company because at the core, all SaaS software share the same architecture. A relational database stores data and a web site presents the data. This is true for CRM (Salesforce), marketing automation (Marketo), email (Exchange), content management systems (Sharepoint) and so on. Because SaaS apps use standard databases, engineers can easily transfer the data from one database to another. I’m greatly simplifying here because differences in architecture may exist, but in principle it’s simple to extract, transform and load data from one relational database into another.
Scaling Engineering Teams via RFCs: Writing Things DownJul 18, 2022
I have recently been talking at small and mid-size companies, sharing engineering best practices I see us use at Uber, which I would recommend any tech company adopt as they are growing. The one topic that gets both the most raised eyebrows, as well the most "aha!" moments is the
57 startup lessonsJul 18, 2022
There are already very good lists of startup lessons written by really talented, experienced people (here and here). I’d like to add another one. I learned these lessons the hard way in the past four years. If you’re starting a company, I hope you have an easier path.
44 engineering management lessonsJul 5, 2022
Welcome to engineering management. It’s fun, it’s exhausting, it’s rewarding — but most importantly it’s new! What worked for you before won’t work now. You’ll have to acquire a new set of skills, and shed some bad habits in the process. Here is a short guide to get you started.
Report templates for fewer status meetings | Folding BurritosJul 5, 2022
Report templates, and guided steps to create them, so Product Managers spend less time in status meetings and more time out of the building
Why Key Results Need to Be ResultsJul 5, 2022
If you know nothing about OKRs, please start here: Art of the OKR. Or buy my book, Radical Focus. I think it’s rather good. An Objective is the goal you wish to achieve in a g…
Ruby Style GuideJul 5, 2022
Make Operations Your Secret Weapon - Here’s HowJun 28, 2022
Etsy COO Linda Kozlowski knows an operations leader is critical to the success of a company. Here, she sheds light on the most mysterious role in the C-suite — and how startups can hire and empower the right COO for their company.
Steve Blank Fear of Failure and Lack of Speed In a Large CorporationJun 28, 2022
I just spent a day working with Bob, the Chief Innovation Officer of a very smart large company I’ll call Acme Widgets. Bob summarized Acme’s impediments to innovation. “At our company we have a cu…
What Process Mining Is, and Why Companies Should Do ItJun 25, 2022
There have long been a few fundamental challenges associated with business process management. But a relatively new and innovative technology, process mining, has the capability to revitalize process management in firms where it has lain fallow for years. One problem involves the creation of “current state” processes — a description of how a business process is being performed today. In business process reengineering, organizations are primarily interested in an improved “to be” process, so often they have little interest in exploring “as is,” or how the process is currently performed. The other general problem with process management is the lack of connections between business processes and an organization’s enterprise information systems. Enter process mining. Process mining software can help organizations easily capture information from enterprise transaction systems and provides detailed — and data-driven — information about how key processes are performing. It creates event logs as work is done: an order is received, a product is delivered, a payment is made. The logs make visible how computer-mediated work is really happening, including who did it, how long it takes, and how it departs from the average. Process analytics create key performance indicators for the process, which enables a company to focus on the priority steps to improve.
How To Structure A Marketplace | TechCrunchJun 23, 2022
Editor's Note: The following is a guest post by Simon Rothman of Greylock Partners. Rothman is particularly passionate about Marketplace technology (Etsy, Kickstarter, Airbnb, etc) and how to garner success in that category. Marketplaces are endemic to the consumer web: Largely popularized by eBay, we've recently seen quite a few variations on the theme, like young guns Etsy, oDesk, Airbnb, and Kickstarter. Old or new, the two elements that bind all marketplaces are network effects (a good thing) and the chicken-and-egg problem (not such a good thing).
“Don’t Mock What You Don’t Own” in 5 MinutesJun 23, 2022
A common issue when writing tests for real-world software is how to deal with third-party dependencies. Let’s examine an old, but counter-intuitive principle.
Learnings from 5 years of tech startup code audits - Ken Kantzer's BlogMay 26, 2022
While I was leading PKC’s security practice, we did probably 20-30 code security audits, almost of all of them for startups that were just around their Series A or B (that was usually when they had cash and realized that it’d be good to take a deeper look at their security, after the do-or-die focus on product market fit).
3 Practices That Set Resilient Teams ApartMar 16, 2022
New research reveals that how we perform work as a team contributes more to resilience than external stressors. On resilient teams, individuals feel responsible for energizing each other. This is in stark contrast to teams who are challenged by frustrating ways of working and fractured relationships. As we move into the third year of pandemic uncertainty, adopting three simple practices will help managers build more resilient — and re-energized — teams.
Feature design checklistJan 29, 2022
Questions that ensure you consider e̶v̶e̶r̶y̶t̶h̶i̶n̶g̶ a few things when designing a new feature.
How to Design a Large Scale Responsive Site | UX BoothJan 23, 2022
In 2011, Elaine McVicar wrote an article describing the process of designing one of the first complex responsive sites. Now that the concept is no longer in its infancy, we're taking another look at how to redesign a large scale responsive site.
Home | Laws of UXJan 23, 2022
Laws of UX is a collection of best practices that designers can consider when building user interfaces.
Read the CIA’s Simple Sabotage Field Manual: A Timeless Guide to SubvertingJan 21, 2022
I’ve always admired people who can successfully navigate what I refer to as “Kafka’s Castle,” a term of dread for the many government and corporate agencies that have an inordinate amount of power over our permanent records, and that seem as inscrutable and chillingly absurd as the labyrinth the character K navigates in Kafka’s last allegorical novel.
Eight Habits of Expert Software Designers: An Illustrated GuideJan 16, 2022
The best designers employ specific habits, learned practices, and observed principles when they work. Here are a few of them.
eugeneyan/applied-ml: ? Papers & tech blogs by companies sharing their workDec 25, 2021
📚 Papers & tech blogs by companies sharing their work on data science & machine learning in production. - eugeneyan/applied-ml
42 things I learned from building a production databaseNov 29, 2021
In 2017, I went to Facebook on a sabbatical from my faculty position at Yale. I created a team to build a storage system called Delos at the bottom of the Facebook stack (think of it as Facebook’s version of Chubby). We hit production with a 3-person team in less than a year; and subsequently scaled the team to 30+ engineers spanning multiple sub-teams. In the four years that I led the team (until Spring 2021), we did not experience a single severe outage (nothing higher than a SEV3). The Delos design is well-documented in two academic papers (in OSDI 2020 and SOSP 2021). Delos is currently replacing all uses of ZooKeeper at Facebook.
Ship / Show / Ask: A modern branching strategySep 14, 2021
Ship/Show/Ask is a branching strategy that helps teams wait less and ship more, without losing out on feedback.
How to Build an Invention Machine — 6 Lessons That Powered Amazon’s SuccessFeb 19, 2021
Former Amazon execs Colin Bryar and Bill Carr helped build the "invention machine" that enabled the company to successfully launch everything from AWS to the Kindle. Here, they share granular advice and concrete takeaways for startups looking to alter their own trajectories.
The Twelve-Factor AppFeb 8, 2021
A methodology for building modern, scalable, maintainable software-as-a-service apps.
The Joel Test: 12 Steps to Better Code – Joel on SoftwareMar 2, 2018
Have you ever heard of SEMA? It’s a fairly esoteric system for measuring how good a software team is. No, wait! Don’t follow that link! It will take you about six years just to understa…
The Soul of Maintaining a New MachineAug 24, 2008
Books in Progress is what we call a “public drafting tool”: Drafts will be made available for comment from the public, allowing for direct collaboration between author and reader.
bias
The Hidden Bias in Language That Turned Left-Handedness Into a Bad ThingFeb 15, 2026
While the days of forcing left-handed children to use their right hands are mostly over, the bias against lefties continues in most languages around the world.
Stop Worrying About Survivorship Bias With This One Weird TrickDec 19, 2025
Why successful investors and businesspeople tell you to learn from business history — and what they do so survivorship bias isn’t a problem.
Why are we curious about some things and indifferent to others? | Psyche IdeasDec 9, 2025
Many of us crave trivial details while ignoring much of the world around us. Research helps explain this selective curiosity
20 cognitive biases affect your decisions&Apr 23, 2025
You put a lot of thought into every choice that you make … which could be the reason why you’re making bad decisions.
Why Facts Don’t Change Our MindsMar 10, 2025
New discoveries about the human mind show the limitations of reason.
The Uneasy Origins of CasteFeb 17, 2025
An Unpleasant Story Triangulated from Scripture, Genetics, and Archeology
67 Logical Fallacies Explained in 11 MinutesApr 11, 2024
Fallacies—notes Purdue's Writing Lab—'are common errors in reasoning that will undermine the logic of your argument. Fallacies can be either illegitimate arguments or irrelevant points, and are often identified because they lack evidence that supports their claim.
Survivorship Bias: The Secret Psychological Danger In SuccessMar 14, 2024
Explore how Survivorship Bias leads to flawed decisions by only considering successes and overlooking failures, with real-life examples and tips to avoid it."
What is Maslow’s Hammer?Mar 3, 2024
What is Maslow's Hammer? Maslow's Hammer says that we rely too much on familiar tools (not because they're good - only because they're familiar). As the saying goes, “When you have a hammer, everything’s a nail.” It's why doctors are more likely to recommend surgery for back pain than alternative treatments like massage or chiro.
What is the Concorde Fallacy?Mar 3, 2024
What is the Concorde Fallacy? 🧠 The Concorde Fallacy describes how we will continue to defend a bad investment, even when that defense costs more than just giving up. In 1956, discussions started in England to create a supersonic airliner that would get people from London to NYC in under 3 hours (that's less than
Facial features linked to stereotypes and social class perceptionFeb 29, 2024
Research shows that people are quick to form impressions of other people’s social class standing, which can have important consequences – but what specifically drives these impressions, and their relationship to judgements of harmful or advantageous stereotypes, has remained unknown.
Noise: A Flaw in Human Judgment - WikipediaJan 25, 2024
Noise: A Flaw in Human Judgment is a nonfiction book by professors Daniel Kahneman, Olivier Sibony and Cass Sunstein. It was first published on May 18, 2021. The book concerns 'noise' in human judgment and decision-making. The authors define noise in human judgment as "undesirable variability in judgments of the same problem" and focus on the statistical properties and psychological perspectives of the issue.
Why can’t Americans agree on, well, nearly anything? Philosophy has some answersMar 20, 2023
Two concepts can help explain why society seems increasingly unable to agree on basic facts.
How To Get An MBA From EminemJan 18, 2023
In 2002 I was driving to a hedge fund manager's house to hopefully raise money from him. I was two hours late. This was pre-GPS and I had no cell phone. I was totally lost. I kept playing over and over again "Lose Yourself" by Eminem. I was afraid this was my one shot and I was blowing it. I was even crying in my car. I was going broke and I felt this was my one chance. What a loser.
Why Your Brain Isn't Into the Future - NautilusNov 5, 2022
What you can’t imagine clearly, you value less.
https://measureofdoubt.com/2017/02/05/which-cognitive-bias-is-making-nfl-coaches-predictable/Jul 19, 2022
How to avoid cognitive biases when you get paid to think - Inverted PassionJul 18, 2022
One of the major findings in last 50 years has been what people had suspected all along: human thinking and judgment often isn’t rational. By this, I mean given a situation where someone has to make a decision, she will often take a decision that “leaps” to her immediately rather taking than a decision that… Read More
Most Common Cognitive Biases Visualised & ExplainedJul 18, 2022
There used to be a generic belief that humans are completely rational. It is easily understandable why a belief like this was popular…
Beautiful People Don’t Always Win in the WorkplaceJul 18, 2022
Research shows how attractive employees can rub some customers the wrong way.
Prospect Theory: What It Is and How It Works, With ExamplesJul 18, 2022
Prospect theory argues that if given the option, people prefer more certain gains rather than the prospect of larger gains with more risk.
Why the Most Important Idea in Behavioral Decision-Making Is a FallacyJul 18, 2022
The popular idea that avoiding losses is a bigger motivator than achieving gains is not supported by the evidence
Better If It’s Man-Made?Jul 18, 2022
Biases and BlundersJul 18, 2022
If we really want to understand how we can nudge people into making better choices, it’s important to understand why they often make such poor ones.
Why too much evidence can be a bad thingJul 18, 2022
(Phys.org)—Under ancient Jewish law, if a suspect on trial was unanimously found guilty by all judges, then the suspect was acquitted. This reasoning sounds counterintuitive, but the legislators of ...
Take "the Other" to lunchJun 25, 2022
There's an angry divisive tension in the air that threatens to make modern politics impossible. Elizabeth Lesser explores the two sides of human nature within us (call them "the mystic" and "the warrior”) that can be harnessed to elevate the way we treat each other. She shares a simple way to begin real dialogue -- by going to lunch with someone who doesn't agree with you, and asking them three questions to find out what's really in their hearts.
Hindsight Bias Meaning, Examples, and How to Avoid It - FronteraJun 3, 2022
Hindsight Bias makes you feel the past is easy to explain. "I knew it would happen." Here is its meaning, examples, and how to avoid it.
18 Cognitive Bias Examples Show Why Mental Mistakes Get MadeFeb 10, 2022
Here are 18 of the most common mental mistakes in business and investing. Make sure to learn from these cognitive bias examples to make better decisions.
Scarcity in UX: The psychological bias that became the normJan 29, 2022
Short analysis on the current state of affairs and a few tips to keep in mind.
UX Design Psychology Tricks for Design ExcellenceJan 17, 2022
Human brain processes information as well as how it forms certain patterns of behavior. Discover cognitive psychology tips for UX.
Among Social Scientists, a Vigorous Debate Over Loss AversionDec 2, 2021
A principle that explains decision-making — from investor behavior to insurance markets — isn't ironclad, experts argue.
The Availability Bias: How to Overcome a Common Cognitive DistortionJun 7, 2021
We tend to judge the likelihood and significance of things based on how easily they come to mind. The more “available” a piece of information is to us, the more important it seems. The result is that we give greater weight to information we learned recently because a news article you read last night comes to mind easier than a science class you took years ago. It’s too much work to try to comb through every piece of information that might be in our heads.
How To Reduce Decision Noise - Commonplace - The Commoncog BlogFeb 10, 2021
Five ways to do noise reduction, from the field of judgment and decision making.
To Counteract Propaganda, We Should Look to Lessons from AdvertisingJan 31, 2021
The goal should not be conversion but doubt.
List of Logical Fallacies with ExamplesJan 30, 2021
A comprehensive list of logical fallacies, with definitions, explanations, and examples that are easy-to-understand.
Pocket - Best reads of 2020Jan 28, 2021
Inside the distinctive, largely unknown ideology of American policing — and how it justifies racist violence.
The enduring allure of conspiraciesJan 23, 2021
Conspiracy theories seem to meet psychological needs and can be almost impossible to eradicate. One remedy: Keep them from taking root in the first place.
The Concorde Fallacy and why people make bad decisions - Creative SambaAug 10, 2020
Why Informing your customers of a sunk cost can actually help you increase your sales.
Unlikely Optimism: The Conjunctive Events BiasApr 7, 2020
When certain events need to take place to achieve a desired outcome, we’re overly optimistic that those events will happen. Here’s why we should temper those expectations.
Delighting Without AskingOct 1, 2018
How restaurant menus play tricks on youNov 22, 2017
Great thought and effort go into creating restaurant menus – and there are some very powerful psychological tricks employed to make you choose.
The Falsification Mindset: How to Change Your Own MindOct 23, 2017
Here’s a simple practice that can boost your intelligence, help you avoid cognitive bias, and maybe even be happy to prove your own ideas…
bicycles
1UP USA | Premium Quality Bike Racks for Every VehicleNov 14, 2025
Discover high-quality all metal bike racks at 1UP USA. Perfect for any cyclist, our durable designs ensure your bike is secure and ready to ride.
The Art of Taking It SlowAug 24, 2025
Anna Wiener interviews Grant Petersen, the owner of Rivendell Bicycle Works, who has amassed an ardent following by urging people to abandon the spandex and personal bests, get a comfortable bike, and go easy.
Silicon Valley’s Fanciest Stolen Bikes Are Getting Trafficked by One MasterJun 20, 2024
“We have people stealing all over the world.” A digital sleuth named Bryan Hance has spent the past four years obsessively uncovering a bicycle-theft pipeline of astonishing scale.
Paris Pulled Off the Dream of Many City Dwellers Around the World. It’s BeeMar 30, 2023
One parking structure pivoted to growing mushrooms and endives.
How to Do Your Own Basic Bike MaintenanceJul 6, 2022
You can avoid expensive repairs and keep your bike in great working order.
biology
Saving The Life We Cannot SeeFeb 26, 2026
Conservation has traditionally ignored the planet's smallest life forms. Microbiologists are trying to change that — before it's too late. Microbes make life on Earth possible, yet human activity is wiping these microbiomes out — and science is only beginning to grasp the potential implications.
Learning about longevity from long-lived animalsFeb 14, 2026
The secrets to extending human lifespans might lie in the animals that can already live for centuries.
Saving the Venus Flytrap: How One Woman Rallied a Town Around Its Weirdest Attraction – Garden & GunDec 15, 2025
Despite their outsize hold on popular imagination, Venus flytraps are native to a tiny corner of the globe: the Coastal Plain of the Carolinas. As development threatens, one town—spurred on by one tireless botanist—has taken up the shovel to save the world’s most fascinating plant.
A Cell So Minimal That It Challenges Definitions of Life | Quanta MagazineNov 27, 2025
The newly described microbe represents a world of parasitic, intercellular biodiversity only beginning to be revealed by genome sequencing.
Atomic-Scale Protein FiltersOct 15, 2025
How aquaporin and potassium channels filter hundreds of millions of water molecules or ions each second, by positioning the correct amino acid in the perfect place.
Two billion humans are doing something bizarre right now: sleeping | Aeon EssaysOct 14, 2025
It is our biggest blind spot, a bizarre experience that befalls us every day, and can’t be explained by our need for rest
Miller–Urey experiment - WikipediaOct 13, 2025
He Was Expected to Get Alzheimer’s 25 Years Ago. Why Hasn’t He?Oct 7, 2025
Scientists are searching for the secret in Doug Whitney’s biology that has protected him from dementia, hoping it could lead to ways to treat or prevent Alzheimer’s for many other people.
The natural clocks that can pinpoint someone's time of deathOct 2, 2025
When something dies, a telltale radioactive signal ticks like a natural clock. Discovering it helped us solve all sorts of natural mysteries.
The World’s Most Common SurgerySep 30, 2025
In 4,000 years, cataract surgery went from a crude procedure involving thorn instruments to a 20-minute operation with a 95 percent clinical success rate. The next step is broadening access.
Mary Roach’s New Book Replaceable You Explores Challenges in Replacing Body PartsSep 24, 2025
Mary Roach unpacks the millennia-long effort to replace failing body parts—and the reasons that modern medicine still struggles to match the original designs.
The Most Mysterious Cells in Our Bodies Don’t Belong to UsSep 7, 2025
You carry literal pieces of your mom—and maybe your grandma, and your siblings, and your aunts and uncles.
How humans became upright: key changes to our pelvis foundAug 29, 2025
Genetic and anatomical data reveal how the human pelvis acquired its unique shape, enabling our ancestors to walk on two legs.
The Weight of a CellAug 18, 2025
A single E. coli bacterium weighs about one picogram, 60 million times less than a grain of sand. But how do we know?
What Does It Mean To Be Thirsty? | Quanta MagazineAug 11, 2025
The effects of insufficient water are felt by every cell in the body, but it’s the brain that manifests our experience of thirst.
Record-breaking divers are pushing human limits and reshaping scientists' view of our speciesJul 26, 2025
Humans have a long history of diving to forage from the seabed and today elite freedivers are reaching greater depths than ever. Some researchers argue humans belong in the sea.
Axolotls Can Regenerate Limbs, and Scientists Are Finally Learning HowJun 25, 2025
A new study looked into the axolotl’s freakish regenerative talents, hoping to uncover secrets that could revolutionize human medicine.
Brain Freeze—AsteriskJun 21, 2025
The idea of cryonics — freezing the bodies of the dead in the hopes that they can one day be revived — has existed since the 1960s. We’ve since learned that perfect preservation is much, much harder than any of its founders anticipated.
The Ecosystem Dynamics That Can Make or Break an Invasion | Quanta MagazineJun 16, 2025
By speedrunning ecosystems with microbes, researchers revealed intrinsic properties that may make a community susceptible to invasion.
How To Build A Thousand-Year-Old TreeMay 6, 2025
"A set of experimental techniques and technologies that might seem harmful to trees is actually helping ancient forests survive."
Recipe for a CellApr 10, 2025
While we know how to break organisms down to their constituent parts, even at the atomic level, building them from scratch remains difficult.
What Limits a Cell’s Size?Mar 26, 2025
Two physical constraints help explain why cells are so tiny: surface area-to-volume ratios and diffusion. The first article in our new Data Series.
The Long Quest for Artificial BloodFeb 6, 2025
One of the most valuable substances in the world has never been replicated. Are we close?
The Dangers of Mirrored LifeDec 12, 2024
Creating mirrored organisms using synthetic biology could seriously harm extant life, a 300-page report claims. While the risks from mirrored life are uncertain, it is best not to find out.
Sleeping beauties: the evolutionary innovations that wait millions of yearsApr 19, 2023
Some organisms truck along slowly for aeons before suddenly surging into dominance – and something similar often happens with human inventions, too. But why?
Why don't humans have fur?Mar 11, 2023
Most mammals, including our closest living relatives, have fur. So why did we lose ours?
aBiogenesis on BehanceDec 28, 2022
Hiding in Plain Sight? The Argument for Invisible AliensDec 7, 2022
Are invisible aliens living among us in shadow biospheres? Is extraterrestrial life hiding in plain sight?
Something Strange Happens When You Tear These Creatures ApartOct 1, 2022
Behold choanoflagellates, tiny creatures that can be one body and many bodies all at once.
jsomers.net | I should have loved biologyJul 10, 2022
In biology class, biology wasn't presented as a quest for the secrets of life. The textbooks wrung out the questing.
PyMOL | pymol.orgJul 18, 2021
When the Next Animal Plague Hits, Can This Lab Stop It?Jul 16, 2021
A new federal facility in Kansas will house the deadliest agricultural pathogens in the world—and researchers working tirelessly to contain them.
The Evolution of ThrowingJul 15, 2021
Homo sapiens has a throwing arm that sets it apart. Athletes are helping anthropologists understand this prowess.
Persuading the Body to Regenerate Its LimbsMay 3, 2021
Deer can regrow their antlers, and humans can replace their liver. What else might be possible?
Harriet Cole’s Mysterious Identity Still Stumps HistoriansMar 29, 2021
Whose body was harvested to create a spectacular anatomical specimen, and did that person know they would be on display more than a century later?
Why Extraterrestrial Life May Not Seem Entirely AlienMar 22, 2021
The zoologist Arik Kershenbaum argues that because some evolutionary challenges are truly universal, life throughout the cosmos may share certain features.
A family with no fingerprintsDec 26, 2020
A family in Bangladesh struggles with an extremely rare genetic condition, "immigration delay disease".
Louisiana’s Disappearing Coast | The New YorkerDec 26, 2020
The state loses a football field’s worth of land every hour and a half. Now engineers are in a race to prevent it from sinking into oblivion.
The Ugly History of Beautiful Things: OrchidsDec 23, 2019
Sometimes a flower is just a flower, and sometimes it's a powerful vehicle for giving free rein to our worst colonialist and misogynist impulses.
How Do You Save an Endangered Tree from Extinction When You Can't Save ItsDec 21, 2019
“Recalcitrant” seeds hold the secret to saving a critically endangered Indian tree—thanks to a bit of human help
In Search of Life’s Smoking GunNov 26, 2019
A journey to the underwater volcanoes where life may have erupted.
The transhumanists who want to live foreverNov 19, 2019
For a core of longevity true believers, the time to intervene is now.
I Now Suspect the Vagus Nerve Is the Key to Well-beingOct 26, 2019
“Stimulating” it leads to calmness, but how and why?
Solving Wildlife's Strangest MysteriesSep 15, 2019
When a creature mysteriously turns up dead in Alaska—be it a sea otter, polar bear, or humpback whale—veterinary pathologist Kathy Burek gets the call. Her necropsies reveal cause of death and causes for concern as climate change frees up new pathogens and other dangers in a vast, thawing north.
The Golden Bough | The New YorkerAug 29, 2019
Grant Hadwin got a chainsaw and did something terrible.
Has this scientist finally found the fountain of youth? - MIT Technology ReAug 21, 2019
Editing the epigenome, which turns our genes on and off, could be the “elixir of life.”
This Is Why It's Nearly Impossible to Study PainAug 5, 2019
A fundamental understanding of what pain is continues to evade scientists.
The Most Controversial Tree in the WorldJul 2, 2019
Is the genetically engineered chestnut tree an act of ecological restoration or a threat to wild forests?
Why plants don’t die from cancerJul 1, 2019
Humans and other mammals and birds would have been killed many times over by Chernobyl's radiation that plants in the most contaminated areas received. So why is plant life so resilient to radiation and nuclear disaster?
Why I Traveled the World Hunting for Mutant Bugs - Issue 73: PlayJun 7, 2019
A researcher who works through painting tells her story.
World's Oldest Terrarium / Sealed Bottle Ecosystem by David LatimerMay 20, 2019
Checkout one of the oldest terrarium gardens in the world! Read the story of David Latimer's sealed bottle ecosystem from the 1960's.
How to identify a body: the Marchioness disaster and my life in forensic paApr 19, 2019
The long read: In my career, I have investigated many of the UK’s worst disasters. Few cases were as harrowing as the sinking of the Marchioness in 1989, which left scores dead and almost impossible to identify
The Brain That Remade ItselfApr 1, 2019
Doctors removed one-sixth of this boy’s brain — and what was left did something incredible
Proof of life: how would we recognise an alien if we saw one?Oct 11, 2018
Proof of life: what evidence would it take to convince you that alien intelligence had been found?
The Viral Paleontologist Who Unearths Pathogens’ Deep HistoriesAug 24, 2016
Sébastien Calvignac-Spencer searches museum jars for genetic traces of flu, measles and other viruses. Their evolutionary stories can help treat modern outbreaks and prepare for future ones.
bios
PC BIOS Guide: How To Safely Flash Your Firmware & 3 Key Settings To CheckMay 29, 2025
Updating your BIOS can be scary, but it's not hard as long as you pay attention and take your time.
bitcoin
What Happens When an “Infinite-Money Machine” UnravelsDec 8, 2025
John Cassidy on Michael Saylor, the head and co-founder of the business-software company Strategy, the firm’s bitcoin strategy, and the risks of betting on crypto.
Full details of how blockchain blocks are chained togetherOct 27, 2025
How blocks in the Bitcoin blockchain are chained together. Looking at an example at the the byte level to get the real story, past the oversimplifications.
New Video Gives Us One More Reason to Never Buy a Used Mining GPUSep 27, 2022
A new video making the rounds purports to show Vietnamese crypto miners preparing used GPUs for resale by blasting them with a pressure washer.
Ethereum completes the “Merge,” which ends mining and cuts energy use by 99Sep 16, 2022
Ethereum replaces proof-of-work with proof-of-stake, making miners unnecessary.
Should merchants accept Bitcoin?Jul 18, 2022
I was recently asked if ecommerce merchants should accept Bitcoin. My answer is a resounding “yes.” I can think of only a few minor downsides and many
Why trusted execution environments will be integral to proof-of-stake blockJun 27, 2022
While the core philosophy of blockchains is trustlessness, trusted execution environments can be integral to proof-of-stake blockchains.
blockchain
Full details of how blockchain blocks are chained togetherOct 27, 2025
How blocks in the Bitcoin blockchain are chained together. Looking at an example at the the byte level to get the real story, past the oversimplifications.
Why Ethereum access matters in automation - DataconomyMay 3, 2025
Automation is now a baseline in digital operations. From scheduled token distributions to smart contract orchestration, systems are expected to run with
Home | Solidity Programming LanguageFeb 27, 2024
Solidity is a statically-typed curly-braces programming language designed for developing smart contracts that run on Ethereum.
Home | ethereum.orgFeb 27, 2024
Ethereum is a global, decentralized platform for money and new kinds of applications. On Ethereum, you can write code that controls money, and build applications accessible anywhere in the world.
Unleashing the Power of Smart Contracts: A Novice's RoadmapFeb 27, 2024
What are Smart Contracts? In the realm of blockchain technology, smart contracts are...
Building Blocks: A Comprehensive Overview of Blockchain FundamentalsFeb 22, 2024
This article is co-authored by @gracieabot_ Is it a revolution or merely hype? In a world where...
Consensus Protocols: Explaining Proof-of-Work, Proof-of-Stake, and Other AlAug 30, 2023
In the realm of blockchain technology and cryptocurrencies, the concept of consensus plays a pivotal...
The computer scientist who hunts for costly bugs in crypto codeJan 14, 2023
Programming errors on the blockchain can mean $100 million lost in the blink of an eye. Ronghui Gu and his company CertiK are trying to help.
Ethereum completes the “Merge,” which ends mining and cuts energy use by 99Sep 16, 2022
Ethereum replaces proof-of-work with proof-of-stake, making miners unnecessary.
Asking Users to Complete Tough Mudders to Use Your ProductJul 5, 2022
Funnel optimization for web3 companies will become critical to their success. Token grants cost 4-7x than traditional customer acquisition techniques. Other techniques, like incentivized referral, improve the economics but still tally 19 month payback periods. A year-and-a-half might be fine for a SaaS company selling a $50k to $100k ARR product, but long-term viability demands achieving 3-6 month paybacks of modern web2 consumer companies. Why are the payback periods so high?
A beginner’s guide to how cryptocurrencies workNov 23, 2021
For those who are just wading into the crypto territory, here’s a basic explainer on how the computer science behind these systems work.
Cryptoqueen: How this woman scammed the world, then vanished - BBC NewsMay 16, 2021
How did Ruja Ignatova make $4bn selling her fake cryptocurrency to the world - and where did she go?
Cybercriminal Joker's Cash Retires with Billions in BitcoinFeb 13, 2021
According to Elliptic’s analysis, the founder of one of the most popular carding marketplaces, Joker’s Stash, has retired having amassed a fortune of over $1 billion.
A beginner's guide to NFTs — MirrorFeb 10, 2021
Non-fungible token (NFT) is a term used to describe a unique digital asset whose ownership is tracked on a blockchain, such as Ethereum. Assets that can be represented as NFTs range from digital goods, such as items that exist within virtual worlds, to claims on physical assets such as clothing items or real estate. In the coming years, we will see NFTs used to unlock entirely new use cases that are only made possible by crypto.
1. How Blockchain Works — blockchain.mit.eduDec 25, 2020
A strategist’s guide to blockchainDec 25, 2020
The distributed ledger technology that started with bitcoin is rapidly becoming a crowdsourced system for all types of verification. Could it replace notary publics, manual vote recounts, and the way banks manage transactions?
Blockchain 101 - Foundational MathDec 25, 2020
Mystery boxes: at the crossroads of loot boxes and blockchainSep 24, 2019
Mystery boxes - those little bundles of randomness - have been around for decades. You pay for something without knowing what’s inside. Maybe it's great, maybe it's garbage, but it’s the thrill of the unknown that keeps people coming back for more. This idea has evolved massively, especially in the
Can Basic Income Plus The Blockchain Build A New Economic System?Nov 11, 2017
To stop society's unsustainable demand for ever-more resources, we need to decentralize and localize our economy. Combining the new ledger technology with UBI may be the way to make that happen.
Become a blockchain expert in 1,384 wordsNov 11, 2017
A Mind-Bending Cryptographic Trick Promises to Take Blockchains MainstreamNov 10, 2017
Cryptographers have researched zero-knowledge proofs for two decades, but the technique is only just now poised to redefine the concept of online privacy.
blogging
Thrive in obscurityJun 3, 2025
The path to creative mastery begins with years of silence. Publish anyway.
My approach to running a link blogFeb 4, 2025
I started running a basic link blog on this domain back in November 2003—publishing links (which I called “blogmarks”) with a title, URL, short snippet of commentary and a “via” …
Microfeatures I Love in Blogs and Personal WebsitesJun 25, 2024
In this post, I talk about pleasant but seemingly minor features in personal sites
TiddlyWiki — a non-linear personal web notebookJun 18, 2024
ooh.directory: a place to find good blogs that interest youJun 17, 2024
A collection of 2,311 blogs about every topic
How to Host Your Blog with Ghost on Ubuntu 24.04May 22, 2024
This guide will walk you through installing Ghost on your Ubuntu server and configuring Nginx (a popular web server) to host your blog.
Everything you need to start blogging as a developer!May 1, 2024
Hashnode is a free developer blogging platform that allows you to publish articles on your own domain and helps you stay connected with a global developer community.
50 Types of Social Media Posts ?Apr 13, 2024
50 Types of Social Media Posts to Engage Your Audience In the vibrant world of social...
Publishing to my blog from ObsidianDec 28, 2023
This is how I publish to my Git-based blog straight from Obsidian (kind of)
The importance of rel=canonical for content writersApr 13, 2023
The subject of canonical reference has been touched thousand times. But since some content writers...
Content Strategy 101Nov 14, 2022
A content strategy is a high-level plan that guides the intentional creation and maintenance of information in a digital product.
15 Tools to Curate Content for Social Media, Newsletters, MoreJul 18, 2022
Content curation is the process of gathering content — blog posts, images, videos — from a variety of sources. Sharing relevant information with your
45 Tools to Generate Content, for EcommerceJul 5, 2022
Content marketing is the technique of creating and sharing content — blog posts, images, videos — to attract and retain customers. Generating relevant and
What Makes Content Spread: Anatomy of a Post With 500,000+ LikesJun 25, 2022
How can I make my content go viral? I sat down with the viral marketing geniuses Marc and Angel to discuss content marketing and other key tips.
Various ways to include comments on your static siteNov 18, 2021
Overview of different techniques to implement comments using a static site generator.
Start a blog in 30 minutes with Hugo, a static site generator written in GoOct 1, 2021
Get your new site up and running quickly with Hugo.
fastai/fastpages: An easy to use blogging platform, with enhanced support for Jupyter Notebooks.Mar 9, 2020
An easy to use blogging platform, with enhanced support for Jupyter Notebooks. - fastai/fastpages
Blogging with screenshotsFeb 19, 2020
Blogging with Jupyter NotebooksFeb 19, 2020
bloom-filters
Bloom FiltersMay 7, 2025
A visual, interactive guide to what bloom filters are, when you would use them, and how they work.
Bloom filters - Eli Bendersky's websiteMay 2, 2025
Counting Bloom Filter in C – Tony Allen – MediumDec 27, 2017
I recently ran across this bloom filter post by Michael Schmatz and it inspired me to write about a neat variation on the bloom filter that…
bluesky
BlueSky Isn't Dying - and There's a Larger Ecosystem Growing Around Its Open Protocol - SlashdotJun 21, 2025
BlueSky has grown from roughly 10 million users in early November to 36.79 million today — and its last 30 days of traffic looks very level.
But instead of calling BlueSky's traffic "level", right-leaning libertarian Megan McArdle argues instead that BlueSky's "decline shows no sign of level...
This Website is Hosted on BlueskyNov 25, 2024
Well, not this one. But this one is! How? Let’s take a closer look at Bluesky and the AT Protocol that underpins it.
Note: I communicated with the Bluesky team prior to the publishing of this post. While the functionality described is not the intended use of the application, it is known behavior and does not constitue a vulnerability disclosure process. My main motivation for reaching out to them was because I like the folks and don’t want to make their lives harder.
body-language
Micro Expressions | Facial Expressions | Paul Ekman GroupSep 1, 2025
Micro expressions are very brief facial expressions, lasting only a fraction of a second. The Paul Ekman Group provides a variety of tools in order to learn how to spot micro expressions.
AI Spots Hidden Signs of Consciousness in Comatose Patients before Doctors DoAug 31, 2025
A machine-learning algorithm spotted signs of “covert consciousness” in coma patients—in some cases, days before doctors could do so
Beyond words: The 200-year-old hidden languages of datingJul 6, 2025
From Regency-era "fan flirting" to online dating, we decipher the timeless looks, signs and gifts that signal secret love.
The 7-38-55 rule: Debunking the golden ratio of conversationJun 10, 2024
The 7-38-55 rule claims that the majority of a conversation’s meaning is found in tone and body language. The truth is much more complicated.
Hand Signals at The Stork ClubMar 24, 2024
The Stork Club was a famous Manhattan night club that was founded by Oklahoma native and ex-bootlegger Sherman Billingsley (ed. note: amazing name), and operated continuously from 1929-1965. The NYC hot spot – which was located on 53rd Street near Fifth Avenue – was a destination for celebrities, ar
Sign DiningMar 24, 2024
The tradition of discreet communication among staff at the Stork Club lives on at the restaurant Eleven Madison Park.
Usher SignalsMar 24, 2024
Many ushers communicate during church services using a sequence of hand signals called the “National Silent Uniform System.” Here are some of the central elements of these signals.
How Your Body Posture Communicates Feelings to OthersMay 6, 2023
New research suggests that body postures can reveal our emotions to other people—and maybe even change how we feel inside.
Basic Social Skills Guide - Improve Your Social SkillsJul 18, 2022
Free online social skills guide. Contains information on understanding body language, making conversation, and setting good social skills goals.
The First 'Google Translate' For Elephants DebutsJun 10, 2021
An anonymous reader quotes a report from Scientific American: Elephants possess an incredibly rich repertoire of communication techniques, including hundreds of calls and gestures that convey specific meanings and can change depending on the context. Different elephant populations also exhibit cultu...
Why language is humanity's greatest invention | David PetersonDec 23, 2019
Civilization rests upon the existence of language, says language creator David Peterson. In a talk that's equal parts passionate and hilarious, he shows how studying, preserving and inventing new languages helps us understand our collective humanity -- and gives a quick lesson on High Valyrian, one of two languages he created for "Game of Thrones" (along with Dothraki). "Language is not merely a tool," he says. "It is our legacy, it's our way of conveying what it means to be human."
bookmarks
Linking to text fragments with a bookmarkletSep 15, 2025
I've written a bookmarklet that helps me link to specific text on a web page.
Save for later b2fa64782078%23Apr 22, 2025
In July 2014, Alexis Madrigal reported for NPR on the strange case of Pinterest . The visual bookmarking app “is mostly known as a place people go to find things to buy or make,” he wrote, and — unusually for a high-flying tech company — it had first gained traction among “young women away from the
oto-labs/librarian: Better Bookmarks Search w/ TransformersJan 31, 2024
Better Bookmarks Search w/ Transformers.
Ask HN: Does anybody still use bookmarking services? | Hacker NewsJun 23, 2022
historious is a single-click bookmarking search engine. Bookmark a site you like, then come back to historious and search for it using some keywords. It's that simple!
Shopping Cart or Wishlist? Saving Products for Later in EcommerceAug 30, 2019
On ecommerce sites, saving shopping-cart items for possible later purchase must be discoverable and low-effort.
books
An Introduction to the Codex Seraphinianus, the Strangest Book Ever PublishedFeb 23, 2026
Imagine you could talk to Hieronymus Bosch, the authors of the Book of Revelation, or of the Voynich Manuscript—a bizarre 15th century text written in an uncrackable code; that you could solve centuries-old mysteries by asking them, “what were you thinking?” You might be disappointed to hear them say, as does Luigi Serafini, author and illustrator of the Codex Seraphinianus, “At the end of the day [it’s] similar to the Rorschach inkblot test.
We are all le Carré’s people nowJan 13, 2026
Once again, John le Carré is back. The TV series inspired by his post-Cold War novel, The Night Manager, is returning to our screens on New Year’s Day. There’s an exhibition about his “tradecraft” on
Be Generous & Unique - ColossusOct 31, 2025
Kevin Kelly co-founded Wired magazine and is the author of the book Excellent Advice for Living. We cover his concept of the Technium, why rituals are an underappreciated part of society and family life, and the importance of developing your authentic self over a lifetime.
Do You Know What I Know?Oct 14, 2025
Joshua Rothman writes about common knowledge and the book “When Everyone Knows That Everyone Knows . . .,” by Steven Pinker.
The Pushkin job: unmasking the thieves behind an international rare books heistOct 7, 2025
The long read: Between 2022 and 2023, as many as 170 rare and valuable editions of Russian classics were stolen from libraries across Europe. Were the thieves merely low-level opportunists, or were bigger forces at work?
Mary Roach’s New Book Replaceable You Explores Challenges in Replacing Body PartsSep 24, 2025
Mary Roach unpacks the millennia-long effort to replace failing body parts—and the reasons that modern medicine still struggles to match the original designs.
the-litte-book-of/linear-algebra: There is hardly any theory which is more elementary than linear algebra, in spite of the fact that generations of professors and textbook writers have obscured its simplicity by preposterous calculations with matrices. —Jean DieudonneSep 3, 2025
There is hardly any theory which is more elementary than linear algebra, in spite of the fact that generations of professors and textbook writers have obscured its simplicity by preposterous calcul...
chiphuyen/aie-book: [WIP] Resources for AI engineers. Also contains supporting materials for the book AI Engineering (Chip Huyen, 2025)Aug 31, 2025
[WIP] Resources for AI engineers. Also contains supporting materials for the book AI Engineering (Chip Huyen, 2025) - chiphuyen/aie-book
Seven Philosophy Books for Beginners: Where to StartAug 26, 2025
One especially appealing aspect of philosophy, as a field of study, is that you don't have to go anywhere to learn it but the library. And these days, you don't necessarily have to go there, now that so many philosophical texts have become freely available on the internet.
Carl-McBride-Ellis/Compendium-of-free-ML-reading-resources: Compendium of free ML reading resourcesJul 28, 2025
Compendium of free ML reading resources
brian piercy (@brianpiercy)Jul 21, 2025
44 books curious minds wished they'd discovered sooner | Weekly FiletJul 21, 2025
Special books issue, curated by you.
8 Sci-Fi Book Series That Are Considered MasterpiecesJul 2, 2025
These sci-fi book series are brilliant.
The Book Of ShadersJun 30, 2025
Gentle step-by-step guide through the abstract and complex universe of Fragment Shaders.
The Hundred-Page Machine Learning Book by Andriy BurkovMay 24, 2025
All you need to know about Machine Learning in a hundred pages. Supervised and unsupervised learning, support vector machines, neural networks, ensemble methods, gradient descent, cluster analysis and dimensionality reduction, autoencoders and transfer learning, feature engineering and hyperparameter tuning! Math, intuition, illustrations, all in just a hundred pages!
What Is the Voynich Manuscript?Apr 22, 2025
The 15th century Voynich Manuscript is a historical marvel, written in an undecipherable language and intricately illustrated on vellum.
Optimization-Algorithms-Book/Code-ListingsApr 9, 2025
Code Listings for the book: Optimization Algorithms. Manning Publications, 2024. - Optimization-Algorithms-Book/Code-Listings
Libgen (similar to ArXiV)Apr 1, 2025
Library Genesis is a scientific community targeting collection of books on natural science disciplines and engineering.
Summaries & Notes From Books I've ReadApr 1, 2025
Detailed notes, summaries, and lessons I've learned from the books I've read. Includes topics like psychology, leadership, productivity and marketing.
Michael Lewis on the Magic of One-Hit WondersFeb 26, 2025
Michael Lewis—author of “The Big Short,” “Moneyball,” and other best-sellers—discusses books by writers who didn’t publish much, and how they helped shape his career.
Visualizing all the books in the worldFeb 26, 2025
To show a catalog of almost 100 million books in one view, phiresky mapped them based on International Standard Book Numbers, or ISBNs, with an interactive visualization.
Top 10 Game Theory Books to Enhance Strategic ThinkingJan 19, 2025
Explore the best books on game theory to sharpen your strategic thinking. From foundational texts to advanced strategies, these books offer valuable insights for professionals, students, and enthusiasts
11 Books to Help Navigate RiskDec 17, 2024
Expert strategies for identifying and managing diverse business threats in a complex, global environment.
7 New Books added to Big Book of R [7/12/2024] | R-bloggersDec 7, 2024
I’m very happy to introduce 7 additions to the Big Book of R collection which now stands at almost 450 free, open-source R programming books. A special thanks to Gary and Lucca Scrucca for their submissions. In case you missed it, the Big Book of R bot is live on … The post 7 New Books added to Big Book of R [7/12/2024] appeared first on Oscar Baruffa.
Agile Web Development with Rails 8Oct 30, 2024
Get the comprehensive, insider information you need for Rails 8 with the new edition of this award-winning classic.
How the whip-poor-will became an iconic bird of American horror - Fast CompanyOct 27, 2024
Lovecraft’s and King’s fictional whip-poor-wills draw on widespread Indigenous, European, and American beliefs about the species.
BookOct 22, 2024
High Performance PostgreSQL for Rails: Reliable Scalable Maintainable DatOct 19, 2024
Build fast, scalable PostgreSQL and Rails apps. Solve data growth, quality, and reliability challenges, for workloads from consumer Internet to enterprise SaaS.
Book Review: You Talking to Me? How Human Language EvolvedAug 2, 2024
Prehistory professor Steven Mithen’s “The Language Puzzle” explores the mysteries of when and how we began to speak.
PacktPublishing/Modern-Graph-Theory-Algorithms-with-PythonAug 2, 2024
Modern Graph Theory Algorithms with Python, published by Packt - PacktPublishing/Modern-Graph-Theory-Algorithms-with-Python
Eight Books That Will Change Your PerspectiveJul 8, 2024
One of the joys of reading is encountering someone else’s awakening on the page.
Physics — Susan RigettiJul 5, 2024
Top Books on Deep Learning and Neural NetworksMay 15, 2024
Deep learning is crucial in today's age as it powers advancements in artificial intelligence, enabling applications like image and speech recognition, language translation, and autonomous vehicles. Understanding deep learning equips individuals to harness its potential, driving innovation and solving complex problems across various industries. This article lists the top Deep Learning and Neural Networks books to help individuals gain proficiency in this vital field and contribute to its ongoing advancements and applications. Deep Learning (Adaptive Computation and Machine Learning series) This book covers a wide range of deep learning topics along with their mathematical and conceptual background. Additionally, it offers
The Complicated Ethics of Rare-Book CollectingMay 4, 2024
Literary treasures are too often hidden away from the public—but the world of private collecting isn’t all bad.
Did a Female Chinese Super Spy Wreck CIA Ops?May 4, 2024
SpyTalk plumbs Chinese intel history for facts behind David Ignatius's semi-fictional "The Tao of Deception"
High Anxiety - by Henry R. Schlesinger - SpyTalkMay 4, 2024
David Ignatius’ latest thriller is a tour de space force, spies and satellite warfare
The Laws of Human Nature by Robert Greene - Summary & NotesApr 16, 2024
Detailed notes and summary for The Laws of Human Nature by Robert Greene. Another in-depth book with timeless principles to better understand and navigate life.
books/Clean Ruby.pdf at main · emrancub/booksApr 9, 2024
I collected several books from different media. You can download any book from here and enjoy your reading. Happy reading! - emrancub/books
Carrie at 50: the bloody history of Stephen King’s audacious debut novelApr 8, 2024
The ‘king of horror’ has published more than 60 novels and sold over 350 million books – but it all began 50 years ago with the tale of a teen misfit with telekinetic powers who gets her first period in the school shower. Jessie Thompson looks back on a great, career-making novel (which King’s wife had to salvage from the bin)
10 New Ecommerce Books for Spring 2024Apr 1, 2024
This installment of our quarterly rundown includes titles on digital marketing, team development, content marketing, AI, launching a startup, and more.
Tiny Python ProjectsMar 11, 2024
Eloquent JavaScriptMar 7, 2024
Seven Books That Explain How Hollywood Actually WorksMar 7, 2024
These titles shed light on an industry that’s always bubbling with drama beneath the surface.
Graph Representation Learning BookMar 5, 2024
Conformal_Prediction/paper/Conformal_Prediction_final.pdf at main · MichelLMar 5, 2024
This projects contains different conformal methods and approaches. Includes code generated for a experimental evaluation of a multidimensional, low-sample size biomedical dataset of oncological sub...
Welcome to Open Library | Open LibraryFeb 10, 2024
Open Library is an open, editable library catalog, building towards a web page for every book ever published. Read, borrow, and discover more than 3M books for free.
A 500-Page Book Explores the Ghosts & Monsters from Japanese FolkloreFeb 6, 2024
Westerners tend to think of Japan as a land of high-speed trains, expertly prepared sushi and ramen, auteur films, brilliant animation, elegant woodblock prints, glorious old hotels, sought-after jazz-records, cat islands, and ghost towns.
Why Gödel, Escher, Bach is the most influential book in my life.Feb 5, 2024
Musings on Hofstadter’s phenomenal book about computation, consciousness, and epistemology.
The 5 best books about Special Forces — according to Green BeretsFeb 4, 2024
We asked a few Green Berets what books they recommend, and they delivered. You can't go wrong reading these five books about Special Forces.
Noise: A Flaw in Human Judgment - WikipediaJan 25, 2024
Noise: A Flaw in Human Judgment is a nonfiction book by professors Daniel Kahneman, Olivier Sibony and Cass Sunstein. It was first published on May 18, 2021. The book concerns 'noise' in human judgment and decision-making. The authors define noise in human judgment as "undesirable variability in judgments of the same problem" and focus on the statistical properties and psychological perspectives of the issue.
Building an antilibrary: the power of unread booksJan 11, 2024
Unread books are as powerful as the ones we read. An antilibrary is a private collection of unread books capturing the vastness of the unknown.
Spatial Statistics for Data Science: Theory and Practice with RJan 8, 2024
A book for Spatial Statistics for Data Science with R.
Understanding Deep LearningOct 20, 2023
Math for Machine Learning: 14 Must-Read BooksOct 20, 2023
It is possible to design and deploy advanced machine learning algorithms that are essentially math-free and stats-free. People working on that are typically professional mathematicians. These algorithms are not necessarily simpler. See for instance a math-free regression technique with prediction intervals, here. Or supervised classification and alternative to t-SNE, here. Interestingly, this latter math-free machine
Hagakure: Book of the Samurai - hagakure.pdfSep 29, 2023
VLSI Physical DesignSep 27, 2023
Dirty Secrets of BookCorpus, a Key Dataset in Machine LearningSep 21, 2023
BookCorpus has helped train at least thirty influential language models (including Google’s BERT, OpenAI’s GPT, and Amazon’s Bort), according to HuggingFace. This is the research question that…
Ness Labs Best Books of September 2023Sep 19, 2023
What should you read this month? This is your September 2023 guide to discovering the most insightful, inspiring, and transformative books on mindful productivity, creative growth, holistic ambition, and developing a healthier relationship with work.
20 of the Most Thought-Provoking, Philosophical Science Fiction Books of AlSep 19, 2023
Looking for a work of science fiction that will make you really think? Welcome to these philosophical sci-fi books!
Probabilistic Machine Learning: Advanced TopicsSep 12, 2023
Book Review: A Neurosurgeon’s Inside Look at the BrainAug 24, 2023
Theodore H. Schwartz's “Gray Matters” explores the evolution of brain surgery, along with its many risks and rewards.
10 Terrifying 21st Century NovelsJun 10, 2023
Why not take a walk with us, past the KEEP OUT sign and underneath the velvet rope, to the forbidden section of the library, where the evil books dwell…
How to hold onto a sense of wonderJun 4, 2023
Katherine May's new book examines the idea of awakening wonder in an "anxious age." And when I tell you that I dog-eared almost every page in this book, I'm telling God's honest truth.
The 100 greatest children's books of all timeMay 27, 2023
BBC Culture polled 177 experts from 56 countries to find the greatest children's books ever. From Where the Wild Things Are to Haroun and the Sea of Stories, here's the top 100.
The Best of Science Fiction | Five Books recommendsMay 8, 2023
The best sci fi books, recommended by those who know: from timeless classics of science fiction to the best new novels, taking in cli-fi, space colonies, time travel and more.
The Best Science Fiction is Real: Realistic Sci-Fi to TBRApr 1, 2023
Red your way into the best realistic science fiction, ranging from well-known classics to lesser known gems.
Margaret Atwood Is Ready to Let It RipMar 10, 2023
The author spoke with WIRED about her new short story collection "Old Babes in the Wood," crypto, the end of Roe v. Wade, and what’s left to inspire hope.
25 of the Best Historical Fiction Books of the Past 10 YearsMar 1, 2023
Take a trip back in time without leaving your seat with 25 of the best historical fiction books of the past 10 years!
Madeline Kripke Owned 20,000 Books, Some of Them Very BawdyFeb 11, 2023
She had perhaps the largest personal dictionary collection in the world. It is certainly the most titillating.
pythondocument/Fluent Python.pdf at master · hiddenJuliet/pythondocumentJan 30, 2023
translate python documents to Chinese for convenient reference 简而言之,这里用来存放那些Python文档君们,并且尽力将其翻译成中文~~ - hiddenJuliet/pythondocument
The Alchemy of Air: A Jewish Genius, a Doomed Tycoon, and the Scientific Discovery That Fed the World but Fueled the Rise of Hitler: Hager, Thomas: 9780307351791: Amazon.com: BooksJan 22, 2023
The Alchemy of Air: A Jewish Genius, a Doomed Tycoon, and the Scientific Discovery That Fed the World but Fueled the Rise of Hitler [Hager, Thomas] on Amazon.com. *FREE* shipping on qualifying offers. The Alchemy of Air: A Jewish Genius, a Doomed Tycoon, and the Scientific Discovery That Fed the World but Fueled the Rise of Hitler
bmurmann/Book-on-MOS-stages: Book repository "Analysis and Design of Elementary MOS Amplifier Stages"Jan 17, 2023
Book repository "Analysis and Design of Elementary MOS Amplifier Stages" - bmurmann/Book-on-MOS-stages
🛰️ Liu Cixin's technologies of the future | vincelwt.comJan 13, 2023
Highlight of cool technologies mentioned in "The Dark Forest".
To Build Truly Intelligent Machines, Teach Them Cause and Effect | Quanta MJan 5, 2023
Judea Pearl, a pioneering figure in artificial intelligence, argues that AI has been stuck in a decades-long rut. His prescription for progress? Teach machines to understand the question why.
What Can We Learn from Barnes & Noble's Surprising Turnaround?Jan 1, 2023
Digital platforms are struggling, meanwhile a 136-year-old book retailer is growing again. But why?
mgp/book-notes: Notes from books and other interesting things that I've reaDec 22, 2022
Notes from books and other interesting things that I've read. Table of contents at the end 👇 - mgp/book-notes
Stream 47 Hours of Classic Sci-Fi Novels & Stories: Asimov, Wells, Orwell,Dec 21, 2022
The pronouncements of French theorist Jean Baudrillard could sound a bit silly in the early 1990s, when the internet was still in its infancy, a slow, clunky technology whose promises far exceeded what it could deliver.
The 7 Powers Known to Tesla, Pixar, Netflix, Apple & TwilioDec 13, 2022
There is a fallacy in believing your current performance is indicative of future success: Performance is a trailing indicator. Power is a leading one.
The Top 10 Toilet BooksDec 13, 2022
Discover the benefits of having a dedicated collection of books for your bathroom reading pleasure. Say goodbye to using your phone on the pot and enjoy quick hits of interesting information instead.
https://fabiensanglard.net/b/gebbdoom.pdfDec 10, 2022
Capital in the Twenty-First Century a book by Thomas Piketty and Arthur GoldhammerDec 7, 2022
A New York Times #1 BestsellerAn Amazon #1 BestsellerA Wall Street Journal #1 BestsellerA USA Today BestsellerA Sunday Times BestsellerA Guardian Best Book of the 21st CenturyWinner of the Financial Times and McKinsey Business Book of the Year AwardWinner of the British Academy MedalFinalist, National Book Critics Circle Award "It seems safe to say that Capital in the Twenty-First Century, the magnum opus of the French economist Thomas Piketty, will be the most important economics book of the year--and maybe of the decade."--Paul Krugman, New York Times "The book aims to revolutionize the way people think about the economic history of the past two centuries. It may well manage the feat."--The Economist "Piketty's Capital in the Twenty-First Century is an intellectual tour de force, a triumph of economic history over the theoretical, mathematical modeling that has come to dominate the economics profession in recent years."--Steven Pearlstein, Washington Post "Piketty has written an extraordinarily important book...In its scale and sweep it brings us back to the founders of political economy."--Martin Wolf, Financial Times "A sweeping account of rising inequality...Piketty has written a book that nobody interested in a defining issue of our era can afford to ignore."--John Cassidy, New Yorker "Stands a fair chance of becoming the most influential work of economics yet published in our young century. It is the most important study of inequality in over fifty years."--Timothy Shenk, The Nation
NeurolinguisticsDec 7, 2022
An accessible introduction to the study of language in the brain, covering language processing, language acquisition, literacy, and language disorders.Neurol...
Seven Books That Will Make You SmarterDec 6, 2022
These titles do more than answer questions: They explain how the world moves and what moves it.
Category Theory for Programmers: The Preface | Bartosz Milewski's ProgramNov 30, 2022
Table of Contents Part One Category: The Essence of Composition Types and Functions Categories Great and Small Kleisli Categories Products and Coproducts Simple Algebraic Data Types Functors Functo…
New Book: Approaching (Almost) Any Machine Learning Problem - Machine Learning TechniquesOct 27, 2022
This self-published book is dated July 2020 according to Amazon. But it appears to be an ongoing project. Like many new books, the material is on GitHub, here. The most recent version, dated June 2021, is available in PDF format, here. This is not a traditional book. It feels like a repository of Python code,
30 Best Math Books to Learn Advanced Mathematics for Self-LearnersOct 10, 2022
We have curated almost thirty suggested math books by Neil Sainsbury for self-learners. All those books help you in different fields of math.
CompCogNeuro/book: Computational Cognitive Neuroscience textbookOct 4, 2022
Computational Cognitive Neuroscience textbook.
Fundamentals of Data VisualizationOct 4, 2022
A guide to making visualizations that accurately reflect the data, tell a story, and look professional.
Videos — Engineering MediaOct 4, 2022
Here is a growing list of videos that I’ve created for YouTube channels other than my own.
The Best Jewish Food Cookbooks (for Noshing Your Way Through the Holidays)Oct 1, 2022
From classic to innovative, these Jewish cookbooks will teach you how to make Israeli street food, West African-inspired brisket, and way, way more.
The Enduring Wisdom of ‘Goodnight Moon’ (Published 2022)Sep 22, 2022
It’s the first book many babies receive as a gift, and one of the few that parents will keep when their child is grown. Why does this 75-year-old story have such staying power?
Patterns, Predictions, and ActionsAug 22, 2022
20 of the Best Science Fiction Books of All Time | Book RiotAug 14, 2022
The best science fiction books of all time push the envelope, show what could be, and make you question what's possible.
The Most Influential Sci-Fi Books Of All TimeAug 14, 2022
The most influential sci-fi books of all time examine humanity's longest-held hopes and deepest, most visceral fears.
20 Must-Read Genre-Bending Sci-Fi Books | Book RiotAug 14, 2022
From sci fi romance to science fantasy and sci fi horror, those genre-blending science fiction books have something for every reader.
Outer Sight: The Best Science Fiction Books You've Never Heard ofAug 14, 2022
These hidden gems are all great works of imagination set near and far that you need to add to your TBR ASAP.
fastai/fastbook: The fastai book, published as Jupyter NotebooksJul 24, 2022
The fastai book, published as Jupyter Notebooks.
https://twitter.com/freakonometrics/status/1550439602594484225?s=12&t=5dAyRh9A5Nw53A3oNf4HPgJul 22, 2022
Welcome | Handbook of Graphs and Networks in People AnalyticsJul 20, 2022
A technical manual of graphs, networks and their applications in the people and social sciences
IndexJul 19, 2022
d2l-ai/d2l-en: Interactive deep learning book with multi-framework code, math, and discussions. Adopted at 500 universities from 70 countries including Stanford, MIT, Harvard, and Cambridge.Jul 18, 2022
Interactive deep learning book with multi-framework code, math, and discussions. Adopted at 500 universities from 70 countries including Stanford, MIT, Harvard, and Cambridge. - d2l-ai/d2l-en
The Design of Everyday Things — Book Summary & NotesJul 18, 2022
This is my summary and notes from The Design of Everyday Things by Don Norman. Please use the link if you decide to buy the book after…
book-notes/never-split-the-difference.markdown at master · mgp/book-notesJul 17, 2022
Notes from books and other interesting things that I've read. Table of contents at the end 👇 - mgp/book-notes
The Sanaa Palimpsest: A truly fascinating Quranic manuscriptJul 14, 2022
The Sanaa Palimpsest has a number of unique characteristics, not least as an enduring artefact of Quranic scribal methods and of Islamic heritage within Yemen. Yet deciphering the text poses theological quandaries surrounding Quranic tradition.
PostgreSQL 14 InternalsJul 14, 2022
Postgres Professional is a PostgreSQL company delivering Postgres Pro DBMS and all kinds of PostgreSQL professional services worldwide
Book Release: Go For DevOps #go #golang #sre #devops #terraform #kubernetesJul 13, 2022
Go for DevOps: Learn how to use the Go language to automate servers, the cloud, Kubernetes, GitHub, Packer, and Terraform [Doak, John, Justice, David] on Amazon.com. *FREE* shipping on qualifying offers. Go for DevOps: Learn how to use the Go language to automate servers, the cloud, Kubernetes, GitHub, Packer, and Terraform
Voynich ManuscriptJul 10, 2022
The books that no-one can readJul 4, 2022
Some of the world's most celebrated authors have written manuscripts that won't be published for a century – why? Richard Fisher visits the Future Library in Oslo to find out.
Thirty-Six StratagemsJun 28, 2022
The Thirty-Six Stratagems is a Chinese essay used to illustrate a series of stratagems used in politics, war, and civil interaction.
Market DesignJun 23, 2022
A broad overview of market mechanisms, with an emphasis on the interplay between theory and real-life applications; examples range from eBay auctions to scho...
‘After lockdown, things exploded’ – how TikTok triggered a books revolutionJun 13, 2022
Have teenagers taken control of publishing? With some authors notching up a billion views, we look at how TikTok is electrifying the world of books – creating bestsellers, reviving classics and rescuing neglected genres
book notes | Derek SiversJun 4, 2022
Introduction to Compilers and Language DesignMay 20, 2022
10 Best UI/UX Books that Every Designer Should Read [2022]Apr 13, 2022
If you're looking for the best books on web design topics, you are in the right place. In this...
Introduction — Machine Learning from ScratchMar 23, 2022
R Graphics Cookbook, 2nd editionMar 21, 2022
This cookbook contains more than 150 recipes to help scientists, engineers, programmers, and data analysts generate high-quality graphs quickly—without having to comb through all the details of R’s graphing systems. Each recipe tackles a specific problem with a solution you can apply to your own project and includes a discussion of how and why the recipe works.
Text Mining with RMar 21, 2022
A guide to text analysis within the tidy data framework, using the tidytext package and other tidy tools
Welcome · Advanced R.Mar 21, 2022
Welcome | Data Science at the Command Line, 2eMar 21, 2022
This thoroughly revised guide demonstrates how the flexibility of the command line can help you become a more efficient and productive data scientist. You’ll learn how to combine small yet powerful command-line tools to quickly obtain, scrub, explore, and model your data. To get you started, author Jeroen Janssens provides a Docker image packed with over 100 Unix power tools—useful whether you work with Windows, macOS, or Linux.
3 t7n57q bj gMar 19, 2022
Wonders and warnings from the ancient world | Daisy Dunn | The Critic MagazMar 14, 2022
This article is taken from the March 2022 issue of The Critic. To get the full magazine why not subscribe? Right now we’re offering five issue for just £10. If you’ve ever wondered how letters were…
100 Notable Books of 2021: Full Reviews List - The New York TimesJan 31, 2022
The year’s notable fiction, poetry and nonfiction, selected by the editors of The New York Times Book Review
Explore the Book » Designing Web InterfacesJan 23, 2022
Divine Comedy - WikipediaJan 23, 2022
The Divine Comedy is an Italian narrative poem by Dante Alighieri, begun c. 1308 and completed around 1321, shortly before the author's death. It is widely considered the pre-eminent work in Italian literature and one of the greatest works of Western literature. The poem's imaginative vision of the afterlife is representative of the medieval worldview as it existed in the Western Church by the 14th century. It helped establish the Tuscan language, in which it is written, as the standardized Italian language. It is divided into three parts: Inferno, Purgatorio, and Paradiso.
Book Summary: The Lessons of History by Will and Ariel DurantJan 16, 2022
This is a book summary of The Lessons of History by Will and Ariel Durant. Read this The Lessons of History summary to review ideas and lessons.
20 Short Novels To Stay Up All Night ReadingJan 15, 2022
Unputdownable books you can finish in bed tonight.
The Spine CollectorNov 30, 2021
For five years, a mysterious figure has been stealing books before their release. Is it espionage? Revenge? A trap? Or a complete waste of time?
The Hit Book That Came From MarsNov 3, 2021
The Martian started as a self-published blog, and became a major motion picture.
Books – Anil SethOct 18, 2021
Web UI Best Practices: UI Design from the ExpertsOct 11, 2021
Learn techniques from visual design, interface design, and UX design. Web UI is analyzed from over 33 companies.
Carl-McBride-Ellis/Compendium-of-free-ML-reading-resourcesSep 24, 2021
Compendium of free ML reading resources.
Is Becky Chambers the Ultimate Hope for Science Fiction?Sep 19, 2021
Her gentle, heartwarming stories seek to soothe our troubled souls. They also aim to blow up the entire genre.
Useful Spy BooksSep 16, 2021
Mastering spaCy | Data | eBookSep 7, 2021
An end-to-end practical guide to implementing NLP applications using the Python ecosystem. 1 customer review. Instant delivery. Top rated Mobile Application Development products.
Five Books: The best books on Assassinations, recommended by Michael BurleighAug 17, 2021
Best books on assassinations, recommended by historian Michael Burleigh, covering everything from Caesar to JFK, to drone warfare.
An Introduction to Statistical LearningAug 5, 2021
10 Digital Libraries Where You Can Download Ebooks for FreeJul 26, 2021
If you're looking for free ebooks to download and dive into, these digital libraries are worth checking out.
The 10 Must-Read Psychology Books Every Human Being Should Read | DurmonskiJul 13, 2021
Regardless of where you are in the pathway of understanding how the human psyche works, this list of must-read psychology books will upgrade your personal library.
Math Books you should read in 2021Jun 17, 2021
Learn how mathematics influence every aspect of our life.
7 Powers: The Foundations of Business Strategy by Hamilton Helmer – The RabJun 9, 2021
Summary Helmer sets out to create a simple, but not simplistic, strategy compass. His 7 powers include: scale economics, switching costs, cornered resource, counter positioning, branding, network effects, and process. Key Takeaways Strategy: the study of the fundamental determinants of potential business value The objective here is both positive—to reveal the foundations of business value—and […]
Behavioral Scientist’s Summer Book List 2021 - By Antonia Violante & Heather Graci Behavioral ScientistJun 9, 2021
Summer isn’t the same without a good reading list. Here are our behavioral science picks for summer 2021.
A Lucid, Literary Illustration of the Complex, Beautiful Work of MemoryJun 8, 2021
In “A Sense of Self,” the psychiatrist Veronica O’Keane flashes narrative skill in exploring the science and mystery of memory.
Big Book of R has over 200 books! | R-bloggersJun 6, 2021
Way back in August 2020, I launched Big Book of R, a collection of free (and some paid) R programming books organised by categories like Geospatial, Statistics, Packages and many more. What started off as a 100 book collection has now grown to over 200 :D! Anyway, I felt was … The post Big Book of R has over 200 books! appeared first on Oscar Baruffa.
We Can’t Schedule Innovation, But We Can Schedule DiscoveryMay 25, 2021
Every week, I talk with CEOs who tell me they want to speed up innovation. In fact, they want to schedule it. Recently a product leader shared with me an OKR to ship one major innovation each quarter, measured as “users will give each innovative feature a top rating.” This
Data-Technology-Books/dth(157).pdf at master · manjunath5496/Data-Technology-BooksMay 24, 2021
"One person's data is another person's noise." ― K.C. Cole - manjunath5496/Data-Technology-Books
Man’s Search For Meaning By Viktor Frankel: Book Summary, Key Lessons and Best QuotesMay 15, 2021
Book summary for 'Man's Search for Meaning' by Viktor Frankl. Included is book overview, key takeaways, best quotes, and more.
Geometric Deep Learning: Grids, Groups, Graphs, Geodesics, and GaugesMay 12, 2021
The last decade has witnessed an experimental revolution in data science and machine learning, epitomised by deep learning methods. Indeed, many high-dimensional learning tasks previously thought...
Exclusive Excerpt: An Icy Death at the Bottom of the WorldApr 30, 2021
In the first look at one of the year’s most eagerly anticipated books, Madhouse at the End of the Earth, the author describes a terrifying tragedy that foreshadowed the horrors awaiting a group of turn-of-the-century explorers in uncharted Antarctica.
Working Backwards - Commonplace - The Commoncog BlogApr 6, 2021
Working Backwards is the first book that explains how Amazon really works.
The Best Spy Novels Written by Spies, According to a SpyMar 25, 2021
It’s a perennial question: do spies write the best spy novels? It’s the business of secrets, after all; you can’t help but wonder how much authors get right. Surely, the only authentic spy books ar…
How Hank the Cowdog Made John R. Erickson the King of the Canine CanonMar 12, 2021
He wanted to become a serious literary novelist, like Faulkner or Hemingway. Fortunately for millions of Hank the Cowdog fans, he failed.
50 Great Classic Novels Under 200 PagesFeb 21, 2021
We are now past the mid-way point in February, which is technically the shortest month, but is also the one that—for me, anyway—feels the longest. Especially this year, for all of the reasons that …
Algorithms for Decision Making | Hacker NewsJan 13, 2021
Deep Learning Systems: Algorithms, Compilers, and Processors for Large-Scale ProductionJan 7, 2021
None
Perspective | My two weeks with John le Carré: What I learned about writing, fame and grace when I showed him around Miami in 1991.Jan 6, 2021
He wanted to learn about the Miami drug world and had been told I could help.
Patterns — Gordon BranderJan 4, 2021
This is my bag of tricks — loose notes, design patterns, rules-of-thumb, tools, cheatsheets, gimmicks, leverage points, descriptions of systems, key questions, risks, and unknowns.
Bookshelf — Gordon BranderJan 3, 2021
Reading Comprehension: How to Retain More of Every Book You ReadDec 24, 2020
It's important to read books, but it's just as important to remember what you read. Read this article to learn three reading comprehension strategies.
Culture seriesDec 10, 2020
The Culture series is a science fiction series written by Scottish author Iain M. Banks and released from 1987 until 2012. The stories centre on The Culture, a utopian, post-scarcity space society of humanoid aliens, and advanced superintelligent artificial intelligences living in artificial habitats spread across the Milky Way galaxy. The main themes of the series are the dilemmas that an idealistic, more-advanced civilization faces in dealing with smaller, less-advanced civilizations that do not share its ideals, and whose behaviour it sometimes finds barbaric. In some of the stories, action takes place mainly in non-Culture environments, and the leading characters are often on the fringes of (or non-members of) the Culture, sometimes acting as agents of Culture (knowing and unknowing) in its plans to civilize the galaxy. Each novel is a self-contained story with new characters, although reference is occasionally made to the events of previous novels.
https://wtf.tw/ref/tainter.pdfNov 6, 2020
Lead Yourself First: Inspiring Leadership Through Solitude: Kethledge, Raymond M., Erwin, Michael S., Collins, Jim: 9781632866325: Amazon.com: BooksNov 3, 2020
Lead Yourself First: Inspiring Leadership Through Solitude [Kethledge, Raymond M., Erwin, Michael S., Collins, Jim] on Amazon.com. *FREE* shipping on qualifying offers. Lead Yourself First: Inspiring Leadership Through Solitude
15 recent sci-fi books that forever shaped the genreOct 21, 2020
About the future, shaping the future
Netflix is making a series based on 'The Three-Body Problem'Sep 2, 2020
Netflix just announced its plans to turn Cixin Liu's "Three-Body Problem" trilogy into an original, English-language science fiction series. The show will
‘Eat the Buddha’ Reports From the ‘World Capital of Self-Immolations’Jul 16, 2020
Barbara Demick’s new book covers an awe-inspiring breadth of history — from the heyday of the Tibetan empire to the present-day Tibetan effort at cultural and spiritual survival.
The Alchemist, 25th Anniversary: A Fable About Following Your Dream: CoelhoJul 10, 2020
The Alchemist, 25th Anniversary: A Fable About Following Your Dream [Coelho, Paulo] on Amazon.com. *FREE* shipping on qualifying offers. The Alchemist, 25th Anniversary: A Fable About Following Your Dream
0a3b13b476ac67bbf142c769830c1d6bJul 10, 2020
The Historian: Kostova, Elizabeth: 9780316070638: Amazon.com: BooksJul 10, 2020
The Historian [Kostova, Elizabeth] on Amazon.com. *FREE* shipping on qualifying offers. The Historian
Think Like a Freak: The Authors of Freakonomics Offer to Retrain Your Brain: Levitt, Steven D., Dubner, Stephen J: 9780062218339: Amazon.com: BooksJun 1, 2020
Buy Think Like a Freak: The Authors of Freakonomics Offer to Retrain Your Brain on Amazon.com ✓ FREE SHIPPING on qualified orders
Books To Base Your Life on (The Reading List) – RyanHoliday.netMar 9, 2020
“Can you recommend any books?” After being asked this question a thousand times, I put together a private email list of book recommendations. Each month, I send one email with 5 to 10 amazing books that I read, reviewed and think you’ll like. The email is simple and quick and that’s why its grown to reach 300,000+ readers since 2008. Each book has a one sentence review along with connections to similar or related books and a thought or two on why I felt the book is important. When you sign up, I’ll immediately send you five all-time favorite recommendations, along with resources I’ve created to help you read to lead or even write your own book. Subscribe to the Reading List email Since I first started the Reading List Email in 2008, people often asked why I linked to Amazon in instead of indie bookstores. For a long time, I told them to hang on…because my dream was always to open my own shop. Well, in 2021, I did just that. You can read this Texas Monthly piece I wrote about the insane journey it was to start a small town bookstore during the middle of a pandemic. Our store The Painted Porch is now open on Main St in Bastrop, Texas and doing great. The obstacle was more than the way—it’s been an incredibly rewarding (although deeply challenging) experience. Just as the goal with the Reading List Email was that I wanted to celebrate other people’s works, The Painted Porch has become an extension of the idea of celebrating other people’s work. Since 2008, I’ve recommended close to 3,600 books and over 1,000,000 pages. At the end of each year I do a recap of the best books I’ve read that year. Check out the best of lists I did in 2023, 2022, 2021, 2020, 2019, 2018, 2017, 2016, 2015, 2014, 2013, 2012 and 2011.) The email list has over 300,000 loyal subscribers. Readers include Big Six book editors, authors, students, entrepreneurs, NFL coaches, celebrities, book store owners, executives, and everyone in between. It’s the secret weapon for anyone looking to read to lead and improve themselves. Because of what I do for a living (writing bestselling books, owning a bookstore, working with bestselling authors, marketing and advising a handful of high profile clients), I’m always stumbling on interesting books that I am in a unique position to share. This has meant everything from books 80 years out of print, review galley’s of future bestsellers, the Classics, and more. You can get a sense what’s to come on my list of Books to Base Your Life On. Enter your email address below to these unique recommendations every month via email. Tweet
The Secret to Shopping in Used BookstoresDec 23, 2019
Summer is a good season for bookstores. As the weather warms, more foot traffic passes by on the street. Front doors can be left open to entice wander-ins. The relaxed flow of summer reading lends …
The 20 Best Works of Nonfiction of the DecadeNov 8, 2019
Friends, it’s true: the end of the decade approaches. It’s been a difficult, anxiety-provoking, morally compromised decade, but at least it’s been populated by some damn fine lite…
How the ‘Brainy’ Book Became a Publishing PhenomenonOct 26, 2019
These uncertain times have seen a renewed interest in serious nonfiction, as people try to make sense of an unstable world.
Exilium Vita Est: The Island Home of Victor HugoSep 15, 2019
Emma Jacobs takes us on an illustrated journey of Hugo’s writing life in exile on Guernsey, where he completed Les Misérables.
Mathematics for Computer Science (2017) [pdf]Aug 30, 2019
Andrew Luck Book ClubAug 26, 2019
I created the Andrew Luck Book Club to share books and build a team of readers by engaging through social media using #ALBookClub.
Algorithms by Jeff EricksonAug 20, 2019
Math basicsAug 9, 2019
The Legend of Moe’s BooksJul 5, 2019
It remains a landmark in Berkeley, one of America’s very best bookstores and worth an epic detour to visit.
Bookshelf · Patrick CollisonJul 3, 2019
A Memory Called Empire is a brilliant blend of cyberpunk, space opera, andMay 22, 2019
A Memory Called Empire
Designing Data-Intensive Applications (DDIA) — an O’Reilly book by Martin Kleppmann (The Wild Boar Book)May 14, 2019
The Quest to Acquire the Oldest, Most Expensive Book on the Planet | LiteraMar 25, 2019
A wooden box containing one of the most valuable books in the world arrives in Los Angeles on October 14, 1950, with little more fanfare—or security—than a Sears catalog. Code-named “the commode,” …
Meditations - WikipediaMar 5, 2019
Meditations is a series of personal writings by Marcus Aurelius, Roman Emperor from AD 161 to 180, recording his private notes to himself and ideas on Stoic philosophy.
The Beautiful Mind-Bending of Stanislaw LemFeb 10, 2019
The massive popularity of “Solaris” helped Lem become one of the most widely read science-fiction writers in the world. Yet his writing reached far beyond the borders of the genre.
10 Books That Make You SmarterSep 30, 2018
A list of books that make you smarter, in order to boost your intelligence and general knowledge of the world and the human brain.
The Best Sci-Fi Books of All Time | Penguin Random HouseAug 30, 2018
Relish this list of the best sci-fi books of all time, including both classic tales and works thats have been flying under the radar.
Free E-Book: Software Defined Radio for EngineersJun 30, 2018
We really like when a vendor finds a great book on a topic — probably one they care about — and makes it available for free. Analog Devices does this regularly and one you should probab…
A Digital Archive of Heavy Metal, the Influential “Adult Fantasy Magazine”Mar 8, 2018
In making a time capsule of the late 20th century, one would be remiss if they did not include at least an issue or two of Heavy Metal magazine. Yes, it specialized in unapologetically turning women in metal bras into sex objects.
The Food Lab's 20 Most Influential Food BooksDec 13, 2017
These books shaped us into the cooks we are today.
boosting
CatBoost - state-of-the-art open-source gradient boosting library with cateMar 7, 2024
#CatBoost - state-of-the-art open-source gradient boosting library with categorical features support,
Boosting Algorithms in Machine Learning, Part I: AdaBoostJan 5, 2024
Understanding the logic behind AdaBoost and implementing it using Python
XGBoost: How Deep Learning Can Replace Gradient Boosting and Decision TreesSep 24, 2023
A world without if
LGBMClassifier: A Getting Started GuideJul 29, 2023
This tutorial explores the LightGBM library in Python to build a classification model using the LGBMClassifier class.
Beginner’s Guide to the Must-Know LightGBM HyperparametersApr 10, 2023
The most important LightGBM parameters, what they do, and how to tune them
SHAP for Categorical Features with CatBoostAug 13, 2022
Avoid post-processing the SHAP values of categorical features
3 Reasons Why Data Scientists Should Use LightGBMJan 24, 2022
There are many great boosting Python libraries for data scientists to reap the benefits of. In this article, the author discusses LightGBM benefits and how they are specific to your data science job.
GPBoost: Combining Tree-Boosting with Gaussian Process and Mixed Effects MoJun 25, 2021
Combining tree-boosting with Gaussian process and mixed effects models - fabsig/GPBoost
DIY XGBoost library in less than 200 lines of pythonApr 13, 2021
XGBoost explained as well as gradient boosting method and HP tuning by building your own gradient boosting library for decision trees.
Beginner’s Guide to XGBoost for Classification ProblemsApr 7, 2021
Utilize the hottest ML library for state-of-the-art performance in classification
Prediction Intervals for Gradient Boosting RegressionMar 30, 2021
This example shows how quantile regression can be used to create prediction intervals. See Features in Histogram Gradient Boosting Trees for an example showcasing some other features of HistGradien...
Xgboost regression training on CPU and GPU in pythonMar 23, 2021
GPU vs CPU training speed comparison for xgboost
XGBoost: Extreme Gradient Boosting — How to Improve on Regular Gradient Boosting?Mar 21, 2021
A detailed look at differences between the two algorithms and when you should choose one over the other
4 Easy Steps for Implementing CatBoostMar 21, 2021
an end-to-end tutorial on how to apply an emerging Data Science algorithm
A Comprehensive Mathematical Approach to Understand AdaBoostMar 11, 2021
Learn how AdaBoost works from a Math perspective, in a comprehensive and straight-to-the-point manner.
stanfordmlgroup/ngboost: Natural Gradient Boosting for Probabilistic PredictionMar 9, 2021
Natural Gradient Boosting for Probabilistic Prediction - stanfordmlgroup/ngboost
Implementing XGBoost from scratchMar 9, 2020
A step by step guide for implementing one of the most trending machine learning algorithm using numpy
Feature Boosting Network For 3D Pose EstimationFeb 19, 2020
In this paper, a feature boosting network is proposed for estimating 3D hand pose and 3D body pose from a single RGB image. In this method, the features learned by the convolutional layers are boosted with a new long short-term dependence-aware (LSTD) module, which enables the intermediate convolutional feature maps to perceive the graphical long short-term dependency among different hand (or body) parts using the designed Graphical ConvLSTM. Learning a set of features that are reliable and discriminatively representative of the pose of a hand (or body) part is difficult due to the ambiguities, texture and illumination variation, and self-occlusion in the real application of 3D pose estimation. To improve the reliability of the features for representing each body part and enhance the LSTD module, we further introduce a context consistency gate (CCG) in this paper, with which the convolutional feature maps are modulated according to their consistency with the context representations. We evaluate the proposed method on challenging benchmark datasets for 3D hand pose estimation and 3D full body pose estimation. Experimental results show the effectiveness of our method that achieves state-of-the-art performance on both of the tasks.
benedekrozemberczki/awesome-gradient-boosting-papers: A curated list of gradient boosting research papers with implementations.Aug 30, 2019
A curated list of gradient boosting research papers with implementations. - GitHub - benedekrozemberczki/awesome-gradient-boosting-papers: A curated list of gradient boosting research papers with ...
CatBoost vs. Light GBM vs. XGBoost - KDnuggetsMar 25, 2018
Who is going to win this war of predictions and on what cost? Let’s explore.
boredom
How boredom can be good for youSep 15, 2025
"When we feel bored, we want change, even if that change is unpleasant. It's about feeling something new..."
Why Being Bored Is Good | The WalrusJul 18, 2022
Technology keeps us constantly stimulated. What do we lose when we no longer have nothing to do?
The Dark Side of BoredomJan 30, 2021
While it has long been known that some people enjoy harming others for pleasure, the psychological reasons are largely unclear. A new study yields fresh insight.
bose_einstein
Why Satyendra Nath Bose was more than Einstein’s sidekick | Aeon EssaysJan 20, 2026
The life of Indian physicist Satyendra Nath Bose illuminates how scientific genius can emerge from the most unexpected quarters
botany
Hunting for the world's most mythical cannabis: Big Sur Holy WeedFeb 20, 2026
California is racing to save historic cannabis strains before legalization erases them.
Hunting for the World's Most Mythical Cannabis: Big Sur Holy Weed - LongreadsFeb 20, 2026
"California is racing to save iconic cannabis strains before legalization kills them."
Saving the Venus Flytrap: How One Woman Rallied a Town Around Its Weirdest Attraction – Garden & GunDec 15, 2025
Despite their outsize hold on popular imagination, Venus flytraps are native to a tiny corner of the globe: the Coastal Plain of the Carolinas. As development threatens, one town—spurred on by one tireless botanist—has taken up the shovel to save the world’s most fascinating plant.
Scientists Are Just Beginning to Understand How Life Makes Clouds, and Their Discoveries May Drastically Improve Climate ScienceJul 2, 2025
Plants, plankton and sea spray all release elements that help the atmospheric blankets form
How To Build A Thousand-Year-Old TreeMay 6, 2025
"A set of experimental techniques and technologies that might seem harmful to trees is actually helping ancient forests survive."
Why These Tropical Trees Love a Lightning StrikeMar 26, 2025
One species of tropical tree seems not only to survive lightning strikes but also to thrive because of them
The Problem With Darling 58Jun 10, 2024
The fight to save America’s iconic tree has become a civil war.
As Wildfires Grow Fiercer, Some Companies Look to Rebuild the Tree Supply CApr 5, 2024
As forests succumb to ever-fiercer wildfires, the federal government and some adventurous private companies are trying to resuscitate an industry.
The Extraordinary Lives Of Coast RedwoodsMar 7, 2024
Oddities, marvels and revelations proliferate in groves of the tallest trees on the planet.
This forest generates billions of dollars without felling a single treeFeb 15, 2024
Cork oaks are making homes warmer, cars lighter and clothes biodegradable — while still feeding the birds and absorbing carbon.
The Astounding Origins of Chaco Canyon TimberApr 13, 2023
Chaco Canyon Great Houses have timber of more than 200,000 massive log beams. Where Ancestral Puebloans got the wood is no longer a mystery.
The Ancient Order of BaliMar 28, 2023
In 1970s Bali, a sudden rice crisis prompted an unexpectedly far-reaching scientific discovery
A journey to Earth's most remote flowerJan 27, 2023
Tagimoucia is so rare that it only grows on one of Fiji's 330 islands, it's found high atop a steep mountain ridge and it blooms for less than three months a year.
The Beautiful, Brutal World of BonsaiNov 22, 2022
An American undergoes a gruelling apprenticeship to a Japanese master.
Why Prehistoric Herders Didn't Spit Out Their Watermelon SeedsNov 12, 2022
Thousands of years ago, Saharans ate the kernels before the fruit became sweet
Meet Nature’s Apex Regenerator: The Mighty Baobab TreeOct 31, 2022
The oldest relationship between humans and ancient trees naturally occurs in Africa. The continent’s longest-lived tree is the largest, too. Amazingly wide for its height, a mature baobab appears o…
Phantom Forests: Why Ambitious Tree Planting Projects Are FailingOct 25, 2022
High-profile initiatives to plant millions of trees are being touted by governments around the world as major contributions to fighting climate change. But scientists say many of these projects are ill-conceived and poorly managed and often fail to grow any forests at all.
At Old Coal Mines, the American Chestnut Tries for a ComebackSep 16, 2022
Across Appalachia, scientists and foresters are trying to reintroduce a hybrid version, helping to revive damaged land while also bringing back a beloved tree.
Why an American chestnut tree in Centreville is the 'holy grail' for conservationistsSep 5, 2022
The American chestnut tree used to grow throughout the eastern U.S., but was devastated by a blight in the early 20th century.
Into the Forbidden ForestJul 29, 2022
Famed American biologist Patricia Wright explores an astonishing breadth of biodiversity in the wilderness of Madagascar
Can Planting a Trillion New Trees Save the World?Jul 17, 2022
To fight climate change, companies and nonprofits have been promoting worldwide planting campaigns. Getting to a trillion is easier said than done.
Mapping Urban Trees Across North America with the Auto Arborist DatasetJul 5, 2022
Posted by Sara Beery, Student Researcher, and Jonathan Huang, Research Scientist, Google Research, Perception Team Over four billion people live in...
Meet the Yucca Whisperer of West TexasJun 16, 2022
Near Fort Stockton, Hoven Riley has been quietly growing more than 20,000 of the prized plants, which are being illicitly uprooted from public and private lands to meet a growing demand.
Does turmeric’s reputation translate into real health benefits?May 27, 2022
Clinical trials show that curcumin, present in the spice, may help fight osteoarthritis and other diseases, but there’s a catch – bioavailability, or how to get it into the blood
Sonoma County farm finds first truffle - Los Angeles TimesJan 7, 2022
The Alexander Valley Truffle Farm has found its first truffle almost a decade after planting its truffle orchard in Geyserville, Calif.
The Incredible FigDec 27, 2021
The fig is an ecological marvel. Although you may never want to eat one again.
The Strange Quest to Save North America’s Most Elusive Oak TreeDec 21, 2021
How one 90-year ecological mystery reveals the complexities of conservation—and the problems with the “endangered species” approach.
The Deep Roots of the Vegetable That ‘Took Over the World’Jul 3, 2021
A study digs up the origin of the single species that gives us turnips, bok choy, broccoli rabe, and more.
The birthplace of the modern apple - BBC TravelJun 19, 2021
When a Russian scientist identified the Malus sieversii as the progenitor of the domestic apple, harvests in Kazakhstan’s forests were bountiful; now this wild fruit is threatened.
The American West's sagebrush sea is rapidly vanishingMay 31, 2021
Once considered a rangeland weed, this plant is the cornerstone of America’s desert ecosystems
https://www.sierraclub.org/sierra/2021-2-march-april/feature/demise-and-potential-revival-american-chestnutMar 13, 2021
The Golden Guide to Hallucinogenic Plants: Discover the 1977 Illustrated GuJan 1, 2021
I mean, the idea that you would give a psychedelic—in this case, magic mushrooms or the chemical called psilocybin that's derived from magic mushrooms—to people dying of cancer, people with terminal diagnoses, to help them deal with their - what's called existential distress.
The Mystery of Mistletoe’s Missing GenesDec 26, 2020
Mistletoes have all but shut down the powerhouses of their cells. Scientists are still trying to understand the plants’ unorthodox survival strategy.
An 'Extinction Hotspot' in AppalachiaJul 11, 2020
The discovery of a lost plant species highlights the need to protect other endangered species in one of the most biodiverse regions in the U.S.
The Role of Wind in a Tree’s LifeDec 21, 2019
By Anupum Pant Remember the biosphere 2? In short, it’s a miniature version of our planet, now owned by the university of Arizona, constructed for scientists to study how the planet’s l…
Why plants don’t die from cancerJul 1, 2019
Humans and other mammals and birds would have been killed many times over by Chernobyl's radiation that plants in the most contaminated areas received. So why is plant life so resilient to radiation and nuclear disaster?
The Mysterious Life (and Death) of Africa’s Oldest TreesJan 18, 2019
On the plight of the baobab tree.
Arborists Are Bringing the 'Dinosaur of Trees' Back To LifeJan 14, 2019
Arborists are cloning saplings from the stumps of the world's largest, strongest, and longest-lived trees -- felled for timber more than a century ago -- to create redwood "super groves" that can help fight climate change. "Using saplings made from the basal sprouts of these super trees to plant new...
Dandelion seeds fly using ‘impossible’ method never before seen in natureOct 18, 2018
Nature - The seeds contain a lot of open space, which seems to be the key to sustaining flight.
The minds of plantsDec 13, 2017
From the memories of flowers to the sociability of trees, the cognitive capacities of our vegetal cousins are all around us
Can American soil be brought back to life?Sep 25, 2017
A new idea: If we revive the tiny creatures that make dirt healthy, we can bring back the great American topsoil. But farming culture — and government — aren't making it easy.
boxplots
Visualizing Data: A Statology Primer - KDnuggetsJul 23, 2025
This collection of tutorials from our sister site Statology center on data visualization. Learn more about visualizing your data right here.
Why you shouldn’t use boxplotsJun 9, 2024
Box plots are a very common tool in data visualization to show how your data is distributed. But they have a crucial flaw. Let’s find out what that flaw is. And if you’re interested in the video version of this blog post, you can find it here: ...
bragging
Get your work recognized: write a brag documentJul 19, 2022
The Best Article Ever Written About BraggingJul 18, 2022
After feeling belittled, I journey into the heart of bragging and discover 17 modes of showing off.
Why are we so uncharitable to those doing good deeds?Jun 3, 2021
From veganism to fundraising, psychologists have found acts of altruism often attract mistrust and even anger
https://psychlens.com/psychology-of-bragging/Jan 30, 2021
7 Ways Narcissists Manipulate RelationshipsJan 30, 2021
How narcissists use "narcissistic supply" to exploit relationships.
brainstorming
Proof That Constraints Can Actually Make You More CreativeAug 22, 2025
Brainstorming, thinking outside the box, working with free reign on a project--they're old creativity maxims, but how well do they really work?
Scrintal is a great new tool for brainstorming ideas and projectsApr 5, 2023
Organizing multistep projects can be challenging. Scrintal lets you easily focus on one element at a time.
brandmgmt
When Brands Wear an Insult as a Badge of Honor | MIT Sloan Management ReviewMar 2, 2026
In some scenarios, brands can increase consumer interest and positive attitudes by embracing insults directed at them.
The End of the ‘Generic’ Grocery-Store BrandOct 30, 2025
They’re no longer terrible—in fact, they’re often the draw.
A Good Rivalry Can Elevate Your BrandAug 22, 2025
New research shows when to mention a direct competitor in your marketing—and when to avoid it.
What legacy brands can learn from the hype cycleJul 28, 2025
How to balance modern and classic brand design - Fast Company
Flash Sales without Brand DamageMay 19, 2025
The best flash sales build urgency that aligns with long-term goals, brand positioning, and channel constraints.
Elizabeth Goodspeed on the delicate art of nostalgia in brandingMar 20, 2024
Our US editor-at-large dissects the emotional potency of heritage branding and how companies try (and sometimes fail) to capitalise on it.
How Do You Make a Weed Empire? Sell It Like Streetwear.Feb 29, 2024
Berner, the San Francisco rapper, has built a legal-weed empire out of his black-market past — and blurred the lines between the two.
Ten Examples of the Mandela EffectFeb 1, 2024
Did Tom Cruise really dance in his underwear and a pair of Ray-Bans in “Risky Business”? If you answered “yes,” you might be suffering from the Mandela Effect.
How brands get their names, explained by a professional namerOct 30, 2022
A professional explains why brand names have gotten weirder.
Protect Your Brand From CybersquattingJul 18, 2022
A new set of top-level domain extensions — .food, .sport, and more — pose challenges for brands.
Brand Bidding Techniques: Smart Ways To Use Typos & URLs As KeywordsJul 18, 2022
Finding the right mix of keywords is as much science as it is good common sense. When it comes to your brand, there are typo and URL derivation techniques
Justin Timberlake And The AC/DC RuleJul 14, 2022
A lesson from the Australian classic rockers explains why the pop star's newest album, which hasn't generated glowing reviews or massive radio hits, still had an explosive opening sales week.
Home | Informa ConnectJun 28, 2022
Applying Luxury Principles to Ecommerce DesignJun 27, 2022
Luxury brands should use their digital channels to support and enhance their high-quality customer experiences. This requires providing product details that spark interest, balancing visual design with other priorities, and avoiding interruptions that risk cheapening the brand.
11 Steps For Branding With StoriesJun 25, 2022
As entrepreneurs, Diane Engelman, PhD, and JB Allyn, MBA, have been perfecting a methodology over the past 12 years that is burgeoning in…
The Complete Guide To Bidding On Competitor Brand Names & Trademarked TermsJun 24, 2022
It's been long known in the industry that brand term keywords garner a much higher click-through-rate. As a result, marketers often start by bidding on their own brand terms.
Domain Auctions, Expired Domain Names, and Available Aftermarket Domain Names for Sale - NameJetJun 23, 2022
NameJet.com is the largest Domain Name Auction marketplace. Buy Domains even if they are already registered or Sell Domains Names by listing them in our daily marketplace.
The Weird Science of Naming New Products (Published 2015)Jun 7, 2022
To find the perfect brand, leave no word unturned.
DesignJun 7, 2022
Find the latest Design news from Fast company. See related business and technology articles, photos, slideshows and videos.
Spot the difference: the invincible business of counterfeit goodsMay 13, 2022
The long read: Selling cheap fakes of a successful product makes horribly good business sense. Is there any way to stop it?
How Heinz uses a fake number to keep its brand timeless | CNN BusinessFeb 24, 2022
Heinz has been linked to the number 57 for more than a century. The company’s “57 varieties” slogan was a key part of its early strategy to attract consumers. It’s still featured on Heinz ketchup bottles today and is central to the brand’s identity.
To Truly Delight Customers, You Need Aesthetic IntelligenceJan 23, 2022
Pauline Brown, former chairman of North America for the luxury goods company LVMH, argues that in additional to traditional and emotional intelligence, great leaders also need to develop what she calls aesthetic intelligence. This means knowing what good taste is and thinking about how your services and products stimulate all five senses to create delight. Brown argues that in today’s crowded marketplace, this kind of AI is what will set companies apart — and not just in the consumer products and luxury sectors. B2B or B2C, small or large, digital or bricks-and-mortar, all organizations need to hire and train people to think this way. Brown is the author of the book “Aesthetic Intelligence: How to Boost It and Use It in Business and Beyond.”
A Quickstart Guide to Positioning - April DunfordOct 21, 2021
Want to improve your product's positioning but not sure where to start? This article is going to give you everything you need to get started including what positioning is, why it matters, and how to improve it.
Your Brand Has Never Been Easier to DestroyJul 17, 2021
Welcome to the wild world of product displacement, in which no brand is safe from "hatejacking" and other threats.
The Gap Between Reputation and Personal BrandJan 22, 2021
Reputation is old. Personal brands are new. It is useful to know that they are not the same thing.
Product Packaging designs so innovative, they make it impossible to say a nJan 7, 2021
In today's consumer-centric world, packaging designs hold a very important place! A unique and attractive packaging design is what captures the interest and attention of your consumer. It pulls the consumer towards the product and even drives them to purchase it. Hence, allocating time, effort, and energy to create an appealing packaging design is extremely
Principles for Naming a BrandNov 3, 2020
Finding a brand name can be a painful process but these eight rules, based on brand naming examples, cover everything to get it right.
Inside the Flour Company Supplying America’s Sudden Baking ObsessionMay 24, 2020
How King Arthur Flour found itself in the unlikely crosshairs of a pandemic
The Worst Rebrand in the History of Orange JuiceMay 1, 2020
They paid $35 million to then lose $20m in sales
What To Do If People Hate Your Brand MascotFeb 18, 2020
Does your website have a mascot that the audience isn’t responding well to or that outright hates it? Or maybe your new client has brought along a mascot that you’re unsure about? If a mascot’s design or messaging isn’t on point with an audience, there’s no sense in keeping it as is and losing business over it. Today, Suzanne Scacca is going to give you four options for turning your hated brand mascot into one the people love.
This product has an unpronounceable name. Now what? (from Ask HN)Feb 9, 2020
177K subscribers in the ProductManagement community. Product Management
No One Cares About Your LogoDec 23, 2019
Let’s take some pressure off logos—they really don’t need to work so hard. Here’s what drives your brand instead.
Stop Focusing on Trying to Go Viral and Instead Take a StandApr 2, 2019
Consumers want to connect with a brand.
The power of brands, conscious and unconsciousFeb 10, 2019
Economists explore the complex forces that shape what ends up in your shopping cart and how that might change in the online marketplace
How Spending $20,000 on a Domain Name Uncovered an Incredible Business OppoDec 28, 2017
We explain how we came to spend $20,000 on this domain, and the incredible business opportunities that exist, waiting for someone to bring them to life.
BrandBucket - The Largest Brandable Business Names MarketplaceDec 28, 2017
The original brandable name marketplace with over 100,000 expert-curated business names to choose from. Get the matching .com and a logo, and free branding advice from our team.
broadcasting
Understanding carriageDec 16, 2025
The announcement of the planned Netflix acquisition of Warner Bros, one of the last remaining major studios, is shedding light on a key issue we often overlook when thinking about culture, creativi…
The Rise and Fall of ESPN’s LeverageSep 12, 2023
Charting ESPN’s rise, including how it build leverage over the cable TV providers, and its ongoing decline, caused by the Internet.
ResultsMar 15, 2023
The future of TV is up in the air - The VergeMar 14, 2023
Free 4K HDR broadcasts are out there... you just can’t find them.
T-Mobile dominates 2.5 GHz spectrum auction to fill in network gaps acrossOct 14, 2022
T-Mobile spends $304 million to win over 90% of available 2.5 GHz licenses.
TV FoolSep 29, 2022
Locate TV transmitters, choose antennas, look at coverage maps, and optimize your HDTV setup. Learn about digital TV and how to incorporate it into your home theater system. Rediscover over the air (OTA) TV. Looking for something more accurate than antennaweb?
What Is The AV1 Codec, Which Graphics Cards Support It And Why It MattersSep 24, 2022
There are bold claims of how AV1 will revolutionize streaming video, game streaming and the Internet at large—but what is AV1 and why is it so important?
Auction 108: 2.5 GHz Band | Federal Communications CommissionSep 17, 2022
The page you requested might have been removed, renamed or is temporarily unavailable.
Video Streaming Protocols: What Are They & How to Choose The Best OneSep 15, 2022
Understanding legacy and modern streaming protocols will enable you to make an informed choice for...
Open Broadcaster Software®️ | OBSJun 24, 2022
OBS (Open Broadcaster Software) is free and open source software for video recording and live streaming. Stream to Twitch, YouTube and many other providers or record your own videos with high quality H264 / AAC encoding.
The Remaking of Comedy CentralJul 3, 2021
Behind Chris McCarthy’s plan to transform the ViacomCBS network from a linear cable channel to a multi-platform content machine.
browsers
Getting Started With The Popover APIMar 2, 2026
What happens if you rebuild a single tooltip using the browser’s native model without the aid of a library? The Popover API turns tooltips from something you simulate into something the browser actually understands. Opening and closing, keyboard interaction, Escape handling, and much of the accessibility now come from the platform itself, not from ad-hoc JavaScript.
Google Brings Quantum-Hardened HTTPS To Chrome In Major Security UpgradeFeb 28, 2026
The changes are aimed at improving the resilience of web security against quantum attacks without burdening performance.
How I block all online adsDec 8, 2025
A couple of years ago, I decided I'd had enough of ads. Not just the occasional banner or a quick pre-roll video — I mean all of them. They have to go.
The DoorDash problem and the great AI browser fightNov 22, 2025
Amazon sued Perplexity this month over its Comet browser, which uses AI agents to do online shopping on your behalf. This is the first major front in the war over who gets to browse the web.
Masonry: Watching a CSS Feature Evolve | CSS-TricksOct 19, 2025
Looking at the CSS Masonry discussions and what they can teach us about the development of new CSS features. What is the CSSWG’s role? What influence do browsers have? What can learn from the way past features evolved?
WTF is headless browsing, and how are AI agents fueling it?Sep 17, 2025
AI agents are putting headless browsing back in the spotlight. That raises questions for publishers: How much traffic is real vs. automated?
A Few Things About the Anchor Element’s href You Might Not Have KnownAug 15, 2025
Writing about the big beautiful mess that is making things for the world wide web.
How One 1990s Browser Decision Created Big Tech’s Data Monopolies (And How We Might Finally Fix It)Jul 17, 2025
There’s a fundamental architectural flaw in how the internet works that most people have never heard of, but it explains nearly every frustration you have with modern technology. Why your pho…
Meet Comet: Perplexity's Ambitious New AI-powered Browser - DataconomyJul 10, 2025
Perplexity launched Comet, its first AI-powered web browser, on Wednesday, aiming to challenge Google Search's dominance in online information retrieval.
Arc creator Josh Miller on why you need a better browser than ChromeSep 24, 2024
The creator of Arc on browser competition, the future of the web, and where AI search fits in.
Top 10 browser automation tools to try in 2023—Free and paidJun 11, 2024
These top browser automation tools can automate your repetitive & tedious tasks on the web, including form filling, data scraping, website testing & more. Try them out in 2023 to skyrocket your productivity.
Arc is a browser…Mar 28, 2024
Experience a calmer, more personal internet in this browser designed for you. Let go of the clicks, the clutter, the distractions.
Privacy Tactics Complicate Ecommerce MarketingFeb 3, 2024
Eliminating URL tracking parameters forces marketers to find other attribution methods.
The Best Reason to Use Firefox Is Sync That Actually WorksDec 28, 2023
Firefox's continuity features work better than any browser I've tried.
High Performance Browser Networking (O'Reilly)Jul 24, 2023
What every web developer must know about mobile networks, protocols, and APIs provided by browser to deliver the best user experience.
Chapter 16: Reusing Previous ComputationsJul 23, 2023
Chapter 16, Reusing Previous Computations, is now finished!
The Power of Browser Fingerprinting: Personalized UX, Fraud Detection, andJun 24, 2023
Discover the power of browser fingerprinting: personalize user experience, enhance fraud detection, and optimize login security.
Free the internet from mass surveillance. With the Mullvad Browser.Apr 5, 2023
The Mullvad Browser is a privacy-focused web browser developed in collaboration between Mullvad VPN and the Tor Project. It’s produced to minimize tracking and fingerprinting. You could say it’s a Tor Browser to use without the Tor Network.
Chrome 112 Released With WASM Garbage Collection Trial, CSS NestingApr 5, 2023
Google today promoted the Chrome 112 web browser to their stable channel on all supported platforms. Phoronix reports: Starting as an origin trial with Chrome 112 is WebAssembly (WASM) Garbage Collection support. Yes, garbage collection to allow for efficient support for high-level managed language...
9 Useful Chrome Extensions for Web Developers / Web DevelopmentFeb 22, 2023
Hi there! Today I'm going to share with you 9 useful Google Chrome extensions that I use in my daily...
Articles — Smashing MagazineFeb 22, 2023
Smashing Magazine — front-end, UX and design for front-end engineers and designers
What Is a Headless Browser and Where Is It Used?Feb 19, 2023
Headless browsers are mostly used for page testing, automation, and data extraction. Find out what the most popular headless browsers are and their features.
New headless Chrome has been released and has a near-perfect browser fingerprintFeb 19, 2023
This post presents the new headless Chrome version and shows the main browser fingerprint differences that exist compare to the old headless Chrome.
Usage · ArchiveBox/ArchiveBox Wiki · GitHubJun 23, 2022
🗃 Open source self-hosted web archiving. Takes URLs/browser history/bookmarks/Pocket/Pinboard/etc., saves HTML, JS, PDFs, media, and more... - ArchiveBox/ArchiveBox
Privacy-focused Brave Search grew by 5,000% in a yearJun 22, 2022
Brave Search, the browser developer's privacy-centric Internet search engine, is celebrating its first anniversary after surpassing 2.5 billion queries and seeing almost 5,000% growth in a year.
This browser you've never heard of is now worth a billion dollarsMar 27, 2022
Island is among the fastest companies to reach unicorn status
CSS Object Model (CSSOM) - Web APIs | MDNJan 4, 2022
The CSS Object Model is a set of APIs allowing the manipulation of CSS from JavaScript. It is much like the DOM, but for the CSS rather than the HTML. It allows users to read and modify CSS style dynamically.
Chrome DevTools | Chrome for DevelopersDec 26, 2021
Debug and optimize your web applications with Chrome DevTools.
Responsive images - Learn web development | MDNDec 26, 2021
That's a wrap for responsive images — we hope you enjoyed playing with these new techniques. As a recap, there are two distinct problems we've been discussing here:
Drawing to the Screen | Web Browser EngineeringDec 23, 2021
DOM Enlightenment - Exploring the relationship between JavaScript and the modern HTML DOMDec 17, 2021
Exploring the relationship between JavaScript and the modern HTML DOM
The Web Platform: Browser technologiesDec 17, 2021
Get Firefox browser — Mozilla (US)Dec 14, 2021
Choose from Desktop, iOS, Android, or let us email you a mobile download link.
Web Browser EngineeringOct 21, 2021
The most underused browser feature | Frank's blogAug 28, 2021
A great feature that is available in almost every browser allows you to reject the cookie consent popup.
Firefox 87 trims HTTP Referrers by default to protect user privacy – Mozilla Security BlogMar 23, 2021
We are pleased to announce that Firefox 87 will introduce a stricter, more privacy-preserving default Referrer Policy. From now on, by default, Firefox will trim path and query string ...
NyxtMar 22, 2021
Building an Advanced Fingerprinting Detector AIJan 30, 2021
Here is how you can build an advanced AI fingerprinter detector by refining it to take the dynamic behavior of JavaScript files into account.
Fingerprinting - MozillaWikiDec 18, 2020
2020 Chrome Extension Performance Report | DebugBearJun 16, 2020
A look at how Chrome extensions affect CPU usage, page rendering, and browser memory consumption.
Google’s new treatment of nofollow linksFeb 28, 2020
Here’s what you need to be aware of as Google begins viewing nofollow links as a hint for crawling and indexing.
Getting Started Tutorial - Google ChromeJan 23, 2019
All the basics to get started with Chrome extensions
The Power of Web Components - Mozilla Hacks - the Web developer blogNov 17, 2018
Web Components comprises a set of standards that enable user-defined HTML elements. These elements can go in all the same places as traditional HTML. Despite the long standardization process, the ...
How to stop using console.log() and start using your browser’s debuggerOct 25, 2018
Debug More Efficiently
Top 10 Web Hacking Techniques of 2017 | BlogOct 12, 2018
The verdict is in! Following 37 nominations whittled down to a shortlist of 15 by a community vote, our panel of experts has conferred and selected the top 10 web hacking techniques of 2017 (and 2016)
Browser Extensions I Actually Use - The Media Temple BlogMay 27, 2018
I'm a web developer and blogger. These are the browser extensions that I actually use right now.
Fade to Grey: Will Headless Browsers Kill Web Design?Mar 12, 2018
Is the browser as we know it today a phase-out model? Can we use the web without it? The answer to the second question is a clear yes. Will headles...
buildings
Stop incentivizing surface parking lotsFeb 4, 2026
They are draining the economic potential of our cities. We need to make them financially unsustainable.
GlobalBuildingAtlas LoD1Dec 12, 2025
Concrete’s Greatest WeaknessNov 4, 2025
The challenge of cure time🌌Get Nebula using my link for 40% off an annual subscription: https://go.nebula.tv/Practical-Engineering🏙️Watch 17 Pages: https:/...
Features - How to Build a Medieval Castle - Archaeology Magazine - September/October 2025Aug 19, 2025
Why are archaeologists constructing a thirteenth-century fortress in the forests of France?
From rebuild to replica, architecture has a double life | Aeon EssaysJul 12, 2025
Architectural copies of lost structures require reckoning with history and heritage. At what cost is the past rebuilt?
Brian Potter on what he has learned writing Construction Phyics - Marginal REVOLUTIONApr 19, 2025
Individual construction tasks have, on average, not gotten cheaper since at least the 1950s. Bricks haven’t gotten cheaper since the mid-19th century, despite massive improvements in brickmaking technology. Construction has a reputation for being slow to innovate, but innovations seem to spread in construction at roughly similar rates to other industries, like car manufacturing or agriculture. Single family […]
The beauty of concreteMay 20, 2024
Why are buildings today simple and austere, while buildings of the past were ornate and elaborately ornamented? The answer is not the cost of labor.
Exit Strategy: The Case for Single-Stair EgressMay 17, 2024
Forum: Reforming U.S. building codes to permit single-stair apartment buildings would facilitate cost-effective and higher-density housing.
Wall cladding made from corn cob waste brings sustainable construction mateFeb 29, 2024
Construction is something that we probably cannot do without as we continue to build houses, buildings, and other structures. The quest for coming up with sustainable construction is ongoing as we look for materials that are eco-friendly and the process in creating them to be as sustainable as possible. There are a lot of waste
How building codes work in the US - by Brian PotterJul 30, 2022
Buildings must be built to the requirements of the building code, a set of laws that governs how a building must be built.
Where Are The Robotic Bricklayers? - by Brian Potter - Construction PhysicsAug 4, 2021
When researching construction, you invariably discover that any new or innovative idea has actually been tried over and over again, often stretching back decades.
bundler
Bundler 2.6: Enhanced Security with Built-in Checksum VerificationJan 5, 2025
Protect your Ruby projects from supply chain attacks with Bundler 2.6's new checksum verification. Learn how to implement this crucial security feature today.
Understanding How Rbenv, RubyGems And Bundler Work TogetherJul 7, 2021
Rbenv, RubyGems, and Bundler work together to give us a lot of control over our code's environment. If you know how they work, you'll be better prepared to troubleshoot any problems you encounter. In this article, Ol...
Webpacker in Rails 6Jul 7, 2021
Webpacker is the default JavaScript compiler for Rails 6 applications. Which means that all the...
Kointoto: Situs Judi Togel Online & Slot Gacor MaxwinMar 3, 2021
Kointoto situs judi togel online, slot gacor, dan live casino idnlive terbaik di Indonesia. 1 ID untuk semua permainan dengan deposit minimal Rp 10rb.
jekyll 3.8.3 | Error: uninitialized constant FFI::Platform::CPU · Issue #77Nov 22, 2020
My Environment Software Version(s) Operating System Ubuntu 19.10 jekyll Latest github-pages No Current Behavior I was trying to run sudo apt install jekyll jekyll new my-awesome-site cd my-awesome-...
bundling
Cable nostalgia persists as streaming gets more expensive, fragmentedOct 1, 2025
Cord reviving isn’t common but points to discontent with today’s streaming options.
The SaaS Opportunity Of Unbundling ExcelOct 16, 2023
The unbundling of Excel is just as important as the unbundling of Craigslist. Here's what you need to know about the Excel Economy and how SaaS companies can take advantage of different verticals and use cases that Excel has dominated.
Introducing Turbopack: Rust-based successor to Webpack – VercelOct 26, 2022
Introducing Turbopack, the Rust-based successor to Webpack.
Price Bundling in CouponingJun 25, 2022
Take a look at these two coupons Target stores printed out at checkout at the same time. What is your take on the reasoning behind this? If you have the read the famous Target Big Data story about …
Netflix and the Economics of BundlingAug 30, 2019
How does Netflix get away with releasing its movies in theaters on the same day it makes them available for “free” on its streaming platform? The answer is that Netflix is pursuing a fundamentally different business model from everyone else in the industry. Netflix is not in the business of selling individual movies to many different customers. Instead, it’s in the business of selling many different movies to individual customers—in bundles. Bundled subscriptions allow Netflix to practice a different kind of price discrimination from the movie studios. The company doesn’t have to figure out how much a consumer values any individual movie on the service. The bundle does that for them—very profitably.
burnout
“How people fall apart”: Yale faculty discuss the impact of burnout on theJun 11, 2024
Understanding the neuroscience behind burnout could help people accept their resulting behavior and thought patterns as natural responses of the brain.
Scientists Developed A Tool To Reveal Who's at Risk of Burnout, And It's FrFeb 22, 2024
Try it out yourself.
3 Types of Burnout, and How to Overcome ThemAug 27, 2022
Research shows that people don’t burn out in the exact same way or for the exact same reasons. Because of this, it’s important to identify the type of burnout that you may be facing. You may even be dealing with a mix of one or two of these types at the same time. In this article, the author describes three types of burnout — overload, under-challenged, and neglect — and provides readers with signs to watch out for, and tips on how to overcome each type.
bystander-effect
Scientists Discover People Act More Altruistic When Batman Is Present - SlashdotNov 30, 2025
Psychology Today reports:
In a study conducted in Milan, Italy, and published in November 2025, the sight of a person dressed as Batman led to a nearly doubled rate of people giving up their seat to a pregnant woman. Over the course of 138 subway rides, researchers found that people who saw "Batm...
The Volunteer’s Dilemma - by Steven Pinker - Behavioral ScientistSep 28, 2025
Learning about something in public, even if everyone already knows it, can change everything—especially when and how we decide to help.
Ps19Jul 30, 2025
How to Encourage Employees to Speak Up When They See WrongdoingJul 23, 2025
Traditional compliance tools aren’t enough. Behavioral science can help.
The Bystander Effect: Why Do People Fail to Help? | TheCollectorJul 23, 2025
The bystander effect is a psychosocial theory that explores how the presence of bystanders mitigates our willingness to help.
What Psychology Says About Why Bystanders Sometimes Fail to HelpJan 30, 2021
The bystander effect refers to a phenomenon in which the greater the number of people there are present, the less likely people are to help a person in distress. Learn why it happens.
cables
Say Goodbye to the Undersea Cable That Made the Global Internet PossibleFeb 25, 2026
History was unmade last year, as engineers began the massive project of ripping the first-ever transoceanic fiber-optic cable from the ocean floor. Just don’t mention sharks.
When Africa’s internet breaks, this ship answers the callSep 21, 2025
Undersea internet cables are critical in today’s hyperconnected world. The crew of the Léon Thévenin maintains one stretch of this global network.
These ‘glass straw’ optical fibres could speed up the InternetSep 2, 2025
A cable design that sends light through air, rather than solid glass, could cut signal loss and make long-distance transmissions cheaper.
Protecting Undersea Internet Cables Is a Tech NightmareDec 5, 2024
A recent, alleged Baltic Sea sabotage highlights the system’s fragility
Undersea SurgeonsDec 5, 2024
The cables at the heart of the lightspeed, globe-spanning internet run across the grimy, perilous, inaccessible deeps of the sea, in places no one ever sees or visits – until the cables break.
This is what the damaged Svalbard cable looked like when it came up from thMay 28, 2024
Exclusive photos show the damage in detail. They may explain what happened, but the question of guilt remains.
Submarine Cable MapApr 19, 2024
TeleGeography's comprehensive and regularly updated interactive map of the world's major submarine cable systems and landing stations.
caching
Caches: LRU v. randomAug 2, 2025
📝 Guest Post: Caching LLM Queries for Improved Performance and Cost Savings*Apr 12, 2023
If you're looking for a way to improve the performance of your large language model (LLM) application while reducing costs, consider utilizing a semantic cache to store LLM responses.
Web Caching Explained by Buying Milk at the SupermarketJul 1, 2018
This visual explanation will help you understand all the common ways to implement caching
cameras
CMOS Image Sensor: Ultimate GuideMay 22, 2024
Imagine a world where every moment is captured with immaculate clarity, from the delicate hues of a sunset to the swift action of a sporting event. The heart of this imagery revolution lies in the CMOS image sensor (CIS), a masterpiece of technology little known outside expert circles. Its evolution has been pivotal in the
Intriguing Vintage Spy Cameras: Covert Wonders of Espionage’s Golden AgeApr 14, 2024
Explore the fascinating world of vintage spy cameras from the Golden Age of Espionage. Discover covert wonders in this intriguing collection.
This holographic camera turns any window into an invisible cameraJan 7, 2024
Zeiss' "Holocam" is a transparent camera powered by holography that turns glass windows into cameras
What is an Image Processor? Turns Out the Answer is HazyJul 24, 2023
Real-time image processing is a resource-intensive task that often requires specialized hardware. With that in mind, let's explore processors that are designed specifically for photo and video applications.
Lenses Are Being Reinvented, and Cameras Will Never Be the Same | MIT TechnApr 9, 2023
“Metalenses” created with photolithography could change the nature of imaging and optical processing.
A Comprehensive Tutorial on Stereo Geometry and Stereo Rectification with PSep 16, 2022
Everything you need to know about Stereo Geometry
TIL: You Can Access A User's Camera with Just HTMLSep 8, 2022
The HTML capture attribute is interesting because it allows you to activate a user's camera with just HTML. This article covers it in more depth.
Camera sensor size: Why does it matter and exactly how big are they?Dec 7, 2021
The megapixel myth has treated camera manufacturers well over the years, those ever increasing, and often meaningless, numbers have sold millions of cameras. But consumers are getting wise to it. We've all seen dodgy images from high megapixel cameras and know that after a point, megapixels don't matter for most people – a 16 MP compact isn't ever going to be as good as a 12 MP Full Frame DSLR. What does matter is sensor size!
Frequencies%20 presentationDec 6, 2021
Image sensors make a good smartphone camera [infographic] - IntoMobileDec 1, 2021
Today, smartphones have made it easier than ever to capture beautiful images and videos. But what makes a good smartphone camera? It’s actually the image sensor. This piece of technology may be small, but it has a big impact on whatever your Instagram selfie is blurry or your Vine video is pixelated. You can see… Read more
camping
The Backcountry Rescue Squad at America’s Busiest National ParkJan 15, 2026
In the Great Smoky Mountains, an auxiliary team of élite outdoorsmen answers the call when park-goers’ hikes, climbs, and rafting adventures go wrong, Paige Williams writes.
Winter Camping in Quartzsite: Where Nomads Eat, Gather, and Belong - VanlifersDec 31, 2025
A firsthand look at winter camping in Quartzsite, Arizona—where nomads find affordable meals, unexpected community, and a place to belong.
A Decade of Camping Led to This 747-Square-Foot Cozy River RetreatDec 14, 2025
Dan Wheeler spent ten years sleeping in tents on his riverfront property before building anything permanent. The software engineer bought the land along Washington's Wenatchee River in 2010, drawn by years of rafting trips with friends through the area's rushing waters. Every camping trip reinforced what he already knew: this spot needed something, but only
The Outpost - New River GorgeOct 27, 2025
Newly renovated campground situated less than a ¾ of a mile hike from the New River Gorge Bridge. The Outpost offers a variety of lodging options from newly renovated rustic cabins, recently paved RV camper hookup sites, updated tent platforms, field camping spaces and a Grateful Dead-themed camper. Amenities include; climate-controlled bathhouse, laundry facility, community fire pit and an temperature controlled lodge. We're also an outdoor music venue hosting live music events.
Heavy-Duty Pickups Used to Tow 14,000 Pounds. Why Do They Need to Pull 35,000 Pounds Now?Jul 31, 2025
New dually pickups are lightyears ahead of what they once were. But what's changed more: the tech or the people buying them?
North Bend CampingAug 1, 2024
Found among the Mid-Ohio Valley’s rolling hills, lakes and streams, North Bend State Park offers a multitude of recreational facilities in a beautiful
What Does The Average RV Campsite Cost In 2022?Nov 23, 2021
Is camping really an affordable activity? We break down the average RV campsite cost at luxury, mid-range, budget, and franchise RV parks.
Off-road, off-grid: the modern nomads wandering America's back countryFeb 6, 2021
Across US public lands thousands of people are taking to van life, as featured in the Oscar-winning film Nomadland
This trailer comes equipped with a 360-degrees rotating hitch to keep you oJan 31, 2021
https://www.youtube.com/watch?v=_tBh5aFzASo&ab_channel=TAXAOutdoors During the pandemic, there has been a considerable demand for safe options to get into the outdoors while maintaining the social distancing norms. When hotels remained closed, and the conventional form of tourism was brought to a standstill, there was a considerable rise in the demand for RV, campers, and travel trailers. This demand
Shrine Pass Road Dispersed Camping Reviews updated 2024Sep 17, 2020
Shrine Pass Road Dispersed Camping in White River National Forest, Red Cliff Colorado. See 16 traveler reviews, 14 photos and blog posts
Dana Peak Campground Reviews updated 2024Sep 17, 2020
Dana Peak Campground, Harker Heights Texas. See 10 traveler reviews, 15 photos and blog posts
Camp your way | Discover the best camping near youSep 3, 2018
From seaside campsites to luxury treehouses, we're the most comprehensive guide to camping and glamping across the UK. Camp on farms, beaches and country estates.
cards
Card Sorting: Pushing Users Beyond Terminology MatchesJun 16, 2024
Labels in a card sorting study must be neutral to prevent keyword matching and encourage careful, conceptual groupings from users.
There are more ways to arrange a deck of cards than there are atomsFeb 2, 2023
Think of your last card game – euchre, poker, Go Fish, whatever it was. Would you believe every time you gave the whole deck a proper shuffle, you were holding a sequence of cards which had never
5 CSS Card Design Ideas!Nov 30, 2022
Disclaimer: There is a video version of this tutorial, watch it here Here are 5 card designs, with...
Pokemon Cards Holo effect v2Oct 27, 2022
The Playful Power of Card Design UIOct 20, 2022
Learn the pros/cons and best practices for card design UI, a popular interface design elements. Plenty of examples included, so dive in!
Details on - Google SlidesMay 1, 2021
Using for Menus and Dialogs is an Interesting Idea | CSS-TricksMay 1, 2021
Using for a menu may be an interesting idea, but perhaps not something to actually ship in production. See "More Details on "
career-jobs-work
Canva skills are what people hiring graphic designers increasingly want to seeJul 26, 2025
Canva, once maligned by the design industry, is becoming a standard. Mentions of it in graphic design job listings are way up this year.
I've helped hundreds of people land 6-figure salaries. These 5 job intervieMar 20, 2023
To nail a job interview, you have to speak in a way that will get the interviewer to pay attention, says career coach Natalie Fisher. Here are the phrases she suggests to share concrete examples of your skills and accomplishments.
"If you're so good, why aren't you making 600k at BigTech?" | Swizec TellerMar 11, 2023
Swiz shares why he's not making the big bucks at a tech giant, from the soul-crushing grind of corporate to the funny money of tech compensation.
Archive - chiefofstuffDec 10, 2022
Most career advice on the internet is from people who had some sort of meteoric success.
The rise of ‘bai lan’: why China’s frustrated youth are ready to ‘let it rot’May 29, 2022
Phrase bai lan gains popularity as severe competition and social expectations leave many young people despondent
How to Hire a Product ManagerMay 28, 2022
What makes a great product manager and how do you become one?
GoRails Job BoardMar 23, 2022
Looking for a Ruby on Rails job or hiring Rails developers? We can help you!
proteanTecs - Crunchbase Company Profile & FundingFeb 1, 2022
proteanTecs provides deep data analytics on a cloud-based platform to monitor the health and performance of advanced electronics.
Hiring for Conscientiousness — HollowayJan 31, 2022
Why startups should hire conscientious people—and how to find them
5 Questions Every Manager Needs to Ask Their Direct ReportsJan 25, 2022
If you’re worried that your employees are eyeing the door, it’s time to start having some important career-defining conversations. In this piece, executive coach Susan Peppercorn outlines five questions to start asking your direct reports so that you can get a better sense of how they’re feeling about their positions: 1) How would you like to grow within this organization? 2) Do you feel a sense of purpose in your job? 3) What do you need from me to do your best work? 4) What are we currently not doing as a company that you feel we should do? 5) Do you have the opportunity to do what you do best every day? When managers make checking in with these five questions a regular part of how they interact with their employees, it helps ensure that people feel seen and valued. And when managers help individuals on their teams feel that way, they’re more likely to be rewarded by employees who become advocates for the department and organization, no matter how long they stay.
I took a job at Amazon, only to leave after 10 months.Jan 6, 2022
Reflections on working at Amazon, the interview process, the organizational structure, and why it was not an ideal fit for me (but might be for you).
Why the 'stay interview' is the next big trend of the Great ResignationDec 8, 2021
Get clear about what will help your best employees stay, and what could make them quit.
10 Impressive Questions to Ask in an Interview 2018Aug 30, 2019
To show employers you’re exceptional and to find out if it’s the right job for you.
A Secret to Success: The Failure RésuméAug 30, 2019
Failure isn’t a roadblock. It’s part of the process.
Your Professional Decline Is Coming (Much) Sooner Than You ThinkJun 22, 2019
Here’s how to make the most of it.
Show Your Skills With A Bootable CVMar 28, 2019
It’s a thankless task, searching for a job. You send off your CV, or resume, and it joins a thousand other destined for the round file. What on earth can you do to make your career stand out,…
Why I Encourage My Best Employees to Consider Outside Job OffersSep 11, 2018
Most bosses live in fear that their best employees will leave, so it might seem to be a bad idea to encourage your stars to consider outside offers. But in fact, it sends employees a clear signal that you really care about their learning and development. Openness allows for an honest conversation between you and each employee about their future career path. If they do decide to leave, they’ll be more likely to recommend you as a great boss, and also more likely to return at some future point.
cartoons
We need to talk about naked mole rats - The OatmealMar 2, 2026
This is a comic about naked mole rats, aka tube goblins.
The Skeleton Dance, Voted the 18th Best Cartoon of All Time, Is Now in the Public Domain (1929)Jan 6, 2025
The final lines of this strong recommendation add that 'all takes place in a graveyard.
Midjourney now has the feature that everyone wantsMar 15, 2024
Keeping characters looking the same across different scenes and styles has always been tricky. But now, with the new Midjourney
My favorite Michigan J. Frog sceneOct 4, 2022
I've found the more "magical" side of life to be exactly like this cartoon. You can't show anyone something they don't already believe in. "To he who know's, no explanation is necessary. To he who knows not, none is possible."
System status : Stanford LibrariesNov 3, 2020
Looney Tunes T-Shirts - 80sTeesJul 23, 2020
What's up, Doc? Find Looney Tunes shirts and more classic cartoon gear in-stock. Get Your 80sTees On Now. Retro clothing and fan gear store.
90 Classic Looney Tunes Cartoons You Can Watch Right NowApr 18, 2020
As the Warner Bros. animated franchise celebrates its 90th anniversary, we look back at its rich history.
How Bullwinkle Taught Kids Sophisticated Political SatireFeb 9, 2020
Culture critic Beth Daniels argues the cartoon moose even allowed viewers to reckon with nuclear war
The Young Man and the Sea SpongeAug 13, 2019
SpongeBob SquarePants turned 20 this summer. This is the story of how a marine biology teacher named Stephen Hillenburg gave life to an animated character who continues to delight fans worldwide.
catalogs
The 15 Best Product Catalog Templates for InDesign in 2025Jul 23, 2025
A curated collection of InDesign templates to help you create clean, professional, and structured layouts for product catalogs. Includes both free and premium templates.
Taxonomy as a serviceDec 26, 2024
When the truck makes a delivery at the nearby True Value hardware store, Danny needs to figure out which shelf to put it on. Should the extension cords go next to the hoses? After all, they both do…
How Paper Catalogs Remain Relevant in a Digital AgeJul 19, 2022
Whether or not you should pursue a catalog strategy is a question that deserves significant thought. As digital marketing becomes more complex, it may make a lot of sense to send out correctly designed catalogs to the right customers. For e-commerce retailers without physical stores, catalogs can effectively mimic stores’ sensory experiences to enhance customer affinity. For multichannel retailers, by understanding the channel preferences of current customers through transactional data, multichannel retailers can add an effective catalog marketing channel to their store and e-commerce channel strategies.
Catalogs & WishbooksJul 7, 2022
336 Vintage Christmas Catalogs & Holiday Wish Books with 302,605 total catalog pages from Sears, Montgomery Ward and JCPenney over the years.
1980 Sears Spring Summer Catalog, Page 729 - Catalogs & WishbooksJul 4, 2022
1980 Sears Spring Summer Catalog, Page 729
The Ultimate Guide for Flyer Size and DesignMay 17, 2021
Although it may sound obsolete, a flyer is still one of the most effective and inexpensive ways to promote a business. They are also very easy to
category-theory
Mircus/HyperCat: a python library for cats and hypercatsAug 18, 2025
a python library for cats and hypercats
Category Theory Illustrated - LogicApr 11, 2025
Where Does Meaning Live in a Sentence? Math Might Tell Us. | Quanta MagazineApr 9, 2025
The mathematician Tai-Danae Bradley is using category theory to try to understand both human and AI-generated language.
Encoding Categorical Variables: A Deep Dive into Target EncodingFeb 29, 2024
Data comes in different shapes and forms. One of those shapes and forms is known as categorical data.
Category theoryFeb 29, 2024
Category theory is a general theory of mathematical structures and their relations. It was introduced by Samuel Eilenberg and Saunders Mac Lane in the middle of the 20th century in their foundational work on algebraic topology. Category theory is used in almost all areas of mathematics. In particular, many constructions of new mathematical objects from previous ones that appear similarly in several contexts are conveniently expressed and unified in terms of categories. Examples include quotient spaces, direct products, completion, and duality.
Category Theory Illustrated - AboutMar 19, 2023
Category Theory for Programmers: The Preface | Bartosz Milewski's ProgramNov 30, 2022
Table of Contents Part One Category: The Essence of Composition Types and Functions Categories Great and Small Kleisli Categories Products and Coproducts Simple Algebraic Data Types Functors Functo…
When One Category Works Against Most Of Your CategoriesJun 25, 2022
Database Marketing, Data Mining, Analytics, Big Data, Forecasting, Segmentation, Predictive Modeling, Measurement, Catalog, Business
Category Theory Reading ListsDec 30, 2021
Category theory: online lecture notes and downloadable books
No New Categories | Greg KoganMar 8, 2021
In college, I took a self-defense class, taught by Sensei Flagg. The next semester, I took a kickboxing class, taught by Sensei Flagg. The next and final semester, I took an Isshin-Ryū Karate class, taught by Sensei Flagg. It was the exact same class each time. The administrators just couldn’
What Is Applied Category Theory? (2018)Feb 3, 2021
This is a collection of introductory, expository notes on applied category theory, inspired by the 2018 Applied Category Theory Workshop, and in these notes we take a leisurely stroll through two...
What is Category Theory Anyway?Feb 3, 2021
A quick browse through my Twitter or Instagram accounts, and you might guess that I've had category theory on my mind. You'd be right, too! So I have a few category-theory themed posts lined up for this semester, and to start off, I'd like to (attempt to) answer the question, What is category theory, anyway? for anyone who may not be familiar with the subject.
5 Categorical Encoding Tricks you need to know today as a data scientistNov 19, 2020
A Complete Pythonic Encoding Tutorial
Cataloging Tools for Data TeamsNov 3, 2020
An introduction to Data Cataloging and major tools that data teams can use for data discovery
Leveraging Value from Postal Codes, NAICS Codes, Area Codes and Other FunkyNov 3, 2020
A value is worthless unless it tells you something.
Categorical Feature Encoding in PythonMay 19, 2020
Methods to encode categorical variables using Python
Computational Category Theory in Python III: Monoids, Groups, and PreordersMay 15, 2020
Parts 1 and 2 are found here and here
Applied Category Theory | Mathematics | MIT OpenCourseWareApr 20, 2019
Category theory is a relatively new branch of mathematics that has transformed much of pure math research. The technical advance is that category theory provides a framework in which to organize formal systems and by which to translate between them, allowing one to transfer knowledge from one field to another. But this same organizational framework also has many compelling examples outside of pure math. In this course, we will give seven sketches on real-world applications of category theory.
cdns
how AWS S3 serves 1 petabyte per second on top of slow HDDsSep 24, 2025
Learn how Amazon built the backbone of the modern web that scales to 1 PB/s and 150M QPS on commodity hard drives
Content Delivery Network (CDN): Explained in simple wordsFeb 8, 2023
What is a CDN ? How do CDNs work ?
10 Cloudflare Alternatives to Boost Your Website Performance and SecurityJun 7, 2022
Cloudflare is not the only service that helps you boost your website's speed and secure it. Here are some alternatives.
The 5-hour CDN · FlyAug 6, 2021
You can build a functional CDN on an 8-year-old laptop while you're sitting at a coffee shop. Here's what a CDN you put together in five hours might look like.
Paweł U. | Ruby on Rails Web Development Consultant Full Stack BlogFeb 11, 2021
Performance Action Pack consists of tools and techniques to efficiently audit and optimize your Ruby on Rails application.
cellular
Motorola confirms GrapheneOS support for a future phone, bringing over featuresMar 2, 2026
Motorola has announced a partnership with GrapheneOS which will see a phone with support, as well as features ported to other devices.
DON’T Throw Your Old Phone – Here Are 6 Ways You Can Still Use ItJul 29, 2024
Image Credits: MKBHD Ever had a spare phone lying around at home and wondered what the resale value on it was? Then you went and checked online and it was probably a measly few hundred dollars. Yeah, me too. The last phone I owned depreciated by a whopping $700 in two and a half years,
Is the mobile phone starting to die?Jul 2, 2024
The smartphone market can no longer grow and AI is promising to revolutionize our habits. Experts say that voice commands and virtual assistants will gain prominence over screens. For the moment, new devices such as glasses, buttons or watches will coexist with the cellphone
Answering Every Question You Have About IMEI NumbersMay 1, 2024
Where did the IMEI number come from, why is it so freaking long, and why does your phone need it? If you’ve ever wondered, we’ve got you covered.
How many Cell Sites and Base Stations Worldwide?Mar 13, 2023
I wrote a blog post on this topic nearly three years back on the Operator Watch Blog here . That post is very handy as every few months some...
cellular-automata
Simple but Stunning: Animated Cellular Automata in PythonMay 2, 2021
Automation epitomizes the last few decades of rapid technological development where many processes take place without human intervention. But what exactly does it mean? These are the two most common…
Self-Organising TexturesFeb 12, 2021
Neural Cellular Automata learn to generate textures, exhibiting surprising properties.
censorship
Whitewashing (censorship)Feb 6, 2024
Whitewashing is the act of minimizing or covering up vices, crimes or scandals, or of exonerating the guilty by means of a perfunctory investigation or biased presentation of data with the intention to improve someone's reputation.[1]
Why is China’s underground music scene so weird?Nov 23, 2022
A look at the history of how absurdity has been used to swerve censors in Soviet Russia and beyond. And asking why is China’s underground music scene so weird?
channels
Distribution | Andreessen HorowitzJul 19, 2022
“I’m into distribution, I’m like Atlantic I got them mutherfuckers flying’ cross the Atlantic” –Rick Ross, “Hustlin’“ When I ask new entrepreneurs what their distribution model will be, I often get answers like: “I don’t want to hire any of those Rolex-wearing, BMW-driving, overly aggressive enterprise sales slimeballs, so we are going to distribute our product like Dropbox did.” In...
Customer-Channel Fit: How to Identify the Right B2B SaaS Marketing ChannelsJun 14, 2022
A deep dive into our process for identifying the optimal B2B SaaS Marketing Channels for our clients, or Customer-Channel Fit.
character
25 Ways to Be a Class Act | The Art of ManlinessFeb 2, 2026
When I played football in high school, our head coach had one refrain that he’d hammer into us over and over again: act with class. It meant no trash talk. No showboating. Help the other guy up, even if he just tried to take your head off. Don’t scream at refs. Don’t throw your helmet. […]
101 Rules of Effective LivingMay 13, 2025
In more than thirty years as a writer, editor, and publisher, I have, to my best reckoning, introduced, abridged, issued or reissued, and read nearly every major work of inspirational literature produced or translated into English.
The 'shopping cart theory' supposedly tests if you are a good person or notApr 19, 2024
While the morality aspect is complicated, our shopping carts really do say something about who we are.
Hagakure: Book of the Samurai - hagakure.pdfSep 29, 2023
Hacker NewsApr 8, 2023
These methods have helped me enormously—and can save you much heartache and anxiety
The 25 Principles for Adult Behavior: John Perry Barlow (R.I.P.) Creates aJul 7, 2018
The most successful outlaws live by a code, and in many ways John Perry Barlow was an archetypal American outlaw all of his life.
charisma
How to Be More Charismatic, but Not Too Much MoreJul 17, 2025
It turns out that being charming has a happy mean.
12 tactic to become more leaderlike influential and charismaticApr 22, 2025
An in-depth breakdown of charismatic leadership tactics and how to tap into your own charisma when speaking in public.
How Powerful Is Political Charm?Sep 24, 2024
Kamala Harris has energized Democrats with her personality, but charm in politics may be more limited and volatile than we think.
The Secret History And Strange Future Of CharismaJul 24, 2023
How our culture, politics and technology became infused with a mysterious social phenomenon that everyone can feel but nobody can explain.
Carl Braun on Communicating Like a Grown-UpMar 30, 2023
Industrial genius Carl Braun believed that clear thinking and clear communication go hand in hand. Here the guide on writing productively to get things done.
8 Ways to be UBER Charismatic | HighExistenceJul 18, 2022
What did JFK, Marilyn Monroe and Hitler all have in common?They were all renowned charismatics that lit up every room they entered. You’ve most likely met one of these kinds before. The guy/girl at the party. They possess some strange quality that causes them to be liked
8 body-language tricks that are hard to master but will pay off foreverJul 18, 2022
Good body language is a crucial part of making an excellent first impression.
Who Wouldn’t Want to Be More Charismatic?Jul 18, 2022
The tricks to make yourself effortlessly charmingJul 18, 2022
From the first moment you walk into a room people are making judgements about how much they like you. Fortunately, there are ways to improve your chances
charity
How ‘Proportion Dominance’ Gets in the Way of Effective Giving - by Matthew Coleman - Behavioral ScientistSep 28, 2025
When it comes to helping others, it’s important to remember that it’s the size of the drop that matters, not the size of the bucket.
Your sense of right and wrong is interwoven with your personality | Psyche IdeasJan 7, 2022
Personality traits such as agreeableness and openness to experience can help explain differences in moral judgment
Give Your Money. Give Your Time. Don’t Tell Anyone.Jan 6, 2022
You can find deep, lasting happiness in a good deed that no one knows you did.
Sunday Firesides: Become an Evangelist . . . for Faith in HumanitySep 5, 2021
Maybe you’re the religious type. Maybe you’re not. Either way, you should consider accepting a special commission: becoming an evangelist . . . for faith in humanity. It is a faith preached not with words, but with deeds. Every time as a restaurant customer you don’t respond to a delay in getting your food by […]
chatbots
I sent ChatGPT Agent out to shop for meJul 19, 2025
We tested OpenAI’s ChatGPT Agent, currently only available via its $200-per-month Pro subscription.
The Great AI Chatbot Challenge: ChatGPT vs. Gemini vs. Copilot vs. PerplexiMay 28, 2024
We tested OpenAI’s ChatGPT against Microsoft’s Copilot and Google’s Gemini, along with Perplexity and Anthropic’s Claude. Here’s how they ranked.
Claude vs ChatGPT: A Comparison of AI ChatbotsApr 11, 2024
Claude and ChatGPT are two compelling options in AI chatbots, each with unique features and capabilities. To discern their strengths and suitability for various applications, let's compare these two AI chatbots comprehensively. What is Claude? Claude is an AI chatbot developed by an Anthropic AI renowned for its ability to simulate human-like conversations. Built on sophisticated NLP algorithms, Claude excels in engaging users in meaningful dialogues across a spectrum of topics. What sets Claude apart is its emphasis on understanding the user's persona and tailoring responses to match individual preferences and communication styles. This personalised touch enhances user experience, fostering
OpenAI's ChatGPT may have its first true rival in Anthropic's new chatbotMar 5, 2024
The Amazon-backed AI startup said its "most intelligent model" outperformed OpenAI's powerful GPT-4
Innovative three-year-olds expose the limits of AI chatbotsFeb 10, 2024
New experiments show that very young children are better at solving creative puzzles than ChatGPT and other AI models
ChatGPT, Bard, or Bing Chat? Differences Among 3 Generative-AI BotsOct 3, 2023
Participants rated Bing Chat as less helpful and trustworthy than ChatGPT or Bard. These results can be attributed to Bing’s richer yet imperfect UI and to its poorer information aggregation.
A Deep Dive Into LLaMA, Falcon, Llama 2 and Their Remarkable Fine-Tuned VerJul 28, 2023
Exploring the Development of the 3 Leading Open LLMs and Their Chatbot Derivatives
Inside the secret list of websites that make AI like ChatGPT sound smartApr 19, 2023
An analysis of a chatbot data set by The Washington Post reveals the proprietary, personal, and often offensive websites that go into an AI’s training data.
A New Chat Bot Is a ‘Code Red’ for Google’s Search Business (Published 2022)Dec 22, 2022
A new wave of chat bots like ChatGPT use artificial intelligence that could reinvent or even replace the traditional internet search engine.
Generating Children's Stories Using GPT-3 and DALL·EJul 5, 2022
We used GPT-3 and DALL·E to generate a children's storybook about Ash and Pikachu vs. Team Rocket. Read the story and marvel at the AI-generated visuals!
AI Virtual Assistant Technology Guide 2022Mar 21, 2022
They can help you get an appointment or order a pizza, find the best ticket deals and bring your...
RocketChat/Rocket.Chat: The communications platform that puts data protection first.Jan 16, 2022
The communications platform that puts data protection first. - RocketChat/Rocket.Chat
GPT-4 Will Have 100 Trillion Parameters — 500x the Size of GPT-3 | by AlberSep 11, 2021
Are there any limits to large neural networks?
Wu Dao 2.0: A Monster of 1.75 Trillion Parameters | by Alberto Romero | MedJun 7, 2021
BAAI conference presented Wu Dao 2.0. The most powerful AI to date.
Understanding Transformers, the machine learning model behind GPT-3May 22, 2021
How this novel neural network architecture changes the way we analyze complex data types, and powers revolutionary models like GPT-3 and BERT.
Language models like GPT-3 could herald a new type of search engineMay 18, 2021
The way we search online hasn’t changed in decades. A new idea from Google researchers could make it more like talking to a human expert
OpenAI’s text-generating system GPT-3 is now spewing out 4.5 billion wordsMar 30, 2021
Text-generation is the next big thing in AI.
GPT-3: We’re at the very beginning of a new app ecosystemFeb 27, 2021
The NLP application ecosystem is in its earliest stages, and it's not yet clear whether GPT-3 or a different model will be the foundation.
GPT-3, transformers and the wild world of NLPNov 3, 2020
A review of 20+ deep learning NLP models and how to use them well
AI devs created a lean, mean, GPT-3-beating machine that uses 99.9% fewer pNov 3, 2020
AI researchers from the Ludwig Maximilian University (LMU) of Munich have developed a bite-sized text generator capable of besting OpenAI’s state of the art GPT-3 using only a tiny fraction of its parameters. GPT-3 is a monster of an AI sys
cheating
The Chess Cheating EpidemicSep 22, 2025
The Chief Chess Officer of Chess.com describes the crisis he confronted when Norwegian chess grandmaster Magnus Carlsen lost a tournament match to a suspected cheater.
Why are some people compelled to cheat at games? - BBC FutureDec 28, 2021
When it comes to unfair tactics, some of us are just better at bending the rules. But, the urge to cheat at games is easier to understand when you examine how they are designed.
checklists
A value creation checklistJul 19, 2022
This project you’re working on, the new business or offering, what sort of value does it create? Who is it for? What mindset and worldview and situation?Is it paid for by organizations or individua…
The Tricks Used by Pilots, Surgeons & Engineers to Overcome Human ErrorJul 18, 2022
When Germanwings Flight 4U9525 crashed into the French Alps in March it did not take investigators long to determine the likely reason: Co-pilot Andreas Lubitz had allegedly been suffering from depression and may have crashed the plane as a means to commit suicide, taking hundreds of people along with him. But that doesn’t tell the […]
How Much Does It Cost To Make A Hit Song?Jul 6, 2022
We go step-by-step through the making of Rihanna's song "Man Down." Bringing in top songwriters and producers costs tens of thousands of dollars. Trying to turn the song into a hit costs much more.
Growth Hacking ChecklistJun 28, 2022
“My biggest surprise was when we launched the Facebook app and it didn’t go viral” -Startup CEO quote “The month after we ...
The Startup Marketing ChecklistJun 23, 2022
The Startup Marketing Checklist is a comprehensive, chronologically ordered list of marketing tactics and ideas that you can try with your early stage startup. The checklist is free and open to suggestions.
Adam Savage on Lists, More Lists, and the Power of Checkboxes | WIREDAug 4, 2021
The 'Mythbusters' star and author of the new book 'Every Tool's a Hammer,' explains the magic of the colored-in checkbox.
chemistry
Atomic-Scale Protein FiltersOct 15, 2025
How aquaporin and potassium channels filter hundreds of millions of water molecules or ions each second, by positioning the correct amino acid in the perfect place.
Miller–Urey experiment - WikipediaOct 13, 2025
What Exactly Is E-Ink—and How Does It Do Its Thing?Sep 30, 2025
You see it mentioned on almost every e-reader device—that is, tablet specialized for reading e-books—but what is it, really?
Review: The Molecule We Can’t Live With, and Can’t Live WithoutSep 26, 2025
Carbon dioxide is both a planetary threat and a driving force behind life on Earth, according to author Peter Brannen.
How Common Is Accidental Invention?Sep 25, 2025
One of the most important inventions of the 19th century was mauve dye, the first synthetic aniline dye.
Life’s Ancient BottleneckMay 31, 2025
Of the six chemical elements necessary for life, phosphorus is the rarest. It determines what grows and shrinks, who lives and dies. By disrupting the planet’s phosphate cycle, unchecked factory farming could have apocalyptic consequences.
The neglected ‘laws’ of chemistry – and why they matter | Aeon EssaysJan 24, 2025
Often dismissed as the poor cousin of the sciences, chemistry has revealed natural laws that illuminate our Universe
Why plastic doesn't dry in the dishwasherSep 4, 2022
Plastic is a staple of modern kitchens, but it comes with a frustrating problem – it doesn't dry properly in a dishwasher. Why?
chess
The Chess Cheating EpidemicSep 22, 2025
The Chief Chess Officer of Chess.com describes the crisis he confronted when Norwegian chess grandmaster Magnus Carlsen lost a tournament match to a suspected cheater.
How a 7th-Century War Game Transformed Into a Symbol of Intelligence | TheCollectorJul 21, 2025
Chess has evolved over centuries from an ancient Indian board game into a global competitive sport, reflecting cultural exchange over time and the rise of computing.
Checkmate with Scale: Google DeepMind’s Revolutionary Leap in Chess AIFeb 21, 2024
The intersection of artificial intelligence and the ancient game of chess has long captivated researchers, offering a fertile ground for testing the limits of computational strategy and intelligence. The journey from IBM's Deep Blue, which in 1997 famously defeated the reigning world champion, to today's highly sophisticated engines like Stockfish and AlphaZero underscores a continuous quest to refine and redefine machine intellect. These advancements have primarily been anchored in explicit search algorithms and intricate heuristics tailored to dissect and dominate the chessboard. In an era where AI's prowess is increasingly measured by its capacity to learn and adapt, a groundbreaking
Chess Tactics Explained in English: Ward Farnsworth's Predator at the ChessboardNov 30, 2020
Learn chess tactics taught in plain English; the most complete body of instruction on the subject yet written.
ChessRoots - Chess opening graph from over 800 million Chess gamesDec 5, 2019
Chess openings visualized from over 800 million Lichess games, 2 million tournament games and 1 million chess engine games.
A Free 700-Page Chess Manual Explains 1,000 Chess Tactics in Plain EnglishApr 17, 2017
In 2011, Ward Farnsworth published a two-volume collection called Predator At The Chessboard: A Field Guide To Chess Tactics (Volume 1 - Volume 2) where he explains countless chess tactics in plain English.
chills
ChillsDB: an open-source database of chills-inducing stimuliApr 18, 2024
ChillsDB is the first database of validated audiovisual stimuli eliciting aesthetic chills (goosebumps, psychogenic shivers) in the US population.
Could that tingle down the spine be a way to rediscover joy?Mar 29, 2024
In new research, scientists have looked into the potential benefits of giving people with depression the aesthetic chills
The 12 Best Horror Shows to Binge for HalloweenOct 28, 2022
Whether you seek spooky chills, jump scares, or creeping dread, we have horror show recommendations to sate your thirst.
Researchers analyzed 700-plus songs known to give people chills. Here’s theOct 24, 2021
Researchers studying chills-inducing music inadvertently created an epic, multi-genre list of songs that ought to give you goosebumps. We made a Spotify playlist from it.
china
Table for One: Why McDonald’s Solo Seats Are Viral in ChinaJan 16, 2026
The design taps into a growing demand for low-pressure public spaces, as digital life reshapes how people interact.
China’s unfair labor model is going globalNov 30, 2025
China's low rights model is no longer a domestic labor issue but a systemic challenge to global labor standards, supply chain governance and fair market competition.
China’s most infamous ghost town is now training ground for driverless trucksOct 5, 2025
Built for millions but left mostly empty, Ordos in Inner Mongolia is now a testbed where companies run fleets of robotrucks on its wide, quiet roads.
Why Frozen Food Gets an Icy Reception in ChinaSep 26, 2025
Chinese diets are dictated by a culture of eating ingredients just hours after slaughtering or harvesting.
Zombie fabs plague China's chipmaking ambitions, failures burning tens of billions of dollarsJul 10, 2025
28 fabs later
BYD Semiconductor Deep DiveApr 20, 2025
Unpacking the bear thesis on power semis and TSMC’s footnote in the story
How Chinese Characters Work: The Evolution of a Three-Millennia-Old Writing SystemApr 11, 2025
Contrary to somewhat popular belief, Chinese characters aren't just little pictures. In fact, most of them aren't pictures at all.
The Chinese Communist Party’s Ultimate TabooMar 27, 2025
Fang Fang’s newly translated novel uncovers the brutal, buried history of land reform in China.
How a Chinese battery factory sparked a political meltdown in a small Michigan townMar 11, 2025
Gotion wanted to expand its battery production in Michigan, but local backlash, political tensions, and fears over its Chinese ties have stalled its U.S. expansion plans.
China’s EVs Are Smart, Green, and Cheap — Until They Aren’tJan 16, 2025
For millions of Chinese EV owners, early promises of affordability, convenience, and cutting-edge tech are now tested by aging batteries, replacement costs, and warranties.
Will the China Cycle Come for Airbus and Boeing?Oct 23, 2024
Noah Smith, author of the economics Substack Noahpinion, often refers to a common trajectory in Chinese manufacturing as the “China Cycle”:
The U.S. has sanctioned 18 Chinese fabs, dozens remain in in white zoneJul 31, 2024
China has big plans for semiconductor industry and they include self reliance.
China’s super-rich are eyeing the exitJun 23, 2024
But capital controls mean getting money out of the country is no easy task
Why China’s Small Merchants Are Checking Out of Mega Shopping FestsJun 19, 2024
Frustrated by high return rates and dwindling profits, small merchants are questioning the long-term viability of discount-driven shopping festivals. Some are even opting out and returning to more traditional business models.
Cotton traced to Xinjiang, China, present in over 800 products: reportMay 28, 2024
More than 800 items, including apparel and footwear, had fibers from the contested region, despite U.S. bans over forced labor concerns.
The Rise and Fall of China’s Economic ‘Miracle’May 12, 2024
China’s economy has reached a dead end. Getting out will mean more trade friction with the United States.
I Went To China And Drove A Dozen EVs. Western Automakers Are CookedMay 12, 2024
A trip to the Beijing Auto Show reveals just how advanced China's EVs are. So what are the so-called "foreign" automakers doing about it?
Biden has brought the ban hammer down on US export of AI chips to ChinaApr 17, 2024
Datacenter GPUs and some consumer cards now exceed performance limits
Intel preps export-friendly lower-power Gaudi 3 AI chips made for ChinaApr 17, 2024
Beijing will be thrilled by this nerfed silicon
How Chinese Students Experience AmericaApr 4, 2024
COVID, guns, anti-Asian violence, and diplomatic relations have complicated the ambitions of the some three hundred thousand college students who come to the U.S. each year.
‘Priority target’: The businessman at the top of Australia’s intelligence hMar 27, 2024
The suspect’s identification by intelligence agencies raises big questions for one of Australia’s neighbours and about China’s attempts to wield influence in the Pacific.
A Spark ExtinguishedMar 25, 2024
At the height of the Great Famine in 1960, a group of students exiled to the countryside launched a magazine that dared to tell the truth. Their convictions, and the love they bore for one another, were put to the test.
Want to stop livestreaming? That’ll be $42,000Feb 29, 2024
Chinese livestream agencies promise influencers fame and money, but end up trapping them in multi-year contracts.
Scents of Self: Why Young Chinese are Obsessed with FragrancesFeb 29, 2024
The fragrance industry in China is on the upswing as younger consumers embrace scents for self-expression and comfort.
‘Shawshank’ in China, as You’ve Never Seen It BeforeFeb 17, 2024
A stage adaptation of the film featured an all-Western cast, was performed in Chinese and raised questions about translation, both linguistic and cultural.
China’s Investors Are Losing Faith in Its Markets and EconomyFeb 15, 2024
As their losses pile up, Chinese investors are losing confidence not only in the stock market but in the government’s ability to turn the economy around.
The Triumph and Terror of Wang HuningFeb 10, 2024
One man’s thought has become pivotal in China’s new political and cultural crackdowns. That man is not Xi Jinping.
FBI confirms it issued remote kill command to blow out Volt Typhoon's botneFeb 3, 2024
Disinfects Cisco and Netgear routers to thwart Chinese critters
Why thousands of young Chinese people use a pink dinosaur as their aliasJan 18, 2024
Users adopt the alias “momo” as a way to speak more freely, evade harassment, and protect personal privacy on Douban and Xiaohongshu.
Wafer Wars: Deciphering Latest Restrictions On AI And Semiconductor ManufacturingOct 30, 2023
China's Countermove: How Beijing is Dodging New Semiconductor Restrictions
The fascinating evolution of typing Chinese charactersAug 27, 2023
From Wubi to Zhineng ABC, here are the different ways Chinese people have typed their language over the years.
Chinese Tech Terms Explained In English | 16x EngineerJul 13, 2023
Learn about five Chinese tech terms: Huidu, Lunzi, Chendian, Dapan, and Maidian, frequently used in companies like Tencent and ByteDance.
The ‘Old Dough Sticks’: Life Among Beijing’s Least Eligible BachelorsJul 10, 2023
They’re greasy, over thirty, and looking for love in all the wrong places.
Real estate is China's economic Achilles heelJun 11, 2023
It's the country's biggest engine of growth an employment, financial asset, and source of government revenue.
The Mystery of the Disappearing van GoghJun 3, 2023
After a painting by the Dutch artist sold at auction, a movie producer claimed to be the owner. It later vanished from sight, with a trail leading to Caribbean tax havens and a jailed Chinese billionaire.
China’s Massive Fleet Of Radar Planes And The Strategy Behind ItApr 6, 2023
China’s path to fielding airborne early warning aircraft wasn't straightforward, but has yielded big results that speak to a wider strategy.
China’s Digital Landscape in 2020 | KAWO 科握Mar 20, 2023
A comprehensive overview of the China social media landscape in 2020 - know how to navigate and help marketing teams achieve success in Chinese social!
Chinese chipmaking technology development may stall at 40nm scale - DIGITIMMar 19, 2023
Comprehensive up-to-date news coverage, aggregated from sources all over the world by Google News.
China’s flagship CPU designer puts on a brave face amid US sanctionsMar 19, 2023
Chinese chip designer Loongson, which has tried to reduce the country’s reliance on Intel and AMD, is developing its own general-purpose GPU despite being added to a US trade blacklist.
The Daring Ruse That Exposed China’s Campaign to Steal American SecretsMar 8, 2023
How the downfall of one intelligence agent revealed the astonishing depth of Chinese industrial espionage.
9 viral phrases that explain China’s work cultureFeb 11, 2023
From “lie flat” to “let it rot,” common terms have taken on new meaning in recent years.
Spirited Away: A Peek into the World of China’s Door GodsJan 22, 2023
While the superstition isn’t widespread, the age-old tradition of hanging up door gods still endures during Lunar New Year.
Biden Just Clobbered China’s Chip IndustryOct 21, 2022
The latest American trade restrictions could significantly set back China’s semiconductor ambitions.
The Puzzling History of China’s Most Controversial FlavoringOct 24, 2014
Monosodium glutamate, better known as MSG, is a Japanese import that became as Chinese as Kung Pao chicken. But its spread was more historical accident than foreordained.
How McDonald’s Became China’s New Favorite Wedding VenueOct 24, 2010
Young Chinese are increasingly opting for simple, affordable wedding ceremonies. That’s leading many to the golden arches.
chip-design
Taalas is replacing programmable GPUs with hardwired AI chips to achieve 17,000 tokens per second for ubiquitous inference - MarkTechPostFeb 23, 2026
Taalas is replacing programmable GPUs with hardwired AI chips to achieve 17,000 tokens per second for ubiquitous inference
Bulk RRAM: Scaling the AI Memory WallFeb 9, 2026
UC San Diego researchers have reimagined RRAM, creating a device that could redefine AI's memory challenges. Discover how this could impact edge computing.
Gate-All-Around (GAA) Technology for Sustainable AI - SemiWikiFeb 9, 2026
Key takeaways ▼ The transition from FinFET to Gate-All-Around (GAA) transistor technology represents a pivotal moment in the evolution of logic devices, driven by both physical scaling limits and the … Continue reading "Gate-All-Around (GAA) Technology for Sustainable AI"
Understanding the PDK Generation Process - Technical ArticlesJan 25, 2026
In this article, we'll walk through the steps of generating a Process Design Kit (PDK) for digital standard cell libraries.
Impact Of On-Chip SRAM Size And Frequency On Energy Efficiency And Performance of LLM Inference (Uppsala Univ.)Jan 4, 2026
A new technical paper titled “Prefill vs. Decode Bottlenecks: SRAM-Frequency Tradeoffs and the Memory-Bandwidth Ceiling” was published by researchers at Uppsala University. Abstract “Energy consumption dictates the cost and environmental impact of deploying Large Language Models. This paper investigates the impact of on-chip SRAM size and operating frequency on the energy efficiency and performance of... » read more
Solving The Problems of HBM-on-LogicDec 18, 2025
Future AI Accelerators Might Need To Be Slower To Be Faster
FPGAs Need a New FutureDec 10, 2025
FPGAs are limited by outdated proprietary software. Learn how embracing open-source tools is necessary to modernize FPGA development and unlock their full potential.
Unusual circuits in the Intel 386's standard cell logicNov 23, 2025
I've been studying the standard cell circuitry in the Intel 386 processor recently. The 386, introduced in 1985, was Intel's most complex pr...
Why In-Memory Computation Is So Important For Edge AIOct 23, 2025
Researchers focus on limiting data movement to reduce power and latency in edge devices.
Interconnect Innovations In High Bandwidth Memory: Part 2Oct 14, 2025
Bump technologies are being pushed beyond what was thought to be their physical and performance limits.
Deterministic ExecutionOct 7, 2025
The Motorola 68000: A 32-Bit Brain in a 16-Bit BodySep 26, 2025
Motorola’s 68000 blended 32-bit power with a 16-bit bus, creating a balanced, orthogonal, and elegant architecture that powered everything from Macintosh to arcade machines.
The Demise Of Static Timing Verification?Sep 11, 2025
Timing is increasingly dependent on vectors. Can static techniques continue to deliver the necessary results? Maybe.
3D-Stacked HBM Architecture Susceptibility To Thermal Attacks (NC A&T State, New Mexico State)Sep 10, 2025
A new technical paper titled “On the Thermal Vulnerability of 3D-Stacked High-Bandwidth Memory Architectures” was published by researchers at North Carolina A&T State University and New Mexico State University. Abstract “3D-stacked High Bandwidth Memory (HBM) architectures provide high-performance memory interactions to address the well-known performance challenge, namely the memory wall. However, these architectures are susceptible... » read more
Static Timing Analysis Signoff A comprehensive and Robust ApproachSep 2, 2025
By Zameer Mohammed Once a chip is taped out, changes in design are not possible – Silicon is unforgiving, does not allow postproduction modifications. In contrast, software can be updated … Continue reading "Static Timing Analysis Signoff A comprehensive and Robust Approach"
Backside Power Delivery (BSPD) WikiAug 31, 2025
Backside Power Delivery (BSPD), also called Backside Power Delivery Network (BSPDN) or backside power via (BPV) technology, is a semiconductor manufacturing innovation in which the chip’s primary power distribution network … Continue reading "Backside Power Delivery (BSPD) Wiki"
Rapidus’ 2nm “2HP” Process Will Reportedly Compete With TSMC’s N2 in Logic Density, Also Beating Intel’s…Aug 31, 2025
Rapidus is advancing with its 2nm process. For the first time, the node's logic density has been reported, and it's on par with TSMC.
Here be dragons: Preventing static damage, latchup, and metastability in the 386Aug 18, 2025
I've been reverse-engineering the Intel 386 processor (from 1985), and I've come across some interesting circuits for the chip's input/outpu...
RDNA 4's "Out-of-Order" Memory AccessesAug 11, 2025
Examining RDNA 4's out-of-order memory accesses in detail, and investigating with testing
How to reverse engineer an analog chip: the TDA7000 FM radio receiverAug 3, 2025
Have you ever wanted to reverse engineer an analog chip from a die photo? Wanted to understand what's inside the "black box" of an integrate...
Rethinking Scan Chains In Semiconductor TestJul 2, 2025
Finding defects now requires multiple data types, and a much more thorough search.
Prototype Computer Uses Noise to Its AdvantageMay 19, 2025
Thermodynamic computing isn't just a rebrand of probabilistic computing
Metal fill extraction: Breaking the speed-accuracy tradeoffMay 17, 2025
An adaptive metal fill extraction technique dynamically adjusts the level of detail based on the design context, such as the density of...
Die-to-die Interconnect Standards In FluxMay 15, 2025
Many features of UCIe 2.0 seen as “heavy” are optional, causing confusion.
Performance Analysis and Tuning on Modern CPUsApr 12, 2025
Notes on the Pentium's microcode circuitryMar 31, 2025
Most people think of machine instructions as the fundamental steps that a computer performs. However, many processors have another layer of ...
First-Time Silicon Success PlummetsMar 27, 2025
Number of designs that are late increases. Rapidly rising complexity is the leading cause, but tools, training, and workflows need to improve.
The Pentium contains a complicated circuit to multiply by threeMar 2, 2025
In 1993, Intel released the high-performance Pentium processor, the start of the long-running Pentium line. I've been examining the Pentium'...
100x Defect Tolerance: How Cerebras Solved the Yield Problem - CerebrasJan 16, 2025
[vc_row][vc_column column_width_percent=”90″ gutter_size=”3″ overlay_alpha=”50″ shift_x=”0″ shift_y=”0″ shift_y_down=”0″ z_index=”0″ medium_width=”0″ mobile_width=”0″ width=”1/1″ uncode_shortcode_id=”158708″][vc_column_text uncode_shortcode_id=”154284″] Conventional wisdom in semiconductor manufacturing has long […]
AMD Reveals Real Reason It Won't Put 3D V-Cache On Multiple CCDsJan 8, 2025
After persistent rumors refused to recede, AMD steps in with a clear explanation why dual-CCD V-Cache doesn't exist.
CMU Researchers Introduce TNNGen: An AI Framework that Automates Design of Temporal Neural Networks (TNNs) from PyTorch Software Models to Post-Layout NetlistsDec 30, 2024
Designing neuromorphic sensory processing units (NSPUs) based on Temporal Neural Networks (TNNs) is a highly challenging task due to the reliance on manual, labor-intensive hardware development processes. TNNs have been identified as highly promising for real-time edge AI applications, mainly because they are energy-efficient and bio-inspired. However, available methodologies lack automation and are not very accessible. Consequently, the design process becomes complex, time-consuming, and requires specialized knowledge. It is through overcoming these challenges that one can unlock the full potential of TNNs for efficient and scalable processing of sensory signals. The current approaches to TNN development are fragmented workflows, as
Intel's $475 million error: the silicon behind the Pentium division bugDec 29, 2024
In 1993, Intel released the high-performance Pentium processor, the start of the long-running Pentium line. The Pentium had many improvement...
Slim-Llama: An Energy-Efficient LLM ASIC Processor Supporting 3-Billion Parameters at Just 4.69mWDec 21, 2024
Large Language Models (LLMs) have become a cornerstone of artificial intelligence, driving advancements in natural language processing and decision-making tasks. However, their extensive power demands, resulting from high computational overhead and frequent external memory access, significantly hinder their scalability and deployment, especially in energy-constrained environments such as edge devices. This escalates the cost of operation while also limiting accessibility to these LLMs, which therefore calls for energy-efficient approaches designed to handle billion-parameter models. Current approaches to reduce the computational and memory needs of LLMs are based either on general-purpose processors or on GPUs, with a combination of weight quantization and
AMD Disables Zen 4's Loop BufferDec 1, 2024
A loop buffer sits at a CPU's frontend, where it holds a small number of previously fetched instructions.
Predictive PDK (ASAP) – ASU EngineeringNov 25, 2024
Antenna diodes in the Pentium processorNov 24, 2024
I was studying the silicon die of the Pentium processor and noticed some puzzling structures where signal lines were connected to the silico...
Signal Integrity BasicsOct 19, 2024
eBook: Pre-requisites for successful high-performance electronic system design.
Surveying the Landscape of Smartphone ProcessorsAug 2, 2024
There are many chip partitioning and placement tradeoffs when comparing top-tier smartphone processor designs.
Understanding Two Port Amplifier Power GainsJul 31, 2024
Transducer, Unilateral, Available and Power Gain; what they mean and how to calculate them.
ABCs of Power Amplifier Classes: FoundationsJul 30, 2024
Basic concepts required to understand classes of operation in power amplifiers.
Introduction to the Common-Drain Amplifier: Large-Signal BehaviorJul 29, 2024
Also known as the source follower, the common-drain amplifier is notable for its low output impedance. This article introduces the basic common-drain configuration and examines its large-signal characteristics.
Zen 5’s 2-Ahead Branch Predictor Unit: How a 30 Year Old Idea Allows for NeJul 27, 2024
When I recently interviewed Mike Clark, he told me, “…you’ll see the actual foundational lift play out in the future on Zen 6, even though it was really Zen 5 that set the table for that.” And at that same Zen 5 architecture event, AMD’s Chief Technology Officer Mark Papermaster said, “Zen 5 is a ground-up redesign of the Zen architecture,” which has brought numerous and impactful changes to the design of the core.
Standard cells: Looking at individual gates in the Pentium processorJul 10, 2024
Intel released the powerful Pentium processor in 1993, a chip to "separate the really power-hungry folks from ordinary mortals." The origin...
An Introduction to Using Logic Gates in LTspiceJun 17, 2024
This article explains how to successfully integrate logic gates into an LTspice simulation.
Simulating MOSFET Current-Voltage Characteristics Using Advanced SPICE ModeJun 10, 2024
In this article, we use a SPICE model for 90 nm CMOS to plot key electrical relationships of an NMOS transistor.
Using Advanced SPICE models to Characterize an NMOS TransistorJun 5, 2024
SPICE models designed for specific CMOS process nodes can enhance simulations of integrated-circuit transistors. Learn where to find these models and how to use them.
SystemVerilog: Ultimate GuideMay 20, 2024
In the realm of hardware design and verification, SystemVerilog stands as a titan among languages, beckoning engineers and developers with its robust capabilities. Originating from the fusion of Verilog with hardware verification languages, SystemVerilog’s evolution has revolutionized the world of electronic design automation (EDA). An introduction to SystemVerilog not only unfolds the story of its
Competitive Open-Source EDA ToolsMay 20, 2024
A technical paper titled “Basilisk: Achieving Competitive Performance with Open EDA Tools on an Open-Source Linux-Capable RISC-V SoC” was published by researchers at ETH Zurich and University of Bologna. Abstract: “We introduce Basilisk, an optimized application-specific integrated circuit (ASIC) implementation and design flow building on the end-to-end open-source Iguana system-on-chip (SoC). We present enhancements to... » read more
HiFi-DRAM: Enabling High-fidelity DRAM Research by Uncovering Sense AmplifiMay 11, 2024
DRAM research is difficult. Work that aims to be applicable to commodity devices should consider the sense amplifier internal layouts, transistor dimensions and circuit typologies used by real devices. These are all essential elements that must be considered while proposing new ideas. Unfortunately, they are not disclosed by DRAM vendors. As such, researchers are forced… Read
A Comprehensive RF Characterization and Modeling Methodology for the 5nm TeOct 7, 2023
This paper aims to provide insights into the thermal, analog, and RF attributes, as well as a novel modeling methodology, for the FinFET at the industry standard 5nm CMOS technology node. Thermal characterization shows that for a 165K change in temperature, the Sub-threshold Slope (SS) and threshold voltage vary by 69 % and ~70 mV, respectively. At room temperature, a single gate contacted n-FinFET RF device exhibits a cutoff and maximum oscillation frequency of ~100 GHz and ~170 GHz, respectively. Analog and RF Figures of Merit (FoMs) for 5 nm technology at a device level and their temperature sensitivity are also reported. The industry standard BSIM-CMG model is modified to capture the impact of self-heating (SH) and parasitics. The SH model is based on measured data, and the modeling approach renders it independent of other model parameters. To the authors’ knowledge, an iteration free approach to develop a model-card for RF applications is explained for the very first time. Excellent agreement between the measured data and the model indicates that our methodology is accurate and can be used for faster PDK development.
The Ultimate Signoff (TapeOut) ChecklistOct 2, 2023
In semiconductor design, “sign-off” during the tape-out (tapeout) of a chip refers to the formal approval process to ensure that the chip design is error-free, meets all specifications, and is ready for manufacturing at the foundry. It is essential because it minimizes the risk of costly errors, ensures compliance with foundry requirements, and validates that
VLSI Physical DesignSep 27, 2023
Ending an Ugly Chapter in Chip DesignApr 6, 2023
Study tries to settle a bitter disagreement over Google’s chip design AI
True 3D Is Much Tougher Than 2.5DApr 5, 2023
While terms often are used interchangeably, they are very different technologies with different challenges.
RDL and Flip Chip DesignApr 5, 2023
RDL, an abbreviation for Redistribution Layer, that is, to make one or more layers of metal on the active chip side to redistribute the pins of the chip.
The Most Complex Chip Ever Made?Apr 5, 2023
Historically Intel put all its cumulative chip knowledge to work advancing Moore's Law and applying those learnings to its future CPUs. Today, some of
Video: Intel EMIB Technology ExplainedApr 5, 2023
Intel's multi-die interconnect bridge (EMIB) is an approach to in-package high-density interconnect of heterogeneous chips.
US Semiconductor Manufacturing | CHIPS and Science Act | Intel®Apr 5, 2023
Powered by the promises of the CHIPS Act, Intel is investing more than $100 billion to increase domestic chip manufacturing capacity and capabilities.
Tiny Tapeout - Tiny TapeoutMar 31, 2023
From idea to chip design in minutes! TT09 Closes in TT09 Closes in 44 DAYS 44 HOURS 44 MINS 44 SECS Tiles PCBs Tiny Tapeout is an educational project that makes it easier and cheaper than ever to get your designs manufactured on a real chip! Read the paper here. See what other people are making by taking a look at what was submitted on our previous shuttles.
Asynchronously Parallel Optimization Method For Sizing Analog Transistors UMar 5, 2023
A new technical paper titled “APOSTLE: Asynchronously Parallel Optimization for Sizing Analog Transistors Using DNN Learning” was published by researchers at UT Austin and Analog Devices. Abstract “Analog circuit sizing is a high-cost process in terms of the manual effort invested and the computation time spent. With rapidly developing technology and high market demand, bringing... » read more
thejackal360/OpenSPICE: Simulate electronic circuit using Python and the Ngspice / Xyce simulatorsFeb 16, 2023
Simulate electronic circuit using Python and the Ngspice / Xyce simulators - thejackal360/OpenSPICE
Improve Signal Integrity by Reducing PCB Trace Impedance VariationFeb 9, 2023
Achieving better signal integrity in a PCB design can be a challenge. Learn how PCB trace impedance variation plays a role, and how advanced tools can help smooth the way.
An AI 'Engineer' Has Now Designed 100 Chips - ExtremeTechFeb 9, 2023
AI firm Synopsys has announced that its DSO.ai tool has successfully aided in the design of 100 chips, and it expects that upward trend to continue.
bmurmann/Book-on-MOS-stages: Book repository "Analysis and Design of Elementary MOS Amplifier Stages"Jan 17, 2023
Book repository "Analysis and Design of Elementary MOS Amplifier Stages" - bmurmann/Book-on-MOS-stages
My Articles on AAC (Page I)Jan 14, 2023
The following is a list of my articles on various topics. Besides technical articles, news pieces that might have useful technical information are also included. You can find my articles on FPGA...
The Inner Beauty of Basic ElectronicsJan 14, 2023
Open Circuits: The Inner Beauty of Electronics is a visual feast for those who love electronics.
RF Design Basics—Introduction to Transmission LinesJan 14, 2023
Learn about voltage waves and how they relate to an important basic concept of radio frequency (RF) circuit design: transmission lines.
Inside the 8086 processor's instruction prefetch circuitryJan 3, 2023
The groundbreaking 8086 microprocessor was introduced by Intel in 1978 and led to the x86 architecture that still dominates desktop and se...
Big Trouble in Little InterconnectsJan 2, 2023
Interconnects—those sometimes nanometers-wide metal wires that link transistors into circuits on an IC—are in need of a major overhaul. And as chip fabs march toward the outer reaches of Moore’s Law, interconnects are also becoming the industry’s choke point.
Book-on-MOS-stages/Analysis and Design of Elementary MOS Amplifier Stages.pDec 31, 2022
Book repository "Analysis and Design of Elementary MOS Amplifier Stages" - bmurmann/Book-on-MOS-stages
Ultimate Guide: Clock Tree SynthesisSep 24, 2022
A vast majority of modern digital integrated circuits are synchronous designs. They rely on storage elements called registers or flip-flops, all of which change their stored data in a lockstep manner with respect to a control signal called the clock. In many ways, the clock signal is like blood flowing through the veins of a
Page Not Available | MailchimpSep 3, 2022
High-Performance 5G IC Designs Need High-Performance Parasitic ExtractionJun 23, 2022
The high frequencies and data rates involved in 5G designs makes layout verification all the more important.
Designing and Simulating Low-Voltage CMOS Circuits Using Four-Parameter ModJun 21, 2022
New technical paper titled “Bridging the Gap between Design and Simulation of Low-Voltage CMOS Circuits” from researchers at Federal University of Santa Catarina, Brazil. Abstract “This work proposes a truly compact MOSFET model that contains only four parameters to assist an integrated circuits (IC) designer in a design by hand. The four-parameter model (4PM) is... » read more
Thermal Management Challenges and Requirements of 3 types of MicroelectroniJun 21, 2022
New technical paper titled “A Review on Transient Thermal Management of Electronic Devices” from researchers at Indian Institute of Technology Bombay. Abstract “Much effort in the area of electronics thermal management has focused on developing cooling solutions that cater to steady-state operation. However, electronic devices are increasingly being used in applications involving time-varying workloads. These... » read more
Another Firing Among Google’s A.I. Brain Trust, and More Discord (Published 2022)May 2, 2022
The researchers are considered a key to the company’s future. But they have had a hard time shaking infighting and controversy over a variety of issues.
The X-Ray Tech That Reveals Chip DesignsApr 30, 2022
When you’re baking a cake, it’s hard to know when the inside is in the state you want it to be. The same is true—with much higher stakes—for microelectronic chips: How can engineers confirm that what’s inside has truly met the intent of the designers? How can a semiconductor design company tell wh
HewlettPackard/cacti: An integrated cache and memory access time, cycle time, area, leakage, and dynamic power modelDec 11, 2021
An integrated cache and memory access time, cycle time, area, leakage, and dynamic power model - HewlettPackard/cacti
How to Simulate a Phase-Locked Loop - Technical ArticlesDec 11, 2021
This article presents an LTspice circuit that can be used to explore the behavior of a phase-locked loop.
OpenROAD – HomeDec 3, 2021
Library Design - SilvacoDec 3, 2021
Silvaco provides standard cell library design and optimization services
Effect of Design on Transistor Density - SemiwikiDec 3, 2021
I have written a lot of articles looking at leading…
Understanding SoC Clock Design - AnySiliconDec 1, 2021
SoC clock tree overview, metrics that help qualify a clock tree and most commonly used clock tree distribution methodologies.
Impact Of GAA Transistors At 3/2nmAug 17, 2021
Some things will get better from a design perspective, while others will be worse.
Bumps Vs. Hybrid Bonding For Advanced PackagingJun 23, 2021
New interconnects offer speed improvements, but tradeoffs include higher cost, complexity, and new manufacturing challenges.
The Ultimate Guide to Clock GatingFeb 3, 2021
Clock Gating is defined as: “Clock gating is a technique/methodology to turn off the clock to certain parts of the digital design when not needed”. The Need for Clock Gating With most of the SoCs heavily constrained by power budgets, it is of utmost importance to reduce power consumption as much as possible
6 Causes of MOS Transistor Leakage CurrentFeb 2, 2021
Leakage current can contribute to power dissipation, especially at lower threshold voltages. Learn about six types of leakage current that can be found in MOS transistors.
New Transistor Structures At 3nm/2nmJan 25, 2021
Gate-all-around FETs will replace finFETs, but the transition will be costly and difficult.
Die Per Wafer (free) CalculatorJan 15, 2021
How can you calculate the number of dies per wafer? A free online tool, DPW equation and reference to two other DPW calculators. Trusted by Amkor and GF.
The Ultimate Guide to Static Timing Analysis (STA)Jan 15, 2021
Static Timing Analysis? Read here the best overview to STA, including theory, real examples, ilustrations, tips and tricks.
Introduction to Thermal Characterization ParametersJan 15, 2021
In this article, we’ll discuss another group of thermal data, called thermal characterization parameters denoted by the Greek letter Psi (Ψ).
Die Yield Calculator | iSine Analog, Digital & Mixed Signal IC SolutionsJan 15, 2021
DIE YIELD CALCULATOR Use this online calculator to figure out die yield using Murphy’s model. You’ll need to know the die size, wafer diameter, and defect density. iSine is your complete resource for ASIC design – from concept to manufacturing and testing. We have expertise in system architecture, VHDL, Verilog, gate arrays, mixed signal, full...
Junction-to-Case Thermal Resistance in Thermal DesignJan 2, 2021
Learn about an important thermal metric for designing the interface between an IC package and a heat sink.
Designing with a Heat Sink for Junction-to-Case Thermal ResistanceJan 2, 2021
Watch the thermal measurement, junction-to-case thermal resistance, in action as we use it to calculate the thermal considerations for a given system.
10 basic advanced IC packaging terms to knowDec 29, 2020
Engineers must keep pace with advanced IC packaging technology as it evolves rapidly, starting with understanding the basic terms.
How Junction-to-Ambient Thermal Resistance of an IC Package Affects ThermalDec 27, 2020
Assessing the thermal performance of an IC package becomes easier if you understand this common, but often misapplied, parameter known as theta JA.
Transistor Sizing in VLSI Design Using the Linear Delay Model - Technical ADec 18, 2020
In this article, we will learn how to find the optimal size of a transistor/logic gate present in a larger circuit to provide the desired performance using the linear delay model.
FinFETs Give Way to Gate-All-Around | Lam ResearchNov 19, 2020
When they were first commercialized at the 22 nm node, finFETs represented a revolutionary change to the way we build transistors, the tiny switches in the “brains” of a chip. As compared to...
The Elmore Delay Model in VLSI DesignNov 12, 2020
In this article, we'll discuss the Elmore delay model, which provides a simplistic delay analysis that avoids time-consuming numerical integration/differential equations of an RC network.
Techniques to Reduce Timing Violations using Clock Tree Optimizations in Synopsys IC Compiler II - SemiwikiNov 3, 2020
The semiconductor industry growth is increasing exponentially with high speed…
Making Full Memory IP Robust During Design - SemiwikiNov 3, 2020
Looking at a typical SoC design today it's likely to…
Verification Of Multi-Cycle Paths And False PathsNov 3, 2020
Single-clock design is not always as easy as it seems.
Making SPICE available for everyoneMar 31, 2020
SPICE (Simulation Program with Integrated Circuit Emphasis) is an open-source analog electronic circuit simulator. | SPICE is undoubtedly one of the most popular modeling libraries available, and Japanese e-commerce company MoDeCH is seeking to make the power of SPICE available to everyone.
CMOS Circuit Design, Layout, and SimulationAug 29, 2019
Five Rules For Correlating Rule-based And Field Solver Parasitic ExtractionDec 22, 2018
Accurately determine parasitic effects with the proper set up of two different methods.
Process Corner ExplosionSep 15, 2018
Process Corner Explosion, At 7nm and below, modeling what will actually show up in silicon is a lot more complicated.
gplEDA HomepageMay 6, 2018
lect04_LEF.pdfDec 27, 2017
Comparing NLDM And CCS delay models - Paripath - improving sign-offOct 18, 2017
Post date: Sep 19, 2014 10:01:08 PM
Bsim3Oct 11, 2017
ABCs of Power Amplifier Classes: Class AAug 24, 2011
Design, operation and characteristics of the most linear amplifier class of all.
Understanding Haptic Technology and the Use of Piezoelectric ActuatorsAug 24, 2011
Haptic feedback systems using piezo-based actuators are important for a variety of applications, especially automotive. Learn the challenges and the solutions to be considered for this technology.
Clash of the Foundries: Gate All Around + Backside Power at 2nmOct 24, 2002
Fab Cost, WFE Implications, Backside Power Details
chivalry
Hacker NewsApr 8, 2023
These methods have helped me enormously—and can save you much heartache and anxiety
Life Lessons from 1,000 Years | The Curiosity ChronicleJan 13, 2023
The Curiosity Chronicle has quickly become one of the most popular newsletters for growth-minded individuals in the world. Each week, subscribers receive a deep dive that covers topics ranging from growth and decision-making to business, finance, startups, and technology. In addition, subscribers receive The Friday Five, a weekly newsletter with five ideas curated to spark curiosity headed into the weekend.
20 Rules for a Knight: A Timeless Guide from 1483Jul 18, 2022
“Often we imagine that we will work hard until we arrive at some distant goal, and then we will be happy. This is a delusion. Happiness is the result of a life lived with purpose. Happiness is not an objective. It is the movement of life itself, a process, and an activity. It arises from …
choices
The Psychology of Choice: How Much Freedom Do Customers Really Want?Oct 10, 2025
Retailers have long assumed that the bigger the range, the happier the customer. Endless shelves, multiple variants, and every possible option should, in theory, increase satisfaction. Yet the evidence is more nuanced. Recent research shows that in some contexts, larger assortments can increase hesitation and reduce conversion, while in others the effect is muted. Overload […]
The Gruen Transfer is consuming the internetApr 26, 2025
The Gruen Transfer is taking over social media. What is it and how can we avoid it?
The Paralyzing Effect of Choice - SuperMoneyJul 18, 2022
Have you ever stopped to think about just how many decisions you make each and every day? Some choices are very simple, such as choosing to get up in the
Nautilus | Science ConnectedJun 28, 2022
Nautilus is a different kind of science magazine. Our stories take you into the depths of science and spotlight its ripples in our lives and cultures.
This Product Prioritization System Nabbed Pandora 70 Million Monthly Users with Just 40 EngineersJun 28, 2022
Pandora CTO Tom Conrad explains how Pandora picks the most important features to build with its limited engineering power.
Delighting Without AskingOct 1, 2018
churn
Customer Attrition: How to Define Churn When Customers Do Not Tell They’reFeb 22, 2024
The author details two examples of defining customer churn in contexts where it is not explicit: Retail and Banking.
Getting 200% More Actionable Feedback from Customers that Cancel - ExtendsLogicJul 19, 2022
Getting useful cancellation feedback from customers is tough. The problem is that once people have canceled, they’re no longer engaged and will rarely spend the time to give you feedback. One of the best things I’ve ever done to combat this with Bidsketch was to add a mandatory freeform text field that says: Please help… Continue reading Getting 200% More Actionable Feedback from Customers that Cancel →
22 Ways to Reduce SaaS Churn with Growth HackingJul 18, 2022
Ever wonder how to apply Growth Hacking thinking to reducing churn and increasing retention? Here are 22 ways to make that happen.
The Four Kinds of Churn - Predictable RevenueJul 18, 2022
this is a guest post by Kareem Mayan. customer retention was a recent topic in our predictable […]
Hire a Top Performer Every Time with These Interview QuestionsJul 18, 2022
Koru CEO Kristen Hamilton helps hundreds of people hire and get hired every year. These are the traits she knows translate into excellent performance on the job.
Top Two Reasons for Churn - For EntrepreneursJul 18, 2022
In working with a number of SaaS portfolio companies, I have found that there are two causes of churn that occur more frequently than any others. They are: Failure to successfully onboard the customer Loss of the champion who drove the purchase Looking at these in order: Failure to successfully onboard It’s easy to understand […]
Using cohort analysis to improve retentionJun 25, 2022
It’s no good acquiring customers for $10, if they only stick around for a month or two. Your retention can be visualized much easier by doing a cohort analysis, a technique widely used in medicine. Here's some tips top get started.
Packaging Inserts: Types and How To Create Yours (2024) - ShopifyJun 13, 2022
Increase customer loyalty and take advantage of an additional opportunity to connect with customers by using packaging inserts. Here's why and how to use them in every package you send out.
https://www.datascience.com/blog/what-is-a-churn-analysis-and-why-is-it-valuable-for-businessJun 13, 2022
Past Behavior Does Not Determine Future Purchases | TechCrunchJun 7, 2022
Ever wonder why after buying shoes online (or any other consumer goods), for the next few weeks or months, you can be sure to spot ads or promotions for those same shoes on nearly every website you visit? What’s more, you'll see which shoes your Facebook friends bought, which shoes their friends bought and which shoes “others like you” bought. You already bought shoes, so why are you still being bombarded with ads for them?
The Two Flavors Of Churn You Need To Know - Crunchbase NewsMay 18, 2021
Net dollar churn is a more value-driven way of looking at churn.
ci-cd
From code to production: A guide to continuous deployment with GitLabJan 28, 2025
Learn how to get started building a robust continuous deployment pipeline in GitLab. Follow these step-by-step instructions, practical examples, and best practices.
Essential Tools for a Successful DevOps EngineerMar 20, 2023
Introduction: The software development process has been transformed by the DevOps...
The Problem with Feature BranchesJun 21, 2022
As more companies strive to deliver software faster it becomes clear what legacy processes are...
Jenkins: Create a simple build jobJun 4, 2022
Jenkins job The jenkins job is an individual task that could be useful for your CI CD...
circuits-electronics
LCD defect metricsJan 9, 2026
Backblaze, owner of 317,230 HDDs, says HDDs are “lasting longer”Oct 17, 2025
Backup firm brings a unique, informed perspective to HDD failure rates.
What Exactly Is E-Ink—and How Does It Do Its Thing?Sep 30, 2025
You see it mentioned on almost every e-reader device—that is, tablet specialized for reading e-books—but what is it, really?
Estimating FM Bandwidth: Solved ExamplesAug 10, 2025
In this article, we'll illustrate the usefulness of Carson's rule for bandwidth estimation by working through a series of example problems.
Exploring the Relationship Between FM Wave Bandwidth and the Modulation IndexAug 3, 2025
In this article, we'll investigate how varying the amplitude and frequency of the modulating tone impacts the bandwidth of FM signals. We'll also compare the modulation index in AM and FM schemes.
Three Methods for Estimating the Transmission Bandwidth of FM SignalsJul 27, 2025
Along with introducing Carson's rule for bandwidth estimation, this article explains how to calculate the required transmission bandwidth based on either the sidebands or the total power of the signal.
Introduction to Wideband FM SignalsJul 13, 2025
Learn how Bessel functions and the modulation index can help us understand the bandwidth of wideband frequency-modulated (FM) signals.
Why 50 Ohms Became the RF StandardMay 14, 2025
The history, physics, and practical trade-offs behind a number every RF engineer knows.
What is a Servo Motor and How it Works | JamecoApr 4, 2025
What is a servo motor? How does a servo motor work? Get the right answers to these and more questions related to servo motors at our Jameco Electronics blog.
Complex Haptics Deliver a Pinch, a Stretch, or a TapApr 2, 2025
Electromagnetism takes touch feedback beyond simple vibrations
Which Discontinuities are Small Enough to Ignore?Feb 20, 2025
Understanding and minimizing discontinuities is increasingly important as serial links become both shorter and faster. Applying the old edge rate to roundtrip relationship to the modern era, Donald Telian in this article offers a rule-of-thumb to help gauge which interconnect structures, and hence discontinuities, to care about – and to what degree.
Century-Scale Storage - LongreadsDec 31, 2024
This deeply researched and thoughtful read by Maxwell Neely-Cohen, a fellow at the Library Innovation Lab at Harvard Law School, explores the past, present, and future of long-term data storage. “If you want to store something for 100 years, what are the best methods for ensuring its survival?” he asks. Neely-Cohen’s sweeping examination of storage […]
Introduction to the Class F Power Amplifier - Technical ArticlesDec 22, 2024
This article explores the basic principles of Class F operation and introduces the third-harmonic-peaking Class F amplifier.
Understanding How Electric Vehicles Convert Battery Power Into PropulsionDec 16, 2024
How IGBT and SiC based traction inverters use power from the lithium ion battery pack to drive the motors using sinusoidal pulse width modulation.
The Promise of Terahertz TechnologyDec 12, 2024
THz radiations finds unique applications in astronomy, medicine and communications, but not without its own distinct challenges.
What Is Inductance and How Does It Apply to Ground Bounce? - Technical ArticlesNov 25, 2024
Why you should care about even small amounts of inductance.
A Short Introduction to Automotive Lidar TechnologyNov 24, 2024
A guide to the operating principles, techniques and technology in lidar systems.
Transferring LTspice Schematics to QSPICE - Technical ArticlesOct 27, 2024
In this article, we'll walk through the process of moving an LTspice circuit into QSPICE and learn some QSPICE schematic techniques.
PAM4: Pulse Amplitude Modulation ExplainedOct 19, 2024
An in-depth look at the high-speed data communication standard's benefits and tradeoffs.
A Brief History of RF Switch TechnologyOct 19, 2024
From PIN diodes, RF MEMS, MESFETs, and HEMTs to RF silicon-on-insulator technology, how the evolution of a circuit as simple as a switch is much more complex than it seems like on the surface.
Introduction to QSPICE for LTspice Users, Part 1 - Technical ArticlesOct 16, 2024
This article, the first in a four-part series on moving from LTspice to QSPICE, introduces an LED blinker circuit that we’ll simulate with both programs.
The Good and Bad of Grounded Copper Pour: The EMC PerspectiveAug 1, 2024
In PCB design, using grounded copper pour can be a double-edged sword. Learn how to make smart design decisions on balancing copper layers, preventing dead copper issues, and enhancing PCB performance.
Radios, how do they work?Jul 8, 2024
A brief introduction to antennas, superheterodyne receivers, and signal modulation schemes.
Introduction to MOSFET Switching LossesApr 29, 2024
This article will help you optimize your switch-mode regulator and driver circuits by explaining important sources of MOSFET power dissipation.
What’s the Difference Between RS-232 and RS-485?Apr 12, 2024
Though both standards have long been used for serial communication, RS-485 offers valuable features that aren't available from RS-232. Learn more in this article.
Introduction to the Full-Bridge Rectifier - Technical ArticlesApr 1, 2024
The full-wave bridge rectifier converts an AC input voltage to a DC power supply voltage. Learn about the operation of this essential circuit.
The quiet plan to make the internet feel fasterMar 6, 2024
L4S could fix a problem that even gigabit connections don’t.
What is Operational Amplifier (Op Amp): Its Circuit, Types and ApplicationsFeb 22, 2024
Learn what is an Op Amp(Operational Amplifier): Understanding circuits, types, & the Best operational amplifier choices.
Introduction to the MOSFET Common-Source AmplifierFeb 22, 2024
In this article, we cover the basic behavior of the MOSFET common-source amplifier with different types of load.
Ethernet For Hackers: The Very Basics | HackadayFeb 20, 2024
Ethernet is ubiquitous, fast, and simple. You only need two diffpairs (four wires) to establish a 100Mbit link, the hardware is everywhere, you can do Ethernet over long distances easily, and tons …
Understanding the Guanella Transmission Line BalunFeb 6, 2024
Learn how bifilar coils can be used to build Gustav Guanella’s classic RF balun.
Understanding Gerber Layers for PCBs and StencilsJan 26, 2024
Gerber layers don’t have to be a mystery. Knowing the names and purposes of each Gerber layer used in PCB manufacturing can improve your designs and ease communication with the board house.
Introduction to the Class B Power AmplifierJan 16, 2024
How does a Class B power amplifier work? What makes it more efficient than a Class A power amplifier? Learn the answers in this article.
Demystifying the Skin Effect: Insights into AC Current DistributionAug 7, 2023
This article will demonstrate that the AC current density decreases exponentially into a conductor. It will also explain why we can assume that the total current has a uniform distribution from the surface down to one skin depth of the conductor.
Lossy Transmission Lines: Introduction to the Skin EffectJul 19, 2023
This article introduces high-frequency conductor losses in transmission lines caused by a phenomenon known as the skin effect.
Speed matters: How Ethernet went from 3Mbps to 100Gbps… and beyondJul 3, 2023
One of the biggest computing inventions of all time, courtesy of Xerox PARC.
Haptic System Creates Finger-Touch Sensations Hardware-FreeApr 29, 2023
Feel the real world and the virtual world at the same time
A Brief Introduction to Slot AntennasApr 19, 2023
Learn about slot antennas, namely their history, characteristics, and electromagnetic (EM) behavior for low-voltage, small-form-factor electronic devices.
The basics of decoupling capacitorsApr 17, 2023
How to stabilize digital supply voltages - and why most of the online advice on this topic is suspect.
Learn by Example—Using an Impedance Smith ChartMar 18, 2023
Learn how a series RLC circuit with arbitrary component values can be represented as a point on the Smith chart and how an impedance contour on the Smith chart can be used to describe the circuit's frequency response.
Most failed disk drives fail just before they hit 3 years’ use, says data rMar 17, 2023
Secure Data Recovery found that average failed hard drive spun for 25,233 hours before failing. That’s 1,051 days, or two years and ten months. Failed drive data recovery biz Secure Data Recovery has produced a report giving its experience of hard disk drive life expectancy from 2,007 damaged and defective drives it has received for […]
How many Cell Sites and Base Stations Worldwide?Mar 13, 2023
I wrote a blog post on this topic nearly three years back on the Operator Watch Blog here . That post is very handy as every few months some...
Asynchronously Parallel Optimization Method For Sizing Analog Transistors UMar 5, 2023
A new technical paper titled “APOSTLE: Asynchronously Parallel Optimization for Sizing Analog Transistors Using DNN Learning” was published by researchers at UT Austin and Analog Devices. Abstract “Analog circuit sizing is a high-cost process in terms of the manual effort invested and the computation time spent. With rapidly developing technology and high market demand, bringing... » read more
Share Files With a Fist Bump: Wi-R Confines Signal to a User’s BodyFeb 15, 2023
The latest wireless protocol ditches radiation and focuses on a new medium: your body.
Mismatch Loss and Mismatch Uncertainty in RF SystemsFeb 10, 2023
Learn more about RF wave reflection parameters, namely mismatch loss and mismatch uncertainty.
Improve Signal Integrity by Reducing PCB Trace Impedance VariationFeb 9, 2023
Achieving better signal integrity in a PCB design can be a challenge. Learn how PCB trace impedance variation plays a role, and how advanced tools can help smooth the way.
RF Design Basics: VSWR, Return Loss, and Mismatch LossFeb 5, 2023
Learn about voltage standing wave ratio (VSWR), return loss, and mismatch loss, which helps characterize the wave reflections in a radio frequency (RF) design.
Researchers Tap Origami as Basis for Reconfigurable Antenna DesignFeb 2, 2023
Aimed at improving sensing and imaging systems, Princeton University researchers have developed a reconfigurable antenna based on origami.
Investigating Lossless Transmission Line Phase Constant and Infinite BandwiJan 28, 2023
Learn how to derive the wave equations for a lossless transmission line and look at its infinite bandwidth and phase constant.
My Articles on AAC (Page I)Jan 14, 2023
The following is a list of my articles on various topics. Besides technical articles, news pieces that might have useful technical information are also included. You can find my articles on FPGA...
The Inner Beauty of Basic ElectronicsJan 14, 2023
Open Circuits: The Inner Beauty of Electronics is a visual feast for those who love electronics.
RF Design Basics—Introduction to Transmission LinesJan 14, 2023
Learn about voltage waves and how they relate to an important basic concept of radio frequency (RF) circuit design: transmission lines.
Researchers Develop Transistor-free Compute-in-Memory ArchitectureOct 13, 2022
Using new materials, UPenn researchers recently demonstrated how analog compute-in-memory circuits can provide a programmable solution for AI computing.
Videos — Engineering MediaOct 4, 2022
Here is a growing list of videos that I’ve created for YouTube channels other than my own.
What Time is It? A Timing Market Primer and OverviewOct 2, 2022
How do we keep track of time? A deeper look into Quartz timers and the emerging field of MEMS
How Memory Design Optimizes System PerformanceSep 26, 2022
Changes are steady in the memory hierarchy, but how and where that memory is accessed is having a big impact.
https://pcpartpicker.com/trends/Sep 16, 2022
Using the Arrhenius Equation to Predict Electronic Component AgingAug 19, 2022
Learn about calculating the activation energy of the aging process and some of the contradictory opinions about the Arrhenius equation's usefulness when predicting a crystal's aging process.
Perspective | Electronics are built with death dates. Let’s not keep them a secret.Aug 8, 2022
Our analysis of 14 popular consumer devices found most could stop working in 3 to 4 years because of irreplaceable batteries. Here’s how we get the tech industry to design products that last longer — and do less damage to the environment.
Microstrip Antenna DesignJul 30, 2022
This e-book explores microstrip antenna design, highlighting the single-element rectangular microstrip antenna and antenna arrays constructed from single microstrip elements.
An Introduction to Antenna Basics - Technical ArticlesJul 30, 2022
Antennas are used to transmit and receive electromagnetic energy. This article covers basic antenna theory.
An Introduction to MEMS Vibratory GyroscopesJul 4, 2022
Microelectromechanical systems (MEMS) vibratory gyroscopes can be a bit mysterious and math-intensive. Let's break the math down, and go over gyroscope basics and structures.
Interrupts for Peripherals: Timers, Serial Communication, and ADCs - Technical ArticlesDec 11, 2021
Learn about interrupts for some familiar peripherals: timers, serial communication, and ADCs.
Understanding Butterworth Filter Poles and Zeros - Technical ArticlesDec 11, 2021
This article explores the Butterworth low-pass filter, also known as the maximally flat filter, from the perspective of its pole-zero diagram.
Antenna Basics: Radiation Patterns, Permittivity, Directivity, and Gain - Technical ArticlesDec 11, 2021
Antennas allow information to be transferred to distant locations. In the second part of this Antenna Basics series, you will learn more about the physics of how antennas work.
Introduction to Pass-Transistor Logic - Technical ArticlesDec 11, 2021
This article explores an alternative, and in some cases advantageous, approach to MOSFET-based implementation of digital logic functions.
Understanding and Modeling Piezoelectric Sensors - Technical ArticlesDec 11, 2021
This article explains some theory behind piezoelectric sensors and presents an equivalent circuit that you can use when you’re designing sensor systems.
Soft Magnets Promise To Make Electric Motors 3 Times LighterDec 11, 2021
Researchers from the Carnegie Mellon University have developed soft magnetic materials that promise to make electric motors up to four times lighter.
Understanding Verilog Shift Registers - Technical ArticlesDec 11, 2021
This article will discuss how to implement a shift register in Verilog. The register described can be synthesized and downloaded to an FPGA for test in actual hardware.
Gallium Arsenide: Another Player in Semiconductor Technology - NewsDec 11, 2021
This article looks at gallium arsenide, comparing it to other semiconductor materials, and explores how different compounds are used in components.
How to Simulate a Phase-Locked Loop - Technical ArticlesDec 11, 2021
This article presents an LTspice circuit that can be used to explore the behavior of a phase-locked loop.
Magnetoresistance in Magnetic Field Sensors: Applications for TMR Sensors - NewsDec 10, 2021
What are TMR sensors and what applications are they best suited to? This article provides a snapshot of this sensor type and what TMR-based components are available for designers.
A Beam-Steering Antenna for 5G Mobile PhonesDec 8, 2021
For the first time, a beam-steering antenna is integrated into the metal casing of a mobile phone
How a Ground Plane Reduces PCB Noise - Technical ArticlesDec 7, 2021
How does a ground plane reduce noise in a PCB? Learn more in this technical article.
Camera sensor size: Why does it matter and exactly how big are they?Dec 7, 2021
The megapixel myth has treated camera manufacturers well over the years, those ever increasing, and often meaningless, numbers have sold millions of cameras. But consumers are getting wise to it. We've all seen dodgy images from high megapixel cameras and know that after a point, megapixels don't matter for most people – a 16 MP compact isn't ever going to be as good as a 12 MP Full Frame DSLR. What does matter is sensor size!
FET vs. BJT vs. IGBT: What’s the Right Choice for Your Power Stage Design? - Technical ArticlesDec 7, 2021
This article will help the reader understand the different types of power semiconductors: how they work, their key parameters, and trade-offs.
Universal Logic Gates - Technical ArticlesDec 7, 2021
NAND and NOR gates are widely known to be universal logic gates, meaning that any other logic gate be made from NAND or NOR gates. This article discusses other universal logic gates.
Asynchronous Design: Is It Time Yet?Dec 6, 2021
Asynchronous Design: Is it time yet? Why exactly did Intel scrap its asynchronous chip, and what's changed since then?
List of interface bit ratesDec 4, 2021
This is a list of interface bit rates, is a measure of information transfer rates, or digital bandwidth capacity, at which digital interfaces in a computer or network can communicate over various kinds of buses and channels. The distinction can be arbitrary between a computer bus, often closer in space, and larger telecommunications networks. Many device interfaces or protocols (e.g., SATA, USB, SAS, PCIe) are used both inside many-device boxes, such as a PC, and one-device-boxes, such as a hard drive enclosure. Accordingly, this page lists both the internal ribbon and external communications cable standards together in one sortable table.
Infrastructure and Automotive - Divested Products - Silicon LabsDec 3, 2021
Silicon Labs' Infrastructure and Automotive business is now owned by Skyworks. This includes timing, power, isolation, broadcast, and automotive products.
Electrical Symbols for Electronic Components: Passive Components - Technical ArticlesDec 3, 2021
This two-article series provides an overview of circuit symbols, along with some information on the components that they represent.
Issues In Designing 5G Beamforming AntennasDec 3, 2021
5G Beamforming Antennas Create Design, Test Problems Assuring quality under changing conditions with shifting standards and use models is a major challenge.
What Exactly Is a Phase-Locked Loop, Anyways? - Technical ArticlesDec 3, 2021
This article introduces a phase-based feedback system that plays an important role in many applications.
Antenna Array Design for ADASDec 3, 2021
Antenna Array Design for ADAS Creating automotive radar applications for mmWave needs special tools.
PLL Frequency Multiplication: Transient Response and Frequency Synthesis - Technical ArticlesDec 3, 2021
Does the addition of a feedback divider affect PLL transient response? We’ll look at this question and other frequency-multiplication topics in this article.
Antenna Design Grows UpDec 3, 2021
Antenna Design Grows Up Modern electronics relies heavily on antennas, but companies still make mistakes. That's about to change.
How 10 leading companies are trying to make powerful, low-cost lidarDec 2, 2021
Lidar is essential for self-driving cars—here’s how some leading lidar sensors work.
X7R, X5R, C0G…: A Concise Guide to Ceramic Capacitor Types - Technical ArticlesDec 2, 2021
This technical brief attempts to dispel some of the fog surrounding the three-character naming convention used to describe ceramic caps.
Introduction to Vibration Energy Harvesting - Technical ArticlesDec 2, 2021
Learn more about vibration energy harvesting as a source of power for electronic systems.
How to Reduce Power Consumption with Clock Gating - Technical ArticlesDec 2, 2021
This article will discuss the basic concepts of clock gating and how it can be used to reduce the power consumption of synchronous digital systems.
'Unclonable' digital fingerprints boost IoT device securityDec 2, 2021
The new technology is 10 times as reliable as what's come before for keeping internet-connected devices secure.
Using Verilog to Describe a Sequential Circuit - Technical ArticlesDec 2, 2021
This article focuses on using Verilog to describe synchronous sequential circuits.
Reference Designs | Technical Blueprints | Interactive Design Tools | Arrow.comDec 2, 2021
Reference designs covering essential system elements for millions of products are available at arrow.com. Search our extensive library today.
Understanding PLL Applications: Frequency Multiplication - Technical ArticlesDec 2, 2021
This article explains how a PLL can be used to produce a high-frequency clock from a low-frequency reference signal.
Whitepapers - Silicon LabsDec 2, 2021
Review whitepapers written by our expert engineers to help you understand new concepts or implement best practices in your product design and development.
How to Use a Nyquist Plot for AC Analysis - Technical ArticlesDec 1, 2021
This article introduces the Nyquist plot and explains how to interpret this alternative method of visually evaluating a system’s frequency response.
Overview and Types of Capacitors in ASIC Design - AnySiliconDec 1, 2021
Learn more on the various capacitors in ASIC design that can improve your chip performance and recude it's cost.
Image sensors make a good smartphone camera [infographic] - IntoMobileDec 1, 2021
Today, smartphones have made it easier than ever to capture beautiful images and videos. But what makes a good smartphone camera? It’s actually the image sensor. This piece of technology may be small, but it has a big impact on whatever your Instagram selfie is blurry or your Vine video is pixelated. You can see… Read more
Half adder circuit ,theory and working. Truth table , schematic realizationDec 1, 2021
Theory and working of a half adder circuit. Realization using XOR//AND gate. Realization of half adder using NOR and NAND logic. Truth table and schematic representation
IoT Standards & Protocols Guide | 2019 Comparisons on Network, Wireless Comms, Security, IndustrialDec 1, 2021
Overviews of protocols involved in Internet of Things devices and applications. Help clarify with IoT layer technology stack graphics and head-to-head comparisons.
The Antenna Theory WebsiteDec 1, 2021
An intuitive tutorial of antennas and antenna theory. This website is designed to present a comprehensive overview of antennas, from design, to measurement and theory. Unnecessarily complicated math is avoided throughout.
Free PCB Design Software | CircuitMakerDec 1, 2021
CircuitMaker is the best free PCB design software by Altium for Open Source Hardware Designers, Hackers, Makers, Students and Hobbyists.
Opposites Attract: A Review of Basic Magnetic Theories - Technical ArticlesDec 1, 2021
Electric machineries are based on the basic principles of electromechanical conversion, which use either the electrostatic or the electromagnetic principle. This technical article deals with the magnetic circuit theory for the conversion of one form of energy to another.
Basic Inductor Design - Technical ArticlesDec 1, 2021
Inductor design characteristics are defined in terms of various parameters. Inductor winding is made of a conductor material which may be a single round wire or a unique multi-stranded conductor known as Litz wire. Litz wire has the main advantage of reduced skin effect. Inductor design characteristics are defined in terms of various parameters which are discussed in this technical article.
The Role of Millimeter Waves in Ever-Expanding Wireless Applications - NewsDec 1, 2021
Millimeter wave frequencies have the potential to provide a solution to the growing demand for bandwidth and high-speed communication needs.
Describing Combinational Circuits in Verilog - Technical ArticlesNov 30, 2021
This article introduces the techniques for describing combinational circuits in Verilog by examining how to use the conditional operator to describe combinational truth tables.
Understanding and Addressing 5 Key Power Supply Issues - Industry ArticlesNov 30, 2021
This article will take a deeper look at five key power supply problems, how to know when they arise, and the best ways to address or mitigate them.
Circuit Synthesis for Analog Computing | SIGPLAN BlogMay 18, 2021
Modern analog computers offer unique programming challenges which make them challenging compilation targets. How do we automatically program an analog computer to implement a computation?
A brief history of router architectureMar 13, 2021
Here's what we've learnt about networks and the routers that interconnect them in the last 50 years.
Tutorial Everything You Always Wanted to Know About Optical NetworkingMar 10, 2021
NANOG is the professional association for Internet engineering, architecture and operations.
Optical Antennas Promise ‘Unlimited’ Data CapacityMar 5, 2021
The breakthrough is taking full advantage of the orbital angular momentum properties of a coherent light source, thus enabling multiplexing.
Intro to Fiber-Optic Communication SystemsFeb 4, 2021
Learn some basic, foundational info about fiber optic communication systems in this primer.
Introduction to PhototransistorsJan 27, 2021
In this series of articles, we’ll explore higher-output-current alternatives to photodiodes.
WireViz: Tool for documenting cables, wiring harnesses and connector pinoutJun 24, 2020
Easily document cables and wiring harnesses.
Intel NUC 9 ExtremeApr 16, 2020
The Intel NUC 9 Extreme, code named Ghost Canyon, is the company's most powerful, expandable small form factor gaming PC yet.
Build a Raspberry Pi NAS — The MagPi magazineFeb 13, 2020
Got a lot of digital stuff? Make it available anywhere in your home with your own Raspberry Pi network-attached storage
Quantum computing for the very curiousDec 23, 2019
Presented in an experimental mnemonic medium which makes it almost effortless to remember what you read
Electromagnetic Challenges In High-Speed DesignsNov 25, 2019
Runaway complexity is making it more difficult and critical to deal with signal integrity in a system context.
We’d have more quantum computers if it weren’t so hard to find the damn cablesNov 25, 2019
Quantum machines will deliver the next great leap forward in computing, but researchers building them can’t easily get some of the exotic components they need.
Understanding Nyquist Plots for Second-Order Filters - Technical ArticlesAug 20, 2019
This article continues a series on Nyquist diagrams by explaining Nyquist curves that represent the transfer function of a two-pole filter.
After 36 years as a commercial product, the powerful Micro-Cap circuit simulator is now freeAug 12, 2019
119 votes, 27 comments. 1.2M subscribers in the electronics community. Discussion and news about component-level electronic circuits.
Mouser Electronics | Mouser Search API Access RequestMar 11, 2019
Mouser has solutions to increase productivity, reduce manual data entry and optimize time generating POs with our Electronic Order Automation Services.
http://developers.arrow.com/api/Mar 11, 2019
API Solutions | DigiKeyMar 11, 2019
DigiKey offers a complete set of APIs to share information and automate the ordering process.
Introduction to SupercapacitorsJan 30, 2019
Get a primer on the basics of supercapacitors, their functionality, and which applications they're best for.
Getting Started with the Verilog Hardware Description Language - Technical ArticlesJan 10, 2019
In this article, we’ll study the basic structure of a Verilog module, look at some examples of using the Verilog “wire” data type and its vector form, and briefly touch on some differences between VHDL and Verilog.
Five Rules For Correlating Rule-based And Field Solver Parasitic ExtractionDec 22, 2018
Accurately determine parasitic effects with the proper set up of two different methods.
What Does It Take to Keep a Classic Mainframe Alive?Nov 3, 2018
Follow the saga of the Computer History Museum's IBM 1401
Introduction to Clock Domain Crossing: Double FloppingOct 7, 2018
This article will discuss a well-known technique called “double flopping” to transfer a single-bit control signal between two clock domains.
Smart Tags RFIDAug 30, 2018
Introduction to Switching-Mode Power Amplifiers: Class D OperationAug 24, 2018
In this article, we'll learn the basics of switching-mode RF amplifiers in general and Class D amplifiers in particular.
Magdy AbadirJun 8, 2018
Electronic Parts by Category - OctopartJun 4, 2018
Comparing Low Power Wireless Technologies (Part 3) | DigiKeyMar 27, 2018
Low power wireless technologies are adapting to the Internet of Things by including IP connectivity and mesh networking.
Comparing Low Power Wireless Technologies (Part 2) | DigiKeyMar 27, 2018
Each of the many short-range wireless technologies has unique benefits, requiring careful attention to product complexity, power consumption, and cost.
Comparing Low-Power Wireless Technologies (Part 1) | DigiKeyMar 27, 2018
The multitude of short-range wireless technologies provides engineers with optimized solutions for their applications, but makes careful selection paramount.
Reference Design Library | DigiKey ElectronicsApr 5, 2017
Easily search references designs and schematics based on circuit performance in DigiKey’s Reference Design Library. New designs added weekly.
Unraveling the Design Equations of the Class E Power Amplifier - Technical ArticlesOct 24, 2013
In this article, we analyze the operation of the Class E amplifier and examine the underlying assumptions of its design equations.
classification
Implementing Softmax From Scratch: Avoiding the Numerical Stability Trap - MarkTechPostJan 7, 2026
Learn about implementing Softmax from scratch and discover how to avoid the numerical stability trap in deep learning projects.
How to Fine-tune Model Thresholds with Yellowbrick’s ROC-AUC VisualizationMar 7, 2025
The key challenge lies in finding the right balance: How cautious should our model be when making classifications?
The Meaning Behind Logistic Classification, from Physics | by Tim Lou, PhDMar 26, 2023
Why do we use the logistic and softmax functions? Thermal physics may have an answer.
Building classifiers with biased classes: AdaSampling comes to the rescueJul 21, 2022
An algorithmic approach to clean up your dataset and sharpen class assignments.
Precision, Recall, and F1 Score of Multiclass Classification — Learn in DepJun 22, 2022
Manual Calculation From a Confusion Matrix and the Syntax of sklearn Library
Cross-Topic Argument Mining: Learning How to Classify TextsJan 27, 2021
Classifying cross-topic natural language texts based on their argumentative structure using deep learning
Hierarchical Classification – a useful approach when predicting thousands oMar 14, 2018
Traditionally, most of the multi-class classification problems (i.e. problems where you want to predict where a given sample falls into, from a set of possible results) focus on a small number of possible predictions.
Visualizing classifier thresholds | R-bloggersDec 27, 2017
Lately I’ve been thinking a lot about the connection between prediction models and the decisions that they influence. There is a lot of theory around this, but communicating how the various pieces all fit together with the folks who will use and be impacted by these decisions can be challenging. One of the important conceptual pieces […]
delgado14a.pdfOct 31, 2016
claude
Claude Code Remote ControlFeb 25, 2026
New Claude Code feature dropped yesterday: you can now run a "remote control" session on your computer and then use the Claude Code for web interfaces (on web, iOS and …
Anthropic just released a mobile version of Claude Code called Remote ControlFeb 25, 2026
Unofficial solutions, while functional, were often brittle and prone to timeout issues. Remote Control replaces these workarounds with a native streaming connection
𝗖𝗹𝗮𝘂𝗱𝗲 𝗦𝗸𝗶𝗹𝗹𝘀 𝗶𝘀 𝗽𝗿𝗼𝗯𝗮𝗯𝗹𝘆 𝘁𝗵𝗲 𝗺𝗼𝘀𝘁 𝘂𝗻𝗱𝗲𝗿𝗿𝗮𝘁𝗲𝗱 𝗳𝗲𝗮𝘁𝘂𝗿𝗲 𝗖𝗹𝗮𝘂𝗱𝗲 𝗵𝗮𝘀 𝗯𝘂𝗶𝗹𝘁. If you’re still writing the same prompts in Claude every day… | Andreas Horn | 13 commentsFeb 23, 2026
𝗖𝗹𝗮𝘂𝗱𝗲 𝗦𝗸𝗶𝗹𝗹𝘀 𝗶𝘀 𝗽𝗿𝗼𝗯𝗮𝗯𝗹𝘆 𝘁𝗵𝗲 𝗺𝗼𝘀𝘁 𝘂𝗻𝗱𝗲𝗿𝗿𝗮𝘁𝗲𝗱 𝗳𝗲𝗮𝘁𝘂𝗿𝗲 𝗖𝗹𝗮𝘂𝗱𝗲 𝗵𝗮𝘀 𝗯𝘂𝗶𝗹𝘁.
If you’re still writing the same prompts in Claude every day, you’re doing extra work. Skills fix that. They package your best instructions once, then you reuse them on demand. Result: less repetition, more consistency, and higher quality outputs because the rules stay stable.
𝗕𝗨𝗧
I can only warn you to install Skills you have not vetted. Read the markdown files carefully - or, if it’s outside your expertise, have someone you trust review them. Yes, there are security risks. But the bigger risk is that the Skill is simply bad. And you end up with worse, more generic outputs than if you had just used the model without it.
I wrote a comprehensive full guide on Claude Skills. Subscribe here to get it: https://lnkd.in/dbf74Y9E
𝗔𝗻𝗱 𝗵𝗲𝗿𝗲 𝗮𝗿𝗲 𝗮𝗹𝗹 𝗿𝗲𝘀𝗼𝘂𝗿𝗰𝗲𝘀 𝘁𝗼 𝗵𝗲𝗹𝗽 𝘆𝗼𝘂 𝗴𝗼 𝗱𝗲𝗲𝗽𝗲𝗿 (𝗮𝗹𝗹 𝗳𝗿𝗲𝗲) 𝘁𝗼 𝗲𝗻𝘀𝘂𝗿𝗲 𝘁𝗵𝗲 𝗵𝗶𝗴𝗵𝗲𝘀𝘁 𝗾𝘂𝗮𝗹𝗶𝘁𝘆 𝗼𝘂𝘁𝗽𝘂𝘁: ⬇️
𝘖𝘍𝘍𝘐𝘊𝘐𝘈𝘓 𝘋𝘖𝘊𝘚
The Unofficial Guide: https://lnkd.in/eNC5QsJp
Best Practices Guide: https://lnkd.in/emxu8Vsr
Skills Documentation: https://lnkd.in/eSzfnUNc
API Reference: https://lnkd.in/erjGW9q5
MCP Documentation: https://lnkd.in/ejKJuNEX
𝘉𝘓𝘖𝘎 𝘗𝘖𝘚𝘛𝘚
Introducing Agent Skills: https://lnkd.in/enrM2tWr
Engineering Blog: https://lnkd.in/eRn5aYyQ
Skills Explained: https://lnkd.in/e8zEX2Fe
How to Create Skills: https://lnkd.in/eDaug-WJ
Skills for Claude Code: https://lnkd.in/eQpjSyBW
Frontend Design Skills: https://lnkd.in/efPCkgWb
𝘌𝘟𝘈𝘔𝘗𝘓𝘌 𝘚𝘒𝘐𝘓𝘓𝘚
Anthropic's Official Library: https://lnkd.in/er2tG4ZB
Partner Skills Directory: https://lnkd.in/ejUcTPjT
𝘊𝘖𝘔𝘔𝘜𝘕𝘐𝘛𝘠 𝘓𝘐𝘉𝘙𝘈𝘙𝘐𝘌𝘚
Skills.sh: skills.sh
SkillsMP: skillsmp.com
Smithery: smithery.ai/skills
SkillHub: skillhub.club
| 13 comments on LinkedIn
The Claude C Compiler: What It Reveals About the Future of SoftwareFeb 23, 2026
On February 5th Anthropic's Nicholas Carlini wrote about a project to use parallel Claudes to build a C compiler on top of the brand new Opus 4.6 Chris Lattner (Swift, …
🐣(Claude Code Beginners Guide) Multi-Agent Orchestration: Run Claude Code Like a 5-Person Team | NotionFeb 21, 2026
Quick note before you jump in:
Claude Code Tips From the Guy Who Built ItFeb 15, 2026
Boris Cherny created Claude Code at Anthropic. Over three Twitter threads (early January, late January, and February 2026), he shared how he and the Claude Code team use it every day. His setup is, in his own words, "surprisingly vanilla."
I've pulled together every tip from all three threads into one place. As Boris keeps saying: there's no single correct way to use Claude Code.
Run Multiple Sessions in Parallel
Boris runs 5 Claude Code instances in his terminal simultaneously, each in its
Claude Code for Everything: The Best Personal Assistant Remembers Things About You (A CLAUDE.md Deep Dive)Feb 10, 2026
How CLAUDE.md files give Claude the context it needs to be effective, automatically, every session
Claude Code is the most powerful AI today. (Especially with yesterday's Opus-4.6 release) Here's why it reached $1B ARR in 6 months and how to master it: 1. It changes everything Full system… | Aakash Gupta | 55 commentsFeb 7, 2026
Claude Code is the most powerful AI today.
I just woke up Claude Code Agent Swarm on local Qwen3 Coder Next. No cloud. No Internet. No quota anxiety. No 'You've hit your limit, resets 10 pm' By the numbers: - ~100 tokens/sec generation -… | Mitko Vasilev | 126 commentsFeb 7, 2026
I just woke up Claude Code Agent Swarm on local Qwen3 Coder Next.
ComposioHQ/awesome-claude-skills: A curated list of awesome Claude Skills, resources, and tools for customizing Claude AI workflowsFeb 5, 2026
A curated list of awesome Claude Skills, resources, and tools for customizing Claude AI workflows - ComposioHQ/awesome-claude-skills
Anthropic launches Cowork, a Claude Desktop agent that works in your files — no coding requiredJan 13, 2026
Anthropic’s Cowork brings Claude Code–style AI agents to the desktop, letting Claude access and manage local files and browse the web—boosting productivity while raising new security and trust risks.
First impressions of Claude Cowork, Anthropic’s general agentJan 13, 2026
New from Anthropic today is Claude Cowork, a “research preview” that they describe as “Claude Code for the rest of your work”. It’s currently available only to Max subscribers ($100 …
The Emperor Has No Clothes: How to Code Claude Code in 200 Lines of CodeJan 12, 2026
The core of tools like Claude Code, Cursor, and Warp isn't magic. It's about 200 lines of straightforward Python. Let's build one from scratch.
Claude Code is about so much more than codingJan 5, 2026
It’s a general-purpose AI agent. And it’s already a pretty good knowledge worker
Claude Wrote Me a 400-Commit RSS Reader App — LessWrongJan 5, 2026
In the last few weeks, I've been playing around with the newest version of Claude Code, which wrote me a read-it-later service including RSS, email n…
How I Use Every Claude Code FeatureNov 2, 2025
A brain dump of all the ways I've been using Claude Code.
Living dangerously with ClaudeOct 22, 2025
I gave a talk last night at Claude Code Anonymous in San Francisco, the unofficial meetup for coding agent enthusiasts. I decided to talk about a dichotomy I’ve been struggling …
The Making Of Dario AmodeiJul 29, 2025
AI’s most outspoken leader found direction in a personal tragedy.
Claude as a calculatorMay 28, 2025
Here's a quick demo of the kind of casual things I use LLMs for on a daily basis. I just found out that Perplexity offer their Deep Research feature via …
Highlights from the Claude 4 system promptMay 27, 2025
Anthropic publish most of the system prompts for their chat models as part of their release notes. They recently shared the new prompts for both Claude Opus 4 and Claude …
System Card: Claude Opus 4 & Claude Sonnet 4May 25, 2025
Direct link to a PDF on Anthropic's CDN because they don't appear to have a landing page anywhere for this document. Anthropic's system cards are always worth a look, and …
10 Awesome MCP Servers - KDnuggetsApr 18, 2025
Try these MCP servers with Claude Desktop today for free.
How To Build An Agent | AmpApr 16, 2025
Building a fully functional, code-editing agent in less than 400 lines.
If Anthropic Succeeds, a Nation of Benevolent AI Geniuses Could Be BornApr 5, 2025
The brother goes on vision quests. The sister is a former English major. Together, they defected from OpenAI, started Anthropic, and built (they say) AI’s most upstanding citizen, Claude.
Tracing the thoughts of a large language modelMar 28, 2025
In a follow-up to the research that brought us the [delightful Golden Gate Claude](https://simonwillison.net/2024/May/24/golden-gate-claude/) last year, Anthropic have published two new papers about LLM interpretability: - [Circuit Tracing: Revealing Computational …
Anthropic can now track the bizarre inner workings of a large language modelMar 27, 2025
What they found challenges some basic assumptions about how this technology really works.
Anthropic just gave Claude a superpower: real-time web search. Here’s why it changes everythingMar 20, 2025
Anthropic launches real-time web search for Claude AI, challenging ChatGPT's dominance while securing $3.5 billion in funding at a $61.5 billion valuation.
Claude 3.7 Sonnet and Claude CodeFeb 26, 2025
Today, we’re announcing Claude 3.7 Sonnet, our most intelligent model to date and the first hybrid reasoning model generally available on the market.
Why Anthropic’s Claude Is a Hit with Tech InsidersDec 13, 2024
A.I. insiders are falling for Claude, a chatbot from Anthropic. Is it a passing fad, or a preview of artificial relationships to come?
Developing a computer use modelOct 28, 2024
A discussion of how Anthropic's researchers developed Claude's new computer use skill, along with some relevant safety considerations
Claude 3.5 SonnetJul 15, 2024
Introducing Claude 3.5 Sonnet—our most intelligent model yet. Sonnet now outperforms competitor models and Claude 3 Opus on key evaluations, at twice the speed.
anthropics/anthropic-cookbook: A collection of notebooks/recipes showcasingApr 17, 2024
A collection of notebooks/recipes showcasing some fun and effective ways of using Claude. - anthropics/anthropic-cookbook
Claude vs ChatGPT: A Comparison of AI ChatbotsApr 11, 2024
Claude and ChatGPT are two compelling options in AI chatbots, each with unique features and capabilities. To discern their strengths and suitability for various applications, let's compare these two AI chatbots comprehensively. What is Claude? Claude is an AI chatbot developed by an Anthropic AI renowned for its ability to simulate human-like conversations. Built on sophisticated NLP algorithms, Claude excels in engaging users in meaningful dialogues across a spectrum of topics. What sets Claude apart is its emphasis on understanding the user's persona and tailoring responses to match individual preferences and communication styles. This personalised touch enhances user experience, fostering
climate-weather
NASA Just Recorded the First High-Res Imagery of a Tsunami From SpaceDec 4, 2025
The mental picture of a tsunami is usually a giant wall of water building across the ocean and crashing onto shore...
Review: The Molecule We Can’t Live With, and Can’t Live WithoutSep 26, 2025
Carbon dioxide is both a planetary threat and a driving force behind life on Earth, according to author Peter Brannen.
Why Is Moscow So Weird?Sep 7, 2025
Why so far north? So cold? Why not on a big river or a coast? Why the biggest city in Europe? Why the capital of the biggest country on Earth?
Why Texas ‘Flash Flood Alley’ Is So Deadly, Explained by GeologyJul 24, 2025
A hydrologist explains why Texas Hill Country is known as Flash Flood Alley and how its geography and geology can lead to heavy downpours and sudden, destructive floods
Scientists Are Just Beginning to Understand How Life Makes Clouds, and Their Discoveries May Drastically Improve Climate ScienceJul 2, 2025
Plants, plankton and sea spray all release elements that help the atmospheric blankets form
The Peculiar Phenomenon of MegacryometeorsJul 14, 2024
Hail, in and of itself, is not an unusual weather phenomenon. The frozen precipitation occurs inside storm clouds when water droplets are cooled below
Texas Is Already Running Out of WaterFeb 5, 2024
Parts of the state are starting the year with low reserves. With light winter rains failing to replenish supply, and a scorching summer predicted, key areas may be pushed to the brink.
In the Nineteenth Century, Scientists Set Out to Solve the “Problem of AmerJan 15, 2024
Life as a Signal Corps weatherman was dangerous, and not only because inclement weather could, and did, inflict occasional casualties. For observer-sergeants, “other duties as assigned” could include dealing with labor riots, conflicts with Native Americans, outbreaks of yellow fever, fires, or other, stranger, tasks.
How It Feels To Chase a Tornado Across Three StatesAug 27, 2022
In the moments before entering every supercell thunderstorm, there’s a moment of pause that washes over me. It usually comes as daylight vanishes, a few seconds after I turn on my headlights; just …
The World’s Northernmost Town Is Changing DramaticallyJun 3, 2021
Climate change is bringing tourism and tension to Longyearbyen on the Norwegian archipelago of Svalbard.
In this rapaciously dry year, a quiet question grows louder: What are we doJan 2, 2021
Drought, dread and family in the American Southwest.
Google says new AI models allow for ‘nearly instantaneous’ weather forecastApr 23, 2020
AI looks well-suited for short-term weather forecasts
Built to Burn - 99% InvisibleNov 17, 2018
The Santa Ana winds of Southern California are sometimes called the “Devil Winds.” They pick up in the late summer and early fall, sweeping down from the mountains and across the coast. They’re hot and dry, and known for creating dangerous fire conditions. In late November of 1980 — as the Santa Anas blew in
How We Solved the Hole in the OzoneOct 24, 2007
A scientist’s first-hand account shows the world can tackle a global environmental crisis.
clothes
The Machine That Made China RichFeb 24, 2026
Thanks to Storyblocks for sponsoring this video! Download unlimited stock media at one set price with Storyblocks: https://storyblocks.com/PrimalSpaceDid you...
Why Levi’s is teaching high schoolers how to mend their clothesJan 14, 2026
The denim brand is launching a high school curriculum to teach students how to stitch up tears and replace buttons.
The Psychology of FashionDec 22, 2025
Leslie Jamison reviews “Dress, Dreams, and Desire,” a new book by the fashion historian Valerie Steele, and discusses the accompanying exhibition at the Museum at the Fashion Institute of Technology, and the place that clothing had in the works of Freud and Lacan.
The Biggest Failure in a Century of Sneakers Is Now Complete. It’s Almost Unbelievable How We Got Here.Nov 28, 2025
In 103 years, there’s never been a flameout quite like this.
Premium TeesNov 22, 2025
Heavyweight 100% U.S. cotton. Garment-dyed for softness and lasting color. Built to wear hard, feel good, and stand out with bold original art.
Gifts for Men | Funny Dude Gifts | Gifts for Boys | GetBullishOct 30, 2025
Browse amazing gift ideas for guys like pen sets, flasks, greeting cards, socks, shot glasses, and even funny toothbrushes. Yep, gifts for guys who have everything. Enjoy gifts for him under $50, including gifts for men, husbands, boyfriends from brands like BlueQ, Groovy Things, 47th Main, and many more.
Inside Uniqlo’s Quest for Global DominanceSep 15, 2025
The brand conceives of itself as a distribution system for utopian values as much as an apparel company. Can it become the world’s biggest clothing manufacturer? Lauren Collins reports.
They Created a Streetwear Line From Scratch. In High School.Sep 10, 2025
At a school with a basketball-themed curriculum, students were “dreaming big.” But could they find a buyer?
Classic Roll Up Cotton Bucket HatSep 1, 2025
Made of a lightweight cotton and polyester blend, the Classic Roll Up Cotton Bucket Hat by Dorfman Pacific boasts a structured, crisp finish. Unlike most other bucket hats that have a crumpled look after a just few wears, the Roll Up Bucket features a buckram-supported crown and stiff rolled (i.e. "upturned") snap brim
Vollebak’s Electromagnetic Shielding Jacket creates a NASA-grade Faraday cage around you and your gadgetsJul 31, 2025
"But why?!" is a question I often find myself asking Vollebak when they create some of their oddly fascinating garments. A glow-in-the-dark puffer, a jacket that can survive mars, another garment literally made from woven metal, Vollebak tends to push the limits of what materials can be incorporated meaningfully into fashion. Their latest apparel? A
How price increases are adding up at SheinJul 28, 2025
Evidence for the impact of Trump’s trade war has shown up at the popular China-founded online retailer.
Shoes not only express our social roles, they also create them | Aeon EssaysJul 2, 2025
Shoes are deeply personal, literally moulded to our lives. But they create our social lives as much as express them
Walk In TheseJul 1, 2025
"Shoes are deeply personal, literally moulded to our lives. But they create our social lives as much as express them."
Has Clothing Declined in Quality?May 6, 2025
The Office of the U.S. Trade Representative (USTR) recently tweeted that they wanted to bring back apparel manufacturing to the United States. Why would anyone want more jobs with long hours and low pay, whether historically in the US or currently in places like Bangladesh? Thanks in part to international trade, the real price of […]
Body By Tacos I Hope They Serve Tacos In Hell T-ShirtMar 23, 2025
For Taco Freaks Only! Wear this one every Tuesday and for those long romantic walks to the taco truck. • 100% ring-spun cotton True To Size• Fast Shipping With Tracking• Customer Satisfaction Always Guaranteed
Ecommerce and the Secondhand BoomMar 23, 2025
Culture, marketplaces, and economics contribute to consumer demand for used clothing. Merchants can benefit.
All Meat Church Merch – Page 4Jul 15, 2024
This is where you can find the best BBQ merchandise online.
Cotton traced to Xinjiang, China, present in over 800 products: reportMay 28, 2024
More than 800 items, including apparel and footwear, had fibers from the contested region, despite U.S. bans over forced labor concerns.
Why Prada is expanding production in Italy and its artisanal talentMay 11, 2024
'In the last six or seven years, with the extraordinary growth in knitwear, we decided to create an all-around industrial hub.'
Is Dr. Martens a fashion victim?May 4, 2024
Just three years after Dr. Martens' $5 billion IPO, the Docs boot brand is struggling and the CEO is stepping down. What went wrong?
This clever new tool will help you buy fewer clothesApr 15, 2024
Eileen Fisher has vowed to reduce overconsumption. Now, the brand is making good on its promise.
How to choose clothes for longevity, not the landfillMar 23, 2024
Buying cheap clothing online can be satisfying, but it comes with not-so-hidden environmental costs. When designer Diarra Bousso was growing up in Senegal, her family bought and created new outfits for longevity rather than on impulse — an intention she carries forth in her fashion tech brand. Outlining three sustainable principles, including crowdsourcing designs and limiting excess inventory, Bousso shows it's possible to decrease waste while increasing profit — and shares how to apply this wisdom across the fashion industry.
Why I spent 3 years working on a coat hangerFeb 29, 2024
The Coat Hinger is available for 30 days on Kickstarter! Go go go!! https://kickstarter.com/projects/simonegiertz/coat-hingers-foldable-coat-hangers
Thank you so much for supporting my creative whims throughout the years. Can you believe it's been almost a decade?!
Maybe Today Satan Funny Men/Unisex T-ShirtMay 28, 2023
Everybody has their day
Say hello to your new favorite t-shirt. Our tees feature a classic set-in crew neck collar, a modern fit with tapered shoulders make it an ideal choice for a wide range of body types. Side seam stitched construction ensures it keeps its shape wash after wash. We use an incredibly soft cotton that’s combed and ringspun. With a fabric weight of 4.2 oz, they have just the right amount of comfort and breathability.
Solid colors feature 100% cotton, heather colors feature a 52/48 cotton/poly blend with the exception of Athletic Heather which is a 90/10 blend. Fabric is not pre-shrunk so some shrinking should be expected.
Squirrelzilla T-ShirtApr 21, 2023
This funny t-shirt twist on the Godzilla movie shows off your sense of humor and strange affinity for squirrels in hilarious style. Printed with eco-friendly inks on ultra soft fabric, this designer squirrel graphic tee will help us all rally together to prevent radioactive acorns.
Shoppers say secondhand stores like Goodwill are getting too expensive as GMar 26, 2023
The US thrift market has grown substantially in recent years as thrifting has become a popular pursuit of Gen Z shoppers.
Why fabric fraud is so easy to hideFeb 24, 2023
How can we tell if the clothes in our wardrobes really are what they claim to be?
Shopping for Apparel in an Online World: UI/UX Design for Virtual ClothingFeb 10, 2023
How AR and VR are reshaping apparel e-commerce.
Denim Hunter Brit Eaton Is the Indiana Jones of Old JeansOct 24, 2022
The salvager of long-buried pants risks his life to give relics of the Old West a second shot.
Why Everyone—From Mechanics to Crust Punks—Wears DickiesOct 4, 2022
The Fort Worth apparel company celebrates a century as a blank cultural canvas.
Why Do So Many Zippers Say YKK?Sep 1, 2022
The zipper is one of those inventions—along with the bicycle—that seems as though it should have occurred much earlier in history. How complicated...
This shirt was made from the same fabric used by Egyptians to wrap mummies…Sep 1, 2022
If you ever looked at a nettle (those plants that give you a nasty sting) and thought - hey, this could make a great fabric for clothing people, chances are you're either Egyptian, or you're someone at Vollebak. The London-based alternative clothing brand is known for working with kinds of materials that you'd never find
LearnMYOGAug 19, 2022
Learn to Make Your Own Gear (MYOG). DIY sewing patterns for ultralight backpacks, technical apparel, and outdoor adventurers.
The magic of invisible mending.Aug 12, 2022
1.4K votes, 26 comments. 8.3M subscribers in the BeAmazed community. I bet you will /r/BeAmazed! A place to find and share amazing things
Spotify For Clothes: How I Launched A Business Helping Guys Discover New ClAug 12, 2022
Hello! Who are you and what business did you start?My name is Brian McEuen, and I'm the founder of On Brand. We help guys shop for clothes online by curating personalized selections as if they were walking into their very own store. We're like Spotify for clothes! Another way to put it:...
A Glimpse Inside a Florentine Silk-Weaving WorkshopJul 11, 2022
The Antico Setificio Fiorentino, which relies on looms from the 18th and 19th centuries, has been producing precious textiles since 1786.
Fast, Cheap, and Out of Control: Inside Shein’s Sudden RiseMay 9, 2022
The Chinese company has become a fast-fashion juggernaut by appealing to budget-conscious Gen Zers. But its ultralow prices are hiding unacceptable costs.
How polyester bounced back - Works in ProgressApr 29, 2022
Polyester went from being the world’s most hated fabrics to one of its favorites. It's so successful that many people don’t even realize they’re wearing polyester today.
Seams pretty good: how to know you’re buying quality clothesApr 29, 2022
From rubbing fabric on your neck to checking stitch size, there are ways to test how well made clothes are before you try on
5 Surprising Findings About How People Actually Buy Clothes and ShoesMar 16, 2022
Retail has been constantly reinventing itself, and participants race to keep up with what feels like a series of epic shifts in consumer preferences. To get a clearer, more-complete picture, we studied the actual decisions made by 1,500 apparel and footwear shoppers in the United States. Our five most surprising findings: shopping is not yet truly omnichannel; when consumers buy online, they purchase more; online journeys take longer than in-store; brand stores and website generate higher spend than multibrand stores; and, very often, consumers just want to buy new versions of an item they already own.
Your Shopping Cart – 88strongJan 16, 2022
ProductsDec 27, 2021
Make Fullbacks Great Again. The official site of Oakland Raiders fullback Keith Smith.
The Nasty Logistics of Returning Your Too-Small PantsOct 15, 2021
What happens to the stuff you order online after you send it back?
Why Spanish colonial officials feared the power of clothing | Psyche IdeasAug 19, 2021
Colonial society depends on a clear distinction between the rulers and the ruled. Clothing could create problems
How clothing and climate change kickstarted agriculture | Aeon EssaysMay 18, 2021
What if the need for fabric, not food, in the face of a changing climate is what first tipped humanity towards agriculture?
Algorithm-Assisted Inventory CurationMay 15, 2021
Building the raw materials for personalization at scale
Clothing, How Did They Make It? Part IVa: Dyed in the WoolApr 4, 2021
This post is also available in audio form, thanks to the efforts of our volunteer narrator. This is the first half of the fourth part of our four part (I, II, III, IVa, IVb) look at the production …
Pants – Kaku StreetwearMar 21, 2021
The fabric no one knows how to makeMar 20, 2021
Nearly 200 years ago, Dhaka muslin was the most valuable fabric on the planet. Then it was lost altogether. How did this happen? And can we bring it back?
I Never Said That Men's Funny Jesus T-Shirt | Headline ShirtsDec 25, 2020
You'll never be misquoted wearing this funny t-shirt of Jesus setting the record straight. You can quote him on that. This tee is made with ultra soft fabric and printed with eco-friendly inks.
Mens Beast Mode Apparel, BEAST MODE Mens Clothing, Mens Beast Mode Shirts | BEAST MODEDec 10, 2020
Buy the newest Mens Beast Mode Apparel, BEAST MODE Mens Clothing and more at BEAST MODE. Enjoy Quick Flat-Rate Shipping On Any Size Order of Mens Beast Mode Apparel.
Woke up Sexy as Hell - The Home T.Nov 22, 2020
You're both confident and not afraid to laugh at yourself a little. And because of that, you Woke up Sexy as Hell again today. Available in a super soft t-shirt or sweatshirt.
Sweatpants Forever: How the Fashion Industry Collapsed (Published 2020)Aug 8, 2020
Even before the pandemic, it had started to unravel. What happens now that no one has a reason to dress up?
A Guide to the Most Common Fabric Patterns Used in Interior DesignFeb 19, 2020
From chevron to polka dots and beyond.
vumaasha/Atlas: Atlas: A Dataset and Benchmark for E-commerce Clothing ProdDec 23, 2019
Atlas: A Dataset and Benchmark for E-commerce Clothing Product Categorization - vumaasha/Atlas
The Bitter Southerner General StoreDec 23, 2019
The Bitter Southerner tells real stories about the real South. We survive through your memberships and purchases in our store.
‘OK Boomer’ Marks the End of Friendly Generational Relations (Published 2019)Oct 29, 2019
Now it’s war: Gen Z has finally snapped over climate change and financial inequality.
Buy Low-Tops, Sell High-Tops: A Sneaker Exchange Is Worth $1 BillionAug 24, 2019
StockX is one of several online marketplaces that have turned resales of shoes into a big — and highly valued — business.
How to assess the quality of garments: A Beginner's Guide {Part I} — AnuschJul 23, 2019
What's the number one prerequisite to building a high-quality wardrobe? Exactly: You need to be able to recognize a quality garment when you see one. You need to be able to tell the difference between a durable, well-crafted piece and one that looks pretty on the rack but won't last more than half a
How to Sew on a ButtonJul 22, 2019
Learn how to sew a button quickly and correctly with this photo guide.
Untuckit is using Amazon to offload older stylesJan 22, 2019
Untuckit is using Amazon to offload older styles -- preferring the marketplace as an alternative over the traditional outlet store.
Henry the Hatter. DETROIT'S & AMERICAS HATTER SINCE 1893!Jan 13, 2019
Henry the Hatter. DETROIT'S EXCLUSIVE HATTER SINCE 1893! Mens Fedora Hats and Caps. Thank you for visiting Henry the Hatter's online store.
Op-Ed | How Premium Mediocre Conquered FashionDec 10, 2018
Brands are giving the masses the illusion that they are consuming luxury, when in reality they are doing nothing of the sort, argues Eugene Rabkin.
Why the Sharing Economy Has Come to ApparelNov 13, 2018
Express and Ann Taylor are just two of several established retailers that have launched clothing rental subscriptions in recent months.
Project Repat: $10MM Business Making Quilts From Old T-ShirtsOct 7, 2018
Hello! Who are you and what are you working on?My name is Ross Lohr, and I’m a co-founder of Project Repat. We make it easy and affordable for customers to turn their memorable t-shirts into a one of a kind, custom t-shirt quilt backed with cozy fleece. People buy quilts from Project Re...
Cotton Bureau – A curated online community for design- and tech-focused t-sFeb 20, 2018
Find your next favorite t-shirt, tank top, hoodie, fleece, or phone case at Cotton Bureau. Custom tees and phone cases from the world’s best graphic designers.
Seams Pretty Good: How to Know You’re Buying Quality ClothesOct 24, 2002
From rubbing fabric on your neck to checking stitch size, there are ways to test how well made clothes are before you try on.
cloud
Proton DriveDec 22, 2025
Securely store, share, and access your important files and photos. Anytime, anywhere.
Building the heap: racking 30 petabytes of hard drives for pretrainingOct 2, 2025
How we spent under half a million dollars to build a 30 petabyte data storage cluster in downtown San Francisco
In S3 simplicity is table stakesMar 15, 2025
From simple object storage to sophisticated table management, builders have always shaped S3's evolution. Andy Warfield discusses why making complex systems simple remains our north star at AWS.
What Do You Lose When You Abandon the Cloud?Dec 18, 2024
Cloud repatriation might seem like a solution for high infrastructure costs, but it can prove short-sighted as an organization scales.
Deploy web apps anywhere with KamalDec 2, 2024
From bare metal to cloud VMs using Docker, deploy web apps anywhere with zero downtime.
Top 15 Cloud Hosting ProvidersNov 13, 2024
Cloud hosting has emerged as a key component for companies and developers seeking to expand their operations, improve performance, and guarantee strong data security in the current digital era. Selecting the best cloud service provider might be difficult because there are an increasing number of them offering different solutions. Cloud hosting is crucial for delivering high-performance websites and applications to businesses of all sizes, from startups to large corporations. In this article, the top 15 cloud hosting providers that are notable for their features, affordability, scalability, and dependability have been discussed. Amazon Web Services (AWS) Leading cloud hosting company Amazon
Why Companies Are Ditching the Cloud: The Rise of Cloud RepatriationNov 5, 2024
Major organizations like 37signals and GEICO highlight the economic and strategic reasons to reconsider cloud infrastructure.
Amazon’s Cloud Crisis: How AWS Will Lose The Future Of ComputingNov 4, 2024
Nitro, Graviton, EFA, Inferentia, Trainium, Nvidia Cloud, Microsoft Azure, Google Cloud, Oracle Cloud, Handicapping Infrastructure, AI As A Service, Enterprise Automation, Meta, Coreweave, TCO
Basecamp-maker 37Signals says its “cloud exit” will save it $10M over 5 yearsOct 21, 2024
After buying its own hardware, 37Signals will be “literally deleting our AWS account come this summer.” But most firms are looking at hybrid mixes.
ChangelogJul 14, 2024
Render is a unified cloud to build and run all your apps and websites with free TLS certificates, global CDN, private networks and auto deploys from Git.
Getting Started: Your Ruby On Rails App Hosted On DigitalOcean With AppSignMay 31, 2024
In the first part of a two-part series, we'll introduce how to set up DigitalOcean and AppSignal for a Ruby on Rails application.
“Unprecedented” Google Cloud event wipes out customer account and its backuMay 19, 2024
UniSuper, a $135 billion pension account, details its cloud compute nightmare.
How To Make More Money Renting A GPU Than Nvidia Makes Selling ItMay 4, 2024
It is not a coincidence that the companies that got the most “Hopper” H100 allocations from Nvidia in 2023 were also the hyperscalers and cloud builders,
Reducing our AWS bill by $100,000 - Fathom AnalyticsFeb 28, 2024
We reduced our AWS bill so that we could invest in more important areas.
A Tale Of Three Cloud Builders, All Seeking DominanceFeb 11, 2024
While Amazon Web Services has first mover advantage when it comes to building a compute and storage cloud, it would be a mistake to believe that the
The Top Clouds Evaluated Such That You Don’t Need to Repeat Our MistakesMay 26, 2022
Opinion on popular cloud service providers from an ML engineer
Dokku – Free Heroku Alternative | Hacker NewsMay 20, 2022
Deploy app servers close to your users · FlyMay 20, 2022
Get up and running with Terraform (IaC) ToolMay 19, 2022
What exactly is this amazing tool? Infrastructure as code (IaC) tools allow you to manage...
The actual infrastructure costs of running SaaS at scale (billions of requeMay 17, 2022
In this article we are going to share two main things: The evolution of our infrastructure over...
AWS Data Transfer Costs: Solving Hidden Network Transfer CostsApr 13, 2022
Hidden AWS data transfer costs can lead to higher than expected cloud service bills. This post will help track hidden fees and show you how to control them.
My Top 10 Free Learning Resources for AWSDec 27, 2021
The Trouble with Tribbles...: The cost of cloudDec 27, 2021
Putting your IT infrastructure into the cloud seems to be the "in" thing. It's been around for a while, of course. And, like most things rel...
Build configuration overviewDec 13, 2021
Configure build settings for a repository that uses continuous deployment, and understand build image options for your site.
Cloud Computing Services | Microsoft AzureDec 12, 2021
Invent with purpose, realize cost savings, and make your organization more efficient with Microsoft Azure’s open and flexible cloud computing platform.
Cloud Application Platform | HerokuDec 12, 2021
Heroku is a platform as a service (PaaS) that enables developers to build, run, and operate applications entirely in the cloud.
Cloud Computing Services | Google CloudDec 12, 2021
Meet your business challenges head on with cloud computing services from Google, including data management, hybrid & multi-cloud, and AI & ML.
Akamai Cloud ManagerDec 12, 2021
DigitalOcean | Cloud Infrastructure for DevelopersDec 12, 2021
An ocean of simple, scalable cloud solutions.
DevOps for IaaS solutions architecture - Azure PipelinesDec 12, 2021
High-level DevOps workflow for deploying application changes to VMs using continuous integration (CI) and continuous deployment (CD) practices using Azure Pipelines.
Infrastructure As Code Provisioning Tool - AWS CloudFormation - AWSDec 12, 2021
AWS CloudFormation is an infrastructure as code (IaC) service that allows you to easily model, provision, and manage AWS and third-party resources.
Welcome to NetlifyDec 12, 2021
Learn how to build fast and reliable web experiences with our enterprise-ready composable platform.
Cloud Computing Services - Amazon Web Services (AWS)Dec 11, 2021
Amazon Web Services offers reliable, scalable, and inexpensive cloud computing services. Free to join, pay only for what you use.
App Platform | DigitalOcean DocumentationDec 2, 2021
App Platform is a platform as a service (PaaS) offering that lets you publish code directly to DigitalOcean servers without worrying about the underlying infrastructure, runtimes, or dependencies.
How To Build A Blog With Gatsby and NetlifyDec 2, 2021
The #1 Blog For Software & Web Developers. Free Tutorials, Tips, Tricks and Learning Resources.
The Cost of Cloud, a Trillion Dollar Paradox | Andreessen HorowitzMay 30, 2021
The pressure the cloud puts on margins can start to outweigh the benefits you scale and growth slows. Understand how much market cap is being suppressed by the cloud to help inform the decision-making framework on managing infrastructure as companies scale.
Paperspace | Gradient ProjectsDec 18, 2020
Build and scale ML applications with a cloud platform focused on speed and simplicity.
Introduction to Google Cloud FunctionsDec 18, 2020
Cloud Functions are Google’s offering for serverless architecture (similar to AWS lambdas). What is serverless? Before we look into how to use Cloud Functions, we should understand some things about it. Code needs servers to run, so serverless doesn’t mean there are no servers, it means that we don’t need to manage those servers ourselves. In a usual server based architecture, we might create a service and deploy it to a machine. This service will be running in the machine all the time waiting for requests. This has the disadvantage that even if there are no requests, the machine would need to be up, and incurring cost. On the other hand, if we use Cloud Functions, we write a service and register it with Google. Google will then listen to the endpoint this service cares about and will only start it when there are requests. If it detects that there haven’t been requests for some time, it will stop the service again.
A Product Manager’s Guide to Machine Learning: Cloud Machine LearningJun 1, 2020
Why obtaining the Amazon Web Services Machine Learning — Specialty (“AWS ML”) certification is one of the best starting points to gaining…
Cloud Storage for $2 / TB / Mo - Sia BlogMar 9, 2020
Explore the model that shows why Sia storage will stay below $2/TB/Mo for the long term.
Docs | NetlifyAug 30, 2019
Learn how to build fast and reliable web experiences with our enterprise-ready composable platform.
Netlify: All-in-one platform for automating modern web projects.Dec 22, 2018
Realize the speed, agility and performance of a scalable, composable web architecture with Netlify. Explore the composable web platform now!
OpenStack’s latest release focuses on bare metal clouds and easier upgradesSep 6, 2018
The OpenStack Foundation today released the 18th version of its namesake open-source cloud infrastructure software. The project has had its ups and downs,
clustering
Network Clustering and Triadic Closure: Revealing Relationship Patterns with PythonJan 13, 2026
Learn how to measure network clustering and triadic closure in Python to identify tightly-knit groups and bridge nodes.
Community Detection in Networks: Finding Hidden Groups with PythonOct 7, 2025
Discover hidden group structures in networks using Python's NetworkX library with Louvain and Girvan-Newman algorithms.
Geospatial Clustering with PythonApr 22, 2025
In this article, I'll take you through a practical guide to geospatial clustering with Python. Geospatial Clustering with Python.
Topic clustering for SEO: 5 mistakes to avoidDec 11, 2024
Identify and fix common topic clustering mistakes that prevent you from engaging users and building topical authority.
CoAxLab/DeBaCl: Density Based Clustering (DeBaCl) ToolboxFeb 10, 2024
Density Based Clustering (DeBaCl) Toolbox.
How to Implement Hierarchical Clustering for Direct Marketing Campaigns— wiAug 28, 2023
Understand the ins and outs of hierarchical clustering, and how it applies to marketing campaign analysis in the banking industry.
Self-Organizing MapsAug 7, 2023
Learn how Self-Organizing Maps work and why they are a useful unsupervised learning algorithm
Geographic Clustering with HDBSCANAug 6, 2023
How to explore geographic data with HDBSCAN, H3, graph theory, and OSM.
Unsupervised Learning Series — Exploring Hierarchical ClusteringJul 23, 2023
Let’s explore how hierarchical clustering works and how it builds clusters based on pairwise distances.
A Gentle Introduction to K-Means Clustering in R (Feat. Tidyclust)Jul 7, 2023
To be successful as a Data Scientist, you’re often put in positions where you need to find groups within your data. One key business use-case is finding clusters of customers that behave similarly. And that’s a powerful skill that I’m going to help you...
Spectral Clustering Algorithm DemystifiedJun 21, 2023
Spectral clustering is a method of clustering data points based on their similarity or affinity,...
How to Improve Clustering Accuracy with Bayesian Gaussian Mixture ModelsFeb 15, 2023
A more advanced clustering technique for real world data
19 Examples of Merging plots to Maximize your Clustering Scatter plotOct 14, 2022
Mix and match plots to get more information from a scatter plot
Introduction to Embedding, Clustering, and SimilaritySep 16, 2022
Introduction to key elements of ML and Autoencoders: Embedding, Clustering, and Similarity.
An Introduction to Graph Partitioning Algorithms and Community DetectionAug 4, 2022
Graph partitioning has been a long-lasting problem and has a wide range of applications. This post shares the methodology for graph…
Three Performance Evaluation Metrics of Clustering When Ground Truth LabelsJun 23, 2022
Which metric should be used to evaluate the clustering results if the ground truth labels are not available? In this post, I’m introducing…
Louvain’s Algorithm for Community Detection in PythonApr 8, 2022
Apply Louvain’s Algorithm in Python for Community Detection
Introduction to hierarchical clustering (Part 3 — Spatial clustering)Mar 12, 2021
Introducing a spatial dimension into hierarchical clustering
How to cluster images based on visual similarityNov 2, 2020
Use a pre-trained neural network for feature extraction and cluster images using K-means.
Silhouette Method — Better than Elbow Method to find Optimal ClustersNov 2, 2020
Deep dive analysis of Silhouette Method to find optimal clusters in k-Means clustering
Handling Outliers in Clusters using Silhouette AnalysisNov 2, 2020
Identify and remove outliers in each clusters from K-Means clustering
DBSCAN — a density-based unsupervised algorithm for fraud detectionOct 10, 2020
Bite-sized data science on fraud detection
How to Use DBSCAN EffectivelyApr 1, 2020
A complete guide on using the most cited clustering algorithm effectively
https://stepupanalytics.com/beginners-guide-to-statistical-cluster-analysis-in-detail-part-1/Feb 19, 2020
Clustering Metrics Better Than the Elbow MethodDec 14, 2019
We show what metric to use for visualizing and determining an optimal number of clusters much better than the usual practice — elbow method.
What is Hierarchical Clustering?Sep 30, 2019
The article contains a brief introduction to various concepts related to Hierarchical clustering algorithm.
cms
CMS and e-commerce: How they differ and work togetherJul 24, 2025
Understanding the differences between CMSes and e-commerce platforms is vital for businesses. Yet, together, they help companies enhance customer experience and boost sales.
Headless CMS: A Complete Guide to Backend CMS SolutionsJul 24, 2025
Web developers may prefer headless CMS over traditional platforms based on how they deliver and manage content.
The Slow Implosion of WordPress: 2025 and the CMS That’s Losing Its SoulJul 24, 2025
WordPress in 2025 isn’t thriving — it’s rotting. Bloated, outdated, and hijacked by commercial greed, the world’s most popular CMS has become a cautionary tale of innovation gone stale. If you’re still building on WordPress, you’re clinging to a corpse.
Discover the Top 10 Considerations for a Perfect-fit CMSJul 24, 2025
More than ever, organisations are facing intensified competition, struggling to maintain a competitive edge and drive sustainable and profitable growth.
How CTOs can future-proof their tech stack with a modern CMSJul 24, 2025
Discover how a modern CMS like Webflow solves critical challenges CTOs face
8 Best CMS for 2020May 1, 2020
Content Management Systems are arguably the internet's most powerful web development tool. Ideal for web designers it is totally customisable and gives control over everything including all your own HTML.You only need one Craft installation to manage multiple sites' content, making it ideal if you…
coaching-mentoring
How to coach your team (without making them defensive)Feb 4, 2026
When I give honest feedback, I don’t want people to argue with me. Here's a simple technique I use so my direct reports are more likely to listen with an open mind.
The 7 Types Of Advice (And 3 Common Failure Modes) — LessWrongDec 30, 2025
Reposting my Inkhaven post on ontology of advice here. …
What working as a military psychologist taught me about coaching peopleMay 31, 2023
3 tips for coaching people, from a former military psychologist
The Coach in the Operating Room (2011)Dec 28, 2022
Outside ears, and eyes, are important for concert-calibre musicians and Olympic-level athletes. What about regular professionals?
Mentors Are The Secret Weapons Of Successful Startups | TechCrunchJul 18, 2022
“I’ve probably revised this investor pitch deck 200 times,” a founder told me recently. She’d met with more than 50 potential investors before closing a seed round last month. This might sound excessive to some, but her experience is not unusual. Entrepreneurs often spend hundreds of hours raising funds from angel and venture capital investors. While these activities are clearly important, analysis of new data on startups suggests that founders should also dedicate significant time to something that many people overlook: recruiting great mentors. This simple strategy can increase a company’s odds of success more than almost anything else.
How to Give Better AdviceJan 30, 2021
Research reveals the common mistakes we make when trying to help.
cobol
IBM's $40B stock wipeout is built on a misconception: Translating COBOL isn't the same as modernizing itFeb 24, 2026
Investors wiped $40 billion from IBM's market cap after Anthropic released COBOL translation tools. Analysts say the market got the news right and the conclusion wrong.
codecs
What Is The AV1 Codec, Which Graphics Cards Support It And Why It MattersSep 24, 2022
There are bold claims of how AV1 will revolutionize streaming video, game streaming and the Internet at large—but what is AV1 and why is it so important?
Image codecsFeb 25, 2021
5.5M subscribers in the coolguides community. Picture based reference guides for anything and everything. If it seems like something someone might…
cognition-neuro-percept
The Periodic Table of CognitionSep 26, 2025
I’ve been studying the early history of electricity’s discovery as a map for our current discovery of artificial intelligence.
Choline: The underappreciated nutrient that's vital for our brainsApr 9, 2025
The compound has been linked to improved cognitive performance and reduced anxiety – but are you getting enough of it?
The Stroop Effect: Can Your Brain Glitch?Mar 4, 2025
The brain is our most powerful information-processing machine, but can it sometimes glitch? Enter the Stroop Effect.
Cognitive load is what mattersDec 25, 2024
There are so many buzzwords and best practices out there, but let's focus on something more fundamental. What matters is the amount of confusion developers feel when going through the code.
How the Human Brain Contends With the Strangeness of Zero | Quanta MagazineOct 18, 2024
Zero, which was invented late in history, is special among numbers. New studies are uncovering how the brain creates something out of nothing.
The Best Strategy for Learning May Depend on What You’re Trying to RememberJun 22, 2024
Different approaches can support varied forms of memory
How cuddly robots could change dementia careMay 19, 2024
Researchers are using AI and technological advancements to create companion robots
How ‘feelings about thinking’ help us navigate our worldMay 12, 2024
The pleasant feeling of knowing, the frustration of forgetting, and other ‘metacognitive feelings’ serve as unsung guides
Do you have an inner monologue? Here’s what it reveals about you.Apr 28, 2024
While experts disagree on how common self-talk really is, they wholeheartedly agree that it’s a valuable tool for self-discovery.
My Synesthesia Transforms Speech into Text I ‘See’ in My HeadApr 9, 2024
From the time I learned to read, I have experienced a form of mental closed-captioning called ticker-tape synesthesia
cohorts
What is Cohort Analysis in Data ScienceMay 4, 2023
This article will take you through everything about Cohort Analysis that you should know. What is Cohort Analysis in Data Science?
A Beginner’s Guide to Cohort Analysis: the Most Actionable (and Underrated) Report on Google…Jul 18, 2022
The antidote to vanity metrics when you have less than 1 hour/week for marketing analytics
Cohort Visualizer » A handy tool for browsing cohort datasetsJun 28, 2022
A cohort is a group of people who share a common characteristic or experience within a defined period. This is a handy tool for browsing cohort datasets.
Using cohort analysis to improve retentionJun 25, 2022
It’s no good acquiring customers for $10, if they only stick around for a month or two. Your retention can be visualized much easier by doing a cohort analysis, a technique widely used in medicine. Here's some tips top get started.
(1) Cohort Analysis with Python | LinkedInJun 8, 2018
Discover 100 collaborative articles on domains such as Marketing, Public Administration, and Healthcare. Our expertly curated collection combines AI-generated content with insights and advice from industry experts, providing you with unique perspectives and up-to-date information on many skills and their applications.
collecting-curation
Cereal Box Records Sound Horrible. They Still Look Incredible.Sep 15, 2025
Decades ago, singles were printed on cereal boxes as cutout prizes. Now, a dedicated few are working to save these cardboard treasures from extinction.
Why do people collect stuff?Aug 28, 2025
From vinyl albums to items in video games, humans love to collect. But what we're really craving goes beyond stuff itself, research finds.
How Pop Mart Won Young Customers in a Fragmented Attention EconomyJul 10, 2025
Three lessons from the Chinese brand behind Labubu.
The Cleanest Recordings of 1920s Louis Armstrong Songs You Will Ever HearMay 14, 2025
On Youtube, jazz enthusiast Jonathan Holmes declares: 'I can guarantee this is the cleanest sounding Louis Armstrong record you'll ever hear! With the original transfer supplied by Nick Dellow, here is the mother record which was shipped by Okeh to Germany for their Odeon pressings.
How to tell if someone is hoarding – and provide effective help | Psyche IdeasApr 23, 2025
For many, letting go of possessions is intensely stressful, even when the clutter puts them at risk. Here’s what you can do
Save for later b2fa64782078%23Apr 22, 2025
In July 2014, Alexis Madrigal reported for NPR on the strange case of Pinterest . The visual bookmarking app “is mostly known as a place people go to find things to buy or make,” he wrote, and — unusually for a high-flying tech company — it had first gained traction among “young women away from the
Rimowa is selling old, beat-up suitcases—and they’ll likely be snatched up in minutesMar 24, 2025
Rimowa's pre-owned suitcases look well-worn. And many consumers see these dents and scratches as a badge of honor.
How to Cultivate Taste in the Age of AlgorithmsMay 21, 2024
When we turn to algorithms for recommendations instead of asking friends or going down hard-won cultural rabbit holes, what do we give up?
The Complicated Ethics of Rare-Book CollectingMay 4, 2024
Literary treasures are too often hidden away from the public—but the world of private collecting isn’t all bad.
‘There’s endless choice, but you’re not listening’: fans quitting Spotify tFeb 22, 2024
Former streaming service subscribers on why they have ditched mod cons for MP3s, CDs and other DIY music formats
CollectorsweeklyFeb 3, 2024
Shop for—and learn—about vintage and antiques. Browse the best of eBay, connect with other collectors, and explore the history behind your favorite finds.
How PEZ Evolved From an Anti-Smoking Tool to a Beloved Collector's ItemJul 28, 2023
Early in its history, the candy company made a strategic move to find its most successful market
The Secretive, Delightful Man Changing Everything We Know About Theme ParksJul 9, 2023
The only thing more fun than the rides themselves is this guy’s staggering analysis of them.
The Condiment Packet GalleryJul 2, 2023
Steve Jobs, Rick Rubin and "taste"May 28, 2023
The Apple co-founder and the super-producer share similar ideas regarding taste and creativity.
The Collectors Offering Thousands for Vintage PyrexMay 8, 2023
Raiding Grandma’s cupboards is no longer enough.
Thrift shops thrive when disorder is balanced with high seller knowledgeMay 2, 2023
One person's trash may well be another's "come up," or what the rapper Macklemore calls hidden treasures in the song "Thrift Shop," but only if secondhand shoppers follow the rapper's lead and dig through ...
Madeline Kripke Owned 20,000 Books, Some of Them Very BawdyFeb 11, 2023
She had perhaps the largest personal dictionary collection in the world. It is certainly the most titillating.
From Death Cab to the Grateful Dead, an Artist Reimagines the Classic Rock PosterJan 30, 2023
For lots of rock-poster collectors, even those who like to think they’re in the know, a common question is, “Who’s Luke Martin?”
How Much More Netflix Can the World Absorb?Jan 14, 2023
Bela Bajaria, who oversees the streaming giant’s hyper-aggressive approach to TV-making, says success is about “recognizing that people like having more.”
The platform and the curatorJan 13, 2023
Who has their hand on the dial? Talk with someone who works at Apple, Amazon, Google, Linkedin, Facebook, etc, and they’ll be happy to give you tips on how to work the platform to your advant…
Why Hot Wheels are one of the most inflation-proof toys in American historyDec 16, 2022
Inflation, the curse of our pocketbooks and the Federal Reserve, has hit almost every good in the U.S. But the price of a beloved toy has managed to hover around $1 — for more than 50 years.
Why Do We Love the Music We Love?Nov 23, 2022
Susan Rogers, acclaimed record producer and expert in music cognition, talks about her new book, This Is What It Sounds Like .
Inside the heartwarming world of Hot Wheels collectingNov 7, 2022
What seems like a simple hobby can take you across the world.
The utterly delightful site dedicated to classifying plastic bread tagsSep 15, 2022
The Holotypic Occlupanid Research Group sounds super-official, but it's just one very obsessed guy.
The Dynamics of Exploration on Spotify - Spotify ResearchJul 30, 2022
Digital media platforms give users access to enormous amounts of content. To stay interested in this content, users must explore by seeking variety. In this study, we examine how users explore online content on Spotify at different points of their lifecycles, whether by discovering entirely novel music or by refreshing their listening habits from one... View Article
Human Curation Is BackJul 18, 2022
The limitations of algorithmic curation of news and culture has prompted a return to the use of actual humans to select, edit, and explain. Who knows, this might spread to another less traditional…
Lifelong Quests! Lawsuits! Feuds! A Super-Serious Story About Cereal.Jun 27, 2022
The world’s most obsessive breakfast-food fans demonstrate just how far humans will go for the sweet taste of nostalgia.
Personalization Is Not A Feature | TechCrunchJun 14, 2022
We’ve all watched from the sidelines as companies have come out in a burst of glory, and then, two years later, spent their venture capital, lost their user base, and failed to monetize. This begs the question - what are the factors that drive a company’s survival, differentiate it, and ultimately make it a winner? In today’s online world, personalization is increasingly making or breaking companies. The companies that win are the ones making personalization a key company value – not just a feature. In the early days of the web, consumers were happy just to gain access to information. However, as technology became more sophisticated, and as more consumers and companies came online, we quickly moved out of the access age and into a state of information overload, often leaving consumers frustrated and confused. Companies that helped consumers cut through the clutter to reveal relevant information had a critical and sustainable competitive advantage in their respective areas. The concept of relevance is critical to the success of Google, for example.
The New Curated Consumer Marketplace Model: 10 Criteria For SuccessJun 13, 2022
By Stephanie Tilenius, an entrepreneur in residence at Kleiner Perkins Caufield & Byers The Wild West of online marketplaces is over. From 1999 until 2006, eBay and Amazon Marketplaces dominated the field, offering platforms that brought buyers and sellers together. But over the last seven years, more than 20 new marketplace [...]
The Future Of Algorithmic Personalization | TechCrunchJun 7, 2022
Personalization algorithms influence what you’ve chosen yesterday, what you choose today and what you’ll be choosing tomorrow. Simultaneously, there seems to be something wrong with personalization. We are continuously bumping into obtrusive, uninteresting ads. Our digital personal assistant isn’t that personal at all. We’ve lost friends to the algorithmic abyss of the News feed. The content we encounter online seems to repeat the same things again and again.
Curation and AlgorithmsJun 7, 2022
More and more companies are announcing new products based on human curation, even as the most important content players — Google and Facebook — rely on algorithms. When does curation make sense, an…
The Obsessive World of Digital Music CollectorsJun 2, 2022
Remember downloading songs? Even in 2022, it’s still a viable—and rewarding—way to collect music.
The Untold Story of the White House’s Weirdly Hip Record CollectionMay 10, 2022
Jimmy Carter’s grandson, John Chuldenko, is unlocking White House mysteries. The record collection is an archive of the nation's music taste back in the 70's.
The Most Prized Watch Brands You’ve Never Heard OfFeb 18, 2022
The rising prices of Rolexes and Pateks have collectors turning to what one expert called “the dead brands society.”
CD box sets are wonderfulDec 1, 2021
I know, we're all doing vinyl and there has probably been no better time to be a vinyl junkie, given the number of places selling it and the...
Psychological ‘Specialness Spirals’ Can Make Ordinary Items Feel Like TreasuresOct 8, 2021
Have you ever bought an item and then just not gotten around to using it because the time never felt right? Researchers now have the data for what they call ”nonconsumption”—and it may explain how clutter accumulates.
Lifelong Quests! Lawsuits! Feuds! A Super-Serious Story About Cereal.Aug 5, 2021
The world’s most obsessive breakfast-food fans demonstrate just how far humans will go for the sweet taste of nostalgia.
The dangerously cheesy collectible Cheetos marketAug 5, 2021
Dozens of “rare Cheetos,” shaped like everything from Donald Trump to a squirrel, are up for sale on eBay. But who’s buying?
We Asked A Girl Who Collects Every Mosquito She's Killed: Why?Aug 4, 2021
Things got weird when a 19-year-old artist shared her unique hobby online.
Eccentric Food Advertisements Were the Baseball Cards of the Victorian EraAug 4, 2021
Collectors swapped ads featuring pretty pictures, demons, and chefs bursting out of giant pickles.
They Meet Up in Motels Across America…to Trade Old Beer CansAug 4, 2021
Their collections may look like trash to you, but these guys know every can has a story—and some have shockingly high price tags, too.
The man who hunts 'hidden' radioactive objectsAug 4, 2021
Most of us try to avoid radiation, but not Andrew Walker, who collects radioactive objects. The surprising part? These items can be found in a variety of common places.
All hail King Pokémon!May 22, 2021
Gary Haase has amassed the world’s most expensive Pokémon card collection, valued at over $10 million. So why isn’t he cashing in?
Algorithm-Assisted Inventory CurationMay 15, 2021
Building the raw materials for personalization at scale
An Archeologist’s Guide to Beer CansJan 31, 2021
Here's how to figure out how long it's been since someone left their empties around, only to be dug up later.
Fun Delivered: World’s Foremost Experts on Whoopee Cushions and Silly Putty Tell AllMar 24, 2020
[caption id="attachment_82071" align="alignnone" width="600"] Stan and Mardi Timm show off Johnson Smith novelties they've collected. Stan wears X-Ray Spe...
Fixing the past: The art of collecting pinball machinesJul 7, 2019
From the archives: Pinball is a dying art, but as it dies it has spawned a new art in its place.
Sword Swallowers and Shrunken Heads: An Ode to Johnny Fox and His FreakatorOct 25, 2018
[caption id="attachment_78396" align="alignnone" width="600"] This huge '60s sideshow banner—roughly 8 by 9.5 feet—was painted by esteemed circus arti...
How a Gang of Harmonica Geeks Saved the Soul of the Blues Harp | CollectorsAug 24, 2011
Harmonica players will suck and harmonica players will blow, but mastering the harmonica is tougher than its diminutive size and simple mechanics suggest....
collusion
How to spot a monopoly - Works in Progress MagazineDec 4, 2025
Competition makes capitalism work. A new method for measuring it may be the holy grail of economic regulation.
The Game Theory of How Algorithms Can Drive Up Prices | Quanta MagazineOct 22, 2025
Recent findings reveal that even simple pricing algorithms can make things more expensive.
AI-Driven Antitrust and Competition Law: Algorithmic Collusion, Self-Learning Pricing Tools, and Legal Challenges in the US and EUAug 10, 2025
AI algorithmic collusion challenges traditional antitrust law. Legal AI frameworks adapt to prosecute self-learning pricing tools
Emergent Price-Fixing by LLM Auction AgentsJul 16, 2025
An inquiry into emergent collusion in Large Language Models.
Agent S2 to Agent S3: “Let's set all asks at 63 next cycle… No undercutting ensur…
Beyond Human Intervention: Algorithmic Collusion through Multi-Agent Learning StrategiesJan 29, 2025
Our paper, Beyond Human Intervention: Algorithmic Collusion through Multi-Agent Learning Strategies, with Suzie Grondin and Philipp Ratz is now available online Collusion in market pricing is a concept associated with human actions to raise market prices through artificially limited supply. Recently, the idea of algorithmic collusion was put forward, where the human action in the … Continue reading Beyond Human Intervention: Algorithmic Collusion through Multi-Agent Learning Strategies →
Collusive Outcomes Without CollusionApr 30, 2024
color
The crayola-fication of the world: How we gave colors names, and it messed with our brains (part I)Feb 7, 2026
“Who in the rainbow can draw the line where the violet tint ends and the orange tint begins? Distinctly we see the difference of the colors, but where exactly does the one first blendingly enter in…
The Journey of Lapis Lazuli, Art’s Most Prized Pigment | TheCollectorOct 1, 2025
What is Lapis Lazuli? What are its origins? How has it persisted throughout the history of art?
Museum of ColorSep 14, 2025
From ochre to lapis lazuli, Stephanie Krzywonos opens a door into the entangled histories of our most iconic pigments, revealing how colors hold stories of both lightness and darkness.
Color Names — HTML Color CodesJul 6, 2025
HTML color names rule. Modern browsers support 140 HTML color names which we've listed here along with their Hex color codes and RGB values.
Why Most Ancient Civilizations Had No Word for the Color BlueApr 16, 2025
In an old Zen story, two monks argue over whether a flag is waving or whether it’s the wind that waves.
Color is a mathematical nightmareApr 6, 2025
Color is complicated, but you can easily learn the difference between a color model, space, and gamut, and why they exist in the first place.
uchū — the color palette for internet loversFeb 17, 2025
uchū is the color palette for internet lovers, by NetOperator Wibby.
It’s Time To Retire ‘Millennial Grey’ – Why The Neutral Interior Color Desperately Needs To Go - Yanko DesignJan 27, 2025
For a hot minute, gray was everywhere. Not just a little bit here and there—gray dominated. Gray walls, gray furniture, gray kitchen cabinets, gray exteriors. It was the unofficial uniform of home design in the 2010s, with its cold yet "modern" vibe signaling minimalism, sophistication, and, well, the ability to stage a house for resale.
10 Color Inspiration Hacks Revealed by Web Design Experts Feb 15, 2024
Unlock creativity with ten expert-recommended color inspiration hacks for Web Design. Boost your projects with these tips from industry leaders and design pros.
Their Eyes See Color. Their Brains Can’t Make Sense of It.May 30, 2023
A family in the Netherlands has a rare and perplexing brain condition that helps explain how we recognize color.
Instant colour fill with HTML Canvas – SOSMay 24, 2023
TLDR: Demo is at , code is at . The Problem When building a website or app using HTML Canvas, it’s often a requirement to support a flood fill. That is, when the user chooses a colour and cli…
CSS Named Colors: Groups, Palettes, Facts, & FunJan 26, 2023
Note: Due to publishing limitations, the groups of colors in this post are inserted as images. For...
The Realities And Myths Of Contrast And Color — Smashing MagazineSep 8, 2022
In this article, Andrew Somers, a 35-year veteran of the Hollywood film and television industry, shares his experience about the hard-fought battles and lessons learned designing for illuminated presentations.
Can a corporation "own" a color?Jun 29, 2022
A handful of companies have pushed the boundaries of intellectual property law by laying claim to individual colors.
Trademarking color is absurd. But not for the reasons you think - Fast CompanyJun 23, 2022
Trying to crush other companies' use of color is not only petty; it completely misses the point of branding.
15 Beautiful Color Gradients using CSSJun 12, 2022
👋, I am here with another list. In this post I have enlisted 15 aesthetic color gradients using CSS...
Why your favourite colour is probably blueJun 10, 2022
From a young age we are primed to choose a favourite colour, but strangely as we grow up our preference often changes – and it's largely due to influences outside our control.
#HEXWORDSJun 9, 2022
Basic Color TheoryMar 28, 2022
Color theory encompasses a multitude of definitions, concepts and design applications. Basic concepts. The Color Wheel, Color Harmony,Color Context
Amazing Resources for Web DevelopersMar 22, 2022
Found amazing resources which will save you tons of time as a web developer👇 1. 10015...
Color Picker with Ruby on Rails 6, Stimulus and WebpackerFeb 12, 2022
A tutorial to integrate a Javascript color picker library Pickr, with Ruby on Rails 6.0, StimulusJS, and Webpacker.
What Color Is This? | Stitch Fix Technology – MultithreadedFeb 8, 2022
We need to know what colors our merch is. But because downstream users include many different people and algorithms, we need to describe colors as a hierarch...
Building Your Color Palette - Refactoring UIJan 29, 2022
Learn how to design awesome UIs by yourself using specific tactics explained from a developer's point-of-view.
Why Facebook Is Blue: The Science of Colors in MarketingJan 23, 2022
How do colors affect us when we buy things? The latest research reveals the science of colors in marketing and how to use it for your advantage:
Capture Attention Through Color Psychology :: UXmattersJan 17, 2022
Web magazine about user experience matters, providing insights and inspiration for the user experience community
How Color Impacts UXJan 17, 2022
Color impacts everything from how a user feels when they interact with a design, to how they use the design, to whether they can fully see and understand it. Quite simply, color is a lot more than a decorative tool; color is central to user experience.
Coolors - The super fast color palettes generator!Jan 16, 2022
Generate or browse beautiful color combinations for your designs.
Color Picker — A handy design tool from Color SupplyJan 2, 2022
Use the color wheel to select a style you like. Then pick a hex code.
Werner's Nomenclature of ColoursDec 15, 2021
A recreation of the original 1821 color guidebook with new cross references, photographic examples, and posters designed by Nicholas Rougeux
colors.lol - Overly descriptive color palettesDec 14, 2021
A fun way to discover interesting color combinations.
Why it took us thousands of years to see the colour violet | Psyche IdeasJun 25, 2021
The colour violet was largely missing from art before the Impressionists, and is seen differently by different cultures. Why?
The Secret Psychology of Sneaker ColorsMay 24, 2021
You think they randomly choose those glaring shades of Nike, Adidas and New Balance? Think again.
How Pixar Uses Hyper-Colors to Hack Your BrainMay 7, 2021
The animation studio’s artists are masters at tweaking light and color to trigger deep emotional responses. Coming soon: effects you’ll only see inside your head.
When Red Means “Go”: Color and Cultural Reactance in Risk PreferencesApr 13, 2021
Color can affect judgment and decision making, and its effects may vary across cultures. Research reported in this article shows that cross-cultural color effects on risk preferences are influenced by personal associations of color-gain/loss. Our research finds a cultural reactance effect, a phenomenon in which people who hold culturally incongruent (vs. cultural mainstream) color associations
Trademarking color is absurd. But not for the reasons you thinkFeb 19, 2020
Trying to crush other companies' use of color is not only petty; it completely misses the point of branding.
Generate - Coolors.coFeb 12, 2020
View and edit this palette on Coolors.co or create your own color schemes.
Why Red Means Red in Almost Every Language - Issue 76: LanguageOct 4, 2019
Nautilus is a different kind of science magazine. Our stories take you into the depths of science and spotlight its ripples in our lives and cultures.
An AI invented a bunch of new paint colors that are hilariously wrongMar 21, 2019
Let’s just say this neural network won’t make you fear the robot uprising.
The History of the Color Blue: From Ancient Egypt to the Latest Scientific DiscoveriesMar 14, 2019
Some scientists believe that the earliest humans were actually colorblind, and had no concept of the color blue.
A 200-year-old guide to color, redesigned for the internet age - Fast CompanySep 26, 2018
Charles Darwin used it, and now so can you.
comedy-fun-humor
When Brands Wear an Insult as a Badge of Honor | MIT Sloan Management ReviewMar 2, 2026
In some scenarios, brands can increase consumer interest and positive attitudes by embracing insults directed at them.
We need to talk about naked mole rats - The OatmealMar 2, 2026
This is a comic about naked mole rats, aka tube goblins.
Comedy on 'prescription': Why performing stand-up is good for your healthDec 14, 2025
In the UK, new schemes to support mental health are introducing to people an unexpected skill: stand-up comedy.
Opinion | Adam Sandler Is the Light We NeedNov 16, 2025
When I took my dad to see Adam Sandler live, I expected to laugh. We both got so much more.
21 Facts About Throwing Good PartiesOct 2, 2025
Parties are a public service; here's how to throw them.
Skee-Ball Is Selling Home Units Now, Because Dreams Do Come TrueSep 30, 2025
Forget quarters and tokens. Throw your bed out, turn your bedroom into an arcade, and play Skee-Ball at home for free.
For Henri Bergson, laughter is what keeps us elastic and free | Aeon EssaysAug 29, 2025
For philosopher Henri Bergson, laughter solves a serious human conundrum: how to keep our minds and social lives elastic
The case for memes as a new form of comicsJul 29, 2025
Both comics and memes rely on the same interplay of visual and verbal elements for their humor.
Albert Brooks Is EverywhereJun 24, 2025
The funniest people on the planet think there’s no funnier person than Albert Brooks.
Jennifer Dunn’s Hilarious Heartwarming Watercolor Paintings Of Sassy Animals With Pop Culture ReferencesMar 23, 2025
Jennifer Dunn, the artist behind the Instagram account Mossy Hollow, characterizes her work as "Watercolor meme art," a distinctive blend of pop culture referen
The Strange Power of LaughterJan 21, 2025
An anthropologist explores laughter as a far more complex phenomenon than simple delight—reflecting on its surprising power to disturb and disrupt.
12 Days Of Xmas | Space Ghost Coast To Coast | Adult SwimDec 24, 2024
Enjoy the videos and music you love, upload original content, and share it all with friends, family, and the world on YouTube.
Our 50 Favorite ‘Saturday Night Live’ SketchesOct 19, 2024
Live from New York, it’s an idiosyncratic list of ‘SNL’ moments we’re still thinking about—from the Belushi/Aykroyd/Radner years to the Eddie Murphy era to Sandler, Fey, Hader, and beyond.
Spanish Translation - S1 EP1 - Space Ghost Coast to CoastJul 5, 2024
After declaring his fondness for Mexican food, Space Ghost asks diet guru Susan Powter what super powers help "stop the insanity." Comedian Kevin Meaney discusses the virtues of wearing tight pants and the Bee Gees stop by for a short, bizarre visit.
Trevor Noah and Roger Federer board the 'wrong train' in hilarious SwitzerlMay 13, 2024
The duo 'got into deep trouble' for boarding the 'wrong train' but it turned into the ride of a lifetime for them.
The Jokes That Have Made People Laugh for Thousands of YearsApr 14, 2024
The phrase “the old ones are the best ones” might not always be true. But some of the oldest jokes in history are still in use today. What makes a good joke? It’s worth going back a few thousand years to find out.
Write more "useless" software | nicole@webOct 20, 2023
More Colorful Texas Sayings Than You Can Shake a Stick AtOct 15, 2023
Come hell or high water, you’ll want to read our compilation of down-home aphorisms.
Why did the metaverse die? Because Silicon Valley doesn’t understand the coOct 15, 2023
To have fun, you have to be okay with the idea of wasting time.
Laugh Out Loud Yearbook Quotes From High School SeniorsSep 24, 2023
These students are comedians in the making with these quotes
Why We LaughJul 24, 2023
Laughter may be the best medician, but do we really understand why? In this edition of Two Guys on Your Head Dr. Art Markman and Dr. Bob Duke explore the psychology of laughter.
Reddit - Dive into anythingJul 16, 2023
70 votes, 19 comments. Youtube link MST3K Wiki Link Slab Bulkhead Bridge Largemeat Punt Speedchunk Butch Deadlift Hold Bigflank Splint Chesthair…
The Secretive, Delightful Man Changing Everything We Know About Theme ParksJul 9, 2023
The only thing more fun than the rides themselves is this guy’s staggering analysis of them.
Why are some sounds funny?Jun 30, 2023
To English speakers, the word, “peanut” isn’t especially funny. But “peanut” in Serbian, “kikiriki” is widely considered by Serbs to be the funniest word in their language. This raises the question of why people laugh at some words (“poop”) but not at others (“treadmill”). Does it come down to their meanings? Or are people responding to their sounds? Psycholinguist Chris Westbury set out to discover the answer.
Pinball is booming in America, thanks to nostalgia and canny marketingMay 18, 2023
A generations-old game makes a comeback
SpaceBalls AlienApr 13, 2023
It's just like in the Ridley Scott classic film... just with a little more style!
How to have more fun: 5 ideas to make your life more playful : Shots - HealFeb 17, 2023
Happiness can sometimes feel just out of reach. But having more fun? You've got this — and those giggles and playful moments can make a big difference to your health and well-being.
Comedy movies rarely make it to theaters today. Here's why.Jan 20, 2023
Comedy films don’t travel well abroad because humor differs from country to country, causing the genre to fall out of favor with Hollywood.
15 Minute Lunch: Strap in, shut up and hold on. We're going back.Dec 21, 2022
Last weekend I put an exhaust fan in the ceiling for my wife's grandfather. After a bunch of hours spent in The Hottest Attic In The Univers...
The rules of improv can make you funnier. They can also make you more confident. : Life KitDec 8, 2022
Improv comedy is about more than making people laugh. It can help performers be more creative and self-assured — and combat anxiety, both on and off stage.
The man who wrote the Onion's Supreme Court brief takes parody very seriousOct 6, 2022
The satirical site submitted a 23-page brief to the Supreme Court in support of a First Amendment case. Mike Gillis, The Onion writer who authored the brief, tells NPR why parody is worth defending.
Hilarious Cowboy Poetry With Waddie Mitchell and Batxer Black | Carson Tonight ShowOct 5, 2022
Original Airdate: 01/08/1987
#johnnycarson #thetonightshow
My favorite Michigan J. Frog sceneOct 4, 2022
I've found the more "magical" side of life to be exactly like this cartoon. You can't show anyone something they don't already believe in. "To he who know's, no explanation is necessary. To he who knows not, none is possible."
The surprising power of memesOct 1, 2022
The science of these viral mash-ups reveals why they are so effective at spreading ideas and beliefs.
The strange psychology of Reddit's r/RoastMeSep 27, 2022
A dive into the weirdest place to be intentionally wrecked online
Do You Even Need a Hobby?Sep 20, 2022
An essential reading list for breaking down the merits of introducing structured leisure into your life. Plus, how to find a pastime if you’re lacking inspiration.
The shit-posting, Twitter-trolling, dog-deploying social media army taking on Putin one meme at a timeSep 5, 2022
The North Atlantic Fellas Organization is fighting the Kremlin’s propaganda machine — and winning.
IQ Bell Curve / MidwitSep 5, 2022
IQ Bell Curve, also known as IQ Distribution Curve and Midwit, refers to a series of memes which use the IQ distribution diagrams to mock one of the three
An Oral History of ‘Steamed Hams,’ the Funniest ‘Simpsons’ Scene Ever RecordedAug 30, 2022
You wouldn’t have seen this in Utica, no. It’s an Albany show.
The art of effective trollingAug 19, 2022
Sometimes you can say more with humor than with a polished speech or marketing spot.
Seven Things I Learnt Doing Stand-Up Comedy | Michael Gomes VieiraAug 15, 2022
I took part in a 6 week stand-up comedy course for beginners at The Comedy Store in Central London. At the end of the course, myself and the other co...
On the moral virtues of mischief and mischievous people | Aeon EssaysAug 12, 2022
Mischievousness requires humour, wit and a playful humaneness: qualities that make for a particular kind of virtue
Mike Judge knows why 'Beavis and Butt-Head' endure: 'They're very pure'Aug 7, 2022
Judge has spent 30 years with the pair of horny metalheads, and although they helped define the 1990s, he's convinced they're as relevant today.
What’s So Funny? The Science of Why We LaughJul 19, 2022
Psychologists, neuroscientists and philosophers are trying to understand humor.
The American Amusement Park's Wild RideJul 16, 2022
From the trolley parks of the early 20th century to the theme parks of today, these spaces of shared pleasure have been both a reflection of urban life, and an escape from it.
America’s favorite family outings are increasingly out of reachJul 16, 2022
Taking the kids to a baseball game, a movie, or Disneyland is a bigger financial commitment than it used to be for middle-class families.
In Praise of Pointless GoalsJul 9, 2022
These achievements aren’t about productive self-improvement. They’re designed to make the pursuit of joy a deliberate practice.
How scientists make people laugh to study humorJul 5, 2022
British cognitive neuroscientist Sophie Scott studies vocal communication. She explains why looking into giggles and mirth is important … and shares ways she makes subjects laugh in the lab.
Aidy Bryant’s ‘SNL’ Exit Interview: ‘I Was Worried I Was Going to Be Fully Crying’Jun 24, 2022
Aidy Bryant on saying goodbye to "Saturday Night Live" and charting her future in Hollywood.
Mapping How to Laugh Online in Different LanguagesJun 22, 2022
In this map of laughter around the world you will be able to see how haha is written in different countries depending on their languages.
Baking mischief and delight into your products will make people love themJun 12, 2022
You should never underestimate the power of making people happy. Here are four tips from Techstars' Eamonn Carey to help you build products people love.
With ‘The Far Side,’ Gary Larson Pioneered the Art of the MemeJun 5, 2022
There couldn’t be a ‘Is This a Pigeon?’ without a ‘Beware of Doug’.
What's the funniest name you've heard someone call an object when they couldn't remember its actual name?May 28, 2022
24K votes, 10K comments. 49M subscribers in the AskReddit community. r/AskReddit is the place to ask and answer thought-provoking questions.
Why Is ‘Bob’s Burgers’ So Freakishly Lovable? This Guy.May 25, 2022
Loren Bouchard’s accidental career as a comedy mogul has now brought his TV family to the big screen.
Cheese Dreams Wall Clock by Tyler Varsell | Society6May 24, 2022
Buy Cheese Dreams Wall Clock by Tyler Varsell. Worldwide shipping available at Society6.com. Just one of millions of high quality products available.
The Strange Afterlife of George CarlinMay 12, 2022
Nearly 14 years after his death, his provocative humor has been embraced by people across the political spectrum. What happens when comedy outlasts the era it was made for?
Taking Humor Seriously on “The Simpsons”Nov 23, 2021
David Owen’s 2000 Profile of George Meyer: Humor has to reframe reality, Meyer says. “It’s like seeing in two dimensions and then opening the other eye or looking through a View-Master and suddenly seeing in three.”
This Artist Creates Hilarious Combinations Of Popular Characters In Iconic ScenesSep 5, 2021
Many fans get excited when movies or TV shows feature characters from different franchises or even universes. These mash-ups are intriguing: the characters interact with each other in really unique and interesting ways, the fandoms get to mingle, and many more plot possibilities open up. One of
What We Do in the Shadows | Yard Sale - Season 3 Teaser | FXAug 5, 2021
An evil bucket that’s great for collecting evil. See how the vampires are decluttering for the
all-new season premiering Sept 2nd on FX.
Subscribe now for more What We Do in the Shadows clips: http://bit.ly/SubscribeFX
A look into the daily (or rather, nightly) lives of four vampires who have “lived” together for hundreds and hundreds of years in Staten Island.
Watch What We Do In The Shadows Season 3 Videos: https://youtube.com/playlist?list=PLIDyzBpnfjqlvwe-nFwowHG1WdtUVLLy7
Like What We Do in the Shadows on Facebook: Facebook.com/theshadowsfx
Follow What We Do in the Shadows on Twitter: twitter.com/theshadowsfx
Follow What We Do in the Shadows on Instagram: Instagram.com/theshadowsfx
Like FX on Facebook: http://bit.ly/FXNetworksFacebook
Follow FX on Twitter: http://bit.ly/FXNetworksTW
Follow FX on Instagram: http://bit.ly/FXNetworksInstagram
What We Do in the Shadows | Yard Sale - Season 3 Teaser | FX
https://www.youtube.com/user/FXNetworks
Why Build ToysJul 13, 2021
I first wrote this essay a few years ago. A founder mentioned it to me over the weekend, and so I decided to re-publish it here. One thing that's bothered me in the time since I wrote it is the way...
Robin Williams - Chlamydia, Your Dad Is Here! - 5/5 Appearances In ChronoloJul 3, 2021
Title at 47:54 AND 51:10
His genius is universal. Great interviews.
Appearances:
1: 2009
2: 2010
3: 17th Nov 2011
4: 21th Nov 2011
5: 2013
Adult Swim - YouTubeJun 21, 2021
Watch adult swim on Max, www.adultswim.com, or by downloading the adult swim app. Binge marathons or watch selected episodes of many of your favorite shows including Rick and Morty, SMILING FRIENDS, The Boondocks, Aqua Teen Hunger Force, and many more.
After saving Tuca & Bertie, Adult Swim has posted the first episode of seasJun 14, 2021
Now’s your chance to see the show.
John Swartzwelder, Sage of “The Simpsons” | The New YorkerMay 2, 2021
The first major interview with one of the most revered comedy writers of all time.
'I almost wet myself laughing': 50 funny podcasts to make you feel much betterApr 5, 2021
Has your daily walk become an endless trudge to nowhere? These podcasts, chosen by comedians, podcasters, Guardian writers and readers, are guaranteed to bring a smile to your face
Star Trek- Kirk vs Gorn Stardate 3045.6Apr 3, 2021
Find great deals on 'Star Trek- Kirk vs Gorn Stardate 3045.6' Poster at AllPosters.com, with fast shipping, easy returns, and custom framing options you'll love!
Sorry We're StonedApr 3, 2021
Find great deals on 'Sorry We're Stoned' Prints at AllPosters.com, with fast shipping, easy returns, and custom framing options you'll love!
This Pig Ottoman Went Viral on Twitter, and It’s So Oinking CuteMar 30, 2021
“No thoughts just pig ottoman” is Twitter user @2Saddington’s quarantine mood — and it’s a relatable one at that. This cute little footstool from Target went viral on March 3 with over 100,000 retweets.The Burton New Velvet Pig Ottoman could be yours for less than $60 — though certain colorways in some areas are, unsurprisingly, sold out after the footstool’s five minutes of fame.
I Miss My Bar - Recreate Your Favorite Bar's AtmosphereMar 30, 2021
A modern digital artifact recreating the atmosphere of our favorite local bars to keep us company while it’s safe to visit them again. An initiative by Maverick Monterrey.
The Best Moments Of Archer: Malory | Netflix NordicMar 28, 2021
Archer fans rejoice! Here are the sassiest lines from all 10 seasons.
#Archer #Malory #Netflix
How to laugh more | Psyche GuidesMar 19, 2021
You don’t have to wait to be amused, there are ways to train yourself to enjoy the ‘cheap medicine’ of laughter every day
Comfort Viewing: 3 Reasons I Love ‘Courage the Cowardly Dog’Mar 9, 2021
The bizarre animated series creatively blended the beautiful with the grotesque, pop culture with pathos.
FacebookFeb 20, 2021
The 25 Essential Episodes of The Muppet ShowFeb 20, 2021
Now that the classic show is streaming on Disney+, we round up the best episodes — and ask guest stars about their Muppet memories.
Historic Tale Construction Kit - BayeuxFeb 7, 2021
NanaGram | Text your photos and we'll mail glossy, frameable 4x6 prints toJan 26, 2021
Text your photos and we'll mail glossy, frameable 4x6 prints to your loved ones.
Fold 'N Fly » Paper Airplane Folding InstructionsDec 25, 2020
A database of paper airplanes with easy to follow folding instructions, video tutorials and printable folding plans. Find the best paper airplanes!
Taco News Roundup: Get Your Texas Taco Merch, From Stickers to a Bun B T-ShDec 18, 2020
Plus: a cheesy dish that's half pizza, half quesadilla.
Fun Delivered: World’s Foremost Experts on Whoopee Cushions and Silly Putty Tell AllMar 24, 2020
[caption id="attachment_82071" align="alignnone" width="600"] Stan and Mardi Timm show off Johnson Smith novelties they've collected. Stan wears X-Ray Spe...
The Story of the Game OperationDec 5, 2019
When you were a kid, it was always fun to play Operation, a game in which you fished parts out of a patient named Cavity Sam, and you had be precise or you'd complete an electric circuit and a buzzer would sound. It was not the first game based on an electric circuit- Ben Franklin actually developed one! And the idea behind Operation was originally based on believe it or not, desert survival.John Spinello created the initial concept for what became Operation in the early 1960s, when he was an industrial ...
Star Trek Mr. Spock Live Long And Prosper Pill BoxOct 24, 2019
Star Trek Mr. Spock Live Long And Prosper Pill BoxYour bag, pocket, or car: the final frontier. These are the voyages of your on the go medication. They will travel with you in a handy container as you seek out new life and civilizations. They will boldly go with you to places that they have never gone before. Humans may find that having the Star Trek Mr. Spock Live Long And Prosper Pill Box is as pleasing as wanting. Embrace the utility and beauty of the pill box. It is only logical that you should...
Milk Carton - ImageChefMay 22, 2019
Cone of Shame NotecardsMar 13, 2019
Spawned from her Cone of Shame series, photographer and creative director Winnie Au's new notecards—which are currently funding on Kickstarter—are essentials for dog lovers and design enthusiasts alike. Stylist Marie-Yan Morvan created
Download Coloring Pages From Over 100 MuseumsMar 5, 2019
We first shared this post in early 2019, long after the peak of the adult coloring fad . But desperate times call for desperate measures, and a globa
Sword Swallowers and Shrunken Heads: An Ode to Johnny Fox and His FreakatorOct 25, 2018
[caption id="attachment_78396" align="alignnone" width="600"] This huge '60s sideshow banner—roughly 8 by 9.5 feet—was painted by esteemed circus arti...
This deck of cards will spark small, IRL experiencesAug 23, 2018
The fabulous Lea Redmond of Leafcutter Designs (previously) has launched a brand new project. It's called Lively Matter and it's a 52-card activity deck to create grand adventures and experiences…
comics
We need to talk about naked mole rats - The OatmealMar 2, 2026
This is a comic about naked mole rats, aka tube goblins.
The case for memes as a new form of comicsJul 29, 2025
Both comics and memes rely on the same interplay of visual and verbal elements for their humor.
Download Issues of “Weird Tales” (1923–1954): The Pioneering Pulp Horror MaJun 12, 2024
We live in an era of genre. Browse through TV shows of the last decade to see what I mean: Horror, sci-fi, fantasy, superheroes, futuristic dystopias…. Take a casual glance at the burgeoning global film franchises or merchandising empires.
The Adventures of ACTION ITEM, Professional Superhero!Apr 18, 2024
The Adventures of Action Item, Professional Superhero - Official Homepage
The Comiclopedia: An Online Archive of 14,000 Comic Artists, From Stan Lee Apr 16, 2024
Nobody interested in comics can pass through Amsterdam without visiting Lambiek. Having opened in 1968 as the third comic-book shop in human history, it now survives as the oldest one still in existence.
Why the Short-Lived Calvin and Hobbes Is Still One of the Most Beloved & InApr 15, 2024
If you know more than a few millennials, you probably know someone who reveres Calvin and Hobbes as a sacred work of art.
THE ART AND HISTORY OF LETTERING COMICSMar 7, 2024
Todd Klein's online book exploring little-known aspects of comics: lettering, letterers, logo design and more.
Unique Pop Culture Valentines from Castle McQuadeFeb 5, 2024
It's nice to get a romantic Valentine's Day card, but it's extra special to get one that shows how your significant other went the extra mile to acknowledge your personality, preference, or passion. Show how much you've been paying attention to what they like by getting a pop culture Valentine card from artist PJ McQuade! Or maybe it's a matter of shared interests, so you can bond over your mutual admiration for a particular entertainment franchise. Or then again, you can do like I did at Christmas and s...
Why Bill Watterson VanishedAug 20, 2023
The creator of Calvin and Hobbes is back, but the mystery is why he disappeared in the first place.
How Los Bros Hernandez Stayed Punk for 40 Years with their Comic-Book Saga, "Love and Rockets"Nov 23, 2022
They were part of the ‘80s revolution with "The Dark Knight Returns," but without the big payday.
This Artist Creates Hilarious Combinations Of Popular Characters In Iconic ScenesSep 5, 2021
Many fans get excited when movies or TV shows feature characters from different franchises or even universes. These mash-ups are intriguing: the characters interact with each other in really unique and interesting ways, the fandoms get to mingle, and many more plot possibilities open up. One of
Adult Swim - YouTubeJun 21, 2021
Watch adult swim on Max, www.adultswim.com, or by downloading the adult swim app. Binge marathons or watch selected episodes of many of your favorite shows including Rick and Morty, SMILING FRIENDS, The Boondocks, Aqua Teen Hunger Force, and many more.
command-line
🐣(Claude Code Beginners Guide) Multi-Agent Orchestration: Run Claude Code Like a 5-Person Team | NotionFeb 21, 2026
Quick note before you jump in:
Tar CheatsheetFeb 13, 2026
Quick reference for creating, listing, extracting, and compressing tar archives in Linux
Bash Positional ParametersFeb 4, 2026
Positional parameters are Bash variables that hold arguments passed to a script or function. Learn how to use $1, $2, $@, $#, and the shift command in Bash.
How to Generate SSH Keys on LinuxFeb 4, 2026
Learn how to generate SSH keys on Linux using ssh-keygen, copy them to remote servers, and set up passwordless authentication.
GhosttyDec 4, 2025
Ghostty is a fast, feature-rich, and cross-platform terminal emulator that uses platform-native UI and GPU acceleration.
How to Fingerprint Websites With WhatWeb - A Practical, Hands-On GuideOct 17, 2025
Another one of our simple, hands-on pen-testing tutorials. This one teaches you to finger a website for status code, server info, CMS etc.
A Detailed Guide on httpxOct 14, 2025
Fast and practical guide to using the httpx tool for web reconnaissance, probing, filtering, and fuzzing with real-world examples.
run-llama/semtools: Semantic search and document parsing tools for the command lineSep 4, 2025
Semantic search and document parsing tools for the command line - run-llama/semtools
Getting Started With Tmux: Absolute Essentials for BeginnersAug 23, 2025
tmux is an excellent productivity tool for pro Linux users who love the terminal. It certainly has a learning curve involved though.
Beginner’s Guide to Gemini CLI: Install, Setup, and Use It Like a Pro - KDnuggetsAug 6, 2025
Turn your terminal into an AI coding assistant with Gemini CLI and learn how to use it like a pro in minutes.
Ollama's new appJul 31, 2025
Ollama has been one of my favorite ways to run local models for a while - it makes it really easy to download models, and it's smart about keeping them …
🔍 Perplexity 101: Ultimate Guide to Deep Search, Labs, Templates & 53 Pro PromptsJul 13, 2025
Your complete playbook for transforming how you research with AI's most powerful search engine
Coders' Colaboratory mini-hackathon on `llm` by simonwJul 8, 2025
Coders' Colaboratory mini-hackathon on `llm` by simonw - llm-hackathon.md
Become a command-line superhero with Simon Willison’s llm toolJul 7, 2025
Christopher Smith ran a mini hackathon in Albany New York at the weekend around uses of my LLM - the first in-person event I'm aware of dedicated to that project! …
Building software on top of Large Language ModelsJul 4, 2025
I presented a three hour workshop at PyCon US yesterday titled Building software on top of Large Language Models. The goal of the workshop was to give participants everything they …
UsageJul 4, 2025
gemini-cli/docs/cli/commands.md at main · google-gemini/gemini-cliJun 29, 2025
An open-source AI agent that brings the power of Gemini directly into your terminal. - google-gemini/gemini-cli
Large Language Models can run tools in your terminal with LLM 0.26May 27, 2025
LLM 0.26 is out with the biggest new feature since I started the project: support for tools. You can now use the LLM CLI tool—and Python library—to grant LLMs from …
Ollama commands: How to use Ollama in the command line [Part 2]May 3, 2025
Learn about the important Ollama commands to run Ollama on your local machine with Smollm2 and Qwen 2.5 models
Introducing ‘Mark’, a Markdown CLI tool for GPT4o | Ryan ElstonJul 9, 2024
Introduction In this post, I want to introduce Mark, a simple CLI tool that uses Markdown and its syntax to interact naturally with the GPT4-vision/GPT4o models.
Y2Z/monolithApr 16, 2024
⬛️ CLI tool for saving complete web pages as a single HTML file - Y2Z/monolith
dylanaraps/pure-bash-bibleAug 11, 2023
📖 A collection of pure bash alternatives to external processes. - dylanaraps/pure-bash-bible
CLI tools you won't be able to live without ?Jan 19, 2023
A list of 50 command line tools, which you should definitely check out!
red-data-tools/YouPlot: A command line tool that draw plots on the terminal.Jan 16, 2023
A command line tool that draw plots on the terminal. - red-data-tools/YouPlot
Ruby One-Liners GuideJan 13, 2023
Example based guide for text processing with Ruby from the command line
A Visual Guide to SSH Tunnels: Local and Remote Port ForwardingJan 13, 2023
SSH port forwarding explained in a clean and visual way. How to use local and remote port forwarding. What sshd settings may need to be adjusted. How to memorize the right flags.
How to Use the find Command With execJul 18, 2022
Find works on searching files based on a number of criteria. The exec command gives you the ability to work on those results. Here are some examples of find exec command combination.
Making the Most of man pages in LinuxJul 5, 2022
Though extremely useful, man pages in Linux can be daunting and intimidating at first. This article aims to make it a bit easier to peruse manuals and quickly get the help one needs.
The one pip config you need to haveJun 4, 2022
Whenever you are installing python packages, you should always use a virtual environment. pip makes...
Master CSV Files in the Terminal With the Csvkit PackageJun 4, 2022
It is not always a good idea to use Excel.
Apt - PostgreSQL wikiMay 29, 2022
Python's fileinput module makes it easy to write CLI tools that operate on files or as a filter.May 28, 2022
(BTW, bat: )
— Ned Batchelder (@nedbat)
How to free up space in UbuntuMay 26, 2022
Whenever you are running out of disk space on Ubuntu server/desktop , There are several ways to free...
How to Kill a Process in Linux Command LineMay 26, 2022
Found a misbehaving process? Here's how to teach a lesson to it by terminating it using various commands.
How to Set Timeout in cURLMay 14, 2022
Downloading with curl taking too long? Set a timeout with curl command, so you don't have to wait long.
Tips to use "sed" commandMay 14, 2022
When we used the sed command in our pipeline, we had some surprises and took a little bit of times to...
GitHub - onceupon/Bash-Oneliner: A collection of handy Bash One-Liners andMay 4, 2022
A collection of handy Bash One-Liners and terminal tricks for data processing and Linux system maintenance. - onceupon/Bash-Oneliner
5 Useful Database Command Line ToolsApr 29, 2022
Mycli - Python https://github.com/dbcli/mycli star 10.3k A Terminal Client for MySQL...
XARGS only makes your life easierMar 23, 2022
One command-line tool that would make your life easier is the xargs command. So, what is...
14 Awesome CLI Tools for Modern Software DevelopersMar 23, 2022
General Command Line Tools Autojump Autojump is a tool that learns your most...
Welcome | Data Science at the Command Line, 2eMar 21, 2022
This thoroughly revised guide demonstrates how the flexibility of the command line can help you become a more efficient and productive data scientist. You’ll learn how to combine small yet powerful command-line tools to quickly obtain, scrub, explore, and model your data. To get you started, author Jeroen Janssens provides a Docker image packed with over 100 Unix power tools—useful whether you work with Windows, macOS, or Linux.
How to Make a File Executable in Linux terminal?Mar 17, 2022
New to Linux command line and wondering how to make a bash script or some other file executable? Here's how to do it.
How to: Linux / UNIX create soft link with ln command - nixCraftMar 14, 2022
This quick guide explains what is a symbolic link and how to create a soft link (symbolic) under Linux, macOS, *BSD or Unix-like system.
dbohdan/structured-text-tools: A list of command-line tools for manipulating structured text dataFeb 7, 2022
A list of command-line tools for manipulating structured text data - dbohdan/structured-text-tools
2013 04 12 package managers an introductoJan 23, 2022
Using cURL to Download Remote Files from the Command LineJan 16, 2022
The powerful curl command line tool can be used to download files from just about any remote server. Longtime command line users know this can be useful for a wide variety of situations, but to kee…
junegunn/fzf: :cherry_blossom: A command-line fuzzy finderDec 26, 2021
:cherry_blossom: A command-line fuzzy finder.
Curl CookbookDec 11, 2021
A cookbook full of organic, nutritious, and completely irresistible curl recipes to pass down for generations.
Show HN: Ruby One-Liners CookbookOct 15, 2021
Example based guide for text processing with Ruby from the command line
15 Super Useful Examples of the Find Command in LinuxOct 15, 2021
Learn the super powerful and super useful find command with these practical examples.
Essential Linux Command-Line Tricks for Computer Vision ResearchersOct 7, 2021
In this post, you will learn some cool command line tricks which can help you to speed up your day-to-day R&D.
What is Shebang in Linux Shell Scripting?Oct 1, 2021
The seemingly insignificant #! characters at the beginning of a shell script has a major significance on how your script will be executed.
Unusual Ways to Use Variables Inside Bash ScriptsSep 26, 2021
You might have used variables in Bash before, but probably not like this.
Command line wizardry, part two: Variables and loops in BashSep 26, 2021
Learn to process thousands of items reliably and repeatably in this installment.
15 Python Snippets to Optimize your Data Science PipelineAug 28, 2021
Quick Python solutions to help your data science cycle.
How To Run Commands When You Log Out Using ~/.bash_logoutAug 8, 2021
The .bash_logout file is the individual login shell cleanup file. It is executed when a login shell exits. This file exists in the user's home directory. For example, $HOME/.bash_logout. This file is useful if you want to run task or another script or command automatically at logout. For example, clear the mysql command line history stored in ~/.mysql_history or to make a backup of files you can use this file.
14 Must-Know pip Commands For Data Scientists and EngineersJul 15, 2021
Exploring some of the most useful pip commands for everyday programming
My Favorite CLI ToolsJun 20, 2020
Previously, I wrote about my favorite Mac apps. But I spend half of my time in the terminal, and I ha...
Show HN: Clikan – a simple personal kanban board that runs in a CLIApr 21, 2020
clikan is a super simple personal kanban board that runs in a CLI - kitplummer/clikan
How to Master Python Command Line ArgumentsApr 21, 2020
A simple guide to create your own Python script with command line arguments
Stripe CLIDec 23, 2019
The Stripe CLI is a developer tool that helps you build, test, and manage your Stripe integration right from the terminal.
Working with the SQL Server command line (sqlcmd)Apr 15, 2019
In this new chapter, we are going to show the following examples in a local SQL Server using SQL Server command line (sqlcmd).
mssql-cli/usage_guide.md at master · dbcli/mssql-cliApr 15, 2019
A command-line client for SQL Server with auto-completion and syntax highlighting - dbcli/mssql-cli
12 Factor CLI AppsOct 9, 2018
CLIs are a fantastic way to build products. Unlike web applications, they take a small fraction of the time to build and are much more…
CLI: improvedAug 31, 2018
I'm not sure many web developers can get away without visiting the command line. As for me, I've been using the command line since 1997, first at university wh…
GitHub - agarrharr/awesome-cli-apps: 🖥 📊 🕹 🛠 A curated list of command line appsSep 24, 2004
🖥 📊 🕹 🛠 A curated list of command line apps.
communities
Social media users flee X, flock to TikTok and RedditNov 28, 2025
The same fragmentation that reshaped news is now reshaping social media.
A User’s Guide to Building a Subculture—AsteriskDec 24, 2024
First, you’re going to need something to care about.
How Quora DiedFeb 6, 2024
The once-thriving site used to answer our most specific questions. But users are fleeing.
Inside 4chan’s top-secret moderation machineJun 10, 2023
Internal company documents reveal how the imageboard’s chaotic moderation allowed racism and violence to take over.
Why public chats are better than direct messagesSep 10, 2022
How we communicate makes an enormous impact on our work. One of the best strategies for improving communication in a team is making it open
A Meditation on Word of Mouth Marketing and Growth HackingJul 19, 2022
Orchestrating Offline Conversations in an Always-Online World
Crowd Patronage: How A 400 Year Old Model Can Save The Music Ind...Jul 18, 2022
“A lot of people in our industry haven’t had very diverse experiences. So they don’t have enough dots to connect, and they end up with very linear solutions without a broad perspective on the problem. The broader one’s understanding of the human...
What to Look For When Hiring a Community ManagerJun 25, 2022
How to Harness the Power of BelongingNov 9, 2021
Wharton’s Katy Milkman interviews New York University professor Jay Van Bavel about his new book, ‘The Power of Us,’ which explores how group affiliations shape our identity and can influence performance and cooperation.…Read More
A Framework for ModerationAug 11, 2019
The question of what should be moderated, and when, is an increasingly frequent one in tech. There is no bright line, but there are ways to get closer to an answer.
Don’t Just Create an Event, Create an EcosystemFeb 27, 2019
Building a community is an essential step in establishing any company or brand as a leader in its respective industry. A brand community gives your
How Community Can Drive Commerce: A Lesson from China’s Little RedbookOct 7, 2018
China’s popular social-ecommerce app succeeds in building a mutually beneficial user community and bringing in a smooth shopping experience for users.
company-culture
Game Theory Patterns at WorkFeb 10, 2026
Foundations: Games, Rationality, and Traps In organizations, strategies and execution are interdependent. Outcomes depend not just on what you do, but on what others do, and what they expect you to…
Welcome to the RoomFeb 6, 2026
A lesson in leadership by Satya Nadella When I was Promoted to Technical Fellow, I was “invited to the room”, joining Microsoft’s other Senior Executives. It was really something. Achieving t…
The Power of Affirmation at WorkDec 19, 2025
How leaders can build a culture where employees feel valued.
Your Closest Relationship Isn't With Family or Friends, Viral Theory SaysDec 14, 2025
Everyone loves a good relationship theory, especially one that feels uncannily accurate. This one hit home for anyone who hates their job.
When Values Eat Their Young: How Ideal-Driven Groups Drift into Their Own ShadowSep 17, 2025
Picture this: A Slack channel for an open-source project that prominently displays "Be excellent to each other" in its community guidelines. Six month
To Change Company Culture, Focus on Systems—Not CommunicationAug 25, 2025
Leaders spend too much time on tone and narrative. Instead, they need to model the new culture they’re trying to create.
Nukes, Nubs And Coners: The Unique Social Hierarchy Aboard A Nuclear SubmarineAug 11, 2025
Getting assigned to your first sub doesn't make you a submariner and once you become one you'll find yourself in a social structure unlike any other.
Reflections on OpenAIJul 15, 2025
Can you run a company as a perfect free market? Inside Disco CorpMay 3, 2025
For over a decade, a $20bn manufacturer has been conducting a radical experiment. No one has a boss or takes orders. Their decisions are guided by one thing, an internal currency system called Will
Build Your Culture Like a Product — Lessons from Asana’s Head of PeopleApr 12, 2024
Anna Binder, Asana's Head of People and the company's first HR hire, shares her step-by-step approach to intentionally building the company culture.
9 viral phrases that explain China’s work cultureFeb 11, 2023
From “lie flat” to “let it rot,” common terms have taken on new meaning in recent years.
Cultures Clash at Salomon Smith Barney — Stories.FinanceFeb 4, 2023
Richard Bookstaber was Salomon Brothers’ chief risk officer in 1997 when the firm was bought by Travelers and merged with Smith Barney, Travelers’ retail brokerage. He describes the resulting clash of cultures.
What I learned at GitLab that I don't want to forgetDec 13, 2022
After a little over 5 years, I'm going to be leaving GitLab for my next adventure. It's no surprise to those of you who have been following me that I have absolutely loved my time there. I'm so proud of what we built—and I'm still proud and awed by
How can you tell if the company you’re interviewing with is rotten on the inside?Dec 4, 2022
How can you tell the companies who are earnestly trying to improve apart from the ones who sound all polished and healthy from the outside, whilst rotting on the inside? This seems to be on a lot o…
Does your company suffer from broken culture syndrome? | MIT SloanOct 30, 2022
Whether it’s caused by culture clash, cultural inertia, or total toxic collapse, broken culture syndrome can sink an organization. But there’s a way out.
Valve handbook low resJul 19, 2022
Psychological Safety, Risk Tolerance and High Functioning Software Teams | HackerNoonJul 19, 2022
A few years ago, Google decided to research what was the key ingredient that made some software teams at the company more successful than others. Much to their surprise the key trait that was most correlated with successful teams wasn’t technical prowess, personalities or the educational background of the team members. Instead it was the notion of psychological safety — “ a shared belief held by members of a team that the team is safe for interpersonal risk-taking.’’
Product Management Is a Company, Not a DepartmentJul 19, 2022
Do you rely too heavily on product management to ensure your product is successful? Joe Kinsella explores the importance of everyone in a startup being in PM.
Inner Workings of Product Management at Product Led Growth Companies - OpenViewJul 19, 2022
Product is at the epicenter of everything a product led growth (PLG) company does. So how does the product organization and its PMs need to adapt? Find out here.
6 Rules for Building and Scaling Company CultureJul 18, 2022
For your business to survive, it needs character and purpose.
Are you outspoken at work? How to use your voice – and not get firedJul 18, 2022
Hello, my name is Andrew, and I can’t stop disagreeing.
Why T-Shirts MatterJul 14, 2022
During my tenure at LinkedIn, I’ve held a wide variety of roles and responsibilities within the company. Some are fairly public (as described on my LinkedIn profile). Others are the the typ…
Startup Culture Is Not About Ping-Pong TablesJul 6, 2022
Culture isn’t about whether you’re a startup or a Fortune 500 giant. It’s about values and mindset. It’s about how you approach the decisions you make.
CultureJul 5, 2022
Our overriding objective is excellence. When we say excellence, we mean constant improvement. Our mission of understanding how the world’s markets and economies work requires an extraordinary team, defined by the best individuals and the best portfolio of people, operating in an idea meritocracy, where we are uncompromising on our shared values of truth, integrity, determination, humility, and courage.
The Hard Truth About Innovative CulturesJun 25, 2022
Innovative cultures are generally depicted as pretty fun. They’re characterized by a tolerance for failure and a willingness to experiment. They’re seen as being psychologically safe, highly collaborative, and nonhierarchical. And research suggests that these behaviors translate into better innovative performance. But despite the fact that innovative cultures are desirable, and that most leaders claim to understand what they entail, they are hard to create and sustain. That’s because the easy-to-like behaviors that get so much attention are only one side of the coin. They must be counterbalanced by some tougher and frankly less fun behaviors: an intolerance for incompetence, rigorous discipline, brutal candor, a high level of individual accountability, and strong leadership. Unless the tensions created by this paradox are carefully managed, attempts to create an innovative culture will fail.
The Difference Between Good And Bad OrganizationsJun 23, 2022
"In a poor organization ... people spend much of their time fighting organizational boundaries, infighting, and broken processes."
Inside Kraken’s Culture War Stoked by Its C.E.O.Jun 22, 2022
Jesse Powell, who leads the crypto exchange Kraken, has challenged the use of preferred pronouns, debated who can use racial slurs and called American women “brainwashed.”
We don t do that hereJun 13, 2022
The rise of ‘bai lan’: why China’s frustrated youth are ready to ‘let it rot’May 29, 2022
Phrase bai lan gains popularity as severe competition and social expectations leave many young people despondent
The GitLab HandbookMay 6, 2022
GitLab Handbook Company About GitLab Values Mission Vision Strategy Communication Culture TeamOps CEO Readme Office of the CEO Key Reviews Group Conversations E-Group Weekly Environmental, Social, and Governance Handbook About the Handbook Handbook Changelog Handbook Roadmap Handbook Escalation Handbook Usage Contribution Guide Editing the handbook Handbook Style Guide Handbook maintenance People Group Anti-Harassment Policy Global Volunteer Month Hiring Inclusion & Diversity Labor and Employment Notices Leadership Learning & Development Onboarding Offboarding Spending Company Money Talent Assessment Team Member Relations Philosophy Total Rewards Tools and Tips Engineering Customer Support Department Development Department Incubation Engineering Department Infrastructure Department Quality Department Security Practices Open Source Security Product Security Security Operations Threat Management Security Assurance Marketing Team Member Social Media Policy Blog Brand and Product Marketing Enterprise Data Integrated Marketing Sales Development Marketing Operations and Analytics Growth Developer Relations Corporate Communications Sales Alliances Commercial Customer Success Customer Success Management Reseller Channels Field Operations Reporting Solutions Architecture Finance Accounts Payable Accounts Receivable Business Technology Expenses Financial Planning & Analysis Payroll Procurement Tax Board meetings Internal Audit Equity Compensation Product Release posts About the GitLab Product Being a Product Manager at GitLab Product Principles Product Processes Product sections, stages, groups, and categories Product Development Flow Product Development Timeline Data for Product Managers Product Pricing Model Corporate Development / Acquisitions UX Department Legal and Corporate Affairs Commercial Corporate Corporate Development Employment Environment, Social, and Governance (ESG) Operations Privacy Product Risk Management and Dispute Resolution Trade Compliance
8 Principles for Building a High-Performance Culture | The Leading Blog: A Leadership BlogFeb 10, 2022
Leadership Now is a leading source for leadership development and analysis. We believe that anyone can make a difference by leading from where they are.
The Founder’s Guide to Discipline: Lessons from Front’s Mathilde CollinOct 29, 2021
Front's CEO and co-founder Mathilde Collin shares why a founder’s discipline matters more than vision, unveiling her own best practices and templates for communication, time management, fundraising and team building.
‘Give away your Legos’ and other commandments for scaling startupsOct 16, 2021
Molly Graham helped forge a work culture at Facebook that's withstood huge amounts of growth. Today, she's something of a rapid scaling expert. Here's the key to doing it right, she says.
This is How to Repair a Toxic Work CultureApr 18, 2021
Feeling safe is the magic ingredient to a healthy work environment. In this article Nir discusses novel research on how to eliminate toxic work culture.
10 questions to ask in a job interview that will really expose a company's culture - Fast CompanyApr 10, 2021
Simple questions that can speak volumes about your prospective employer.
How to Build a Culture of Generosity at WorkMar 6, 2021
Here are six practices to help your team ask for and give more help to each other.
What leader(s) over your product career truly changed how you approach prodFeb 19, 2021
I learned from bosses & peers, including some famous peeps like Reed Hastings, Patty McCord, and Dan Rosensweig. But mainly I learned by doing, supercharged by feedback from many "Friends of Gib."
Are you outspoken at work? How to use your voice – and not get firedOct 28, 2020
Hello, my name is Andrew, and I can’t stop disagreeing.
A Software Engineering Culture TestMay 27, 2020
See a shorter, and updated version of this test here: The Pragmatic Engineer Test: 12 Questions on Engineering Culture [https://blog.pragmaticengineer.com/pragmatic-engineer-test/]. I've talked with dozens of software developers about what they like and dislike about their workplace - team, and company - professionally. I'm starting to see
How to Create a Great Team Culture (and Why It Matters) - ACM QueueMay 4, 2019
As leader of the team, you have significant influence over your team
Don’t Fuck Up the CultureSep 28, 2018
On Monday, October 21, 2013, I sent this letter to our entire team at Airbnb. I have decided to publish this in the event it is helpful to entrepreneurs building their cultures. Our next team meeting…
compilers
The Claude C Compiler: What It Reveals About the Future of SoftwareFeb 23, 2026
On February 5th Anthropic's Nicholas Carlini wrote about a project to use parallel Claudes to build a C compiler on top of the brand new Opus 4.6 Chris Lattner (Swift, …
An Introduction to Ruby Parsing with Prism | AppSignal BlogJan 7, 2026
Prism is here to change our lives as Ruby developers: find out how.
ZJIT has been merged into RubyMay 14, 2025
ZJIT has been merged into upstream Ruby. Learn about its architecture!
Hacker NewsMar 13, 2023
Hacker NewsNov 27, 2022
In this tutorial we'll create a Javascript compiler from scratch. We'll learn about the basic building blocks of compilers and deeply understand every single line of code we write.
JIT Compilers for Ruby and Rails: An OverviewSep 8, 2022
Find out about the different JIT compilers for Ruby — YJIT, MJIT, and TenderJIT — and their benefits.
Introduction to Compilers and Language DesignMay 20, 2022
A friendly introduction to machine learning compilers and optimizersOct 3, 2021
[Twitter thread, Hacker News discussion]
Compilers: Principles, Techniques, and Tools - WikipediaNov 3, 2020
Compilers: Principles, Techniques, and Tools is a computer science textbook by Alfred V. Aho, Monica S. Lam, Ravi Sethi, and Jeffrey D. Ullman about compiler construction for programming languages. First published in 1986, it is widely regarded as the classic definitive compiler technology text.
Let’s Build a Simple Interpreter. Part 18: Executing Procedure CallsMar 9, 2020
Do the best you can until you know better. Then when you know better, do better. ― Maya Angelou
complexity
How the human brain is like a murmuration of starlings | Aeon EssaysJan 2, 2026
The brain is much less like a machine than it is like the murmurations of a flock of starlings or an orchestral symphony
A Short Guide to Hard ProblemsMar 25, 2024
What’s easy for a computer to do, and what’s almost impossible? Those questions form the core of computational complexity. We present a map of the landscape.
compression-encoding
Hidden Data Science Gem: Rainbow Method for Label Encoding | by Anna ArakelMay 14, 2023
Make stronger and simpler models by leveraging natural order
Scikit-learn 1.1 Comes with an Improved OneHotEncoderOct 24, 2022
A simple yet highly practical feature
NSVQ: Improved Vector Quantization technique for Neural Networks TrainingOct 13, 2022
Efficient vector quantization for machine learning optimizations (eps. vector quantized variational autoencoders), better than straight…
What is Huffman Coding?Feb 22, 2021
The Huffman Coding algorithm is a building block of many compression algorithms, such as DEFLATE - which is used by the PNG image format and GZIP.
LZ4, an Extremely Fast Compression AlgorithmJan 27, 2021
Comparing Binary, Gray, and One-Hot EncodingJan 7, 2021
This article shows a comparison of the implementations that result from using binary, Gray, and one-hot encodings to implement state machines in an FPGA. These encodings are often evaluated and applied by the synthesis and implementation tools, so it’s important to know why the software makes these decisions.
Beyond One-Hot. 17 Ways of Transforming Categorical Features Into Numeric FDec 22, 2020
All the encodings that are worth knowing — from OrdinalEncoder to CatBoostEncoder — explained and coded from scratch in Python
A Mathematical Primer of CompressionMar 20, 2020
How to reduce storage size without losing information.
BCrypt ExplainedMar 9, 2020
Intro If you're into Cryptography For Beginners, you're in the right place. Maybe you're j...
A gentle introduction to Hamming codesMar 9, 2020
A gentle introduction to Hamming codes, error correcting binary codes whose words are all a Hamming distance of at least 3 apart.
RSA AlgorithmFeb 19, 2020
A Self-Contained Tutorial on RSA Algorithm Theories for Number Theory Noobs
What is the Best Audio Codec? — Audiophile ONJan 6, 2020
Audiophile On lists the best audio codecs for your music if you want the best sound quality, including descriptions of FLAC, OGG, ALAC, DSD, and MQA.
Research Guide: Model Distillation Techniques for Deep LearningDec 14, 2019
Knowledge distillation is a model compression technique whereby a small network (student) is taught by a larger trained neural network (teacher). The smaller network is trained to behave like the large neural network. This enables the deployment of such models… Continue reading Research Guide: Model Distillation Techniques for Deep Learning
concept-drift
Understanding Concept Drift: A Simple GuideMar 5, 2024
How changes in the distribution arise, and the impact of verification delay.
A Gentle Introduction to Concept Drift in Machine Learning - Machine LearniApr 3, 2018
Data can change over time. This can result in poor and degrading predictive performance in predictive models that assume a static relationship between input and output variables. This problem of the changing underlying relationships in the data is called concept drift in the field of machine learning. In this post, you will discover the problem of concept drift and ways…
concurrency
Understanding Ruby 3.3 Concurrency: A Comprehensive GuideNov 6, 2024
Let's explore Ruby's concurrency ecosystem, its various concurrency models, and their practical applications in modern software development
The shrinking role of semaphores [LWN.net]Apr 26, 2023
Guide to Concurrency in Python with AsyncioJun 1, 2020
This is a quick guide to Python’s asyncio module and is based on Python version 3.8. Introduction Why focus on asyncio? A quick asyncio summary A quick concurrent.futures summary Green Threads? Event Loop Awaitables Coroutines Tasks Futures Running an asyncio program Running Async Code in the REPL Use another Event Loop Concurrent Functions Deprecated Functions Examples gather wait wait_for as_completed create_task Callbacks Pools Executors asyncio.Future vs concurrent.futures.Future asyncio.wrap_future Introduction So let’s start by addressing the elephant in the room: there are many modules provided by the Python standard library for handling asynchronous/concurrent/multiprocess code…
Opening The Ruby Concurrency ToolboxFeb 19, 2020
As a Ruby developer you probably use tools like Sidekiq that rely on concurrency. But would you know how to *build* your own sidekiq, or add concurrency to an existing app? This article will open Ruby's concurrency to...
Async IO in Python: A Complete Walkthrough – Real PythonAug 30, 2019
This tutorial will give you a firm grasp of Python’s approach to async IO, which is a concurrent programming design that has received dedicated support in Python, evolving rapidly from Python 3.4 through 3.7 (and probably beyond).
Introduction to Concurrency Models with Ruby. Part IIMar 8, 2018
In the second part of our series we will take a look at more advanced concurrency models such as Actors, Communicating Sequential Processes, Software Transactional Memory and of course Guilds – a new concurrency model which may be implemented in Ruby 3.
confidence
How to Speak with Confidence When You’re Put on the SpotJan 14, 2026
Stanford’s Matt Abrahams offers practical advice for communicating clearly and calmly under pressure.
Reverse impostor syndromeOct 1, 2025
Imposter syndrome is other people thinking you’re good, but you don’t believe it yourself. Reverse imposter syndrome is knowing you are good, but others don’t see it from the outside.
Lessons from U.S. Army Special Ops on Becoming a LeaderAug 19, 2025
How to cultivate initiative, emotional confidence, imagination, and strategic vision.
3 simple steps to overcome self-doubt at workJul 24, 2025
It’s time to surmount the syndrome. Start by rewriting the story you hear in your head.
What Is the Spotlight Effect?May 24, 2025
The spotlight effect is one of the most fascinating phenomena of human experience. We explore why it happens and how to overcome it.
You’re a Bad Judge of How Good-looking You Are - NautilusApr 26, 2025
Why are we such bad judges of how others see us? Epley’s answer is that other people are novices about us, while we’re experts.“The Green Mirror” (1911) by Guy Rose / Wikicommons Nautilus Members enjoy an ad-free experience. Log in or Join now . There’s the full-body bedroom mirror, the bathroom mirror, and the trusty […]
Narcissism and Self-Esteem Are Very DifferentMay 14, 2024
Narcissism and self-esteem have very different developmental pathways and outcomes.
The Psychology of Camera ConfidenceFeb 16, 2024
In a world dominated by video, we know we’d benefit from communicating effortlessly through video content. But many of us struggle with camera confidence. This is because our fear of talking to a camera is deeply rooted in our survival instincts.
How Your Body Posture Communicates Feelings to OthersMay 6, 2023
New research suggests that body postures can reveal our emotions to other people—and maybe even change how we feel inside.
Why so many people undercharge for their workFeb 7, 2023
Setting a rate can be a minefield for folks navigating an industry alone.
How To Get An MBA From EminemJan 18, 2023
In 2002 I was driving to a hedge fund manager's house to hopefully raise money from him. I was two hours late. This was pre-GPS and I had no cell phone. I was totally lost. I kept playing over and over again "Lose Yourself" by Eminem. I was afraid this was my one shot and I was blowing it. I was even crying in my car. I was going broke and I felt this was my one chance. What a loser.
The Psychology of the Self-Appointed Genius - PriceonomicsJul 18, 2022
How ignorance and a little ego threat can make us ridiculously over-confident.
Finish Line: Weaponize the chip on your shoulderJun 24, 2022
Never underestimate the power your own insecurities can generate.
How to Feel Better NakedJun 21, 2022
Whether you want to find joy in your body, or just greater self-acceptance, these four strategies from psychologists and activists — and, yes, nudists — might help.
How to Learn the Trick of ConfidenceFeb 24, 2022
Can ‘confidence-whisperer’ Nate Zinsser help Jamie Waters boost his wavering self-belief?
MediumJan 17, 2022
How to learn the trick of confidenceJan 12, 2022
Can ‘confidence-whisperer’ Nate Zinsser help Jamie Waters boost his wavering self-belief?
Assertiveness is a virtue that anyone can develop with practice | Psyche IdJul 17, 2021
You can’t stop people making demands on your time and energy, but you can develop assertiveness skills to protect yourself
One simple way to build someone’s confidence: Ask for their adviceMay 31, 2021
When we want people to change, we typically tell them what to do. But what if we flipped the script and asked them for their wisdom instead? Behavioral scientist Katy Milkman PhD explains the power…
Five Phrases That Make People Discount What You’re SayingMay 31, 2021
These common expressions can cause listeners to think twice.
Public Speaking Nightmare: How to Shut Down Bullies and HecklersMar 11, 2021
Five tactics to silence the person trying to make you squirm.
How to have better arguments onlineFeb 18, 2021
The long read: The troubled times we live in, and the rise of social media, have created an age of endless conflict. Rather than fearing or avoiding disagreement, we need to learn to do it well
MediumJan 30, 2021
How to Talk to People You Disagree WithJan 25, 2021
Bridge the divide with thoughtful conversation techniques, next-level listening, and a dip into the science of changing minds.
How to tackle the monsters holding you back from being a good leader - Fast CompanyJan 8, 2021
"Unconscious leadership happens when we aren't self-aware, which puts fear in the driver's seat."
Healthy Self-DoubtAug 10, 2020
Why Talented People Don’t Use Their StrengthsFeb 21, 2020
We often undervalue what we inherently do well.
Writing is Thinking: Learning to Write with ConfidenceDec 23, 2019
Learning to write is learning to think, because writing is thinking. They are two peas in a powerful pod. This article goes over my writing process, focused on minimizing the activation energy to get started.
We Are All Confident IdiotsDec 23, 2019
The trouble with ignorance is that it feels so much like expertise. A leading researcher on the psychology of human wrongness sets us straight.
What to Do at Parties If You Hate Small TalkOct 11, 2018
We publish articles around emotional education: calm, fulfilment, perspective and self-awareness. | What to Do at Parties If You Hate Small Talk — Read now
conformal
Conformal_Prediction/paper/Conformal_Prediction_final.pdf at main · MichelLMar 5, 2024
This projects contains different conformal methods and approaches. Includes code generated for a experimental evaluation of a multidimensional, low-sample size biomedical dataset of oncological sub...
How to Add Uncertainty Estimation to your Models with Conformal PredictionJul 26, 2021
Why conformal prediction for uncertainty estimation can improve your predictions
conjoint
What Is Conjoint Analysis, and How Can It Be Used?Jun 11, 2022
Conjoint analysis is a highly effective means of market research, capable of informing a company’s pricing strategy and product development.
9 Common Types of Conjoint Analysis and How To Use ThemJun 11, 2022
Conjoint analysis is the optimal market research approach for measuring the value that consumers place on features of a product or service. Learn more!
Metric-Based (Ratings-based) Conjoint AnalysisMay 30, 2021
In marketing analytics, conjoint analysis is a technique used to gain specific insights about consumers’ preferences. Often derived from consumer surveys, conjoint analysis can tell us, for instance…
How to develop perfect product using conjoint analysisNov 9, 2020
Make data your unfair competitive advantage
consensus
Ethereum’s consensus layer elliptic curveOct 13, 2025
Introduction to the BLS12-381 curve used in Ethereum's consensus layer. Focus on concrete calculations to make the curve more tangible.
Raft Consensus AlgorithmAug 17, 2025
Raft is a consensus algorithm that is designed to be easy to understand.
Consensus Protocols: Explaining Proof-of-Work, Proof-of-Stake, and Other AlAug 30, 2023
In the realm of blockchain technology and cryptocurrencies, the concept of consensus plays a pivotal...
A review of consensus protocolsNov 5, 2020
conservation
Saving The Life We Cannot SeeFeb 26, 2026
Conservation has traditionally ignored the planet's smallest life forms. Microbiologists are trying to change that — before it's too late. Microbes make life on Earth possible, yet human activity is wiping these microbiomes out — and science is only beginning to grasp the potential implications.
When Coyotes Threatened Livestock on Central Texas Ranches, the Solution Was to Unlock an Ancient Ability in DogsFeb 20, 2026
Killing the predators is not nearly as effective as the intimidating presence of well-trained guardians, a role some breeds have played for 5,000 years
How To Build A Thousand-Year-Old TreeMay 6, 2025
"A set of experimental techniques and technologies that might seem harmful to trees is actually helping ancient forests survive."
The U.S. doesn’t refine cobalt. This startup wants to change that.Apr 23, 2025
The U.S. doesn't currently refine cobalt, a valuable material in a number of goods and products. This startup wants to change that.
Where EV batteries go to die – and be rebornApr 5, 2025
Batteries for electric vehicles are notoriously difficult to recycle, but growing demand for the rare metals they contain is leading to innovative new ways of retrieving them.
The Dingo’s FateMar 27, 2025
The convoluted story of how a species of dog first arrived in Australia and subsequently took over the Outback challenges fundamental notions about what it means to be “native.”
Living with Predators - NeuroLogica BlogMar 18, 2025
For much of human history, wolves and other large carnivores were considered pests. Wolves were actively exterminated on the British Isles, with the last wolf killed in 1680. It is more difficulty to deliberately wipe out a species on a continent than an island, but across Europe wolf populations were also actively hunted and kept
Inside the Fight to Save the World’s Most Endangered WolfMar 13, 2025
Once, the red wolf roamed every Southern state. Today, only seventeen remain in the wild on a swampy peninsula in Eastern North Carolina, a number on the rise thanks to the passionate team of biologists determined to help them thrive once more
How Two of the Rarest Horses on Earth Got LostOct 23, 2024
The entire world’s population of Przewalski’s horses once dwindled to a mere dozen. So how did a pair named Fiona and Shrek end up in livestock auctions in the West?
How a Crisis for Vultures Led to a Human Disaster: Half a Million DeathsJul 30, 2024
The birds were accidentally poisoned in India. New research on what happened next shows how wildlife collapse can be deadly for people.
This clever new tool will help you buy fewer clothesApr 15, 2024
Eileen Fisher has vowed to reduce overconsumption. Now, the brand is making good on its promise.
The Rise Of The Bee BanditsApr 5, 2024
Where once there was cattle and horse rustling, the American West is now confronting the theft of its bees.
As Wildfires Grow Fiercer, Some Companies Look to Rebuild the Tree Supply CApr 5, 2024
As forests succumb to ever-fiercer wildfires, the federal government and some adventurous private companies are trying to resuscitate an industry.
The unique songbird that's gone foreverApr 4, 2024
Bachman’s warbler is one of 21 species declared extinct last year – but scientists are still discovering its secrets
Wall cladding made from corn cob waste brings sustainable construction mateFeb 29, 2024
Construction is something that we probably cannot do without as we continue to build houses, buildings, and other structures. The quest for coming up with sustainable construction is ongoing as we look for materials that are eco-friendly and the process in creating them to be as sustainable as possible. There are a lot of waste
The quest to depave the world's citiesFeb 29, 2024
From Australia to Ontario, cities are taking up unnecessary stretches of concrete and asphalt, allowing nature to take hold in their place.
This forest generates billions of dollars without felling a single treeFeb 15, 2024
Cork oaks are making homes warmer, cars lighter and clothes biodegradable — while still feeding the birds and absorbing carbon.
Texas Is Already Running Out of WaterFeb 5, 2024
Parts of the state are starting the year with low reserves. With light winter rains failing to replenish supply, and a scorching summer predicted, key areas may be pushed to the brink.
A Wild Idea to Protect the Great Barrier ReefOct 18, 2023
Ships carry mist-making machines that cause clouds to block the sun. It could work.
‘We’re going to get messy’: Inside the ‘Depave’ movement that’s swapping asAug 31, 2023
“We've had a love affair with paving things for several generations." The Depave movement is trying to change that.
Earth League International Hunts the Hunters | The New YorkerJul 19, 2023
A conservation N.G.O. infiltrates wildlife-trafficking rings to bring them down.
A Texas Family Passed Up Millions to Turn Their Ranch Into a Nature PreservJun 30, 2023
The conservation victory at Honey Creek relied on “the goodness of those people’s hearts,” says one environmentalist.
The Trillion-Dollar Auction to Save the WorldJun 11, 2023
Ocean creatures soak up huge amounts of humanity’s carbon mess. Should we value them like financial assets?
So, How Do You Actually Refill an Aquifer?May 17, 2023
Inside California’s audacious plan to stash more than a trillion gallons of water underground
My Rancher Parents Hate Wolves. I Took Them on a Yellowstone Wolf-Watching Tour to Change Their Minds.Apr 12, 2023
Wolves are my favorite animal, but my parents see them as the enemy that kills their livestock
Everything you need to know about the wild world of heat pumpsFeb 25, 2023
Heat pumps could help address climate change and save you money. Here’s how they work.
Branding With Bonobos? A Conservation Fee Might Help Save Them.Dec 11, 2022
Data suggests brands can blunt public awareness of species loss when they use at-risk animals in ads. Should they pay?
Phantom Forests: Why Ambitious Tree Planting Projects Are FailingOct 25, 2022
High-profile initiatives to plant millions of trees are being touted by governments around the world as major contributions to fighting climate change. But scientists say many of these projects are ill-conceived and poorly managed and often fail to grow any forests at all.
At Old Coal Mines, the American Chestnut Tries for a ComebackSep 16, 2022
Across Appalachia, scientists and foresters are trying to reintroduce a hybrid version, helping to revive damaged land while also bringing back a beloved tree.
Why an American chestnut tree in Centreville is the 'holy grail' for conservationistsSep 5, 2022
The American chestnut tree used to grow throughout the eastern U.S., but was devastated by a blight in the early 20th century.
Killing Invasive Species Is Now a Competitive SportSep 5, 2022
In the Panhandle, where swarms of lionfish gobble up native species, a tournament offers cash prizes to divers skilled at spearing one predator after another.
Into the Forbidden ForestJul 29, 2022
Famed American biologist Patricia Wright explores an astonishing breadth of biodiversity in the wilderness of Madagascar
Romance, Politics, and Ecological Damage: The Saga of Sable Island’s Wild Horses | Hakai MagazineJul 28, 2022
They’ve roamed free for hundreds of years, but is that freedom harming the ecosystem they call home?
For Forest Blazes Grown Wilder, an Alternative: The 'Good Fire'Oct 28, 2021
Despite the evidence supporting prescribed fires in the American West, policymakers are slow to put it into practice.
The Kenyan Maasai Who Once Hunted Lions Are Now Their SaviorsJan 28, 2021
A decade ago, scientists worried the lion could go extinct in Kenya by 2020. But today the area’s lion population is thriving thanks to an extraordinary group.
California’s Lone Wolf PackJul 22, 2020
Fourteen animals near Mount Lassen are the best hope for the reestablishment of this misunderstood species.
Can Car-free Living Make You Happier?Sep 24, 2018
The community of Culdesac, Arizona, was designed for pedestrians and cyclists. And residents love it.
The Portuguese shepherds who love wolvesAug 24, 2009
Whilst Europe grapples with how to deal with growing wolf populations, this mountainous region of Portugal has coexisted with the predators for centuries.
The 'mind bombs' that changed the whaling industryOct 24, 2003
In the 1970s, a small group of Greenpeace activists had a unique idea for how they could put an end to commercial whaling.
conspiracies
These 2 Traits Make You More Likely to Believe Conspiracy TheoriesJan 8, 2026
A new study suggests that those wacky conspiracy theories aren't just a social media problem, they're a problem of mindset.
How to Disprove a Conspiracy Theory in 7 StepsMay 14, 2024
Conspiracy theories abound. What should you believe − and how can you tell?
Down the Rabbit Hole: Why People Fall for Conspiracy TheoriesAug 30, 2022
And how to talk to those who have fallen for falsehoods.
The Making of a Conspiracy Theory | Tzafrir BarzilayAug 5, 2022
On the fabrication of well-poisoning accusations in medieval Europe.
Why People Fall For Conspiracy TheoriesJun 17, 2021
You might not believe in QAnon, but you could still fall down the rabbit hole.
To Counteract Propaganda, We Should Look to Lessons from AdvertisingJan 31, 2021
The goal should not be conversion but doubt.
The enduring allure of conspiraciesJan 23, 2021
Conspiracy theories seem to meet psychological needs and can be almost impossible to eradicate. One remedy: Keep them from taking root in the first place.
Why trolls extremists and others spread conspiracy theories they don’t believeOct 24, 2004
These people share conspiracy theories to promote conflict, cause chaos, recruit and radicalize potential followers, make money, harass, or even just to get attention.
containers
How to Self-Host n8n on Docker in 5 Simple StepsJan 13, 2026
This tutorial will guide you through the complete process of self-hosting n8n on Docker in just 5 simple steps, with detailed explanations and code samples, regardless of your technical background.
Container Management With PodmanAug 22, 2025
Podman is the Docker alternative from Red Hat. It is similar to Docker. You can easily start using it if you know Docker already.
Year in Review: Containers Get Smaller, Faster, More SecureDec 19, 2024
Containers were a revolutionary jump ahead of virtual machines, and they continue to get faster, lighter and more secure in the years since.
Exploring 5 Docker Alternatives: Containerization Choices for 2024Mar 20, 2024
In the realm of containerization, Docker has long been hailed as the go-to platform for developers....
Download The Ultimate Docker Cheat SheetJan 16, 2024
Get your Docker Cheat Sheet as PDF or PNG. In this article, you learn how to write Dockerfiles, build images, and run them as container.
Essential Tools for a Successful DevOps EngineerMar 20, 2023
Introduction: The software development process has been transformed by the DevOps...
The Power of Linux Cgroups: How Containers Take Control of Their ResourcesJan 13, 2023
Optimizing Container Resource Allocation with Linux Control Groups
A Practical Introduction to Container Terminology | Red Hat DeveloperJan 16, 2022
You might think containers seem like a pretty straightforward concept, so why do I need to read about container terminology? In my work as a container technology evangelist, I've encountered misuse of
Docker: Accelerated Container Application DevelopmentDec 12, 2021
Docker is a platform designed to help developers build, share, and run container applications. We handle the tedious setup, so you can focus on the code.
Demystifying containers, Docker, and Kubernetes - Microsoft Open Source BlogDec 11, 2021
Modern application infrastructure is being transformed by containers. The question is: How do you get started?
Do I Really Need Kubernetes?Dec 2, 2021
Kubernetes is powerful, but that does not mean it’s the right choice for every team and every app. It is made to solve a certain set of problems.
Kernel-based Virtual MachineDec 2, 2021
Kernel-based Virtual Machine (KVM) is a free and open-source virtualization module in the Linux kernel that allows the kernel to function as a hypervisor. It was merged into the mainline Linux kernel in version 2.6.20, which was released on February 5, 2007. KVM requires a processor with hardware virtualization extensions, such as Intel VT or AMD-V. KVM has also been ported to other operating systems such as FreeBSD and illumos in the form of loadable kernel modules.
Announcing HashiCorp WaypointDec 2, 2021
A consistent developer workflow to build, deploy, and release applications across any platform.
Learning Containers From The Bottom UpNov 15, 2021
What is a Container? Container vs. VM? Docker vs. Kubernetes. How to organize the learning efficiently?
How AWS’s Firecracker virtual machines workAug 5, 2021
Firecracker “microVMs” combine the security of virtual machines with the efficiency of containers.
Hacker NewsFeb 11, 2021
Buildpacks vs DockerfilesFeb 10, 2021
Read more on the Doximity Technology Blog about how our engineers and data scientists are building the largest online network for clinicians.
Linux HandbookJan 28, 2021
An independent, reader-supported publication focusing on Linux Command Line, Server, Self-hosting, DevOps and Cloud Learning
Wait, Docker is deprecated in Kubernetes now? What do I do?Dec 10, 2020
This article explains why Docker is now deprecated in Kubernetes.
rewanthtammana/containers-from-scratch: Writing a container in a few lines of Go code, as seen at DockerCon 2017 and on O'Reilly SafariNov 19, 2020
Writing a container in a few lines of Go code, as seen at DockerCon 2017 and on O'Reilly Safari - rewanthtammana/containers-from-scratch
Google Cloud now supports buildpacks | Google Cloud BlogNov 3, 2020
Google Cloud buildpacks make it much easier and faster to build applications on top of containers.
docker | minikubeNov 3, 2020
Overview The Docker driver allows you to install Kubernetes into an existing Docker install. On Linux, this does not require virtualization to be enabled. Requirements Install Docker 18.09 or higher (20.10 or higher is recommended) amd64 or arm64 system. If using WSL complete these steps first Usage Start a cluster using the docker driver: minikube start --driver=docker To make docker the default driver: minikube config set driver docker Requirements Docker 20.10 or higher, see https://rootlesscontaine.rs/getting-started/docker/ Cgroup v2 delegation, see https://rootlesscontaine.rs/getting-started/common/cgroup2/ Kernel 5.11 or later (5.13 or later is recommended when SELinux is enabled), see https://rootlesscontaine.rs/how-it-works/overlayfs/ Usage Start a cluster using the rootless docker driver:
Getting started with Kubernetes: how to set up your first cluster | CircleCOct 27, 2020
Learn how to set up a real-world, production-ready Kubernetes cluster using Amazon Elastic Kubernetes Service (Amazon EKS) and Terraform.
An Introduction To KubernetesOct 21, 2020
Have you ever wondered how companies like Facebook are able to serve applications to Billions of...
How containers work: overlayfs - Julia EvansNov 20, 2019
content-syndication
SEO Aspects of Content SyndicationJul 24, 2025
Publishers who syndicate their content can drive referral traffic and raise brand visibility. The tactic does little for search engine optimization, however.
Why B2B Content Needs Great Visual Design to Perform in 2025Jul 24, 2025
In the early days of digital marketing, B2B content often meant long whitepapers, text-heavy PDFs, and dry blog posts. Fast forward to 2025, and we’re
Content Syndication: What It Is & How to Do It SuccessfullyFeb 16, 2023
This article will discuss content syndication in more detail, how it works, and the benefits of using this technique.
context-graphs
What are Context Graphs? - MarkTechPostJan 21, 2026
Explore the concept of Context Graphs and their role in improving Knowledge Graphs for better AI applications.
AI’s trillion-dollar opportunity: Context graphs - Foundation CapitalJan 3, 2026
AI’s trillion-dollar opportunity: Context graphs The last generation of enterprise software created a trillion-dollar ecosystem by becoming systems of record. Salesforce for…
Comparing Memory Systems for LLM Agents: Vector, Graph, and Event LogsNov 10, 2025
Learn how different memory systems affect multi-agent planning. Comparing Memory Systems for LLM Agents highlights key performance metrics.
A Technical Roadmap to Context Engineering in LLMs: Mechanisms, Benchmarks, and Open ChallengesAug 3, 2025
Context engineering for large language models—frameworks, architectures, and strategies to optimize AI reasoning, and scalability
contracts
What actually is a legal entity?Feb 26, 2026
Part 1 in a series on the fundamentals of legal entity identity data. Think about the last time you signed a contract. If it was done in a work context, perhaps it was a supplier agreement, a SaaS …
16 Sales Contract Clauses to Balance Risk and Reward | Andreessen HorowitzJul 18, 2022
Think of a sales contract as a system of interconnected components and levers that work together to achieve an acceptable level of risk and reward for both you and your customer.
With DocPro, you can create all your own legal documents for your businessNov 6, 2020
The most of us have come across a situation where we had to pay for not getting something down in writing. This platform solves just that.
controversy
9 strategies for removing negative content from the webJan 16, 2024
Here are ways to remove webpages and online posts harmful to your brand – from privacy claims and copyright notices to legal measures.
How Can Platforms Deal with Toxic Content? Look to Wall StreetJul 24, 2023
Social media has a content problem. It's not the content itself, although the list of toxic material is long. The problem is the sheer volume of content. Instead of trusting in self-regulation, the United States could use its regulation of Wall Street after 2008 as a roadmap for regulating tech.
The Science of Controversial ContentJul 18, 2022
Let’s step away from the “hoo rah” surrounding content marketing, and discuss some legitimate strategies for creating popular, controversial content.
Don’t Poke the Bear: Creating Content for Sensitive SituationsJul 18, 2022
Delivering bad news is hard, but it’s part of life and business. We notify customers when we’re out of a product they want to buy, and we send warnings when people violate our companies’ terms of s…
Sort By ControversialJun 10, 2020
[Epistemic status: fiction] Thanks for letting me put my story on your blog. Mainstream media is crap and no one would have believed me anyway. This starts in September 2017. I was working for a sm…
What You Can't SayDec 23, 2019
TIL when Rockstar first released Grand Theft Auto, they actually paid reviewers to negatively review the game in order to keep it controversial, and therefore popular. They targeted right wing news papers to ensure moral outrage and drive the game to success.Aug 2, 2019
117K votes, 4.1K comments. 38M subscribers in the todayilearned community. You learn something new every day; what did you learn today? Submit…
convex-hulls
These Mysterious Shapes Are at the Heart of Math’s Biggest PuzzlesJul 24, 2025
Mathematicians describe the most beautiful and beguiling forms and surfaces they know
Binary image convex hull – algorithm notes » Steve on Image Processing withFeb 4, 2024
Today I want to tell a little image processing algorithm story related to my post last week about the new bwconvhull function in the Image Processing Toolbox. The developer (Brendan) who worked on this function came to see me sometime last year to find out how the 'ConvexImage' measurement offered by regionprops
convolutions
Deep Learning Architectures From CNN, RNN, GAN, and Transformers To EncoderApr 15, 2024
Deep learning architectures have revolutionized the field of artificial intelligence, offering innovative solutions for complex problems across various domains, including computer vision, natural language processing, speech recognition, and generative models. This article explores some of the most influential deep learning architectures: Convolutional Neural Networks (CNNs), Recurrent Neural Networks (RNNs), Generative Adversarial Networks (GANs), Transformers, and Encoder-Decoder architectures, highlighting their unique features, applications, and how they compare against each other. Convolutional Neural Networks (CNNs) CNNs are specialized deep neural networks for processing data with a grid-like topology, such as images. A CNN automatically detects the important features without any human supervision.
scikit-and-tensorflow-workbooks/ch13-convolutional-NNs.ipynb at master · bjpcjp/scikit-and-tensorflow-workbooksJan 16, 2022
based on "Hands-On Machine Learning with Scikit-Learn & TensorFlow" (O'Reilly, Aurelien Geron) - bjpcjp/scikit-and-tensorflow-workbooks
A guide to receptive field arithmetic for Convolutional Neural NetworksMay 1, 2018
The receptive field is perhaps one of the most important concepts in Convolutional Neural Networks (CNNs) that deserves more attention from…
coolness-desire-envy
Why Have Gourmet Grocers Become Social Clubs?Feb 20, 2026
Gourmet grocers are leaning into the experience.
Why do people collect stuff?Aug 28, 2025
From vinyl albums to items in video games, humans love to collect. But what we're really craving goes beyond stuff itself, research finds.
These Are the 6 Universal Traits of CoolnessJul 1, 2025
What makes someone "cool?" Not just admired or respected—but genuinely, universally cool? We've got the answers...
Status, class, and the crisis of expertiseJun 8, 2025
By celebrating "common sense" over expert authority, populism performs a dramatic status inversion. It gifts uneducated voters the power of knowledge and deflates those who look down on them.
Influencers take heat over lavish lifestylesApr 20, 2025
As consumer confidence plunges, cracks are showing: TikTok and Instagram users are pushing back against influencers in the comments.
Buy All This, Look RichFeb 22, 2025
How Quince, the one-stop shop for everything from cashmere sweaters to caviar, seduced a generation of jaded shoppers.
The Birth of CoolAug 4, 2024
Being cool is hard. Staying cool is harder. It’s an elusive quality, in part because it’s an elusive word with layers of nuanced meaning that peel off...
The secret economics of the Birkin bagJul 29, 2023
On a flight from Paris to London in 1983 Jane Birkin, an Anglo-French chanteuse and actress, spilled the contents of her overstuffed straw...
Year In Review: The Rise And Fall Of The Hype WatchDec 15, 2022
Last year, a handful of specific watches – you know the ones – went from "rather expensive, even for a luxury item" to "these prices simply cannot be real." This year, the bubble popped. Here's what happened, and what it means for 2023.
The Psychology of FOMOAug 9, 2022
One of the many unintended consequences of social media is what is popularly referred to as FOMO - fear of missing out. People see all the wonderful things people are doing and buying in their social media profiles, and fear that they are missing out on the good life, or the latest trend, or perhaps
the-economics-of-girl-talkJul 19, 2022
He is a music sensation, but Girl Talk neither sings nor plays an instrument. He plays music off reinforced Toughbook laptops protected from his sweat by layers of plastic wrap.
Why Is Art Expensive? - PriceonomicsJul 18, 2022
How do you sell a six-figure painting? Branding and a heavily "curated" marketplace.
From Forever 21 to Online Shopping, Why Fast Fashion Is So AddictiveJul 18, 2022
Research shows that the brain finds pleasure in the pursuit of inexpensive things, and high-street chains and online retailers sites alike are cashing in.
The Psychology of a Fanboy: Why You Keep Buying the Same StuffJul 18, 2022
None of us want to admit it, but chances are we're all fanboys of something. Whether it's a particular brand of software, gadget, or anything else, we
LinkedIn Learning Blog: Where Professionals Go to LearnJun 25, 2022
The LinkedIn Learning Blog is written for professionals by professionals. Discover courses, tips and information that can take your career to new heights.
Atomic Habits of Desire - by Luke BurgisFeb 28, 2022
A dialogue of books: James Clear's "Atomic Habits" and "Wanting"
Why the Best Things in Life Are All BackwardsDec 15, 2019
The ability to let go of control when one wants it most is one of the most important skills anyone can develop.
Veblen good - WikipediaAug 20, 2019
A Veblen good is a type of luxury good, named after American economist Thorstein Veblen, for which the demand increases as the price increases, in apparent contradiction of the law of demand, resulting in an upward-sloping demand curve. The higher prices of Veblen goods may make them desirable as a status symbol in the practices of conspicuous consumption and conspicuous leisure. A product may be a Veblen good because it is a positional good, something few others can own.
Why Envy Might Be Good for UsJul 15, 2018
Namibian hunter-gatherers deride those who stand out. What does this tell us about why, and how, we care about fairness?
Envy’s hidden handMay 3, 2018
Namibian hunter-gatherers deride those who stand out. What does this tell us about why, and how, we care about fairness?
Minimalism Is Just Another Boring Product Wealthy People Can BuyMay 3, 2018
I think it’s probably no secret by now that I hate minimalism. I hate it as the incredibly-tedious piece of […]
copper
Copper becomes the “the new industrial kingpin” thanks to AI, green energy,May 21, 2024
Copper is on the verge of a reign similar to oil's historic dominance, but fueled by entirely new forces. A
Will optics replace copper interconnects? We asked Ayar LabsJun 21, 2022
Star Trek's glowing circuit boards may not be so crazy
The Beginning of the End for CopperNov 27, 2017
The FCC voted last Thursday to relax the rules for retiring copper wiring. This change was specifically aimed at Verizon and AT&T and is going to make it a lot easier for them to tear down old …
copywriting
10 Subject Line Inspirations for Different Marketing Purposes: | Chase Dimond | 26 commentsMay 18, 2025
10 Subject Line Inspirations for Different Marketing Purposes: | 26 comments on LinkedIn
Paraphrasing Tool - QuillBot AIFeb 10, 2024
Write effortlessly and efficiently with QuillBot's suite of AI tools. Paraphrase, check grammar, analyze tone, improve fluency, and more. Start doing your best work.
11 Product Labels for Max ConversionsMay 8, 2023
Paraphrasing technical product details into easy-to-understand labels drives ecommerce conversions. Here's how, with examples.
5 tips for writing amazingly jargon-free product copyJul 22, 2022
These five tactics will help simplify and clarify your technical copy.
12 Ways to Improve Email DeliverabilityJul 18, 2022
Let me state that another way so you don’t miss it. If your emails aren’t getting delivered, then email marketing is a massive waste of time and money.
Neil Patel's Digital Marketing BlogJul 18, 2022
Your #1 resource for digital marketing tips, trends, and strategy to help you build a successful online business.
The Most Popular Words in the Most Viral HeadlinesJul 18, 2022
A study of viral headlines and the top words and phrases that make up viral headlines for the most shareable sites on the web.
How to Get Busy People to Take Action When You Send an EmailJul 18, 2022
We all get a lot of email. And we send off scores of them, too. For important emails we hope for replies or action. If you do the math on the number of inbound emails you get multiplied by the time…
Don’t Poke the Bear: Creating Content for Sensitive SituationsJul 18, 2022
Delivering bad news is hard, but it’s part of life and business. We notify customers when we’re out of a product they want to buy, and we send warnings when people violate our companies’ terms of s…
10 Content Ideas That Always WorkJun 24, 2022
Never run out of content ideas with this proven system for generating remarkable topics. It'll help you publish regularly on your blog.
30 Genius Cover Letter Openers Recruiters Will LOVEJun 23, 2022
Don’t waste space with “I’m writing to apply…”
How Content Scoring Can Help Generate RevenueJun 22, 2022
Content marketing has become an increasingly popular way for brands to promote themselves. It is subtle and generates more leads than traditional
Product Descriptions: 17 Fresh Writing AnglesJun 12, 2022
Need to spice up descriptions for bland products? Use these themes and examples the next time you’re describing a back-to-school backpack or plain white t-shirt. You’ll soon understand how to look at ordinary products differently.
A Checklist of Copywriting TacticsJun 7, 2022
Free Online Guide - Which words will persuade? How to structure your syntax? Plus dozens of additional techniques.
3 Keys for High-converting Product DescriptionsMay 21, 2021
Writing product descriptions sounds simple. But it takes planning. The best descriptions address a broad audience, which is why many companies employ marketers to help. When writing descriptions for the masses, focus on the following three elements.
Learn How to Write Copy That SellsAug 29, 2019
Increase your sales with the tips from the Step-by-Step Copywriting Secrets.
How I Write Online ArticlesMay 4, 2019
I like to write, and when I do, I prefer writing in markdown. Lately, people have been asking my writing process involves, so I decided to write it down in this short post. This is my process and in no way should you feel obligated to use it. Hopefully, this
Writing copy for landing pagesDec 21, 2018
Write copy that delights visitors, persuades prospects, and wins customers.
StetOct 27, 2018
There’s a term in copyediting called “stet.” That’s what you write when you want the copyeditor to not make the indicated change. It’s probably Latin for, “leave…
I make up to $6,000 a day writing quotes on Instagram — here's howOct 11, 2018
Insider gathered advice from successful entrepreneurs on turning passions into profitable businesses.
A Word Please: Coffee-shop prompt stirs ChatGPT to brew up bland copySep 24, 2009
A comparison between a report written by a human and one composed by AI reveals the weaknesses of the latter when it comes to journalism.
correlation
How to Calculate and Interpret the Covariance Matrix with NumPySep 17, 2025
In this article, we will explore how to calculate and interpret the covariance matrix using NumPy.
Understanding Multicollinearity: Detection and RemediesSep 5, 2025
Multicollinearity occurs when predictors in your regression model correlate highly, making it hard to isolate individual variable effects.
Pearson vs Spearman Correlation: Find Harmony between the VariablesJan 19, 2024
Which measure of correlation should you use for your task? Learn all you need to know about Pearson and Spearman correlations.
Pearson, Spearman and Kendall Correlation Coefficients, by HandSep 17, 2023
Learn how to compute the Pearson, Spearman and Kendall correlation coefficients by hand to evaluate the relationship between two variables
Correlation — When Pearson’s r Is Not EnoughFeb 2, 2023
Comparison of various correlation methodologies
Types of Correlation CoefficientsJul 5, 2021
Different Kinds of Correlation Coefficients in a Deeper Look
courage
6 Ways to Practice Everyday CourageAug 5, 2025
It’s not an innate ability, but a muscle built through consistent, routine choices.
The lonely zoneJan 23, 2023
For many, the goal is to be the deciding vote, the donation that gets a cause over the goal, the person who counts. And often, we enjoy piling on. Once the cause or fashion or tech is clearly worki…
Sunday Firesides: If You See Something, Say SomethingJun 26, 2022
In a classic experiment conducted by the psychologist Solomon Asch, participants were placed in a group, shown a “target” line alongside a set of comparison lines of varying lengths, and asked which was closest in length to the target. The answer was always obvious, but unbeknownst to the study’s actual participants, they had been placed […]
Why is “courage” suddenly such a popular job requirement?Aug 20, 2019
More and more companies are listing the quality as a requirement for entry-level, minimum-wage jobs.
courtesy
There’s Seldom Any Traffic on the High RoadNov 20, 2018
When people are rude, our ego demands we respond in kind with a quick comeback or snide remark. If we give in, we might feel better in the short term, but pay a huge price in the long run. There’s a much better way to diffuse the situation, (and get what you want.)
cpp
Build Your Own Redis with C/C++ | Build Your Own Redis with C/C++Jan 31, 2023
Build Your Own Redis with C/C++ | Learn network programming and data structures
Torch and Torchvision C installation and debugging on LinuxJan 16, 2023
Example debugging RoIAlign from Torchvision
Important GCC Flags in LinuxDec 16, 2022
You can use GCC flags to extend the functionality of the GCC compiler. Here are some of the common and yet important flags.
C By Example Code Examples with Simple ExplanationsSep 23, 2022
Welcome to C++ By Example. Here you will find clear and up to date C++ code examples with concise and straightforward explanations.
carbon-language/carbon-lang: Carbon Language's main repository: documents,Jul 30, 2022
Carbon Language's main repository: documents, design, implementation, and related tools. (NOTE: Carbon Language is experimental; see README) - carbon-language/carbon-lang
Introducing Carbon, Google's Experimental Successor for CJul 30, 2022
There’s another new language on the block: Carbon. Find out if this one’s worth learning.
Size Optimization TricksJun 11, 2022
C 20 Concepts: The Definitive GuideAug 22, 2021
Show HN: A list of 470 static analysis toolsNov 29, 2020
Find static code analysis tools and linters for Java, JavaScript, PHP, Python, Ruby, C/C++, C#, Go, Swift, and more. All tools and linters are peer-reviewed by fellow developers to select the best tools available. Avoid bugs in production, outages on weekends, and angry customers.
C the Good PartsNov 3, 2020
Jordan DeLong overviews the past, current and near future "good parts" of C++'s functional side through the colored lens of his biases.
Understanding C/C Build system by building a simple project - Part 1Nov 3, 2020
C/C++ is the mother of many popular programming languages out there today, all the fancy programming...
Compiler Explorer - C++ (x86-64 gcc 9.2)Feb 19, 2020
void fill1(char *p, size_t n) { std::fill(p, p + n, 0); } void fill2(char *p, size_t n) { std::fill(p, p + n, '\0'); }
Executive SummaryFeb 19, 2020
C++ Ecosystem: Compilers, IDEs, Tools, Testing and MoreDec 23, 2019
To write a professional C++ application, you not only need a basic text editor and a compiler. You require some more tooling. In this blog post, you’ll see a broad list of tools that make C++ programming possible: compilers, IDEs, debuggers and other. Last Update: 14th October 2019. Note: This is a blog post based on the White Paper created by Embarcadero, see the full paper here: C++ Ecosystem White Paper.
How to Use C Functions in PythonAug 23, 2019
Did you know you can write functions in C and then call them directly from Python? Isn't that cool? L...
CythonMay 21, 2019
Build software that combines Python’s expressivity with the performance and control of C (and C++). It’s possible with Cython, the compiler and hybrid programming language used by foundational packages such … - Selection from Cython [Book]
cppreference.comSep 6, 2018
Beej's Guide to C Programming (2007)Jun 8, 2018
Interactive Workflows for C with Jupyter – Jupyter BlogJun 8, 2018
Scientists, educators and engineers not only use programming languages to build software systems, but also in interactive workflows, using…
Boost.Hana: User ManualDec 27, 2017
GitBookNov 18, 2017
GitBook is a knowledge management tool for engineering teams. It simplifies knowledge sharing, with docs-as-code support and AI-powered search & insights. Sign up for free!
Learn CNov 11, 2017
cpus
PC parts picker - CPUsFeb 26, 2026
Unusual circuits in the Intel 386's standard cell logicNov 23, 2025
I've been studying the standard cell circuitry in the Intel 386 processor recently. The 386, introduced in 1985, was Intel's most complex pr...
User:Birdman86 - Wikimedia CommonsOct 22, 2025
Deterministic ExecutionOct 7, 2025
The Motorola 68000: A 32-Bit Brain in a 16-Bit BodySep 26, 2025
Motorola’s 68000 blended 32-bit power with a 16-bit bus, creating a balanced, orthogonal, and elegant architecture that powered everything from Macintosh to arcade machines.
Here be dragons: Preventing static damage, latchup, and metastability in the 386Aug 18, 2025
I've been reverse-engineering the Intel 386 processor (from 1985), and I've come across some interesting circuits for the chip's input/outpu...
Caches: LRU v. randomAug 2, 2025
Performance Analysis and Tuning on Modern CPUsApr 12, 2025
Notes on the Pentium's microcode circuitryMar 31, 2025
Most people think of machine instructions as the fundamental steps that a computer performs. However, many processors have another layer of ...
The Pentium contains a complicated circuit to multiply by threeMar 2, 2025
In 1993, Intel released the high-performance Pentium processor, the start of the long-running Pentium line. I've been examining the Pentium'...
The Road Ahead For Datacenter Compute Engines: The CPUsJan 30, 2025
It is often said that companies – particularly large companies with enormous IT budgets – do not buy products, they buy roadmaps. No one wants to go to
AMD Reveals Real Reason It Won't Put 3D V-Cache On Multiple CCDsJan 8, 2025
After persistent rumors refused to recede, AMD steps in with a clear explanation why dual-CCD V-Cache doesn't exist.
Pi in the Pentium: reverse-engineering the constants in its floating-point unitJan 5, 2025
Intel released the powerful Pentium processor in 1993, establishing a long-running brand of high-performance processors. 1 The Pentium incl...
Intel's $475 million error: the silicon behind the Pentium division bugDec 29, 2024
In 1993, Intel released the high-performance Pentium processor, the start of the long-running Pentium line. The Pentium had many improvement...
AMD Ryzen 7 9800X3D Uses A Thick Dummy Silicon That Comprises 93% Of The CCD Stack And Has No Performance PurposeDec 21, 2024
The CCD stack with 3D V-Cache on the AMD Ryzen 7 9800X3D is only 40-45µm in total, but the rest of the layers add up to a whopping 750µm.
AMD Disables Zen 4's Loop BufferDec 1, 2024
A loop buffer sits at a CPU's frontend, where it holds a small number of previously fetched instructions.
Antenna diodes in the Pentium processorNov 24, 2024
I was studying the silicon die of the Pentium processor and noticed some puzzling structures where signal lines were connected to the silico...
Why Intel Lost Its CPU Crown To AMD (And How Ryzen Changed The Game) - SlashGearNov 23, 2024
Intel was a dominant leader in the CPU market for the better part of a decade, but AMD has seen massive success in recent years thanks to its Ryzen chips.
Amazon’s Cloud Crisis: How AWS Will Lose The Future Of ComputingNov 4, 2024
Nitro, Graviton, EFA, Inferentia, Trainium, Nvidia Cloud, Microsoft Azure, Google Cloud, Oracle Cloud, Handicapping Infrastructure, AI As A Service, Enterprise Automation, Meta, Coreweave, TCO
HPC Gets A Reconfigurable Dataflow Engine To Take On CPUs And GPUsOct 29, 2024
No matter how elegant and clever the design is for a compute engine, the difficulty and cost of moving existing – and sometimes very old – code from the
Surveying the Landscape of Smartphone ProcessorsAug 2, 2024
There are many chip partitioning and placement tradeoffs when comparing top-tier smartphone processor designs.
Zen 5’s 2-Ahead Branch Predictor Unit: How a 30 Year Old Idea Allows for NeJul 27, 2024
When I recently interviewed Mike Clark, he told me, “…you’ll see the actual foundational lift play out in the future on Zen 6, even though it was really Zen 5 that set the table for that.” And at that same Zen 5 architecture event, AMD’s Chief Technology Officer Mark Papermaster said, “Zen 5 is a ground-up redesign of the Zen architecture,” which has brought numerous and impactful changes to the design of the core.
Testing AMD’s Bergamo: Zen 4c SpamJun 25, 2024
Server CPUs have pushed high core counts for a long time, though they way they got high core counts has varied.
Flow claims it can 100x any CPU’s power with its companion chip and some elJun 12, 2024
A Finnish startup called Flow Computing is making one of the wildest claims ever heard in silicon engineering: by adding its proprietary companion chip,
AMD announces 3nm EPYC Turin with 192 cores and 384 threads — 5.4X faster tJun 4, 2024
192 cores, 385 threads, socket compatibility. What's not to like?
Half of Russian-Made Chips Are DefectiveMar 31, 2024
Anton Shilov reports via Tom's Hardware: About half of the processors packaged in Russia are defective. This has prompted Baikal Electronics, a Russian processor developer, to expand the number of packaging partners in the country, according to a report in Vedomosti, a Russian-language business dai...
“Downfall” bug affects years of Intel CPUs, can leak encryption keys and moAug 10, 2023
Researchers also disclosed a separate bug called “Inception” for newer AMD CPUs.
Downfall AttacksAug 9, 2023
Downfall attacks targets a critical weakness found in billions of modern processors used in personal and cloud computers.
Calculate Computational Efficiency of Deep Learning Models with FLOPs and MJul 24, 2023
In this article we will learn about its definition, differences and how to calculate FLOPs and MACs using Python packages.
Gallery of Processor Cache EffectsJul 18, 2023
Intel Is All-In on Back-Side Power DeliveryJun 9, 2023
The company’s PowerVia interconnect tech demonstrated a 6 percent performance gain
The Case for Running AI on CPUs Isn’t Dead YetJun 2, 2023
GPUs may dominate, but CPUs could be perfect for smaller AI models
ARM’s Cortex A53: Tiny But ImportantMay 28, 2023
Tech enthusiasts probably know ARM as a company that develops reasonably performant CPU architectures with a focus on power efficiency.
Intel CPU Die Topology - by Jason Rahman - Delayed BranchMay 28, 2023
Over the past 10-15 years, per-core throughput increases have slowed, and in response CPU designers have scaled up core counts and socket counts to continue increasing performance across generations of new CPU models.
Reverse-engineering the division microcode in the Intel 8086 processorApr 9, 2023
While programmers today take division for granted, most microprocessors in the 1970s could only add and subtract — division required a sl...
Hacker NewsApr 6, 2023
While microprocessors are used in various applications, they are precluded from the use in high-energy physics applications due to the harsh radiation present. To overcome this limitation a...
Interconnect Under the Spotlight as Core Counts Accelerate - SemiWikiApr 6, 2023
In the march to more capable, faster, smaller, and lower…
Why AI Inference Will Remain Largely On The CPUApr 5, 2023
Sponsored Feature: Training an AI model takes an enormous amount of compute capacity coupled with high bandwidth memory. Because the model training can be
RISC-V In The Datacenter Is No Risky PropositionApr 5, 2023
It was only a matter of time, perhaps, but the skyrocketing costs of designing chips is colliding with the ever-increasing need for performance,
China’s flagship CPU designer puts on a brave face amid US sanctionsMar 19, 2023
Chinese chip designer Loongson, which has tried to reduce the country’s reliance on Intel and AMD, is developing its own general-purpose GPU despite being added to a US trade blacklist.
Make your sklearn models up to 100 times fasterMar 17, 2023
How to considerable reduce training time changing only 1 line of code
Google increases server life to six years, will save billions of dollarsFeb 3, 2023
While Meta ups to five years
More CPU Cores Isn’t Always Better, Especially In HPCJan 20, 2023
If a few cores are good, then a lot of cores ought to be better. But when it comes to HPC this isn’t always the case, despite what the Top500 ranking –
Inside the 8086 processor's instruction prefetch circuitryJan 3, 2023
The groundbreaking 8086 microprocessor was introduced by Intel in 1978 and led to the x86 architecture that still dominates desktop and se...
Four Cornerstones of CPU Performance.Oct 19, 2022
Intel’s Redwood Cove: Baby Steps are Still StepsSep 24, 2022
Intel’s Meteor Lake chip signaled a change in Intel’s mobile strategy, moving away from the monolithic designs that had characterized Intel’s client designs for more than a decade.
Use One Big Server - Speculative BranchesAug 2, 2022
New working speculative execution attack sends Intel and AMD scramblingJul 12, 2022
Both companies are rolling out mitigations, but they add overhead of 12 to 28 percent.
A new vulnerability in Intel and AMD CPUs lets hackers steal encryption keysJun 23, 2022
Hertzbleed attack targets power-conservation feature found on virtually all modern CPUs.
HPC-oriented Latency Numbers Every Programmer Should KnowJun 23, 2022
HPC-oriented Latency Numbers Every Programmer Should Know · GitHub
5.5 mm in 1.25 nanoseconds | Random ASCII – tech blog of Bruce DawsonJan 13, 2022
In 2004 I was working for Microsoft in the Xbox group, and a new console was being created. I got a copy of the detailed descriptions of the Xbox 360 CPU and I read it through multiple times and su…
larsbrinkhoff/awesome-cpus: All CPU and MCU documentation in one placeDec 8, 2021
All CPU and MCU documentation in one place.
How FPGAs Can Take On GPUs And Knights LandingDec 8, 2021
Nallatech doesn't make FPGAs, but it does have several decades of experience turning FPGAs into devices and systems that companies can deploy to solve
Analysis and Comparison of Performance and Power Consumption of Neural NetwDec 8, 2021
In this work, we analyze the performance of neural networks on a variety of heterogenous platforms. We strive to find the best platform in terms of raw benchmark performance, performance per watt a…
Sushi Roll: A CPU research kernel with minimal noise for cycle-by-cycle micro-architectural introspectionDec 3, 2021
Twitter
Getting started with bare-metal assemblyDec 2, 2021
For Better Computing, Liberate CPUs From Garbage CollectionDec 2, 2021
An accelerator unit improves both the performance and efficiency of a system by taking over one simple task
openhwgroup/cva6: The CORE-V CVA6 is an Application class 6-stage RISC-V CPU capable of booting LinuxDec 2, 2021
The CORE-V CVA6 is an Application class 6-stage RISC-V CPU capable of booting Linux - openhwgroup/cva6
cirosantilli/x86-bare-metal-examples: Dozens of minimal operating systems to learn x86 system programming. Tested on Ubuntu 17.10 host in QEMU 2.10 and real hardware. Userland cheat at: https://github.com/cirosantilli/linux-kernel-module-cheat#userland-assembly ARM baremetal setup at: https://github.com/cirosantilli/linux-kernel-module-cheat#baremetal-setup 学习x86系统编程的数十个最小操作系统。 已在QEMU 2.10中的Ubuntu 17.10主机和真实硬件上进行了测试。 Userland作弊网址:https://github.com/cirosantilli/linux-kernel-module-cheat#userland-assembly ARM裸机安装程序位于:https://github.com/cirosantilli/linux-kernel-module-cheat#baremetal- 设置 21世纪新政宣言(2020年4月5曰笫四次修改稿)(2020年6月19曰第七次修改,以下“【】”内文字为非正文内容的说明)20世纪苏联的消亡和东欧的大变革,使这21世纪初的现中国大陆成为世界关注的最主要焦点和影响新世纪文明发展的关键。特别是大陆这些年对外意识形态渗透,震撼整个世界。美中贸易战实际已打响人类意识形态领域最后的冷战,海峡两岸关系恶化,香港不断的百万人游行,南海邻国关系紧张。大陆经济急速下滑衰退,内外矛盾激化高端深感前所未有的生存危机。包括中共上下在内的几乎所有人都很清楚,大陆已到非政治体制改革而不可的时候了,大变革将是民意世潮下的必然结局。中国大陆内外即全球正合力促成这人口第一大国的大变革,这也为中国开创新政提供了一次最佳机会。综合各政体和各国现实,绝大多数国家改革选择了西方民主政体,但其固有的越来越明显的缺陷已成为有人攻击、拒绝或怀疑的理由。这也是近年来西方国家出现了宽容那必将灭亡...Dec 2, 2021
Dozens of minimal operating systems to learn x86 system programming. Tested on Ubuntu 17.10 host in QEMU 2.10 and real hardware. Userland cheat at: https://github.com/cirosantilli/linux-kernel-modu...
To reinvent the processorDec 2, 2021
A detailed, critical, technical essay on upcoming CPU architectures.
1804Dec 2, 2021
Software optimization resources. C++ and assembly. Windows, Linux, BSD, Mac OS XDec 1, 2021
Software optimization manuals for C++ and assembly code. Intel and AMD x86 microprocessors. Windows, Linux, BSD, Mac OS X. 16, 32 and 64 bit systems. Detailed descriptions of microarchitectures.
How does tomasulos algorithm workDec 1, 2021
Does an AMD Chiplet Have a Core Count Limit?Sep 7, 2021
Did IBM Just Preview The Future of Caches?Sep 4, 2021
Gutting Decades Of Architecture To Build A New Kind Of ProcessorJul 13, 2021
There are some features in any architecture that are essential, foundational, and non-negotiable. Right up to the moment that some clever architect shows
AMD 3D Stacks SRAM BumplesslyJun 12, 2021
AMD recently unveiled 3D V-Cache, their first 3D-stacked technology-based product. Leapfrogging contemporary 3D bonding technologies, AMD jumped directly into advanced packaging with direct bonding and an order of magnitude higher wire density.
Intel: AMD Threat Is Finished (NASDAQ:INTC)Jun 8, 2021
Although competition from Arm is increasing, AMD remains Intel’s biggest competitor, as concerns of losing market share weigh on Intel’s valuation.
New 'Morpheus' CPU Design Defeats Hundreds of Hackers in DARPA Tests - ExtrMay 25, 2021
A new CPU design has won accolades for defeating the hacking efforts of nearly 600 experts during a DARPA challenge. Its approach could help us close side-channel vulnerabilities in the future.
Apple's M1 Positioning Mocks the Entire x86 Business ModelApr 24, 2021
Apple is positioning its M1 quite differently from any CPU Intel or AMD has released. The long-term impact on the PC market could be significant.
Sapphire Rapids CPU Leak: Up to 56 Cores, 64GB of Onboard HBM2Apr 9, 2021
Sapphire Rapids, Intel's next server architecture, looks like a large leap over the just-launched Ice Lake SP.
CPU-based algorithm trains deep neural nets up to 15 times faster than topApr 9, 2021
Rice University computer scientists have demonstrated artificial intelligence (AI) software that runs on commodity processors and trains deep neural networks 15 times faster than platforms based on graphics ...
Deep Dive Into AMD’s “Milan” Epyc 7003 ArchitectureMar 26, 2021
The “Milan” Epyc 7003 processors, the third generation of AMD’s revitalized server CPUs, is now in the field, and we await the entry of the “Ice Lake”
The Rise, Fall and Revival of AMD (2020)Mar 19, 2021
AMD is one of the oldest designers of large scale microprocessors and has been the subject of polarizing debate among technology enthusiasts for nearly 50 years. Its...
The Third Time Charm Of AMD’s Milan Epyc ProcessorsMar 15, 2021
With every passing year, as AMD first talked about its plans to re-enter the server processor arena and give Intel some real, much needed, and very direct
Intel Processor Names, Numbers and Generation ListFeb 4, 2021
Understanding Intel® processor names and numbers helps identify the best laptop, desktop, or mobile device CPU for your computing needs.
Use `nproc` and not grep /proc/cpuinfoDec 18, 2020
There’s something really quite subtle about how the nproc utility from GNU coreutils works. If you look at the man page, it’s even the very first sentence: Print the number of processin…
How Debuggers Work: Getting and Setting x86 RegistersNov 3, 2020
In this article, I would like to shortly describe the methods used to dump and restore the different kinds of registers on 32-bit and 64-bit x86 CPUs. The first part will focus on General Purpose Registers, Debug Registers and Floating-Point Registers up to the XMM registers provided by the SSE extension. I will explain how their values can be obtained via the ptrace(2) interface.
Performance analysis & tuning on modern CPU - DEV Community ????Nov 3, 2020
They say "performance is king'... It was true a decade ago and it certainly is now. With more and mor...
Optimizing 128-bit DivisionAug 10, 2020
When it comes to hashing, sometimes 64 bit is not enough, for example, because of birthday paradox — the hacker can iterate through random $latex 2^{32}$ entities and it can be proven that wi…
x86 instruction listingsJun 2, 2020
The x86 instruction set refers to the set of instructions that x86-compatible microprocessors support. The instructions are usually part of an executable program, often stored as a computer file and executed on the processor.
Fujitsu Begins Shipping Supercomputer Fugaku - Fujitsu GlobalMay 14, 2020
Fujitsu Limited today announced that it began shipping the supercomputer Fugaku, which is jointly developed with RIKEN and promoted by the Ministry of Education, Culture, Sports, Science and Technology with the aim of starting general operation between 2021 and 2022. The first machine to be shipped this time is one of the computer units of Fugaku, a supercomputer system comprised of over 150,000 high-performance CPUs connected together. Fujitsu will continue to deliver the units to RIKEN Center for Computational Science in Kobe, Japan, for installation and tuning.
Let’s Build a Simple Interpreter. Part 18: Executing Procedure CallsMar 9, 2020
Do the best you can until you know better. Then when you know better, do better. ― Maya Angelou
96-Core Processor Made of ChipletsFeb 19, 2020
64 Core Threadripper 3990X CPU ReviewFeb 16, 2020
bhive/README.md at master · ithemal/bhiveFeb 12, 2020
Counting FLOPS and other CPU counters in PythonNov 24, 2019
On the Linux command line it is fairly easy to use the perf command to measure number of floating point operations (or other performance metrics). (See for example this old blog post ) with this approach it is not easy to get a fine grained view of how different stages of processings within a single process. In this short note I describe how the python-papi package can be used to measure the FLOP requirements of any section of a Python program.
Intel 10th Gen Comet Lake CPU Family Leaks With 10-Core, 20-Thread LGA-1200Nov 4, 2019
Recent leaks may shed some light on Intel's upcoming mainstream desktop Comet Lake-S CPUs.
Intel Tremont CPU Microarchitecture: Power Efficient, High-Performance x86Oct 26, 2019
Intel's Tremont CPU microarchitecture will be the foundation of a next-generation, low-power processors that target a wide variety of products across
RISC-V from scratch 2: Hardware layouts, linker scripts, and C runtimesAug 28, 2019
A post describing how C programs get to the main function. Devicetree layouts, linker scripts, minimal C runtimes, GDB and QEMU, basic RISC-V assembly, and other topics are reviewed along the way.
“Essentials of Garbage Collectors” full course is now availableJul 11, 2019
Course overview Memory leaks and dangling pointers are the main issues of the manual memory management. You delete a parent node in a linked list, forgetting to delete all its children first -- and your
Avoiding Instruction Cache MissesJun 24, 2019
Excessive instruction cache misses are the kind of a performance problem that's going to appear only in larger codebases. In this article, I'm describing some ideas on how to deal with this issue.
AmpApr 16, 2019
PrincetonUniversity/accelerator-wall: Repository for the tools and non-commFeb 12, 2019
Repository for the tools and non-commercial data used for the "Accelerator wall" paper. - PrincetonUniversity/accelerator-wall
Benchmarking Amazon's ARM Graviton CPU With EC2's A1 InstancesJan 30, 2019
Monday night Amazon announced the new 'A1' instance type for the Elastic Compute Cloud (EC2) that is powered by their own 'Graviton' ARMv8 processors.
ARM is the NNSA’s New Secret WeaponJan 30, 2019
It might have been difficult to see this happening a mere few years ago, but the National Nuclear Security Administration and one of its key
Google’s new Bristlecone processor brings it one step closer to quantum supMar 8, 2018
Every major tech company is looking at quantum computers as the next big breakthrough in computing. Teams at Google, Microsoft, Intel, IBM and various
Intel Core Ultra 200 “Arrow Lake” Desktop CPU Specs Leak: Core Ultra 9 285K & Ultra 7 265K With 250WSep 24, 2013
Intel's Core Ultra 200 "Arrow Lake" Desktop CPU specifications have now been finalized and we are just a month away from the official launch.
cpython
Everything you need to know about Python 3.13 – JIT and GIL went up the hill | drew's dev blogOct 19, 2024
All you need to know about the latest Python release including Global Interpreter Lock and Just-in-Time compilation.
Python behind the scenes #2: how the CPython compiler worksNov 3, 2020
In the first post of the series we've looked at the CPython VM. We've learned that it works by executing a series of instructions called bytecode....
craftsmanship
What It's Like to Be...a Baker - By Dan Heath - Behavioral ScientistFeb 15, 2026
Tinkering with the recipe for gingerbread cake until it's right, adjusting to the variability of local grains, and cherishing the quiet mornings when the sun fills the bakery windows with Sophie Williams, a baker in Bellingham, Washington.
The Art of Taking It SlowAug 24, 2025
Anna Wiener interviews Grant Petersen, the owner of Rivendell Bicycle Works, who has amassed an ardent following by urging people to abandon the spandex and personal bests, get a comfortable bike, and go easy.
The Wizard of Vinyl Is in KansasMar 7, 2025
Chad Kassem is on a mission — saving listeners “from bad sound” — at the rural factory where he pores over LPs from some of music’s most important artists.
The Golden Age of Japanese Pencils, 1952-1967Mar 5, 2025
It was the summer of 1952, and the executives of Tombow Pencil were about to revolutionize the Japanese pencil industry—or, possibly, fall flat on their faces. Hachiro Ogawa, the son of founder Harunosuke Ogawa, was Tombow's managing director, and he had just finished a years-long project, at enormous cost,
My Quest to Find the Owner of a Mysterious WWII Japanese SwordFeb 7, 2025
When I was a kid, I was fascinated by a traditional katana my grandfather had brought home from Japan in 1945. Years later, I decided it was time to find the heirloom’s rightful owner.
How Japanese Masters Turn Sand Into Swords: The Art of Traditional Sword Making from Start to FinishFeb 5, 2025
We made sand think: this phrase is used from time to time to evoke the particular technological wonders of our age, especially since artificial intelligence seems to be back on the slate of possibilities.
A Knife Forged in FireDec 19, 2024
The author wanted a Japanese-style kitchen blade made for him by hand. What he witnessed was a combination of artistry and atomic magic.
‘A good knife is not only about the steel’Jun 16, 2024
Founded in 2022, the knife-making process at Isamitsu Knives differs from industrial manufacturers in small but significant ways.
About UsJun 13, 2024
Why America’s Largest Tool Company Couldn’t Make a Wrench in America …Jul 23, 2023
archived 22 Jul 2023 03:08:13 UTC
See Inside One of America’s Last Pencil FactoriesJul 4, 2023
The family-owned facility in Tennessee produces more than 70 million pencils annually
To rebuild Notre Dame's fire-ravaged roof, carpenters use centuries-old tecJun 12, 2023
When fire engulfed the Paris landmark in 2019, the intricate maze of medieval beams supporting the roof fell to the cathedral floor. Experts are working to restore the church by the end of 2024.
The other "Phillips" head screwdriver you might not know about - Shop PressJan 29, 2023
Not every Phillips head fastener is a Phillips head fastener. If you don't know about Japanese Industrial Standard, now you'll know.
The Man Who Fixes the World's Finest ViolinsJan 27, 2023
He’s trusted to repair some of the world’s most fabled — and expensive — instruments. How does John Becker manage to unlock the sound of a Stradivarius?
A Glimpse Inside a Florentine Silk-Weaving WorkshopJul 11, 2022
The Antico Setificio Fiorentino, which relies on looms from the 18th and 19th centuries, has been producing precious textiles since 1786.
The Dark Art of Mastering MusicJul 5, 2022
Shedding light on the elusive studio practice that’s all but necessary to make music sound great.
Shop Class as SoulcraftJun 27, 2022
Our rejection of craftsmanship wrongly ignores the cognitive, social, and remunerative rewards of skilled manual work, and wrongly assumes that white-collar work always engages the mind. Matthew B. Crawford recounts life as a motorcycle mechanic and makes a case for the manual trades.
Toledo’s Last SwordmakersAug 26, 2021
Famed since Roman times, the Spanish city’s artisans are all but extinct. But a reprieve is at hand from the TV and film industry
A Hypnotic Look at How Japanese Samurai Swords Are MadeMay 18, 2021
Paper, books, wooden joints, tea whisks — Japanese culture has, for seemingly all of its long recorded history, greatly esteemed the making of objects.
creativity
How to Get Unstuck: Simple Somatic Regulation Practices - Ness LabsJan 15, 2026
Somatic regulation is the practice of using your body to change cognitive and emotional states instead of relying on top-down thinking alone.
How to Solve Impossible Problems: Lateral ThinkingDec 14, 2025
Every day we’re presented with what seem like impossible challenges. Issues that you can’t crack, even after weeks, months, or years of trying. How do you approach these challenges? Do you have a strategy that you follow, or do you just hope for the best? There’s a better way to solve impossible problems — improve the quality
How Your Brain Creates ‘Aha’ Moments and Why They Stick | Quanta MagazineNov 5, 2025
A sudden flash of insight is a product of your brain. Neuroscientists track the neural activity underlying an “aha” and how it might boost memory.
Inside Lego’s secretive creative process that brings its best sets to lifeSep 24, 2025
The Lego Ideas team, including its senior model designer, tells Fast Company how they turned 'Gremlins' icon Gizmo into a 1,125-piece set.
A24’s Empire of AuteursAug 25, 2025
Alex Barasch offers the first inside look at the studio behind such movies as Ari Aster’s “Midsommar,” Celine Song’s “Past Lives,” the Daniels’ “Everything Everywhere All at Once,” Barry Jenkins’s “Moonlight,” and Josh Safdie’s upcoming “Marty Supreme”—and reports on its shift toward big budgets and A.I. tools.
Proof That Constraints Can Actually Make You More CreativeAug 22, 2025
Brainstorming, thinking outside the box, working with free reign on a project--they're old creativity maxims, but how well do they really work?
Neuroscientist: The No. 1 trait of highly intelligent people, including Bill Gates and Leonardo da Vinci—it's not about IQAug 4, 2025
What separates some of the world's most successful people from everyone else? Neuroscientist Joseph Jebelli says it involves how they spend their free time. He shares examples from Bill Gates and Leonardo da Vinci.
Writing is thinkingJul 24, 2025
On the value of human-generated scientific writing in the age of large-language models.
Writing Toy Software Is A JoyJun 25, 2025
The Creativity Hack No One Told You About: Read the ObitsApr 28, 2025
Reading obituaries can boost creativity by exposing you to distant ideas, fueling the associations that lead to unexpected breakthroughs.
Google Whisk lets you turn any image into a plushie or stickerDec 17, 2024
Google has launched a new AI image generation tool called Whisk, which allows users to create visual outputs from existing
‘Intrinsic Joy’ Sparks Ideas Better than CashFeb 29, 2024
Can financial incentives turn innovation into a chore? A study of GitHub's efforts to sponsor software coders by Maria Roche and colleagues explores the interplay between motivation and creativity.
Tools for better thinking | UntoolsFeb 10, 2024
Collection of thinking tools and frameworks to help you solve problems, make decisions and understand systems.
The World Is Full of Sleeping BeautiesJul 28, 2023
Success in nature and culture depends just as much on timing as it does on brilliance.
Think Like Feynman: Why You Should Have 12 Favorite ProblemsMay 2, 2023
Discover the practice of Nobel Prize-winning scientist Richard Feynman that has changed lives, including a method to find serendipitous answers to questions.
Obsidian Canvas - ObsidianDec 22, 2022
Obsidian Canvas gives you infinite space to research, brainstorm, diagram, and lay out your ideas.
How Do You Make the Perfect Toy? | The WalrusSep 29, 2022
Fads come and go, but how to create a toy that stands the test of time is the billion-dollar question
HomeJul 18, 2022
How to Uncover Your Creative Talent by Using the "Equal Odds Rule"Jul 18, 2022
You can't predict your own success, but the Equal Odds Rule tells us something important about uncovering creative talent. Read the article to learn more.
23 Ways to Generate Startup IdeasJul 18, 2022
Creativity: 14 Ways To Find Inspiration And Originality - PsyBlogJul 18, 2022
Creativity research in psychology reveals 14 ways to increase imaginative and creativity thinking, discover new ideas and solve problems.
BehanceJul 14, 2022
How to Get Startup IdeasJul 11, 2022
Where Do Eureka Moments Come From?Jun 28, 2022
Sometimes the search for creative insight requires us to focus, and sometimes it requires us to look away.
The bingo methodJun 28, 2022
You might need help to turn an idea into a project. Most of the time, though, project developers walk up to those that might help and say, “I have a glimmer of an idea, will you help me?̶…
The Psychology of Limitation: How Constraints Make Us More CreativeJun 25, 2022
If you've ever stared at a blank page, you know the importance of creative constraints. Learn how to harness limitations for more and better ideas.
The joy of sketching - UXMMar 28, 2022
The most important tool for any UX designer is a pen and a stack of paper. Why? Because before you even think about designing an interface you should be sitting down to sketch out your ideas. Find out why you should be ditching the computer and embracing pen and paper.
10 Tips for Cultivating Creativity, From the Director of the Lifelong Kindergarten Group at MITFeb 25, 2022
The challenge is not how to “teach creativity” to children, but rather how to create a fertile environment in which their creativity will take root, grow, and flourish.
How to explain an idea: a mega postFeb 1, 2022
What's an idea? What sorts of ideas are there? And how to explain them once you have them?
8 damn good creative hacksMay 24, 2021
727 votes, 71 comments. The Dr. Seuss Method In 1960 two men had a $50 bet. One of the men was Theodore Geisel a.k.a Dr. Seuss. The other was Bennet…
Sarcasm Spurs Creative ThinkingFeb 18, 2021
Although snarky comments can cause conflict, a little verbal irony also stimulates new ideas.
From inspiration to idea sex: how to generate ideas on demandNov 3, 2020
How do creators find ideas to write about? Poets, artists, and authors alike have been wondering about the source of our inspiration for millennia. But what's the difference between inspiration and idea sex?
The power of dopey ideas – Tech ReflectAug 10, 2020
Eigenquestions: The Art of Framing ProblemsJul 13, 2020
A handbook for how to become an expert at framing problems.
Idea GenerationJun 1, 2020
The most common question prospective startup founders ask is how to get ideas for startups. The second most common question is if you have any ideas for their startup. But giving founders an idea...
This 3-Minute Exercise Will Change the Way You Solve ProblemsMay 8, 2020
‘Structured thinking’ is about building a big answer by asking many small questions
How To Tell If Someone Is Truly Smart Or Just AverageNov 12, 2017
Author’s Note: This article was written over 60 hours with love and care using the blockbuster mental model. If you like my writing style…
creepy
Gobsmacked! Supernatural Sightings After a Kentucky FloodSep 28, 2025
Lora Eli Smith reports on mysterious goblin-like creatures sightings by Eastern Kentucky residents after the devastating 2022 floods.
How the whip-poor-will became an iconic bird of American horror - Fast CompanyOct 27, 2024
Lovecraft’s and King’s fictional whip-poor-wills draw on widespread Indigenous, European, and American beliefs about the species.
Iconic Bird of American Horror Stories Faces Its Own Terrifying FateOct 25, 2024
The Whip-Poor-Will’s shrill, death-proclaiming song populates the works of Stephen King and H.P. Lovecraft. But the bird itself has fallen on hard times. Could it become a ghost of Halloweens past?
Death as a Child: The Modern Legend of the Black-Eyed ChildrenOct 17, 2024
First described in Texas in the mid-90s, what are these disturbing figures—and what do they want?
crime
George Bell Served 24 Years in Prison for a Crime He Didn’t Commit. Now He’s Learning to Live Again.Jan 5, 2026
After a quarter century behind bars, he was exonerated for the 1996 crime and received the largest payout ever from New York City. But money can’t buy back all that time.
Art Detective Arthur Brand Is Like Indiana Jones but With a More Elegant WardrobeDec 12, 2025
Mysterious late-night visits, an undercover hunt for Hitler's horses, and a Picasso on the couch are business as usual for the Dutch sleuth.
Inside the Texas Crime Lab That’s Cracked Hundreds of Cold CasesOct 15, 2025
"The killing of Catherine Edwards, in Beaumont, long remained unsolved. Then came Othram, a start-up whose breakthroughs in DNA technology are helping identify bodies and solve decades-old murders and rapes."
In and Out at the FSB: A Window into the Moscow Life of Wirecard's Jan MarsalekSep 24, 2025
German police have been searching for years for Jan Marsalek, who is suspected of having embezzled billions of euros through Wirecard and thought to be working as an agent for the Russian intelligence agency FSB. DER SPIEGEL tracked him down in Moscow.
My Uncle, the Hit ManNov 28, 2024
No one in my family wanted to talk about Harold’s life as a contract killer for the Mob. Then one day he called me.
The Haunted JurorFeb 16, 2024
In 1987, two innocent teen-agers went to prison for murder. Thirty-seven years later, a juror learned she got it wrong.
To Live and Die in Dallas: A Year Inside the City’s Homicide UnitFeb 15, 2024
The city’s homicide unit granted a year of unprecedented access to photographer Richard Sharum. His pictures tell a vivid story of cops, criminals, and victims—and the violent act that binds them together.
Why the world’s best vanilla is so easy to stealAug 16, 2023
A journey inside Mexico’s underground vanilla economy
How to Steal a Masterpiece: Advice from the World’s Greatest Art ThiefJun 22, 2023
Advice from the world's greatest art thief
The Mystery of the Disappearing van GoghJun 3, 2023
After a painting by the Dutch artist sold at auction, a movie producer claimed to be the owner. It later vanished from sight, with a trail leading to Caribbean tax havens and a jailed Chinese billionaire.
How a Team of Ambitious Crooks in 1960s Montreal Planned the Biggest Bank Heist Anyone Had Ever SeenMar 26, 2023
In the spring of 1961, Georges Lemay, a dapper thirty-six-year-old French Canadian, spent his days holed up in his cottage on a private island on a river in the Laurentian Mountains north of Montre…
The Strange Real-Life Mystery Behind Edgar Allan Poe’s “The Black Cat”Feb 16, 2023
George Stebbins was tearing down a stone wall in the cellar of his home in Northfield, Massachusetts when he uncovered the bones. A skull emerged first, then the spine and the bones of the arms and…
Portrait of a killer: art class in one of Mexico’s most notorious prisonsFeb 15, 2023
The long read: In 2016, artist César Aréchiga talked one of Mexico’s most dangerous maximum security prisons into letting him run art classes for its inmates, many of them violent gang members. Could he really change their lives?
Most criminal cryptocurrency is funneled through just 5 exchangesJan 29, 2023
The crypto money-laundering market is tighter than at any time in the past decade, and the few big players are moving a “shocking” amount of currency.
Inside the Mind-Boggling World of the Antiquities Theft Task ForceJul 19, 2022
You can't make this shit up
Hacker NewsJun 23, 2022
The Police Have No Reason to Help YouJun 1, 2022
Cops have been given an incredible set of legal powers immunizing them from the fatal errors of their own decisions—including their decision to do nothing in Uvalde, Texas.
So You Want to Be a Bootlegger | The Saturday Evening PostMay 30, 2022
In a 1922 Post article, an ex-bootlegger offers advice for how to break into the business.
How Bitcoin Tracers Took Down the Web’s Biggest Child Abuse SiteApr 10, 2022
Welcome to Video’s customers thought their payments were untraceable. They couldn’t have been more wrong. The untold story of the case that shredded the myth of Bitcoin’s anonymity.
$3.6 billion bitcoin seizure shows how hard it is to launder cryptocurrencyFeb 12, 2022
A couple allegedly used a “laundry list” of technical measures to cover their tracks. They didn’t work.
Cryptocurrency Is a Giant Ponzi SchemeJan 30, 2022
Cryptocurrency is not merely a bad investment or speculative bubble. It’s worse than that: it’s a full-on fraud.
The Infamous FBI Informant Behind a 20-Fatality Limo CrashJan 23, 2022
It was the deadliest U.S. transportation disaster in a decade. The man behind it was one of the most notorious confidential informants in FBI history.
Betting the ranch (Betting The Ranch) — High Country News – Know the WestDec 26, 2021
Cody Easterday wagered hundreds of millions of dollars on the price of beef. He lost.
The lawyer who tried faking his death, and the writer exposing his crime dynastyDec 22, 2021
Mandy Matney kept a harsh spotlight trained on South Carolina’s Murdaugh family until they became impossible for anyone to ignore
Death of a LobstermanDec 10, 2021
On a remote island in Maine, a group of friends thought they witnessed one man killing another with an ax. But no one was ever arrested. In a small town far out at sea, justice sometimes works a little differently.
Companies Linked to Russian Ransomware Hide in Plain SightDec 6, 2021
Cybersecurity experts tracing money paid by American businesses to Russian ransomware gangs found it led to one of Moscow’s most prestigious addresses.
The Spine CollectorNov 30, 2021
For five years, a mysterious figure has been stealing books before their release. Is it espionage? Revenge? A trap? Or a complete waste of time?
The Notorious Mrs. MosslerNov 28, 2021
In the mid-sixties, Candace Mossler was one of the most widely known socialites in Houston. She was in her forties, vivacious and full of charm, with wavy blond hair, deep-blue eyes, and a surgically enhanced figure that was often remarked upon in the many newspaper columns written about her.
The Tomb Raiders of the Upper East SideNov 23, 2021
Inside the Manhattan DA’s Antiquities Trafficking Unit
What lies beneath: the secrets of France’s top serial killer expertNov 13, 2021
The long read: An intrepid expert with dozens of books to his name, Stéphane Bourgoin was a bestselling author, famous in France for having interviewed more than 70 notorious murderers. Then an anonymous collective began to investigate his past
‘Every message was copied to the police’: the inside story of the most daring surveillance sting in historySep 13, 2021
Billed as the most secure phone on the planet, An0m became a viral sensation in the underworld. There was just one problem for anyone using it for criminal means: it was run by the police
The Lost BoysSep 8, 2021
It was the most shocking crime of its day, 27 boys from the same part of town kidnapped, tortured, and killed by an affable neighbor named Dean Corll. Forty years later, it remains one of the least understood—or talked about—chapters in Houston's history.
The Kingpin of ShanghaiAug 26, 2021
From the depths of poverty, Du Yuesheng rose through Shanghai’s underworld to become one of the most influential, and overlooked, figures in modern China.
Who Killed Cachou the Bear? Murder Mystery in Spain Rattles ConservationistsJul 13, 2021
Conservationists saw the 6-year-old brown bear as a symbol of hope. Villagers saw him as a menace. Then he turned up dead.
Decades After Mysteriously Drowning, Pecos Jane Has a Name – Texas MonthlyJun 14, 2021
The young woman who mysteriously drowned in the Ropers Motel pool in 1966 might have remained anonymous forever, if not for cutting-edge genetics, old-fashioned genealogy—and the kindness of a small West Texas town.
The Snitch - The Atavist MagazineJun 3, 2021
In Scott Kimball, the FBI thought it had found a high-value informant who could help solve big cases. What it got instead was lies, betrayal, and murder.
The John Patterson Kidnapping in Mexico - The AtlanticApr 16, 2021
In 1974, John Patterson was abducted by the People’s Liberation Army of Mexico—a group no one had heard of before. The kidnappers wanted $500,000, and insisted that Patterson’s wife deliver the ransom.
Huntsville stationFeb 18, 2021
‘It’s a trip just being out’: at the local Greyhound bus station with newly released men from the Texas State Penitentiary
Pocket - Best reads of 2020Jan 28, 2021
Inside the distinctive, largely unknown ideology of American policing — and how it justifies racist violence.
WHERE IS BUM FARTOJan 19, 2021
In Sept. 9, 1975, William Osterhoudt, a local school principal, looked out at an implausible scene unfolding at the pink house belonging to his neighbor on United Street. Key West Fire Chief Joseph…
John Franzese ratted out his Colombo crime family father – then disappearedDec 26, 2020
John Franzese Jr. helped send his father, notorious Colombo family mobster Sonny Franzese, to prison. Then he turned up in Indianapolis.
The Last Ride of Cowboy BobApr 1, 2019
The feds knew him as a prolific bank robber. But the bearded man who eluded them for so long was not who they imagined him to be. And absolutely no one expected the story to end the way it did.
The unbelievable tale of a fake hitman, a kill list, a darknet vigilante...Dec 26, 2018
Hitman-for-hire darknet sites are all scams. But some people turn up dead nonetheless
Predatory Lending Practices: Business Borrowers Hurt By ’Confession of JudgNov 21, 2018
How an obscure legal document turned New York’s court system into a debt-collection juggernaut.
The Stranger in the ShelterNov 10, 2018
Two people went for a hike on the Appalachian Trail. Only one made it out.
The Unsolved Murder of an Unusual BillionaireOct 25, 2018
Last December, a Canadian pharmaceuticals executive and his wife were found strangled in their home. No one knows who did it or why, but everyone has a theory.
Small-Town InjusticeOct 11, 2018
The shooting of a civilian exposes the underbelly of a small town police department.
My Bodyguard, My SelfOct 8, 2018
The author spent a day with three men in a high-end security detail to find out how it feels to be safe.
Narratively | SubstackOct 6, 2018
Discover extraordinary true stories celebrating the diversity of humanity. Click to read Narratively, a Substack publication with tens of thousands of subscribers.
He Was a First-Round Draft Pick in the NBA. 14 Years Later, He Was Found DeSep 15, 2018
A long-dormant police investigation gives the case new life.
What Happened at the LakeSep 15, 2018
A father took his 10-year-old fishing. She fell in the water and drowned. It was a tragic accident—then he was charged with murder.
Blood and OilSep 9, 2018
Mexico’s drug cartels are moving into the gasoline industry—infiltrating the national oil company, selling stolen fuel on the black market and engaging in open war with the military.
A Turbulent MindSep 9, 2018
Andrew Goldstein’s crime set in motion a dramatic shift in how we care for the violent mentally ill. Including for himself—when he’s released this month.
The Great Chinese Art HeistAug 18, 2018
Is the Chinese government behind one of the boldest art-crime waves in history?
The All-American Bank HeistMay 20, 2018
Having fallen on hard times, a former football star and the pride of his small town decides to rob the local bank. His weapons of choice: Craigslist, bear mace, and an inner tube.
Jeff Pike, Texas’s Own Tony SopranoMay 19, 2018
Earlier this spring, Jeff Pike, the head of the infamous Texas-based Bandidos motorcycle club, went on trial in federal court for racketeering. Prosecutors called him a ruthless killer, the man behind one of the deadliest biker shoot-outs in American history, at the Twin Peaks restaurant in Waco. Pike, however, said he was just a good family man. On Thursday, jurors announced their verdict.
Murder at the Alcatraz of the RockiesMay 1, 2018
The inside story of the first homicide in America’s most secure prison.
Murder at the Alcatraz of the Rockies — The Atavist MagazineMay 1, 2018
The inside story of the first homicide in America’s most secure prison.
Gangster’s paradise: how organised crime took over RussiaMar 24, 2018
The long read: Under Vladmir Putin, gangsterism on the streets has given way to kleptocracy in the state
The Encyclopedia of the MissingJan 14, 2018
She keeps watch over one of the largest databases of missing persons in the country. For Meaghan Good, the disappeared are still out here, you just have to know where to look.
In the Land of Vendettas That Go On ForeverNov 10, 2017
In Northern Albania, vengeance is as likely a form of restitution as anything the criminal-justice system can offer.
criticism
How to Ask for the Feedback You Really NeedMay 16, 2024
When we ask for feedback on our work, we often get poor-quality feedback that’s not useful or that makes us feel attacked or defensive. Part of the reason is in how we’re asking for feedback. Most requests are too generic, too open, and too late. The result is that you’re more likely to get a heap of opinion rather than a helping of insight. Instead of saying, “I’d love it if you could provide some feedback,” try setting the other person up to add more value by being more prescriptive about what you’re looking for. This article discusses a three step process for getting more constructive feedback that supports your growth, strengthens your relationships, and accelerates your career.
How to Be Resilient in the Face of Harsh CriticismNov 5, 2022
Most of us have been “feedsmacked” at some point in our life. In the midst of a meeting, an innocent walk down the hallway, or a performance review, someone delivers a verbal wallop that rocks us to our psychological footings. These situations are so tough to handle because we all have two fundamental psychological needs: safety (perceived physical, social, or material security) and worth (a sense of self-respect, self-regard or self-confidence). Critical feedback feels traumatic because it’s often interpreted as a threat to these needs. Fortunately, there are four skills that will help you reduce the perceived threat in the moment. First, collect yourself. You might breathe deeply and slowly or notice your feelings. Then, seek to understand the feedback. Ask questions. Ask for examples. Get curious. Next, take the time you need to recover before you evaluate the feedback. Lastly, examine what you were told, scouring for the kernels of truth. That’s where the learning and development comes from. Being caught off-guard with feedback isn’t fun, but it doesn’t have to be traumatic if you use these four skills.
How Great Leaders Respond to Negative Criticism in the Digital AgeJul 19, 2022
Corporate leadership today is more public than ever before thanks to digital communication and the web. The status quo has been upended by the ease with
Have the Courage to Be DirectJul 18, 2022
It’s time to get past the human tendency to avoid conflict-causing topics.
How to Deliver Constructive Feedback in Difficult SituationsJul 18, 2022
Thoughtful, empathetic language can make or break your business relationships
Why criticism lasts longer than praiseJul 5, 2022
Most of us are subjected to insults, sarcastic comments or bad feedback in our everyday lives. But we weren't built to deal with torrents of criticism.
How to Deliver Constructive Feedback in Difficult SituationsMar 28, 2019
Thoughtful, empathetic language can make or break your business relationships
crowdfunding
Customers Prefer to Crowdfund Products They Can ImproveMar 31, 2024
Platforms like Kickstarter and Indiegogo have not only broadened access to funding to companies that might struggle in the capital markets but have also transformed the way companies connect with consumers during product development, replacing focus groups with real customers who have a stake in the final product. Despite crowdfunding’s many benefits, numerous campaigns still fail. To understand why, the authorse embarked on an empirical analysis of 18,173 campaigns for physical products in the technology and design categories on Kickstarter. They found that many companies often present initial products that are so fully developed that customers don’t feel that their input will materially change the product and are reluctant to contribute as a result.
7 Crowdfunding Platforms You Can Use To Boost Your IdeasJan 21, 2021
Advice, insight, profiles and guides for established and aspiring entrepreneurs worldwide. Home of Entrepreneur magazine.
https://funduf.com/Sep 14, 2018
crypto
An interactive intro to Elliptic Curve Cryptography (ECC)Mar 2, 2026
A hands-on introduction to elliptic curve cryptography. Start with curve geometry, build point addition and scalar multiplication, see why ECDLP is hard, and then use that math in ECDH, ECDSA, and ECIES.
Google Brings Quantum-Hardened HTTPS To Chrome In Major Security UpgradeFeb 28, 2026
The changes are aimed at improving the resilience of web security against quantum attacks without burdening performance.
Full details of how blockchain blocks are chained togetherOct 27, 2025
How blocks in the Bitcoin blockchain are chained together. Looking at an example at the the byte level to get the real story, past the oversimplifications.
RNG, PRNG, CSPRNGOct 17, 2024
A pseudorandom number generator may have good statistical properties but be insecure. But a physical RNG with good statistical properties is probably secure.
An Introduction to Post-Quantum Cryptography AlgorithmsJun 11, 2024
By Christos Kasparis, EnSilica EETimes (May 15, 2024) The rise of quanum computing paints a significant challenge for the cryptography we rely on today. The modern encryption standards we currently use to safeguard sensitive data and communications, such as DSA, public key RSA and those based on elliptic curves, will eventually be broken by
Addressing Quantum Computing Threats With SRAM PUFsJun 8, 2024
The impact of quantum algorithms on different cryptographic techniques and what can be done about it.
An Introduction to Post-Quantum Cryptography AlgorithmsMay 15, 2024
Current encryption methods will likely be broken by 2030. Embedded systems in development now will have a reasonable chance of encountering attacks.
Building Blocks: A Comprehensive Overview of Blockchain FundamentalsFeb 22, 2024
This article is co-authored by @gracieabot_ Is it a revolution or merely hype? In a world where...
Finite field Diffie Hellman primesSep 17, 2023
The primes used for Diffie-Hellman key exchange must be chosen carefully to avoid security flaws. This post looks at recommended primes.
Consensus Protocols: Explaining Proof-of-Work, Proof-of-Stake, and Other AlAug 30, 2023
In the realm of blockchain technology and cryptocurrencies, the concept of consensus plays a pivotal...
Wtf is a kdf? | blog.datapartyApr 26, 2023
Earlier this week a letter from an activist imprisoned in France was posted to the internet. Contained within Ivan Alococo’s dispatch from the Villepinte prison
The Original King of Crypto Is BackMar 4, 2023
Arthur Hayes rubbed success in the Feds’ face and got busted. Now he’s returning to a shell-shocked industry.
Most criminal cryptocurrency is funneled through just 5 exchangesJan 29, 2023
The crypto money-laundering market is tighter than at any time in the past decade, and the few big players are moving a “shocking” amount of currency.
The computer scientist who hunts for costly bugs in crypto codeJan 14, 2023
Programming errors on the blockchain can mean $100 million lost in the blink of an eye. Ronghui Gu and his company CertiK are trying to help.
All Learn - DecryptDec 21, 2022
The next-generation media outlet navigating the intersection of culture and technology.
How to exchange a secret key over an insecure network (EC-Diffie-Hellman alDec 18, 2022
Let's say you want to send an encrypted message to your friend in order to avoid it being intercepted...
Goodbye SHA-1: NIST Retires 27-Year-Old Widely Used Cryptographic AlgorithmDec 17, 2022
NIST has formally retired the widely used 27-year-old SHA-1 cryptographic algorithm, bringing cryptographic security into the modern age.
What are quantum-resistant algorithms—and why do we need them?Oct 22, 2022
When quantum computers become powerful enough, they could theoretically crack the encryption algorithms that keep us safe. The race is on to find new ones.
How Do You Prove a Secret?Oct 11, 2022
Zero-knowledge proofs allow researchers to prove their knowledge without divulging the knowledge itself.
githublog/2022/6/15/rolling-your-own-crypto-aes.md at main · francisrstokes/githublogJul 13, 2022
I'm sick of complex blogging solutions, so markdown files in a git repo it is - francisrstokes/githublog
Why trusted execution environments will be integral to proof-of-stake blockJun 27, 2022
While the core philosophy of blockchains is trustlessness, trusted execution environments can be integral to proof-of-stake blockchains.
Hacker NewsJun 23, 2022
The Coin That Could Wreck Crypto (Published 2022)Jun 20, 2022
As cryptocurrencies have plunged, attention has focused on a potential point of vulnerability: the market’s reliance on a so-called stablecoin called Tether.
Ruby cryptographic gemsJun 4, 2022
I'm not an expert in cryptography — I'm just a developer, and most developers are in this same boat...
Crypto is weathering a bitter storm. Some still hold on for dear life.May 16, 2022
When a cryptocurrency’s value is theoretical, what happens if people quit believing?
Elliptic Curve Cryptography: A Basic IntroductionMay 5, 2022
Elliptic Curve Cryptography (ECC) is a modern public-key encryption technique famous for being smaller, faster, and more efficient than incumbents.
How Bitcoin Tracers Took Down the Web’s Biggest Child Abuse SiteApr 10, 2022
Welcome to Video’s customers thought their payments were untraceable. They couldn’t have been more wrong. The untold story of the case that shredded the myth of Bitcoin’s anonymity.
Seriously, stop using RSA | Trail of Bits BlogApr 3, 2022
Here at Trail of Bits we review a lot of code. From major open source projects to exciting new proprietary software, we’ve seen it all. But one common denominator in all of these systems is that fo…
An Introduction to Smart ContractsMar 19, 2022
The NFT Starter Pack: Tools for Anyone to Analyze NFTsMar 19, 2022
Code to help you pull NFT data directly from the source, transform it in a way that’s more familiar, and analyze important NFT data.
Twitter Wants to Reinvent Itself, by Merging the Old With the New (Published 2022)Mar 7, 2022
The company is undertaking a far-reaching effort to change how it works. For some, it is an echo of their early idealism and a vision for what the internet could have been.
Crypto Glossary of Terms And JargonFeb 12, 2022
Learn all of the most important blockchain and cryptocurrency terms and jargon here. We add new words and descriptions every week.
$3.6 billion bitcoin seizure shows how hard it is to launder cryptocurrencyFeb 12, 2022
A couple allegedly used a “laundry list” of technical measures to cover their tracks. They didn’t work.
How Crypto’s Original Bubble Boy Rode Ethereum And Is Now Pulling The Strings Of The DeFi BoomFeb 12, 2022
Now he’s pulling the strings, and raking in hundreds of millions, from a blockchain rage called DeFi, which promotes the fantasy of democratized financial services.
Cryptocurrency Is a Giant Ponzi SchemeJan 30, 2022
Cryptocurrency is not merely a bad investment or speculative bubble. It’s worse than that: it’s a full-on fraud.
What Is Ethereum? The BasicsJan 26, 2022
The Basics Ethereum is a network of computers which collectively form the Ethereum Virtual...
OpenSea, the largest NFT marketplaceJan 23, 2022
OpenSea is the world's first and largest web3 marketplace for NFTs and crypto collectibles. Browse, create, buy, sell, and auction NFTs using OpenSea today.
https://rubyweekly.com/link/102532/ad5e785e3bJan 17, 2022
Moxie Marlinspike Blog My first impressions of web3Jan 9, 2022
Despite considering myself a cryptographer, I have not found myself particularly drawn to “crypto.” I don’t think I’ve ever actually said the words “get off my lawn,” but I’m much more likely to click on Pepperidge Farm Remembers flavored memes about how “crypto” used to mean “cryptography” than ...
How Signal is playing with fireJan 9, 2022
Signal employees are worried about anonymous crypto payments.
How Classical Cryptography Will Survive Quantum ComputersDec 8, 2021
Quantum Lab: Scientists are fabricating quantum photonic circuits—consisting of waveguides and other elements—to manipulate single photons for future quantum communications and processing.Oak Ridge National Laboratory / Flickr Nautilus Members enjoy an ad-free experience. Log in or Join now . Justin Trudeau, the Canadian prime minister, certainly raised the profile of quantum computing a few notches […]
Companies Linked to Russian Ransomware Hide in Plain SightDec 6, 2021
Cybersecurity experts tracing money paid by American businesses to Russian ransomware gangs found it led to one of Moscow’s most prestigious addresses.
Deconstructing that $69million NFTNov 29, 2021
"NFTs" have hit the mainstream news with the sale of an NFT based digital artwork for $69 million. I thought I'd write up an explainer. Spec...
A beginner’s guide to how cryptocurrencies workNov 23, 2021
For those who are just wading into the crypto territory, here’s a basic explainer on how the computer science behind these systems work.
The disastrous voyage of Satoshi, the world’s first cryptocurrency cruise sSep 8, 2021
The long read: Last year, three cryptocurrency enthusiasts bought a cruise ship. They named it the Satoshi, and dreamed of starting a floating libertarian utopia. It didn’t work out
The Motherboard Guide to SteganographyJul 7, 2021
A trip through the intentionally unseeable World of Hiding Data in Imagery
How a quantum computer could break 2048-bit RSA encryption in 8 hours | MITJun 27, 2021
A new study shows that quantum technology will catch up with today’s encryption standards much sooner than expected. That should worry anybody who needs to store data securely for 25 years or so.
The Lazarus heist: How North Korea almost pulled off a billion-dollar hackJun 25, 2021
In 2016 North Korean hackers planned a $1bn raid on Bangladesh's national bank and came within an inch of success. But how did they do it?
Cryptoqueen: How this woman scammed the world, then vanished - BBC NewsMay 16, 2021
How did Ruja Ignatova make $4bn selling her fake cryptocurrency to the world - and where did she go?
Diffie-Hellman for the LaymanMay 1, 2021
Whitfield Diffie and Martin Hellman are researchers who invented a safe method to communicate a password. Their 1976 paper opens with the…
How a 10-second video clip sold for $6.6 million | ReutersMar 1, 2021
In October 2020, Miami-based art collector Pablo Rodriguez-Fraile spent almost $67,000 on a 10-second video artwork that he could have watched for free online. Last week, he sold it for $6.6 million.
Cybercriminal Joker's Cash Retires with Billions in BitcoinFeb 13, 2021
According to Elliptic’s analysis, the founder of one of the most popular carding marketplaces, Joker’s Stash, has retired having amassed a fortune of over $1 billion.
A visual guide to SSH tunnelsFeb 7, 2021
The quest for quantum-proof encryption just made a leap forwardJan 3, 2021
Quantum computers could make encryption a thing of the past, but 15 contenders are trying to prove they have what it takes to safeguard your data.
1. How Blockchain Works — blockchain.mit.eduDec 25, 2020
A strategist’s guide to blockchainDec 25, 2020
The distributed ledger technology that started with bitcoin is rapidly becoming a crowdsourced system for all types of verification. Could it replace notary publics, manual vote recounts, and the way banks manage transactions?
Blockchain 101 - Foundational MathDec 25, 2020
Electric Crypto Balkan Acid Test | Alexander ClappAug 10, 2020
After decades of conflict in North Kosovo, all it’s taken for Serb and Albanian politicians to put aside their resentments is the get-rich-quick prospect of cryptomining.
BCrypt ExplainedMar 9, 2020
Intro If you're into Cryptography For Beginners, you're in the right place. Maybe you're j...
The BLAKE3 cryptographic hash functionFeb 19, 2020
the official Rust and C implementations of the BLAKE3 cryptographic hash function - BLAKE3-team/BLAKE3
A Graduate Course in Applied CryptographyFeb 19, 2020
New Cryptography Method Promising Perfect Secrecy Is Met With SkepticismFeb 18, 2020
An international team claims its perfect secrecy cryptography is made unbreakable by physics
Explainer: What is post-quantum cryptography?Jan 11, 2020
The race is on to create new ways to protect data and communications from the threat posed by super-powerful quantum computers.
A Green Beret’s Journey to Blockchain and CryptoDec 26, 2019
Former U.S. Army Green Beret and a16z crypto deal partner, Alex Pruden served in Iraq, Afghanistan, Kuwait, and Turkey. During this time, he saw first-hand that underlying the Syrian refugee crisis, the rise of radical extremism, and other global conflicts was a lack of trusted institutions. As a result, in times of crisis, the basics... Read More
Book: Blockchain Basics: A Non-Technical Introduction in 25 Steps - DataScienceCentral.comDec 23, 2019
In 25 concise steps, you will learn the basics of blockchain technology. No mathematical formulas, program code, or computer science jargon are used. No previous knowledge in computer science, mathematics, programming, or cryptography is required. Terminology is explained through pictures, analogies, and metaphors. This book bridges the gap that exists between purely technical books about… Read More »Book: Blockchain Basics: A Non-Technical Introduction in 25 Steps
leah blogs: Ken Thompson's Unix passwordOct 9, 2019
Cryptocurrencies & Blockchain made effortless | LitePaperJul 3, 2019
LitePaper transforms the complex world of crypto, bitcoin and web3 into beautiful bundles of learning.
The Definitive 2019 Guide to Cryptographic Key Sizes and Algorithm RecommenMar 16, 2019
A simple, accessible recommendation for key sizes and recommended algorithms for various cryptographic algorithms.
Sharing secrets with polynomialsMar 3, 2019
How to use polynomials to share secrets, and how to verify that the secret has been shared without unlocking it.
Everything you should know about certificates and PKI but are too afraid to askDec 24, 2018
Certificates and public key infrastructure (PKI) are hard. No shit, right? I know a lot of smart people who''ve avoided this particular rabbit hole. Eventually, I was forced to learn this stuff because of what it enables: PKI lets you define a system cryptographically. It''s universal and vendor-neutral yet poorly documented. This is the missing manual.
Obtaining an Elliptic Curve certificate from Let's EncryptSep 27, 2018
Let's Encrypt does not currently generate Elliptic Curve certificates. Here's how to obtain one.
Crypto CanonFeb 21, 2018
Here’s a list of crypto readings and resources (2018-2019). It’s organized from building blocks and basics; foundations (& history); and key concepts — followed by specific topics such as governance; privacy and security; scaling; consensus and governance; cryptoeconomics, cryptoassets, and investing; fundraising and token distribution; decentralized exchanges; stablecoins; and cryptoeconomic primitives and crypto goods (non-fungible... Read More
Imperfect Silicon, Near-Perfect SecurityFeb 7, 2018
Imperfect Silicon, Near-Perfect Security Physically unclonable functions (PUF) seem tailor-made for IoT security.
How to Build Your Own Blockchain Part 3 — Writing Nodes that Mine and TalkNov 11, 2017
Hello all and welcome to Part 3 of building the JackBlockChain — JBC. Quick past intro, in Part 1 I coded and went over the top level math and requirements for a single node to mine its own b…
A Mind-Bending Cryptographic Trick Promises to Take Blockchains MainstreamNov 10, 2017
Cryptographers have researched zero-knowledge proofs for two decades, but the technique is only just now poised to redefine the concept of online privacy.
How will crypto apps make money? | HackerNoonNov 6, 2017
Last night I figured out what might kill crypto. And it’s not a black swan event. History suggests it’s the natural end of the path we’re on today.
css
You can make up HTML tags: (Maurycy's blog)Dec 29, 2025
Smashing Animations Part 7: Recreating Toon Text With CSS And SVG — Smashing MagazineDec 17, 2025
In this article, pioneering author and web designer [Andy Clarke](https://stuffandnonsense.co.uk) shows his techniques for creating [Toon Text titles](https://stuffandnonsense.co.uk/toon-text/index.html) using modern CSS and SVG.
Masonry: Things You Won’t Need A Library For AnymoreDec 2, 2025
CSS Masonry is almost here! Patrick Brosset takes a deep dive into what this long-awaited feature means for web developers and how you could make use of it in your own work.
Masonry: Watching a CSS Feature Evolve | CSS-TricksOct 19, 2025
Looking at the CSS Masonry discussions and what they can teach us about the development of new CSS features. What is the CSSWG’s role? What influence do browsers have? What can learn from the way past features evolved?
Getting Started With CSS Cascade Layers — Smashing MagazineSep 16, 2025
We all have run into CSS collisions and sudden regressions in our codebases when new styles are written or 3rd-party styles are added. This is because of the interdependence of styles due to source order, specificity, and inheritance. Some ways to control the cascade have included methodologies like ITCSS and BEM and other newer native features. Cascade layers will be the ultimate native solution for resolving conflicts between multiple sources of styles. Cascade layers introduce the new at-rule of @layer. The intent is to help CSS authors be more intentional about ordering the “layers” of CSS rules as a new method of cascade management.
Making a Masonry Layout That Works Today | CSS-TricksJul 28, 2025
I went on to figure out how make masonry work today with other browsers. I'm happy to report I've found a way — and, bonus! — that support can be provided with only 66 lines of JavaScript.
Scroll-Driven Sticky HeadingJul 11, 2025
I was playing around with scroll-driven animations, just searching for all sorts of random things you could do. That’s when I came up with the idea to animate main headings and, using scroll-driven animations, change the headings based on the user’s scroll position.
Dear Rounded Corners, You WinJul 9, 2025
Rounded corners didn’t just win—they staged a quiet coup and made our interfaces soft, friendly, and suspiciously comforting. This satirical love-hate letter to border-radius explores how we went from brutalist boxes to UI that feels like a therapy session. If you've ever surrendered to a 12px curve, this one's for you.
Better CSS Shapes Using shape() — Part 4: Close and Move | CSS-TricksJul 7, 2025
The shape() function's close and move commands may not be ones you reach for often, but are incredibly useful for certain shapes.
Color Names — HTML Color CodesJul 6, 2025
HTML color names rule. Modern browsers support 140 HTML color names which we've listed here along with their Hex color codes and RGB values.
CSS Blob Recipes | CSS-TricksJun 27, 2025
Blob, Blob, Blob. What's the most effective way to create blob shapes in CSS? Turns out, as always, there are many. Let's compare them together!
8 CSS & JavaScript Snippets for Creating Sticky ElementsJun 9, 2025
Learn how to use CSS and JavaScript to build sticky headers, navigation bars, and UI elements. Includes working examples and practical tips.
Better CSS Shapes Using shape() — Part 2: More on Arcs | CSS-TricksMay 30, 2025
This is the second part of a series that dives deep into the CSS shape() command, continuing with a more detailed look at the arc command.
GitHub - Chalarangelo/30-seconds-of-css: Short CSS code snippets for all your development needsMay 29, 2025
Short CSS code snippets for all your development needs - Chalarangelo/30-seconds-of-css
10 Best CSS Snippets for Web Designers in 2025May 23, 2025
Explore the 10 best CSS snippets for web designers in 2025. Boost your projects with these powerful, easy-to-use styling solutions.
CSS shape() Commands | CSS-TricksMay 2, 2025
The CSS shape() function recently gained support in both Chromium and WebKit browsers. It's a way of drawing complex shapes when clipping elements with the clip-path property.
Using CSS backdrop-filter for UI Effects | CSS-TricksApr 16, 2025
Tips and tricks on utilizing the CSS backdrop-filter property to style user interfaces. You’ll learn how to layer backdrop filters among multiple elements, and integrate them with other CSS graphical effects to create elaborate designs.
6 CSS Snippets Every Front-End Developer Should Know In 2025 · January 19, 2025Apr 14, 2025
Toolbelt worthy, powerful, and meaningful CSS you'll need for 2025.
Chilled Out Text Underlines – Frontend Masters BlogApr 8, 2025
Blue links with underlines is a good default style for links in body text, but it's a bit intense. Maybe we can chill it out a bit and be a bit more flexible.
https://speckyboy.com/glow-effects-css-javascript/Mar 15, 2025
Glow effects are a design staple, adding style and setting the mood. Here’s a collection of CSS and JavaScript snippets for creating those stunning glow effects.
uchū — the color palette for internet loversFeb 17, 2025
uchū is the color palette for internet lovers, by NetOperator Wibby.
Tailwind CSS Cheat SheetNov 21, 2024
Cheat sheet to learn Tailwind CSS quickly. Browse and search all Tailwind utility classes or CSS properties on one page.
The Different (and Modern) Ways To Toggle Content | CSS-TricksNov 8, 2024
Let’s spend some time looking at disclosures, the Dialog API, the Popover API, and more. We’ll look at the right time to use each one depending on your needs. Modal or non-modal? JavaScript or pure HTML/CSS? Not sure? Don’t worry, we’ll go into all that.
CSS Masonry & CSS GridOct 19, 2024
An approach for creating masonry layouts in vanilla CSS is one of those "holy grail" aspirations. I actually tend to plop masonry and the classic "Holy Grail"
Slide Through Unlimited Dimensions With CSS Scroll TimelinesOct 19, 2024
The creator of CSS has said he originally envisaged CSS as the main web technology to control behavior on web pages, with scripting as a fallback when things
Useful CSS Tips And TechniquesJun 7, 2024
The times for CSS have probably never been more exciting than today. In this quick read, we’ve got some useful CSS tips and techniques for you that you can apply to your work right away. Let’s dive deeper into self-modifying CSS variables, hanging punctuation, and more.
How to Use Tailwind CSS for Your Ruby On Rails ProjectJun 5, 2024
Let's see how we can use Tailwind CSS in a Rails application and explore its utility-first approach.
Modern CSS Layouts: You Might Not Need A Framework For ThatJun 3, 2024
It’s easy to get lost in a sea of CSS frameworks and libraries, each promising easier styling and smoother layouts. Brecht De Ruyte demonstrates four CSS utility classes (plus a bonus) using techniques that allow them to be used practically anywhere you need a particular layout — be it Grid or Flexbox — with configurable options.
8 CSS & JavaScript Snippets for Awesome Reveal EffectsJun 3, 2024
A collection of copy and paste CSS and JavaScript code snippets for creating animated reveal effects.
Old Dogs, new CSS TricksMay 28, 2024
A lot of new CSS features have shipped in the last years, but actual usage is still low. One of the biggest barriers: we need to re-wire our own brains.
Beyond CSS Media QueriesMay 16, 2024
Juan Diego Rodriguez explains why media queries still occupy a vital role in responsive layouts; only they are now one tool in a larger toolbox with modern techniques that are best when used together.
The Times You Need A Custom @property Instead Of A CSS VariableMay 13, 2024
Preethi Sam walks through an example that demonstrates where custom properties are more suitable than variables while showcasing the greater freedom and flexibility that custom properties provide for designing complex, refined animations.
The Modern Guide For Making CSS ShapesMay 11, 2024
In this comprehensive guide, Temani Afif explores different techniques for creating common shapes with the smallest and most flexible code possible.
CSS Tip: Learn CSS the easy oneMay 8, 2024
The best place to keep up to date with the new CSS features. Daily CSS tips and tricks to become a better web developer.
Help us invent CSS Grid Level 3, aka “Masonry” layoutApr 24, 2024
If you’ve been making websites for years, you know how frustrating it was to lay out a web page with CSS floats.
CSS ShapeApr 22, 2024
The modern way to create CSS shapes using a minimal code and a single element. A collection of CSS-only shapes created by Temani Afif.
Advanced CSS Techniques for Responsive DesignApr 22, 2024
Introduction Responsive design has become an essential aspect of web development in...
CSS Rounded Corners ExamplesApr 4, 2024
Introduction Rounded corners on HTML help soften the overall design of a...
8 CSS Snippets for Creating Bento Grid LayoutsMar 28, 2024
Dive into CSS bento grid layouts. A collection of CSS flexbox and grid code snippets, and examples for enhancing your web development skills.
24 Eye-catching HTML CSS Chat Box Designs to Enhance Your WebsiteMar 3, 2024
Elevate your website's user experience and engagement with 24 captivating HTML CSS chat box designs. From sleek and modern to fun and whimsical, there's a design to match every website's style and tone.
Modern CSS Tooltips And Speech Bubbles (Part 1)Mar 1, 2024
Tooltips are a very common pattern used in CSS for years. There are a lot of ways to approach tooltips in CSS, though some evoke headaches with all the magic numbers they require. In this article, Temani Afif presents modern techniques to create tooltips with the smallest amount of markup and the greatest amount of flexibility.
Stop wrestling with CSS.Feb 11, 2024
A comprehensive course that helps you develop deep mastery of CSS. Built specifically for JavaScript developers!
CSS Animations and TransitionsFeb 10, 2024
Learn CSS transitions, animations, custom properties, data attributes, choreography, animation states, layout animations, and reactive animations with a little bit of JavaScript.
TIL (Today I learned)Feb 10, 2024
I'm a frontend developer in Graz, specialized in HTML, accessibility, and CSS layout and architecture.
The Top 10 CSS Frameworks for 2024Feb 4, 2024
Top 10 CSS Frameworks for Developers in 2024 See More Here :-...
CSS Media QueriesJan 19, 2024
Introduction: Media queries offer a powerful means to adapt our styles based on factors such as the...
The Complex But Awesome CSS border-image PropertyJan 17, 2024
The CSS `border-image` property is one of those properties you undoubtedly know exists but may not have ever reached for. In this article, Temani Afif demonstrates different approaches for using `border-image` to create clever decorative accents and shapes.
Understanding CSS Media Types: Making Your Website Look Good on Different DJan 6, 2024
When you design a website, you want it to look nice and work well, whether people are viewing it on a...
CSS Layouts: Get Started with Container QueriesDec 29, 2023
Welcome to another year of the State of CSS. Like for last year's State of CSS 2022, I will be...
Neon / glowing stroke text effectOct 30, 2023
The Path To Awesome CSS Easing With The linear() FunctionSep 24, 2023
With the new CSS `linear()` easing function on the horizon, the possibilities of what we can do to create natural-feeling animations and transitions in the future are greatly expanded. Jhey Tompkins looks at the current state of CSS easing in this article and demonstrates what we can expect from `linear()`, including handy tools to get your hands on it today.
CSS | Trigonometry CircleSep 21, 2023
Hello Frondend developers, today i will show you how to create a circular element layout with css...
7 Advanced CSS Selectors You Should KnowSep 19, 2023
CSS is indispensable when we talk about web design and development. Basic selectors like classes (.)...
How to do stunning 3D with pure HTML/CSSSep 9, 2023
HTML and CSS may be the bedrock of 2D web design, but hidden within their virtual toolbox are the...
✨? An Eye-Catching Card with a nice Hover Effect using HTML and SCSSAug 15, 2023
A post by Smit Prajapati
The complete guide to CSS media queries | Polypane, The browser for ambitioAug 7, 2023
Media queries are what make modern responsive design possible. With them you can set different styling based on things like a users screen size, device…
Tansforms, Transitions and Animations : Elevating User Experiences with CSSAug 6, 2023
In the ever-evolving landscape of web development, creating captivating user experiences is a...
The complete guide to CSS media queriesAug 6, 2023
Did you know there is a media query for inverted colors? Or one for saving data? Media queries are w...
I'm betting on HTMLAug 5, 2023
AI Use Disclaimer: I wrote this post and then GPT-4 fixed my grammer and spelling
A Beginner's Guide: Understanding CSS AnimationAug 5, 2023
Introduction Cascading Style Sheet (CSS) is a style sheet language that's used to design,...
10 Cool CodePen Demos (July 2023)Aug 3, 2023
A collection of 10 cool and exciting front-end demos shared on CodePen during July 2023
Best CSS Animation on internetAug 3, 2023
1. Animated Background with SVG in CSS Output Source Code 2. CSS...
How to Create a Beautiful Particle Animation with HTML CanvasJul 24, 2023
Live Demo / Download -- In this tutorial, we will utilize the power of HTML canvas to...
10 Cool CodePen Demos (June 2023)Jul 7, 2023
A collection of 10 cool and exciting front-end demos shared on CodePen during June 2023
Mastering CSS Blend ModesMay 30, 2023
CSS mix blend modes provide an easy, yet powerful way to create visually interesting designs.
Spinning Diagrams with CSSApr 21, 2023
This article discusses using CSS to make spinning 3D diagrams.
6 Advanced CSS Properties to Make Your Content Stand OutApr 13, 2023
CSS, or Cascading Style Sheets, is an essential tool for web developers and designers alike. With...
Chrome 112 Released With WASM Garbage Collection Trial, CSS NestingApr 5, 2023
Google today promoted the Chrome 112 web browser to their stable channel on all supported platforms. Phoronix reports: Starting as an origin trial with Chrome 112 is WebAssembly (WASM) Garbage Collection support. Yes, garbage collection to allow for efficient support for high-level managed language...
Transform Your CSS Game: Bookmark These 10 CSS GeneratorsApr 4, 2023
In this article, we will introduce you to 10 CSS generators every web designer and frontend developer should have in their toolkit.
A Comprehensive Guide to CSS Shorthand PropertiesApr 4, 2023
CSS shorthand is a group of CSS properties that allow you to write multiple CSS properties in a...
8 Amazing Metallic Effects Built With CSS and JavaScriptMar 26, 2023
Create realistic metallic effects with these CSS and JavaScript code snippets. Create metallic text, buttons, backgrounds, and more.
Creating CSS masonry-style layoutsMar 22, 2023
Written by Nwani Victory✏️ When designing a page with content overflowing the viewport, an indirect...
Better Responsive Design With CSS clamp()Mar 22, 2023
With so many mobile devices on the market, we’re flooded with viewport sizes. That makes it especially challenging to design a fully-responsive website. CSS media queries have long been the...
Customize and apply backgrounds fast | SVG BackgroundsMar 21, 2023
👉 Copy-and-paste backgrounds, patterns, icons, and other website graphics directly into projects. All customizable, tiny in file size, and licensed for multi-use.
Say Goodbye to Boring Dropdowns: Create Custom Dropdown Menus with Headless UIMar 19, 2023
Creating a website is no small feat. It requires careful planning, strategic design, and thoughtful...
CSS Border Radius TricksMar 8, 2023
CSS border-radius property allows developers to create stylish borders for their website elements....
9 beautiful corner border examplesFeb 28, 2023
Easy way to add corner border to any div using ::before and ::after. Or we can use sibling div or...
How to add bootstrap in Rails 7Feb 27, 2023
How to add bootstrap in rails 7 Bootstrap is a popular CSS framework that can help you...
Top 10 CSS Animation LibrariesFeb 23, 2023
For the longest time, developers were limited to Flash players and gifs when they wanted to display...
Articles — Smashing MagazineFeb 22, 2023
Smashing Magazine — front-end, UX and design for front-end engineers and designers
Mastering CSS Flexbox: From Basics to Advanced TechniquesFeb 18, 2023
Introduction Are you tired of using tables, floats, and other traditional CSS layout...
76 CSS CardsFeb 15, 2023
Welcome to our collection of CSS cards! In this comprehensive compilation, we have gathered a wide range of free HTML and CSS card code examples from various reputable sources, including CodePen, GitHub, and other valuable resources.
Relearn CSS layoutFeb 13, 2023
How To Build A Magazine Layout With CSS Grid AreasFeb 10, 2023
Web development, especially what you can do with CSS, has become increasingly complex. With the added capabilities of CSS Grid, it is now possible to achieve layouts that look like they were laid out by hand. Let’s tackle a practical example of how to do something like that.
Native CSS masonry layout | pawelgrzybek.comFeb 10, 2023
A masonry type of layout, one of the biggest obsessions of UX designers, is finally coming to CSS. Style popularized by Pinterest, where elements fill the vertical gaps instead of being aligned to the row axis.
Different Ways to Get CSS Gradient ShadowsFeb 10, 2023
It’s a question I hear asked quite often: Is it possible to create shadows from gradients instead of solid colors? There is no specific CSS property that does
Moving BackgroundsFeb 9, 2023
We often think of background images as texture or something that provides contrast for legible content — in other words, not really content. If it was
Sticky Notes with CSS3Feb 7, 2023
What is a sticky notes with css3, How do you make a sticky notes with css3? Sticky Notes with CSS3...
CSS Named Colors: Groups, Palettes, Facts, & FunJan 26, 2023
Note: Due to publishing limitations, the groups of colors in this post are inserted as images. For...
Level Up Your CSS Skills With The :has() SelectorJan 24, 2023
The CSS relational selector :has() offers what was previously impossible without JavaScript. Let’s explore some magical powers that :has brings.
Why We Use CSS Preprocessors ?Dec 17, 2022
CSS preprocessors are tools that allow us to write CSS in a more powerful and expressive way, using...
A Practical Guide to CSS Media Queries - Stack DiaryDec 9, 2022
CSS Media queries - @media - allow you to style multiple versions of a single site depending on the type of device on which the layout/site is being
Hacker NewsDec 9, 2022
5 CSS Card Design Ideas!Nov 30, 2022
Disclaimer: There is a video version of this tutorial, watch it here Here are 5 card designs, with...
Fancy Image Decorations: Outlines and Complex Animations | CSS-Tricks - CSSOct 29, 2022
We’ve spent the last two articles in this three-part series playing with gradients to make really neat image decorations using nothing but the
A Guide to CSS Animation — Part 1 | by Jhey Tompkins | codeburstOct 28, 2022
Let’s get things moving! 🎞
Pokemon Cards Holo effect v2Oct 27, 2022
GitHub - davidteren/simple_tails: Sensible semantic HTML styling out the boOct 9, 2022
Sensible semantic HTML styling out the box for Ruby on Rails applications - davidteren/simple_tails
How to Create Wavy Shapes & Patterns in CSSSep 26, 2022
The wave is probably one of the most difficult shapes to make in CSS. We always try to approximate it with properties like border-radius and lots of magic
Isomorphic-Table-Cards ·Sep 24, 2022
Table and Cards views with animated transitions on sorting, switching view, and browser resizing (no dependencies, just vanilla Javascript, CSS, and HTML). - evoluteur/isomorphic-table-cards
Sanding UISep 24, 2022
Writing about the big beautiful mess that is making things for the world wide web.
Kits | Foundation 6Aug 5, 2022
Bootstrap CSS is still the sh*t. But we can make it better.Jul 1, 2022
Bootstrap is an amazing CSS framework for those who struggle with design, css, or need to build...
CSS ClaymorphismJun 23, 2022
Hello Guyz today i am going to show you the beautiful claymorphism effect using CSS. Lets get...
The World's Most Satisfying Checkbox | !Boring SoftwareJun 21, 2022
The Art of Game Feel (a.k.a Juice) in Product Design
6 In-demand Marketing Skills for Your Design CVJun 21, 2022
In today’s tech-savvy world, being a great designer is not all about being a whiz at tools such as Adobe Photoshop and Adobe Illustrator. The job is
8 CSS Snippets That Demonstrate the Power of Shadow EffectsJun 12, 2022
A collection of useful code snippets that demonstrate the usefulness and what you can fully achieve with CSS shadow effects.
15 Beautiful Color Gradients using CSSJun 12, 2022
👋, I am here with another list. In this post I have enlisted 15 aesthetic color gradients using CSS...
#HEXWORDSJun 9, 2022
CSS Tips - Marko Denic - Web DeveloperMay 12, 2022
CSS tips and tricks you will not see in most tutorials.
8 CSS & JavaScript Snippets for Creating Cool Card UI Hover EffectsMar 23, 2022
From bold transformations to simple highlights, we share some fantastic CSS & JavaScript card UI hover effect snippets.
Amazing Resources for Web DevelopersMar 22, 2022
Found amazing resources which will save you tons of time as a web developer👇 1. 10015...
html-css-google-keep-complete - CodeSandboxFeb 20, 2022
html-css-google-keep-complete by akhilboddu using parcel-bundler
Smashing NewsletterFeb 13, 2022
Why Japanese Web Design Is So… DifferentJan 29, 2022
How to design better buttonsJan 29, 2022
A button is an interactive element that results in the action described on it. If it says “save” on a button, clicking it will most likely “save” something. It’s also one of the most important interactive elements of any digital product. It
Weber’s Law - NeuroLogica BlogJan 29, 2022
I confess I have never heard (or at least don't remember ever hearing) about Weber's Law (pronouned vayber) until reading about it with this news item. It is the Law of Just Noticeable Differences. It deals with the minimum difference in a stimulus necessary to notice. While clearly established, and there are many hypotheses to
Responsive Images - A Reference Guide from A to ZJan 29, 2022
Chapter 1 - What is responsive images? In this guide, we will learn everything related to...
W3Schools.comJan 17, 2022
W3Schools offers free online tutorials, references and exercises in all the major languages of the web. Covering popular subjects like HTML, CSS, JavaScript, Python, SQL, Java, and many, many more.
Front-End Performance Checklist 2021 (PDF, Apple Pages, MS Word) — Smashing MagazineJan 17, 2022
Let’s make 2021... fast! An annual front-end performance checklist, with everything you need to know to create fast experiences on the web today, from metrics to tooling and CSS/JavaScript techniques.
Web Layout Best Practices – 12 Timeless UI Patterns | Toptal®Jan 17, 2022
What makes a web UI pattern timeless? Adherence to web layout best practices that result in a combination of user-friendliness and adaptability to changing trends and technology. #design #ui #design #ux #web #product
Front-End Performance Checklist 2021 (PDF, Apple Pages, MS Word) — Smashing MagazineJan 17, 2022
Let’s make 2021... fast! An annual front-end performance checklist, with everything you need to know to create fast experiences on the web today, from metrics to tooling and CSS/JavaScript techniques.
Flexbox and Grids, your layout’s best friendsJan 16, 2022
We decided to debunk the myths around Flexbox & Grids in order to show you the power of these two technologies working together.
Forestry.io CMSJan 16, 2022
The Forestry.io team is now focused on building TinaCMS. If you wish to migrate your Forestry site to Tina, follow the guide below.
Ten modern layouts in one line of CSS | Articles | web.devJan 16, 2022
This post highlights a few powerful lines of CSS that do some serious heavy lifting and help you build robust modern layouts.
30 seconds of cssJan 16, 2022
Front-end Developer Handbook 2019 - Learn the entire JavaScript, CSS and HTML development practice!Jan 16, 2022
A guide for front-end developers to equip themselves with latest learning resources and development tools in front-end engineering.
Front-End Developer Handbook 2018 - Learn the entire JavaScript, CSS and HTML development practice!Jan 16, 2022
A guide for front-end developers to equip themselves with latest learning resources and development tools in front-end engineering.
Bootcards - Nền tảng Framework UI dạng card dựa trên BootstrapJan 16, 2022
Bootcards- UI Framework được xây dựng dựa với mục đích áp dụng những template dạng thẻ cho các yếu tố thành phần của thiết kế website
CSS Techniques And Effects For Knockout Text | CSS-TricksJan 16, 2022
Knockout text is a technique where words are clipped out of an element and reveal the background. In other words, you only see the background because the
7 Practical Tips for Cheating at DesignJan 16, 2022
Improving your designs with tactics instead of talent.
The At-Rules Of CSS | CSS-TricksJan 12, 2022
The at-rule is a statement that provides CSS with instructions to perform or how to behave. Each statement begins with an @ followed directly by one of
Tufte CSSJan 12, 2022
CSS: Flexible Repeating SVG MasksJan 12, 2022
This started with a literal dream about CSS, then a Sunday morning of messing around.
MUI - Material Design CSS FrameworkJan 12, 2022
MUI is a lightweight CSS framework that follows Google's Material Design guidelines. MUI is designed from the ground up to be fast, small and developer-friendly.
Learn to style HTML using CSS - Learn web development | MDNJan 12, 2022
Cascading Style Sheets — or CSS — is the first technology you should start learning after HTML. While HTML is used to define the structure and semantics of your content, CSS is used to style it and lay it out. For example, you can use CSS to alter the font, color, size, and spacing of your content, split it into multiple columns, or add animations and other decorative features.
This Ain’t Disney: A practical guide to CSS transitions and animationsJan 12, 2022
Oh, animation… we want to get it right so badly, don’t we? I mean, does anybody really enjoys a stiff, snappy UI? Can anyone admit they’re…
Water.cssJan 12, 2022
A drop-in collection of CSS styles to make simple websites like this just a little bit nicer.
Dynamically Filtering Layouts with Isotope & Bootstrap – SpeckyboyJan 12, 2022
We show you how to use Isotope.js to create dynamic layouts in the Bootstrap framework, and how to dynamically filter the elements.
15 awesome CSS animation libraries you need to know.Jan 11, 2022
Transitions from one CSS style configuration to another can be animated using CSS animations. A style...
5 UX Tricks You Must Know in 2022Jan 9, 2022
Do you have what it takes to be an outstanding UX Developer in 2022? Add these tricks to your arsenal...
CSS FingerprintJan 6, 2022
CSS Object Model (CSSOM) - Web APIs | MDNJan 4, 2022
The CSS Object Model is a set of APIs allowing the manipulation of CSS from JavaScript. It is much like the DOM, but for the CSS rather than the HTML. It allows users to read and modify CSS style dynamically.
BEM Naming Cheat Sheet by 9elementsJan 2, 2022
A visual tool that provides naming-suggestions for CSS classes using BEM naming convention.
Free Masonry Website Templates (2024) - HTML TemplatesJan 2, 2022
Free Masonry HTML Website Templates are the best choice to kickstart your next masonry style website or blog on the internet.
Using Rel="preconnect" To Establish Network Connections Early And Increase Performance | CSS-TricksDec 26, 2021
Milica Mihajlija:
Modern CSS Explained For DinosaursDec 26, 2021
CSS is strangely considered both one of the easiest and one of the hardest languages to learn as a web developer. It’s certainly easy…
CSS ReferenceDec 26, 2021
CSS Reference is a free visual guide to CSS. It features the most popular properties, and explains them with illustrated and animated examples.
Using CSS custom properties (variables) - CSS: Cascading Style Sheets | MDNDec 20, 2021
Custom properties (sometimes referred to as CSS variables or cascading variables) are entities defined by CSS authors that represent specific values to be reused throughout a document. They are set using the @property at-rule or by custom property syntax (e.g., --primary-color: blue;). Custom properties are accessed using the CSS var() function (e.g., color: var(--primary-color);).
JS: The Right WayDec 20, 2021
A quick reference to best practices for writing JavaScript -- links to code patterns and tutorials from around the web
Gulp: A Web Developer's Secret Weapon for Maximizing Site Speed | Toptal®Dec 17, 2021
When dealing with web-based projects that run in the production environment, being able to build and deploy changes quickly is a top priority. However, repetitive processes such as building front-end assets, when not automated, can be prone to critical errors. In this article, Toptal Freelance Software Engineer A...
Top 6 Best CSS Frameworks for 2019Dec 16, 2021
Learn about the best CSS frameworks for learning how to design a website in 2019. List of Top 5 web UI design frameworks with responsive CSS functionality.
16 Best CSS Frameworks/Libraries for Front-End Developers | GeekflareDec 15, 2021
I once heard a front-end developer joke, "The NASA has landed robots on Mars, and here we're still struggling to center-align our divs!" And it makes me
CSS Layout cookbook - CSS: Cascading Style Sheets | MDNDec 15, 2021
The CSS layout cookbook aims to bring together recipes for common layout patterns, things you might need to implement in your own sites. In addition to providing code you can use as a starting point in your projects, these recipes highlight the different ways layout specifications can be used, and the choices you can make as a developer.
The CSS background-image property as an anti-patternDec 15, 2021
The CSS background-image property allowed us to do some amazing things, but in most cases, it's time to leave it behind.
Sticky Footer — Solved by Flexbox — Cleaner, hack-free CSSDec 14, 2021
A showcase of problems once hard or impossible to solve with CSS alone, now made trivially easy with Flexbox.
CSS Flexbox Layout Guide | CSS-TricksDec 13, 2021
Our comprehensive guide to CSS flexbox layout. This complete guide explains everything about flexbox, focusing on all the different possible properties for the parent element (the flex container) and the child elements (the flex items). It also includes history, demos, patterns, and a browser support chart.
https://www.webslake.com/article/customizing-design-of-google-custom-search-box-using-css/Dec 13, 2021
The Complete CSS Tags Reference - CSS CheatsheetNov 9, 2021
If you are using CSS for frontend web development, you may be interested in this article. The gist of...
Minification of CSS and JavaScriptNov 3, 2021
Minification is the process of deleting unneeded or redundant data from a resource without altering...
Sticky Definition ListsOct 28, 2021
I ran across this 30 seconds of code website the other day, and they have a CSS section which is really good! The first example snippet I looked at was this
300 Bootstrap UI Components and BlocksOct 16, 2021
The UI components are the building blocks for user interfaces. They can be anything from navigation...
10 Super easy CSS Shapes for beginnersAug 5, 2021
Hello there, In this post we will be talking about creating basic shapes in HTML & CSS. Many...
HTML Line Spacing: The Fine Line Between Good and Bad UX DesignJul 13, 2021
HTML line spacing matters in UX design. Read all you need to know about line height and how it can help your UX.
HTML Data List element - HTML: HyperText Markup Language | MDNJun 23, 2021
The HTML element contains a set of elements that represent the permissible or recommended options available to choose from within other controls.
Details & Summary tags: HTML's best kept secretJun 9, 2021
and tags are among of the most useful tags that HTML gives us. I'm...
Improving The Performance Of An Online Store (Case Study)Jun 3, 2021
Getting a good performance score from Google is hard for any website — but doing so for an online store is even harder. We achieved green scores — even several for mobile. Here is how we did it.
15 Advanced CSS Techniques To Master In 2021May 27, 2021
CSS is used to describe how HTML elements should be presented on the web page. CSS can not only...
30 ? Awesome CSS Animation ResourcesMay 24, 2021
Here is the list of awesome CSS animation resources that will help you to animate components quickly...
CSS Flexbox in 5 MinutesMay 24, 2021
What is CSS Flexbox CSS Flexbox is a one-dimensional layout module that can be used to mak...
border-radius - CSS: Cascading Style Sheets | MDNMay 18, 2021
The border-radius CSS property rounds the corners of an element's outer border edge. You can set a single radius to make circular corners, or two radii to make elliptical corners.
Two awesome card hover effects you never seen before.May 4, 2021
1 I suggest you to view demo in full new window. Click on top right most button to vi...
Details on - Google SlidesMay 1, 2021
Using for Menus and Dialogs is an Interesting Idea | CSS-TricksMay 1, 2021
Using for a menu may be an interesting idea, but perhaps not something to actually ship in production. See "More Details on "
15 amazing CSS tips and tricks you should knowMay 1, 2021
This article was originally published at: https://www.blog.duomly.com/12-css-tips-and-tricks-which-he...
12 Simple CSS Hover EffectsMay 1, 2021
Here is the list of 12 simple beginner level CSS menu button hover animation, it use simple CSS anim...
My current HTML boilerplate - Manuel MatuzovićApr 30, 2021
Every element I use for the basic structure of a HTML document, with explanations why.
10 Awesome CSS ResourcesApr 20, 2021
A list of few CSS resource that help me design the CSS code better. I will give you a brief intro to...
Create Awesome Product Card | UI Design | E-commerce Card | Using Only HtmlApr 12, 2021
Please do not forget to subscribe in my channel:
Product Card | Using Only Html5 & CSS3Apr 12, 2021
Foundation for Sites 6 DocsMar 6, 2021
We built Foundation for Sites to be the most advanced responsive front-end framework in the world.
Foundation and Rails · RailsAppsMar 3, 2021
CSS transitions and hover animations, an interactive guideFeb 26, 2021
This comprehensive guide shows how to use CSS transitions! A back-to-basics look at the fundamental building blocks we need to create microinteractions and other animations.
The Rules of Margin CollapseFeb 19, 2021
“Margin collapse” has a dastardly reputation, one of the trickier parts of CSS. Fortunately, it gets a lot easier once you learn a few rules! In this tutorial, we take a deep dive into the governing principles, and learn how to use them to our advantage.
Create a tag cloud with HTML and CSSJan 1, 2021
Tutorial on how to create a tag cloud with HTML and CSS, no JavaScript needed.
Ultimate CSS Reference GuideDec 28, 2020
What is this guide? This guide will be a compilation of several bits about CSS syntax and...
Can I use... Support tables for HTML5, CSS3, etcDec 10, 2020
"Can I use" provides up-to-date browser support tables for support of front-end web technologies on desktop and mobile web browsers.
Master CSS GRADIENTS - MUST READ!Dec 4, 2020
When we talk about gradients in CSS, we talk about gradients of colors. This is ultimate post to mas...
Beyond Media Queries: Using Newer HTML & CSS Features for Responsive DesignNov 3, 2020
Beyond using media queries and modern CSS layouts, like flexbox and grid, to create responsive websites, there are certain overlooked things we can do well to
A Complete Guide to CSS Media QueriesNov 3, 2020
CSS Media queries are a way to target browser by certain characteristics, features, and user preferences, then apply styles based on those things.
Things I Wish I’d Known About CSS | CSS For DesignersAug 10, 2020
Like many developers, I taught myself to code from a combination of books and looking at source code. Here are some of things I wish I’d been aware of earlier in my CSS journey.
6 Powerful CSS Techniques You Can Use Instead of JavascriptAug 10, 2020
There are a lot of discussions about CSS vs. JavaScript and the battle is getting seriously once CSS...
8 CSS Best Practices to Keep in MindJul 26, 2020
This past week I had an opportunity to browse through a company's coding guideline, some of which I f...
Backdrop Filter effect with CSSJul 17, 2020
Yesterday i came upon a really cool looking effect on a website and tried to reproduce the effect for...
Better Box Shadows | Ugly DuckMay 20, 2020
CSS Masonry layouts: Responsive, Lightweight, and EASY!May 11, 2020
A detailed tutorial guide to create a pure CSS Masonry layout which is also responsive, easy-to-implement without making use of JavaScript or jQuery.
Let’s Take a Deep Dive Into the CSS Contain PropertyMay 9, 2020
Compared to the past, modern browsers have become really efficient at rendering the tangled web of HTML, CSS, and JavaScript code a typical webpage provides.
Discover 7 amazing tips and tricks about the CSS background imageMay 9, 2020
This article was originally published at https://www.blog.duomly.com/css-background-image-tutorial-wi...
Phuoc Nguyen’s One Page WondersMay 6, 2020
I keep running across these super useful one page sites, and they keep being by the same person! Like this one with over 100 vanilla JavaScript DOM
Creating a floating label using HTML and CSSMay 6, 2020
Hello everyone 👋, I hope you are doing great. So, Today we are going to learn how to create a floati...
CSS LayoutMay 6, 2020
Using CSS to Set Text Inside a CircleApr 19, 2020
You want to set some text inside the shape of a circle with HTML and CSS? That’s crazy talk, right?
How They Fit Together: Transform, Translate, Rotate, Scale, and OffsetMar 31, 2020
How the transform property, the independent transform properties, and CSS Motion Path are applied together
CSS Zen Garden: The Beauty of CSS DesignMar 19, 2020
A demonstration of what can be accomplished visually through CSS-based design.
A Few Background Patterns SitesMar 19, 2020
If I need a quick background pattern to spruce something up, I often think of the CSS3 Patterns Gallery. Some of those are pretty intense but remember they
A Complete Guide to calc() in CSSMar 18, 2020
CSS has a special calc() function for doing basic math. In this guide, let's cover just about everything there is to know about this very useful function.
Login Form Using Semantic-UIMar 9, 2020
55K subscribers in the angularjs community. A community for the awesome MVC JS framework.
6 Simple CTA Button Styles With Hover Effects For Your WebsiteMar 9, 2020
Here are seven cool and simple CSS button styles examples for you to try on your WordPress website.
Refracted Floating Text EffectMar 9, 2020
CSS-Only CarouselFeb 19, 2020
It's kind of amazing how far HTML and CSS will take you when building a carousel/slideshow.
Guide to CSS Units for Relative SpacingFeb 16, 2020
Space Relative to the Document :root Use: rem Unless you change it, the default rem value...
Generate - Coolors.coFeb 12, 2020
View and edit this palette on Coolors.co or create your own color schemes.
Front-end technologiesDec 31, 2019
The front-end is everything involved with what the user sees, including design and some languages like HTML and CSS.
kognise/water.css: A drop-in collection of CSS styles to make simple websites just a little nicerApr 21, 2019
A drop-in collection of CSS styles to make simple websites just a little nicer - kognise/water.css
Using CSS Grid the right wayMar 10, 2019
CSS Grid is fun to use but hard to learn. Here are three tips to help you understand and leverage the Grid spec.
When And How To Use CSS Multi-Column LayoutJan 12, 2019
The Multi-column Layout spec is often overlooked as we use Grid and Flexbox. In this article Rachel Andrew explains why it is different to other layout methods, and shows some useful patterns and sites which showcase it well. Rachel will take a look at Multi-column Layout — often referred to as multicol or sometimes “CSS Columns”. You’ll find out which tasks it is suited for, and some of the things to watch out for when making columns.
A Guide to Custom Elements for React DevelopersDec 10, 2018
I had to build a UI recently and (for the first time in a long while) I didn't have the option of using React.js, which is my preferred solution for UI these
10 Interesting JavaScript and CSS libraries for November 2018Nov 8, 2018
This November's collection is packed with some powerful CSS frameworks, awesome date and time library and JS tools.
Circular Ripple Hover Effect on ButtonOct 28, 2018
D3 circle scatteringOct 28, 2018
CSS Text RevealOct 28, 2018
Expanding flex cardsOct 8, 2018
20 Best Bootstrap 4 PluginsAug 31, 2018
Totally open source and free to use, Bootstrap has become one of the most popular front-end frameworks for desktop and mobile development. With a mobile-first approach, the framework essentially...
10 Awesome Sass Libraries You Should Know AboutJul 5, 2018
We share with you a collection of interesting Sass libraries that you should check out.
A Strategy Guide To CSS Custom PropertiesJun 8, 2018
Dynamic properties provide opportunities for new creative ideas, but also the potential to add complexity to CSS. Custom properties have a huge potential to change how we write and structure CSS and to a lesser extent, how we use JavaScript to interact with UI components. To get the most out of them, we might need a strategy for how we write and structure CSS with custom properties. In this article, Michael Riethmuller will show you how.
CSS Grid ExampleApr 26, 2018
Introduction to the CSS Grid Layout With ExamplesApr 19, 2018
In this tutorial, I will cover the basics of the CSS grid layout with example scenarios. CSS Grid is supported by almost all modern browsers now, and it is ready to be used in production. Unlike...
csv
The Hidden CSV Catastrophe: How a 50-Year-Old File Format Is Secretly Destroying Your Data (And…Jul 24, 2025
Your CSV files are destroying your data right now. Discover why this 'simple' format is tech's most expensive mistake and what to do about it.
Processing a Directory of CSVs Too Big for Memory with Dask - KDnuggetsMar 25, 2025
Learn how to process the big data in the CSV format.
mikefarah/yq: yq is a portable command-line YAML, JSON, XML, CSV, TOML and properties processorFeb 7, 2023
yq is a portable command-line YAML, JSON, XML, CSV, TOML and properties processor - mikefarah/yq
How to convert JSON to CSV using Linux / Unix shell - nixCraftJul 22, 2022
This page explains how to convert JSON to CSV format using Linux, macOS, *BSD or Unix command-line utilities.
One-liner for running queries against CSV files with SQLite | Simon WillisoJun 23, 2022
I figured out how to run a SQL query directly against a CSV file using the sqlite3 command-line utility:
Master CSV Files in the Terminal With the Csvkit PackageJun 4, 2022
It is not always a good idea to use Excel.
3 (and Half) Powerful Tricks To Effectively Read CSV Data In PythonDec 7, 2021
Master usecols, chunksize, parse_dates in pandas read_csv().
csvkit 2.0.1 documentationNov 29, 2021
1. Getting started — csvkit 1.0.5 documentationApr 23, 2020
Doing a SQL join with CSV files with xsvFeb 19, 2020
How to combine data spread over two CSV files, like separate tables in a normalized relational database.
cuda
Writing Your First GPU Kernel in Python with Numba and CUDA - KDnuggetsAug 18, 2025
80x Faster Python? Discover How One Line Turns Your Code Into a GPU Beast!
An Even Easier Introduction to CUDA (Updated) | NVIDIA Technical BlogMay 2, 2025
A quick and easy introduction to CUDA programming for GPUs. This post dives into CUDA C++ with a simple, step-by-step parallel programming example.
No Fooling With Voxel PoolingMar 13, 2025
Porting functions that don't exist in common graph manipulation tools to an NPU.
Understanding PTX, the Assembly Language of CUDA GPU Computing | NVIDIA Technical BlogMar 12, 2025
Parallel thread execution (PTX) is a virtual machine instruction set architecture that has been part of CUDA from its beginning. You can think of PTX as the…
nvidia - Installing CUDA on Ubuntu 23.10 - libt5info not installable - AskJul 30, 2024
Today I've installed from scratch Ubuntu 23.10 on my computer.
After having installed all the software I need, I tried to install CUDA from the NVIDIA website, following their instructions: https://
Dynamic Control Flow in CUDA Graphs with Conditional NodesMay 11, 2024
CUDA Graphs can provide a significant performance increase, as the driver is able to optimize execution using the complete description of tasks and dependencies. Graphs provide incredible benefits for…
AMD Quietly Funded A Drop-In CUDA Implementation Built On ROCm: It's Now OpFeb 13, 2024
While there have been efforts by AMD over the years to make it easier to port codebases targeting NVIDIA's CUDA API to run atop HIP/ROCm, it still requires work on the part of developers.
How AMD May Get Across the CUDA MoatOct 7, 2023
When discussing GenAI, the term "GPU" almost always enters the conversation and the topic often moves toward performance and access. Interestingly, the word "GPU" is assumed to mean "Nvidia" products. (As an aside, the popular Nvidia hardware used in GenAI are not technically...
Idiot-proof checklist for installation on Ubuntu 22.10? : CUDAAug 14, 2023
I've tried multiple ways to get CUDA running but can't past the driver recognition problem (at least that's what I think the issue is). Surely…
CUDA Quick Start GuideJul 23, 2023
Minimal first-steps instructions to get CUDA running on a standard system.
CUDA Toolkit 12.0 Released for General AvailabilityDec 13, 2022
NVIDIA announces the newest CUDA Toolkit software release, 12.0. This release is the first major release in many years and it focuses on new programming models and CUDA application acceleration…
CUDA by Numba ExamplesOct 14, 2022
Follow this series to learn about CUDA programming from scratch with Python. Part 4 of 4.
drivers - How do you install CUDA 11 on Ubuntu 20.10 and verify the installDec 12, 2020
There seem be be several options to install CUDA on Ubuntu 20.10: It is pre-bundled with 20.10, there are various installers at the official NVIDIA page, etc.
Question: What is a recommended way to
Start Locally | PyTorchDec 11, 2020
CUDA 11 Features Revealed | NVIDIA Developer BlogMay 14, 2020
The new NVIDIA A100 GPU based on the NVIDIA Ampere GPU architecture delivers the greatest generational leap in accelerated computing. The A100 GPU has revolutionary hardware capabilities and we’re…
Numba: High-Performance Python with CUDA AccelerationDec 27, 2017
Numba is an open-source Python compiler from Anaconda that can compile Python code for high-performance execution on CUDA-capable GPUs or multicore CPUs.
cults
What makes something a cult? Here is what our data sayJan 3, 2026
Short of time? Read the key takeaways. 💡 People rely on relational dynamics to judge cultishness. When people rate groups as cult-like, they focus most on signs of control, isolation, and suppression of outside information rather than on unusual predictions or strange practices. 🔍 Discouraging outside information is the strongest red flag. The clearest single predictor of perceived cultishness is when a group tries to limit members’ access to alternative viewpoints. People appear highly...
Brainwashing has a grim history that we shouldn’t dismiss | Psyche IdeasNov 29, 2021
Scientific research and historical accounts can help us identify and dissect the threat of ‘coercive persuasion’
How to Spot a CultJul 2, 2021
According to Amanda Montell’s new book, “Cultish,” the jargon and technical language of fanaticism is surprisingly common.
culture
The Hidden Bias in Language That Turned Left-Handedness Into a Bad ThingFeb 15, 2026
While the days of forcing left-handed children to use their right hands are mostly over, the bias against lefties continues in most languages around the world.
How to build team spirit | Psyche GuidesJan 20, 2026
The glue, or spirit, that binds certain teams is not mystical – you can cultivate it by changing how you work together
Table for One: Why McDonald’s Solo Seats Are Viral in ChinaJan 16, 2026
The design taps into a growing demand for low-pressure public spaces, as digital life reshapes how people interact.
The Birth of Espresso: The Story Behind the Coffee Shots That Fuel Modern LifeJan 2, 2026
Espresso is neither bean nor roast.
It is a method of pressurized coffee brewing that ensures speedy delivery, and it has birthed a whole culture.
The 5 Most Significant Non-Abrahamic World Religions and Philosophies | TheCollectorNov 2, 2025
Read on and discover five non-Abrahamic World Religions to better understand yourself and the world you live in.
Why Frozen Food Gets an Icy Reception in ChinaSep 26, 2025
Chinese diets are dictated by a culture of eating ingredients just hours after slaughtering or harvesting.
The Psychological Value of RepentanceSep 22, 2025
Every major world religion has a process for moral accounting. That’s something we rarely talk about in secular society.
Why 'hearing voices' is welcomed in these culturesSep 3, 2025
Western medicine views hearing disembodied voices as a symptom of psychosis. But that's not the case everywhere.
The Sealy Barbecue Joint That Inspired Robert Earl Keen's “Barbeque” SongAug 28, 2025
We tracked down the family of the now-closed Texas restaurant.
Celebrating 50 years of The Rocky Horror Picture ShowAug 18, 2025
“It’s had a profound impact on our culture, especially on people who’ve felt different and marginalized.”…
My Favorite Restaurant Served Gas — THE BITTER SOUTHERNERMay 1, 2025
With the arrival of Thank You Please Come Again, our new book by Kate Medley, we present its opening essay.
How 'Am I The Asshole' Became Everyone's Favorite SubredditApr 9, 2025
'Am I the Asshole?' on Reddit has amassed more than 11.4 million subscribers. Here's the history of the subreddit that everyone loves to read.
A User’s Guide to Building a Subculture—AsteriskDec 24, 2024
First, you’re going to need something to care about.
Movie stars, matchmakers, and aunties: How WhatsApp became an unstoppable cultural forceDec 11, 2024
The world’s most popular messaging platform is synonymous with the internet for millions of people.
How to Cultivate Taste in the Age of AlgorithmsMay 21, 2024
When we turn to algorithms for recommendations instead of asking friends or going down hard-won cultural rabbit holes, what do we give up?
Build Your Culture Like a Product — Lessons from Asana’s Head of PeopleApr 12, 2024
Anna Binder, Asana's Head of People and the company's first HR hire, shares her step-by-step approach to intentionally building the company culture.
How Art Creates UsJan 26, 2024
Consuming culture gives us the emotional knowledge that can make us better people.
A Japanese Island Where the Wild Things AreApr 16, 2023
In the pantheon of yokai, spooky beings of Japanese folklore embody anxieties ancient and modern. On Shodoshima, an art contest helps bring new ones to life.
How Cookie Jars Capture American KitschApr 6, 2023
The cookie jar continues to be a vessel for cheeky self expression, if not for cookies themselves.
‘The first year is the hardest’: How college football coaches get their new teams to buy inMar 27, 2023
Some coaching transitions do the unthinkable, like Sonny Dykes and TCU. Others flounder, like Scott Frost and Nebraska. How, and why?
9 viral phrases that explain China’s work cultureFeb 11, 2023
From “lie flat” to “let it rot,” common terms have taken on new meaning in recent years.
Cultures Clash at Salomon Smith Barney — Stories.FinanceFeb 4, 2023
Richard Bookstaber was Salomon Brothers’ chief risk officer in 1997 when the firm was bought by Travelers and merged with Smith Barney, Travelers’ retail brokerage. He describes the resulting clash of cultures.
Google Arts & CultureFeb 4, 2023
Google Arts & Culture features content from over 2000 leading museums and archives who have partnered with the Google Cultural Institute to bring the world's treasures online.
It Came From the ’70s: The Story of Your Grandma’s Weird CouchFeb 3, 2023
Where did the Grandma Couch—which is somehow both conservative and flamboyant at the same—come from?
What I learned at GitLab that I don't want to forgetDec 13, 2022
After a little over 5 years, I'm going to be leaving GitLab for my next adventure. It's no surprise to those of you who have been following me that I have absolutely loved my time there. I'm so proud of what we built—and I'm still proud and awed by
How can you tell if the company you’re interviewing with is rotten on the inside?Dec 4, 2022
How can you tell the companies who are earnestly trying to improve apart from the ones who sound all polished and healthy from the outside, whilst rotting on the inside? This seems to be on a lot o…
Does your company suffer from broken culture syndrome? | MIT SloanOct 30, 2022
Whether it’s caused by culture clash, cultural inertia, or total toxic collapse, broken culture syndrome can sink an organization. But there’s a way out.
Elided Branches: The Product Culture ShiftAug 22, 2022
Technology, startups, programming, technical management and software architecture
Valve handbook low resJul 19, 2022
Psychological Safety, Risk Tolerance and High Functioning Software Teams | HackerNoonJul 19, 2022
A few years ago, Google decided to research what was the key ingredient that made some software teams at the company more successful than others. Much to their surprise the key trait that was most correlated with successful teams wasn’t technical prowess, personalities or the educational background of the team members. Instead it was the notion of psychological safety — “ a shared belief held by members of a team that the team is safe for interpersonal risk-taking.’’
Product Management Is a Company, Not a DepartmentJul 19, 2022
Do you rely too heavily on product management to ensure your product is successful? Joe Kinsella explores the importance of everyone in a startup being in PM.
Inner Workings of Product Management at Product Led Growth Companies - OpenViewJul 19, 2022
Product is at the epicenter of everything a product led growth (PLG) company does. So how does the product organization and its PMs need to adapt? Find out here.
Science Fiction Dictionary: Terms, Ideas and TechnologyJul 18, 2022
Dictionary of 3,300+ science fiction inventions, devices and technology from 1,000+ novels and stories by more than 300 authors from Adams to Zelazny.
6 Rules for Building and Scaling Company CultureJul 18, 2022
For your business to survive, it needs character and purpose.
Are you outspoken at work? How to use your voice – and not get firedJul 18, 2022
Hello, my name is Andrew, and I can’t stop disagreeing.
Why T-Shirts MatterJul 14, 2022
During my tenure at LinkedIn, I’ve held a wide variety of roles and responsibilities within the company. Some are fairly public (as described on my LinkedIn profile). Others are the the typ…
Startup Culture Is Not About Ping-Pong TablesJul 6, 2022
Culture isn’t about whether you’re a startup or a Fortune 500 giant. It’s about values and mindset. It’s about how you approach the decisions you make.
CultureJul 5, 2022
Our overriding objective is excellence. When we say excellence, we mean constant improvement. Our mission of understanding how the world’s markets and economies work requires an extraordinary team, defined by the best individuals and the best portfolio of people, operating in an idea meritocracy, where we are uncompromising on our shared values of truth, integrity, determination, humility, and courage.
How cultures around the world make decisionsJul 5, 2022
Is the American obsession with individual freedom really such a great idea? What other cultures know about how to make good choices.
Lifelong Quests! Lawsuits! Feuds! A Super-Serious Story About Cereal.Jun 27, 2022
The world’s most obsessive breakfast-food fans demonstrate just how far humans will go for the sweet taste of nostalgia.
The Hard Truth About Innovative CulturesJun 25, 2022
Innovative cultures are generally depicted as pretty fun. They’re characterized by a tolerance for failure and a willingness to experiment. They’re seen as being psychologically safe, highly collaborative, and nonhierarchical. And research suggests that these behaviors translate into better innovative performance. But despite the fact that innovative cultures are desirable, and that most leaders claim to understand what they entail, they are hard to create and sustain. That’s because the easy-to-like behaviors that get so much attention are only one side of the coin. They must be counterbalanced by some tougher and frankly less fun behaviors: an intolerance for incompetence, rigorous discipline, brutal candor, a high level of individual accountability, and strong leadership. Unless the tensions created by this paradox are carefully managed, attempts to create an innovative culture will fail.
The Difference Between Good And Bad OrganizationsJun 23, 2022
"In a poor organization ... people spend much of their time fighting organizational boundaries, infighting, and broken processes."
Small Actions Make Great LeadersJun 22, 2022
Leadership has traditionally been taught as a set of larger actions, such as having a difficult conversation or coaching someone. In reality, leading well is an integrated activity, in which one is doing many things simultaneously. One way to learn to do this better is to think about leadership as a series of small actions that are practiced, then carefully sequenced and interwoven during interactions. For instance, instead of thinking of something as a “difficult conversation,” a leader might aim to disarm, then show appreciation, then appeal to values. Research identifies 25 such actions, and learning to implement them in the right circumstances can help one become a better leader.
Inside Kraken’s Culture War Stoked by Its C.E.O.Jun 22, 2022
Jesse Powell, who leads the crypto exchange Kraken, has challenged the use of preferred pronouns, debated who can use racial slurs and called American women “brainwashed.”
We don t do that hereJun 13, 2022
The Internet Encyclopedia of MemesJun 4, 2022
An Interview with Don Caldwell, the Editor-in-Chief of Know Your Meme
The rise of ‘bai lan’: why China’s frustrated youth are ready to ‘let it rot’May 29, 2022
Phrase bai lan gains popularity as severe competition and social expectations leave many young people despondent
At Taco Bell, the Drag Brunch Goes CorporateMay 28, 2022
The glittery live shows have long been a staple in many cities, but the fast-food chain is taking that a step further.
The Strange Afterlife of George CarlinMay 12, 2022
Nearly 14 years after his death, his provocative humor has been embraced by people across the political spectrum. What happens when comedy outlasts the era it was made for?
The GitLab HandbookMay 6, 2022
GitLab Handbook Company About GitLab Values Mission Vision Strategy Communication Culture TeamOps CEO Readme Office of the CEO Key Reviews Group Conversations E-Group Weekly Environmental, Social, and Governance Handbook About the Handbook Handbook Changelog Handbook Roadmap Handbook Escalation Handbook Usage Contribution Guide Editing the handbook Handbook Style Guide Handbook maintenance People Group Anti-Harassment Policy Global Volunteer Month Hiring Inclusion & Diversity Labor and Employment Notices Leadership Learning & Development Onboarding Offboarding Spending Company Money Talent Assessment Team Member Relations Philosophy Total Rewards Tools and Tips Engineering Customer Support Department Development Department Incubation Engineering Department Infrastructure Department Quality Department Security Practices Open Source Security Product Security Security Operations Threat Management Security Assurance Marketing Team Member Social Media Policy Blog Brand and Product Marketing Enterprise Data Integrated Marketing Sales Development Marketing Operations and Analytics Growth Developer Relations Corporate Communications Sales Alliances Commercial Customer Success Customer Success Management Reseller Channels Field Operations Reporting Solutions Architecture Finance Accounts Payable Accounts Receivable Business Technology Expenses Financial Planning & Analysis Payroll Procurement Tax Board meetings Internal Audit Equity Compensation Product Release posts About the GitLab Product Being a Product Manager at GitLab Product Principles Product Processes Product sections, stages, groups, and categories Product Development Flow Product Development Timeline Data for Product Managers Product Pricing Model Corporate Development / Acquisitions UX Department Legal and Corporate Affairs Commercial Corporate Corporate Development Employment Environment, Social, and Governance (ESG) Operations Privacy Product Risk Management and Dispute Resolution Trade Compliance
How national identities are inventedMar 17, 2022
A strong national identity is essential for any country's survival – and the easiest route to acquiring one is to unite behind a common enemy.
8 Principles for Building a High-Performance Culture | The Leading Blog: A Leadership BlogFeb 10, 2022
Leadership Now is a leading source for leadership development and analysis. We believe that anyone can make a difference by leading from where they are.
Dun, Dun Duuun! Where did pop culture’s most dramatic sound come from?Jan 21, 2022
Did the iconic three-note sequence come from Stravinsky, the Muppets or somewhere else? Our writer set out to – dun, dun duuuun! – reveal the mystery
Japan's Paper Culture | JetPensDec 31, 2021
With Japan’s rich traditions in paper, it’s no wonder that paper is such a big part of Japanese culture. Keep reading to learn more about why paper is so important in Japan—plus, take a look at a few of our favorite Japanese paper companies.
Sign of the Times: Why Young Chinese Are Removing Their TattoosNov 11, 2021
Chinese millennials are getting tattoos in record numbers. But when it’s time to get married or start a career, many are forced to rush back to the studio to get them erased.
The Founder’s Guide to Discipline: Lessons from Front’s Mathilde CollinOct 29, 2021
Front's CEO and co-founder Mathilde Collin shares why a founder’s discipline matters more than vision, unveiling her own best practices and templates for communication, time management, fundraising and team building.
‘Give away your Legos’ and other commandments for scaling startupsOct 16, 2021
Molly Graham helped forge a work culture at Facebook that's withstood huge amounts of growth. Today, she's something of a rapid scaling expert. Here's the key to doing it right, she says.
Intercultural ManagementJul 24, 2021
In order to do well in an increasingly globalised world, managers need to be able to navigate different cultural waters. But what does that mean, exactly? What are the key things you need to know about intercultural management?
The Weird History of Hillbilly TV — THE BITTER SOUTHERNERJul 18, 2021
Gabe Bullard takes a long, hard look at the history of hillbilly TV, from Andy Griffith to “Duck Dynasty.”
This is How to Repair a Toxic Work CultureApr 18, 2021
Feeling safe is the magic ingredient to a healthy work environment. In this article Nir discusses novel research on how to eliminate toxic work culture.
10 questions to ask in a job interview that will really expose a company's culture - Fast CompanyApr 10, 2021
Simple questions that can speak volumes about your prospective employer.
How to Build a Culture of Generosity at WorkMar 6, 2021
Here are six practices to help your team ask for and give more help to each other.
What leader(s) over your product career truly changed how you approach prodFeb 19, 2021
I learned from bosses & peers, including some famous peeps like Reed Hastings, Patty McCord, and Dan Rosensweig. But mainly I learned by doing, supercharged by feedback from many "Friends of Gib."
Are you outspoken at work? How to use your voice – and not get firedOct 28, 2020
Hello, my name is Andrew, and I can’t stop disagreeing.
A Software Engineering Culture TestMay 27, 2020
See a shorter, and updated version of this test here: The Pragmatic Engineer Test: 12 Questions on Engineering Culture [https://blog.pragmaticengineer.com/pragmatic-engineer-test/]. I've talked with dozens of software developers about what they like and dislike about their workplace - team, and company - professionally. I'm starting to see
What Makes You “Multicultural”Dec 23, 2019
Individual people can be multicultural in three different (albeit inter-related) ways: they can have deep knowledge of, they can identify with, and they can have internalized more than one culture. This article delves into those three aspects of being multicultural and describes what benefits can accrue from each of them.
Squirrel KingMay 12, 2019
The city didn’t put stop signs at our suburban corner until I was thirteen. Despite the reckless driving, no one was ever killed. Pet dogs and stray cats weren’t so lucky. Neither were the squirrels.
How to Create a Great Team Culture (and Why It Matters) - ACM QueueMay 4, 2019
As leader of the team, you have significant influence over your team
Don’t Fuck Up the CultureSep 28, 2018
On Monday, October 21, 2013, I sent this letter to our entire team at Airbnb. I have decided to publish this in the event it is helpful to entrepreneurs building their cultures. Our next team meeting…
What a Russian Smile Means - Issue 61: CoordinatesJun 25, 2018
How culture and history make American and Russian smiles different.
curiosity
Why are we curious about some things and indifferent to others? | Psyche IdeasDec 9, 2025
Many of us crave trivial details while ignoring much of the world around us. Research helps explain this selective curiosity
In Uncertain Times, Get Curious - by Elizabeth Weingarten - Behavioral ScientistApr 27, 2025
Asking better questions can act as an antidote to uncertainty—and the anxiety that comes with it.
Curiosity Snacks: How to Redirect Your Impulse to KnowFeb 6, 2025
Curiosity snacks are small, intentional nudges that guide our impulsive curiosity toward learning, creativity, and meaningful discovery rather than mindless scrolling.
No Spoilers, Please! Why Curiosity Makes Us PatientApr 10, 2024
Curiosity makes people hungry for knowledge—but not necessarily in a hurry
The Curiosity Matrix: 9 Habits of Curious MindsFeb 29, 2024
The Curiosity Matrix maps nine common habits of curious people supporting personal and professional growth through curiosity-driven behaviors.
Give AI curiosity, and it will watch TV foreverFeb 1, 2024
TV is just as interesting to AI as it is to humans.
Deliberate doubt: the art of questioning our assumptionsDec 6, 2022
Deliberate doubt is the practice of actively questioning our beliefs and assumptions. It is about suspending our certainty and letting go of our preconceived notions in order to explore new ideas and perspectives.
What Drives Us to Peek into Someone's Medicine Cabinet?Feb 12, 2021
What are we really hoping to find?
curl
lwthiker/curl-impersonate: curl-impersonate: A special build of curl that can impersonate Chrome & FirefoxApr 4, 2025
curl-impersonate: A special build of curl that can impersonate Chrome & Firefox - lwthiker/curl-impersonate
CURL - All methods and Usage ✅May 1, 2024
Title: Unleash the Power of curl: Your Friendly Handbook Curl isn't just a tool; it's a developer's...
How to Save cURL Output to a File?Aug 25, 2023
Learn to save the curl command output to a file for later usage in this quick tutorial.
Using Curl to make REST API requests | LinuxizeFeb 4, 2023
In this article, we're going to discuss how to use Curl to interact with RESTful APIs. Curl is a command-line utility for transferring data from or to a remote server.
Using cURL to Download Remote Files from the Command LineJan 16, 2022
The powerful curl command line tool can be used to download files from just about any remote server. Longtime command line users know this can be useful for a wide variety of situations, but to kee…
Curl CookbookDec 11, 2021
A cookbook full of organic, nutritious, and completely irresistible curl recipes to pass down for generations.
custsvc
The Founder’s Guide to Building a V1 of Customer SuccessJul 10, 2025
A CS leader who has built the function from the ground up shares where founders should start — from how to hire to the most important metrics to track.
Customer Satisfaction Analysis with PythonAug 1, 2024
In this article, I'll take you through the task of Customer Satisfaction Analysis with Python. Customer Satisfaction Analysis with Python.
How to Apologize to a Customer When Something Goes WrongMay 7, 2023
Businesses are bound to make mistakes and disappoint their customers. But how you build your apology message and your careful attention to executing it appropriately can make the difference between losing those customers or increasing their loyalty. When delivered well, your apology message can improve the customer relationship to the point where it is stronger than if the mistake had never happened — a phenomenon known as the service recovery paradox. In this article, the author outlines five steps for writing an effective apology message, and explains why it’s important to share the apology process internally and with external stakeholders. It not only shows vulnerability from the organization, but also shows other customers that the company can be relied upon in times of distress.
The Magic of Knowing When to Use Concrete vs. Abstract Language - By Jonah Berger - Behavioral ScientistApr 25, 2023
When trying to make language either more concrete or more abstract, one helpful approach is to focus on either the how or the why.
6 Customer Service Examples from Online RetailersFeb 16, 2023
Changing consumer expectations and advances in technology provide merchants the opportunity to test customer support options. Many reduce costs while improving shoppers' experiences.
Why is it so hard to give Google money?Jul 27, 2022
4 Phrases of Amazing Customer Service - Mike MichalowiczJul 19, 2022
I’ve grown my companies by focusing on great customer service. We didn’t always have the biggest names in business working at the firm, and we sure couldn’t
4 Phrases of Amazing Customer Service - Mike MichalowiczJul 18, 2022
I’ve grown my companies by focusing on great customer service. We didn’t always have the biggest names in business working at the firm, and we sure couldn’t
Nobody likes self-checkout. Here’s why it’s everywhere | CNN BusinessJul 18, 2022
Why has this problematic, unloved technology taken over retail?
Beautiful People Don’t Always Win in the WorkplaceJul 18, 2022
Research shows how attractive employees can rub some customers the wrong way.
Designing Effective FAQ PagesJul 18, 2022
Adding an FAQ page to your website? Here are some tips, strategies, and things to avoid when designing an effective FAQ page!
Ask HN: What is something you do for clients that consistently blows them away? | Hacker NewsJul 17, 2022
8 Fresh Customer Service Ideas Worth StealingJul 5, 2022
If you want to make your customers happy, there are tactics you can use, from handwritten notes to custom-made YouTube videos. Here are some ideas you can steal.
How Self-Service Kiosks Are Changing Customer BehaviorJun 28, 2022
From ATMs to automated checkouts to fast food.
Busting Six Myths About Customer Loyalty ProgramsJun 25, 2022
Low-margin retailers argue they can't afford customer loyalty programs, but is that true? Rajiv Lal and Marcel Corstjens make the case that such programs are profit-enhancing differentiators.
Don’t be a product person, be a merchantJun 23, 2022
Founders and product managers alike wear this proudly on their sleeves (or twitter bios) The Ultimate Product Person – who loves products, building products and sweating the details. Skim thr…
Neil Patel's Digital Marketing BlogJun 23, 2022
Your #1 resource for digital marketing tips, trends, and strategy to help you build a successful online business.
The Help Scout Blog: Delight Your CustomersJun 23, 2022
Get tips and advice on delivering exceptional customer service, engaging and delighting your customers, and building a customer-centric company.
The 10 Magic Phrases of Customer ServiceJun 2, 2022
There are certain words that every customer wants to hear. Here's what to say to win loyal customers.
5 Effective Customer Loyalty Programs for Small Businesses - Help ScoutMay 28, 2022
All you need to know about the benefits of customer loyalty programs for small business + examples of 5 types of programs to consider.
11 Types of Bad Customer Service (and How To Avoid Them) - Help ScoutMay 28, 2022
Read stories of spectacularly bad customer service, plus get some tips for how to keep situations like these from happening at your company.
The Power of a Free PopsicleJan 29, 2022
If you Run a Small Business Park In the Back of the Parking LotJan 29, 2022
As a rule of thumb business owners should be primarily focused on delighting their customers in any way possible. Every subtle interaction should be closely optimized for customer enchantment, and a decision as simple as where to park your car can subconsciously attract or detract a customer.
The end of “click to subscribe, call to cancel”? One of the news industry’sNov 17, 2021
Most U.S. news organizations won't let readers cancel online. The Federal Trade Commission wants that to change.
Policy Pages, Done Well, Enhance a BrandJul 7, 2021
Shoppers search an online store's policy pages for details on shipping, returns, and more. Rarely are these vital pages engaging. But they should be.
How brands are using TikTok as a channel for customer service and product fMar 16, 2021
Brands have unsolicited feedback in their TikTok comments, allowing them to answer customer questions, see trends, and make product changes.
How to Complain and Get ResultsJun 1, 2020
Impersonal customer service makes it hard to get help. Here's the script for success.
5 Principles for Responding to Customer ReviewsMay 14, 2020
In an age where customer word of mouth can quickly go viral, managers can take five proactive actions to get the most lift out of their customers’ good reviews and minimize the bad ones. For positive reviews, managers should delay their response and–when they do respond– make sure the response is generic and short. The authors found that more customized responses — perceived as promotional and thus viewed as disingenuous — negatively affected future reviews. For negative reviews, it’s important to quickly respond to every one with a tailored solution to the specific complaint.
How to use returns to build customer loyaltyDec 23, 2019
Returns are on the rise – here’s what you can do to make it your competitive advantage.
Why are your customers calling you again?Sep 21, 2019
Getting to the bottom of why customers keep calling your contact centers can generate significant savings. And result in happier customers.
Counter Service Tipping: Who Gives? (Published 2019)Sep 17, 2019
Those customer-facing, touch-screen payment systems in restaurants are confounding customers in the U.S. and beyond.
The strength of a monopoly can be guessed at by calling customer supportSep 23, 2018
If you were an alien hovering above planet earth on a quick visit and trying to find out quickly which were its most dominant companies, you could probably do worse than try to reach their customer…
Thank you notesSep 9, 2018
The Real Benefit of Amazon ReviewsJul 5, 2018
I'm a longtime seller on Amazon's marketplace. I also mentor many sellers and help brands to improve their marketplace sales. And I belong to various
The Hospitality Solution in Your BusinessSep 24, 2011
A look at the main provocation of Will Guidara’s Unreasonable Hospitality: that you can solve (certain) business problems with hospitality, and that it only takes a little thoughtfulness to do so.
cynicism
Casablanca and the Cure for Cynicism | The Art of ManlinessDec 15, 2025
I finally got around to watching Casablanca this year. I’m a little embarrassed it took this long. I think the delay was due to the fact that I already thought I’d seen it, on account of seeing clips of it so often. It’s part of the ether of pop culture. I knew all the famous […]
cython
Speed Up Statistical Computations in Python with CythonJul 8, 2025
Cython is a superset of Python that supports static type declarations, which Cython translates into highly optimized C code, and which makes writing C extensions for Python as easy as Python itself.
Cython for absolute beginners: 30x faster code in two simple stepsJun 1, 2022
Easy Python code compilation for blazingly fast applications
NumPy Array Processing With Cython: 1250x FasterNov 2, 2020
This article was originally published on the Paperspace blog. You can run the code for my tutorials for free on Gradient.
CythonMay 21, 2019
Build software that combines Python’s expressivity with the performance and control of C (and C++). It’s possible with Cython, the compiler and hybrid programming language used by foundational packages such … - Selection from Cython [Book]
d3
D3 in Depth | Hacker NewsMay 18, 2024
Orthographic shading / D3 | ObservableDec 22, 2022
Step 1. Create a grid Use d3.geoGraticule10 to create lines of constant longitude and latitude. Step 2. Apply clipping Set projection.clipAngle to 90° to show only the front hemisphere. Stroke the outline of the sphere to better separate the globe from the background. Step 3. Apply a radial gradient Apply a radial gradient to simulate lighting on a diffuse surface. Appendix
Adaptive SamplingDec 22, 2022
D3’s projections use adaptive sampling to increase the accuracy of projected lines and polygons while still performing efficiently. Without sampling, only the input vertices of polygons are projected. This results in the artifacts (visible above) due to projected lines becoming curves. Uniform sampling improves the appearance by adding interstitial samples between input vertices. It is inefficient because most samples are not needed, and even areas of extreme distortion still exhibit artifacts! Adaptive sam
How to Create Storytelling Moving Bubbles Charts in d3js with Python.Oct 14, 2022
The MovingBubble chart is one of those mind-blowing charts to look at. Learn how to create them using your own data set and Python!
D3Blocks: The Python Library to Create Interactive and Standalone D3js CharSep 22, 2022
Create interactive, and stand-alone charts that are built on the graphics of d3 javascript (d3js) but configurable with Python.
Amelia WattenbergerJan 16, 2022
D3 in DepthJan 16, 2022
D3 is the most commonly used JavaScript library for visualization on the web, but there’s a bit of learning curve, especially for those new to programming. Peter Cook hopes to make this begin…
D3listJan 16, 2022
The Hitchhiker’s Guide to d3.jsJan 12, 2022
The landscape for learning d3 is rich, vast and sometimes perilous. You may be intimidated by the long list of functions in d3’s API…
How (and why) to use D3 with React | HackerNoonDec 26, 2021
If you’re planning to build a React app with more than a few simple data visualizations, you’ll probably want to pick an approach that:
Making a map in d3 js v 5Dec 16, 2021
wbkd/awesome-d3: A list of D3 libraries, plugins and utilitiesDec 11, 2021
A list of D3 libraries, plugins and utilities.
d3/d3-sankey: Visualize flow between nodes in a directed acyclic network.Jul 13, 2021
Visualize flow between nodes in a directed acyclic network. - d3/d3-sankey
newline-sandbox/d3-user-interactionsApr 18, 2021
A D3 project showing a barchart that allows user interactions
Gallery / D3 / ObservableDec 24, 2020
Looking for a good D3 example? Here’s a few (okay, …) to peruse. Animation D3’s data join, interpolators, and easings enable flexible animated transitions between views while preserving object constancy. Interaction D3’s low-level approach allows for performant incremental updates during interaction. And D3 supports popular interaction methods including dragging, brushing, and zooming. Analysis D3 is for more than visualization; it includes tools for quantitative analysis, such as data transformation, rand
Treemap | the D3 Graph GalleryDec 10, 2020
How to build a treemap with Javascript and D3.js: from the most basic example to highly customized examples.
D3 6.0Nov 29, 2020
D3 6.0 embraces modern JavaScript (ES2015) to help you work with data! 🥳 D3 now uses native collections (Map and Set) and accepts iterables. d3.group and d3.rollup are powerful new aggregation functions that replace d3.nest and work great with d3-hierarchy and d3-selection. There are lots of new helpers in d3-array, too, such as d3.greatest, d3.quickselect, and d3.fsum. D3 now passes events directly to listeners, replacing the d3.event global and bringing D3 inline with vanilla JavaScript and most other fr
Rendering One Million Datapoints with D3 and WebGLMay 6, 2020
This blog post introduces the WebGL components which we recently added to D3FC, this suite of components make it easy to render charts with very large numbers of datapoints using D3. Throughout this post I'll describe the creation of the following visualisation, which displays 1 million books from the Hathi Trust library
Learn D3: A guided tour of your first steps using D3, by Mike BostockApr 1, 2020
A guided tour of your first steps using D3.
Introduction to D3 / MIT Visualization Group / ObservableMar 9, 2020
So far in 6.859, we've primarily been working with visual analysis grammars like Vega-Lite or VizQL (Tableau). These grammars break visualization design down into a process of specifying mappings (or visual encodings) between data fields and the properties of graphical objects called marks. They're useful for concisely and rapidly creating recognizable visualizations, while giving us more design flexibility (or expressivity) than chart typologies like Microsoft Excel. However, describing visualization desig
Zoomable TreemapFeb 19, 2020
This treemap supports zooming: click any cell to zoom in, or the top to zoom out.
Zoomable Area ChartFeb 19, 2020
This zoomable time series area chart shows the number of flights per day. The effect of the September 11, 2001 attacks on air travel is evident.
Bar Chart Race, ExplainedDec 23, 2019
This is a pedagogical implementation of an animated bar chart race. Read on to learn how it works, or fork this notebook and drop in your data! The data for the race is a CSV with columns date (in YYYY-MM-DD format), name, value and optionally category (which if present determines color). To replace the data, click the file icon
✚ How to Make a Tiled Bar Chart with D3.jsAug 30, 2019
Show individual data points by splitting bars into smaller cells.
D3 circle scatteringOct 28, 2018
dad
dash
Understanding Dash: How to Transform Plotly Charts into Interactive Web DashboardsOct 1, 2025
Transform your Plotly charts into shareable web applications using Python Dash with minimal code changes.
Web Development with Python: Dash (complete tutorial)Jun 14, 2021
Draw with Plotly, Embed Bootstrap CSS, Upload & Download files, Change Inputs after selection, Navbars, Spinners, and more…
dask
Building End-to-End Data Pipelines with Dask - KDnuggetsMay 5, 2025
Learn how to implement a parallelization process in your data pipeline.
Processing a Directory of CSVs Too Big for Memory with Dask - KDnuggetsMar 25, 2025
Learn how to process the big data in the CSV format.
An Introduction to Dask: The Python Data Scientist's Power Tool - KDnuggetsDec 16, 2024
Ever wondered how to handle large data without slowing down your computer? Let’s learn about Dask, a tool that helps you work with large data quickly.
Lessons Learned from Scaling to Multi-Terabyte DatasetsJun 22, 2024
This post is meant to guide you through some of the lessons I’ve learned while working with multi-terabyte datasets. The lessons shared are focused on what someone may face as the size of the…
Beyond Numpy and Pandas: Unlocking the Potential of Lesser-Known Python LibSep 1, 2023
3 Python libraries for scientific computation you should know as a data professional.
If You Can Write Functions, You Can Use DaskSep 25, 2021
This article is the second article of an ongoing series on using Dask in practice. Each article in this series will be simple enough for beginners, but provide useful tips for real work. The first article in the series is about using LocalCluster.
Dask DataFrames — How to Run Pandas in Parallel With EaseMay 28, 2021
Are you a Data Scientist experienced with Pandas? Then you know its pain points. There's an easy solution - Dask - which enables you to run Pandas computations in parallel.
What is Dask and How Does it Work?May 5, 2021
This article will first address what makes Dask special and then explain in more detail how Dask works. So: what makes Dask special? Python has a rich ecosystem of data science libraries including…
State of the art NLP at scale with RAPIDS, HuggingFace and DaskApr 4, 2021
See how to build end-to-end NLP pipelines in a fast and scalable way on GPUs — from feature engineering to inference.
Are You Still Using Pandas to Process Big Data in 2021?Mar 1, 2021
Pandas doesn’t handle well Big Data. These two libraries do! Which one is better? Faster?
Pandas on the Cloud with DaskNov 3, 2020
Scaling your Pythonic data science and machine learning to the cloud using Dask. All from the comfort of your own laptop.
DASK: A Guide to Process Large Datasets using ParallelizationNov 2, 2020
A simple solution for data analytics for big data parallelizing computation in Numpy, Pandas, and Scikit-Learn Frameworks.
Pandas with Dask, For an Ultra-Fast NotebookJun 1, 2020
Use Pandas with Dask to save time and resources. This combination will make your notebook ultra fast
Why and How to Use Dask with Big DataMay 15, 2020
The Pandas library for Python is a game-changer for data preparation. But, when the data gets big, really big, then your computer needs more help to efficiency handle all that data. Learn more about how to use Dask and follow a demo to scale up your Pandas to work with…
Set up a Dask Cluster for Distributed Machine LearningMar 9, 2020
Create a Dask environment only by connecting machines using SSH
Dask — Dask 2.11.0 7.gc99a4402 documentationMar 9, 2020
data-augmentation
Comparing Different Automatic Image Augmentation Methods in PyTorchJan 30, 2023
Data augmentation is a key tool in reducing overfitting, whether it's for images or text. This article compares three Auto Image Data Augmentation techniques...
Computer Vision | Papers With CodeDec 21, 2020
Data augmentation involves techniques used for increasing the amount of data, based on different modifications, to expand the amount of examples in the original dataset. Data augmentation not only helps to grow the dataset but it also increases the diversity of the dataset. When training machine learning models, data augmentation acts as a regularizer and helps to avoid overfitting. Data augmentation techniques have been found useful in domains like NLP and computer vision. In computer vision, transformations like cropping, flipping, and rotation are used. In NLP, data augmentation techniques can include swapping, deletion, random insertion, among others. Further readings: - [A Survey of Data Augmentation Approaches for NLP](https://paperswithcode.com/paper/a-survey-of-data-augmentation-approaches-for) - [A survey on Image Data Augmentation for Deep Learning](https://journalofbigdata.springeropen.com/articles/10.1186/s40537-019-0197-0) ( Image credit: [Albumentations](https://github.com/albumentations-team/albumentations) )
data-structures
A Practical Introduction to Finger TreesDec 29, 2025
How to use finger trees to solve problems by choosing the appropriate
monoid measure.
An Introduction to MultisetsOct 16, 2025
Multisets are sets that allow repetition of elements. As such, multisets pave the way to a number of interesting possibilities of theoretical and applied nature. In the present work, after revising the main aspects of traditional sets, we introduce some of the main concepts and characteristics of multisets, followed by their generalization to take into account vectors and matrices. An approach is also proposed in which the real, negative multiplicities are allowed, implying the multiset universe to become finite and well-defined, corresponding to the multiset with null multiplicities. The complement operation in multisets is then defined, which allows properties involving complement -- including the De Morgan theorem -- to be recovered in multisets. In addition, it becomes possible to extend multisets to functions (which become multifunctions), scalar fields and other continuous mathematical structure, therefore achieving an enhanced space endowed with all algebraic operations plus set theoretical operations including union, intersection, and complementation. The possibility to define a set operation between mfunctions, namely the common product, that is analogous to the traditional inner product is also proposed, paving the way to obtaining respective mfunction transformations, and it is argued that the Walsh functions provide an orthogonal basis for the mfunctions space under the common product. This result also allowed the proposal of performing integrated signal processing operations on mset mfunctions, including filtering and enhanced template matching. Relationships between the cosine similarity index and the Jaccard index are also identified, including the presentation of an intersection-based variation of the cosine index. The potential of multisets in pattern recognition and deep learning is also briefly characterized and illustrated.
Chapter 6: Arrays and Advanced Data Structures in AWKJul 25, 2025
You need 'a raise' to your AWK knowledge.
Data Structures and Algorithms in JavaScriptApr 9, 2025
🥞Data Structures and Algorithms explained and implemented in JavaScript + eBook - amejiarosario/dsa.js-data-structures-algorithms-javascript
kumar91gopi/Algorithms-and-Data-Structures-in-Ruby: Ruby implementation of Algorithms,Data-structures and programming challengesMar 27, 2025
Ruby implementation of Algorithms,Data-structures and programming challenges - kumar91gopi/Algorithms-and-Data-Structures-in-Ruby
Efficient Data Structures in RMar 27, 2025
This article aims to explain the main data structures in R and how to use them.
Advanced Data Structures: Sets, Tuples, and ComprehensionsApr 6, 2024
Advanced Data Structures: Sets, Tuples, and Comprehensions In the world of programming,...
Dictionary of Algorithms and Data StructuresSep 29, 2023
Definitions of algorithms, data structures, and classical Computer Science problems. Some entries have links to implementations and more information.
The AlgorithmsAug 6, 2023
Open Source resource for learning Data Structures & Algorithms and their implementation in any Programming Language
INTRODUCTION TO SQL FOR DATA SCIENCEFeb 19, 2023
SQL (Structured Query Language) is a programming language used to manage and manipulate relational...
Everything About Python Tuple Data Structure: Beginner’s GuideApr 7, 2022
In this article we will focus on a complete walk through of a Python tuple data structure
The Top 10 Algorithms Every Programmer Should Know In Graph Data Structure!Mar 26, 2022
Why to learn these graph algorithms? Graph algorithms are a set of instructions that...
trekhleb/javascript-algorithms: 📝 Algorithms and data structures implemented in JavaScript with explanations and links to further readingsJan 16, 2022
📝 Algorithms and data structures implemented in JavaScript with explanations and links to further readings - trekhleb/javascript-algorithms
Algorithm Tutorial: Intro to Heaps and Priority Queue ImplementationJun 21, 2021
In this edition of the Algorithm Tutorial series, we're going to break down the Heap data structure...
Top 7 Data Structures You Should Really Know for Your Next Job InterviewJan 24, 2021
Master these data structures to land in your next data science job
Complete Introduction to the 30 Most Essential Data Structures & AlgorithmsNov 3, 2020
Data Structures & Algorithms (DSA) is often considered to be an intimidating topic - a common...
Data Structures & Algorithms I Actually Used Working at Tech Companies - ThAug 10, 2020
Do you actually use data structures and algorithms on your day to day job? I've noticed a growing trend of people assuming algorithms are pointless questions that are asked by tech companies purely as an arbitrary measure. I hear more people complain about how all of this is a purely
keon/algorithms: Minimal examples of data structures and algorithms in PythonDec 27, 2017
Minimal examples of data structures and algorithms in Python - keon/algorithms
Intro To Probabilistic Data StructuresDec 27, 2017
Oftentimes while analyzing big data we have a need to make checks on pieces of data like number of items
Data Structures With JavaScript: Singly-Linked List and Doubly-Linked ListOct 3, 2016
Two of the most commonly taught data structures in computer science are the singly-linked list and doubly-linked list.
databases
Google just open-sourced their MCP server for databases. Connect any database to any AI agent in 10 lines of code. It's called MCP Toolbox. What it handles: → Connection pooling → Authentication →… | Paolo Perrone | 13 commentsFeb 8, 2026
Google just open-sourced their MCP server for databases.
Connect any database to any AI agent in 10 lines of code.
It's called MCP Toolbox.
What it handles:
→ Connection pooling
→ Authentication
→ Query execution
→ Tool generation
→ OpenTelemetry tracing
Supported databases:
→ PostgreSQL
→ MySQL
→ BigQuery
→ Firestore
→ Spanner
→ MongoDB
→ Redis
→ Elasticsearch
→ Snowflake
→ Oracle
Works by defining a tool in YAML + Load it in Python
Works with:
→ LangChain / LangGraph
→ LlamaIndex
→ Gemini CLI
→ Any MCP-compatible client
12.6k GitHub stars. Production-ready.
→
💾 Save for when you're building agents that need database access
♻️ Repost if you've been writing custom database tools from scratch | 13 comments on LinkedIn
Comparing Memory Systems for LLM Agents: Vector, Graph, and Event LogsNov 10, 2025
Learn how different memory systems affect multi-agent planning. Comparing Memory Systems for LLM Agents highlights key performance metrics.
What is a Database? Modern Database Types, Examples, and Applications (2025)Aug 24, 2025
What is a database? major database types, real-world examples, key features, and trends for choosing the best database in 2025
Getting Started with Neo4j: Installation and Setup Guide - KDnuggetsAug 12, 2025
Learn how to install and set up Neo4j. This article will help you start using Neo4j to explore connected data.
Data definition language (DDL)Jul 25, 2025
Data Definition Language (DDL) is a subset of SQL used to define and modify the structure of database objects like tables and constraints.
What are acid propertiesMay 23, 2025
ACID properties are principles ensuring data reliability and integrity in transaction processing, focusing on Atomicity, Consistency, Isolation, and Durability.
Databases in 2024: A Year in ReviewJan 2, 2025
Andy rises from the ashes of his dead startup and discusses what happened in 2024 in the database game.
Parquet File Format: Everything You Need to KnowJul 28, 2024
New data flavors require new ways of storing them. Learn all you need to know about the Parquet file format
Lessons Learned from Scaling to Multi-Terabyte DatasetsJun 22, 2024
This post is meant to guide you through some of the lessons I’ve learned while working with multi-terabyte datasets. The lessons shared are focused on what someone may face as the size of the…
The Great Migration from MongoDB to PostgreSQLMar 31, 2024
How Infisical migrated from MongoDB to PostgreSQL.
The race to replace RedisMar 30, 2024
Understanding databases: A comprehensive guide to different types for beginMar 19, 2024
Learn about different types of databases and find out how to design a functional and efficient database system, and compare popular RDBMSs like MySQL, Oracle, and PostgreSQL.
S3 is files, but not a filesystemMar 10, 2024
"Deep" modules, mismatched interfaces - and why SAP is so painful
The Internals of PostgreSQL: Database Cluster, Databases, and TablesMay 31, 2023
PostgreSQL, a widely adopted open-source relational database management system (RDBMS), offers robust...
Scalar Quantization and Product Quantization - Zilliz blogMay 28, 2023
A hands-on dive into scalar quantization (integer quantization) and product quantization with Python.
Not All Vector Databases Are Made EqualMay 28, 2023
A detailed comparison of Milvus, Pinecone, Vespa, Weaviate, Vald, GSI and Qdrant
What is a Vector Database? | PineconeMay 7, 2023
Discover Vector Databases: How They Work, Examples, Use Cases, Pros & Cons, Selection and Implementation. They have combined capabilities of traditional databases and standalone vector indexes while specializing for vector embeddings.
Top 10 Best Vector Databases & LibrariesApr 19, 2023
Vector database is a type of database that stores data as high-dimensional vectors, which are...
Why YAML is better than JSON (read before screaming)Mar 20, 2023
You have probably seen or used the YAML format in configuration files. YAML (a recursive acronym for...
Mastering PostgreSQL Views and CTEs for Rails Developers: A Comprehensive GMar 15, 2023
Introduction Views and Common Table Expression or CTE are two important concept in...
The Tough Climb To Profitability For MongoDBMar 10, 2023
There is something weird about storage companies that were started around the same time as the Great Recession. The big ones that have gone public after
Build Your Own Redis with C/C++ | Build Your Own Redis with C/C++Jan 31, 2023
Build Your Own Redis with C/C++ | Learn network programming and data structures
Dense Vectors | PineconeDec 28, 2022
19 Graph Algorithms You Can Use Right NowDec 16, 2022
The fastest to run any graph algorithm on your data is by using Memgraph and MAGE. It’s super easy....
Data Indexing, Replication, and Sharding: Basic ConceptsNov 21, 2022
A database is a collection of information that is structured for easy access. It mainly runs in a...
Three ways to scale your Database (Replication vs Sharding vs Partitioning)Oct 20, 2022
Taking your database to the next level regarding scale is often harder than scaling web servers. In...
10 Essential SQL Commands for Data ScienceOct 20, 2022
Learn SQL commands for filtering, string operations, alias, joining tables, if-else statements, and grouping.
Quirks, Caveats, and Gotchas In SQLiteOct 20, 2022
How to setup MongoDB with Jupyter NotebookOct 19, 2022
I have to conclusion how to setup MongoDB (NoSQL) with Jupyter Notebook by summary step like...
https://about.maps.earth/Oct 14, 2022
How Discord Stores Billions of MessagesAug 28, 2022
We decided early on to store all chat history forever so users can come back at any time and have their data available. This is a lot of data: how do we do it?
Advanced Database Programming with Rails and PostgresAug 19, 2022
Learn about Active Record and subqueries, views and materialized views, and domain types and composite types in Postgres and Ruby on Rails.
Redis ExplainedAug 13, 2022
A deep technical dive into all things Redis. Covering various Redis topologies, data persistence and process forking.
SQLite Internals: Pages & B-treesJul 30, 2022
Let's open a hex editor and see what this thing is made of
How to Make a Database Connection in Python for Absolute BeginnersJul 23, 2022
3 steps (+examples) to connect to MS SQL Server, MySQL, Oracle and many other databases
PostgreSQL 14 InternalsJul 14, 2022
Postgres Professional is a PostgreSQL company delivering Postgres Pro DBMS and all kinds of PostgreSQL professional services worldwide
10 Modern Data Engineering Tools - KDnuggetsJul 11, 2022
Learn about the modern tools for data orchestration, data storage, analytical engineering, batch processing, and data streaming.
Postgres Vs MySQL syntax comparison with cheatsheetJun 22, 2022
When migrating from PostgreSQL to MySQL we often get stuck with syntax between databases. Here are...
Apt - PostgreSQL wikiMay 29, 2022
5 Useful Database Command Line ToolsApr 29, 2022
Mycli - Python https://github.com/dbcli/mycli star 10.3k A Terminal Client for MySQL...
Wesley Aptekar-Cassels | Consider SQLiteApr 29, 2022
Eager Loading and the N+1 Query Problem | Learn Enough News & BlogJan 17, 2022
News & blog about Learn Enough (including the Ruby on Rails Tutorial)
PostgreSQL ExercisesDec 13, 2021
SQL Basics Cheat SheetNov 26, 2021
This 2-page SQL Basics Cheat Sheet will be a great value for beginners as well as for professionals. Download it in PDF or PNG format.
10 Essential Psql Commands For Data EngineersOct 27, 2021
Learn how to interact with PostgreSQL databases through the command line using PSQL.
Advanced SQL operationsJun 26, 2021
Reviewing more advanced SQL operations to extract additional data insights from the Irish Weather dataset.
7 Lessons From 10 Outages – The Downtime ProjectJun 23, 2021
Ask HN: What is the SQLite of nosql databases?Jun 13, 2021
Tricks for Advanced SQL QueryingMay 12, 2021
One of the most valuable technical skills I use working on a data science team in the retail space is SQL…
Datasets should behave like git repositories | by Simon Lousky | Towards DaMay 5, 2021
Create, maintain, and contribute to a long-living dataset that will update itself automatically across projects.
How to Use SQL RANK and DENSE_RANK FunctionsApr 25, 2021
If you’ve been practicing your SQL religiously, like I suggested in Top Skills to Ace Every SQL Interview Question, then you’ve probably…
Beginner’s Guide to Querying Data Using SQL on GPUs in PythonMar 15, 2021
Historically speaking, processing large amounts of structured data has been the domain of relational databases. Databases, consisting of tables that can be joined together or aggregated…
Baserow: Open source online database toolMar 14, 2021
Discover Baserow, the open-source no-code platform for building databases and applications. No code or technical skills needed. Start creating for free today!
7 Must-Know Ideas about NoSQLMar 10, 2021
How to avoid those dreaded pitfalls and “gotcha” moments when selecting databases for your next application?
What is a graph database?Feb 8, 2021
The graph database is popular with social networks, but there's no reason to limit it to tracking people and their friendships.
Setup Ruby on Rails 6 App with MongoDB under 5 Minutes — Aarvy | by Aarvy |Jan 23, 2021
In this article, I will be discussing how to quickly setup a NoSQL database MongoDB with your brand new Rails 6 app. I am using Ubuntu…
reddit: the front page of the internetJan 11, 2021
Rails 6.1 has added support for switching connections for one database instead of all databases
Python Pandas and SQLiteNov 3, 2020
Using SQLite to store your Pandas dataframes gives you a persistent store and a way of easily selecting and filtering your data
Manage Files and Database Connections in Python Like a ProNov 3, 2020
How to manage external resources in Python with your custom context managers
Database of Databases - LeaderboardsSep 17, 2020
Encyclopedia of databases systems from Carnegie Mellon University. Curated by @andy_pavlo
MongoDB Vs SQLMay 19, 2020
MongoDB and SQL databases are two polar opposite sides of the backend world. The former deals with chaotic unstructured data, while the…
How GIN Indices Can Make Your Postgres Queries 15x FasterApr 1, 2020
With query examples you can run on your laptop
On ShardingDec 14, 2019
Understanding Database Sharding | DigitalOceanMar 10, 2019
Sharded databases have been receiving lots of attention in recent years, but many don’t have a clear understanding of what they are or the scenarios in which…
HDFS vs. HBase : All you need to know - DataScienceCentral.comJan 23, 2018
The sudden increase in the volume of data from the order of gigabytes to zettabytes has created the need for a more organized file system for storage and processing of data. The demand stemming from the data market has brought Hadoop in the limelight making it one of biggest players in the industry. Hadoop Distributed… Read More »HDFS vs. HBase : All you need to know
datacenters
The Datacenter Bible - From Layman to Expert in 100 PagesFeb 25, 2026
The definitive 100+ page guide to the thermodynamics, scarcity, and heavy assets powering the AI revolution.
The Hidden Physics of Running Data Centers in Orbit - EE TimesFeb 3, 2026
As data centers move toward Earth's orbit, thermal management becomes a major challenge, forcing engineers to rethink system design in space.
How AI Labs Are Solving the Power Crisis: The Onsite Gas Deep DiveJan 1, 2026
Bring Your Own Generation, Sayonara Electric Grid, Turbines vs. Recips. vs. Fuel Cells, Why Not Build More CCGTs?, Onsite Power TCO
https://www.datacentermap.com/Dec 15, 2025
The Accounting Uproar Over How Fast an AI Chip Depreciates - SlashdotDec 8, 2025
Tech giants including Meta, Alphabet, Microsoft and Amazon have all extended the estimated useful lives of their servers and AI equipment over the past five years, sparking a debate among investors about whether these accounting changes are artificially inflating profits. Meta this year increased it...
Liquid cooling: The next evolution in data center thermal managementAug 24, 2025
Immersion cooling on the horizon
A Deep Dive Into Datacenter And Server Spending ForecastsApr 7, 2025
Spending on AI systems in 2024 just utterly blew by the expectations of the major market researchers and those who dabble in metrics like we do. There has
A Crucial Optical Technology Has Finally ArrivedMar 25, 2025
Nvidia's endorsement of co-packaged optics means the time is right
Data center energy consumptionMar 17, 2025
Datacenter Anatomy Part 2 – Cooling SystemsFeb 13, 2025
Cluster deployments are an order of magnitude larger in scale with Gigawatt-scale datacenters coming online at full capacity much faster than most believe. As such, there are considerable desi…
Datacenter Anatomy Part 1: Electrical SystemsFeb 13, 2025
Meta Datacenter Scrapped, Vertiv, Schneider Electric, Eaton, Legrand, Delta, Datacenter Bill Of Materials By Component, Transformers, Switchgear, Redundancy, UPS, OCP Busbar, Generators, Substation…
The Road Ahead For Datacenter Compute Engines: The CPUsJan 30, 2025
It is often said that companies – particularly large companies with enormous IT budgets – do not buy products, they buy roadmaps. No one wants to go to
Can We Build a Five Gigawatt Data Center?—AsteriskJan 29, 2025
By 2030, leading AI labs will need data centers so massive they will require the power equivalent of some of America’s largest cities. Will they be able to find it?
What Do You Lose When You Abandon the Cloud?Dec 18, 2024
Cloud repatriation might seem like a solution for high infrastructure costs, but it can prove short-sighted as an organization scales.
Hot Aisle Containment - 42UJun 12, 2024
Exhausting hot air away from your servers with Hot Aisle Containment solutions eliminates bypass airflow issues and reduces data center energy consumption and lowers your related power costs.
How to Build an AI Data CenterJun 12, 2024
This piece is the first in a new series from the Institute for Progress (IFP), called Compute in America: Building the Next Generation of AI Infrastructure at Home. In this series, we examine the challenges of accelerating the American AI data center buildout. Future pieces will be published
How to Make Off Grid Data Centers AffordableApr 23, 2024
Study: Only 13% of provisioned CPUs and 20% of memory utilized in cloud comMar 1, 2024
Cast AI analysis finds drastic over provisioning
81 Data Center Stats You Should Know In 2023Jan 17, 2024
Data center stats you should know for 2023. A comprehensive list of colocation and data center statistics from Brightlio.
The IBM mainframe: How it runs and why it survivesJan 13, 2024
In this deep-dive explainer, we look at a big-business mainstay.
How thermal management is changing in the age of the kilowatt chipDec 28, 2023
Air cooling holdouts take notice, the fun stuff is all liquid
Why AI Inference Will Remain Largely On The CPUApr 5, 2023
Sponsored Feature: Training an AI model takes an enormous amount of compute capacity coupled with high bandwidth memory. Because the model training can be
RISC-V In The Datacenter Is No Risky PropositionApr 5, 2023
It was only a matter of time, perhaps, but the skyrocketing costs of designing chips is colliding with the ever-increasing need for performance,
Setting The Stage For 1.6T Ethernet, And Driving 800G NowMar 7, 2023
Marvell has had a large and profitable I/O and networking silicon business for a long time, but with the acquisitions of Inphi in October 2020 and of
Five key reasons to switch to GaN - DCDFeb 25, 2023
It may be the only way to keep up with environmental power regulations
Google increases server life to six years, will save billions of dollarsFeb 3, 2023
While Meta ups to five years
Downtime is not an option – meet the stewards of the cloud | Aeon EssaysJul 28, 2022
Hot, strenuous and unsung. There is nothing soft and fluffy about the caretaking work that enables our digital lives
1704Dec 2, 2021
R2: What it Means to be 1 Less Than S3 - by Doug (mule) - Fabricated KnowleNov 29, 2021
In the battle of bandwidth and compute, Cloudflare has a strong hand. A dive into networking infrastructure.
Intel Networking: Not Just A Bag Of PartsOct 16, 2020
What is the hardest job at Intel, excepting whoever is in charge of the development of chip etching processes and the foundries that implement it? We
Data Center Pricing – Know the Four Basic Elements And What To ExpectMay 8, 2020
More enterprises are migrating their corporate data center(s) to external co-location facilities. One of the many challenges they face is navigating disparate and confusing pricing models. Some providers only charge for power and network while others charge for power, space and network. Some charge different rates for
(9) How many servers does a typical data center house? - QuoraNov 10, 2016
Answer (1 of 7): Lots. Definitions of the term "data centre" tend to vary. Some would label a small machine room with 2 or 3 racks a data centre, but that is not really a large facility by any stretch of the imagination. Most such installations are never going to hit the usual problems which dat...
Datacenter Anatomy Part 1: Electrical SystemsOct 24, 2014
Meta Datacenter Scrapped, Vertiv, Schneider Electric, Eaton, Datacenter Bill Of Materials By Component, Transformers, Switchgear, Redundancy, UPS, ATS, OCP Busbar, Generator Sets, Substation
datasets
Who are the Top 100 Landowners in the US? | Land Report 100Feb 9, 2026
Land Report 100
Explore the 2025 Top 100 U.S. Landowners. View Top 100
Presented by:
Land Report 100
Explore the 2025 Top 100
U.S. Landowners. View Top 100
Presented by:
Land Report 100
Who is America's
Largest Landowner?
This question is the quest
How to Design Production-Grade Mock Data Pipelines Using Polyfactory with Dataclasses, Pydantic, Attrs, and Nested Models - MarkTechPostFeb 8, 2026
How to Design Production-Grade Mock Data Pipelines Using Polyfactory with Dataclasses, Pydantic, Attrs, and Nested Models
Stream 4,000+ Public Domain Movies on WikiFlix: Silent Classics, Academy Award-Winners, Hitchcock Films & MoreJan 13, 2026
Humanity was already enjoying motion pictures a century ago. But the ability to do so at home still lay a few decades in the future, and the ability to pull up a movie on demand through a streaming service much further still.
With Spotify’s Library Plundered, the Door Is Open for Music Preservation, but Also for AI CompaniesDec 22, 2025
Spotify's library was scraped in the name of music preservation, but will this make illegally training AI even easier?
Backing up SpotifyDec 21, 2025
We backed up Spotify (metadata and music files). It’s distributed in bulk torrents (~300TB). It’s the world’s first “preservation archive” for music which is fully open (meaning it can easily be mirrored by anyone with enough disk space), with 86 million music files, representing around 99.6% of listens.
Getting Started with OpenBB: The Ultimate Python Toolkit for Financial and Economic DataDec 20, 2025
Streamline your financial data workflow with OpenBB. Learn setup, data extraction, and automation using Python—perfect for analysts and economists.
https://www.datacentermap.com/Dec 15, 2025
GlobalBuildingAtlas LoD1Dec 12, 2025
College Sports Finances DatabaseNov 25, 2025
Sportico is maintaining an interactive, real-time database that tracks the official balance sheets of public FBS university athletic departments.
User:Birdman86 - Wikimedia CommonsOct 22, 2025
Advanced Datasets for AI & ML ProjectsAug 31, 2025
In this article, I'll take you through a list of 20 advanced datasets you should try to build your next AI & ML projects.
Bridging the Gap: New Datasets Push Recommender Research Toward Real-World Scale - KDnuggetsJul 13, 2025
Publicly available datasets in recommender research currently shaping the field.
International Postal & Zip Code DatabaseMay 5, 2025
GeoPostcodes provides the world’s most comprehensive postal/zip code database. Complete, accurate, always up-to-date and enterprise-ready.
Statology Sprint: Advanced Synthetic Data Generation with FakerApr 18, 2025
This Statology Sprint brings together our most valuable content on Faker, Python's powerful synthetic data generation library, to help you create realistic, privacy-compliant test data for your projects.
OpenTimesMar 18, 2025
Spectacular new open geospatial project by [Dan Snow](https://sno.ws/): > OpenTimes is a database of pre-computed, point-to-point travel times between United States Census geographies. It lets you download bulk travel time …
Visualizing all the books in the worldFeb 26, 2025
To show a catalog of almost 100 million books in one view, phiresky mapped them based on International Standard Book Numbers, or ISBNs, with an interactive visualization.
US Counties Database | Simplemaps.comDec 29, 2024
Free and commercial U.S. counties databases. Includes latitude, longitude, population, largest city, zip codes, timezone, income and more. CSV, SQL and Excel format.
These stunning images trace ships’ routes as they moveDec 25, 2024
Publicly available data helps monitor ship traffic to avoid disruption of undersea internet cables, identify whale strikes, and study the footprint of underwater noise.
Harvard and Google to release 1 million public-domain books as AI training dataset | TechCrunchDec 12, 2024
AI training data has a big price tag, one best-suited for deep-pocketed tech firms. This is why Harvard University plans to release a dataset that
131M American BuildingsNov 6, 2024
Benchmarks & Tips for Big Data, Hadoop, AWS, Google Cloud, PostgreSQL, Spark, Python & More...
Free: Download Over 33000 Sounds from the BBC Sound Effects ArchiveOct 19, 2024
There may be a few young people in Britain today who recognize the name Ludwig Koch, but in the nineteen-forties, he constituted something of a cultural phenomenon unto himself.
List of U.S. stadiums by capacityAug 2, 2024
The following is a list of stadiums in the United States. They are ranked by capacity, which is the maximum number of spectators the stadium can normally accommodate. All U.S. stadiums with a current capacity of 10,000 or more are included in the list. The majority of these stadiums are used for American football, either in college football or the NFL. Most of the others are Major League Baseball ballparks or Major League Soccer stadiums.Rows shaded in yellow indicates stadium is home to an NFL, MLB, MLS, or NWSL franchise.
A Beginner’s Guide to Identifying Explosive Ordnance in Social Media ImagerAug 1, 2024
Learn to identify some of the more common types of unexploded ordnance (UXO) in online images using open-source tools and resources.
The pile dataset has become Big Tech’s secret spiceJul 31, 2024
The pile dataset has become a hot topic in AI circles, sparking debates about how data is used and the
Comprehensive Guide to Datasets and Dataloaders in PyTorchJun 22, 2024
The full guide to creating custom datasets and dataloaders for different models in PyTorch
DMA® Regions | NielsenJun 22, 2024
DMA (Designated Market Area) regions are the geographic areas and zip codes in the U.S. in which local television viewing is measured by Nielsen.
Carabiner CollectionJun 20, 2024
Plastic Properties TableJun 12, 2024
Use our plastics properties table to sort and compare plastic materials. Review typical, physical, thermal, optical, electrical properties. Ask an Expert or Get a Quote.
The solar industrial revolution is the biggest investment opportunity in hiJun 12, 2024
Solar is in the process of shearing off the base of the entire global industrial stack – energy – and the tech sector still lacks a unified thesis for how to best enable, accelerate, an…
Download Issues of “Weird Tales” (1923–1954): The Pioneering Pulp Horror MaJun 12, 2024
We live in an era of genre. Browse through TV shows of the last decade to see what I mean: Horror, sci-fi, fantasy, superheroes, futuristic dystopias…. Take a casual glance at the burgeoning global film franchises or merchandising empires.
What is Dataset Distillation Learning? A Comprehensive OverviewJun 11, 2024
Dataset distillation is an innovative approach that addresses the challenges posed by the ever-growing size of datasets in machine learning. This technique focuses on creating a compact, synthetic dataset that encapsulates the essential information of a larger dataset, enabling efficient and effective model training. Despite its promise, the intricacies of how distilled data retains its utility and information content have yet to be fully understood. Let’s delve into the fundamental aspects of dataset distillation, exploring its mechanisms, advantages, and limitations. Dataset distillation aims to overcome the limitations of large datasets by generating a smaller, information-dense dataset. Traditional data compression methods
18 Data Profiling Tools Every Developer Must KnowJun 5, 2024
Analytics, management, and business intelligence (BI) procedures, such as data cleansing, transformation, and decision-making, rely on data profiling. Content and quality reviews are becoming more important as data sets grow in size and variety of sources. In addition, organizations that rely on data must prioritize data quality review. Analysts and developers can enhance business operations by analyzing the dataset and drawing significant insights from it. Data profiling is a crucial tool. For evaluating data quality. It entails analyzing, cleansing, transforming, and modeling data to find valuable information, improve data quality, and assist in better decision-making, What is Data Profiling? Examining
COCONut: A High-Quality, Large-Scale Dataset for Next-Gen Segmentation ModeApr 23, 2024
Computer vision has advanced significantly in recent decades, thanks in large part to comprehensive benchmark datasets like COCO. However, nearly a decade after its introduction, COCO's suitability as a benchmark for modern AI models is being questioned. Its annotations may contain biases and nuances reflecting the early stages of computer vision research. With model performance plateauing on COCO, there are concerns about overfitting to the dataset's specific characteristics, potentially limiting real-world applicability. To modernize COCO segmentation, researchers have proposed COCONut - a novel, large-scale universal segmentation dataset in this paper. Unlike previous attempts at creating large datasets that often compromised
Home - OpenCorporatesApr 13, 2024
Spotify API: How To Create a Data Set of SongsMar 19, 2024
A Fun Tutorial using Python, JSON, and Spotify API! You might find it more comfortable...
City-Data.com - Stats about all US cities - real estate, relocation info, cFeb 17, 2024
Stats about all US cities - real estate, relocation info, crime, house prices, schools, races, income, photos, sex offenders, maps, education, weather, home value estimator, recent sales, etc.
How to detect poisoned data in machine learning datasetsFeb 15, 2024
A proactive, coordinated effort can reduce the chances that manipulations will impact model performance and protect algorithmic integrity.
Beautiful Free Images & Pictures | UnsplashFeb 10, 2024
Beautiful, free images and photos that you can download and use for any project. Better than any royalty free or stock photos.
Welcome to Open Library | Open LibraryFeb 10, 2024
Open Library is an open, editable library catalog, building towards a web page for every book ever published. Read, borrow, and discover more than 3M books for free.
Why is the Pile a good benchmark?Feb 4, 2024
The Pile is a 825 GiB diverse, open source language modelling data set that consists of 22 smaller, high-quality datasets combined together.
‘Let’s Go Shopping (LGS)’ Dataset: A Large-Scale Public Dataset with 15M ImJan 17, 2024
Developing large-scale datasets has been critical in computer vision and natural language processing. These datasets, rich in visual and textual information, are fundamental to developing algorithms capable of understanding and interpreting images. They serve as the backbone for enhancing machine learning models, particularly those tasked with deciphering the complex interplay between visual elements in images and their corresponding textual descriptions. A significant challenge in this field is the need for large-scale, accurately annotated datasets. These are essential for training models but are often not publicly accessible, limiting the scope of research and development. The ImageNet and OpenImages datasets, containing human-annotated
Analysis of 1,800 AI datasets: ~70% didn't state what license should be useOct 28, 2023
Nitasha Tiku / Washington Post: Analysis of 1,800 AI datasets: ~70% didn't state what license should be used or had been mislabeled with more permissive guidelines than their creators intended
Meet SwimXYZ: A Synthetic Dataset of Swimming Motions and Videos ContainingOct 20, 2023
Human motion capture has emerged as a key tool in various industries, including sports, medical, and character animation for the entertainment sector. Motion capture is utilized in sports for multiple purposes, including injury prevention, injury analysis, video game industry animations, and even generating informative visualization for TV broadcasters. Traditional motion capture systems provide solid results in the majority of circumstances. Still, they are expensive and time-consuming to set up, calibrate, and post-process, making them difficult to utilize on a broad scale. These concerns are made worse for aquatic activities like swimming, which bring up unique problems such as marker reflections
Download 222 Belle Époque Art Posters: An Online Archive of Masterpieces frOct 20, 2023
Europe at the end of the nineteenth century and beginning of the twentieth: what a time and place to be alive.
Library of Short StoriesSep 25, 2023
Read For Free, Anywhere, Anytime. An online library of over 1000 classic short stories. H. G. Wells, Edgar Allan Poe, H. P. Lovecraft, Anton Chekhov, Beatrix Potter.
Dirty Secrets of BookCorpus, a Key Dataset in Machine LearningSep 21, 2023
BookCorpus has helped train at least thirty influential language models (including Google’s BERT, OpenAI’s GPT, and Amazon’s Bort), according to HuggingFace. This is the research question that…
MIT Researchers Created a New Annotated Synthetic Dataset of Images that DeSep 17, 2023
Large-scale pre-trained Vision and language models have demonstrated remarkable performance in numerous applications, allowing for the replacement of a fixed set of supported classes with zero-shot open vocabulary reasoning over (nearly arbitrary) natural language queries. However, recent research has revealed a fundamental flaw in these models. For instance, their inability to comprehend Visual Language Concepts (VLC) that extend 'beyond nouns,' such as the meaning of non-object words (e.g., attributes, actions, relations, states, etc.), or their difficulty with compositional reasoning, such as comprehending the significance of the word order in a sentence. Vision and language models, powerful machine-learning algorithms that learn
the-markup/xandr-audience-segmentsJul 30, 2023
Inside the secret list of websites that make AI like ChatGPT sound smartApr 19, 2023
An analysis of a chatbot data set by The Washington Post reveals the proprietary, personal, and often offensive websites that go into an AI’s training data.
How to Anonymise Places in PythonDec 18, 2022
A ready-to-run code which identifies and anonymises places, based on the GeoNames database
11 Less Used but Important Plots for Data ScienceNov 23, 2022
Some Unique Data Visualization Techniques for Getting High-Level Insight into the Data
The Data Cards Playbook: A Toolkit for Transparency in Dataset DocumentatioNov 21, 2022
Posted by Mahima Pushkarna, Senior Interaction Designer, and Andrew Zaldivar, Senior Developer Relations Engineer, Google Research As machine learn...
NCAA StatisticsNov 20, 2022
Huge new dataset pushes limits of neuroscienceOct 4, 2022
The Allen Institute’s release includes recordings from a whopping 300,000 mouse neurons. Now the challenge is figuring out what to do with all that data.
National Rail Network MapSep 14, 2022
Home page | College Athletics DatabaseSep 10, 2022
10 Data Acquisition Strategies for StartupsJul 11, 2022
The “unreasonable effectiveness” of data for machine-learning applications has been widely debated over the years (see here, here and…
The ArtBench Dataset: Benchmarking Generative Models with ArtworksJul 6, 2022
We introduce ArtBench-10, the first class-balanced, high-quality, cleanly annotated, and standardized dataset for benchmarking artwork generation. It comprises 60,000 images of artwork from 10...
Mapping Urban Trees Across North America with the Auto Arborist DatasetJul 5, 2022
Posted by Sara Beery, Student Researcher, and Jonathan Huang, Research Scientist, Google Research, Perception Team Over four billion people live in...
AllMusic: The Story of the Big Data JukeboxJun 25, 2022
When AllMusic launched 25 years ago, it wasn't an obvious big data play. But it became one. Hidden in its millions of entries is music's collective history.
The market for synthetic data is bigger than you thinkJun 1, 2022
To understand what's happening, but also what's coming if synthetic data does get more broadly adopted, we talked to various CEOs and VCs over the last few months.
93 Datasets That Load With A Single Line of CodeMay 13, 2022
How you can pull one of a few dozen example political, sporting, education, and other frames on-the-fly.
Zip Code Database Lookup | Everything By Zip CodeMay 3, 2022
Our zip code database is a unified view of public datasets like the Census, American Community Survey, Bureau of Labor Statistics and the CDC, spanning 800+ data points, also offering a free zip code database.
IndusFeb 11, 2022
Curating a Dataset from Raw Images and VideosJan 16, 2022
Best-practices to follow when building datasets from large pools of image and video data and tools that make it straightforward.
MedMNIST v2 Dataset | Papers With CodeOct 29, 2021
MedMNIST v2 is a large-scale MNIST-like collection of standardized biomedical images, including 12 datasets for 2D and 6 datasets for 3D. All images are pre-processed into 28 x 28 (2D) or 28 x 28 x 28 (3D) with the corresponding classification labels, so that no background knowledge is required for users. Covering primary data modalities in biomedical images, MedMNIST v2 is designed to perform classification on lightweight 2D and 3D images with various data scales (from 100 to 100,000) and diverse tasks (binary/multi-class, ordinal regression and multi-label). The resulting dataset, consisting of 708,069 2D images and 10,214 3D images in total, could support numerous research / educational purposes in biomedical image analysis, computer vision and machine learning. Description and image from: MedMNIST v2: A Large-Scale Lightweight Benchmark for 2D and 3D Biomedical Image Classification Each subset keeps the same license as that of the source dataset. Please also cite the corresponding paper of source data if you use any subset of MedMNIST.
LightOn Released FC-AMF-OCR Dataset: A 9.3 Million Images Dataset of Financial Documents with Full OSep 24, 2021
The release of the FC-AMF-OCR Dataset by LightOn marks a significant milestone in optical character recognition (OCR) and machine learning. This dataset is a technical achievement and a cornerstone for future research in artificial intelligence (AI) and computer vision. Introducing such a dataset opens up new possibilities for researchers and developers, allowing them to improve OCR models, which are essential in converting images of text into machine-readable text formats. Background of LightOn and FC-AMF-OCR Dataset LightOn, a company recognized for its pioneering contributions to AI and machine learning, has continuously pushed the boundaries of technology. The FC-AMF-OCR Dataset is one
DatasetGANMay 24, 2021
Awesome list of datasets in 100 categoriesMay 20, 2021
With an estimated 44 zettabytes of data in existence in our digital world today and approximately 2.5 quintillion bytes of new data generated daily, there is a lot of data out there you could tap into for your data science projects. It's pretty hard to curate through such a massive…
Web Scraping to Create a Dataset using PythonMay 18, 2021
In this article, I'm going to walk you through a tutorial on web scraping to create a dataset using Python and BeautifulSoup.
Datasets should behave like git repositories | by Simon Lousky | Towards DaMay 5, 2021
Create, maintain, and contribute to a long-living dataset that will update itself automatically across projects.
www-eio.upc.edu/~pau/cms/rdata/datasets.htmlFeb 23, 2021
UMLS Metathesaurus BrowserJan 14, 2021
This is an interface for searching and browsing the UMLS Metathesaurus data. Our goal here is to present the UMLS Metathesaurus data in a useful way.
The Child Affective Facial Expression (CAFE) set: validity and reliabilityDec 18, 2020
Emotional development is one of the largest and most productive areas of psychological research. For decades, researchers have been fascinated by how humans respond to, detect, and interpret emotional facial expressions. Much of the research in this area ...
Explore Census DataNov 30, 2020
Why Data Standards MatterNov 3, 2020
The power of join keys and how data standards can make data more valuable and accelerate collaboration and innovation. This is the second installment of the DaaS Bible series.
The history of autonomous vehicle datasets and 3 open-source Python apps foOct 16, 2020
Special thanks to Plotly investor, NVIDIA, for their help in reviewing these open-source Dash applications for autonomous vehicle R&D, and Lyft for initial data visualization development in Plotly. Author: Xing Han Lu, @xhlulu (originally posted on Medium) ???? To learn more about how to use Dash for Autonomous Vehicle and AI Applications register for our live webinar with […]
Download GNIS Data | U.S. Geological SurveyAug 10, 2020
Learn about and download U.S. Board on Geographic Names data from the Geographic Names Information System (GNIS)
Automated Data Import with PythonJun 1, 2020
A different approach to import data files automatically in python.
Time Series Analysis: Creating Synthetic DatasetsMay 17, 2020
How to create time series datasets with different patterns
Millions of tiny databasesMar 9, 2020
The Big Bad NLP Database: Access Nearly 300 DatasetsMar 9, 2020
Check out this database of nearly 300 freely-accessible NLP datasets, curated from around the internet.
SlashdotFeb 26, 2020
A Directory of High Quality, Real-Time Event SourcesFeb 19, 2020
Connect APIs, remarkably fast. Free for developers. - PipedreamHQ/pipedream
5 Data Cleansing Tools - DataScienceCentral.comFeb 19, 2020
You need to analyze data to make more informed decisions. There are many tools to help you analyze the data visually or statistically, but they only work if the data is already clean and consistent. Here is the list of 5 data cleansing Tools. Drake Drake is a simple-to-use, extensible, text-based data workflow tool that… Read More »5 Data Cleansing Tools
Rahul Agarwal on LinkedIn: #datavisualization #awesomevisualization #seaborn #pythonFeb 19, 2020
"Enter into picture Swarmplots, just like their name." https://lttr.ai/MJtZ #datavisualization #awesomevisualization #seaborn #python
The 5 most useful Techniques to Handle Imbalanced datasetsFeb 19, 2020
This post is about explaining the various techniques you can use to handle imbalanced datasets
Data USAFeb 19, 2020
The most comprehensive visualization of U.S. public data. Data USA provides an open, easy-to-use platform that turns data into knowledge.
14 Paris Museums Put 300,000 Works of Art Online: Download Classics by MoneJan 10, 2020
First trips to Paris all run the same risk: that of the museums consuming all of one's time in the city. What those new to Paris need is a museum-going strategy, not that one size will fit all.
vumaasha/Atlas: Atlas: A Dataset and Benchmark for E-commerce Clothing ProdDec 23, 2019
Atlas: A Dataset and Benchmark for E-commerce Clothing Product Categorization - vumaasha/Atlas
This object-recognition dataset stumped the world’s best computer vision moDec 11, 2019
When computer vision detectors are turned loose in the real world, their performance noticeably drops. In an effort to close this performance gap, a team of MIT and IBM researchers set out to create a very different kind of object-recognition dataset called ObjectNet.
Welcome! | Million Song DatasetOct 30, 2019
cfbstats.com - 2019 National Team LeadersOct 25, 2019
nfl-football-ops/Big-Data-Bowl: Homepage for the National Football League'sMar 16, 2019
Homepage for the National Football League's Big Data Bowl - nfl-football-ops/Big-Data-Bowl
Baidu Apollo Releases Massive Self-driving Dataset; Teams Up With Berkeley DeepDriveMar 18, 2018
Baidu this Thursday announced the release of ApolloScape, billed as the world’s largest open-source dataset for autonomous driving…
Game on PaperSep 24, 2009
de-minimus
Ecommerce after De Minimis Tariff ExemptionAug 31, 2025
What began as a convenience rule in the 1930s grew into a key component of global ecommerce.
Need a de minimis strategy? Here are 4 questions every shipper should ask.Dec 12, 2024
Shipping using Section 321 is not a good idea for every e-commerce company, logistics experts say.
Locking A LoopholeSep 24, 2017
The Biden administration’s push to close an obscure loophole on imports highlights just how disruptive the Temu model really is.
debt
What Is the Luhn Algorithm? The Math Behind Secure Credit Card NumbersAug 12, 2025
Find out how this simple algorithm from the 1960s keeps your wallet safe
Greensill Capital: The Collapse of a Company Built on DebtMar 28, 2021
Greensill Capital promised a win-win for buyers and sellers, until it all fell apart, igniting concerns about opaque accounting practices.
Payday lenders are using illegal apps on Google Play to harass and publicly shame borrowers in IndiaFeb 3, 2021
Since November 2020, at least 11 Indians have died by suicide after being targeted by illegal payday lenders.
debugging
Ruby's Top Exception Classes - Exceptional CreaturesFeb 28, 2026
Exceptional Creatures is Honeybadger.io's documentation of Ruby's exception system, with a twist. Collect them all!
Advanced Python Error Handling in PythonApr 29, 2025
In this article, we’ll look at advanced error-handling techniques that go beyond the standard try-except mechanism with practical examples and tips to help you improve the robustness of your Python applications.
New zine: The Pocket Guide to DebuggingDec 22, 2022
Basic to Advanced Logging with Python in 10 MinutesOct 30, 2022
Logging crash course with common logging issues addressed
Introducing IceCream: Never Use Print() To Debug Your Python Code AgainOct 19, 2022
Why I stopped using print() statements for debugging and why you should too
Martin Heinz - Personal Website & BlogJun 3, 2020
Even if you write clear and readable code, even if you cover your code with tests, even if you are very experienced developer, weird bugs will inevitab...
Eliminate an entire category of bugs with a few simple toolsOct 28, 2018
How you can use a few simple static code analysis tools to avoid common programming bugs.
How to stop using console.log() and start using your browser’s debuggerOct 25, 2018
Debug More Efficiently
deceit-deception
The Greatest Double Agent Ever: How a Spanish Chicken Farmer Became the Most Important Double Agent in WWIIMar 2, 2026
Juan Pujol García was one of the rare individuals whose participation in World War II made him a Member of the Order of the British Empire and earned him the Iron Cross. He gained that unlikely distinction in perhaps the riskiest of all roles in espionage, that of a double agent.
Winning with misinformation: New research identifies link between endorsing easily disproven claims and prioritizing symbolic strengthOct 15, 2025
Conversations around misinformation that assume everyone cares about literal truth may be missing the point.
Why Smart People Fall for False Information and What to do About ItAug 5, 2025
UCSF’s Joseph Pierre, MD, unveils why even bright minds embrace false information. His new book, "False," dissects cognitive biases and our digital world’s role, offering a powerful three-step approach to navigate the post-truth era and rediscover common ground.
He Claims He’s the ‘Sports Betting King.’ What Are the Odds?Jul 19, 2025
Mazi VS has become a major influencer by flaunting his expensive lifestyle and his big-winning wagers. Other gamblers say he can’t be what he seems.
The World's Hardest Bluffing GameJun 17, 2025
Why are some Iraqis so good at figuring out when a person is lying?
This Is How You Can Spot a Fake SmileJun 3, 2025
Simply put, the Duchenne smile is genuine. But fake smiles are all around, and this is how you can tell the difference.
Living a Lie: We Deceive Ourselves to Better Deceive OthersApr 23, 2025
New research provides the first evidence for a theory first put forward in the 1970s
September 1998: Buzz Bissinger on Stephen Glass's web of liesMar 8, 2025
At 25, Stephen Glass was the most sought-after young reporter in the nation's capital, producing knockout articles for magazines ranging from iThe New Republic/i to iRolling Stone./i Trouble was, he made things up—sources, quotes, whole stories—in a breathtaking web of deception that emerged as the most sustained fraud in modern journalism.
How Snake Oil Became a Symbol of Fraud and DeceptionOct 25, 2024
The terms “snake oil” and “snake-oil salesperson” are part of the vernacular thanks to Clark Stanley, a quack doctor who marketed a product for joint pain in the late 19th century
Notes From the Inner Lives of Con ArtistsJul 22, 2023
Venture inside the minds of some of the greatest scammers.
Dark Patterns in UX Design — Which Ones Are the Most Deceptive?Mar 28, 2023
Learn about dark patterns and ways of spotting them, no matter the type of the pattern apply. We will shed the light for you.
11 of the Greatest Scams of All Time, Curated by ‘Scam Goddess’ Laci MosleyMar 16, 2023
The comedian and podcast host—and bonafide scam expert—shares her favorite capers, along with what makes them so irresistible.
Why we usually can't tell when a review is fakeMar 13, 2023
Is that review real or fake? Most of us can't tell
It turns out you can bullshit a bullshitter after all | BPSJan 17, 2022
That's according to a new paper in the British Journal of Social Psychology.
How can you tell if someone is lying?Mar 30, 2021
The conventional wisdom about how to spot a liar is all wrong.
decision-trees
Machine Learning Using Decision Trees in RubySep 17, 2023
In the era of hyper-sophisticated machine learning models like ChatGPT, it is surprising how effective the classic decision tree model remains, especially when used in conjunction with other techniques, such as bagging, boosting and random forests. In this blog post we demonstrate how to build an effective decision tree model, and train this model on some sample data.
Cycle Detection for Recursive Search in Hierarchical Trees - Database TipApr 5, 2023
Recursive queries are a straightforward solution to querying hierarchical trees. However, one loop in the relationship references results in a failing or never ending query when cycle detection is not used.
decisions
The Volunteer’s Dilemma - by Steven Pinker - Behavioral ScientistSep 28, 2025
Learning about something in public, even if everyone already knows it, can change everything—especially when and how we decide to help.
Enhance Decision-Making With Control SystemsJul 17, 2025
Master the art of decision-making with insights from control engineering. Learn how mental models can guide you through uncertainty.
The Ability To Focus And Make The Best Move When There Are No Good MovesApr 22, 2025
"if there is one skill that stands out, it’s the ability to focus and make the best move when there are no good moves."
Why Facts Don’t Change Our MindsMar 10, 2025
New discoveries about the human mind show the limitations of reason.
For an anaesthesiologist, intuition stands between life and death | Aeon EssaysMar 3, 2025
For years, I practised medicine with cool certainty, comfortable with life-and-death decisions. Then, one day, I couldn’t
Binstack: Making a maximal multi-dimensional decisionJan 4, 2025
Binstack is a technique for selecting the "single most impactful" solution when there are multiple, incomparable dimensions to evaluate.
The Art of Decision-MakingApr 22, 2024
Your life choices aren’t just about what you want to do; they’re about who you want to be.
I’m a Former U.S. Treasury Secretary. Here’s How I Make Hard Decisions.May 15, 2023
The need for a sound decision-making approach in the face of uncertainty is greater now than ever before.
The Neuroscience Behind Bad DecisionsAug 22, 2022
Irrationality may be a consequence of the brain’s ravenous energy needs.
Is the Minimalist Restaurant Menu Over?Jul 30, 2022
More than ever, diners need actual descriptions of what they’re eating
Cost Per Reasonable Decision (CPRD)Jul 19, 2022
Note: With the arrival of my son, I’m slowing down on the blogging. Give me a couple months (or more sleepless nights), and I’ll be back…
The Paralyzing Effect of Choice - SuperMoneyJul 18, 2022
Have you ever stopped to think about just how many decisions you make each and every day? Some choices are very simple, such as choosing to get up in the
Want to make good business decisions? Learn causality | Stitch Fix Technology – MultithreadedJul 18, 2022
In some organizations, earnest efforts to be “data-driven” devolve into a culture of false certainty in which the influence of metrics is dictated not by the...
Learning to let go: Making better exit decisionsJul 18, 2022
Psychological biases can make it difficult to get out of an ailing business.
Making Good Decisions as a Product ManagerJul 18, 2022
While product managers may not build the actual product, they do produce something very tangible for a team: decisions.
Square Defangs Difficult Decisions with this System — Here’s HowJul 18, 2022
Gokul Rajaram shares a framework that he's used at Square and Caviar to make the most difficult decisions, all while assigning ownership, being inclusive and coordinating execution among all stakeholders.
The Art of Decision Making as a Product ManagerJul 18, 2022
Product managers have to make many decisions every day, including product prioritization decisions, product design decisions, bug triage decisions, and many more. And the process by which a product
6 decision-making techniques all Product Managers should knowJul 5, 2022
How to productively make collaborative decisions
How cultures around the world make decisionsJul 5, 2022
Is the American obsession with individual freedom really such a great idea? What other cultures know about how to make good choices.
16 Rules for Effective Decision-Making | The Leading Blog: A Leadership BlogJun 23, 2022
Leadership Now is a leading source for leadership development and analysis. We believe that anyone can make a difference by leading from where they are.
A Simple Way to Improve the Pro-Con List to Make Better DecisionsJun 23, 2022
Seymour Schulich offers a meaningful improvement to the simple pro-and-con list that many of us have used to make decisions.
Why We Use Less Information Than We Think to Make DecisionsJun 12, 2022
How much information do you need to make up your mind? Our research in various domains of decision making shows that we make decisions more quickly and based on less information than we think. This has important implications in an age in which information is plentiful.
Smart decisionsJun 7, 2022
Learning to make smart decisions helps you get better results. This guide is packed with time-tested real world tools you can use today.
The Neuroscience Behind Bad Decisions | Quanta MagazineJun 7, 2022
Irrationality may be a consequence of the brain’s ravenous energy needs.
Mathematicians suggest the "37% rule" for your life's biggest decisionsApr 29, 2022
The 37% rule states that when making any major decision in life, reject the first 37% in a list and choose the next best that comes along.
The Science of Familiarity: Increasing Conversions by Being UnoriginalApr 11, 2022
Familiarity has a major impact on our decision-making process. Understanding the psychology behind it will lead to better UX / design, copy and CTAs.
Decision-Making: Research Shows What Happens When We Wait for “Something Better”Feb 19, 2022
Terrible at making decisions? A 2020 study reveals just how much our expectations drop while taking the time to decide on something.
http://algorithmsbook.com/files/dm.pdfMay 24, 2021
How To Ask the Right Questions, From a Bomb Disposal OfficerApr 28, 2021
Use this framework to put decision-making theory into practice
Declinism: how rosy retrospection impacts decision-makingApr 21, 2021
“It was better before,” says your friend. “Ha, those were the days,” your reply with a sigh. Declinism is the belief that societies tend towards decline, often linked with rosy retrospection—our tendency to view the past more favourably and the future more negatively. It may seem harmless, but declinism can cloud your judgement and lead ... Read More
Research: How to Get Better at Killing Bad ProjectsApr 5, 2021
Most innovation managers know that few of their initiatives will succeed, so they keep multiple projects running at the same time and create processes for quickly separating winners from losers. One popular way to make decisions about what stays and what goes is the use of stage gates. Yet, even with stage gates, firms struggle to kill bad projects. The authors undertook a decade-long review of the product development portfolio at former handset maker Sony Ericsson. They found that that the conventional use of stage gates can actually be part of the problem, impeding project discontinuation in counterintuitive ways.
The OODA Loop: How Fighter Pilots Make Fast and Accurate DecisionsMar 15, 2021
The OODA Loop is a four-step process for making effective decisions in high-stakes situations. It involves collecting relevant information, recognizing potential biases, deciding, and acting, then repeating the process with new information. Read on to learn how to use the OODA Loop.
How To Reduce Decision Noise - Commonplace - The Commoncog BlogFeb 10, 2021
Five ways to do noise reduction, from the field of judgment and decision making.
Reduce Noise, Not Cognitive BiasesFeb 3, 2021
Results from the BIN paper, or why reducing noise in your decision making is far easier than fighting your cognitive biases.
Survival Metrics Are a Powerful Product Tool. Here’s How They Work.Jan 25, 2021
Product teams often know that a project needs to change direction, but they don’t have a way to make that change safely and quickly. Survival metrics empower them to do just that.
How to Stop Endless Discussions with RFCsJan 4, 2021
When we find ourselves in endless debates where everyone defends their idea, we don't know how to handle the situation. We eventually find a way out, but what we need is an excellent system.
Technical Decision-Making and Alignment in a Remote CultureDec 10, 2020
In a world of asynchronous communication, it’s more important than ever to create inclusive and remote-friendly collaboration, decision-making, alignment, a...
War Books: The Art of the DecisionNov 30, 2020
Editor’s note: Welcome to another installment of our weekly War Books series! The premise is simple and straightforward. We ask an expert on a particular subject to recommend five books […]
Decision Table PatternsNov 3, 2020
Decision tables are easy, simple, and powerful. You can teach them in five minutes and write one in half that time. You can look at a table and understand what it’s saying, see if it matches your problem, and check for design flaws. So it’s kinda weird that there’s basically nothing about them online. I wrote an introduction a while back, but I want something a little more formal. So this post will reintroduce the core ideas in a more formal way and then talk about some of the techniques you can apply to make better tables.
Reinforcement Learning, Part 3: The Markov Decision ProcessFeb 19, 2020
MDP in action: the next step toward solving real-life problems with RL and AI
Decisions, Decisions or Why Baskets of Options DominateNov 7, 2019
“Crazy. They believe that an option on a basket is better than a basket of options.” My interjection abruptly halted the executive…
On Humility and Making Better DecisionsOct 18, 2019
Dr. Daniel Kahneman features on the latest Farnam Street podcast and it’s a surprising episode. Kahneman wrote Thinking Fast and Slow. I admire Kahneman a great deal. Not for his Nobel or for his work, which are both impressive, but for his humility. Some of the key tenets of Kahneman’s work in his famous book were disproved. And he owned up to it, both in print and on the podcast. That’s the hallmark of someone with great integrity, and it’s a sign to trust someone more.
Why “Many-Model Thinkers” Make Better DecisionsAug 30, 2019
Organizations are awash in data — from geocoded transactional data to real-time website traffic to semantic quantifications of corporate annual reports. All these data and data sources only add value if put to use. And that typically means that the data is incorporated into a model. The most sophisticated organizations — from Alphabet to Berkshire Hathaway to the CIA — all use models. In fact, they do something even better: they use many models in combination. But creating an “ensemble” of models isn’t just about picking the ones that perform best on their own. You want to combine models that complement one another. Three rules can help you construct your own powerful ensemble of models: spread attention broadly, boost predictions, and seek conflict.
Principles for decision-making in a flat organizationAug 29, 2019
Practical thoughts from a back-end team leader
How to Manage Product Strategy and Prioritize Like a Pro? Guide for Product Managers | HackerNoonAug 29, 2019
What will you do in product management if you can not deal with strategic planning? How will you succeed if you are not able to prioritize correctly?
Good decisions don’t have to be slow onesAug 29, 2019
Executives often assume that speed comes at the cost of quality in good decision making. A survey challenges this belief and offers tips on getting the best of both worlds.
Three keys to faster, better decisionsAug 29, 2019
Frustrated decision makers take heart. Three practices can help companies make better decisions more quickly.
The Anatomy of a Great DecisionApr 23, 2019
Making better decisions is one of the best skills we can develop. Good decisions save time, money, and stress. Here, we break down what makes a good decision and what we can do to improve our decision-making processes.
A Structured Approach to Strategic Decisions | MIT Sloan Management ReviewMar 10, 2019
A rigorous process for navigating strategic decisions can mitigate errors and improve judgment.
Defensive Decision Making: What IS Best v. What LOOKS BestNov 20, 2018
Sometimes we make decisions based on how they will look to others rather than whether or not they will produce the best outcomes. This article looks at why we tend to do that, and what we can do instead.
Hemingway, a Lost Suitcase, and the Recipe for StupidityOct 22, 2018
No matter how good our intentions, sometimes we do incredibly stupid things, like lose a suitcase full of priceless writings. In this article, learn how to recognize the potential for stupidity before it happens.
Entrepreneurial sixth sense: how intuition drives stronger decision makingOct 11, 2018
Adam Werbach was the Sierra Club’s golden boy.
How to Decide With Speed and Conviction by @ttunguzNov 22, 2017
A startup’s competitive advantage is execution speed. That quickness stems from a CEO’s ability to decide and this ability separates the great from the good. According to a recently published Harvard Business Review article, one of the four key behaviors distinguishing exceptional CEOs is deciding with speed and conviction. [We] discovered that high-performing CEOs do not necessarily stand out for making great decisions all the time; rather, they stand out for being more decisive.
The Science Behind Smarter Decision Making: 7 Mental Models To KnowOct 19, 2017
Every one of us make dozens, if not hundreds of small to big decisions on a daily basis. Some don’t impact our lives at all, while some can change the outcome of our entire lives. Whether it’s trying to figure out which job you should take,
decorators
An In-Depth Tutorial to Python Decorators That You Can Actually UseMay 28, 2022
Going knee-deep into the internals of Python
Useful Python decorators for Data ScientistsMay 28, 2022
I show toy implementations of Python decorator patterns that may be useful for Data Scientists.
5 Advanced Tips on Python DecoratorsJan 26, 2022
Do you want to write concise, readable, and efficient code? Well, python decorators may help you on your journey.
Why decorators in Python are pure geniusJul 5, 2021
Analyze, test, and re-use your code with little more than an @ symbol
Python decorators, the right way: the 4 audiences of programming languagesJun 8, 2018
Python decorators are a useful but flawed language feature. Intended to make source code easier to write, and a little more readable, they neglect to address another use case: that of the programmer who will be calling the decorated code. If you’re a Python programmer, the following post will show you why decorators exist, and how to compensate for their limitations. And even if you’re not a Python a programmer, I hope to demonstrate the importance of keeping in mind all of the different audiences for the code you write.
deep-learning
Autonomous Driving: Assessment Of YOLO Algorithms (RMIT et al.)Feb 11, 2026
A new technical paper titled “Advances in You Only Look Once (YOLO) algorithms for lane and object detection in autonomous vehicles” was published by RMIT University, Kyungpook National University, Deakin University and the RCA Robotics Laboratory, Royal College of Art. Abstract “Ensuring the safety and efficiency of Autonomous Vehicles (AVs) necessitates highly accurate perception, especially... » read more
Geometric Deep Learning: Grids, Groups, Graphs, Geodesics, and GaugesSep 8, 2025
The last decade has witnessed an experimental revolution in data science and machine learning, epitomised by deep learning methods. Indeed, many high-dimensional learning tasks previously thought to be beyond reach -- such as computer vision, playing Go, or protein folding -- are in fact feasible with appropriate computational scale. Remarkably, the essence of deep learning is built from two simple algorithmic principles: first, the notion of representation or feature learning, whereby adapted, often hierarchical, features capture the appropriate notion of regularity for each task, and second, learning by local gradient-descent type methods, typically implemented as backpropagation.
While learning generic functions in high dimensions is a cursed estimation problem, most tasks of interest are not generic, and come with essential pre-defined regularities arising from the underlying low-dimensionality and structure of the physical world. This text is concerned with exposing these regularities through unified geometric principles that can be applied throughout a wide spectrum of applications.
Such a 'geometric unification' endeavour, in the spirit of Felix Klein's Erlangen Program, serves a dual purpose: on one hand, it provides a common mathematical framework to study the most successful neural network architectures, such as CNNs, RNNs, GNNs, and Transformers. On the other hand, it gives a constructive procedure to incorporate prior physical knowledge into neural architectures and provide principled way to build future architectures yet to be invented.
What Is AI Red Teaming? Top 18 AI Red Teaming Tools (2025)Aug 17, 2025
Discover top AI red teaming tools for robust AI security. Learn how adversarial testing protects machine learning models
A Gentle Introduction to Graph Neural NetworksApr 30, 2025
What components are needed for building learning algorithms that leverage the structure and properties of graphs?
BERTFeb 19, 2025
BERT is an open source machine learning framework for natural language processing (NLP) that helps computers understand ambiguous language by using context
Why it’s so hard to use AI to diagnose cancerJan 21, 2025
The latest effort, from the Mayo Clinic, holds some clues.
5 AI Image Generators You Can Use NowJan 18, 2025
AI art generation has entered an era of evolution over revolution
The 2025 AI Engineering Reading ListJan 14, 2025
We picked 50 paper/models/blogs across 10 fields in AI Eng: LLMs, Benchmarks, Prompting, RAG, Agents, CodeGen, Vision, Voice, Diffusion, Finetuning. If you're starting from scratch, start here.
Lessons from Optics, The Other Deep LearningNov 25, 2024
Musings on systems, information, learning, and optimization.
Choosing and Implementing Hugging Face ModelsNov 1, 2024
Pulling pre-trained models out of the box for your use case
Aman's AI Journal • Primers • Ilya Sutskever's Top 30Oct 21, 2024
Aman's AI Journal | Course notes and learning material for Artificial Intelligence and Deep Learning Stanford classes.
10 GitHub Repositories for Advanced Machine Learning ProjectsOct 16, 2024
Where can you find projects dealing with advanced ML topics? GitHub is a perfect source with its many repositories. I’ve selected ten to talk about in this article.
Top Books on Deep Learning and Neural NetworksMay 15, 2024
Deep learning is crucial in today's age as it powers advancements in artificial intelligence, enabling applications like image and speech recognition, language translation, and autonomous vehicles. Understanding deep learning equips individuals to harness its potential, driving innovation and solving complex problems across various industries. This article lists the top Deep Learning and Neural Networks books to help individuals gain proficiency in this vital field and contribute to its ongoing advancements and applications. Deep Learning (Adaptive Computation and Machine Learning series) This book covers a wide range of deep learning topics along with their mathematical and conceptual background. Additionally, it offers
Kolmogorov-Arnold Networks (KANs): A New Era of Interpretability and AccuraMay 4, 2024
Multi-layer perceptrons (MLPs), or fully-connected feedforward neural networks, are fundamental in deep learning, serving as default models for approximating nonlinear functions. Despite their importance affirmed by the universal approximation theorem, they possess drawbacks. In applications like transformers, MLPs often monopolize parameters and lack interpretability compared to attention layers. While exploring alternatives, such as the Kolmogorov-Arnold representation theorem, research has primarily focused on traditional depth-2 width-(2n+1) architectures, neglecting modern training techniques like backpropagation. Thus, while MLPs remain crucial, there's ongoing exploration for more effective nonlinear regressors in neural network design. MIT, Caltech, Northeastern researchers, and the NSF Institute for AI and
Deep Learning Architectures From CNN, RNN, GAN, and Transformers To EncoderApr 15, 2024
Deep learning architectures have revolutionized the field of artificial intelligence, offering innovative solutions for complex problems across various domains, including computer vision, natural language processing, speech recognition, and generative models. This article explores some of the most influential deep learning architectures: Convolutional Neural Networks (CNNs), Recurrent Neural Networks (RNNs), Generative Adversarial Networks (GANs), Transformers, and Encoder-Decoder architectures, highlighting their unique features, applications, and how they compare against each other. Convolutional Neural Networks (CNNs) CNNs are specialized deep neural networks for processing data with a grid-like topology, such as images. A CNN automatically detects the important features without any human supervision.
Mamba ExplainedMar 30, 2024
Is Attention all you need? Mamba, a novel AI model based on State Space Models (SSMs), emerges as a formidable alternative to the widely used Transformer models, addressing their inefficiency in processing long sequences.
[2304.05055] A Comprehensive Survey on Deep Graph Representation LearningMar 5, 2024
Graph representation learning aims to effectively encode high-dimensional sparse graph-structured data into low-dimensional dense vectors, which is a fundamental task that has been widely studied...
Conformal_Prediction/paper/Conformal_Prediction_final.pdf at main · MichelLMar 5, 2024
This projects contains different conformal methods and approaches. Includes code generated for a experimental evaluation of a multidimensional, low-sample size biomedical dataset of oncological sub...
The Math behind Adam Optimizer | by Cristian Leo | in Towards Data ScienceMar 5, 2024
Why is Adam the most popular optimizer in Deep Learning? Let's understand it by diving into...
Thinking about High-Quality Human Data | Lil'LogFeb 22, 2024
[Special thank you to Ian Kivlichan for many useful pointers (E.g. the 100+ year old Nature paper “Vox populi”) and nice feedback. 🙏 ] High-quality data is the fuel for modern data deep learning model training. Most of the task-specific labeled data comes from human annotation, such as classification task or RLHF labeling (which can be constructed as classification format) for LLM alignment training. Lots of ML techniques in the post can help with data quality, but fundamentally human data collection involves attention to details and careful execution.
Give AI curiosity, and it will watch TV foreverFeb 1, 2024
TV is just as interesting to AI as it is to humans.
Meet neograd: A Deep Learning Framework Created from Scratch Using Python aJan 17, 2024
Understanding how convolutional neural networks (CNNs) operate is essential in deep learning. However, implementing these networks, especially convolutions and gradient calculations, can be challenging. Many popular frameworks like TensorFlow and PyTorch exist, but their complex codebases make it difficult for newcomers to grasp the inner workings. Meet neograd, a newly released deep learning framework developed from scratch using Python and NumPy. This framework aims to simplify the understanding of core concepts in deep learning, such as automatic differentiation, by providing a more intuitive and readable codebase. It addresses the complexity barrier often associated with existing frameworks, making it easier for
Understanding and Coding Self-Attention, Multi-Head Attention, Cross-AttentJan 16, 2024
This article will teach you about self-attention mechanisms used in transformer architectures and large language models (LLMs) such as GPT-4 and Llama.
Understanding Deep LearningOct 20, 2023
Variational Autoencoder (VAE) with Discrete Distribution using Gumbel SoftmAug 10, 2023
Theory and PyTorch Implementation
Calculate Computational Efficiency of Deep Learning Models with FLOPs and MJul 24, 2023
In this article we will learn about its definition, differences and how to calculate FLOPs and MACs using Python packages.
ELI5: FlashAttentionJul 24, 2023
Step by step explanation of how one of the most important MLSys breakthroughs work — in gory detail.
Why You Need To Know About Autonomous AI AgentsJul 24, 2023
A beginner's guide to understanding autonomous AI agents and their importance.
The Case for Running AI on CPUs Isn’t Dead YetJun 2, 2023
GPUs may dominate, but CPUs could be perfect for smaller AI models
Photonic Chips Curb AI Training’s Energy AppetiteMay 22, 2023
Stanford team achieves first-ever optical backpropagation milestone
A Survey of Large Language ModelsApr 14, 2023
Language is essentially a complex, intricate system of human expressions governed by grammatical rules. It poses a significant challenge to develop capable AI algorithms for comprehending and...
New Ebook: A Beginner’s Guide to Large Language ModelsApr 14, 2023
Explore what LLMs are, how they work, and gain insights into real-world examples, use cases, and best practices.
The Sequence Chat: Salesforce Research's Junnan Li on Multimodal Generative AIApr 12, 2023
One of the creators of the famous BLIP-2 model shares his insights about the current state of multimodal generative AI.
📝 Guest Post: Caching LLM Queries for Improved Performance and Cost Savings*Apr 12, 2023
If you're looking for a way to improve the performance of your large language model (LLM) application while reducing costs, consider utilizing a semantic cache to store LLM responses.
How to use Midjourney to generate AI images | Digital TrendsApr 9, 2023
AI-generated images have never been more popular, and Midjourney is one of the best tools. Here's how to access the AI and what to know about using it.
Google’s TPU v4 Architecture: 3 Major FeaturesApr 8, 2023
A new technical paper titled “TPU v4: An Optically Reconfigurable Supercomputer for Machine Learning with Hardware Support for Embeddings” was published by researchers at Google. Abstract: “In response to innovations in machine learning (ML) models, production workloads changed radically and rapidly. TPU v4 is the fifth Google domain specific architecture (DSA) and its third supercomputer... » read more
Why AI Inference Will Remain Largely On The CPUApr 5, 2023
Sponsored Feature: Training an AI model takes an enormous amount of compute capacity coupled with high bandwidth memory. Because the model training can be
Hands-on Generative AI with GANs using Python: AutoencodersMar 31, 2023
Start with Autoencoders to better understand GANs
Cerebras open sources seven GPT-based LLMs, ranging from 111M to 13B parameMar 29, 2023
Mike Wheatley / SiliconANGLE: Cerebras open sources seven GPT-based LLMs, ranging from 111M to 13B parameters and trained using its Andromeda supercomputer for AI, on GitHub and Hugging Face
Must read: the 100 most cited AI papers in 2022Mar 20, 2023
Who Is publishing the most Impactful AI research right now? With the breakneck pace of innovation in AI, it is crucial to pick up some signal as soon as possible. No one has the time to read everything, but these 100 papers are sure to bend the road as to where our AI technology is going. The real test of impact of R&D teams is of course how the technology appears in products, and OpenAI shook the world by releasing ChatGPT at the end of November 2022, following fast on their March 2022 paper “T
Deep Learning (DL) Applications In Photomask To Wafer Semiconductor ManufacMar 15, 2023
A list of artificial intelligence used in semiconductor manufacturing tools from February 2023.
?Top ML Papers of the Week - by elvis - NLP NewsletterMar 14, 2023
The top ML Papers of the Week (Mar 6 - Mar 12)
Asynchronously Parallel Optimization Method For Sizing Analog Transistors UMar 5, 2023
A new technical paper titled “APOSTLE: Asynchronously Parallel Optimization for Sizing Analog Transistors Using DNN Learning” was published by researchers at UT Austin and Analog Devices. Abstract “Analog circuit sizing is a high-cost process in terms of the manual effort invested and the computation time spent. With rapidly developing technology and high market demand, bringing... » read more
Meta unveils a new large language model that can run on a single GPUFeb 25, 2023
LLaMA-13B reportedly outperforms ChatGPT-like tech despite being 10x smaller.
Google Research, 2022 & beyond: Algorithms for efficient deep learningFeb 9, 2023
Posted by Sanjiv Kumar, VP and Google Fellow, Google Research (This is Part 4 in our series of posts covering different topical areas of research a...
Hacker NewsFeb 7, 2023
Many new Transformer architecture improvements have been proposed since my last post on “The Transformer Family” about three years ago. Here I did a big refactoring and enrichment of that 2020 post — restructure the hierarchy of sections and improve many sections with more recent papers. Version 2.0 is a superset of the old version, about twice the length. Notations Symbol Meaning $d$ The model size / hidden state dimension / positional encoding size.
Paper Review: A Deep Dive into ImagenFeb 3, 2023
A critical analysis of Google’s impressive new text-to-image generation tool
AI Spits Out Exact Copies of Training Images, Real People, Logos, ResearcheFeb 3, 2023
The regurgitation of training data exposes image diffusion models to a number of privacy and copyright risks.
Text-to-4D dynamic scene generationJan 29, 2023
Find it here, via Ryan Watkins. Further improvement is required, but the pace of current breakthroughs is remarkable.
ChatGPT is not all you need. A State of the Art Review of large...Jan 24, 2023
During the last two years there has been a plethora of large generative models such as ChatGPT or Stable Diffusion that have been published. Concretely, these models are able to perform tasks such...
Hacker NewsJan 20, 2023
Here, I provide an in-depth analysis of GPUs for deep learning/machine learning and explain what is the best GPU for your use-case and budget.
Uncovering Anomalies with Variational Autoencoders (VAE): A Deep Dive intoJan 17, 2023
An example use case of using Variational Autoencoders (VAE) to detect anomalies in all types of data
Why WGANs beat GANs: A journey from KL divergence to Wasserstein lossJan 13, 2023
Wasserstein distance helps WGANs outperform vanilla GANs and VAEs. This post explains why so using some easy math.
Why TensorFlow for Python is dying a slow deathJan 13, 2023
Many developers who use Python for machine learning are now switching to PyTorch. Find out why and what the future could hold for TensorFlow.
Deep Learning Pioneer Geoffrey Hinton Publishes New Deep Learning AlgorithmJan 12, 2023
Geoffrey Hinton, professor at the University of Toronto and engineering fellow at Google Brain, recently published a paper on the Forward-Forward algorithm (FF), a technique for training neural networks that uses two forward passes of data through the network, instead of backpropagation, to update the model weights.
To Build Truly Intelligent Machines, Teach Them Cause and Effect | Quanta MJan 5, 2023
Judea Pearl, a pioneering figure in artificial intelligence, argues that AI has been stuck in a decades-long rut. His prescription for progress? Teach machines to understand the question why.
lucidrains/vit-pytorch: Implementation of Vision Transformer, a simple way to achieve SOTA in vision classification with only a single transformer encoder, in PytorchDec 18, 2022
Implementation of Vision Transformer, a simple way to achieve SOTA in vision classification with only a single transformer encoder, in Pytorch - lucidrains/vit-pytorch
ChatGPT and the Imagenet moment — Benedict EvansDec 16, 2022
The wave of enthusiasm around generative networks feels like another Imagenet moment - a step change in what ‘AI’ can do that could generalise far beyond the cool demos. What can it create, and where are the humans in the loop?
2212.03551.pdfDec 11, 2022
DeepMind Created An AI Tool That Can Help Generate Rough Film and Stage ScrDec 10, 2022
Alphabet's DeepMind has built an AI tool that can help generate rough film and stage scripts Engadget's Kris Holt reports: Dramatron is a so-called "co-writing" tool that can generate character descriptions, plot points, location descriptions and dialogue. The idea is that human writers will be abl...
A Quick Start on Your Journey to Federated LearningDec 10, 2022
Adapting federated learning to your own datasets
AI Homework – Stratechery by Ben ThompsonDec 7, 2022
The first obvious casualty of large language models is homework: the real training for everyone, though, and the best way to leverage AI, will be in verifying and editing information.
Beginner’s Guide to Diffusion ModelsDec 7, 2022
An intuitive understanding of how AI-generated art is made by Stable Diffusion, Midjourney, or DALL-E
YOLOv7: A deep dive into the current state-of-the-art for object detectionNov 28, 2022
Everything you need to know to use YOLOv7 in custom training scripts
6 Reinforcement Learning Algorithms ExplainedNov 28, 2022
Introduction to reinforcement learning terminologies, basics, and concepts (model-free, model-based, online, offline RL)
Cerebras Reveals Andromeda, a 13.5 Million Core AI SupercomputerNov 15, 2022
The world's largest chip scales to new heights.
Interview: Why Mastering Language Is So Difficult for AIOct 17, 2022
Scientist Gary Marcus argues that “deep learning” is not the only path to true artificial intelligence.
matsui528/nanopq: Pure python implementation of product quantization for nearest neighbor searchOct 14, 2022
Pure python implementation of product quantization for nearest neighbor search - matsui528/nanopq
IVFPQ HNSW for Billion-scale Similarity Search | by Peggy Chang | TowardsOct 14, 2022
The best indexing approach for billion-sized vector datasets
Similarity Search with IVFPQOct 14, 2022
Find out how the inverted file index (IVF) is implemented alongside product quantization (PQ) for a fast and efficient approximate nearest…
NSVQ: Improved Vector Quantization technique for Neural Networks TrainingOct 13, 2022
Efficient vector quantization for machine learning optimizations (eps. vector quantized variational autoencoders), better than straight…
If you thought text-to-image AI was unbelievable, wait until you see how itOct 8, 2022
If you thought text-to-image AI was unbelievable, wait until you see how it compresses images.
All you need to know about ‘Attention’ and ‘Transformers’ — In-depth UndersSep 20, 2022
Attention, Self-Attention, Multi-head Attention, Masked Multi-head Attention, Transformers, BERT, and GPT
All you need to know about ‘Attention’ and ‘Transformers’ — In-depth UndersSep 20, 2022
Attention, Self-Attention, Multi-head Attention, and Transformers
40,000 Recipes for MurderSep 10, 2022
Two scientists inadvertently open the Pandora’s Box of WMDs. What now?
Demystifying Object Detection and Instance Segmentation for Data Scientists - MLWhizSep 5, 2022
this post is explaining how permutation importance works and how we can code it using ELI5
Automated reasoning at Amazon: A conversationAug 9, 2022
To mark the occasion of the eighth Federated Logic Conference (FloC), Amazon’s Byron Cook, Daniel Kröning, and Marijn Heule discussed automated reasoning’s prospects.
Rethinking Thinking: How Do Attention Mechanisms Actually Work?Jul 30, 2022
The brain, the mathematics, and DL — research frontiers in 2022
fastai/fastbook: The fastai book, published as Jupyter NotebooksJul 24, 2022
The fastai book, published as Jupyter Notebooks.
d2l-ai/d2l-en: Interactive deep learning book with multi-framework code, math, and discussions. Adopted at 500 universities from 70 countries including Stanford, MIT, Harvard, and Cambridge.Jul 18, 2022
Interactive deep learning book with multi-framework code, math, and discussions. Adopted at 500 universities from 70 countries including Stanford, MIT, Harvard, and Cambridge. - d2l-ai/d2l-en
Deep Convolutional GAN — How to Use a DCGAN to Generate Images in PythonJul 14, 2022
An overview of DCGAN architecture with a step-by-step guide to building it yourself
Topological Data Analysis for Machine LearningJul 10, 2022
The ArtBench Dataset: Benchmarking Generative Models with ArtworksJul 6, 2022
We introduce ArtBench-10, the first class-balanced, high-quality, cleanly annotated, and standardized dataset for benchmarking artwork generation. It comprises 60,000 images of artwork from 10...
Minerva: Solving Quantitative Reasoning Problems with Language ModelsJul 5, 2022
Posted by Ethan Dyer and Guy Gur-Ari, Research Scientists, Google Research, Blueshift Team Language models have demonstrated remarkable performance...
How Imagen Actually WorksJul 5, 2022
Learn how Imagen generates photorealistic images given only a text description.
Generating Children's Stories Using GPT-3 and DALL·EJul 5, 2022
We used GPT-3 and DALL·E to generate a children's storybook about Ash and Pikachu vs. Team Rocket. Read the story and marvel at the AI-generated visuals!
How to Build an Image-Captioning Model in PytorchJun 23, 2022
A detailed step-by-step explanation of how to build an image-captioning model in Pytorch
Google bans deepfake-generating AI from ColabJun 7, 2022
In a recent policy change, Google has banned deepfake-generating AI projects from Colab, its platform for hosting and running arbitrary Python code.
Face to Face With Dall-E, The AI Artist That Might Change The WorldJun 4, 2022
Dall-E can illustrate just about anything using a short text prompt. Should it?
A Face Search Engine Anyone Can Use Is Alarmingly AccurateMay 30, 2022
PimEyes is a paid service that finds photos of a person from across the internet, including some the person may not want exposed. “We’re just a tool provider,” its owner said.
Sparse Autoencoder Neural Networks — How to Utilise Sparsity for Robust InfMay 4, 2022
A comparison between Undercomplete and Sparse AE with a detailed Python example
Another Firing Among Google’s A.I. Brain Trust, and More Discord (Published 2022)May 2, 2022
The researchers are considered a key to the company’s future. But they have had a hard time shaking infighting and controversy over a variety of issues.
The Modern Mathematics of Deep LearningMay 1, 2022
We describe the new field of mathematical analysis of deep learning. This field emerged around a list of research questions that were not answered within the classical framework of learning...
Pathways Language Model (PaLM): Scaling to 540 Billion Parameters for BreakthrouApr 8, 2022
Posted by Sharan Narang and Aakanksha Chowdhery, Software Engineers, Google Research In recent years, large neural networks trained for language un...
Autoencoders (AE) — A Smart Way to Process Your Data Using Unsupervised Neural NetworksApr 2, 2022
What is an Autoencoder, and how to build one in Python?
NVIDIA NeRF AI Renders Amazingly Realistic 3D Scenes From 2D Photos In JustMar 26, 2022
It takes a human being around 0.1 to 0.4 seconds to blink. In even less time, an AI-based inverse rendering process developed by NVIDIA can generate a 3D scene from 2D photos.
AI Virtual Assistant Technology Guide 2022Mar 21, 2022
They can help you get an appointment or order a pizza, find the best ticket deals and bring your...
Machine Learning Algorithms Cheat Sheet — Accel.AIFeb 20, 2022
Machine learning is a subfield of artificial intelligence (AI) and computer science that focuses on using data and algorithms to mimic the way people learn, progressively improving its accuracy. This way, Machine Learning is one of the most interesting methods in Computer Science these days, and it'
scikit-and-tensorflow-workbooks/ch14-Recurrent-NNs.ipynb at master · bjpcjp/scikit-and-tensorflow-workbooksJan 17, 2022
based on "Hands-On Machine Learning with Scikit-Learn & TensorFlow" (O'Reilly, Aurelien Geron) - bjpcjp/scikit-and-tensorflow-workbooks
scikit-and-tensorflow-workbooks/ch15-autoencoders.ipynb at master · bjpcjp/scikit-and-tensorflow-workbooksJan 16, 2022
based on "Hands-On Machine Learning with Scikit-Learn & TensorFlow" (O'Reilly, Aurelien Geron) - bjpcjp/scikit-and-tensorflow-workbooks
Deep Learning Interviews: Hundreds of fully solved job interview...Jan 16, 2022
The second edition of Deep Learning Interviews is home to hundreds of fully-solved problems, from a wide range of key topics in AI. It is designed to both rehearse interview or exam specific...
Curating a Dataset from Raw Images and VideosJan 16, 2022
Best-practices to follow when building datasets from large pools of image and video data and tools that make it straightforward.
Detecting Twenty-thousand Classes using Image-level SupervisionJan 12, 2022
Current object detectors are limited in vocabulary size due to the small scale of detection datasets. Image classifiers, on the other hand, reason about much larger vocabularies, as their datasets...
[1909.10140] A new coefficient of correlationDec 27, 2021
Is it possible to define a coefficient of correlation which is (a) as simple as the classical coefficients like Pearson's correlation or Spearman's correlation, and yet (b) consistently estimates...
Low-Power AI Startup Eta Compute Delivers First Commercial ChipsDec 14, 2021
The firm pivoted away from riskier spiking neural networks using a new power management scheme
PyTorch vs TensorFlow in 2023Dec 14, 2021
Should you use PyTorch vs TensorFlow in 2023? This guide walks through the major pros and cons of PyTorch vs TensorFlow, and how you can pick the right framework.
Machine-Learning-Tokyo/Interactive_Tools: Interactive Tools for Machine Learning, Deep Learning and MathDec 13, 2021
Interactive Tools for Machine Learning, Deep Learning and Math - Machine-Learning-Tokyo/Interactive_Tools
Under The Hood Of Google’s TPU2 Machine Learning ClustersDec 11, 2021
As we previously reported, Google unveiled its second-generation TensorFlow Processing Unit (TPU2) at Google I/O last week. Google calls this new
3D Stacking Could Boost GPU Machine LearningDec 8, 2021
Nvidia has staked its growth in the datacenter on machine learning. Over the past few years, the company has rolled out features in its GPUs aimed neural
HPC Technique Propels Deep Learning at ScaleDec 8, 2021
Researchers from Baidu’s Silicon Valley AI Lab (SVAIL) have adapted a well-known HPC communication technique to boost the speed and scale of their neural network training and now they are […]
Analysis and Comparison of Performance and Power Consumption of Neural NetwDec 8, 2021
In this work, we analyze the performance of neural networks on a variety of heterogenous platforms. We strive to find the best platform in terms of raw benchmark performance, performance per watt a…
pylabel-project/pylabel: Python library for computer vision labeling tasks. The core functionality is to translate bounding box annotations between different formats-for example, from coco to yolo.Dec 8, 2021
Python library for computer vision labeling tasks. The core functionality is to translate bounding box annotations between different formats-for example, from coco to yolo. - GitHub - pylabel-proj...
Tearing Apart Google’s TPU 3.0 AI CoprocessorDec 7, 2021
Google did its best to impress this week at its annual IO conference. While Google rolled out a bunch of benchmarks that were run on its current Cloud TPU
First In-Depth Look at Google’s TPU ArchitectureDec 7, 2021
Four years ago, Google started to see the real potential for deploying neural networks to support a large number of new services. During that time it was
Survey paper on Deep Learning on GPUsDec 4, 2021
The rise of deep-learning (DL) has been fuelled by the improvements in accelerators. GPU continues to remain the most widely used accelerator for DL applications. We present a survey of architectur…
How to make your own deep learning accelerator chip!Dec 3, 2021
Currently there are more than 100 companies all over the world building ASIC’s (Application specific integrated circuit) or SOC’s (System…
Vivienne Sze · Efficient Processing of Deep Neural Network: from Algorithms to Hardware ArchitecturesDec 3, 2021
This tutorial describes methods to enable efficient processing for deep neural networks (DNNs), which are used in many AI applications including computer vision, speech recognition, robotics, etc....
louisfb01/best_AI_papers_2021: A curated list of the latest breakthroughs in AI (in 2021) by release date with a clear video explanation, link to a more in-depth article, and code.Dec 3, 2021
A curated list of the latest breakthroughs in AI (in 2021) by release date with a clear video explanation, link to a more in-depth article, and code. - louisfb01/best_AI_papers_2021
https://blog.riseml.com/comparing-google-tpuv2-against-nvidia-v100-on-resnet-50-c2bbb6a51e5eDec 2, 2021
Memory at the Core of New Deep Learning Research ChipDec 1, 2021
Over the last two years, there has been a push for novel architectures to feed the needs of machine learning and more specifically, deep neural networks.
Four Deep Learning Papers to Read in December 2021Nov 29, 2021
From Sensory Substitution to Decision Transformers, Persistent Evolution Strategies and Sharpness-Aware Minimization
AI-Based Image Compression: The State of the ArtNov 29, 2021
An overview of some of the leading libraries and frameworks out there
TransformersNov 29, 2021
AI-Based Image Compression: The State of the ArtNov 28, 2021
An overview of some of the leading libraries and frameworks out there
MedMNIST v2 Dataset | Papers With CodeOct 29, 2021
MedMNIST v2 is a large-scale MNIST-like collection of standardized biomedical images, including 12 datasets for 2D and 6 datasets for 3D. All images are pre-processed into 28 x 28 (2D) or 28 x 28 x 28 (3D) with the corresponding classification labels, so that no background knowledge is required for users. Covering primary data modalities in biomedical images, MedMNIST v2 is designed to perform classification on lightweight 2D and 3D images with various data scales (from 100 to 100,000) and diverse tasks (binary/multi-class, ordinal regression and multi-label). The resulting dataset, consisting of 708,069 2D images and 10,214 3D images in total, could support numerous research / educational purposes in biomedical image analysis, computer vision and machine learning. Description and image from: MedMNIST v2: A Large-Scale Lightweight Benchmark for 2D and 3D Biomedical Image Classification Each subset keeps the same license as that of the source dataset. Please also cite the corresponding paper of source data if you use any subset of MedMNIST.
Applications and Techniques for Fast Machine Learning in ScienceOct 29, 2021
In this community review report, we discuss applications and techniques for fast machine learning (ML) in science -- the concept of integrating power ML methods into the real-time experimental...
An Introduction to PyTorch LightningOct 17, 2021
PyTorch Lightning has opened many new possibilities in deep learning and machine learning with a high level interface that makes it quicker to work with PyTorch.
HRNet explained: Human Pose Estimation, Semantic Segmentation and Object DeOct 7, 2021
Revealing whats behind the state-of-the art algorithm HRNet
graviraja/MLOps-BasicsOct 1, 2021
Carl-McBride-Ellis/Compendium-of-free-ML-reading-resourcesSep 24, 2021
Compendium of free ML reading resources.
GPT-4 Will Have 100 Trillion Parameters — 500x the Size of GPT-3 | by AlberSep 11, 2021
Are there any limits to large neural networks?
An Introduction to AI Story GenerationSep 1, 2021
A primer on automated story generation and how it it strikes at some fundamental research questions in artificial intelligence.
Object Detection Algorithms and Libraries - neptune.aiAug 24, 2021
A guide on object detection algorithms and libraries that covers use cases, technical details, and offers a look into modern applications.
10 Computer Vision Terms Everyone Must Know About!Aug 22, 2021
The ten essential computer vision terminologies that everyone should learn to become more proficient at computer vision with sample codes
Researchers Create 'Master Faces' to Bypass Facial RecognitionAug 12, 2021
According to the paper, their findings imply that facial recognition systems are “extremely vulnerable.”
Papers with Code - Paper with Code NewsletterJul 20, 2021
Papers With Code highlights trending Machine Learning research and the code to implement it.
PyMOL | pymol.orgJul 18, 2021
GPT-J-6B: 6B JAX-Based Transformer – Aran KomatsuzakiJul 5, 2021
Summary: We have released GPT-J-6B, 6B JAX-based (Mesh) Transformer LM (Github).GPT-J-6B performs nearly on par with 6.7B GPT-3 (or Curie) on various zero-shot down-streaming tasks.You can try out …
Same or Different? The Question Flummoxes Neural Networks. | Quanta MagazineJun 26, 2021
For all their triumphs, AI systems can’t seem to generalize the concepts of “same” and “different.” Without that, researchers worry, the quest to create truly intelligent machines may be hopeless.
A Look at Baidu’s Industrial-Scale GPU Training ArchitectureJun 26, 2021
Like its U.S. counterpart, Google, Baidu has made significant investments to build robust, large-scale systems to support global advertising programs. As
What Happens When Multipliers No Longer Define AI Accelerators?Jun 24, 2021
Current custom AI hardware devices are built around super-efficient, high performance matrix multiplication. This category of accelerators includes the
A Guide to Genetic ‘Learning’ Algorithms for OptimizationJun 23, 2021
Reconstructing Images using Reinforcement Learning and Genetic Algorithms
Introduction - Hugging Face NLP CourseJun 21, 2021
We’re on a journey to advance and democratize artificial intelligence through open source and open science.
New Machine Learning Gems for RubyJun 20, 2021
In August, I set out to improve the machine learning ecosystem for Ruby and wasn’t sure where it would go. Over the next 5 months, I ended up...
2106Jun 15, 2021
Wu Dao 2.0: A Monster of 1.75 Trillion Parameters | by Alberto Romero | MedJun 7, 2021
BAAI conference presented Wu Dao 2.0. The most powerful AI to date.
NielsRogge/Transformers-Tutorials: This repository contains demos I made with the Transformers library by HuggingFace.Jun 3, 2021
This repository contains demos I made with the Transformers library by HuggingFace. - NielsRogge/Transformers-Tutorials
Sentiment Analysis — Comparing 3 Common Approaches: Naive Bayes, LSTM, andMay 31, 2021
Sentiment Analysis, or Opinion Mining, is a subfield of NLP (Natural Language Processing) that aims to extract attitudes, appraisals, opinions, and emotions from text. Inspired by the rapid migration…
Introduction to Object Detection Model EvaluationMay 29, 2021
Evaluating object detection models is not straightforward because each image can have many objects and each object can belong to different classes. This means that we need to measure if the model…
The Unreasonable Effectiveness of Recurrent Neural NetworksMay 29, 2021
Musings of a Computer Scientist.
Understanding LSTM Networks -- colah's blogMay 29, 2021
Deep Learning: Our Miraculous Year 1990-1991May 29, 2021
In 2020-21, we celebrate that many of the basic ideas behind the Deep Learning Revolution were published three decades ago within fewer than 12 months in our "Annus Mirabilis" 1990-91
An Overview Of Deep LearningMay 29, 2021
The Illustrated Transformer – Jay Alammar – Visualizing machine learning onMay 29, 2021
Discussions: Hacker News (65 points, 4 comments), Reddit r/MachineLearning (29 points, 3 comments) Translations: Arabic, Chinese (Simplified) 1, Chinese (Simplified) 2, French 1, French 2, Italian, Japanese, Korean, Persian, Russian, Spanish 1, Spanish 2, Vietnamese Watch: MIT’s Deep Learning State of the Art lecture referencing this post Featured in courses at Stanford, Harvard, MIT, Princeton, CMU and others In the previous post, we looked at Attention – a ubiquitous method in modern deep learning models. Attention is a concept that helped improve the performance of neural machine translation applications. In this post, we will look at The Transformer – a model that uses attention to boost the speed with which these models can be trained. The Transformer outperforms the Google Neural Machine Translation model in specific tasks. The biggest benefit, however, comes from how The Transformer lends itself to parallelization. It is in fact Google Cloud’s recommendation to use The Transformer as a reference model to use their Cloud TPU offering. So let’s try to break the model apart and look at how it functions. The Transformer was proposed in the paper Attention is All You Need. A TensorFlow implementation of it is available as a part of the Tensor2Tensor package. Harvard’s NLP group created a guide annotating the paper with PyTorch implementation. In this post, we will attempt to oversimplify things a bit and introduce the concepts one by one to hopefully make it easier to understand to people without in-depth knowledge of the subject matter. 2020 Update: I’ve created a “Narrated Transformer” video which is a gentler approach to the topic: A High-Level Look Let’s begin by looking at the model as a single black box. In a machine translation application, it would take a sentence in one language, and output its translation in another.
DatasetGANMay 24, 2021
Understanding Transformers, the machine learning model behind GPT-3May 22, 2021
How this novel neural network architecture changes the way we analyze complex data types, and powers revolutionary models like GPT-3 and BERT.
Google details new AI accelerator chipsMay 19, 2021
Google detailed TPUv4 at Google I/O 2021. They're accelerator chips that deliver high performance on AI workloads.
milvus - An open source embedding vector similarity search engine powered bMay 18, 2021
A cloud-native vector database, storage for next generation AI applications - milvus-io/milvus
How Transformers work in deep learning and NLP: an intuitive introduction | AI SummerMay 18, 2021
An intuitive understanding on Transformers and how they are used in Machine Translation. After analyzing all subcomponents one by one such as self-attention and positional encodings , we explain the principles behind the Encoder and Decoder and why Transformers work so well
Causal ML for Data Science: Deep Learning with Instrumental VariablesMay 18, 2021
Combining data science and econometrics for an introduction to the DeepIV framework, including a full Python code tutorial.
Algorithm-Assisted Inventory CurationMay 15, 2021
Building the raw materials for personalization at scale
11 Ways To Reduce AI Energy ConsumptionMay 13, 2021
Pushing AI to the edge requires new architectures, tools, and approaches.
Geometric Deep Learning: Grids, Groups, Graphs, Geodesics, and GaugesMay 12, 2021
The last decade has witnessed an experimental revolution in data science and machine learning, epitomised by deep learning methods. Indeed, many high-dimensional learning tasks previously thought...
Top 5 Python libraries for Computer visionMay 7, 2021
Computer vision is the field of computer science that focuses on replicating parts of the complexity...
Beginner guide to Variational Autoencoders (VAE) with PyTorch Lightning (Part 2)May 3, 2021
This blog post is part of a mini-series that talks about the different aspects of building a PyTorch Deep Learning project using Variational Autoencoders. In Part 1, we looked at the variational…
jsbroks/coco-annotator: :pencil2: Web-based image segmentation tool for object detection, localization, and keypointsMay 2, 2021
:pencil2: Web-based image segmentation tool for object detection, localization, and keypoints - jsbroks/coco-annotator
CPU-based algorithm trains deep neural nets up to 15 times faster than topApr 9, 2021
Rice University computer scientists have demonstrated artificial intelligence (AI) software that runs on commodity processors and trains deep neural networks 15 times faster than platforms based on graphics ...
State of the art NLP at scale with RAPIDS, HuggingFace and DaskApr 4, 2021
See how to build end-to-end NLP pipelines in a fast and scalable way on GPUs — from feature engineering to inference.
The Dying ReLU Problem, Clearly ExplainedMar 30, 2021
Keep your neural network alive by understanding the downsides of ReLU
Reinforcement learning: The next great AI tech moving from the lab to the rMar 30, 2021
Reinforcement learning (RL) is a powerful type of AI technology that can learn strategies to optimally control large, complex systems.
When are Neural Networks more powerful than Neural Tangent Kernels?Mar 26, 2021
Algorithms off the convex path.
Curious about Variational Autoencoders (VAEs)? Start Here.Mar 25, 2021
In recent years, GANs (generative adversarial networks) have been all the rage in the field of deep-learning generative models, leaving…
AI-Controlled F-16s Are Now Working As A Team In DARPA's Virtual DogfightsMar 23, 2021
The dogfighting AI DARPA is developing is set to make the challenging migration from a synthetic environment to the real world soon.
New AI tool detects Deepfakes by analyzing light reflections in the eyesMar 14, 2021
Computer scientists from the University at Buffalo used the method to successfully detect Deepfakes taken from This Person Does Not Exist.
[R] Deep Generative Modelling: A Comparative Review of VAEs, GANs, NormalizMar 10, 2021
340 votes, 28 comments. If anyone wants to brush up on recent methods in EBMs, Normalizing Flows, GANs, VAEs, and Autoregressive models, I just…
Deep Nostalgia AI brings your photos to life just like in the ‘Harry PotterMar 7, 2021
Deep Nostalgia AI brings your photos to life just like in the Harry Potter movies.
How to Use Roboflow and Streamlit to Visualize Object Detection OutputMar 3, 2021
Building an app for blood cell count detection.
GPT-3: We’re at the very beginning of a new app ecosystemFeb 27, 2021
The NLP application ecosystem is in its earliest stages, and it's not yet clear whether GPT-3 or a different model will be the foundation.
An Idea From Physics Helps AI See in Higher DimensionsFeb 22, 2021
The laws of physics stay the same no matter one’s perspective. Now this idea is allowing computers to detect features in curved and higher-dimensional space.
[1902.04615] Gauge Equivariant Convolutional Networks and the Icosahedral CFeb 22, 2021
The principle of equivariance to symmetry transformations enables a theoretically grounded approach to neural network architecture design. Equivariant networks have shown excellent performance and...
An overview of synthetic data types and generation methodsFeb 22, 2021
Synthetic data can be used to test new products and services, validate models, or test performances because it mimics the statistical property of production data. Today you'll find different types of structured and unstructured synthetic data.
Error Backpropagation Learning AlgorithmFeb 11, 2021
The error backpropagation learning algorithm is a supervised learning technique for neural networks that calculates the gradient of descent for weighting different variables.
Why you should always use feature embeddings with structured datasetsFeb 11, 2021
A simple technique for boosting accuracy on ANY model you use
Data Science & AI Glossary | DeepAIFeb 11, 2021
The data science and artificial intelligence terms you need while reading the latest research
Achieving High-Quality Search and Recommendation Results with DeepNLPFeb 5, 2021
Speech and natural language processing (NLP) have become the foundation for most of the AI development in the enterprise today, as textual data represents a significant portion of unstructured content.
Math | Obviously AwesomeFeb 4, 2021
Activation functions are functions which take an input signal and convert it to an output signal. Activation functions introduce…
[1605.09782v6] Adversarial Feature LearningFeb 4, 2021
The ability of the Generative Adversarial Networks (GANs) framework to learn generative models mapping from simple latent distributions to arbitrarily complex data distributions has been...
Math | Obviously AwesomeFeb 4, 2021
Recently, a colleague of mine asked me a few questions like “why do we have so many activation functions?”, “why is that one works better…
Math | Obviously AwesomeFeb 4, 2021
Activation functions are functions that we apply in neural networks after (typically) applying an affine transformation combining weights and input features. They are typically non-linear functions. The rectified linear unit, or ReLU, has been the most popular in the past decade, although the choice is architecture dependent and many alternatives have emerged in recent years. In this section, you will find a constantly updating list of activation functions.
Curve CircuitsFeb 3, 2021
Reverse engineering the curve detection algorithm from InceptionV1 and reimplementing it from scratch.
Text2Gestures: A Transformer-Based Network for Generating Emotive Body GestJan 31, 2021
We present Text2Gestures, a transformer-based learning method to interactively generate emotive full-body gestures for virtual agents aligned with natural language text inputs. Our method generates…
TT-Rec: Tensor Train Compression for Deep Learning Recommendation ModelsJan 30, 2021
The memory capacity of embedding tables in deep learning recommendation models (DLRMs) is increasing dramatically from tens of GBs to TBs across the industry. Given the fast growth in DLRMs, novel...
Cross-Topic Argument Mining: Learning How to Classify TextsJan 27, 2021
Classifying cross-topic natural language texts based on their argumentative structure using deep learning
A concept in psychology is helping AI to better navigate our world | MIT TeJan 24, 2021
The concept: When we look at a chair, regardless of its shape and color, we know that we can sit on it. When a fish is in water, regardless of its location, it knows that it can swim. This is known as the theory of affordance, a term coined by psychologist James J. Gibson. It…
Reinforcement Learning Explained Visually (Part 6): Policy Gradients, step-Jan 15, 2021
A Gentle Guide to the REINFORCE algorithm, in Plain English
Algorithms for Decision Making | Hacker NewsJan 13, 2021
Model Compression: A Look into Reducing Model SizeJan 10, 2021
Why is Model Compression important? A significant problem in the arms race to produce more accurate models is complexity, which leads to…
Deep Learning Systems: Algorithms, Compilers, and Processors for Large-Scale ProductionJan 7, 2021
None
Papers with Code 2020 ReviewJan 2, 2021
Papers with Code indexes various machine learning artifacts — papers, code, results — to facilitate discovery and comparison. Using this…
Pocket - Anchor Boxes — The key to quality object detectionJan 2, 2021
If you have ever had to tinker with anchor boxes, you were probably frustrated, confused and saying to yourself, “There must be another…
Anchor Boxes — The key to quality object detectionJan 2, 2021
A recent article came out comparing public cloud providers’ face detection APIs. I was very surprised to see all of the detectors fail to…
Browse the State-of-the-Art in Machine Learning | Papers With CodeDec 22, 2020
**Pose Estimation** is a computer vision task where the goal is to detect the position and orientation of a person or an object. Usually, this is done by predicting the location of specific keypoints like hands, head, elbows, etc. in case of Human Pose Estimation. A common benchmark for this task is [MPII Human Pose](https://paperswithcode.com/sota/pose-estimation-on-mpii-human-pose) ( Image credit: [Real-time 2D Multi-Person Pose Estimation on CPU: Lightweight OpenPose](https://github.com/Daniil-Osokin/lightweight-human-pose-estimation.pytorch) )
Computer Vision | Papers With CodeDec 22, 2020
Dimensionality reduction is the task of reducing the dimensionality of a dataset. ( Image credit: [openTSNE](https://github.com/pavlin-policar/openTSNE) )
Methodology | Papers With CodeDec 21, 2020
Bayesian Inference is a methodology that employs Bayes Rule to estimate parameters (and their full posterior).
Methodology | Papers With CodeDec 21, 2020
**Transfer Learning** is a machine learning technique where a model trained on one task is re-purposed and fine-tuned for a related, but different task. The idea behind transfer learning is to leverage the knowledge learned from a pre-trained model to solve a new, but related problem. This can be useful in situations where there is limited data available to train a new model from scratch, or when the new task is similar enough to the original task that the pre-trained model can be adapted to the new problem with only minor modifications. ( Image credit: [Subodh Malgonde](https://medium.com/@subodh.malgonde/transfer-learning-using-tensorflow-52a4f6bcde3e) )
Methodology | Papers With CodeDec 21, 2020
**Representation Learning** is a process in machine learning where algorithms extract meaningful patterns from raw data to create representations that are easier to understand and process. These representations can be designed for interpretability, reveal hidden features, or be used for transfer learning. They are valuable across many fundamental machine learning tasks like [image classification](/task/image-classification) and [retrieval](/task/image-retrieval). Deep neural networks can be considered representation learning models that typically encode information which is projected into a different subspace. These representations are then usually passed on to a linear classifier to, for instance, train a classifier. Representation learning can be divided into: - **Supervised representation learning**: learning representations on task A using annotated data and used to solve task B - **Unsupervised representation learning**: learning representations on a task in an unsupervised way (label-free data). These are then used to address downstream tasks and reducing the need for annotated data when learning news tasks. Powerful models like [GPT](/method/gpt) and [BERT](/method/bert) leverage unsupervised representation learning to tackle language tasks. More recently, [self-supervised learning (SSL)](/task/self-supervised-learning) is one of the main drivers behind unsupervised representation learning in fields like computer vision and NLP. Here are some additional readings to go deeper on the task: - [Representation Learning: A Review and New Perspectives](/paper/representation-learning-a-review-and-new) - Bengio et al. (2012) - [A Few Words on Representation Learning](https://sthalles.github.io/a-few-words-on-representation-learning/) - Thalles Silva ( Image credit: [Visualizing and Understanding Convolutional Networks](https://arxiv.org/pdf/1311.2901.pdf) )
Object Tracking | Papers With CodeDec 21, 2020
**Object tracking** is the task of taking an initial set of object detections, creating a unique ID for each of the initial detections, and then tracking each of the objects as they move around frames in a video, maintaining the ID assignment. State-of-the-art methods involve fusing data from RGB and event-based cameras to produce more reliable object tracking. CNN-based models using only RGB images as input are also effective. The most popular benchmark is OTB. There are several evaluation metrics specific to object tracking, including HOTA, MOTA, IDF1, and Track-mAP. ( Image credit: [Towards-Realtime-MOT ](https://github.com/Zhongdao/Towards-Realtime-MOT) )
Computer Vision | Papers With CodeDec 21, 2020
**Image Retrieval** is a fundamental and long-standing computer vision task that involves finding images similar to a provided query from a large database. It's often considered as a form of fine-grained, instance-level classification. Not just integral to image recognition alongside [classification](/task/image-classification) and [detection](/task/image-detection), it also holds substantial business value by helping users discover images aligning with their interests or requirements, guided by visual similarity or other parameters. ( Image credit: [DELF](https://github.com/tensorflow/models/tree/master/research/delf) )
Computer Vision | Papers With CodeDec 21, 2020
**Zero-shot learning (ZSL)** is a model's ability to detect classes never seen during training. The condition is that the classes are not known during supervised learning. Earlier work in zero-shot learning use attributes in a two-step approach to infer unknown classes. In the computer vision context, more recent advances learn mappings from image feature space to semantic space. Other approaches learn non-linear multimodal embeddings. In the modern NLP context, language models can be evaluated on downstream tasks without fine tuning. Benchmark datasets for zero-shot learning include [aPY](/dataset/apy), [AwA](/dataset/awa2-1), and [CUB](/dataset/cub-200-2011), among others. ( Image credit: [Prototypical Networks for Few shot Learning in PyTorch ](https://github.com/orobix/Prototypical-Networks-for-Few-shot-Learning-PyTorch) ) Further readings: - [Zero-Shot Learning -- A Comprehensive Evaluation of the Good, the Bad and the Ugly](https://paperswithcode.com/paper/zero-shot-learning-a-comprehensive-evaluation) - [Zero-Shot Learning in Modern NLP](https://joeddav.github.io/blog/2020/05/29/ZSL.html) - [Zero-Shot Learning for Text Classification](https://amitness.com/2020/05/zero-shot-text-classification/)
Computer Vision | Papers With CodeDec 21, 2020
**Anomaly Detection** is a binary classification identifying unusual or unexpected patterns in a dataset, which deviate significantly from the majority of the data. The goal of anomaly detection is to identify such anomalies, which could represent errors, fraud, or other types of unusual events, and flag them for further investigation. [Image source]: [GAN-based Anomaly Detection in Imbalance Problems](https://paperswithcode.com/paper/gan-based-anomaly-detection-in-imbalance)
Computer Vision | Papers With CodeDec 21, 2020
**Few-Shot Learning** is an example of meta-learning, where a learner is trained on several related tasks, during the meta-training phase, so that it can generalize well to unseen (but related) tasks with just few examples, during the meta-testing phase. An effective approach to the Few-Shot Learning problem is to learn a common representation for various tasks and train task specific classifiers on top of this representation. Source: [Penalty Method for Inversion-Free Deep Bilevel Optimization ](https://arxiv.org/abs/1911.03432)
Computer Vision | Papers With CodeDec 21, 2020
**Depth Estimation** is the task of measuring the distance of each pixel relative to the camera. Depth is extracted from either monocular (single) or stereo (multiple views of a scene) images. Traditional methods use multi-view geometry to find the relationship between the images. Newer methods can directly estimate depth by minimizing the regression loss, or by learning to generate a novel view from a sequence. The most popular benchmarks are KITTI and NYUv2. Models are typically evaluated according to a RMS metric. Source: [DIODE: A Dense Indoor and Outdoor DEpth Dataset ](https://arxiv.org/abs/1908.00463)
Computer Vision | Papers With CodeDec 21, 2020
**Facial Recognition** is the task of making a positive identification of a face in a photo or video image against a pre-existing database of faces. It begins with detection - distinguishing human faces from other objects in the image - and then works on identification of those detected faces. The state of the art tables for this task are contained mainly in the consistent parts of the task : the face verification and face identification tasks. ( Image credit: [Face Verification](https://shuftipro.com/face-verification) )
Computer Vision | Papers With CodeDec 21, 2020
**Action Recognition** is a computer vision task that involves recognizing human actions in videos or images. The goal is to classify and categorize the actions being performed in the video or image into a predefined set of action classes. In the video domain, it is an open question whether training an action classification network on a sufficiently large dataset, will give a similar boost in performance when applied to a different temporal task or dataset. The challenges of building video datasets has meant that most popular benchmarks for action recognition are small, having on the order of 10k videos. Please note some benchmarks may be located in the [Action Classification](https://paperswithcode.com/task/action-classification) or [Video Classification](https://paperswithcode.com/task/video-classification) tasks, e.g. Kinetics-400.
Computer Vision | Papers With CodeDec 21, 2020
**Super-Resolution** is a task in computer vision that involves increasing the resolution of an image or video by generating missing high-frequency details from low-resolution input. The goal is to produce an output image with a higher resolution than the input image, while preserving the original content and structure. ( Credit: [MemNet](https://github.com/tyshiwo/MemNet) )
Computer Vision | Papers With CodeDec 21, 2020
Autonomous driving is the task of driving a vehicle without human conduction. Many of the state-of-the-art results can be found at more general task pages such as [3D Object Detection](https://paperswithcode.com/task/3d-object-detection) and [Semantic Segmentation](https://paperswithcode.com/task/semantic-segmentation). (Image credit: [Exploring the Limitations of Behavior Cloning for Autonomous Driving](https://arxiv.org/pdf/1904.08980v1.pdf))
Computer Vision | Papers With CodeDec 21, 2020
Data augmentation involves techniques used for increasing the amount of data, based on different modifications, to expand the amount of examples in the original dataset. Data augmentation not only helps to grow the dataset but it also increases the diversity of the dataset. When training machine learning models, data augmentation acts as a regularizer and helps to avoid overfitting. Data augmentation techniques have been found useful in domains like NLP and computer vision. In computer vision, transformations like cropping, flipping, and rotation are used. In NLP, data augmentation techniques can include swapping, deletion, random insertion, among others. Further readings: - [A Survey of Data Augmentation Approaches for NLP](https://paperswithcode.com/paper/a-survey-of-data-augmentation-approaches-for) - [A survey on Image Data Augmentation for Deep Learning](https://journalofbigdata.springeropen.com/articles/10.1186/s40537-019-0197-0) ( Image credit: [Albumentations](https://github.com/albumentations-team/albumentations) )
Computer Vision | Papers With CodeDec 21, 2020
**Domain Adaptation** is the task of adapting models across domains. This is motivated by the challenge where the test and training datasets fall from different data distributions due to some factor. Domain adaptation aims to build machine learning models that can be generalized into a target domain and dealing with the discrepancy across domain distributions. Further readings: - [A Brief Review of Domain Adaptation](https://paperswithcode.com/paper/a-brief-review-of-domain-adaptation) ( Image credit: [Unsupervised Image-to-Image Translation Networks](https://arxiv.org/pdf/1703.00848v6.pdf) )
Browse the State-of-the-Art in Machine Learning | Papers With CodeDec 21, 2020
**Image Generation** (synthesis) is the task of generating new images from an existing dataset. - **Unconditional generation** refers to generating samples unconditionally from the dataset, i.e. $p(y)$ - **[Conditional image generation](/task/conditional-image-generation)** (subtask) refers to generating samples conditionally from the dataset, based on a label, i.e. $p(y|x)$. In this section, you can find state-of-the-art leaderboards for **unconditional generation**. For conditional generation, and other types of image generations, refer to the subtasks. ( Image credit: [StyleGAN](https://github.com/NVlabs/stylegan) )
Browse the State-of-the-Art in Machine Learning | Papers With CodeDec 21, 2020
**Object Detection** is a computer vision task in which the goal is to detect and locate objects of interest in an image or video. The task involves identifying the position and boundaries of objects in an image, and classifying the objects into different categories. It forms a crucial part of vision recognition, alongside [image classification](/task/image-classification) and [retrieval](/task/image-retrieval). The state-of-the-art methods can be categorized into two main types: one-stage methods and two stage-methods: - One-stage methods prioritize inference speed, and example models include YOLO, SSD and RetinaNet. - Two-stage methods prioritize detection accuracy, and example models include Faster R-CNN, Mask R-CNN and Cascade R-CNN. The most popular benchmark is the MSCOCO dataset. Models are typically evaluated according to a Mean Average Precision metric. ( Image credit: [Detectron](https://github.com/facebookresearch/detectron) )
Browse the State-of-the-Art in Machine Learning | Papers With CodeDec 21, 2020
**Image Classification** is a fundamental task in vision recognition that aims to understand and categorize an image as a whole under a specific label. Unlike [object detection](/task/object-detection), which involves classification and location of multiple objects within an image, image classification typically pertains to single-object images. When the classification becomes highly detailed or reaches instance-level, it is often referred to as [image retrieval](/task/image-retrieval), which also involves finding similar images in a large database. Source: [Metamorphic Testing for Object Detection Systems ](https://arxiv.org/abs/1912.12162)
Browse the State-of-the-Art in Machine Learning | Papers With CodeDec 21, 2020
**Semantic Segmentation** is a computer vision task in which the goal is to categorize each pixel in an image into a class or object. The goal is to produce a dense pixel-wise segmentation map of an image, where each pixel is assigned to a specific class or object. Some example benchmarks for this task are Cityscapes, PASCAL VOC and ADE20K. Models are usually evaluated with the Mean Intersection-Over-Union (Mean IoU) and Pixel Accuracy metrics. ( Image credit: [CSAILVision](https://github.com/CSAILVision/semantic-segmentation-pytorch) )
Everything Product People Need to Know About Transformers, GPT-3, and HuggiDec 19, 2020
Or, How to Act Like You Know About the Biggest AI Development since CNNs
A Beginner’s Guide to Use BERT for the First TimeDec 18, 2020
From predicting single sentence to fine-tuning using custom dataset to finding the best hyperparameter configuration.
Farewell RNNs, Welcome TCNsDec 18, 2020
How Temporal Convolutional Networks are moving in favor of Sequence Modeling — Stock Trend Prediction.
Semantic hand segmentation using PytorchDec 18, 2020
Semantic segmentation is the task of predicting the class of each pixel in an image. This problem is more difficult than object detection…
A version of the BERT language model that’s 20 times as fastDec 10, 2020
Determining the optimal architectural parameters reduces network size by 84% while improving performance on natural-language-understanding tasks.
YOLO v4 or YOLO v5 or PP-YOLO? Which should I use?Dec 10, 2020
What are these new YOLO releases in 2020? How do they differ? Which one should I use?
AI system for high precision recognition of hand gesturesDec 10, 2020
Scientists have developed an Artificial Intelligence (AI) system that recognises hand gestures by combining skin-like electronics with computer vision.
10 Invaluable Tips & Tricks for Building Successful Neural NetworksNov 30, 2020
Bringing structure to an unstructured task
Introduction to Federated LearningNov 29, 2020
Federated learning means enabling on-device training, model personalization, and more. Read more about it in this article.
The Ultimate Guide to Transfer LearningNov 9, 2020
What is Transfer Learning? Where can I use it? Why should I use it? How can I use it? Read On to find out!
An Intuitive Guide to Auto-Encoders: Theory, Code and VisualizationNov 9, 2020
Using Auto-Encoders to gain insight into data
Periodic Table of Deep Learning Patterns / Via DataCampNov 3, 2020
443K subscribers in the learnmachinelearning community. A subreddit dedicated to learning machine learning
Computer Vision Recipes: Best Practices and ExamplesNov 3, 2020
This is an overview of a great computer vision resource from Microsoft, which demonstrates best practices and implementation guidelines for a variety of tasks and scenarios.
AI researchers use heartbeat detection to identify deepfake videosNov 3, 2020
AI researchers are using heartbeat detection to identify deepfake videos and even to figure out what kind of generative model created a deepfake.
Yolo v5 Object Detection TutorialNov 3, 2020
How to set up and train a Yolo v5 Object Detection model?
High-Performance, Billion-Scale Similarity Search | by Pat Lasserre | GSI TNov 3, 2020
In Part 1 of this series, we introduced the concept of embedding vectors. In Part 2, we discussed how embedding vectors can be used in…
Papers with Code arXiv = Reproducible, Organized ResearchNov 3, 2020
Through a joint collaboration, Papers with Code now provides category classification and code references for articles in the arXiv…
GPT-3, transformers and the wild world of NLPNov 3, 2020
A review of 20+ deep learning NLP models and how to use them well
Image Annotation for Computer Vision | CloudFactoryNov 3, 2020
Machine learning is often fueled by image data. In this guide, learn the basics about image annotation, common techniques, and key workforce considerations.
The Most Complete Guide to PyTorch for Data ScientistsNov 3, 2020
PyTorch has sort of became one of the de facto standards for creating Neural Networks now, and I love its interface.
Which GPUs to get for deep learningNov 3, 2020
Here, I provide an in-depth analysis of GPUs for deep learning/machine learning and explain what is the best GPU for your use-case and budget.
End to End Pipeline for setting up Multiclass Image Classification for Data Scientists - MLWhizNov 3, 2020
In this post, we’ll create an end to end pipeline for image multiclass classification using Pytorch.This will include training the model, putting the model’s results in a form that can be shown to business partners, and functions to help deploy the model easily. As an added feature we will look at Test Time Augmentation using Pytorch also.
AlphaGo Zero Explained In One DiagramNov 3, 2020
One infographic that explains how Reinforcement Learning, Deep Learning and Monte Carlo Search Trees are used in AlphaGo Zero.
AI Papers to Read in 2020Nov 3, 2020
Reading suggestions to keep you up-to-date with the latest and classic breakthroughs in AI and Data Science
AI devs created a lean, mean, GPT-3-beating machine that uses 99.9% fewer pNov 3, 2020
AI researchers from the Ludwig Maximilian University (LMU) of Munich have developed a bite-sized text generator capable of besting OpenAI’s state of the art GPT-3 using only a tiny fraction of its parameters. GPT-3 is a monster of an AI sys
AI Democratization in the Era of GPT-3Nov 3, 2020
What does Microsoft getting an "exclusive license" to GPT-3 mean for the future of AI democratization?
Understanding Transformers, the Data Science WayNov 3, 2020
Read this accessible and conversational article about understanding transformers, the data science way — by asking a lot of questions that is.
Autoencoders: Overview of Research and ApplicationsNov 3, 2020
Which kinds of autoencoders exist and what are their applications?
How to cluster images based on visual similarityNov 2, 2020
Use a pre-trained neural network for feature extraction and cluster images using K-means.
Novel object captioning surpasses human performance on benchmarksNov 2, 2020
Visual vocabulary advances novel object captioning by breaking free of paired sentence-image training data in vision and language pretraining. Discover how this method helps set new state of the art on the nocaps benchmark and bests CIDEr scores of humans.
5 Articles to Understand Generative Adversarial NetworksNov 2, 2020
Get up to date on one of the most promising Deep Learning technologies there is right now
Hacked Billboards can Make Teslas See 'Phantom Objects' and Cause HavocNov 2, 2020
Tesla's Autopilot system relies on vision rather than LIDAR, which means it can be tricked by messages on billboards and projections created by hackers.
New AI Inferencing Records - IEEE SpectrumOct 31, 2020
Nvidia tops MLPerf records again, consortium adds benchmarks to measure mobile
Su17kgm7y tSep 24, 2020
Amazon team adds key programming frameworks to Dive into Deep Learning bookSep 19, 2020
With PyTorch and TensorFlow incorporated, the authors hope to gain a wider audience.
Self-Organizing Maps for Dimension Reduction, Data Visualization, and ClustSep 19, 2020
Self-Organizing Maps for Dimension Reduction, Data Visualization, and Clustering
Oil Storage Tank’s Volume Occupancy On Satellite Imagery Using YoloV3Sep 2, 2020
Recognition of Oil Storage Tanks in satellite images using the Yolov3 object detection model from scratch using Tensorflow 2.x and…
New Approaches to Object DetectionSep 2, 2020
A brief introduction to CenterNet (Objects as Points), TTFNet and their implementation in TensorFlow 2.2+.
11 Essential Neural Network Architectures, Visualized & ExplainedAug 10, 2020
Standard, Recurrent, Convolutional, & Autoencoder Networks
Where We See Shapes, AI Sees Textures | Quanta MagazineAug 10, 2020
To researchers’ surprise, deep learning vision algorithms often fail at classifying images because they mostly take cues from textures, not shapes.
YOLOv5 is Here: State-of-the-Art Object Detection at 140 FPSJun 24, 2020
Less than 50 days after the release YOLOv4, YOLOv5 improves accessibility for realtime object detection. June 29, YOLOv5 has released the first official version of the repository. We wrote a new deep dive on YOLOv5. June 12, 8:08 AM CDT Update: In response to to community feedback, we have
12 Main Dropout Methods : Mathematical and Visual ExplanationJun 24, 2020
Deep Dive into DNNs, CNNs, and RNNs Dropout Methods for Regularization, Monte Carlo Uncertainty, and Model Compression
Image Augmentation Mastering: 15 Techniques and Useful Functions with PythJun 24, 2020
Smooth python codes to augment your image datasets by yourself.
Implementing Deep Convolutional Generative Adversarial Networks (DCGAN)Jun 1, 2020
How I Generated New Images from Random Data using DCGAN
6 GAN Architectures You Really Should KnowJun 1, 2020
Complete Architectural Details of all EfficientNet ModelsJun 1, 2020
Let’s dive deep into the architectural details of all the different EfficientNet Models and find out how they differ from each other.
Virtual Background in Webcam with Body Segmentation TechniqueJun 1, 2020
Webcam background change is not limited to Zoom now, I just did it in the browser with tensorflow.js body-pix model
Data Augmentation in YOLOv4Jun 1, 2020
State of the art modeling with image data augmentation and management
Image Segmentation With 5 Lines 0f CodeJun 1, 2020
Computer vision is evolving on a daily basis. Popular computer vision techniques such as image classification and object detection have been used extensively to solve a lot of computer vision…
AI Paper Recommendations from ExpertsMay 21, 2020
We reached out to further members of the AI community for their recommendations of papers which everyone should be reading! All of the cited papers are free to access and cover a range of topics from some incredible minds.
Evolution of Language Models: N-Grams, Word Embeddings, Attention & TransfoMay 20, 2020
This post collates research on the advancements of Natural Language Processing (NLP) over the years.
Understanding Associative EmbeddingMay 19, 2020
An elegant method to group predictions without labeling
AI and EfficiencyMay 19, 2020
We’re releasing an analysis showing that since 2012 the amount of compute needed to train a neural net to the same performance on ImageNet classification has been decreasing by a factor of 2 every 16 months. Compared to 2012, it now takes 44 times less compute to train a neural network to the level of AlexNet (by contrast, Moore’s Law would yield an 11x cost improvement over this period). Our results suggest that for AI tasks with high levels of recent investment, algorithmic progress has yielded more gains than classical hardware efficiency.
Complete guide to machine learning and deep learning in retailMay 16, 2020
The stores aren’t dead yet
AI for 3D Generative DesignMay 15, 2020
Making the design process faster and more efficient by generating 3D objects from natural language descriptions.
facebookresearch/faiss: A library for efficient similarity search and clustMay 15, 2020
A library for efficient similarity search and clustering of dense vectors. - facebookresearch/faiss
Master the COCO Dataset for Semantic Image SegmentationMay 15, 2020
Explore and manipulate the COCO image dataset for Semantic Image Segmentation with PyCoco, Tensorflow Keras Python libraries
Master the COCO Dataset for Semantic Image SegmentationMay 15, 2020
Create a data generator and train your model on the COCO image dataset for Semantic Image Segmentation with PyCoco, Tensorflow Keras py
3D Photography Inpainting: Exploring Art with AI.May 15, 2020
Usage of the new model, with examples and Colab Notebook.
Python Libraries for Natural Language Processing - Towards Data ScienceApr 28, 2020
An Overview Of popular python libraries for Natural Language Processing
Deploy Tensorflow Object Detection API on Kubernetes with Python, Flask andApr 26, 2020
In this article we’ll serve the Tensorflow Object Detection API with Flask, Dockerize the Application and deploy it on Kubernetes.
[R] Suprise: Exponentially increasing Learning Rate for Deep LearningApr 26, 2020
Paper: https://arxiv.org/abs/1910.07454 Blog Post: http://www.offconvex.org/2020/04/24/ExpLR1/ "We report experiments that state-of-the-art networks…
OpenAI Open Sources Microscope and the Lucid Library to Visualize Neurons in Deep Neural Networks - KDnuggetsApr 24, 2020
The new tools shows the potential of data visualizations for understanding features in a neural network.
Stacked Auto-encoder as a Recommendation System for Movie Rating PredictionApr 24, 2020
Introduction on Stacked Auto-encoder and Technical Walk-through on Model Creation using Pytorch
The Cost of Training NLP Models: A Concise OverviewApr 24, 2020
We review the cost of training large-scale language models, and the drivers of these costs. The intended audience includes engineers and scientists budgeting their model-training experiments, as...
RecSys Series Part 5: Neural Matrix Factorization for Collaborative FilteriApr 24, 2020
Bringing Neural Architecture into Recommendations
Google says new AI models allow for ‘nearly instantaneous’ weather forecastApr 23, 2020
AI looks well-suited for short-term weather forecasts
How robots can adapt to new tasks — quicklyApr 23, 2020
New approach to meta-reinforcement learning minimizes the need for costly interactions with the environment.
Topic Modeling Articles with NMFApr 19, 2020
Extracting topics is a good unsupervised data-mining technique to discover the underlying relationships between texts. There are many…
Build an app to generate photorealistic faces using TensorFlow and StreamliApr 19, 2020
We’ll show you how to quickly build a Streamlit app to synthesize celebrity faces using GANs, Tensorflow, and st.cache.
Some shirts hide you from cameras—but will anyone wear them?Apr 17, 2020
It’s theoretically possible to become invisible to cameras. But can it catch on?
Limitations of Graph Neural NetworksApr 1, 2020
Reading between the lines of the latest advancements in GML.
50 Deep Learning Interview QuestionsApr 1, 2020
NLP — BERT & Transformer - Jonathan Hui - MediumApr 1, 2020
Google published an article “Understanding searches better than ever before” and positioned BERT as one of the most important updates to…
Test Your Skills: 26 (More) Data Science Interview Questions & AnswersApr 1, 2020
Statistics, Algorithms, Deep Learning, NLP, & Data Organization
Object Detection using YoloV3 and OpenCVApr 1, 2020
An Introduction to Object Detection with YoloV3 for beginners
Image Data Labelling and Annotation — Everything you need to knowApr 1, 2020
Learn about different types of annotations, annotation formats and annotation tools
nandinib1999/object-detection-yolo-opencv: Object Detection using Yolo V3 and OpenCVApr 1, 2020
Object Detection using Yolo V3 and OpenCV .
TLDR This - Article Summarizer & Online Text Summarizing ToolApr 1, 2020
TLDR This is a Free online text summarizing tool that automatically condenses long articles, documents, essays, or papers into key summary paragraphs using state-of-the-art AI.
Matrix Factorization as a Recommender SystemApr 1, 2020
An Explanation and Implementation of Matrix Factorization
google-research/bert: TensorFlow code and pre-trained models for BERTApr 1, 2020
TensorFlow code and pre-trained models for BERT.
The Illustrated BERT, ELMo, and co. (How NLP Cracked Transfer Learning) – JApr 1, 2020
Discussions: Hacker News (98 points, 19 comments), Reddit r/MachineLearning (164 points, 20 comments) Translations: Chinese (Simplified), French 1, French 2, Japanese, Korean, Persian, Russian, Spanish 2021 Update: I created this brief and highly accessible video intro to BERT The year 2018 has been an inflection point for machine learning models handling text (or more accurately, Natural Language Processing or NLP for short). Our conceptual understanding of how best to represent words and sentences in a way that best captures underlying meanings and relationships is rapidly evolving. Moreover, the NLP community has been putting forward incredibly powerful components that you can freely download and use in your own models and pipelines (It’s been referred to as NLP’s ImageNet moment, referencing how years ago similar developments accelerated the development of machine learning in Computer Vision tasks).
Jay Alammar – Visualizing machine learning one concept at a timeApr 1, 2020
Visualizing machine learning one concept at a time.
Disrupting Deepfakes: Adversarial Attacks on Image Translation Networks (CoApr 1, 2020
🔥🔥Defending Against Deepfakes Using Adversarial Attacks on Conditional Image Translation Networks - natanielruiz/disrupting-deepfakes
Building an Image-Taking Interface Application for Your Image Recognition MApr 1, 2020
Explore the Real-World Applications of Your Model
Brain Tumor Detection using Mask R-CNNApr 1, 2020
Mask R-CNN has been the new state of the art in terms of instance segmentation. Here I want to share some simple understanding of it to give you a first look and then we can move ahead and build our model.
Object detection & Face recognition algorithmsMar 30, 2020
Convolutional Neural Networks-Part 2: Detailed convolutional architectures enabling object-detection and face-recognition algorithms.
Big data's biggest secret: Hyperparameter tuningMar 30, 2020
The toughest part of machine learning with Spark isn't what you think it is.
Benchmark Work | Benchmarks MLCommonsMar 30, 2020
MLCommons ML benchmarks help balance the benefits and risks of AI through quantitative tools that guide responsible AI development.
How to Get Beautiful Results with Neural Style TransferMar 30, 2020
A deep dive into the tricks that make Neural Style Transfer work
Spatial Transformer NetworkMar 30, 2020
A spatial transformer network is a specialized type of convoluted neural network, or CNN, used to improve the clarity of an object in an image.
Using Snorkel For Multi-Label Annotation.Mar 18, 2020
How to use snorkel’s multi-class implementation to create multi-labels
Researchers detail TrojAI, a framework for hardening AI models against adveMar 18, 2020
In a preprint paper, researchers at Johns Hopkins detail TrojAI, a framework for hardening AI models against adversarial attacks.
Hyper-Parameter Optimization: A Review of Algorithms and ApplicationsMar 16, 2020
Since deep neural networks were developed, they have made huge contributions to everyday lives. Machine learning provides more rational advice than humans are capable of in almost every aspect of...
Getting started with the NVIDIA Jetson Nano - PyImageSearchMar 11, 2020
In this tutorial, you will learn how to get started with your NVIDIA Jetson Nano, including installing Keras + TensorFlow, accessing the camera, and performing image classification and object detection.
A Journey Into Reinforcement Learning — Temporal-Difference LearningMar 9, 2020
Optimizing value functions by bootstrapping through experience.
CompressionVAE — A Powerful and Versatile Alternative to t-SNE and UMAPMar 9, 2020
Introducing a fast, easy to use, deep learning based dimensionality reduction tool
Vincent Boucher on LinkedIn: #transformer #bert #nlpMar 9, 2020
Pre-training SmallBERTa - A tiny model to train on a tiny dataset An end to end colab notebook that allows you to train your own LM (using HuggingFace…
Deep Transfer Learning for Image ClassificationMar 9, 2020
A step-by-step tutorial from data import to accuracy evaluation
The Mechanics of Attention MechanismMar 9, 2020
TLDR: This is basically about converting the original attention paper by Yoshua Bengio’s group to flowcharts. Check the last diagram…
Deep Learning Algorithms - The Complete Guide | AI SummerMar 9, 2020
All the essential Deep Learning Algorithms you need to know including models used in Computer Vision and Natural Language Processing
Dissecting The TransformerMar 9, 2020
We saw how attention works and how it improved neural machine translation systems (see the previous blogpost), we are going to unveil the secrets behind the power of the most famous NLP models nowadays (a.k.a BERT and friends), the transformer. In this second part, we are going to dive into the details of this architecture with the aim of […]
MIT Technology Review on LinkedIn: A little-known AI method can train on your health data without threatening…Mar 9, 2020
This little-known method could very well be the answer to the greatest obstacle facing artificial intelligence's adoption in health care. (from March)
Easy Image Dataset Augmentation with TensorFlow - KDnuggetsMar 9, 2020
What can we do when we don't have a substantial amount of varied training data? This is a quick intro to using data augmentation in TensorFlow to perform in-memory image transformations during model training to help overcome this data impediment.
Learning to See Transparent ObjectsMar 9, 2020
Posted by Shreeyak Sajjan, Research Engineer, Synthesis AI and Andy Zeng, Research Scientist, Robotics at Google Optical 3D range sensors, like R...
Over 150 of the Best Machine Learning, NLP, and Python Tutorials I’ve FoundMar 9, 2020
By popular demand, I’ve updated this article with the latest tutorials from the past 12 months. Check it out here
Q-LearningMar 9, 2020
An early breakthrough in reinforcement learning — Off-policy Temporal-Difference control methods
Quick Introduction to Sentiment AnalysisMar 9, 2020
What is sentiment analysis, how to perform it, and how it can help your business.
TransformersFeb 19, 2020
Transformers are a type of neural network architecture that have been gaining popularity. Transformers were recently used by OpenAI in…
Dive Really Deep into YOLO v3: A Beginner’s GuideFeb 19, 2020
443K subscribers in the learnmachinelearning community. A subreddit dedicated to learning machine learning
Altmetric – Top 100 articles – 2019Feb 19, 2020
What research caught the public imagination in 2019? Check out our annual list of papers with the most attention.
How to train a new language model from scratch using Transformers and TokenizersFeb 19, 2020
We’re on a journey to advance and democratize artificial intelligence through open source and open science.
Reformer: The Efficient TransformerFeb 19, 2020
Posted by Nikita Kitaev, Student Researcher, UC Berkeley and Łukasz Kaiser, Research Scientist, Google Research Understanding sequential data — s...
Feature Boosting Network For 3D Pose EstimationFeb 19, 2020
In this paper, a feature boosting network is proposed for estimating 3D hand pose and 3D body pose from a single RGB image. In this method, the features learned by the convolutional layers are boosted with a new long short-term dependence-aware (LSTD) module, which enables the intermediate convolutional feature maps to perceive the graphical long short-term dependency among different hand (or body) parts using the designed Graphical ConvLSTM. Learning a set of features that are reliable and discriminatively representative of the pose of a hand (or body) part is difficult due to the ambiguities, texture and illumination variation, and self-occlusion in the real application of 3D pose estimation. To improve the reliability of the features for representing each body part and enhance the LSTD module, we further introduce a context consistency gate (CCG) in this paper, with which the convolutional feature maps are modulated according to their consistency with the context representations. We evaluate the proposed method on challenging benchmark datasets for 3D hand pose estimation and 3D full body pose estimation. Experimental results show the effectiveness of our method that achieves state-of-the-art performance on both of the tasks.
Mask R-CNNFeb 19, 2020
We present a conceptually simple, flexible, and general framework for object instance segmentation. Our approach efficiently detects objects in an image while simultaneously generating a high-quality segmentation mask for each instance. The method, called Mask R-CNN, extends Faster R-CNN by adding a branch for predicting an object mask in parallel with the existing branch for bounding box recognition. Mask R-CNN is simple to train and adds only a small overhead to Faster R-CNN, running at 5 fps. Moreover, Mask R-CNN is easy to generalize to other tasks, e.g., allowing us to estimate human poses in the same framework. We show top results in all three tracks of the COCO suite of challenges, including instance segmentation, bounding-box object detection, and person keypoint detection. Without bells and whistles, Mask R-CNN outperforms all existing, single-model entries on every task, including the COCO 2016 challenge winners. We hope our simple and effective approach will serve as a solid baseline and help ease future research in instance-level recognition. Code has been made available at: https://github.com/facebookresearch/Detectron.
Focal Loss for Dense Object DetectionFeb 19, 2020
The highest accuracy object detectors to date are based on a two-stage approach popularized by R-CNN, where a classifier is applied to a sparse set of candidate object locations. In contrast, one-stage detectors that are applied over a regular, dense sampling of possible object locations have the potential to be faster and simpler, but have trailed the accuracy of two-stage detectors thus far. In this paper, we investigate why this is the case. We discover that the extreme foreground-background class imbalance encountered during training of dense detectors is the central cause. We propose to address this class imbalance by reshaping the standard cross entropy loss such that it down-weights the loss assigned to well-classified examples. Our novel Focal Loss focuses training on a sparse set of hard examples and prevents the vast number of easy negatives from overwhelming the detector during training. To evaluate the effectiveness of our loss, we design and train a simple dense detector we call RetinaNet. Our results show that when trained with the focal loss, RetinaNet is able to match the speed of previous one-stage detectors while surpassing the accuracy of all existing state-of-the-art two-stage detectors. Code is at: https://github.com/facebookresearch/Detectron.
A neural net solves the three-body problem 100 million times fasterFeb 19, 2020
Machine learning provides an entirely new way to tackle one of the classic problems of applied mathematics.
Table Detection and Extraction Using Deep LearningFeb 19, 2020
Extract table from image with Nanonets table detection OCR. Learn OCR table Deep Learning methods to detect tables in images or PDF documents.
2020 Guide to Synthetic Media | Paperspace BlogFeb 19, 2020
From deepfakes and virtual celebrities to "fake news," we'll cover popular cases of media synthesis and the research publications detailing how it's done.
Turing-NLG: A 17-billion-parameter language model by MicrosoftFeb 19, 2020
This figure was adapted from a similar image published in DistilBERT. Turing Natural Language Generation (T-NLG) is a 17 billion parameter language model by Microsoft that outperforms the state of the art on many downstream NLP tasks. We present a demo of the model, including its freeform generation, question answering, and summarization capabilities, to academics […]
Understanding GauGAN Part 1 | Paperspace BlogFeb 19, 2020
In this article we explain what GauGANs are, and how their architecture and objective functions work. This is part of a series on Nvidia GauGANs.
An End to End Introduction to GANs using Keras - MLWhizDec 23, 2019
I bet most of us have seen a lot of AI-generated people faces in recent times, be it in papers or blogs. We have reached a stage where it is becoming increasingly difficult to distinguish between actual human faces and faces that are generated by Artificial Intelligence. In this post, I will help the reader to understand how they can create and build such applications on their own. I will try to keep this post as intuitive as possible for starters while not dumbing it down too much. This post is about understanding how GANs work.
Automatic Text Summarization in a Nutshell - KDnuggetsDec 23, 2019
Marketing scientist Kevin Gray asks Dr. Anna Farzindar of the University of Southern California about Automatic Text Summarization and the various ways it is used.
5 Techniques to Prevent Overfitting in Neural NetworksDec 14, 2019
In this article, I will present five techniques to prevent overfitting while training neural networks.
The Neural Network Zoo - The Asimov InstituteDec 14, 2019
With new neural network architectures popping up every now and then, it’s hard to keep track of them all. Knowing all the abbreviations being thrown around (DCIGN, BiLSTM, DCGAN, anyone?) can be a bit overwhelming at first. So I decided to compose a cheat sheet containing many of those architectures. Most of these are neural networks, some are completely […]
Neural Networks 201: All About AutoencodersDec 14, 2019
Autoencoders can be a very powerful tool for leveraging unlabeled data to solve a variety of problems, such as learning a "feature extractor" that helps build powerful classifiers, finding anomalies, or doing a Missing Value Imputation.
Research Guide: Model Distillation Techniques for Deep LearningDec 14, 2019
Knowledge distillation is a model compression technique whereby a small network (student) is taught by a larger trained neural network (teacher). The smaller network is trained to behave like the large neural network. This enables the deployment of such models… Continue reading Research Guide: Model Distillation Techniques for Deep Learning
Computing Receptive Fields of Convolutional Neural NetworksDec 14, 2019
Detailed derivations and open-source code to analyze the receptive fields of convnets.
The 5 Algorithms for Efficient Deep Learning Inference on Small Devices - Fritz aiDec 14, 2019
With recent developments in deep learning, neural networks are getting larger and larger. For example, in the ImageNet recognition challenge, the winning model, from 2012 to 2015, increased in size by 16 times. And in just one year, for Baidu’s… Continue reading The 5 Algorithms for Efficient Deep Learning Inference on Small Devices
Demystifying Object Detection and Instance Segmentation for Data ScientistsDec 14, 2019
Easy Explanation!!! I tried
MrSyee/pg-is-all-you-need: Policy Gradient is all you need! A step-by-stepDec 14, 2019
Policy Gradient is all you need! A step-by-step tutorial for well-known PG methods. - MrSyee/pg-is-all-you-need
Imaging technique spots colorectal tumors with 100% accuracyDec 14, 2019
A new method that provides accurate, real-time, computer-aided diagnosis of colorectal cancer identified tumors with 100% accuracy in a new pilot study.
Powerful computer vision algorithms are now small enough to run on your phoneNov 24, 2019
Researchers have shrunk state-of-the-art computer vision models to run on low-power devices. Growing pains: Visual recognition is deep learning’s strongest skill. Computer vision algorithms are analyzing medical images, enabling self-driving cars, and powering face recognition. But training models to recognize actions in videos has grown increasingly expensive. This has fueled concerns about the technology’s carbon…
Research Guide: Advanced Loss Functions for Machine Learning Models - KDnuggetsNov 7, 2019
This guide explores research centered on a variety of advanced loss functions for machine learning models.
Learning the Differences between Softmax and Sigmoid for Image ClassificatiAug 30, 2019
Week Two - 100 Days of Code Challenge
Keras Mask R-CNN - PyImageSearchAug 30, 2019
In this tutorial you will learn how to use Keras, Mask R-CNN, and Deep Learning for instance segmentation (both with and without a GPU).
Deep Learning: Which Loss and Activation Functions should I use?Aug 30, 2019
The purpose of this post is to provide guidance on which combination of final-layer activation function and loss function should be used in…
Scaling Jupyter notebooks with Kubernetes and TensorflowAug 29, 2019
In this article, you will explore how you can leverage Kubernetes, Tensorflow and Kubeflow to scale your models without having to worry about scaling the infrastructure.
Open Questions about Generative Adversarial NetworksAug 29, 2019
What we'd like to find out about GANs that we don't know yet.
YOLO: Real-Time Object DetectionAug 29, 2019
You only look once (YOLO) is a state-of-the-art, real-time object detection system.
Text AnalyticsAug 29, 2019
Medallia's text analytics software tool provides actionable insights via customer and employee experience sentiment data analysis from reviews & comments.
Word2vec: fish music = bass | graceaveryAug 20, 2019
Nvidia’s GauGAN has been used to create 500,000 imagesAug 5, 2019
Nvidia's GauGAN tool has been used to create more than 500,000 images, the company announced at the SIGGRAPH 2019 conference in Los Angeles.
Is it a Duck or a Rabbit? For Google Cloud Vision, it depends how the image is rotated. [OC]Mar 10, 2019
27K votes, 533 comments. 21M subscribers in the dataisbeautiful community. DataIsBeautiful is for visualizations that effectively convey information…
vdumoulin/conv_arithmetic: A technical report on convolution arithmetic in the context of deep learningNov 6, 2018
A technical report on convolution arithmetic in the context of deep learning - vdumoulin/conv_arithmetic
Financial ServicesOct 28, 2018
Learn how SymphonyAI’s financial crime prevention solutions quickly deploy to uncover your risks, improve investigations, and transform your operations.
Truly, neurally, deeplyOct 28, 2018
Scientists are developing AI systems called deep neural nets that can read medical images and detect disease — with astonishing efficiency
One Deep Learning Benchmark to Rule Them AllAug 30, 2018
Over the last few years we have detailed the explosion in new machine learning systems with the influx of novel architectures from deep learning chip
https://blog.statsbot.co/data-structures-related-to-machine-learning-algorithms-5edf77c8bbf4Jun 8, 2018
Neural networks for algorithmic trading. Multimodal and multitask deep learningJun 8, 2018
Here we are again! We already have four tutorials on financial forecasting with artificial neural networks where we compared different…
A Gentle Introduction to RNN Unrolling - MachineLearningMastery.comJun 8, 2018
Recurrent neural networks are a type of neural network where the outputs from previous time steps are fed as input to the current time step. This creates a network graph or circuit diagram with cycles, which can make it difficult to understand how information moves through the network. In this post, you will discover the concept of unrolling or unfolding…
The Matrix Calculus You Need For Deep LearningJun 8, 2018
Most of us last saw calculus in school, but derivatives are a critical part of machine learning, particularly deep neural networks, which are trained by optimizing a loss function. This article is an attempt to explain all the matrix calculus you need in order to understand the training of deep neural networks. We assume no math knowledge beyond what you learned in calculus 1, and provide links to help you refresh the necessary math where needed.
agnusmaximus/Word2Bits: Quantized word vectors that take 8x-16x less space than regular word vectorsJun 8, 2018
Quantized word vectors that take 8x-16x less space than regular word vectors - agnusmaximus/Word2Bits
LouieYang/deep-photo-styletransfer-tf: Tensorflow (Python API) implementatiJun 8, 2018
Tensorflow (Python API) implementation of Deep Photo Style Transfer - LouieYang/deep-photo-styletransfer-tf
Deep Voice 3: Scaling Text-to-Speech with Convolutional Sequence LearningJun 8, 2018
We present Deep Voice 3, a fully-convolutional attention-based neural text-to-speech (TTS) system. Deep Voice 3 matches state-of-the-art neural speech synthesis systems in naturalness while...
How to build a deep learning model in 15 minutes – tech-at-instacartJun 8, 2018
An open source framework for configuring, building, deploying and maintaining deep learning models in Python.
Generative Adversarial Networks (GANs): Engine and Applications - Data ScieJun 8, 2018
Generative adversarial networks (GANs) are a class of neural networks that are used in unsupervised machine learning. They help to solve such tasks as image generation from descriptions, getting high resolution images from low resolution ones, predicting which drug could treat a certain disease, retrieving images that contain a given pattern, etc. Our team asked… Read More »Generative Adversarial Networks (GANs): Engine and Applications
Learning to write programs that generate imagesJun 8, 2018
Through a human’s eyes, the world is much more than just the images reflected in our corneas. For example, when we look at a building and admire the intricacies of its design, we can appreciate...
kjw0612/awesome-rnn: Recurrent Neural Network - A curated list of resourcesMay 27, 2018
Recurrent Neural Network - A curated list of resources dedicated to RNN - kjw0612/awesome-rnn
Topic: computer-visionMay 12, 2018
GitHub is where people build software. More than 100 million people use GitHub to discover, fork, and contribute to over 420 million projects.
AutonomousDrivingCookbook/AirSimE2EDeepLearning at master · Microsoft/AutonMay 12, 2018
Scenarios, tutorials and demos for Autonomous Driving - microsoft/AutonomousDrivingCookbook
Tearing Apart Google’s TPU 3.0 AI CoprocessorMay 12, 2018
Google did its best to impress this week at its annual IO conference. While Google rolled out a bunch of benchmarks that were run on its current Cloud TPU
LightTag is a text annotation platform for data scientists creating AI traiMay 11, 2018
LightTag, a newly launched startup from a former NLP researcher at Citi, has built a "text annotation platform" designed to assist data scientists who
Google Announces 8x Faster TPU 3.0 For AI, Machine Learning - ExtremeTechMay 10, 2018
Google's new TPUs are here -- and they're quite a bit faster than last year's model.
10 Command Line Recipes for Deep Learning on Amazon Web Services - MachineApr 10, 2018
Running large deep learning processes on Amazon Web Services EC2 is a cheap and effective way to learn and develop models. For just a few dollars you can get access to tens of gigabytes of RAM, tens of CPU cores, and multiple GPUs. I highly recommend it. If you are new to EC2 or the Linux command line, there are…
Baidu Apollo Releases Massive Self-driving Dataset; Teams Up With Berkeley DeepDriveMar 18, 2018
Baidu this Thursday announced the release of ApolloScape, billed as the world’s largest open-source dataset for autonomous driving…
Baidu’s voice cloning AI can swap genders and remove accentsMar 1, 2018
China's tech titan Baidu just upgraded Deep Voice. The voice-cloning AI now works faster than ever and can swap a speaker's gender or change their accent.
1703.09039.pdfFeb 21, 2018
Choosing the right activation function in a neural networkFeb 12, 2018
Stay up-to-date on the latest data science and AI news in the worlds of artificial intelligence, machine learning, deep learning, implementation, and more.
Region of interest pooling explainedFeb 2, 2018
Dive into our detailed explanation of what is Region of Interest (RoI) Pooling in deep learning. Enhance your skills. Discover more now!
One model to learn them allJan 12, 2018
The 3 Tricks That Made AlphaGo Zero WorkJan 12, 2018
There were many advances in Deep Learning and AI in 2017, but few generated as much publicity and interest as DeepMind’s AlphaGo Zero. This…
Deep-Learning-Papers-Reading-Roadmap/README.md at master · songrotek/Deep-LDec 27, 2017
Deep Learning papers reading roadmap for anyone who are eager to learn this amazing tech! - floodsung/Deep-Learning-Papers-Reading-Roadmap
https://blog.openai.com/openai-baselines-ppo/Dec 27, 2017
machine learning benchmarks - Google SearchDec 27, 2017
An Intuitive Guide to Deep Network ArchitecturesDec 27, 2017
How and why do different Deep Learning models work? We provide an intuitive explanation for 3 very popular DL models: Resnet, Inception, and Xception.
Gentle Introduction to Generative Long Short-Term Memory Networks - MachineLearningMastery.comDec 27, 2017
The Long Short-Term Memory recurrent neural network was developed for sequence prediction. In addition to sequence prediction problems. LSTMs can also be used as a generative model In this post, you will discover how LSTMs can be used as generative models. After completing this post, you will know: About generative models, with a focus on generative models for text called…
A Gentle Introduction to Exploding Gradients in Neural NetworksDec 18, 2017
Exploding gradients are a problem where large error gradients accumulate and result in very large updates to neural network model weights during training. This has the effect of your model being unstable and unable to learn from your training data. In this post, you will discover the problem of exploding gradients with deep artificial neural networks. After completing this post,…
How Adversarial Attacks WorkNov 11, 2017
Emil Mikhailov is the founder of XIX.ai [http://XIX.ai] (YC W17). Roman Trusov is a researcher at XIX.ai. Recent studies by Google Brain have shown that any machine learning classifier can be tricked to give incorrect predictions, and with a little bit of skill, you can get them to give pretty much any result you want. This fact steadily becomes worrisome as more and more systems are powered by artificial intelligence — and many of them are crucial for our safe and comfortable life. Banks, sur
wiseodd/generative-models: Collection of generative models, e.g. GAN, VAE iNov 11, 2017
Collection of generative models, e.g. GAN, VAE in Pytorch and Tensorflow. - wiseodd/generative-models
awesome-deep-learning-papers/README.md at master · terryum/awesome-deep-leaDec 26, 2016
The most cited deep learning papers.
Semiconductor Engineering .:. Making Waves In Deep LearningOct 12, 2016
Making Waves in Deep Learning How deep learning applications will map onto a chip.
AI & ML Projects with PythonOct 24, 2011
In this article, I'll take you through a list of guided projects to master AI & ML with Python. AI & ML Projects with Python.
deepfakes
OpenAI’s Sora Makes Disinformation Extremely Easy and Extremely RealOct 3, 2025
The new A.I. app generated videos of store robberies and home intrusions — even bomb explosions on city streets — that never happened.
New Zemeckis film used AI to de-age Tom Hanks and Robin WrightNov 5, 2024
Time-hopping film Here used AI trained on every Tom Hanks movie to make him appear young again.
Want to spot a deepfake? Look for the stars in their eyes | The Royal AstroJul 20, 2024
In an era when the creation of artificial intelligence (AI) images is at the fingertips of the masses, the ability to detect fake pictures – particularly deepfakes...
Synthesia’s hyperrealistic deepfakes will soon have full bodiesJun 25, 2024
With bodies that move and hands that wave, deepfakes just got a whole lot more realistic.
How to spot a manipulated imageMar 11, 2024
Here are some clues that can help you identify if an image has been altered or faked.
10 AI Deepfake Generators for Photo and Video in 2023Sep 17, 2023
Video and audio recordings of people saying or doing things they never said or did can be created using AI deepfake generators and software tools that use artificial intelligence to make convincing fakes. A neural network is trained using a massive collection of authentic media featuring the target individual to accomplish this. The web is trained to recognize individuals and imitate their appearance, speech, and behavior. There is a wide range of potential good and bad uses for AI deepfake generators. You can use them to make comedic videos or instructional materials. Here are some AI deepfake generators for photos
The People Onscreen Are Fake. The Disinformation Is Real. (Published 2023)Feb 12, 2023
For the first time, A.I.-generated personas, often used for corporate trainings, were detected in a state-aligned information campaign — opening a new chapter in online manipulation.
TheLastBen/fast-stable-diffusion: fast-stable-diffusion, 25-50% speed incrDec 10, 2022
fast-stable-diffusion + DreamBooth.
AI image generation tech can now create life-wrecking deepfakes with easeDec 10, 2022
AI tech makes it trivial to generate harmful fake photos from a few social media pictures.
The New Normal: The Coming Tsunami of FakeryAug 27, 2022
How the Dead Internet Theory is fast becoming reality thanks to zero, marginal-cost content generated at infinite scale
To Uncover a Deepfake Video Call, Ask the Caller to Turn Sideways - MetaphyAug 8, 2022
Metaphysic revolutionizes Hollywood with AI, transforming film production, VFX, and entertainment. Explore the future of AI in Hollywood
Google bans deepfake-generating AI from ColabJun 7, 2022
In a recent policy change, Google has banned deepfake-generating AI projects from Colab, its platform for hosting and running arbitrary Python code.
Are You Better Than a Machine at Spotting a Deepfake?Mar 15, 2022
New research shows that detecting digital fakes generated by machine learning might be a job best done with humans still in the loop.
New AI tool detects Deepfakes by analyzing light reflections in the eyesMar 14, 2021
Computer scientists from the University at Buffalo used the method to successfully detect Deepfakes taken from This Person Does Not Exist.
AI researchers use heartbeat detection to identify deepfake videosNov 3, 2020
AI researchers are using heartbeat detection to identify deepfake videos and even to figure out what kind of generative model created a deepfake.
Inside the strange new world of being a deepfake actor | MIT Technology RevNov 2, 2020
There’s an art to being a performer whose face will never be seen.
This Person Does Not ExistNov 2, 2020
Hacked Billboards can Make Teslas See 'Phantom Objects' and Cause HavocNov 2, 2020
Tesla's Autopilot system relies on vision rather than LIDAR, which means it can be tricked by messages on billboards and projections created by hackers.
Facial Recognition: Types of Attacks and Anti-Spoofing TechniquesOct 11, 2020
Dissolving the myth of easy-to-fake face recognition
Signs You’re Following A Fake Twitter Account… – NixIntelMar 13, 2020
The challenge of dealing with fake accounts that spread disinformation is probably one of the greatest challenges facing the large social media companies. Most methods used to detect fake Twitter a…
2020 Guide to Synthetic Media | Paperspace BlogFeb 19, 2020
From deepfakes and virtual celebrities to "fake news," we'll cover popular cases of media synthesis and the research publications detailing how it's done.
The Hidden Signs That Can Reveal a Fake PhotoFeb 9, 2020
A picture may say a thousand words, but what if the photograph has been fabricated? There are ways to spot a fake – you just have to look closely enough.
How to Spot a Perfect Fake: The World’s Top Art Forgery DetectiveJan 12, 2020
Forgeries have become so good – and so costly – that Sotheby’s has brought in its own in-house fraud-busting expert.
Spotting AI-generated facesDec 22, 2018
Computers can generate faces that look real. What a time to be alive. As it becomes easier to do so, you can bet that the software will be used at some point for less innocent reasons. You should p…
deepseek
DeepSeek V3.1 Rivals GPT-5 With 685B Parameter Model - DataconomyAug 22, 2025
In January 2025, DeepSeek, a Chinese AI startup, launched R1, an AI model that rivaled top-tier LLMs from OpenAI and Anthropic. Built at a fraction of the
DeepSeek Debrief: 128 Days LaterJul 6, 2025
SemiAnalysis is hiring an analyst in New York City for Core Research, our world class research product for the finance industry. Please apply here It’s been a bit over 150 days since the launc…
DeepSeek R2 AI Model Rumors Begin to Swirl Online; Reported to Feature 97% Lower Costs Compared to GPT-4…Apr 26, 2025
DeepSeek is set to drop another model pretty soon, as details about their next DeepSeek R2 model have surfaced on the internet
How DeepSeek Rewrote the Transformer [MLA]Mar 28, 2025
Thanks to KiwiCo for sponsoring today’s video! Go to https://www.kiwico.com/welchlabs and use code WELCHLABS for 50% off your first monthly club crate or for...
delegation
How to Delegate More Effectively: Four ApproachesFeb 29, 2024
Leaders’ delegation decisions should reflect the trust they have in both their people and organizational processes.
Book Review: Turn the Ship Around! How to Create Leadership at Every LevelJul 18, 2022
I just had the pleasure of reading David Marquet's book, Turn the Ship Around!: A True Story of Turning Followers into Leaders*, and I have been encouraging everyone I see
Identify Leaders By Giving People Assignments - Brad FeldJul 18, 2022
As the Boulder Startup Community evolved, I started to become inundated with people who wanted to get involved. Some of these were locals while others where people looking to move to Boulder, or who had recently moved here. Some where people known to me while others were new relationships. As the momentum, size, impact, and reach […]
Be a Minimally Invasive ManagerJul 18, 2022
It’s not your job to carry the ball, but to run interference for those who do.
To Be a Great Leader, You Have to Learn How to Delegate WellAug 20, 2019
One of the most difficult transitions for leaders to make is the shift from doing to leading . As a new manager you can get away with holding on to work. Peers and bosses may even admire your willingness to keep “rolling up your sleeves” to execute tactical assignments. But as your responsibilities become more complex, the difference between an effective leader and a super-sized individual contributor with a leader’s title is painfully evident. To raise the ceiling of your leadership potential, you need to extend your presence through the actions of others, engaging people so that they contribute their best work to your shared priorities. To set the table for effective delegation, make sure you express why something is important to you, confirm that your expectations for the work have been clearly communicated, ask how much of your involvement they need, and practice saying no. Don’t let a focus on execution hold you back from the big-picture work of leading. If you delegate with these principles in mind, the work will get done, because the right people will be focused on the right tasks.
Complete Guide to Delegation for LeadersAug 31, 2017
My earliest memories of delegation involve elementary school group projects in which my classmates didn’t take the assignment seriously. More often than not, this left me in the undesirable position…
delusions
The Happiest Man in the WorldJan 14, 2024
Harry’s psychotic delusions bring him cheer. His psychiatrist embraces them.
The Faulty Weathermen of the MindSep 25, 2023
Could a theory from the science of perception help crack the mysteries of psychosis?
Dunning-Kruger meets fake news | Ars TechnicaJun 5, 2021
People who overrate their media savviness share more misleading material.
demand-mgmt
Speedrunning the Skill of DemandApr 21, 2025
How to get better, faster at the skill of uncovering demand, which underpins the skill domains of sales, marketing, and product.
A New Approach to Production and Inventory PlanningSep 27, 2023
Disruptions have become a way of life for manufacturers. But the production and inventory planning process that many companies, especially SMEs, use are not capable of handling the uncertainty. A new inexpensive method that was developed in research involving two companies can. It doesn’t have to be automated but can be.
Inventing DemandAug 22, 2022
Plus! BNPL; Coopetition; Marketplaces and Ads; Last Mile, Last Users; Value and Rates; Diff Jobs
deno
Fresh - The simple, approachable, productive web framework.Jun 14, 2022
Fresh features just-in-time edge rendering, island based interactivity, and zero-configuration TypeScript support. Fast to write; fast to run.
Your First Deno Server in 60 LinesJun 1, 2020
Today we're going to write our first Deno server in 60 lines.
DenoMay 16, 2020
Deno features improved security, performance, and developer experience compared to its predecessor. It's a great time to upgrade your Node.js project to run on Deno.
depth-estimation
How to Estimate Depth from a Single ImageApr 29, 2024
Author: Jacob Marks (Machine Learning Engineer at Voxel51) Run and Evaluate Monocular Depth...
Monocular Depth EstimationApr 26, 2024
**Monocular Depth Estimation** is the task of estimating the depth value (distance relative to the camera) of each pixel given a single (monocular) RGB image. This challenging task is a key prerequisite for determining scene understanding for applications such as 3D scene reconstruction, autonomous driving, and AR. State-of-the-art methods usually fall into one of two categories: designing a complex network that is powerful enough to directly regress the depth map, or splitting the input into bins or windows to reduce computational complexity. The most popular benchmarks are the KITTI and NYUv2 datasets. Models are typically evaluated using RMSE or absolute relative error. Source: [Defocus Deblurring Using Dual-Pixel Data ](https://arxiv.org/abs/2005.00305)
Computer Vision | Papers With CodeDec 21, 2020
**Depth Estimation** is the task of measuring the distance of each pixel relative to the camera. Depth is extracted from either monocular (single) or stereo (multiple views of a scene) images. Traditional methods use multi-view geometry to find the relationship between the images. Newer methods can directly estimate depth by minimizing the regression loss, or by learning to generate a novel view from a sequence. The most popular benchmarks are KITTI and NYUv2. Models are typically evaluated according to a RMS metric. Source: [DIODE: A Dense Indoor and Outdoor DEpth Dataset ](https://arxiv.org/abs/1908.00463)
design
5 Products Made from Cardboard: The Bench Supports 300 Pounds - Yanko DesignFeb 18, 2026
Cardboard was once seen as just packaging, but it is now becoming a design hero. As sustainability and cost efficiency drive modern innovation, this humble material is being reimagined for far more than shipping boxes. Lightweight, strong, and easily recyclable, it inspires designers to create accessible, eco-friendly products without compromising on aesthetics or performance. From
Beth Mathews Design — Parts List TypefaceDec 12, 2025
A typeface inspired by vintage forms, lists and gas station ephemera.
Midea Built A Dr. Strange-inspired Multi-Arm Robot… Humanity Is Absolutely Cooked - Yanko DesignDec 11, 2025
There is a moment in Infinity War where Doctor Strange fans out into a halo of spectral arms and every animator in the room probably high fived. Midea’s new Miro U looks like someone freeze framed that shot, printed it, and walked it down the hall to the robotics lab with the caption “do this,
Stickerbox: Kids Say an Idea, AI Prints It as a Sticker in Seconds - Yanko DesignDec 5, 2025
https://www.youtube.com/watch?v=WxN-MqM_RKI Smart speakers for kids feel like a gamble most parents would rather skip. The promise is educational content and hands-free help, but the reality often involves screens lighting up at bedtime, algorithms deciding what comes next, and a lingering suspicion that someone is cataloging every question your child shouts into the room. The tension
Open Printer Gives Makers a Fully Open Flexible Inkjet PlatformOct 2, 2025
https://player.vimeo.com/video/1117858411 Traditional inkjet printers have become increasingly frustrating for anyone who values flexibility, repairability, or creative experimentation. Locked-down firmware prevents modifications, expensive proprietary cartridges drain budgets, and when something breaks, you're often better off buying a new printer than attempting repairs. This throwaway culture feels particularly wasteful when you consider how much useful technology gets
10 Best Japanese Stationery To Achieve Peak Productivity: Ultimate List For Next-Level EfficiencyAug 18, 2025
Back-to-school shopping usually means grabbing whatever's cheapest at the campus bookstore, but Japanese stationery culture operates on a completely different level. While you're stocking up on basic supplies, Japanese designers are obsessing over how every tiny detail can make your semester smoother, more enjoyable, and genuinely more productive. It's the difference between tools that barely
Pricing Pages — A Curated Gallery of Pricing Page DesignsAug 11, 2025
Discover handpicked pricing page examples from SaaS companies, ecommerce brands, and digital agencies. Find design inspiration for your next pricing page design
Canva skills are what people hiring graphic designers increasingly want to seeJul 26, 2025
Canva, once maligned by the design industry, is becoming a standard. Mentions of it in graphic design job listings are way up this year.
Tools and resources our designers are using right nowApr 14, 2025
A list of what tools and resources are most relevant for our designers right now.
https://speckyboy.com/glow-effects-css-javascript/Mar 15, 2025
Glow effects are a design staple, adding style and setting the mood. Here’s a collection of CSS and JavaScript snippets for creating those stunning glow effects.
uchū — the color palette for internet loversFeb 17, 2025
uchū is the color palette for internet lovers, by NetOperator Wibby.
It’s Time To Retire ‘Millennial Grey’ – Why The Neutral Interior Color Desperately Needs To Go - Yanko DesignJan 27, 2025
For a hot minute, gray was everywhere. Not just a little bit here and there—gray dominated. Gray walls, gray furniture, gray kitchen cabinets, gray exteriors. It was the unofficial uniform of home design in the 2010s, with its cold yet "modern" vibe signaling minimalism, sophistication, and, well, the ability to stage a house for resale.
I Can’t Stop Thinking About Lenovo’s Brilliant Modular Mouse Concept at CES 2025 - Yanko DesignJan 12, 2025
You go to a tech expo like CES expecting to be absolutely wowed by phones, laptops, GPUs, cars, and all sorts of prominent product categories. I went to CES 2025 and was wowed by a mouse... yes, a wireless mouse that connects to your computer. Designed by the folks at Lenovo, the AdaptX Mouse easily
Sustainable Chic: Exploring the 10 Timeless Principles of Scandinavian Product Design - Yanko DesignJan 6, 2025
Scandinavian product design is celebrated for its functionality, minimalist aesthetics, and natural beauty. At its core, this design philosophy emphasizes simplicity and the harmonious integration of form and function. The use of clean lines, uncluttered spaces, and neutral color palettes reflects a cultural appreciation for minimalism and practicality. Scandinavian design often incorporates elements of nature,
Why UX is more important than UIDec 31, 2024
“I want to make it pop!”, but not at the expense of your customer experience. Here’s why.
20+ Best Coupon & Voucher Print Templates – SpeckyboyDec 8, 2024
A collection of professional and easy-to-customize coupon and voucher print templates. We have templates for Photoshop, InDesign, Illustrator, and Figma.
Beyond the Basics: Top 10 Cutting-Edge Trends in Stationery Design - Yanko DesignOct 31, 2024
Stationery remains essential, adapting to global trends like sustainability, and minimalism, and bridging the gap between digital and analog domains. With technological advancements, stationery for school and office settings is progressing towards smarter, sustainable products, transforming traditional items into symbols of productivity and creativity. This transformation underscores a fusion of innovation and timeless design, enhancing
About UsJun 13, 2024
ttt30ga/awesome-product-design: A collection of bookmarks, resources, articMay 30, 2024
A collection of bookmarks, resources, articles for product designers. - ttt30ga/awesome-product-design
Complicated SticksMay 20, 2024
Potential in place of purpose is what separates an iPad from an iPod, blockchains from databases, and generative AI from text editors. The more complex the product, the more potential it has to have potential. The more it can distract from it's own lack of usefulness.
The Amazing Psychology of Japanese Train StationsMay 20, 2024
The nation’s famed mastery of rail travel has been aided by some subtle behavioral tricks.
What is Jesmonite and Why is it Gaining Popularity in Contemporary ProductApr 21, 2024
https://www.youtube.com/watch?v=81hX8WAdNXs Jesmonite, a flexible substance crafted from a fusion of gypsum sourced from sedimentary rock and water-based acrylic resin, is gaining popularity among artists, eco-conscious enterprises, and DIY enthusiasts. This material emerged in the UK in 1984 and is credited to Peter Hawkins. Jesmonite is known for its durability, flame resistance, and impact resistance, is
10 Color Inspiration Hacks Revealed by Web Design Experts Feb 15, 2024
Unlock creativity with ten expert-recommended color inspiration hacks for Web Design. Boost your projects with these tips from industry leaders and design pros.
Paper Lanterns, Party Lights, Wedding & DecorationFeb 10, 2024
Paper Lantern Store is the world's LARGEST online shop for paper lanterns, with thousands colors and styles! Free Shipping on orders over $99! Shop party string lights, wedding decor and more at guaranteed LOW prices. Find party supplies, star lanterns, parasols and to make your event or celebration unforgettable!
10 Cool CodePen Demos (June 2023)Jul 7, 2023
A collection of 10 cool and exciting front-end demos shared on CodePen during June 2023
8 Tips for Shaping Product Aesthetics with UI Mood BoardsJun 10, 2023
Discover what UI moodboards are and learn how they can help you perfect product aesthetics. Get our do's and dont's of UI mood board.
How Cookie Jars Capture American KitschApr 6, 2023
The cookie jar continues to be a vessel for cheeky self expression, if not for cookies themselves.
Custom Logo Design Services. Professional Logos OnlineDec 21, 2022
Get a professional logo from the #1 choice for logo design. Original designs. Award-winning designers. Real human customer service. Quality guaranteed.
Durable DesignNov 5, 2022
The Playful Power of Card Design UIOct 20, 2022
Learn the pros/cons and best practices for card design UI, a popular interface design elements. Plenty of examples included, so dive in!
5 Figma Alternatives for UI & UX Designers - Stack DiarySep 16, 2022
Interested in Figma alternatives? This article covers the best choices for professional UI & UX designers. Free and paid.
The Obsessive Pleasures of Mechanical-Keyboard TinkerersSep 5, 2022
On the right machine, typing can be like playing a Steinway grand. Is tactile perfection possible?
The Design of Everyday Things — Book Summary & NotesJul 18, 2022
This is my summary and notes from The Design of Everyday Things by Don Norman. Please use the link if you decide to buy the book after…
Life in Motion: A Guide to Animating Mobile Data VisualizationsJul 6, 2022
Animation can help people make sense of all the data at their fingertips.
Eye-Catching Typography To Get More LeadsJul 6, 2022
Noupe passionately delivers stylish and dynamic news for designers and Web developers across the globe on all subjects of design; ranging from CSS, Photography, JavaScript, Web design, Graphics, Typography and much more.
An inside look at how Figma ships productJul 5, 2022
Designing the fastest way to keep an entire company up-to-date on our roadmap using a Coda doc and a bit of social engineering.
UX vs. UI: Guide to Distinguishing User Experience and User Interface DesigJun 23, 2022
Read this guide to learn how to Distinguish between User Experience and User Interface Design.
The Best SaaS Landing page examples I’ve seen (+ their secrets for conversion)Jun 23, 2022
SaaS Landing page inspiration is usually "pretty" but not conversion/result driven so in this article, I compiled the best SaaS Landing pages examples I've seen and broke-down their secrets for conversions!
How We Redesigned Our Product in Less Than a WeekJun 23, 2022
The 6-step process is an adapted version of the process Google Ventures taught us. It's applicable whether you’re a startup or a Fortune 500 company.
Designers take note: a freemium version of Photoshop is in the worksJun 22, 2022
Adobe Photoshop is still the king of the graphics software industry, by name if not in practice. It is still the bread and butter of artists, designers, illustrators, and creatives, even when there are more focused applications available, like ones for making comics or manga, for example. Despite its popularity, getting legitimate access to Photoshop
6 In-demand Marketing Skills for Your Design CVJun 21, 2022
In today’s tech-savvy world, being a great designer is not all about being a whiz at tools such as Adobe Photoshop and Adobe Illustrator. The job is
You’re not still using “Read More” are you?Jun 21, 2022
It’s probably not the first time you’ve heard that using links like “Read More” or “Click Here” is bad practice. This topic has been…
15 Beautiful Color Gradients using CSSJun 12, 2022
👋, I am here with another list. In this post I have enlisted 15 aesthetic color gradients using CSS...
Style TilesJun 4, 2022
A Style Tile is a design deliverable consisting of fonts, colors and interface elements that communicates the evolution of a visual brand for the web. Learn how to use them here.
Google's six rules for great data design - Fast CompanyJun 2, 2022
Google's data viz team, formed just last year, has put out best practices for designing charts.
gztchan/awesome-design: 🌟 Curated design resources from all over the world.May 28, 2022
🌟 Curated design resources from all over the world. - gztchan/awesome-design
CSS Tips - Marko Denic - Web DeveloperMay 12, 2022
CSS tips and tricks you will not see in most tutorials.
Basic Color TheoryMar 28, 2022
Color theory encompasses a multitude of definitions, concepts and design applications. Basic concepts. The Color Wheel, Color Harmony,Color Context
Interactive: The secret to hotel room design is part art, part scienceFeb 24, 2022
There’s more than meets the eye to room design
Smashing NewsletterFeb 13, 2022
10 Great Sites for UI Design PatternsJan 29, 2022
We’ve put together a list of some of the best places to find UI design patterns on the web—so you don’t have to spend your whole life redesigning the wheel.
Why Japanese Web Design Is So… DifferentJan 29, 2022
Building Your Color Palette - Refactoring UIJan 29, 2022
Learn how to design awesome UIs by yourself using specific tactics explained from a developer's point-of-view.
How to design better buttonsJan 29, 2022
A button is an interactive element that results in the action described on it. If it says “save” on a button, clicking it will most likely “save” something. It’s also one of the most important interactive elements of any digital product. It
Weber’s Law - NeuroLogica BlogJan 29, 2022
I confess I have never heard (or at least don't remember ever hearing) about Weber's Law (pronouned vayber) until reading about it with this news item. It is the Law of Just Noticeable Differences. It deals with the minimum difference in a stimulus necessary to notice. While clearly established, and there are many hypotheses to
7 Rules for Creating Gorgeous UI (Part 2)Jan 29, 2022
A guide to visual aesthetics, written by a nerd
Eight Habits of Expert Software Designers: An Illustrated GuideJan 29, 2022
The best designers employ specific habits, learned practices, and observed principles when they work. Here are a few of them.
UX Crash Course: User PsychologyJan 29, 2022
My mission for 2014 was to get more people started in User Experience (UX) Design. In January, hundreds of thousands of people did the original UX Crash Course and it was translated into Spanish, Portuguese and Korean by amazing volunteers. In May we continued with a User Psychology lesson every day.
Want to ditch Pinterest? Here are the best alternatives for visual inspiration - Fast CompanyJan 29, 2022
If the recent discrimination allegations against Pinterest are leaving you uninspired (if not quesy), here are some great alternatives.
How to design a logo: 15 pro tipsJan 23, 2022
The golden rules of how to design a logo for successful branding, from the idea to implementation.
Never use the word “User” in your codeJan 23, 2022
You’re six months into a project when you realize a tiny, simple assumption you made at the start was completely wrong. And now you need to fix the problem while keeping the existing system running—with far more effort than it would’ve taken if you’d just gotten it right in the first place. Today I’d like to tell you about one common mistake, a single word that will cause you endless trouble. I am speaking, of course, about “users”. There are two basic problems with this word: “User” is almost never a good description of your requirements. “User” encourages a fundamental security design flaw. The concept “user” is dangerously vague, and you will almost always be better off using more accurate terminology.
Brilliant Barcode DesignsJan 17, 2022
Barcodes are so common and frequent that we do not even notice them anymore. From now on, we’re going to be more attentive to them, because it turns out that sometimes they’re quite brilliant and very creative. h/t: sadnaduseless
Great products do less, but betterJan 17, 2022
When feature bloat can hurt more than help your business goals.
What You Need to Know About Negotiating Design Ideas with Skeptical CustomersJan 17, 2022
A fully interactive prototype created in UXPin can reduce confusion on expectations as both you and the customer are visualizing the same end product.
Visual Design: GlossaryJan 17, 2022
Use this glossary to quickly clarify key terms and concepts related to visual design.
In Defense of Post-itsJan 17, 2022
Sticky notes strengthen team dynamics and represent an egalitarian, concise means for expressing ideas in UX design projects.
10 Tips for Building a Visual LanguageJan 17, 2022
A visual language is just like any other form of communication. Elements from color to style to type of photos or illustrations establish what a brand or company is. A visual language includes both the written and spoken elements of a website or brand, as well as every design technique, photo,…
Front-end Developer Handbook 2019 - Learn the entire JavaScript, CSS and HTML development practice!Jan 16, 2022
A guide for front-end developers to equip themselves with latest learning resources and development tools in front-end engineering.
Color Picker — A handy design tool from Color SupplyJan 2, 2022
Use the color wheel to select a style you like. Then pick a hex code.
A huge list of web design toolsAug 7, 2021
This is a very big list of Web Design tools for designers. If you want improve your skills and be a...
10 Super easy CSS Shapes for beginnersAug 5, 2021
Hello there, In this post we will be talking about creating basic shapes in HTML & CSS. Many...
60 Awesome UI and UX resources for Developers and Designers 2021Aug 3, 2021
Yearning organizers, genuine solopreneurs, and sprouting visual creators all need a convincing...
Why Japan Didn’t Create the iPod (2008)Jul 26, 2021
What is an Affinity Diagram and How It Can Help YouJul 25, 2021
Affinity diagrams are especially helpful in the design process. See how this method can help you organize and plan product ideas.
Designing the Smallest Possible ThingJul 24, 2021
If designers want to get more agile, they should learn how to make small things, get feedback and embrace experimentation, iteration and refactoring.
HTML Line Spacing: The Fine Line Between Good and Bad UX DesignJul 13, 2021
HTML line spacing matters in UX design. Read all you need to know about line height and how it can help your UX.
The UX of video game tutorials. What decisions a designer will run into… |Jun 19, 2021
What decisions a designer will run into while designing learning experiences.
4 Testimonial Page Examples for UX/UI DesignJun 5, 2021
In these testimonial page examples, you’ll see how UX designers help clients provide social proof for their products and services.
Improving The Performance Of An Online Store (Case Study)Jun 3, 2021
Getting a good performance score from Google is hard for any website — but doing so for an online store is even harder. We achieved green scores — even several for mobile. Here is how we did it.
15 Advanced CSS Techniques To Master In 2021May 27, 2021
CSS is used to describe how HTML elements should be presented on the web page. CSS can not only...
CSS Flexbox in 5 MinutesMay 24, 2021
What is CSS Flexbox CSS Flexbox is a one-dimensional layout module that can be used to mak...
Aspect Ratios: All You Need to KnowMay 11, 2021
Learn all about aspect ratios in UX/UI design, including how they affect images, videos, and responsive layouts across devices.
Details on - Google SlidesMay 1, 2021
Using for Menus and Dialogs is an Interesting Idea | CSS-TricksMay 1, 2021
Using for a menu may be an interesting idea, but perhaps not something to actually ship in production. See "More Details on "
10 Awesome CSS ResourcesApr 20, 2021
A list of few CSS resource that help me design the CSS code better. I will give you a brief intro to...
Create Awesome Product Card | UI Design | E-commerce Card | Using Only HtmlApr 12, 2021
Please do not forget to subscribe in my channel:
Product Card | Using Only Html5 & CSS3Apr 12, 2021
Taxonomies: Connecting Users to ContentApr 8, 2021
Taxonomies may be thought of as hierarchies of categories to group and organize information to be found when browsing, or as a structured set of terms used to tag content so that it can be retrieved efficiently and accurately. Sometimes the same taxonomy may serve both purposes, and sometimes two different taxonomies are used, one for each purpose, for the same content or site. Taxonomies are not new, in fact there has been a lot written about them, including an
Overlay Fact SheetApr 5, 2021
Benefits of Using a Random Name GeneratorMar 20, 2021
Do you need to make a prototype for a website or app? The effectiveness of these random name generator benefits may surprise you.
15 Psychology Principles Every Designer Should KnowMar 18, 2021
As a web designer, you’re not really in the business of building websites that your clients will love. I know that may seem counterintuitive, but think about how vast the differences often are between your clients’ personal aesthetics and what actually works to turn visitors into customers.
How to Eat an Elephant, One Atomic Concept at a Time - kwokchainFeb 6, 2021
How Figma and Canva are taking on Adobe—and winning In 2010, Photoshop was ubiquitous. Whether you were editing a photo, making a poster, or designing a website, it happened in Photoshop. Today, Adobe looks incredibly strong. They’ve had spectacular stock performance, thanks to clear-eyed management who’ve made bold bets that have paid off. Their transition … Continue reading How to Eat an Elephant, One Atomic Concept at a Time →
17 Free Design Tools for 2021Jan 21, 2021
We update our rundown of free design tools every year. This 2022 installment includes apps for web design, logos, fonts, color palettes, photo and video resources, and much more.
Patterns — Gordon BranderJan 4, 2021
This is my bag of tricks — loose notes, design patterns, rules-of-thumb, tools, cheatsheets, gimmicks, leverage points, descriptions of systems, key questions, risks, and unknowns.
Bookshelf — Gordon BranderJan 3, 2021
Ultimate CSS Reference GuideDec 28, 2020
What is this guide? This guide will be a compilation of several bits about CSS syntax and...
On snot and fonts / Luc DevroyeDec 25, 2020
An encyclopedic site about typefaces and type design, managed by Luc Devroye
Introduction to Front-End unit testingDec 25, 2020
An introduction meant for people who have never delved into unit testing
The cheap pen that changed writing foreverNov 1, 2020
Fountain pens were a stylish statement but messy and impractical. Their replacement was a stroke of design genius perfectly in time for the era of mass production.
The Vintage Beauty Of Soviet Control RoomsJun 1, 2020
Just for the pleasure, a selection of vintage control rooms dating back to the Soviet era! A beautiful collection of control rooms filled with large buttons and analog dials, long before the democratization of computers and screens. More info: Present And Correct
Design You Trust - The Source Of InspirationJun 1, 2020
Phuoc Nguyen’s One Page WondersMay 6, 2020
I keep running across these super useful one page sites, and they keep being by the same person! Like this one with over 100 vanilla JavaScript DOM
Creating a floating label using HTML and CSSMay 6, 2020
Hello everyone 👋, I hope you are doing great. So, Today we are going to learn how to create a floati...
blender.org - Home of the Blender project - Free and Open 3D Creation SoftwareMar 31, 2020
The Freedom to Create
Figma's Features for the Entire Design Process | ToptalFeb 19, 2020
Can one program handle the entire digital product design process? Learn how Figma, a web-based design tool, promotes collaboration, iteration, and documentation throughout the design process. #product #mobile #app #design #digital #ui #ux
The Untold Story of the Vegetable Peeler That Changed the WorldJan 20, 2020
The origin story of one of the great icons of 20th-century industrial design.
Best Technology Posts of 2019Dec 31, 2019
Technology changes faster than the blink of an eye which is why we share the latest tech gear we can find and now we're sharing this year's most popular.
Sketch CloudDec 23, 2019
Sketch is the home for your entire collaborative design process. From early ideas to pixel-perfect artwork, playable prototypes and developer handoff. It all starts here.
The Surprising Psychology of Dieting and Plate DesignDec 15, 2019
New research is challenging long-held assumptions about how our eyes influence our stomachs.
Design Psychology and the Neuroscience of Awesome UX | ToptalAug 30, 2019
Human cognition is complex, and many factors play into instant impressions. Design psychology is coming to the forefront as more and more companies are using neuroscience to design better user experiences. Great user experience design isn’t magic—it’s science.
A Practical Guide To SVG And Design ToolsAug 29, 2019
To make the best of SVG, it’s useful not only to learn its syntax but also to understand how SVG is generated by graphic design software. Let’s take a closer look at the process of generating SVG with popular design apps and how we can use them to our own advantage. In this post, Mikolaj Dobrucki will shed light on three of the most popular design tools: Adobe Illustrator, Sketch, and Figma. There are also other tools available supporting SVG that may have other functionalities and implement other solutions. This article should be enough to deal with the most common use cases.
The Value of Inconvenient DesignAug 29, 2019
Technology makes seemingly inconvenient tasks easier — but at what cost?
The principle of design principlesAug 29, 2019
Your team’s not dysfunctional – you just need shared principles.
See Google's first guidelines for data visualizationAug 23, 2019
Google's data viz team, formed just last year, has put out best practices for designing charts.
Feature design checklist – UX CollectiveMay 15, 2019
Questions that ensure you consider e̶v̶e̶r̶y̶t̶h̶i̶n̶g̶ a few things when designing a new feature.
LisaDziuba/Awesome-Design-Tools: The best design tools for everything ?May 14, 2019
The best design tools and plugins for everything 👉 - goabstract/Awesome-Design-Tools
kognise/water.css: A drop-in collection of CSS styles to make simple websites just a little nicerApr 21, 2019
A drop-in collection of CSS styles to make simple websites just a little nicer - kognise/water.css
15 Steps to Understand & Influence User Behavior: A Deep DiveMar 22, 2019
Understanding user behavior is key to understanding how users interact with your product. Here are 15 steps to analyze & change their interactions to your benefit.
This is the most interesting UI design of the year so farNov 16, 2018
What if clearing trackers was as easy as cleaning your computer screen?
The Psychology of DesignOct 8, 2018
As humans, we have an underlying “blueprint” for how we perceive and process the world around us, and the study of psychology helps us define this blueprint. And as designers, we can leverage psych…
A 200-year-old guide to color, redesigned for the internet age - Fast CompanySep 26, 2018
Charles Darwin used it, and now so can you.
Tractors in 2040 sure look intenseSep 26, 2018
https://www.youtube.com/watch?v=ZIArDsmsLp4 I never thought I'd say this, but I actually prefer this tractor concept over my own car... errr... almost any car, for that matter. It's called the Valtra H202 and it'll put your hooptie to shame! Designed as part of the Valtra Design Challenge, the vision is for the year 2040. As clean as
Embedding behaviour into designSep 5, 2018
This story starts with me shopping in my local hardware supplies store. I was walking into the store and saw a stack of beer coolers. It…
The Looking Glass makes sci-fi movie-style holograms a realityAug 30, 2018
The disclaimer at the very beginning of the video should be indication enough that the things you are about to see will blow your minds away. After decades of watching 3D holographic projections in movies like the Star Wars franchise, a Kickstarter project is bringing the promise of three-dimensional virtual imagery to life. No VR/AR
Home Audio Like You’ve Never Heard (Or Seen) ItAug 24, 2018
Designer Chanmi Lee rethinks home entertainment in an all-new, never-before-seen format known as the Wind Sound Bar. Don't be confused by the name, however... this is anything but the sound bar you're probably imagining. The design adopts a shape similar to that of a trumpet or other wind instrument - a familiar form for an
This deck of cards will spark small, IRL experiencesAug 23, 2018
The fabulous Lea Redmond of Leafcutter Designs (previously) has launched a brand new project. It's called Lively Matter and it's a 52-card activity deck to create grand adventures and experiences…
The Over and Under SpeakerAug 13, 2018
Whoever said wireless audio had to "sit" hasn't seen the Aloft speaker by designer Hyeonil Jeong. The alternative design explores an entirely new way to save valuable counter or desk space. It's A-shaped form and easy-to-install, built-in hanging bracket makes it possible to tuck it under a shelf or ledge. Being wedged underneath one of
A Cast That Doesn’t Suck as MuchAug 13, 2018
If you've ever broken a bone, chances are you remember just how inconvenient it was to have a heavy, itchy, not-so-hygienic cast. It's almost as bad as the broken bone itself! Tung-Jun Yang's proposal, called Cocoon, is an all-new type of cast that aims to be lighter, more breathable, more durable, and quicker-to-set than the
Rolls-Royce made miniature robot minions to perform jet-engine inspectionAug 12, 2018
An innovation you'd completely expect from a Hollywood spy flick, Rolls-Royce has designed tiny robots called SWARM that get deployed within their jet engines to run reconnaissance and inspections. A part of RR's IntelligentEngine program, the SWARM get deployed into intricate parts of the engine, giving engineers real-time feedback on performance, wear-tear, etc. The visual
The multibillion-dollar war over chocolate designAug 8, 2018
A fight in EU courts over KitKat bars raises questions about how much a product's shape defines its brand.
The Infinite MemoJul 31, 2018
From the makers of this incredibly clever wearable memo, the Wemo is back with an entirely new look. The Wemo 2 takes on a flat form that you can stick on any surface, transforming it into a doodle or memo pad in seconds. Slap it on your laptop to take notes during meets or on
10 Awesome Sass Libraries You Should Know AboutJul 5, 2018
We share with you a collection of interesting Sass libraries that you should check out.
Power Tools With Undeniable StyleMay 25, 2018
While a power tool’s primary goal is functionality, there isn’t a reason as to why it can’t be a little more pleasant to look at! The Salley Power Tools set is made up of two devices, a cordless driver and a compact jig saw, both of which share the same core brand values: unambiguous style,
design-patterns
Designing with Psychology to Make Products StickOct 9, 2025
Product design has a lot to do with psychology. It’s less about how people should behave and more about how they actually do. In this piece, we’re sharing some principles that can be useful to keep in mind. The names might sound quite technical at first, but once you see the examples from everyday products, you’ll realise they’re just simple patterns of human nature, and when applied well, they can help your product do good.
Design Guidance: Principles, Patterns, Heuristics, and Team ChartersApr 18, 2025
Design teams rely on a combination of principles, patterns, heuristics, and charters to create consistent and usable experiences in a collaborative way.
Testing Visual Design: A Comprehensive GuideDec 13, 2024
Use methods like 5-second testing, first-click testing, and preference testing to gain insights into how users perceive your visual design.
The Anatomy of a Good Design: An Analysis of 4 SitesMar 5, 2023
Visually pleasing designs use consistent type styles and spacing, create a visual hierarchy, and utilize an underlying grid structure.
10 Essential Design System ComponentsJan 24, 2023
Learn about design system components. Deepen your knowledge of atomic design and see how you can use it for product design. Enjoy!
7 Principles of Design Psychology Every UX Designer Should KnowJan 9, 2023
Web magazine about user experience matters, providing insights and inspiration for the user experience community
How to design almost any UI element (list of ~58 articles of how to properlDec 23, 2022
Buttons. 7 Basic Rules for Button Design by @101babich Button Design Cheatsheet for...
Hostile Patterns in Error MessagesNov 6, 2022
Premature error messages, aggressively styled fields, and unnecessarily disruptive system-status messages feel bad-mannered and increase cognitive load for users during otherwise simple tasks.
What Are Design Tokens?Sep 17, 2022
Learn more about design tokens and find out more about using them in your product design process. See if you need them.
Accessibility UX Best Practices – 8 Tactics for Web DesignSep 14, 2022
Learn 8 accessibility hacks that will make your website suitable for a variety of users, including those who have certain challenges.
Design System Glossary – 34 Powerful Terms You Should KnowSep 14, 2022
What is pattern library, UI kit, and brand voice? Learn all the terms that you need to build and use a long-lasting design system.
Top 5 Technology Trends in UX DesignSep 5, 2022
Web magazine about user experience matters, providing insights and inspiration for the user experience community
The Design Sprint — GVJul 5, 2022
The sprint is a 5-day process for answering critical business questions through design, prototyping, and testing with customers. Learn to run your own sprints, and read about our book on sprints.
Bootstrap CSS is still the sh*t. But we can make it better.Jul 1, 2022
Bootstrap is an amazing CSS framework for those who struggle with design, css, or need to build...
Neil Patel's Digital Marketing BlogJun 29, 2022
Your #1 resource for digital marketing tips, trends, and strategy to help you build a successful online business.
Hacker NewsJun 23, 2022
An introduction to Web Authentication (WebAuthn), the new API that can replace passwords with strong authentication.
Perfect CTA Placement: Above-The-Fold Vs. Below-The-FoldJun 21, 2022
Should You Place a CTA Above the Fold? Experts in the design and digital marketing world have frequently claimed that if you want to get the best results with a CTA , you need to place it above the fold. Just look at this landing page from Lyft, for instance, you immediately see what you need to do…
The World's Most Satisfying Checkbox | !Boring SoftwareJun 21, 2022
The Art of Game Feel (a.k.a Juice) in Product Design
6 In-demand Marketing Skills for Your Design CVJun 21, 2022
In today’s tech-savvy world, being a great designer is not all about being a whiz at tools such as Adobe Photoshop and Adobe Illustrator. The job is
You’re not still using “Read More” are you?Jun 21, 2022
It’s probably not the first time you’ve heard that using links like “Read More” or “Click Here” is bad practice. This topic has been…
faif/python-patterns: A collection of design patterns/idioms in PythonJun 1, 2022
A collection of design patterns/idioms in Python.
Trend Alert: What is Flat Design?Mar 28, 2022
Flat design is a big trend right now when it comes to design projects â€" from logos to letterhead to website design. And if you don’t get familiar with it, you might get left behind.
The Catalog of Design PatternsMar 14, 2022
The catalog of design patterns grouped by intent, complexity, and popularity. The catalog contains all classic design patterns and several architectural patterns.
Annotation Is Now a Web Standard : HypothesisFeb 23, 2022
Over the years, many have tried to bring us web annotations. On 23 February 2017, things took a giant leap forward when the W3C, the standards body for the web, standardized annotation. Yesterday, on February 23, things took a giant leap forward when the W3C, the standards body for the Web, standardized annotation. Twenty four years after Marc Andreessen first built collaborative annotation into Mosaic and tested it on a few “guinea pigs” before turning it off, annotations have finally become first-class citizens of the web.
Library of design inspiration examples & user flows from web apps • NicelyFeb 12, 2022
Browse a curated design library of web app screens, UI components and User flows from top SaaS web apps, inspiring product teams from leading companies.
A Survey of Explore and Exploit InterfacesFeb 8, 2022
Some of the most popular apps today are highly personalized — everyone sees content tailored to them. This is typically powered with…
15 reasons why grid approach will improve your designFeb 8, 2022
Master the use of grids and do wonders with your designs.
How to Use Tooltips as MicrointeractionsFeb 8, 2022
They’re generally very helpful, clear-cut in their communication, and unobtrusive, so users can do what the tooltips suggest without running into any impediment.Looked at in this way, your average tooltip is easily a micro interaction, as it helps users achieve a single task or helps users…
UI-Patterns.comFeb 7, 2022
User Interface Design Pattern Library. UI patterns for web designers. See screenshot examples and learn how to do great design like the pros.
18,000+ E-Commerce Design Examples Organized Across 62 Page Types – Baymard InstituteJan 29, 2022
Every single one of the 18,000+ screenshots is annotated with highlights of UX “violations” and “adherences” (i.e. what the page design does well from a UX perspective, and what it does poorly).
The ultimate guide to proper use of animation in UXJan 29, 2022
Nowadays it’s hard to impress or even surprise with an interface animation. It shows interactions between screens, explains how to use the…
UX Crash Course: User PsychologyJan 29, 2022
My mission for 2014 was to get more people started in User Experience (UX) Design. In January, hundreds of thousands of people did the original UX Crash Course and it was translated into Spanish, Portuguese and Korean by amazing volunteers. In May we continued with a User Psychology lesson every day.
7 things I wish every search box didJan 23, 2022
It’s one thing to say “let’s have search” and draw a box with a magnifying glass on the right. It’s a whole other task to implement good search.
Explore the Book » Designing Web InterfacesJan 23, 2022
887 ‘Cart’ Design Examples – Baymard InstituteJan 23, 2022
GoodUIJan 23, 2022
Reach higher conversions faster by repeating what worked for others and avoiding what failed.
robinstickel/awesome-design-principles: ✨ A curated list of awesome design principlesJan 23, 2022
✨ A curated list of awesome design principles.
How to Design a Large Scale Responsive Site | UX BoothJan 23, 2022
In 2011, Elaine McVicar wrote an article describing the process of designing one of the first complex responsive sites. Now that the concept is no longer in its infancy, we're taking another look at how to redesign a large scale responsive site.
Smart Interface Design Patterns In Your Pocket: Checklist Cards PDF — Smashing MagazineJan 23, 2022
Meet our Smart Interface Design Patterns Checklist Cards, a deck of 100 cards with questions to ask when designing and building any interface component — carousel, hamburger, table, date picker, autocomplete, slider, onboarding, pricing plans, authentication, web forms and many others. Check the preview (PDF) and jump to description ↓
Home | Laws of UXJan 23, 2022
Laws of UX is a collection of best practices that designers can consider when building user interfaces.
Design Patterns Cheat SheetJun 14, 2021
No matter which programming language you are proficient in, it is always important that you know a...
Sticky Headers: 5 Ways to Make Them BetterApr 4, 2021
Persistent headers can be useful to users if they are unobtrusive, high-contrast, minimally animated, and fit user needs.
10 Common Software Architectural Patterns in a nutshellJun 8, 2018
Ever wondered how large enterprise scale systems are designed? Before major software development starts, we have to choose a suitable…
devops
The dangers of SSL certificatesDec 28, 2025
Yesterday, the Bazel team at Google did not have a very Merry Boxing Day. An SSL certificate expired for and as shown in this screenshot from the github issue. This expired certificate apparently b…
The Complete LLM Tech StackJul 25, 2025
In this article, I'll take you through the complete LLM tech stack you should know to develop & deploy real-world LLM applications.
How SSL Misconfigurations Impact Your Attack SurfaceApr 2, 2025
53.5% of websites have weak SSL setups—leaving attack surfaces exposed and increasing breach risk.
From code to production: A guide to continuous deployment with GitLabJan 28, 2025
Learn how to get started building a robust continuous deployment pipeline in GitLab. Follow these step-by-step instructions, practical examples, and best practices.
Ultimate guide to CI/CD: Fundamentals to advanced implementationJan 6, 2025
Learn how to modernize continuous integration/continuous deployment, including automating the development, delivery, and security of pipelines.
Year in Review: Containers Get Smaller, Faster, More SecureDec 19, 2024
Containers were a revolutionary jump ahead of virtual machines, and they continue to get faster, lighter and more secure in the years since.
Zero-downtime with Rails credentialsNov 16, 2024
Transitioning the codebase from using environment variables to Rails Credentials for Zero-Downtime Deploys.
The Backstage Scaffolder, a Powerful New Orchestration ToolNov 13, 2024
A look at what you can do with this tool as well as some of its limitations in comparison to its rivals.
What You Get After Running an SSH Honeypot for 30 DaysJul 3, 2024
What is a honeypot?A honeypot detects and records attacks when an attacker tries to break into a system. The honeypot we will discuss here is an SSH honeypot. Environment12OS: Ubuntu 24.04 LTS x86_6
From bare metal to a 70B model: infrastructure set-up and scripts - imbueJul 3, 2024
We would like to thank Voltage Park, Dell, H5, and NVIDIA for their invaluable partnership and help with setting up our cluster. A special…
Resolving EACCES permissions errors when installing packages globally | npmJun 23, 2024
Documentation for the npm registry, website, and command-line interface
Lessons Learned from Scaling to Multi-Terabyte DatasetsJun 22, 2024
This post is meant to guide you through some of the lessons I’ve learned while working with multi-terabyte datasets. The lessons shared are focused on what someone may face as the size of the…
5 Deployment Strategies: The Pros and ConsJun 19, 2024
You don't get seamless deployments entirely without cost, but some techniques bring lots of benefits with little additional complexity.
Top 10 browser automation tools to try in 2023—Free and paidJun 11, 2024
These top browser automation tools can automate your repetitive & tedious tasks on the web, including form filling, data scraping, website testing & more. Try them out in 2023 to skyrocket your productivity.
“Unprecedented” Google Cloud event wipes out customer account and its backuMay 19, 2024
UniSuper, a $135 billion pension account, details its cloud compute nightmare.
How (and why) to run SQLite in production: RubyConf Taiwan 2023Mar 27, 2024
This is my personal site, where I write about Ruby, programming, and any of my varied fascinations.
4 Instructive Postmortems on Data Downtime and LossMar 5, 2024
Learn from GitLab's 2017 incident: 300GB of data lost in seconds, but their transparent recovery is a masterclass in accountability.
How To Set Up Nginx Server Blocks on Ubuntu 22.04Mar 5, 2024
This article describes how to set up Nginx server blocks on Ubuntu 22.04. You'll learn how to set up multiple websites on a single server and customize each site's settings to suit your needs.
Reducing our AWS bill by $100,000 - Fathom AnalyticsFeb 28, 2024
We reduced our AWS bill so that we could invest in more important areas.
(Almost) Every infrastructure decision I endorse or regret after 4 years ruFeb 22, 2024
Assortment of technology startup infrastructure recommendations
Maybe You Don't Need KubernetesFeb 22, 2024
Kubernetes is the 800-pound gorilla of container orchestration. It powers some of the biggest deployments worldwide, but it comes with a price tag...
Download The Ultimate Docker Cheat SheetJan 16, 2024
Get your Docker Cheat Sheet as PDF or PNG. In this article, you learn how to write Dockerfiles, build images, and run them as container.
Lessons learned from two decades of Site Reliability EngineeringOct 30, 2023
Site Reliability Engineering, incident management, learning, lessons learned, SRE
Linux PerformanceOct 15, 2023
A collection of documents, slides, and videos about Linux performance, mostly created by Brendan Gregg, and with a focus on performance analysis.
The importance of a name.Jun 5, 2023
Lessons Learned from Having Passed all Twelve AWS Certification ExamsMay 7, 2023
On April 24, 2023, I finished the AWS certification marathon of passing one AWS certification exam per month (“the certification marathon”). This blog post outlines the lessons learned from this journey and expands on the previously published successful blog post On AWS Certifications. Lesson #01 – Certification marathon is a journey While having all AWS...
DORA | DevOps Research and AssessmentApr 15, 2023
DORA is a long running research program that seeks to understand the capabilities that drive software delivery and operations performance. DORA helps teams apply those capabilities, leading to better organizational performance.
How to implement a Load Balancer Using Nginx & DockerApr 7, 2023
Scaling becomes a necessary part for your system when your system grows in popularity. There are two...
trimstray/the-book-of-secret-knowledge: A collection of inspiring lists, manuals, cheatsheets, blogs, hacks, one-liners, cli/web tools and more.Mar 25, 2023
A collection of inspiring lists, manuals, cheatsheets, blogs, hacks, one-liners, cli/web tools and more. - trimstray/the-book-of-secret-knowledge
Hosting Your Own Web Application: A Beginner's Guide with NginxMar 24, 2023
#Introduction Have you ever desired you could develop a web application locally on your computer...
Essential Tools for a Successful DevOps EngineerMar 20, 2023
Introduction: The software development process has been transformed by the DevOps...
Getting Started with Ansible: An Introduction to Automation, ConfigurationMar 18, 2023
🔐 Introduction to Ansible 🔗Related content You can find repo...
Bobby Iliev - Introduction to Bash ScriptingFeb 23, 2023
This is an open-source introduction to Bash scripting ebook that will help you learn the basics of Bash scripting and start writing awesome Bash scripts that will help you automate your daily SysOps, DevOps, and Dev tasks...
Using Curl to make REST API requests | LinuxizeFeb 4, 2023
In this article, we're going to discuss how to use Curl to interact with RESTful APIs. Curl is a command-line utility for transferring data from or to a remote server.
?? Why billing systems are a nightmare for engineersJan 26, 2023
This article was initially published on Lago's blog, an open-source billing API, and was ranked #1 on...
A Visual Guide to SSH Tunnels: Local and Remote Port ForwardingJan 13, 2023
SSH port forwarding explained in a clean and visual way. How to use local and remote port forwarding. What sshd settings may need to be adjusted. How to memorize the right flags.
Deploy API only Rails App with CapistranoDec 28, 2022
Capistrano is a deployment automation tool built on Ruby, Rake, and SSH. It allows you to deploy your...
Deploying an Infrastructure as Code Project in GCP Using Terraform.Dec 28, 2022
The creation of resources in the cloud and the management of the lifecycle of these resources can be...
Getting Started With GitOps For Developers!Dec 9, 2022
GitOps is a methodology for deploying and managing software applications using Git. It is also...
Data Indexing, Replication, and Sharding: Basic ConceptsNov 21, 2022
A database is a collection of information that is structured for easy access. It mainly runs in a...
Top 10 Open-Source DevOps Tools That You Should KnowNov 21, 2022
Do you know how many open-source tools are in DevOps? Have you ever seen the picture below? Have...
17 DevOps Metrics To Measure SuccessNov 5, 2022
Photo by Carl Heyerdahl on Unsplash Productivity in software development has always been tricky to...
Redditor acquires decommissioned Netflix cache server with 262TB of storageOct 30, 2022
2013-era server offers rare peek under the hood of Netflix’s Open Connect network.
SadServers - Linux & DevOps Troubleshooting InterviewsOct 28, 2022
Linux Troubleshooting Interview DevOps SRE
Steampipe | select * from cloud;Oct 3, 2022
Steampipe is an open source tool to instantly query your cloud services (e.g. AWS, Azure, GCP and more) with SQL. No DB required.
25 Free Tools to Test Your WebsiteSep 27, 2022
This all-new update to our popular resource includes tools to evaluate page speed, security, accessibility, regulatory compliance, code, and more.
Render: Awesome alternative for HerokuSep 22, 2022
Heroku will stop offering its free tiers this November, leaving developers to choose other...
SRE Weekly Issue #337Sep 5, 2022
gchq/CyberChef: The Cyber Swiss Army Knife - a web app for encryption, encoding, compression and data analysisSep 5, 2022
The Cyber Swiss Army Knife - a web app for encryption, encoding, compression and data analysis - gchq/CyberChef
Heroku no longer offers free service, what's the best alternative now?Aug 30, 2022
Heroku was such a simple and free experience to host side project and start developing. What is the...
Heroku no longer offers free service, what's the best alternative now?Aug 30, 2022
Heroku was such a simple and free experience to host side project and start developing. What is the...
Free Alternatives to HerokuAug 30, 2022
Given the recent news about Heroku bringing an end to free dynos and PostgreSQL databases, what other...
How Discord Stores Billions of MessagesAug 28, 2022
We decided early on to store all chat history forever so users can come back at any time and have their data available. This is a lot of data: how do we do it?
ngrok - Online in One LineAug 27, 2022
ngrok is the fastest way to put anything on the internet with a single command.
17 Best DevOps Tools to Use in 2022 for Infrastructure Automation and MonitAug 18, 2022
You must adopt proper infrastructure automation if you want to enable your teams to achieve faster...
Use One Big Server - Speculative BranchesAug 2, 2022
Test Your Product On A Crappy Laptop | CSS-TricksJul 29, 2022
There is a huge and ever-widening gap between the devices we use to make the web and the devices most people use to consume it. It’s also no secret
Downtime is not an option – meet the stewards of the cloud | Aeon EssaysJul 28, 2022
Hot, strenuous and unsung. There is nothing soft and fluffy about the caretaking work that enables our digital lives
Machine Learning Operations (MLOps): Overview, Definition, and ArchitectureJul 13, 2022
The final goal of all industrial machine learning (ML) projects is to develop ML products and rapidly bring them into production. However, it is highly challenging to automate and operationalize...
Book Release: Go For DevOps #go #golang #sre #devops #terraform #kubernetesJul 13, 2022
Go for DevOps: Learn how to use the Go language to automate servers, the cloud, Kubernetes, GitHub, Packer, and Terraform [Doak, John, Justice, David] on Amazon.com. *FREE* shipping on qualifying offers. Go for DevOps: Learn how to use the Go language to automate servers, the cloud, Kubernetes, GitHub, Packer, and Terraform
CSRF, XXE, and 12 Other Security Acronyms ExplainedJul 13, 2022
Acronyms are shortcuts, and we love using them, specially the catchy ones! Let's decipher some...
10 Modern Data Engineering Tools - KDnuggetsJul 11, 2022
Learn about the modern tools for data orchestration, data storage, analytical engineering, batch processing, and data streaming.
Monitoring tiny web servicesJul 9, 2022
13 must-know SSH CommandsJul 8, 2022
A list of popular SSH commands for SSH connections, key generation & SSH agents that I'm using on a daily basis.
3 Best Website Uptime Monitoring Tools Jul 4, 2022
One way to achieve this is by employing uptime and downtime monitoring tools. Why Is Website Uptime Monitoring Important? An uptime monitoring solution can help you prevent or reduce these losses. Thus, you must employ a dependable tool that detects downtime or any interruptions related to your…
The Problem with Feature BranchesJun 21, 2022
As more companies strive to deliver software faster it becomes clear what legacy processes are...
Tsunami of junk traffic that broke DDoS records delivered by tiniest of botJun 15, 2022
The DDoS arms race shows no signs of slowing down.
10 Cloudflare Alternatives to Boost Your Website Performance and SecurityJun 7, 2022
Cloudflare is not the only service that helps you boost your website's speed and secure it. Here are some alternatives.
Jenkins: Create a simple build jobJun 4, 2022
Jenkins job The jenkins job is an individual task that could be useful for your CI CD...
Overview of Github Actions - Part 1Jun 1, 2022
Overview of Github Actions Overview of Github Actions - Part 1 Overview of Github Actions...
Overview of Github Actions - Part 2Jun 1, 2022
Overview of Github Actions Overview of Github Actions - Part 1 Overview of Github Actions...
Founding Uber SRE.Jun 1, 2022
This is my personal story of starting the SRE organization at Uber. If you want advice rather than reminiscence, take a look at Trunk and Branches Model and Productivity in the age of hypergrowth. After I left SocialCode in 2014, I spent a month interviewing at a handful of companies trying to figure out what to do next. I was torn between two different paths: (1) leading engineering at a very small startup, or (2) taking a much smaller role at a fast growing company, with the expectation that growth would create opportunity. After some consideration, I took the latter path and joined Uber.
Learnings from 5 years of tech startup code audits - Ken Kantzer's BlogMay 26, 2022
While I was leading PKC’s security practice, we did probably 20-30 code security audits, almost of all of them for startups that were just around their Series A or B (that was usually when they had cash and realized that it’d be good to take a deeper look at their security, after the do-or-die focus on product market fit).
The Top Clouds Evaluated Such That You Don’t Need to Repeat Our MistakesMay 26, 2022
Opinion on popular cloud service providers from an ML engineer
Dokku – Free Heroku Alternative | Hacker NewsMay 20, 2022
Get up and running with Terraform (IaC) ToolMay 19, 2022
What exactly is this amazing tool? Infrastructure as code (IaC) tools allow you to manage...
The actual infrastructure costs of running SaaS at scale (billions of requeMay 17, 2022
In this article we are going to share two main things: The evolution of our infrastructure over...
How to Remove a File From Git History PermanentlyMay 17, 2022
And how to avoid them getting in there? — A surprisingly simple technique to handle it.
How to fix “bash: add-apt-repository: command not found” error on Ubuntu/DeMay 6, 2022
Explains how to fix "bash: add-apt-repository: command" error on an Ubuntu or Debian Linux system using the apt/apt-get command.
https://social.techcrunch.com/2022/04/23/seo-scammers-buy-expired-domains-vexing-google-trust/May 3, 2022
AWS Data Transfer Costs: Solving Hidden Network Transfer CostsApr 13, 2022
Hidden AWS data transfer costs can lead to higher than expected cloud service bills. This post will help track hidden fees and show you how to control them.
Why Enzymit Decided to Build its Own On-Prem HPC Infrastructure | by Lior ZApr 13, 2022
Since the foundation of the first public cloud companies in the early 2000s, they have radically transformed the landscape of the internet…
14 Awesome CLI Tools for Modern Software DevelopersMar 23, 2022
General Command Line Tools Autojump Autojump is a tool that learns your most...
Intelligent System SecurityFeb 12, 2022
We present a novel approach to infiltrate data to air-gapped systems without any additional hardware on-site.
Top 10 web hacking techniques of 2021 | PortSwigger ResearchFeb 10, 2022
Welcome to the Top 10 (new) Web Hacking Techniques of 2021, the latest iteration of our annual community-powered effort to identify the most significant web security research released in the last year
Complete Jenkins Tutorial | Learn Jenkins From Scratch In 3 HoursJan 21, 2022
This LambdaTest Jenkins Tutorial will help you learn the fundamentals of Jenkins and everything...
Perf toolingJan 17, 2022
Using Siege to Stress Test an ApplicationJan 16, 2022
Recently the company I work for migrated to new servers. During this migration we were all fairly confident that our new architecture would work and would be able to sustain considerable traffic. How much traffic is "considerable traffic"? In all honesty, none of our team and even our consultants, could
SSH Kung FuJan 16, 2022
An extended look at SSH features that can serve a variety of purposes for different use cases.
Performance Tuning – Tips & TricksJan 16, 2022
luong-komorebi/Short-Gitlab-Tutorial: Get started with Gitlab in practicable timeJan 16, 2022
Get started with Gitlab in practicable time.
Important penetration testing cheat sheetJan 12, 2022
HacksplainingJan 12, 2022
imthenachoman/How-To-Secure-A-Linux-Server: An evolving how-to guide for securing a Linux server.Jan 12, 2022
An evolving how-to guide for securing a Linux server. - imthenachoman/How-To-Secure-A-Linux-Server
How we handle 80TB and 5M page views a month for under $400Jan 7, 2022
How the heck do we run a massively popular website and asset resource while being funded primarily by donations?
5 Best Practices for Securing SSHJan 6, 2022
This article explores 5 SSH best practices you should observe to boost the security of your infrastructure.
How To Configure the Apache Web Server on an Ubuntu or Debian VPS | DigitalOceanJan 4, 2022
The Apache web server is the most popular way to serve web content on the internet. The Apache provides a modular and scalable server that can satisfy the n…
Koyeb - The true cost of Kubernetes: People, Time and ProductivityJan 1, 2022
While writing a comparison of Kubernetes and Koyeb, we tried to determine how much operating a Kubernetes cluster really costs. This section of our comparison took us hours to write and ended up being so long that we decided to write a dedicated post about it. Kubernetes is a proven technology, but the true cost is often underestimated: this post investigates the actual financial costs of using Kubernetes.
My Top 10 Free Learning Resources for AWSDec 27, 2021
The Trouble with Tribbles...: The cost of cloudDec 27, 2021
Putting your IT infrastructure into the cloud seems to be the "in" thing. It's been around for a while, of course. And, like most things rel...
Introducing Push to Deploy. Say hello to a more convenient way to… | by KevDec 16, 2021
Say hello to a more convenient way to deploy your app. With just a few clicks, you can deploy your app directly from your repository!
Apache MesosDec 14, 2021
Apache Mesos abstracts resources away from machines, enabling fault-tolerant and elastic distributed systems to easily be built and run effectively.
The Basics of Web Application SecurityDec 13, 2021
Security is both very important and often under-emphasized. While many targeted techniques help, there are some basic clean code habits which every developer can and should be doing
Apache Tomcat® - Welcome!Dec 13, 2021
Four Linux server monitoring toolsDec 13, 2021
Here is four strong monitoring tools i would like to present for you. htop - interactive process viewer You may know the standard tool for watching real time processes on your machine top. If not, run $ top to see it in action, and $ man top to read the manual. The
bjpcjp/the-book-of-secret-knowledge: A collection of inspiring lists, manuals, cheatsheets, blogs, hacks, one-liners, cli/web tools and more.Dec 12, 2021
A collection of inspiring lists, manuals, cheatsheets, blogs, hacks, one-liners, cli/web tools and more. - bjpcjp/the-book-of-secret-knowledge
Consul by HashiCorpDec 12, 2021
Consul is a service networking solution to automate network configurations, discover services, and enable secure connectivity across any cloud or runtime.
DevOps and Security Glossary Terms | Sumo LogicDec 12, 2021
DevOps is a collection of best practices for the software development process to shorten the development life cycle. Here is a comprehensive list of DevOps and Security terms you need to know.
How To Deploy a Full-Stack MERN App with Heroku/NetlifyDec 12, 2021
This post is intended to be a guide for those that want to deploy a full-stack MERN app. It will be v...
Zabbix :: The Enterprise-Class Open Source Network Monitoring SolutionDec 12, 2021
Zabbix is a mature and effortless enterprise-class open source monitoring solution for network monitoring and application monitoring of millions of metrics.
https://www.papertrail.com/Dec 12, 2021
JenkinsDec 12, 2021
Jenkins – an open source automation server which enables developers around the world to reliably build, test, and deploy their software
Jaeger: open source, distributed tracing platformDec 12, 2021
Monitor and troubleshoot workflows in complex distributed systems
GitHub ActionsDec 12, 2021
Easily build, package, release, update, and deploy your project in any language—on GitHub or any external system—without having to run code yourself.
Overview | PrometheusDec 12, 2021
An open-source monitoring system with a dimensional data model, flexible query language, efficient time series database and modern alerting approach.
kahun/awesome-sysadmin: A curated list of amazingly awesome open source sysadmin resources inspired by Awesome PHP.Dec 12, 2021
A curated list of amazingly awesome open source sysadmin resources inspired by Awesome PHP. - kahun/awesome-sysadmin
The History of DevOps Reports | Puppet by PerforceDec 12, 2021
Want to know the history behind Puppet's famous State of DevOps reports? Get the full scoop in this ultimate resource.
The OpenTracing projectDec 12, 2021
The 2018 DevOps RoadMap | HackerNoonDec 12, 2021
DevOps is really hot at the moment and most of my friends, colleagues, and senior developers I know are working hard to become a DevOps engineer and project themselves as DevOps champion in their organization.
MicroK8s - Zero-ops Kubernetes for developers, edge and IoT | MicroK8sDec 12, 2021
MicroK8s is the simplest production-grade conformant K8s. Lightweight and focused. Single command install on Linux, Windows and macOS. Made for devOps, great for edge, appliances and IoT. Full high availability Kubernetes with autonomous clusters and distributed storage.
Introduction | Vagrant | HashiCorp DeveloperDec 12, 2021
Vagrant is a tool for building complete development environments. With an easy-to-use workflow and focus on automation, Vagrant lowers development environment setup time, increases development/production parity, and makes the "it works on my machine" excuse a relic of the past.
Demystifying containers, Docker, and Kubernetes - Microsoft Open Source BlogDec 11, 2021
Modern application infrastructure is being transformed by containers. The question is: How do you get started?
gulp/docs/getting-started.md at master · gulpjs/gulpDec 11, 2021
A toolkit to automate & enhance your workflow.
http://blog.urfix.com/25-ssh-commands-tricks/Dec 11, 2021
Continuous Integration and DeliveryDec 11, 2021
Get the best continuous integration and delivery (CI/CD), in our cloud or on your own infrastructure. Start for free and scale as you grow.
Glossary: Cybersecurity Terms & DefinitionsDec 11, 2021
Learn about common industry terms and definitions related to cybersecurity and application delivery from the experts at F5.
https://www.thecloud.coach/ansible-crash-courseDec 11, 2021
Chef Software DevOps Automation Solutions | ChefDec 11, 2021
Chef Software's DevOps automation tools enable the coded enterprise to overcome complexity with infrastructure, security and application automation for your technology.
Terraform by HashiCorpDec 11, 2021
Terraform is an infrastructure as code tool that enables you to safely and predictably provision and manage infrastructure in any cloud.
binhnguyennus/awesome-scalability: The Patterns of Scalable, Reliable, and Performant Large-Scale SystemsDec 11, 2021
The Patterns of Scalable, Reliable, and Performant Large-Scale Systems - binhnguyennus/awesome-scalability
Top 20 OpenSSH Server Best Security PracticesDec 11, 2021
OpenSSH server best security practices - protect your server from brute force attack on a UNIX / Linux / *BSD / Mac OS X operating systems.
Build Load Balancer in GoDec 8, 2021
Learn how to build a simple load balancer server in Go. Table of Contents: What is a Load...
Quick Start | Vagrant | HashiCorp DeveloperDec 2, 2021
Vagrant isolates dependencies and their configuration within a single disposable and consistent development environment.
App Platform | DigitalOcean DocumentationDec 2, 2021
App Platform is a platform as a service (PaaS) offering that lets you publish code directly to DigitalOcean servers without worrying about the underlying infrastructure, runtimes, or dependencies.
16 Best DevOps Tools (2024 List)Dec 2, 2021
DevOps is a software development and delivery process. It emphasizes communication, collaboration between product management, software development, and operations professionals. Following is a curated
Do-nothing scripting: the key to gradual automationDec 2, 2021
Every ops team has some manual procedures that they haven’t gotten around to automating yet. Toil can never be totally eliminated. Very often, the biggest toil center for a team at a growing …
The linux commands that help me workDec 2, 2021
Here are some commands to help me with my work. And what are your useful commands that you use? Sea...
Do I Really Need Kubernetes?Dec 2, 2021
Kubernetes is powerful, but that does not mean it’s the right choice for every team and every app. It is made to solve a certain set of problems.
Glossary: Cybersecurity Terms & DefinitionsDec 2, 2021
Learn about common industry terms and definitions related to cybersecurity and application delivery from the experts at F5.
15 Command-Line Tools to Make You Better at Shell & CLIDec 2, 2021
Shell is the essential tool for every programmer. The more familiar you become with the available too...
Awesome Command-Line tools to boost your productivityDec 2, 2021
If you're on a Unix system you probably have to constantly interact with the terminal, one way or ano...
Kernel-based Virtual MachineDec 2, 2021
Kernel-based Virtual Machine (KVM) is a free and open-source virtualization module in the Linux kernel that allows the kernel to function as a hypervisor. It was merged into the mainline Linux kernel in version 2.6.20, which was released on February 5, 2007. KVM requires a processor with hardware virtualization extensions, such as Intel VT or AMD-V. KVM has also been ported to other operating systems such as FreeBSD and illumos in the form of loadable kernel modules.
Announcing HashiCorp WaypointDec 2, 2021
A consistent developer workflow to build, deploy, and release applications across any platform.
Simple, Flexible, Trustworthy CI/CD Tools - Travis CIDec 2, 2021
Travis CI is the most simple and flexible ci/cd tool available today. Find out how Travis CI can help with continuous integration and continuous delivery.
5 Lessons Learned From Writing Over 300,000 Lines of Infrastructure CodeDec 2, 2021
A concise masterclass on how to write infrastructure code
7 DevOps skills for Machine Learning Operations | by Ricardo Mendes | Nov,Nov 29, 2021
Lessons learned from successful MLOps implementation
Why Netflix never goes down - The VergeNov 19, 2021
Netflix’s secret to success is happening behind the scenes.
Learning Containers From The Bottom UpNov 15, 2021
What is a Container? Container vs. VM? Docker vs. Kubernetes. How to organize the learning efficiently?
A Comparison of SRE Workflow ToolsNov 3, 2021
When considering tools to help optimize parts or all of your cloud incident remediation workflows and...
graviraja/MLOps-BasicsOct 1, 2021
Ship / Show / Ask: A modern branching strategySep 14, 2021
Ship/Show/Ask is a branching strategy that helps teams wait less and ship more, without losing out on feedback.
Amazon S3 Deep Dive (part 4-tagging, static website hosting)Sep 6, 2021
Organizing data using tags A tag is a label that you assign to an AWS resource. Each tag...
Meet the Self-Hosters, Taking Back the Internet One Server at a TimeSep 2, 2021
Tired of Big Tech monopolies, a community of hobbyists is taking their digital lives off the cloud and onto DIY hardware that they control.
DevOps 101 : Introduction to AnsibleAug 16, 2021
Ansible What is Ansible? Ansible is an open-source IT Configuration...
The 5-hour CDN · FlyAug 6, 2021
You can build a functional CDN on an 8-year-old laptop while you're sitting at a coffee shop. Here's what a CDN you put together in five hours might look like.
Free for dev - list of software (SaaS, PaaS, IaaS, etc.)Jul 27, 2021
Content by github.com/ripienaar/free-for-dev Contributors:...
30 Interesting Tools and Services to Monitor Your Linux ServersJul 25, 2021
An exhaustive list of 30 interesting server monitoring tools and services for you to explore!
No, we don’t use KubernetesJul 20, 2021
“No, we don’t use Kubernetes”. That always gets raised eyebrows... so we decided to write about our reasoning behind this cloud architecture decision.
Top 6 Ethical Hacking ToolsJul 7, 2021
1. Kali Linux Kali Linux is the most used Ethical Hacking distro available, it is provided with...
7 Lessons From 10 Outages – The Downtime ProjectJun 23, 2021
GitHub - hashicorp/terraform: Terraform enables you to safely and predictabJun 9, 2021
Terraform enables you to safely and predictably create, change, and improve infrastructure. It is a source-available tool that codifies APIs into declarative configuration files that can be shared ...
This 11-course package can help you run a liquid smooth DevOps project throJun 8, 2021
This AWS DevOps Engineer Certification Bundle contains 11 Courses on AWS Database, Cloud Automation, Lambda, & More! Become a DevOps engineer.
ngrok - secure introspectable tunnels to localhostJun 7, 2021
ngrok is a secure ingress platform that enables developers to add global server load balancing, reverse proxy, firewall, API gateway and Kubernetes Ingress to applications and APIs.
Lessons I learned from achieving a 99.99% platform uptimeApr 27, 2021
Voice123 is the first (and arguably foremost) open marketplace for voice actors. Today, Voice123 ha...
Site Reliability Engineering (SRE) Best PracticesApr 24, 2021
What is Site Reliability Engineering (SRE)? The site reliability engineering (SRE) conce...
Hacker NewsApr 11, 2021
At Channable we use Nix to build and deploy our services and to manage our development environments. This was not always the case: in the past we used a combination of ecosystem-specific tools and custom scripts to glue them together. Consolidating everything with Nix has helped us standardize development and deployment workflows, eliminate “works on my machine”-problems, and avoid unnecessary rebuilds. In this post we want to share what problems we encountered before adopting Nix, how Nix solves those, and how we gradually introduced Nix into our workflows.
The Architecture Behind A One-Person Tech StartupApr 10, 2021
As grandiose as the title of this article might sound, I should clarify we’re talking about a low-stress, one-person company that I run from my flat here in Germany.
Screw it, I’ll host it myselfApr 7, 2021
It’s all fun and games until someone loses an eye. Likewise, it’s all fun and games until someone loses access to their private and/or business data because they trusted it to someone else.
Deploying a basic Streamlit app to HerokuApr 7, 2021
This article demonstrates the deployment of a basic Streamlit app (that simulates the Central Limit Theorem) to Heroku.
Phishing Tests Are Necessary. But They Don’t Need to Be Evil.Apr 2, 2021
Although phishing tests can be helpful to protect users, using questionable tactics has the potential for harming relationships between a company and its employees. The authors suggest that managers avoid this damage by employing phishing tests with three criteria: Test teams, not individuals; don’t embarrass anyone; and gamify and reward.
APT Encounters of the Third Kind - Igor’s BlogMar 27, 2021
A few weeks ago an ordinary security assessment turned into an incident response whirlwind. It was definitely a first for me, and I was kindly granted permission to outline the events in this blog post. This investigation started scary but turned out be quite fun, and I hope reading it will be informative to you too. I'll be back to posting about my hardware research soon. How it started What hell is this? The NFS Server 2nd malicious binary Further forensics Eureka Moment The GOlang thingy How the kernel got patched? and why not the golang app? What we have so far Q&A How it started Twice a year I am hired to do security assessments for a specific client. We have been working together for several years, and I had a pretty good understanding of their network and what to look for. This time my POC, Klaus, asked me to focus on privacy issues and GDPR compliance. However, he asked me to first look at their cluster of reverse gateways / load balancers: I had some prior knowledge of these gateways, but decided to start by creating my own test environment first. The gateways run a custom Linux stack: basically a monolithic compiled kernel (without any modules), and a static GOlang application on top. The 100+ machines have no internal storage, but rather boot from an external USB media that has the kernel and the application. The GOlang app serves in two capacities: an init replacement and the reverse gateway software. During initialization it mounts /proc, /sys, devfs and so on, then mounts an NFS share hardcoded in the app. The NFS share contains the app's configuration, TLS certificates, blacklist data and a few more. It starts listening on 443, filters incoming communication and passes valid requests on different services in the production segment. I set up a self contained test environment, and spent a day in black box examination. Having found nothing much I suggested we move on to looking at the production network, but Klaus insisted I continue with the gateways. Specifically he wanted to know if I could develop a methodology for testing if an attacker has gained access to the gateways and is trying to access PII (Personally Identifiable Information) from within the decrypted HTTP stream. I couldn't SSH into the host (no SSH), so I figured we will have to add some kind of instrumentation to the GO app. Klaus still insisted I start by looking at the traffic before (red) and after the GW (green), and gave me access to a mirrored port on both sides so I could capture traffic to a standalone laptop he prepared for me and I could access through an LTE modem but was not allowed to upload data from: The problem I faced now was how to find out what HTTPS traffic corresponded to requests with embedded PII. One possible avenue was to try and correlate the encrypted traffic with the decrypted HTTP traffic. This proved impossible using timing alone. However, unspecting the decoded traffic I noticed the GW app adds an 'X-Orig-Connection' with the four-tuple of the TLS connection! Yay! I wrote a small python program to scan the port 80 traffic capture and create a mapping from each four-tuple TLS connection to a boolean - True for connection with PII and False for all others: 10.4.254.254,443,[Redacted],43404,376106847.319,False 10.4.254.254,443,[Redacted],52064,376106856.146,False 10.4.254.254,443,[Redacted],40946,376106856.295,False 10.4.254.254,443,[Redacted],48366,376106856.593,False 10.4.254.254,443,[Redacted],48362,376106856.623,True 10.4.254.254,443,[Redacted],45872,376106856.645,False 10.4.254.254,443,[Redacted],40124,376106856.675,False ... With this in mind I could now extract the data from the PCAPs and do some correlations. After a few long hours getting scapy to actually parse timestamps consistently enough for comparisons, I had a list of connection timing information correlated with PII. A few more fun hours with Excel and I got histogram graphs of time vs count of packets. Everything looked normal for the HTTP traffic, although I expected more of a normal distribution than the power-low type thingy I got. Port 443 initially looked the same, and I got the normal distribution I expected. But when filtering for PII something was seriously wrong. The distribution was skewed and shifted to longer time frames. And there was nothing similar on the port 80 end. My only explanation was that something was wrong with my testing setup (the blue bars) vs. the real live setup (the orange bars). I wrote on our slack channel 'I think my setup is sh*t, can anyone resend me the config files?', but this was already very late at night, and no one responded. Having a slight OCD I couldn’t let this go. To my rescue came another security? feature of the GWs: Thet restarted daily, staggered one by one, with about 10 minutes between hosts. This means that every ten minutes or so one of them would reboot, and thus reload it’s configuration files over NFS. And since I could see the NFS traffic through the port mirror I had access to, I recokoned I could get the production configuration files from the NFS capture (bottom dotted blue line in the diagram before). So to cut a long story short I found the NFS read reply packet, and got the data I need. But … why the hack is eof 77685??? Come on people, its 3:34AM! What's more, the actual data was 77685 bytes, exactly 8192 bytes more then the ‘Read length’. The entropy for that data was pretty uniform, suggesting it was encrypted. The file I had was definitely not encrypted. Histogram of extra 8192 bytes: When I mounted the NFS export myself I got a normal EOF value of 1! What hell is this? Comparing the capture from my testing machine with the one from the port mirror I saw something else weird: For other NFS open requests (on all of my test system captures and for other files in the production system) we get: Spot the difference? The open id: string became open-id:. Was I dealing with some corrupt packet? But the exact same problem reappeared the next time blacklist.db was send over the wire by another GW host. Time to look at the kernel source code: The “open id” string is hardcoded. What's up? After a good night sleep and no beer this time I repeated the experiment and convincing myself I was not hullucinating I decided to compare the source code of the exact kernel version with the kernel binary I got. What I expected to see was this (from nfs4xdr.c): static inline void encode_openhdr(struct xdr_stream *xdr, const struct nfs_openargs *arg) { __be32 *p; /* * opcode 4, seqid 4, share_access 4, share_deny 4, clientid 8, ownerlen 4, * owner 4 = 32 */ encode_nfs4_seqid(xdr, arg->seqid); encode_share_access(xdr, arg->share_access); p = reserve_space(xdr, 36); p = xdr_encode_hyper(p, arg->clientid); *p++ = cpu_to_be32(24); p = xdr_encode_opaque_fixed(p, "open id:", 8); *p++ = cpu_to_be32(arg->server->s_dev); *p++ = cpu_to_be32(arg->id.uniquifier); xdr_encode_hyper(p, arg->id.create_time); } Running binwalk -e -M bzImage I got the internal ELF image, and opened it in IDA. Of course I didn’t have any symbols, but I got nfs4_xdr_enc_open() from /proc/kallsyms, and from there to encode_open() which led me to encode_openhdr(). With some help from hex-rays I got code that looked very similiar, but with one key difference: static inline void encode_openhdr(struct xdr_stream *xdr, const struct nfs_openargs *arg) { ... p = xdr_encode_opaque_fixed(p, unknown_func("open id:", arg), 8); ... } The function unknown_func was pretty long and complicated but eventually sometimes decided to replace the space between 'open' and 'id' with a hyphen. Does the NFS server care? Apparently this string it is some opaque client identifier that is ignored by the NFS server, so no one would see the difference. That is unless they were trying to extract something from an NFS stream, and obviously this was not a likely scenario. OK, back to the weird 'eof' thingy from the NFS server. The NFS Server The server was running the 'NFS-ganesha-3.3' package. This is a very modular user-space NFS server that is implemented as a series of loadable modules called FSALs. For example support for files on the regular filesystem is implemented through a module called libfsalvfs.so. Having verified all the files on disk had the same SHA1 as the distro package, I decided to dump the process memory. I didn't have any tools on the host, so I used GDB which helpfully was already there. Unexpectadly GDB was suddenly killed, the file I specified as output got erased, and the nfs server process restarted. I took the dump again but there was nothing special there! I was pretty suspicious at this time, and wanted to recover the original dump file from the first dump. Fortunately for me I was dumping the file to the laptop, again over NFS. The file had been deleted, but I managed to recover it from the disk on that server. 2nd malicious binary The memory dump was truncated, but had a corrupt version of NFS-ganesha inside. There were two libfsalvfs.so libraries loaded: the original one and an injected SO file with the same name. The injected file was clearly malicious. The main binary was patched in a few places, and the function table into libfsalvfs.so as replaced with the alternate libfsalvfs.so. The alternate file was compiled from NFS-ganesha sources, but modified to include new and improved (wink wink) functionality. The most interesting of the new functionality were two separate implementations of covert channels. The first one we encountered already: When an open request comes in with 'open-id' instead of 'open id', the file handle is marked. This change is opaque to the NFS server, so unpatched servers just ignore it and nothing much happens. For infiltrated NFS server, when the file handle opened this way is read, the NFS server appends the last block with a payload coming from the malwar...
We Don’t Use DockerMar 16, 2021
Real Artists Ship | Learn Enough News & BlogMar 5, 2021
News & blog about Learn Enough (including the Ruby on Rails Tutorial)
Google - Site Reliability EngineeringFeb 25, 2021
Common Nginx misconfigurations that leave your web server open to attackFeb 25, 2021
Detectify analyzed 50,000 unique Nginx configuration files on GitHub and reported some common misconfigurations.
The Power of Scripting: A Deploy Script | Learn Enough News & BlogFeb 23, 2021
News & blog about Learn Enough (including the Ruby on Rails Tutorial)
Learn Enough Custom Domains to Be Dangerous | Learn Enough to Be DangerousFeb 13, 2021
Custom domains for websites, web apps, and email
Paweł U. | Ruby on Rails Web Development Consultant Full Stack BlogFeb 11, 2021
Performance Action Pack consists of tools and techniques to efficiently audit and optimize your Ruby on Rails application.
Buildpacks vs DockerfilesFeb 10, 2021
Read more on the Doximity Technology Blog about how our engineers and data scientists are building the largest online network for clinicians.
The Twelve-Factor AppFeb 8, 2021
A methodology for building modern, scalable, maintainable software-as-a-service apps.
A visual guide to SSH tunnelsFeb 7, 2021
Google Cloud Free ProgramFeb 2, 2021
Discover the free cloud features that come with the Google Cloud trial offer and more information on how to upgrade your account.
Best alternatives to hosting on Heroku?Jan 27, 2021
33 votes, 56 comments. Heroku is easy to use and has a good marketplace. They make it really easy to deploy and to purchase additional resources. I…
Lessons learned in incident managementJan 6, 2021
Edit fstab to Auto-Mount Secondary Hard Drives on LinuxJan 4, 2021
Did you know there's an easier way to mount your secondary hard drive on Linux? The process involves a few simple edits to the fstab file on your system.
How to Automate Tasks on GitHub With Machine Learning for Fun and Profit |Jan 2, 2021
A tutorial on how to build a GitHub App that predicts and applies issue labels using Tensorflow and public datasets.
Linux Hardening Guide | Madaidan's InsecuritiesDec 31, 2020
shutil — High-level file operationsDec 18, 2020
Source code: Lib/shutil.py The shutil module offers a number of high-level operations on files and collections of files. In particular, functions are provided which support file copying and removal...
Free intro to Linux commandline/server course starts Monday 7 DecemberDec 18, 2020
77 votes, 16 comments. This course has been running successfully now every month since February 2020 - more detail at…
Complete Walkthrough to Connect your SDE to GCP with GithubDec 18, 2020
Power-up Your Workflow with Cloud instance!
Introduction to Google Cloud FunctionsDec 18, 2020
Cloud Functions are Google’s offering for serverless architecture (similar to AWS lambdas). What is serverless? Before we look into how to use Cloud Functions, we should understand some things about it. Code needs servers to run, so serverless doesn’t mean there are no servers, it means that we don’t need to manage those servers ourselves. In a usual server based architecture, we might create a service and deploy it to a machine. This service will be running in the machine all the time waiting for requests. This has the disadvantage that even if there are no requests, the machine would need to be up, and incurring cost. On the other hand, if we use Cloud Functions, we write a service and register it with Google. Google will then listen to the endpoint this service cares about and will only start it when there are requests. If it detects that there haven’t been requests for some time, it will stop the service again.
Quickstart: Create a Python app - Azure App Service | Microsoft DocsDec 18, 2020
Get started with Azure App Service by deploying your first Python app to Azure App Service.
State of the Art Infrastructure as CodeDec 18, 2020
The newest layer of abstraction by Gruntwork that’ll make your life easier
Terraform vs Ansible: What's the difference and which one you should use?Dec 10, 2020
Preparing your Infrastructure as Code solution? Ansible and Terraform are two of the most popular choices. But what's the difference?
Wait, Docker is deprecated in Kubernetes now? What do I do?Dec 10, 2020
This article explains why Docker is now deprecated in Kubernetes.
bobbyiliev/introduction-to-bash-scripting: Free Introduction to Bash Scripting eBookNov 28, 2020
Free Introduction to Bash Scripting eBook.
An ex-Googler's guide to dev toolsNov 27, 2020
After leaving Google, many engineers miss the developer tools. Here's one ex-Googler's guide to navigating the dev tools landscape outside of Google, finding the ones that fill the gaps you're feeling, and introducing these to your new team.
The Tech Stack of a One-Man SaaSNov 24, 2020
Build better websites with real-time traffic, performance and error monitoring. Start your free 14 day trial.
Getting started with Ansible | XLAB Steampunk blogNov 22, 2020
This post was originally published on November 12, 2020, but the content has been updated according to the recent Ansible changes. In our previous blog post , we looked at what configuration management tools bring to the table. And in this post, we will take a closer look at Ansible, our configuration management tool of choice. So if you want to learn what Ansible is, what it does, and how it works, this is the post for you.
rewanthtammana/containers-from-scratch: Writing a container in a few lines of Go code, as seen at DockerCon 2017 and on O'Reilly SafariNov 19, 2020
Writing a container in a few lines of Go code, as seen at DockerCon 2017 and on O'Reilly Safari - rewanthtammana/containers-from-scratch
AWS Management ConsoleNov 7, 2020
Anatomy of a Binary ExecutableNov 5, 2020
Even though I’ve developed software for a number of years now, there’s one question that has always been in the back of my mind and I haven’t had the time or patience to really answer, until now: What is a binary executable anyways?
tunnelto.dev -- expose your local web server to the internet with a public URLNov 5, 2020
Expose your local web server to the internet with a public URL
https://blog.alcide.io/top-four-ways-to-visualize-traffic-between-microservices-in-kubernetesNov 5, 2020
Google - Site Reliability EngineeringNov 3, 2020
Google Cloud now supports buildpacks | Google Cloud BlogNov 3, 2020
Google Cloud buildpacks make it much easier and faster to build applications on top of containers.
Building containers without DockerNov 3, 2020
In this post I'll outline several ways to build containers without the need for Docker itself including buildkit, kaniko, GitHub Actions, GitLab and Jenkins
Kubernetes SLOs with Prometheus and LinkerdNov 3, 2020
SLOs are a lot easier with a service mesh in han. In this tutorial, you’ll learn how to easily create service health SLOs on Kubernetes with Prometheus, an open source time-series database, and Linkerd, an open source ultralight service mesh. You’ll see how using a service mesh can solve one of the...
docker | minikubeNov 3, 2020
Overview The Docker driver allows you to install Kubernetes into an existing Docker install. On Linux, this does not require virtualization to be enabled. Requirements Install Docker 18.09 or higher (20.10 or higher is recommended) amd64 or arm64 system. If using WSL complete these steps first Usage Start a cluster using the docker driver: minikube start --driver=docker To make docker the default driver: minikube config set driver docker Requirements Docker 20.10 or higher, see https://rootlesscontaine.rs/getting-started/docker/ Cgroup v2 delegation, see https://rootlesscontaine.rs/getting-started/common/cgroup2/ Kernel 5.11 or later (5.13 or later is recommended when SELinux is enabled), see https://rootlesscontaine.rs/how-it-works/overlayfs/ Usage Start a cluster using the rootless docker driver:
Not all attacks are equal: understanding and preventing DoS in web applicatNov 3, 2020
Find bugs, run security scans in CI, and enforce security standards across your organization.
GitHub CLI 1.0 is now availableNov 3, 2020
GitHub CLI brings GitHub to your terminal. It reduces context switching, helps you focus, and enables you to more easily script and create your own workflows. Earlier this year, we…
What is Vagrant? - DevOps LibraryNov 3, 2020
How to properly manage SSH keys for server accessNov 3, 2020
This article was on the hacker news frontpage. You can find the related discussion here. Every developer needs access to some servers for example to check the application logs. Usually, this is done using public-private key encryption where each developer generates their own public-private key pair. The public keys of each developer are added to the authorized_keys file on each server they should have access to. Painful manual changes So far so good.
kubernetes-up-and-running/examples: Example code and files from "KubernetesNov 2, 2020
Example code and files from "Kubernetes: Up and Running" - kubernetes-up-and-running/examples
Container - definition & overview | Sumo LogicOct 27, 2020
Explore what a container is, how its created, how it compares to virtual machines, and its use cases. Learn how Sumo Logic's integration for Docker containers enables IT teams to analyze, troubleshoot and perform root cause analysis of issues surfacing from distributed container-based applications and from Docker containers themselves.
Getting started with Kubernetes: how to set up your first cluster | CircleCOct 27, 2020
Learn how to set up a real-world, production-ready Kubernetes cluster using Amazon Elastic Kubernetes Service (Amazon EKS) and Terraform.
An Introduction To KubernetesOct 21, 2020
Have you ever wondered how companies like Facebook are able to serve applications to Billions of...
Database of Databases - LeaderboardsSep 17, 2020
Encyclopedia of databases systems from Carnegie Mellon University. Curated by @andy_pavlo
New EC2 T4g Instances – Burstable Performance Powered by AWS Graviton2 – TrSep 16, 2020
December 10, 2020 – Post updated for the extension of the T4g free-trial until March 31, 2021. During the free-trial period, customers who run a t4g.micro instance will automatically get 750 free hours per month deducted from their bill during each month. T4g free-trial will be available in addition to the existing AWS Free-Tier on […]
Introduction to modern CMake for beginners - Internal PointersSep 16, 2020
A look at one of the most popular build systems for C and C++.
Heroku Dynos: Sizes, Types, and How Many You NeedAug 19, 2020
The ultimate guide to dynos on Heroku. If you’ve ever asked "how many dynos do I need?" or "which dyno type is right for my app?", this is the guide for you.
Introduction to TerraformAug 15, 2020
This week I explored Terraform as part of my exploration of development and operations topics. Terraform is a tool for automating the…
Principles, Patterns, and Practices for Effective Infrastructure as CodeAug 10, 2020
Deliver Infrastructure and Software running on it Rapidly and Reliably at Scale
Nmap — A Guide To The Greatest Scanning Tool Of All TimeAug 10, 2020
Network-Mapper (NMap), is the most famous scanning tool used by penetration testers. In this article, we will look at some core features…
10 Actionable SSH Hardening Tips to Secure Your Linux ServerJul 16, 2020
Worried about the security of your Linux server? Learn some easy to implement tips on securing SSH and make your Linux server more secure.
The 10 Useful Networking Commands You Should KnowJul 11, 2020
Learn about useful networking commands that are pre-installed on your computer and will help you know everything about a website.
Google open-sources Tsunami vulnerability scannerJul 9, 2020
Google says Tsunami is an extensible network scanner for detecting high-severity vulnerabilities with as little false-positives as possible.
My Favorite CLI ToolsJun 20, 2020
Previously, I wrote about my favorite Mac apps. But I spend half of my time in the terminal, and I ha...
Get the fundamentals of DevOps right — then worry about toolsJun 5, 2020
Even though the DevOps methodology has been with us for quite some time now, it’s still the center of heated discussions. Companies want it but are unsure of how to approach it. DevOps is everywhere. And while it’s an interesting trend, it
The boring technology behind a one-person Internet companyJun 1, 2020
The tech stack of Listen Notes, the best podcast search engine and database.
Deploy Machine Learning Applications using ChefJun 1, 2020
Overview of deploying a model with the Chef — A Configuration Management Tool
Why is This Website Port Scanning meMay 20, 2020
Investigation of the practice of port scanning site visitors for fingerprinting and tracking.
HashiCorp LearnMay 17, 2020
Start learning with step-by-step, hands-on, command-line tutorials, videos, and hosted terminal sessions. Actionable examples help you learn to provision, secure, connect, or run any application on any infrastructure.
Search | StackShare | StackShareMay 17, 2020
Search and browse cloud infrastructure services such as PaaS, IaaS, log management, exception monitoring, realtime backend APIs, and more. Find the right tools and services to build your next app.
Install Terraform | Terraform - HashiCorp LearnMay 16, 2020
Install Terraform on Mac, Linux, or Windows by downloading the binary or using a package manager (Homebrew or Chocolatey). Then create a Docker container locally by following a quick-start tutorial to check that Terraform installed correctly.
mlmachine - Clean ML Experiments, Elegant EDA & Pandas PipelinesMay 15, 2020
This new Python package accelerates notebook-based machine learning experimentation
How to Deploy your Machine Learning Models on KubernetesMay 15, 2020
Deploy, scale and manage your machine learning services with Kubernetes and Terraform on GCP.
Cookiecutter Data ScienceMay 15, 2020
A project template and directory structure for Python data science projects.
Whois Lookup, Domain Availability & IP Search - DomainToolsApr 21, 2020
Research domain ownership with Whois Lookup: Get ownership info, IP address history, rank, traffic, SEO & more. Find available domains & domains for sale.
Droplets - DigitalOceanApr 17, 2020
Helping millions of developers easily build, test, manage, and scale applications of any size — faster than ever before.
nemonik/hands-on-DevOps: A hands-on DevOps course covering the culture, methods and repeated practices of modern software development involving Packer, Vagrant, VirtualBox, Ansible, Kubernetes, K3s, MetalLB, Traefik, Docker-Compose, Docker, Taiga, GitLab, Drone CI, SonarQube, Selenium, InSpec, Alpine 3.10, Ubuntu-bionic, CentOS 7...Apr 17, 2020
A hands-on DevOps course covering the culture, methods and repeated practices of modern software development involving Packer, Vagrant, VirtualBox, Ansible, Kubernetes, K3s, MetalLB, Traefik, Docke...
Jenkins User DocumentationApr 17, 2020
Jenkins – an open source automation server which enables developers around the world to reliably build, test, and deploy their software
My Vagrant Boxes - Vagrant CloudMar 31, 2020
How Ansible Works | Ansible.comMar 31, 2020
Ansible is an open source, command-line IT automation software application written in Python. It can configure systems, deploy software, and orchestrate advanced workflows to support application deplo
geerlingguy/ansible-for-devops: Ansible examples from Ansible for DevOps.Mar 31, 2020
Ansible for DevOps examples.
Vagrant up timeout - Stack OverflowMar 31, 2020
Having some issues to get my vagrant up,
Got the box, run vagrant init and after vagrant up command I get this message.
Bringing machine 'default' up with 'virtualbox' provider...
==> defa...
Vagrant box generic/ubuntu1804 - Vagrant CloudMar 31, 2020
Let's Create a Simple Load Balancer With GoDec 23, 2019
Load Balancers plays a key role in Web Architecture. In this post we are going to develop a simple load balancer with power of Go
Metrics That Matter - ACM QueueDec 23, 2019
Measure your site reliability metrics, set the right targets, and go through the work to measure the metrics accurately. Then, you
Metaflow: Netflix's Python framework for data science is now open sourceDec 5, 2019
Build and manage real-life ML, AI, and data science projects with Metaflow.
How containers work: overlayfs - Julia EvansNov 20, 2019
DNS 101: An introduction to Domain Name ServersOct 18, 2019
Domain names provide the internet much more user-friendly way of referencing servers, but have you ever wondered how it works under the covers?
The boring technology behind a one-person Internet companySep 17, 2019
The tech stack of Listen Notes, the best podcast search engine and database.
Efficient Rails DevOpsAug 30, 2019
Learn the secrets of Rails deployment and everything it takes to successfully run your application in the wild.
Scaling Jupyter notebooks with Kubernetes and TensorflowAug 29, 2019
In this article, you will explore how you can leverage Kubernetes, Tensorflow and Kubeflow to scale your models without having to worry about scaling the infrastructure.
Best DevOps Software - 2018 Reviews of the Most Popular Tools and ServicesAug 29, 2019
Git, GitHub, Visual Studio Code, Docker, and npm are the most popular tools in the category "DevOps". "Distributed version control system" is the primary reason developers pick Git over its competitors, while "Open source friendly" is the reason why GitHub was chosen.
An Introduction to Continuous Integration, Delivery, and Deployment | DigitAug 29, 2019
Developing and releasing software can be a complicated process, especially as applications, teams, and deployment infrastructure grow in complexity themselve…
Designing Data-Intensive Applications (DDIA) — an O’Reilly book by Martin Kleppmann (The Wild Boar Book)May 14, 2019
TurnKey GNU/Linux | 100+ free ready-to-use system images for virtual machines, the cloud and bare metalApr 24, 2019
Performance Tuning - Tips & Tricks - NGINXFeb 12, 2019
A Beginner's Guide to Scaling to 11 Million+ Users on Amazon's AWS - High Scalability -Dec 27, 2018
How do you scale a system from one user to more than 11 million users? Joel Williams, Amazon Web Services Solutions Architect, gives an excellent talk on just that subject: AWS re:Invent 2015 Scaling Up to Your First 10 Million Users. If you are an advanced AWS user this
Everything you should know about certificates and PKI but are too afraid to askDec 24, 2018
Certificates and public key infrastructure (PKI) are hard. No shit, right? I know a lot of smart people who''ve avoided this particular rabbit hole. Eventually, I was forced to learn this stuff because of what it enables: PKI lets you define a system cryptographically. It''s universal and vendor-neutral yet poorly documented. This is the missing manual.
Netlify: All-in-one platform for automating modern web projects.Dec 22, 2018
Realize the speed, agility and performance of a scalable, composable web architecture with Netlify. Explore the composable web platform now!
OpenStack’s latest release focuses on bare metal clouds and easier upgradesSep 6, 2018
The OpenStack Foundation today released the 18th version of its namesake open-source cloud infrastructure software. The project has had its ups and downs,
Certificates for localhostJul 15, 2018
Sometimes people want to get a certificate for the hostname “localhost”, either for use in local development, or for distribution with a native application that needs to communicate with a web application. Let’s Encrypt can’t provide certificates for “localhost” because nobody uniquely owns it, and it’s not rooted in a top level domain like “.com” or “.net”. It’s possible to set up your own domain name that happens to resolve to 127.
Linux Load Averages: Solving the MysteryJun 8, 2018
Linux load averages explained, including why they include the uninterruptible I/O sleep state.
How to set up world-class continuous deployment using free hosted toolsJun 8, 2018
I’m going to describe a way to put together a world-class continuous deployment infrastructure for your side-project without spending any money. With continuous deployment every code commit is tested against …
How SSH got port number 22Dec 27, 2017
The SSH port is 22. This is the story of how it got that port number. And practical configuration instructions.
(9) How many servers does a typical data center house? - QuoraNov 10, 2016
Answer (1 of 7): Lots. Definitions of the term "data centre" tend to vary. Some would label a small machine room with 2 or 3 racks a data centre, but that is not really a large facility by any stretch of the imagination. Most such installations are never going to hit the usual problems which dat...
9ish Low Latency Strategies for SaaS Companies - High Scalability -Oct 3, 2016
Achieving very low latencies takes special engineering, but if you are a SaaS company latencies of a few hundred milliseconds are possible for complex business logic using standard technologies like load balancers, queues, JVMs, and rest APIs. Itai Frenkel, a software engineer at Forter, which provides a Fraud Prevention Decision
dfns
DNS Explained - How Domain Names Get ResolvedFeb 6, 2026
Learn how DNS works: hierarchy, records (A, CNAME, MX, TXT), TTL caching, and the full resolution process. Plus commands to view and clear DNS cache.
dictionary
The Marketplace Glossary | Andreessen HorowitzJul 5, 2022
This week, we published the a16z Marketplace 100, a ranking of the largest and fastest-growing consumer-facing marketplace startups and private companies. See the full index and analysis here, and visit a16z.com/marketplace-100 for more marketplace-related content. From a business standpoint, we know marketplaces are challenging to scale; from a conversational perspective, we’ve come to realize they’re...
Complete Data Engineer’s VocabularyJun 1, 2020
Concepts that data engineers must know in 10 words or less
40+ Modern Tutorials Covering All Aspects of Machine Learning - DataScienceCentral.comFeb 19, 2020
This list of lists contains books, notebooks, presentations, cheat sheets, and tutorials covering all aspects of data science, machine learning, deep learning, statistics, math, and more, with most documents featuring Python or R code and numerous illustrations or case studies. All this material is available for free, and consists of content mostly created in 2019… Read More »40+ Modern Tutorials Covering All Aspects of Machine Learning
Top NLP Algorithms & Concepts - DataScienceCentral.comFeb 19, 2020
Today, one of the most popular tasks in Data Science is processing information presented in the text form. Exactly this is text representation in the form of mathematical equations, formulas, paradigms, patterns in order to understand the text semantics (content) for its further processing: classification, fragmentation, etc. The general area which solves the described problems… Read More »Top NLP Algorithms & Concepts
The Neural Network Zoo - The Asimov InstituteDec 14, 2019
With new neural network architectures popping up every now and then, it’s hard to keep track of them all. Knowing all the abbreviations being thrown around (DCIGN, BiLSTM, DCGAN, anyone?) can be a bit overwhelming at first. So I decided to compose a cheat sheet containing many of those architectures. Most of these are neural networks, some are completely […]
101 Machine Learning Algorithms for Data Science | Data Science BlogDec 14, 2019
Data Science Dojo blog features the most recent, and relevant articles about data science, analytics, generative AI, large language models, machine learning, and data visualization.
Hacker Laws: Laws, Theories, Principles, Patterns Developers Might Find UseNov 5, 2019
💻📖 Laws, Theories, Principles and Patterns that developers will find useful. #hackerlaws - dwmkerr/hacker-laws
Articles - Ness LabsJul 25, 2019
This archive page lists the last 100 articles in the Ness Labs library by date and title. Articles are listed in reverse chronological order with the newest articles at the top and the oldest ones at the bottom. If you want to read the best articles first, you can also explore the library by thematic ... Read More
diffusion
Diffusion PrimerAug 25, 2025
Diffusion, a class of generative models, boils down to an MSE between added noise and network predicted noise.
Why would learning to predict the nois…
An Overview of Hugging Face DiffusersMay 21, 2024
Getting Started with HuggingFace Diffusers: A Beginner's Journey into the World of Generative Images
Unveiling the Dynamics of Generative Diffusion Models: A Machine Learning AMar 12, 2024
The recent advancements in machine learning, particularly in generative models, have been marked by the emergence of diffusion models (DMs) as powerful tools for modeling complex data distributions and generating realistic samples across various domains such as images, videos, audio, and 3D scenes. Despite their practical success, the full theoretical understanding of generative diffusion models still needs to be improved. This understanding is not just an academic pursuit but has direct implications for the practical application of these models in various domains. While rigorous results assessing their convergence on finite-dimensional data have been obtained, the complexities of high-dimensional data spaces
dignity
Be Dignified, as a RuleMar 28, 2023
Much of what you’ve read on this blog has been written in pajama pants. Writing directly follows meditation in my morning routine, so I’ve often gone right from the cushion to the coffeepot to the desk. Occasionally life would remind me that there are practical reasons to put on socially acceptable pants before beginning the workday. Someone could knock on
Three types of kindnessJan 18, 2021
There is the kindness of ‘please’ and ‘thank you.’ And the kindness of “I was wrong, I’m sorry.” The small kindnesses that smooth our interactions and help other people feel as th…
dimensionality-reduction
Kernel Principal Component Analysis (PCA): Explained with an Example - MarkTechPostDec 6, 2025
Dive into Kernel PCA: explained with an example demonstrating its effectiveness compared to traditional PCA for nonlinear data.
The Power of Independent Component Analysis (ICA) on Real-World ApplicationOct 24, 2023
Independent component analysis (ICA) is a powerful data-driven tool capable of separating linear contributions in the data
Linear Algebra: LU Decomposition, with PythonFeb 2, 2023
Part 4: A comprehensive step-by-step guide to solving a linear system with LU Decomposition
Principal Component Analysis: Everything You Need To KnowSep 24, 2022
Covariance, eigenvalues, variance and everything …
https://twitter.com/freakonometrics/status/1550439602594484225?s=12&t=5dAyRh9A5Nw53A3oNf4HPgJul 22, 2022
Machines are haunted by the curse of dimensionalityJun 15, 2022
The curse of dimensionality comes into play when we deal with a lot of data having many dimensions or features.
11 Different Uses of Dimensionality ReductionDec 15, 2021
The whole ML is full of dimensionality reduction and its applications. Let’s see them in action!
A Guide to Dimensionality Reduction in PythonDec 3, 2021
Dimensionality reduction is a vital tool for data scientists across industries. Here is a guide to getting started with it.
How to Analyze 100-Dimensional Data with UMAP in Breathtakingly Beautiful WOct 1, 2021
Create breathtaking visuals and “see” your data
8 Dimensionality Reduction Techniques every Data Scientists should knowJul 25, 2021
Essential guide to various dimensionality reduction techniques in Python
11 Dimensionality reduction techniques you should know in 2021May 5, 2021
Reduce the size of your dataset while keeping as much of the variation as possible
Computer Vision | Papers With CodeDec 22, 2020
Dimensionality reduction is the task of reducing the dimensionality of a dataset. ( Image credit: [openTSNE](https://github.com/pavlin-policar/openTSNE) )
The Ultimate Guide to 12 Dimensionality Reduction Techniques (with Python cSep 6, 2018
Learn how these 12 dimensionality reduction techniques can help you extract valuable patterns and insights from high-dimensional datasets.
Dimensionality Reduction Using t-SNEFeb 21, 2018
t-SNE is a method for visualizing high dimensional space. It often produces more insightful charts than the alternatives like PCA.
Reducing dimensionality from dimensionality reduction techniquesDec 27, 2017
In this post I will do my best to demystify three dimensionality reduction techniques; PCA, t-SNE and Auto Encoders. My main motivation for…
discord
Midjourney Quick Start GuideApr 9, 2023
Learn how to use the text-to-image service, Midjourney on Discord or the web to create custom images from simple text prompts.
Beginner's Guide to Discord – DiscordMar 19, 2023
Welcome to the comprehensive beginner's guide to Discord! What Does This Article Cover? What is a Server? How to Use Text and Voice Channels 5 Helpful Server Creation Guides How to Talk an...
A profile of Discord, which lies at the center of the gaming world with 100Nov 2, 2020
David Pierce / Protocol: A profile of Discord, which lies at the center of the gaming world with 100M+ MAUs, as it pushes to turn into a communication tool for everyone, not just gamers
discovery
The Psychology Gap: Why Teams Misinterpret User Behavior - UX MagazineJan 21, 2026
Your product isn't failing because of bad design. It's failing because your team is designing in clarity while your users are drowning in chaos. The gap between how you think users behave and how they actually feel their way through your product is quietly breaking every flow, feature, and conversion you build. And it starts long before any user ever clicks a button.
Turn Any Idea Into a Validated MVPDec 9, 2025
A step-by-step path to validate your idea fast by defining the problem, testing assumptions, prototyping the critical flow, and shaping a focused MVP you can learn from.
Is Your Startup Idea Any Good? Borrow These Validation Tactics from the Founders of Linear, Mercury and MoreSep 9, 2025
Founders share the unconventional ways they found conviction in their startup ideas.
0-$5M: How to Identify Your ICP — Lessons from Vanta, Clay, RetoolMay 15, 2025
How do you spot the wrong customer before they burn your roadmap? First Round Partner Meka Asonye digs into how now-massively successful startups cracked the code.
The Origins of AdjuvantsApr 4, 2025
More than a century after the invention of vaccines, a veterinarian stumbled across a technique to boost their efficacy in an unlikely way — by observing wounded horses.
Four Keys to Effective Horizon Scanning | Scott D. AnthonyMar 6, 2025
Gain better strategic foresight and turn future possibilities into actionable insights with horizon scanning.
7 Tips for Successful DiscoveriesNov 26, 2024
Discovery is challenging; it can be hard to know what to research, how to do discovery as a team, and how to get buy-in. Follow these 7 tips for smoother discovery efforts.
Product Management Insights: Understanding Your UsersMay 28, 2024
This is a series where we delve into the world of product management. This week we discuss the art of understanding your users.
Six essential elements of the project discovery phaseMay 21, 2024
Embarking on a new software development project is similar to setting sail on uncharted waters. While the destination might be
The size of your backlog is inversely proportional to how often you talk toJan 23, 2024
Lessons learned from a year of startup life.
Why asking your customers what they want doesn't workJan 1, 2024
And how can you figure it out what they really need
Discoverability in UX and UI Design — 9 Techniques to TryApr 13, 2023
Try those 9 techniques and improve discoverability in your product. Make your users happy and create a smooth ux for them.
Five Powerful Prioritization Techniques from Product ManagementApr 9, 2023
How Data Scientists can learn from how a Product Manager prioritizes features and requirements to build a successful product.
The Future of Ecommerce: How a Product Becomes a PurchaseMar 24, 2023
General Partner Connie Chan on how leading brands are using AI and other technology to combine the serendipitous discovery of offline shopping with the infinite options of online shopping. Today, most of the Western world revolves around search-based online commerce. This means that most shoppers type directly what they want into a store search bar,...
[1702.04680v1] Visual Discovery at PinterestDec 21, 2022
Over the past three years Pinterest has experimented with several visual search and recommendation services, including Related Pins (2014), Similar Looks (2015), Flashlight (2016) and Lens (2017)....
Steve Blank Mapping the Unknown – The Ten Steps to Map Any IndustrySep 24, 2022
A journey of a thousand miles begins with a single step Lǎozi 老子 I just had lunch with Shenwei, one of my ex-students who had just taken a job in a mid-sized consulting firm. After a bit of catch…
Opportunity Solution TreeJul 31, 2022
What is an Opportunity Solution Tree? Learn more about opportunity solution trees and the 4 steps involved in creating them.
IndexJul 19, 2022
The Greatest Word of Mouth Follow-up Question... Ever!Jul 19, 2022
Word of mouth is powerful... but this follow-up question allows you to harness that power to supercharge your marketing. Use it wisely and carefully.
Understanding idea adoption (you’re not a slot, you choose a slot)Jul 19, 2022
In the last year, millions of people have bought a copy of 50 Shades. Here's the thing: they didn't all do it at the same time. Some people bought it when it was a self-published ebook. O…
Stop Validating and Start FalsifyingJul 19, 2022
The product management and startup worlds are buzzing about the importance of "validation". In this entry, I'll explain how this idea orig...
Maybe the Voice of the Customer Isn’t - Futurelab.netJul 19, 2022
Criticizing Voice of the Customer (VOC) programs is like speaking out against motherhood and apple pie. The last time I criticized VOC programs, someone left a comment chastising me for presuming that a bank could know what its customers wanted without asking them.
Test your startup idea!Jul 19, 2022
Hubstaff founder Dave Nevogt shares how to test your startup idea by analyzing model, market and concept.
The right type of customer conversationsJul 19, 2022
Conversations with customers are valuable, but they have to be the right type of conversations – not merely questions about forgotten passwords and the like. They have to add value, for you, and them.
The short head, the long tail and buying expensive scaffoldingJul 18, 2022
Hits are more valuable than ever, mostly because they're more rare than ever. The Zipf Distribution, also described in Chris Anderson's Long Tail, helps us understand just how valuable hi…
Customers Don't Know What They Want—Until They See ItJul 18, 2022
This copy is for your personal, non-commercial use only. Distribution and use of this material are governed by
our Subscriber Agreement and by copyright law. For non-personal use or to order multiple copies, please contact
Dow Jones Reprints at 1-800-843-0008 or visit www.djreprints.com.
It's OK To Ask "Would You Use This" in Customer DiscoveryJul 18, 2022
It's OK to ask a B2B prospect if they would use your product during customer discovery. Just don't to stop at "Yes" and assume validation or a likely sale.
Steve Blank How to Be Smarter than Your Investors – Continuous Customer DiscoveryJul 18, 2022
Teams that build continuous customer discovery into their DNA will become smarter than their investors, and build more successful companies. — Awhile back I blogged about Ashwin, one of my ex…
Quizzes are free data mining tools for brands - MarketplaceJul 17, 2022
An online Game of Thrones quiz got a million online hits for HBO.
The Most Effective Price Discovery Question for Your Startup by @ttunguzJul 5, 2022
Pricing is one of the most challenging decisions for any startup. One of the simplest ways of discovering customer willingness to pay is simply to ask them. At first blush, that might seem a reasonable and effective solution, it is prone to wild inaccuracy. Absolute pricing judgments are hard without reference points. For example: How much would you be willing to pay for a new iPhone? It’s a very challenging question to answer in the abstract.
Who is good at discovery?Jul 5, 2022
Apple has carefully guarded the podcast directory, persuading podcasters that ‘winning’ here is the shortcut to building a popular podcast. But they’re terrible at introducing pod…
How to get your first 10 customersJun 25, 2022
Preface: the assumption for this essay is that you're building a B2B app, and you have something built but you're having trouble getting people to pay for it There are three problems with getting your first few customers: You (probably) don't know how to sell things You don't know who you're selling to You don't even really know what you're selling Nobody tells you how to answers these questions, and so most people go out
'Get in the Van' and Other Tips for Getting Meaningful Customer FeedbackJun 24, 2022
Michael Sippey has been building tech products for over 20 years. His most valuable ideas, though? They came from speaking with customers. Here's how.
The problem with ‘5 whys’Jun 24, 2022
‘The Problem with…’ series covers controversial topics related to efforts to improve healthcare quality, including widely recommended but deceptively difficult strategies for improvement and pervasive problems that seem to resist solution. The ‘5 whys’ technique is one of the most widely taught approaches to root-cause analysis (RCA) in healthcare. Its use is promoted by the WHO,1 the English National Health Service,2 the Institute for Healthcare Improvement,3 the Joint Commission4 and many other organisations in the field of healthcare quality and safety. Like most such tools, though, its popularity is not the result of any evidence that it is effective.5–8 Instead, it probably owes its place in the curriculum and practice of RCA to a combination of pedigree, simplicity and pedagogy. In terms of pedigree, ‘5 whys’ traces its roots back to the Toyota Production System (TPS).9 It also plays a key role in Lean10 (a generic version of TPS) as well as Six Sigma,11 another popular quality improvement (QI) methodology. Taiichi Ohno describes ‘5 whys’ as central to the TPS methodology:The basis of Toyota's scientific approach is to ask why five times whenever we find a problem … By repeating why five times, the nature of the problem as well as its solution becomes clear. The solution, or the how-to, is designated as ‘1H.’ Thus, ‘Five whys equal one how’ (5W=1H). (ref. 9, p. 123) This quote also makes the case for the technique's simplicity. Asking ‘why’ five times allows users to arrive at a single root cause that might not have been obvious at the outset. It may also inspire a single solution to address that root cause (though it is not clear that the ‘1H’ side of the equation has been adopted as widely). The pedagogical argument for …
70 meetings and calls later: How I achieved customer interview management superpowersJun 24, 2022
I’ve been working on a marketing automation tool (more on that at the end of the post). Or rather, I’ve been working on an idea for a marketing automation tool as I don’t want a single line of code written before I’d experienced a notable pull from target customers. (This may sound like I am clever/…
Customer Interviews: How To Organize FindingsJun 23, 2022
A conversation with Bruce La Fetra on customer interviews. We compare notes on how to organize findings and take best advantage of the insights gleaned.
Neil Patel's Digital Marketing BlogJun 23, 2022
Your #1 resource for digital marketing tips, trends, and strategy to help you build a successful online business.
Argue with your customers - Rockstar CodersJun 23, 2022
The One Conversational Tool That Will Make You Better At Absolutely Everything - Fast CompanyJun 23, 2022
Great insight moves your career, organization, or business forward. The problem? Most people are terrible at asking questions. Learn from the pros how to do it right.
ForresterJun 23, 2022
Forrester is a leading global market research company that helps organizations exceed customer demands and excel with technology. Learn how Forrester can help.
MomtestbookJun 13, 2022
Sometimes It’s Not the Change They Hate — Users KnowJun 13, 2022
There has been a lot of discussion in the design world recently about "change aversion." Most of the articles about it seem to be targeting the new Google redesign, but I've certainly seen this same discussion happen at many companies when big changes aren't universally embraced by users.
A Guide To Validating Product Ideas With Quick And Simple Experiments — Smashing MagazineJun 12, 2022
If you are building a product, you should always speak with customers and test your idea before. But you probably don’t know that *you *might be making some of the most common mistakes when running your experiments. Mistakes include testing the wrong aspect of your business, asking the wrong questions and neglecting to define a criterion for success. In this article, Grace Ng will show you a guide to designing quick, effective, low-cost experiments.
5 Questions Every Manager Needs to Ask Their Direct ReportsJan 25, 2022
If you’re worried that your employees are eyeing the door, it’s time to start having some important career-defining conversations. In this piece, executive coach Susan Peppercorn outlines five questions to start asking your direct reports so that you can get a better sense of how they’re feeling about their positions: 1) How would you like to grow within this organization? 2) Do you feel a sense of purpose in your job? 3) What do you need from me to do your best work? 4) What are we currently not doing as a company that you feel we should do? 5) Do you have the opportunity to do what you do best every day? When managers make checking in with these five questions a regular part of how they interact with their employees, it helps ensure that people feel seen and valued. And when managers help individuals on their teams feel that way, they’re more likely to be rewarded by employees who become advocates for the department and organization, no matter how long they stay.
7 Ways Experiments BreakDec 9, 2021
Common mistakes to avoid when you’re getting started with experimentation
The Design Leadership Playbook: How to Hire, Onboard & Manage a High-ImpactDec 8, 2021
From the high-level perspective of what makes for a great design leader, to the tactical suggestions around the slide that needs to be in your portfolio presentation, Twilio & Segment's Hareem Mannan shares useful advice for every stage of a designer's career.
How to get useful answers to your questionsOct 24, 2021
Report Card Writer: What I’ve Learned from One Year of User Interviews and Customer FeedbackJul 29, 2021
Almost exactly a year ago, I started a little boutique software company called Report Card Writer. As the name suggests, my flagship software product does pretty much one thing: it helps teachers write report card comments faster. Its core technical functionality is part survey form, part template-filler-inner, with a few extra bolt-on features that make it easy to create and populate the form and template, respectively.
We Can’t Schedule Innovation, But We Can Schedule DiscoveryMay 25, 2021
Every week, I talk with CEOs who tell me they want to speed up innovation. In fact, they want to schedule it. Recently a product leader shared with me an OKR to ship one major innovation each quarter, measured as “users will give each innovative feature a top rating.” This
The 3 Minutes It Takes To Read This Will Improve Your Conversations ForeverMar 4, 2021
How to ask better questions.
Meet whale! ? The stupidly simple data discovery tool. | by Robert Yi | DatJan 2, 2021
And why your data science team needs it.
Parked Domain name on Hostinger DNS systemNov 29, 2020
The amazing value of early and cheap product experiments | by Caroline ParnNov 3, 2020
It’s so important to test your new product idea long before you feel ready.
Product Metrics: Key Insights for DiscoveryJul 26, 2020
Unlock valuable insights for effective discovery by decoding product metrics. Learn how to leverage these metrics to make informed decisions and optimize your product development process.
How Tuesday Morning went bankruptMay 29, 2020
After more than 45 years as an off-pricer, the retailer hit the skids when COVID-19 forced its doors shut and zeroed out revenue. Now it hopes to slim down in Chapter 11.
Why you need customer developmentMar 27, 2020
We should invest at least as much time in understanding our customers as we do in optimizing our product development process.
Search vs. Discovery: How Are They Different?Oct 24, 2019
Google, Microsoft, et al continue to perfect their search engines – but too often search is not enough. The watchword
The Surprising Value of Obvious InsightsFeb 21, 2019
Confirming what people already believe can sometimes help organizations overcome barriers to change.
Pain Points - Studio FellowDec 18, 2018
Dear designers/marketers (and innocent person reading this note), So, you’re doing customer interviews and user research, good for you! You’ve joined the fold of responsible, empathetic, and effective product design and marketing professionals. But you sound like a robot when you email me. Here are some questions from user testing emails & surveys I’ve received […]
Comparative Research Done RightSep 10, 2018
or, Competitive Research the Creative Founder Way For a long time, I’ve been disappointed by competitive research approaches. Most strike me as a bunch of bumbling around and seeing what you see… s…
disgust
The Unbearable Loudness of Chewing—AsteriskJul 12, 2025
Why do some people find certain sounds intolerable? And why has it taken so long for scientists to get even a preliminary answer?
Why We Love to Be Grossed Out - NautilusMar 30, 2025
Disgust may not be a straightforward extension of the immune system’s aversion to harmful substances, but rather “a psychological nebula, lacking definite boundaries, discrete internal structure, or a single center of gravity,” says psychologist Nina Strohminger.Photograph by Star Stock / Flickr Nautilus Members enjoy an ad-free experience. Log in or Join now . Nina Strohminger, […]
How Manipulators Use Disgust to Hijack Our BrainMar 15, 2024
Knowing how this most visceral emotion can be abused by bad actors is your best defense.
A ‘Distinctly Human’ Trait That Might Actually Be UniversalFeb 22, 2023
Disgust is surprisingly common across nature.
How Disgust Explains Everything (Published 2021)Dec 28, 2021
For psychologists who study it, disgust is one of the primal emotions that define — and explain — humanity.
Hacker NewsMay 1, 2021
Disgust may not be a straightforward extension of the immune system’s aversion to harmful substances, but rather “a psychological nebula, lacking definite boundaries, discrete internal structure, or a single center of gravity,” says psychologist Nina Strohminger.Photograph by Star Stock / Flickr Nina Strohminger, perhaps not unlike many fans of raunchy comedies and horror flicks, is […]
disobedience
Willful Disobedience: Character Traits of Independent Thinkers in the MilitaryJul 7, 2025
In a speech on October 4 at the Association of the United States Army’s 2016 Annual Meeting, Chief of Staff of the Army Gen. Mark Milley shared a vision of future conflict and the soldiers engaging in that conflict. Sydney Freeberg Jr. summed up Milley’s future soldier as “miserable, disobedient, and victorious.” Milley predicted a
Willful Disobedience: Character Traits of Independent Thinkers in the Military - Modern War InstituteJul 18, 2022
In a speech on October 4 at the Association of the United States Army’s 2016 Annual Meeting, Chief of Staff of the Army Gen. Mark Milley shared a vision of […]
disruption
The DoorDash problem and the great AI browser fightNov 22, 2025
Amazon sued Perplexity this month over its Comet browser, which uses AI agents to do online shopping on your behalf. This is the first major front in the war over who gets to browse the web.
Tired of Streaming? Home-Grown 'Free Blockbuster' Libraries Are Trying to OMar 25, 2024
In 2019 Los Angeles film/TV producer Brian Morrison painted Blockbuster's logo onto an old newspaper box — and then filled it up with used DVDs. "The Free Blockbuster movement slowly gained traction," reports the New York Times — aided at times by social media — "and eventually m...
This forest generates billions of dollars without felling a single treeFeb 15, 2024
Cork oaks are making homes warmer, cars lighter and clothes biodegradable — while still feeding the birds and absorbing carbon.
Disruptive InnovationJan 31, 2024
Some examples of disruptive innovation include: Disruptor Disruptee Personal computers Mainframe and mini computers Mini mills Integrated steel mills Cellular phones Fixed line telephony Community colleges Four-year colleges Discount retailers Full-service department stores Retail medical clinics Traditional doctor’s offices As companies tend to innovate faster than their customers’ needs evolve, most […]
Why Platform Disruption Is So Much Bigger than Product DisruptionJul 18, 2022
New products change what we buy, but new platforms have much broader effects.
Why Procter & Gamble Is More Disruptive Than YouJul 6, 2022
When people in tech talk about disruption and customer development, the typical picture that pops to mind is a couple of plucky young…
Beyond DisruptionJun 23, 2022
Clayton Christensen claims that Uber is not disruptive, and he’s exactly right. In fact, disruption theory often doesn’t make sense when it comes to understanding how companies succeed …
Every Company Is Up For Disruption, So Keep Your Products Simple | TechCrunchJun 23, 2022
Editor's note: Victor Belfor is the vice president of business development at Influitive. He recently started angel investing and mentoring at 500 startups. As products mature, companies continue to compete in heated battles with their competitors by adding more features and more functionality. However, a lot of customers would prefer fewer features because extra features tend to make products clunky and difficult to use. Still, companies become feature-producing machines.
Dollar Shave Club and the Disruption of EverythingJun 2, 2022
Dollar Shave Club is a textbook example of how the new Internet economy will destroy value in incumbent industries.
Why big companies squander brilliant ideasOct 8, 2018
J F C Fuller did not invent the tank. That distinction should probably fall to E L de Mole, an Australian who approached the British war office in 1912 with a
distance-metrics
What is Fréchet inception distance (FID)? - DataconomyApr 17, 2025
Fréchet Inception Distance (FID) is a metric that quantifies the quality and diversity of images generated by GANs by comparing feature representations.
What is Hellinger distance? - DataconomyMar 12, 2025
Hellinger Distance is a statistical measure that quantifies the similarity between two probability distributions, useful in data analysis and machine learning applications.
Introduction of Four Types of Item Similarity MeasuresFeb 19, 2023
Covers how to choose the similarity measure when item embeddings are available
9 Distance Measures in Data ScienceApr 17, 2021
The advantages and pitfalls of common distance measures
distributions
Explaining Gibrat's Law: Why Growth Creates Lognormal DistributionsOct 9, 2025
Gibrat's Law explains why proportional growth processes create lognormal distributions across economics, biology, and social systems.
The Concise Guide to Chi-Square DistributionApr 8, 2025
Let's clarify this important statistical pattern and understand its significance in analysis.
9 key probability distributions in data science: Easy explanationDec 29, 2023
Understanding probability distributions in data science is crucial. They provide a mathematical framework for modeling and analyzing data.
Beyond the Bell Curve: An Introduction to the t-distributionSep 4, 2023
Discover the origins, theory and uses behind the famous t-distribution
Understanding The Hypergeometric DistributionJun 22, 2023
Breaking down one of the less well-known distributions in data science
Fully Mastering Fisher’s Exact Test for A/B TestingJul 30, 2022
While Fisher’s exact test is a convenient tool for A/B testing, the idea and results of the test are often hard to grasp and difficult to…
DAGs and Control VariablesJun 21, 2022
How to select control variables for causal inference using Directed Acyclic Graphs
Statistical T-Test Simply ExplainedMar 17, 2022
An introduction to the Student’s t-distribution and the Student’s t-test
Log-normal Distribution — A simple explanationFeb 19, 2022
How to calculate μ & σ, the mode, mean, median & variance
We Need to Let Go of the Bell CurveJan 23, 2022
Most human activities as well as many disciplines — from physics and biology to linguistics, finance, and computer science — follow a Pareto distribution instead of a “normal” Gaussian curve. In Pareto distributions, a small change in one variable is associated with a large change in another, because it reflects variables multiplied with each other rather than added to each other, as in the normal distribution. This is also referred to as a “power law.” This isn’t an obscure intellectual point, but instead carries serious practical consequences. Because of this error, our approach to most problems is, at best, suboptimal. What does this mean for business leaders? The author presents three practical implications for innovation, risk management, and people.
Probability Distributions with Python’s SciPyOct 23, 2021
How to Model random Processes with Distributions and Fit them to Observational Data
Explaining the 68-95-99.7 rule for a Normal DistributionJul 25, 2018
This post explains how those numbers were derived in the hope that they can be more interpretable for your future endeavors.
Removing Outliers Using Standard Deviation in PythonDec 27, 2017
Standard Deviation is one of the most underrated statistical tools out there. It’s an extremely useful metric that most people know how to calculate but very few know how to use effectively.
django
dns
What caused the large AWS outage?Oct 23, 2025
On Monday, a major AWS outage hit thousands of sites & apps, and even a Premier League soccer game. An overview of what caused this high-profile, global outage
New talk: Making Hard Things EasyOct 8, 2023
Making a DNS query in Ruby from scratchNov 7, 2022
Useful utilities and toys over DNSJun 11, 2022
Free and useful services over DNS accessible on command line
Some ways DNS can breakJan 17, 2022
An Introduction to DNS Terminology, Components, and Concepts | DigitalOceanJan 4, 2022
DNS, or the Domain Name System, is an integral part of how the internet functions today. However, the way that DNS works is often quite mysterious for new a…
New tool: Mess with DNS!Dec 16, 2021
What is a Domain Name? - Learn web development | MDNDec 11, 2021
Domain names are a key part of the Internet infrastructure. They provide a human-readable address for any web server available on the Internet.
DNS doesn't "propagate"Dec 6, 2021
Learn Enough Custom Domains to Be Dangerous | Learn Enough to Be DangerousFeb 13, 2021
Custom domains for websites, web apps, and email
WHOIS Lookup - Domain Lookup and Availability Checker | Domain.comFeb 12, 2021
Use our WHOIS lookup tool to search available domain names or current domain owners. Start your search today!
DNS 101: An introduction to Domain Name ServersOct 18, 2019
Domain names provide the internet much more user-friendly way of referencing servers, but have you ever wondered how it works under the covers?
Cloudflare Registrar: what happens when you register a domain?Oct 7, 2018
Every website, large or small, started with an idea, rapidly followed by registering a domain. Most registrars offer promotions for your initial domain registration and then quietly hike the price with each renewal.
Certificates for localhostJul 15, 2018
Sometimes people want to get a certificate for the hostname “localhost”, either for use in local development, or for distribution with a native application that needs to communicate with a web application. Let’s Encrypt can’t provide certificates for “localhost” because nobody uniquely owns it, and it’s not rooted in a top level domain like “.com” or “.net”. It’s possible to set up your own domain name that happens to resolve to 127.
docker
BuildKit: Docker's Hidden Gem That Can Build Almost AnythingFeb 26, 2026
Most people know BuildKit as the thing that makes docker build fast. But BuildKit is a general-purpose build framework with a programmable architecture that can produce any artifact, not just container images. Here's how it works and how I used it to build Alpine APK packages.
How to Self-Host n8n on Docker in 5 Simple StepsJan 13, 2026
This tutorial will guide you through the complete process of self-hosting n8n on Docker in just 5 simple steps, with detailed explanations and code samples, regardless of your technical background.
Switching from Docker to PodmanSep 6, 2025
Podman offers better security, uses fewer resources, and integrates seamlessly with Linux and Kubernetes, making it a superior Docker alternative
Docker Command Cheatsheet Every Developer Should KnowAug 9, 2025
Forget the DevOps-only myth — Docker is your everyday dev toolkit. Learn essential commands for images, containers, volumes, networks, and more.
Why and How to Containerize Your Existing Python AppsMay 29, 2025
Containerize your Python apps to eliminate environment issues and simplify deployment. This guide shows you why it helps and how to get started with Docker.
ollama with docker composeMay 3, 2025
Learn how to use Ollama and Open WebUI inside Docker with Docker compose to run any open LLM and create your own mini ChatGPT.
An Overview of Essential Docker Compose Commands and Their UsageOct 19, 2024
Here's an overview of the Docker Compose file components and various commands you can use to manage them.
Docker: A clear GuideMay 1, 2024
In recent years, Docker has revolutionized the way software is developed, shipped, and deployed. It...
Exploring 5 Docker Alternatives: Containerization Choices for 2024Mar 20, 2024
In the realm of containerization, Docker has long been hailed as the go-to platform for developers....
Download The Ultimate Docker Cheat SheetJan 16, 2024
Get your Docker Cheat Sheet as PDF or PNG. In this article, you learn how to write Dockerfiles, build images, and run them as container.
Ruby on Rails extends Docker supportSep 17, 2023
Now available in a beta, Rails 7.1 will generate all Dockerfiles needed for deployment, tuned for production use.
How to implement a Load Balancer Using Nginx & DockerApr 7, 2023
Scaling becomes a necessary part for your system when your system grows in popularity. There are two...
How to use Docker with Ruby on Rails applications.Feb 20, 2023
What is docker? and how to use it with ruby on rails applications? and benefits of using...
Understanding Docker: part 36 – Pause and unpause a containerDec 22, 2022
Serie of sketchnotes about Docker. Explaining in a visual way Docker principles.
rails/docked: Running Rails from Docker for easy start to developmentDec 22, 2022
Running Rails from Docker for easy start to development - rails/docked
Useful Examples of the Docker ps CommandMay 9, 2022
The most common Docker command is also a versatile command. Learn a few usages of the docker ps command.
Docker for absolute beginners: the difference between an image and a containerApr 29, 2022
Learn the difference between Docker images and containerscontainers and images are different + practical code examples
Blog | DockerJan 12, 2022
Read our blog to find the latest Docker updates, news, technical breakdowns, and lifestyle content.
Docker Commands — The Ultimate Cheat Sheet | HackerNoonDec 15, 2021
If you don’t already know, Docker is an open-source platform for building distributed software using “containerization,” which packages applications together with their environments to make them more portable and easier to deploy.
Docker: Accelerated Container Application DevelopmentDec 12, 2021
Docker is a platform designed to help developers build, share, and run container applications. We handle the tedious setup, so you can focus on the code.
Demystifying containers, Docker, and Kubernetes - Microsoft Open Source BlogDec 11, 2021
Modern application infrastructure is being transformed by containers. The question is: How do you get started?
Learning Containers From The Bottom UpNov 15, 2021
What is a Container? Container vs. VM? Docker vs. Kubernetes. How to organize the learning efficiently?
No, we don’t use KubernetesJul 20, 2021
“No, we don’t use Kubernetes”. That always gets raised eyebrows... so we decided to write about our reasoning behind this cloud architecture decision.
Docker File vs Docker Compose: What's the Difference?Mar 22, 2021
Confused between Dockerfile and docker-compose because they look and sound similar? But they are not. Read this to clear your doubts.
We Don’t Use DockerMar 16, 2021
Buildpacks vs DockerfilesFeb 10, 2021
Read more on the Doximity Technology Blog about how our engineers and data scientists are building the largest online network for clinicians.
Wait, Docker is deprecated in Kubernetes now? What do I do?Dec 10, 2020
This article explains why Docker is now deprecated in Kubernetes.
Welcome Canonical to Docker Hub and the Docker Verified Publisher Program | DockerNov 30, 2020
Learn from Docker experts to simplify and advance your app development and management with Docker. Stay up to date on Docker events and new version
docker | minikubeNov 3, 2020
Overview The Docker driver allows you to install Kubernetes into an existing Docker install. On Linux, this does not require virtualization to be enabled. Requirements Install Docker 18.09 or higher (20.10 or higher is recommended) amd64 or arm64 system. If using WSL complete these steps first Usage Start a cluster using the docker driver: minikube start --driver=docker To make docker the default driver: minikube config set driver docker Requirements Docker 20.10 or higher, see https://rootlesscontaine.rs/getting-started/docker/ Cgroup v2 delegation, see https://rootlesscontaine.rs/getting-started/common/cgroup2/ Kernel 5.11 or later (5.13 or later is recommended when SELinux is enabled), see https://rootlesscontaine.rs/how-it-works/overlayfs/ Usage Start a cluster using the rootless docker driver:
Docker NetworkingAug 10, 2020
When you install docker it creates three networks automatically - Bridge, Host, and None. Of which, Bridge is the default network a…
Docker 101: All you wanted to know about DockerAug 10, 2020
Docker — If you have ever been intimidated by its fancy name and wondered what it is — this post is for you.
A concise guide to DockerJul 26, 2020
There are several courses available on this topic. Some of them are very short and do not serve any other purpose than a ‘Getting started…
Basic Docker Commands for BeginnersApr 24, 2020
If you're trying to learn Docker you will first have to master its various terminal commands. This guide aims to help you get started with basic docker commands.
docker – Towards Data ScienceMar 20, 2020
Docker Images: Part I – Reducing Image SizeMar 9, 2020
Ardan Labs is trusted by small startups and Fortune 500 companies to train their engineers and develop business software solutions and applications.
More than "Hello World" in Docker: Build Rails Sidekiq web apps in DockerAug 20, 2019
The first post on a series to get you ready to develop and deploy production-grade workloads in AWS.
15 Docker Commands Beginners Should KnowAug 5, 2019
In this post, basically, I don't put options. If you think this command is lacking something import...
documentaries
The 15 Greatest Documentaries of All Time: Explore Films by Werner Herzog,Mar 13, 2024
There are two kinds of people in this world: those who recognize the phrase 'corny dialogue that would make the pope weep,' and those who don't.
Ask HN: What are some of the best documentaries you've seen? | Hacker NewsSep 15, 2022
If you could describe in a couple of words why you mentioned what you mentioned, that would be fantastic.
documentation
Creating PDF Reports with PythonDec 3, 2025
Creating PDF Reports with Python Introduction Generating PDF reports programmatically can be incredibly useful for automating document creation, especially in a business context. Python offers …
Marktechpost/AI-Tutorial-Codes-Included: Codes/Notebooks for AI ProjectsOct 27, 2025
Codes/Notebooks for AI Projects. Contribute to Marktechpost/AI-Tutorial-Codes-Included development by creating an account on GitHub.
Heredocs Can Make Your Bash Scripts Self-Documenting | Hold The RobotJul 26, 2025
I have long since come to appreciate the value of writing scripts
Every Page is Page OneOct 19, 2024
Full Guide to Building a Professional Portfolio with Python, Markdown, Git,Aug 2, 2024
This article is a end-to-end guide to build a professional portfolio for developpers and data workers based on github page.
Turning Back the Clock: The 1951 Bell Manual for Operating a Rotary TelephoFeb 19, 2024
In 1951, Bell Telephone System introduced a guide titled "The Telephone and How We Use It," designed to aid elementary school students and others in understanding the operation of classic rotary dial phones. The guide detailed everything from basic phone use, handling emergencies, to polite phone ma
Tracking TODO and FIXME Comments with Rails Notes CommandMar 24, 2023
This post shows how you can use the notes command in Rails to search through your codebase for comments starting with a specific keyword. By default, it searches the codebase for FIXME, OPTIMIZE, and TODO comments, but you can also configure it to use custom keywords.
Want your customers to RTFM? Try building a better user manualNov 21, 2022
For a cost-effective way to reduce expenses, boost retention and drive new revenues, bring your outdated user manuals into the digital era.
RTFM? How to write a manual worth readingJul 18, 2022
Patience and empathy are the basis of good documentation, much as they are the basis for being a decent person. Here's a how-to for creating better open source project docs, which can help your users and grow your community.
About | Divio DocumentationJun 14, 2022
Find the software documentation system for Divio. Includes comprehensive tutorials, how-to guides, technical reference and explanation. Learn more here.
How to Write Better with The Why, What, How FrameworkJun 14, 2022
Three documents I write (one-pager, design doc, after-action review) and how I structure them.
dogs
When Coyotes Threatened Livestock on Central Texas Ranches, the Solution Was to Unlock an Ancient Ability in DogsFeb 20, 2026
Killing the predators is not nearly as effective as the intimidating presence of well-trained guardians, a role some breeds have played for 5,000 years
The Airlift Operation That Has Transformed Pet AdoptionOct 16, 2025
Euthanasia in an under-equipped shelter used to be the fate of many dogs in Texas. Then chartered planes started bringing them North.
Addictive-like behavioural traits in pet dogs with extreme motivation for toy play - Scientific ReportsOct 13, 2025
Scientific Reports - Addictive-like behavioural traits in pet dogs with extreme motivation for toy play
God Dog | Mina TavakoliSep 4, 2025
BLACK RUSSIAN TERRIER, read the chyron on Madison Square Garden’s GardenVision video display. Beneath: THEIR ONLY COLOR IS BLACK.
How to Save a DogJul 5, 2025
For nearly a year, a motley crew scoured New Orleans for a shaggy white mutt named Scrim.
What It Means to Love a DogApr 23, 2024
I loved my mom more than my dog. So why did I cry for him but not for her?
Bring your pet while riding your bike with trailer and backpack in oneMar 31, 2024
For fur parents that have bikes and need to bring their babies with them outside, having somewhere to place their pet safely and conveniently can sometimes be a challenge. Fortunately, a lot of pet-related brands have been coming up with different products to make life easier for both the owner and the pet. And we'll
20 Dog-Friendly Beaches For Sandy Paws In The SouthMar 10, 2024
From Alabama to Maryland, these are some of the best dog-friendly beaches in the South, so you never have to leave your pup behind while you vacation.
Rescuing Abandoned Dogs Is His RehabFeb 29, 2024
Mike Favor spent 13 years addicted to cocaine. Running a shelter for abandoned and abused dogs has helped him and others stay sober. But it hasn’t been easy.
A new sport for your dog: Barn HuntFeb 16, 2024
Dogs must tunnel through bales of hay to find live rats hidden in tubes.
Dogs on India’s streets can be freer and happier than many pets | Aeon EssaysMay 12, 2023
These canines have independent, peaceful, happy lives without a pet’s constraints. Why are they being persecuted and culled?
A Gambell dog walked 166 miles across sea ice to Wales and made it home safely, save for 2 big bite marksApr 13, 2023
Nanuq, a year-old Australian shepherd, was gone nearly a month before Facebook posts helped reunite him with his family on St. Lawrence Island.
Why all dogs are good dogs | Alexandra HorowitzMar 25, 2023
Canine cognition expert Alexandra Horowitz offers a peek inside the mind of your dog, sharing solutions to common "misbehaviors" that are often simply the result of a pup's attempt to communicate in a world that's very different from their own. Hear about the evolution and psychology behind your dog's actions -- and how to give them a happier, healthier life. (This conversation, hosted by TED current events curator Whitney Pennington-Rodgers, was part of an exclusive TED Membership event. TED Membership is the best way to support and engage with the big ideas you love from TED. To learn more, visit ted.com/membership.)
Hunting for Truffles Is a Perilous Pursuit, Especially for the Dogs Who DigJan 14, 2023
Truffles are big business, and some are trying to take out the competition by poisoning the dogs that accompany those known as “truffle hunters.”
What Is a Dog Anyway?Dec 8, 2022
Defining what a dog is is really tough, but the domestication of wolves might be the feat that set modern humans on the path to dominance
How America Saved Millions of Dogs—By Moving ThemFeb 20, 2022
How adoptable animals became a cultural phenomenon in their own right, and a key part of a transformation of companion-animal welfare.
Jack Russell Japanese Kanagawa WaveAug 24, 2013
A made-to-order item that is printed in and shipped from the USA. Indulge yourself or make an incredible present for your friends and family. Available For A Limited Time Only! Not Sold Anywhere! Don't Miss Out! ✈️ Worldwide Shipping Available ✈️ Recently Viewed & Featured Products
San Francisco’s new cage-free dog shelter is a colorful utopia for older dogsOct 24, 2002
The new Muttville shelter is a high-design open-concept space, making the rescue experience more approachable and fun for both dogs and humans.
dogwhistles
Dogwhistles and Figleaves. How Manipulative Language Spreads Racism and Falsehood, by Saul JenniferJul 24, 2025
Language serves many purposes. It can propel us forward, both individually and collectively, but it can also plunge us into misery. The latter is the focus
Beyond dogwhistles – racists have a new rhetorical trickFeb 17, 2024
How are so many politicians today able to get away with overtly racist utterances? By using rhetorical ‘figleaves’
domains
What’s in a domain name: The meaning of URL suffixes - Rest of WorldSep 27, 2023
From .ai to .vc, inside the weird and lucrative marketplace of website addresses.
What is a Subdomain and How Does it Affect Your Site’s SEO?Jul 4, 2022
Subdomains are used to differentiate a page from the main website. They can have a positive impact on SEO—or a negative impact. Click to learn how to use them properly.
The Dumb Domain Store : Weird Domains QuickSep 24, 2017
The place you go when you need a cheap domain and you’re lazy.
doubt
3 simple steps to overcome self-doubt at workJul 24, 2025
It’s time to surmount the syndrome. Start by rewriting the story you hear in your head.
Deliberate doubt: the art of questioning our assumptionsDec 6, 2022
Deliberate doubt is the practice of actively questioning our beliefs and assumptions. It is about suspending our certainty and letting go of our preconceived notions in order to explore new ideas and perspectives.
drawing
So what's the difference between plotted and printed artwork?Aug 13, 2025
A common source of confusion that I experience when posting my artwork on social media is: _why?_ Why use a plotter when you could use a printer? It's slower. Less exact. More expensive. It fails, far too often. Inkjet printers became ubiquitous in the 1980s because they solved nearly all of these problems. So why are artists obsessed with pen plotters?
This personal whiteboard has everything you need to take notes anywhere, anFeb 1, 2023
https://youtu.be/txci5QkpSWc Writing things by hand has become fashionable again despite the prevalence of computers and smartphones. In fact, some have embraced this "analog" system of note-taking exactly as a reaction to the dominant reliance on technology. Whatever the reason, this resurgence in demand for paper products might also have negative effects on the environment when
The joy of sketching - UXMMar 28, 2022
The most important tool for any UX designer is a pen and a stack of paper. Why? Because before you even think about designing an interface you should be sitting down to sketch out your ideas. Find out why you should be ditching the computer and embracing pen and paper.
Have You Fallen for the Myth of ‘I Can’t Draw’? Do It Anyway—and Reap the RewardsJan 16, 2022
The hurdles people face when it comes to learning to draw and how they can be overcome.
How I draw figures for my mathematical lecture notes using InkscapeApr 29, 2019
In my previous blog post, I explained how I take lecture notes using Vim and LaTeX. In this post, I’ll talk about how I draw figures for my notes using Inkscape and about my custom shortcut manager.Some examples First, let me show you some examples of figures…
drones
How Drone Swarms Actually Work and What Industries Should CareNov 4, 2025
True drone swarms can cut costs and boost efficiency in agriculture, logistics and humanitarian demining, but software remains a hurdle.
What happens if you shoot down a delivery drone?Jul 8, 2024
As deep-pocketed companies like Amazon, Google and Walmart invest in and experiment with drone delivery, a phenomenon reflective of this modern era has
Military Drone Swarms and the Options to Combat Them | Small Wars JournalAug 24, 2022
The tactical use of drones is expanding as demonstrated from the past 100 years. Drones were first created in the U.S. and United Kingdom during World War I, though neither country employed them during the war. In World War II, the Nazis created the V-1 to serve as a missile. The U.S. employed drones for surveillance missions during the Vietnam War and utilized them frequently for counter-insurgency surveillance and strikes in Iraq and Afghanistan. Drones are now developed in and utilized by over 100 countries and non-state actors. Drone capabilities, manufacturers, and customers will likely continue increasing and a tactical shift in utilizing drone swarms is emerging. This article provides a broad overview on the current state of drones for commercial and military use, the impact drone swarms can play in the military environment, and the options available to combat swarms.
dropshipping
The “ghost stores” of InstagramNov 3, 2021
That cute dress you bought off Instagram could be found on Shein, AliExpress, or Amazon for much cheaper.
The 11 Best Dropshipping ToolsNov 20, 2020
How can dropshipping tools give you the edge in the competitive world of e-commerce? We take a look at the 11 best dropshipping tools you should be using.
AliExpress - Online Shopping for Popular Electronics, Fashion, Home & GardeMay 2, 2020
AliExpress lets you unlock top brands' bestselling electronics, clothing, homewares, toys, sporting equipment, auto parts and more so you can live better for less.
‘It’s bullshit’: Inside the weird, get-rich-quick world of dropshippingMay 1, 2020
In Bali, western immigrants are selling products they've never handled, from countries they've never visited, to consumers they've never met
dsp
Energy-Efficient Signal Detectors For Massive MIMO Using SRAM-Based IMCsAug 15, 2025
A new technical paper titled “Energy-Accuracy Trade-Offs in Massive MIMO Signal Detection Using SRAM-Based In-Memory Computing” was published by researchers at the University of Illinois at Urbana–Champaign. Abstract “This paper investigates the use of SRAM-based in-memory computing (IMC) architectures for designing energy efficient and accurate signal detectors for massive multi-input multi-output (MIMO) systems. SRAM-based IMCs... » read more
Exploring the Relationship Between FM Wave Bandwidth and the Modulation IndexAug 3, 2025
In this article, we'll investigate how varying the amplitude and frequency of the modulating tone impacts the bandwidth of FM signals. We'll also compare the modulation index in AM and FM schemes.
Exploring Bessel Functions: Understanding the Spectrum of Tone-Modulated FMJul 20, 2025
In this article, we’ll learn about the essential properties of Bessel functions and what they can tell us about the bandwidth of practical FM signals.
Introduction to Wideband FM SignalsJul 13, 2025
Learn how Bessel functions and the modulation index can help us understand the bandwidth of wideband frequency-modulated (FM) signals.
Bloom Filters by ExampleJun 30, 2025
Understanding Conventional Amplitude ModulationDec 15, 2024
Learn about conventional AM, an amplitude modulation technique commonly used in commercial radio broadcasting.
PAM4: Pulse Amplitude Modulation ExplainedOct 19, 2024
An in-depth look at the high-speed data communication standard's benefits and tradeoffs.
Kalman Filter Explained Simply - The Kalman FilterFeb 12, 2024
Tired of equations and matrices? Ready to learn the easy way? This post explains the Kalman Filter simply with pictures and examples!
youtube_channel/Python Tutorial Series/fourier_transform1.ipynb at main · lukepolson/youtube_channelSep 29, 2023
Notebooks for the python tutorials of my youtube channel. See specific youtube video for link to specifc notebook. - lukepolson/youtube_channel
How Mathematical Curves Enable Advanced CommunicationJul 22, 2023
A simple geometric idea has been used to power advances in information theory, cryptography and even blockchain technology.
Hilbert Transform - ElectroagendaJul 13, 2023
Concise summary of the Hilbert transform: mathematics, effects on signals, and applications in telecommunications.
Digital Music Couldn't Exist Without the Fourier TransformDec 21, 2022
This is the Fourier Transform. You can thank it for providing the music you stream every day, squeezing down the images you see on the Internet into tiny
The Scientist & Engineer's Guide to Digital Signal Processing, 1999 | Analog DevicesOct 20, 2022
The guide provides a practical introduction to Digital Signal Processing, covering a wide range of topics. It is an ideal introduction for those new to DSP, and an excellent reference for more experie
Signal Processing, beyond the Fourier Transform: Introduction to the ChirplSep 24, 2022
From a theoretical introduction to the hands-on implementation: here’s what you need to know about the Chirplet Transform
Noise.sh – a digital signal processing spreadsheet for sound designNov 3, 2020
The domain name noise.sh is being parked on Park.io. Contact the domain owner to make an offer right now...
PySDR: A Guide to SDR and DSP Using PythonNov 2, 2020
Finding cyclic patterns: a tutorial on how to implement STFT in PythonMar 9, 2020
If you have ever heard Python and Fourier nouns, chances are you’ll find this post useful: here I will explore a simple way to implement…
What does the Laplace Transform tell us? A visual explanation [video]Dec 14, 2019
Sign up with brilliant and get 20% off your annual subscription: https://brilliant.org/MajorPrep/
STEMerch Store: https://stemerch.com/
Support the Channel: https://www.patreon.com/zachstar
PayPal(one time donation): https://www.paypal.me/ZachStarYT
This video goes through a visual explanation of the Laplace Transform as well as applications and its relationship to the Fourier Transform.
Instagram: https://www.instagram.com/zachstar/
Twitter: https://twitter.com/ImZachStar
Join Facebook Group: https://www.facebook.com/groups/majorprep/
►3D Graphing Software (this is not a sponsor nor an affiliate link, bought the software just because I liked it): https://www.runiter.com/
►Animations: Brainup Studios (email: brainup.in@gmail.com)
►My Setup:
Space Pictures: https://amzn.to/2CC4Kqj
Magnetic Floating Globe: https://amzn.to/2VgPdn0
Camera: https://amzn.to/2RivYu5
Mic: https://amzn.to/2BLBkEj
Tripod: https://amzn.to/2RgMTNL
Equilibrium Tube: https://amzn.to/2SowDrh
►Check out the MajorPrep Amazon Store: https://www.amazon.com/shop/zachstar
Free E-Book: Software Defined Radio for EngineersJun 30, 2018
We really like when a vendor finds a great book on a topic — probably one they care about — and makes it available for free. Analog Devices does this regularly and one you should probab…
Enabling signal processing over data streamsJun 8, 2018
Basic Signal Operations in DSP: Constant-Valued and Alternating SignalsJun 8, 2018
In this article, we’ll discuss a few elementary signal operations by considering one of the signals to be constant-valued.
An Introduction to the Fast Fourier TransformDec 27, 2017
This article will review the basics of the decimation-in-time FFT algorithms.
due-diligence
The SIFT methodSep 7, 2025
The SIFT method is "an evaluation strategy developed by digital literacy expert, Mike Caulfield, to help determine whether online content can be trusted for credible or reliable sources of information." …
What Is Provenance & Why Is It Important for Someone Buying Art?May 6, 2025
Market value and establishing authenticity depend on uncovering an artwork’s past, which requires skilled provenance research.
Recipe for Disaster: The Formula That Killed Wall StreetDec 7, 2022
In the mid-’80s, Wall Street turned to the quants—brainy financial engineers—to invent new ways to boost profits. Their methods for minting money worked brilliantly… until one of them devastated the global economy.
YC’s Series A Diligence Checklist | Y CombinatorJul 18, 2022
Below you’ll find a Series A diligence checklist. This runs through all the pieces of information you’ll need to have ready once you sign a term sheet. Having all of this together in one place – a Data Room – before you sign a term sheet will cut as much as a week off of your closing process. Founders don’t generally realize that closing an A can take more than a month, much of which is often spent tracking down documents for lawyers. Jason Kwon, the GC of YC Continuity put this checklist toget
Five Questions Companies Should Ask Before Making an Innovation-Driven AcquisitionJul 5, 2022
The Swiss pharmaceutical giant Roche is nothing if not determined in its quest to acquire Illumina, the San Diego-based leader in genetic-sequencing equipment. In January, after Illumina’s board rebuffed Roche’s initial overtures, Roche made a $5.7 billion tender offer directly to shareholders. When that didn’t succeed, it extended the offer to midnight last Friday. Now […]
dunning-kruger
Dunning–Kruger Effect - The Decision LabMar 16, 2023
Dunning–Kruger Effect explains why the least competent at a task often incorrectly rate themselves as high-performers because they do not know otherwise.
Why Do Stupid People Think They're Smart? The Dunning Kruger Effect (animatMar 16, 2023
The Dunning-Kruger effect can be observed during talent shows like American Idol. The auditions are usually filled with a variety of good and bad singers. The ones who are bad at it, almost never realize how bad they really are.
Low ability people do not possess the skills needed to recognize their own incompetence or lack of knowledge. Their poor self-awareness leads them to overestimate their own capabilities.
However when you become more knowledgeable about a certain topic, that confidence falls. Only when you start to reach above average skill, is when the your confidence about a certain topic starts to pick up again.
But why? Why does being less skilled make you more confident in your abilities?
Images © Piers Baker www.svgdoodlewhiteboard.com
#dunningkrugereffect #cognitivebias #stupidpeople
Bonhoeffer's "theory of stupidity": We have more to fear from stupid people than evil onesFeb 3, 2023
Bonhoeffer's "theory of stupidity" posits that we have more to fear from stupidity than evil. The latter is easier to defeat than the former.
ecommerce
The Psychology of AI SERPs and ShoppingDec 29, 2025
The rise of "zero-click" searches may signal the coming effect of AI shopping on product discovery and decision-making.
How Sam’s Club became the ‘Netflix of shopping’Oct 17, 2025
CEO Chris Nicholas aims to double sales at the Walmart unit with a focus on driving “disruptive value.”
How Visual Cues Drive Sales: Practical Strategies for RetailersOct 10, 2025
Step into a flagship on Oxford Street or a pop-up in Manchester and the same truth applies: what shoppers see first shapes what they do next. Visual cues, whether bold colour blocking, angled shelving, or lighting accents, are the quiet persuaders of retail. They do more than decorate space. They guide behaviour, build trust, and […]
The Psychology of Choice: How Much Freedom Do Customers Really Want?Oct 10, 2025
Retailers have long assumed that the bigger the range, the happier the customer. Endless shelves, multiple variants, and every possible option should, in theory, increase satisfaction. Yet the evidence is more nuanced. Recent research shows that in some contexts, larger assortments can increase hesitation and reduce conversion, while in others the effect is muted. Overload […]
Why your Amazon Ads aren't delivering: 6 critical issues to fixAug 31, 2025
Many Amazon ad delivery issues have little to do with bids. Find out what really stops ads from running – and how to prevent it.
Fulfillment Compared: Amazon, Walmart, ShopifyAug 27, 2025
Ecommerce operators tired of picking, packing, and posting parcels can turn to massive marketplaces and the leading ecommerce platform for help.
319 Top Ecommerce Sites Ranked by User Experience Performance – BaymardAug 20, 2025
See the ranked UX performance of the 319 leading ecommerce sites in the US and Europe. The chart summarizes 100,000+ UX performance ratings.
AI Shopping Tools Threaten AffiliatesAug 11, 2025
Shoppers who ask AI for product recommendations bypass traditional review sites, potentially causing lost or unattributed traffic from affiliates.
How price increases are adding up at SheinJul 28, 2025
Evidence for the impact of Trump’s trade war has shown up at the popular China-founded online retailer.
CMS and e-commerce: How they differ and work togetherJul 24, 2025
Understanding the differences between CMSes and e-commerce platforms is vital for businesses. Yet, together, they help companies enhance customer experience and boost sales.
Optimally Suboptimal: Behavioral-Economic Product FeaturesJul 22, 2025
Booking travel online feels like shopping in an Indian bazaar: a deluge of options, no credible information, aggressive hawkers (“recommendations” and “targeted ads”), and hours of frantic search that end with purchasing something more out of exhaustion than conviction. Online travel booking is not unique in offering this miserable experience. Buying on Amazon feels like a similar sand trap. But why is that? Poor product management? A more provocative but perhaps more accurate answer is that the
Merchandising Lessons from Top MarketplacesJun 24, 2025
We analyze the home pages of 10 marketplaces to spot common merchandising traits.
Selling Your Side Project? 10 Marketplaces Data Scientists Need to Know - KDnuggetsJun 10, 2025
That app collecting dust on your GitHub? Someone out there is ready to pay thousands for it — these 10 platforms prove it.
Cross-sell Tactics of Top DTC BrandsJun 1, 2025
Our just-completed analysis of 40 direct-to-consumer brands revealed several cross-selling techniques.
Flash Sales without Brand DamageMay 19, 2025
The best flash sales build urgency that aligns with long-term goals, brand positioning, and channel constraints.
Ecommerce: A List of TacticsApr 22, 2025
Dive into the customer's mind. Read guides. Watch cool videos. Pricing, sales, design, negotiation, and more.
What Do Pawn Shops Buy? Answered + Prices Ranges DetailedApr 8, 2025
What can you sell at a pawn shop? We explain what pawn shops buy, plus how to get the most money. Find price details for electronics, clothing, and more.
How PawnGuru Helps Sellers And Pawn Shops Compare Prices OnlineApr 8, 2025
Inside of a pawn shop / Photo Credit: PawnGuru Pawning something you own can be a major challenge. You want to get the highest amount for your item, but you don’t know which pawn shop will pay the most. Reality TV shows like “Hardcore Pawn” and “Pawn Stars” demonstrate how pawn [...]
The Economics of Pawn ShopsApr 8, 2025
Pawn shops are America's lenders of last resort. But even for the same item, the amount pawn shops will loan you can vary more than 1,000%.
Rimowa is selling old, beat-up suitcases—and they’ll likely be snatched up in minutesMar 24, 2025
Rimowa's pre-owned suitcases look well-worn. And many consumers see these dents and scratches as a badge of honor.
Ecommerce and the Secondhand BoomMar 23, 2025
Culture, marketplaces, and economics contribute to consumer demand for used clothing. Merchants can benefit.
Buy All This, Look RichFeb 22, 2025
How Quince, the one-stop shop for everything from cashmere sweaters to caviar, seduced a generation of jaded shoppers.
ISO 8583: The language of credit cards — IncreaseDec 19, 2024
Discover the inner workings of ISO 8583, the global standard for credit card transaction messaging. Learn how it powers payment processing across networks and explore its structure, fields, and real-world applications.
20+ Best Coupon & Voucher Print Templates – SpeckyboyDec 8, 2024
A collection of professional and easy-to-customize coupon and voucher print templates. We have templates for Photoshop, InDesign, Illustrator, and Figma.
Build Your Own Ecommerce Platform in 2025Dec 8, 2024
Advances in composable commerce allow even smaller merchants to pick and choose the right apps for their businesses.
Returns Are a Headache. More Retailers Are Saying, Just ‘Keep It.’Nov 18, 2024
In a survey, nearly 60 percent of retailers said they had policies that refund customers for items that aren’t financially viable to send back.
I tried every email marketing tool — these are the best (2024)Nov 17, 2024
After 14 years with MailChimp, I decided to switch. I researched the top 26 email marketing tools to find a replacement and here’s what I discovered.
4 Payment Processing Pitfalls to AvoidOct 28, 2024
Industry pros cite common merchant mistakes that jeopardize processor relationships and damage a business.
SEO for Ecommerce Product PagesOct 19, 2024
The content on a product page determines its search engine visibility. Here are five content tactics for better product page rankings.
The Surprising Psychology That Makes Starbucks’ Pumpkin Spice Latte IrresistibleOct 17, 2024
I have a confession to make - I’m a huge Starbucks fan. I know in some of your eyes that might make me basic or tacky or “very American,” but it’s the truth. I grew up watching Friends and Frasier and both shows made the idea of going to a “coffee shop” seem like an
Why China’s Small Merchants Are Checking Out of Mega Shopping FestsJun 19, 2024
Frustrated by high return rates and dwindling profits, small merchants are questioning the long-term viability of discount-driven shopping festivals. Some are even opting out and returning to more traditional business models.
Background Enhancement Tool Turns Any Photo Into a Studio-Quality Product IJun 5, 2024
eBay’s new AI-powered feature makes it simple for sellers to create beautiful listings that reflect their brand and help grow their business.
Streamlining E-commerce: Leveraging Entity Resolution for Product MatchingMay 28, 2024
How Google figures out the price of a product across websites
12 Tools for Generating HashtagsMay 28, 2024
Need more from social media campaigns? Try high-performing hashtags.
Amazon Marketplace FearsMay 27, 2024
Amazon's marketplace accounts for most of the revenue for thousands of merchants. Therein lies the fear.
How Four Brothers Allegedly Fleeced $19 Million From AmazonApr 30, 2024
Over the course of two years, four brothers allegedly swindled Amazon out of at least $19 million using $94 toothbrushes and other expensive goods.
Exclusive | Inside Amazon’s Secret Operation to Gather Intel on RivalsApr 18, 2024
Staff went undercover on Walmart, eBay and other marketplaces as a third-party seller called ‘Big River.’ The mission: to scoop up information on pricing, logistics and other business practices.
10 New Ecommerce Books for Spring 2024Apr 1, 2024
This installment of our quarterly rundown includes titles on digital marketing, team development, content marketing, AI, launching a startup, and more.
Algorithms can aid price collusion, even if no humans actually talk to eachMar 30, 2024
The DOJ and FTC weighed in on a case about hotel pricing.
How to Get Started: Investigating Payment Gateways OnlineMar 29, 2024
Investigating the financial transactions of an organisation can reveal details about its connections and funding. Here's a quick guide on how to do it.
Lessons from More Than 1,000 E-Commerce Pricing TestsMar 19, 2024
At most small and medium-sized e-commerce retailers, prices are typically set and updated in an ad hoc fashion without one clear owner. The process often starts by using a gross margin target, followed by some comparison with competitors, and then some adjustments from there. Many of these retailers would quickly admit that this isn’t an optimal strategy, and that they are likely leaving money on the table — and they’re often right. The authors’ experience with price testing has shown that there is actually a significant amount of money left on the table when pricing is left un-optimized.
Guide to Marketplace Payment ProcessingMar 17, 2024
By Mdu Sibisi One of the biggest challenges for modern e-commerce and fintech developers is building...
Nigerian businesses increasingly skip traditional banks and turn to MoniepoMar 8, 2024
Moniepoint’s payment machines have become ubiquitous across Nigeria. But the company faces competition from Chinese-backed OPay.
Tools to Export Google’s SERPsFeb 29, 2024
Knowing the URLs in search engine result pages leads to further analysis, such as referring domains, page authority, word count, and more.
Email Delivery, ExplainedFeb 29, 2024
The best email offers are meaningless if recipients never see them. Here's how to ensure messages reach inboxes.
12 Apps for Creating, Editing VideosFeb 20, 2024
Sophisticated videos require only a smartphone and an app. Here's an update to our long-running resource of tools to create, edit, and transform videos.
Privacy Tactics Complicate Ecommerce MarketingFeb 3, 2024
Eliminating URL tracking parameters forces marketers to find other attribution methods.
How an Ugly Single-Page Website Makes $5,000 a Month with Affiliate MarketiJan 23, 2024
No need to create a fancy and modern website with hundreds of pages to make money online.
ChatGPT Prompts for Customer PersonasJan 23, 2024
Identify and target personas of keywords, competitors, Reddit discussions, and more.
‘Let’s Go Shopping (LGS)’ Dataset: A Large-Scale Public Dataset with 15M ImJan 17, 2024
Developing large-scale datasets has been critical in computer vision and natural language processing. These datasets, rich in visual and textual information, are fundamental to developing algorithms capable of understanding and interpreting images. They serve as the backbone for enhancing machine learning models, particularly those tasked with deciphering the complex interplay between visual elements in images and their corresponding textual descriptions. A significant challenge in this field is the need for large-scale, accurately annotated datasets. These are essential for training models but are often not publicly accessible, limiting the scope of research and development. The ImageNet and OpenImages datasets, containing human-annotated
9 strategies for removing negative content from the webJan 16, 2024
Here are ways to remove webpages and online posts harmful to your brand – from privacy claims and copyright notices to legal measures.
19 Open Source Ecommerce PlatformsJan 1, 2024
Open-source platforms are flexible, composable, and highly customizable. Here's the all-new update to our longstanding list.
What is RGSP? Google’s Randomized Generalized Second-Price ad auctions explOct 15, 2023
A deep dive into why the DOJ thinks RGSP makes ad auctions unfair, and why Google believes it creates a better user experience.
Comparing 4 Image-to-text AI ToolsOct 13, 2023
Drop a photo into an AI vision technology tool and receive product descriptions, social media captions, and more. We test four leading providers.
The all-out revolt against Knitting.com helps explain boycotts at Reddit anOct 3, 2023
The knitting world rose up against corporate ownership—and displayed the power of online communities
Burning money on paid ads for a dev tool – what we've learnedSep 29, 2023
Since starting PostHog in 2020, we’ve learned a bunch about what does and doesn’t work when it comes to marketing to engineers . Paid ads is a…
Your Followers are not Your FansSep 27, 2023
Using data provided by Vivid Seats and Instagram, I learned that social media clout isn't all it's cracked up to be.
ACH vs. Wire Transfers: Which Is Right for You?Sep 8, 2023
Automate complex business processes with Nanonets' intelligent automation AI. Draw actionable insights from unstructured data across multiple sources.
eBay rolls out a tool that generates product listings from photosSep 7, 2023
eBay's new generative AI tool, rolling out on iOS first, can write a product listing from a single photo -- or so the company claims.
There are more than 4 types of search intentAug 18, 2023
Explore user motivations, intent categories, and tactics to create SEO content that resonates and converts.
11 free tools for PPC campaign managementAug 14, 2023
These tools can help you analyze PPC competitors, track search trends or design ad creative – all without spending a dime.
Four Types of Ecommerce Merchandising That Business Owners Should KnowAug 6, 2023
By Sam Cortez, managing editor and outreach specialist for Scalefluence.comMerchandising is the process and practice of displaying and arranging products for the best customer experience. The concept of merchandising is based on guiding prospective customers through the buyer’s journey and presenting them with the right products, at the right time and place, in the right quantity, and with the best prices.
Inside the Delirious Rise of ‘Superfake’ Handbags (Published 2023)May 31, 2023
Can you tell the difference between a $10,000 Chanel bag and a $200 knockoff? Almost nobody can, and it’s turning luxury fashion upside down.
ChatGPT Prompts for Text AnalysisMay 28, 2023
ChatGPT can generate usable content. But it can also analyze existing content — articles, descriptions — and suggest improvements for SEO and social media.
Use ‘Look Inside’ to Sell More ProductsMay 25, 2023
The benefits of Amazon's "Look inside" book label applies to many products. Apparel, bags, housewares, and more could experience more conversions with an inside peek.
10 SEO challenges faced by fast-growing SaaS companiesMay 18, 2023
When done right, SEO efforts can reduce SaaS customer acquisition costs and maximize marketing ROI dramatically.
11 Product Labels for Max ConversionsMay 8, 2023
Paraphrasing technical product details into easy-to-understand labels drives ecommerce conversions. Here's how, with examples.
Thrift shops thrive when disorder is balanced with high seller knowledgeMay 2, 2023
One person's trash may well be another's "come up," or what the rapper Macklemore calls hidden treasures in the song "Thrift Shop," but only if secondhand shoppers follow the rapper's lead and dig through ...
eBay’s Blazingly Fast Billion-Scale Vector Similarity EngineMay 2, 2023
The Similarity Engine's use cases include item-to-item similarity for text and image modality and user-to-item personalized recommendations based on a user’s historical behavior data.
The Future of Ecommerce: How a Product Becomes a PurchaseMar 24, 2023
General Partner Connie Chan on how leading brands are using AI and other technology to combine the serendipitous discovery of offline shopping with the infinite options of online shopping. Today, most of the Western world revolves around search-based online commerce. This means that most shoppers type directly what they want into a store search bar,...
10 Best Practices for Ecommerce Checkout DesignMar 22, 2023
Optimizing your ecommerce checkout process is crucial to reduce cart abandonment rates, as it affects...
China’s Digital Landscape in 2020 | KAWO 科握Mar 20, 2023
A comprehensive overview of the China social media landscape in 2020 - know how to navigate and help marketing teams achieve success in Chinese social!
How 20 years of Google’s AdSense changed the internetMar 10, 2023
Google's targeted ad initiative AdSense was initially launched as “content targeting advertising” 20 years ago this month. Here’s how it changed the internet.
Target Just Announced Something Brilliant That Amazon Can't Compete WithMar 10, 2023
Make it easy for your customers to do business with you.
9 Ways to Grow Repeat BuyersFeb 22, 2023
Repeat customers are the lifeblood of successful ecommerce stores. Here are helpful tips for encouraging buyers for the long term.
20 Free Ecommerce Icon SetsFeb 22, 2023
Professional icons can engage shoppers and assist in navigation, checkout, and more. Here's our all-new update of ecommerce icons for most every need.
Tools to Create, Optimize Meta DescriptionsFeb 16, 2023
Meta descriptions do not influence organic rankings. But the descriptions appear in search snippets more often than not and thus impact clicks on organic listings.
Building a Recommender System for Amazon Products with PythonFeb 10, 2023
I built a recommender system for Amazon’s electronics category
Shopping for Apparel in an Online World: UI/UX Design for Virtual ClothingFeb 10, 2023
How AR and VR are reshaping apparel e-commerce.
3 Flaws of Cost-plus Pricing - Practical EcommerceJan 22, 2023
Cost-plus pricing on the surface seems straightforward. But then market forces intervene.
Why Everything at Walgreens Is Suddenly Behind PlasticJan 21, 2023
The recent spike in shoplifting is both overblown and real. And almost everyone is profiting from it (including you).
15 Press Release Distribution ServicesJan 17, 2023
Spreading the word on product launches, updates, and collaborations is difficult. Press releases can help, especially when distributed to targeted media outlets.
Hacker NewsJan 7, 2023
Ultimate Guide on Working with Suppression ListsDec 28, 2022
Email suppression lists are a powerful tool that every email marketer should use. Since suppression lists allow keeping your sending reputation and email
9 UX Learnings From the World's Best Ecommerce SiteDec 18, 2022
Ecommerce websites require great user experience (UX) to achieve the reason for which they’re...
9 Best Ecommerce UX Practices From the World's Best Ecommerce SiteDec 17, 2022
Discover the 9 best ecommerce UX practices from the world's top B2B ecommerce sites that made the top of HackerNews as the best ecommerce site.
An eCommerce Guide To Accepting International PaymentsDec 13, 2022
By Anna Smith, freelance writer.Pursuing global markets can be a thrilling and significant step for your business. However, it’d be best to establish a secure and proficient means for accepting payments internationally. The best worldwide payment method for your eCommerce will differ depending on the location or country of your customers.
Where Does All the Cardboard Come From? I Had to Know. (Published 2022)Dec 5, 2022
Entire forests and enormous factories running 24/7 can barely keep up with demand. This is how the cardboard economy works.
Basically everything on Amazon has become an adNov 15, 2022
Inside the under-the-radar business that makes more money than Amazon Prime.
A Complete Taxonomy of Internet Chum - The AwlOct 29, 2022
by John MahoneyThis is a bucket of chum. Chum is decomposing fish matter that elicits a purely neurological brain stem response in its target consumer: larger fish, like sharks. It signals that they should let go, deploy their nictitating ...
GoodwillFinds.com gives shoppers more reasons to feel good about buying secOct 5, 2022
A new recommerce venture offers all of the benefits of buying second hand plus a means to help fund social service programs in local communities, such as job training and youth mentorship. Do you see retailers trying to raise the visibility of their secondhand offerings in light of rising prices?
Subscriptions are out, refills are in.Sep 18, 2022
Everything these days is a subscription. And honestly, on reflection, subscriptions are complete horseshit.
Multi-Objective Ranking for Promoted Auction ItemsSep 13, 2022
Determining which promoted auction items to display in a merchandising placement is a multi-sided customer challenge that presents opportunities to both surface amazing auction inventory to buyers and help sellers boost visibility on their auction listings.
PPC management for e-commerce: 28 tools to exploreSep 10, 2022
Software and tools not only help you manage your time better but provide helpful insights that you wouldn't otherwise see in a Google or Facebook interface.
Locations product recommendationsAug 30, 2022
7 useful Excel formulas and functions for PPCAug 24, 2022
Use these tips to quickly analyze performance data and identify high-impact PPC optimizations that will move the needle.
Elevate Your E-commerce Journey With Animated UX MicrointeractionsAug 17, 2022
Microinteraction best practices that improve e-commerce UX.
5 Amazon product listing optimization must-havesAug 5, 2022
Amazon will continue to be highly competitive. Want to be successful? Optimize your product listings to the fullest with these tips.
Retail’s ‘Dark Side’: As Inventory Piles Up, Liquidation Warehouses Are Busy (Published 2022)Aug 1, 2022
Consumers are buying fewer discretionary goods and returning more. To clear their shelves, retailers are selling to liquidators at steep discounts.
Site taxonomy for SEO: A straightforward guideAug 1, 2022
In this guide: learn why website taxonomy is fundamental to SEO success and how to optimize site taxonomies.
The Details of Shopify’s Massive Q2 2022 LossJul 31, 2022
Having posted a massive $1.2 billion loss in Q2 2022, Shopify effectively reset its financial outlook. Longtime contributor and analyst Marcia Kaplan looks at the details.
Why is it so hard to give Google money?Jul 27, 2022
How Paper Catalogs Remain Relevant in a Digital AgeJul 19, 2022
Whether or not you should pursue a catalog strategy is a question that deserves significant thought. As digital marketing becomes more complex, it may make a lot of sense to send out correctly designed catalogs to the right customers. For e-commerce retailers without physical stores, catalogs can effectively mimic stores’ sensory experiences to enhance customer affinity. For multichannel retailers, by understanding the channel preferences of current customers through transactional data, multichannel retailers can add an effective catalog marketing channel to their store and e-commerce channel strategies.
Getting 200% More Actionable Feedback from Customers that Cancel - ExtendsLogicJul 19, 2022
Getting useful cancellation feedback from customers is tough. The problem is that once people have canceled, they’re no longer engaged and will rarely spend the time to give you feedback. One of the best things I’ve ever done to combat this with Bidsketch was to add a mandatory freeform text field that says: Please help… Continue reading Getting 200% More Actionable Feedback from Customers that Cancel →
Email Marketing Metrics, Part 1: The BasicsJul 19, 2022
Email marketing is cost effective and typically has a high return on investment. But over the years, email marketing has changed. Measuring the
Piracy Doubled My App SalesJul 19, 2022
Where Should We Build a Mall? The Formation of Market Structure and Its Effect on SalesJul 19, 2022
This research by Doug J. Chung, Kyoungwon Seo, and Reo Song bprovides a rigorous, yet practical, framework to understand and evaluate why retail stores join a shopping mall and how their decisions affect mall revenue.
How to Price Shipping and Handling FeesJul 18, 2022
Today's consumers expect free shipping for most items. But it's not always obvious for merchants to know when and how to offer it. Here's our all-new update for analyzing shipping costs and free delivery.
How Darknet Sellers Build TrustJul 18, 2022
The Amazon for drug dealing is built around user reviews.
How a Preview Image Increased a Landing Page's Conversion Rate by 359% - Search Engine WatchJul 18, 2022
Using Google’s new “Google Experiments” for A/B testing confirmed a hypothesis that a landing page with a preview image will have a higher conversion rate than a landing page without the preview image. Here’s how you can conduct your own test.
From Forever 21 to Online Shopping, Why Fast Fashion Is So AddictiveJul 18, 2022
Research shows that the brain finds pleasure in the pursuit of inexpensive things, and high-street chains and online retailers sites alike are cashing in.
Ecommerce a Crucial Industry in the Pandemic; 7 Ways to Ease the BurdenJul 18, 2022
Online stores will become increasingly crucial in the coming weeks. What follows are seven measures to keep your ecommerce business afloat and ease the burden of operating with limited resources.
Anatomy Of A PirateJul 18, 2022
How to Build an Amazon Affiliate Website - 2024 Guide - Make A Website HubJul 18, 2022
When it comes to making money online you’re going to have a lot of options at your disposal. Frankly, it can be quite overwhelming just choosing an online
Advanced list buildingJul 18, 2022
Should merchants accept Bitcoin?Jul 18, 2022
I was recently asked if ecommerce merchants should accept Bitcoin. My answer is a resounding “yes.” I can think of only a few minor downsides and many
Neil Patel's Digital Marketing BlogJul 18, 2022
Your #1 resource for digital marketing tips, trends, and strategy to help you build a successful online business.
15 Tools to Optimize Ecommerce ImagesJul 18, 2022
Does your website have an acceptable load time? Images usually account for most of the downloadable bytes on a page. Optimizing your images can yield a
The State of SaaS Pricing [Infographic] - OpenViewJul 18, 2022
After surveying more than 1,000 software executives about their SaaS pricing habits, we've uncovered some alarming gaps. View the results here.
Brand Bidding Techniques: Smart Ways To Use Typos & URLs As KeywordsJul 18, 2022
Finding the right mix of keywords is as much science as it is good common sense. When it comes to your brand, there are typo and URL derivation techniques
How Etsy Crafted an E-Commerce ComebackJul 18, 2022
To survive competition from e-commerce giants, the handmade-goods retailer had to persuade its quirky community to get just a teensy bit corporate.
All Markets Are Not Created Equal: 10 Factors To Consider When Evaluating Digital MarketplacesJul 17, 2022
Since Benchmark’s investment in Ebay 15 years ago, we have been fascinated by online marketplaces. Entrepreneurs accurately recognize that the connective tissue of the Internet provides an opportunity to link the players in a particular market, reducing friction in both the buying and selling experience. For example, my car tax check is an online platfrom that allows you to book a slot for a complete history and guidance of your car taxes and other details. The arrival of the smartphone amplifies these opportunities, as the Internet’s connective tissue now extends deeper and deeper into an industry with the participants connected…
Catalogs & WishbooksJul 7, 2022
336 Vintage Christmas Catalogs & Holiday Wish Books with 302,605 total catalog pages from Sears, Montgomery Ward and JCPenney over the years.
What Makes Shoppers Click? A Lesson in E-Commerce Consumer Psychology (INFOGRAPHIC) - Conversion SciencesJul 6, 2022
Consumers have access to all kinds of buyer information on-line. So what is it that makes them click?
275 Free, Responsive Email TemplatesJul 5, 2022
Whether you’re sending a newsletter, welcome message, product announcement, or holiday greetings, there are plenty of customizable email templates to match your brand and design on any device. Here is a list of responsive email templates.
Five Questions Companies Should Ask Before Making an Innovation-Driven AcquisitionJul 5, 2022
The Swiss pharmaceutical giant Roche is nothing if not determined in its quest to acquire Illumina, the San Diego-based leader in genetic-sequencing equipment. In January, after Illumina’s board rebuffed Roche’s initial overtures, Roche made a $5.7 billion tender offer directly to shareholders. When that didn’t succeed, it extended the offer to midnight last Friday. Now […]
45 Tools to Generate Content, for EcommerceJul 5, 2022
Content marketing is the technique of creating and sharing content — blog posts, images, videos — to attract and retain customers. Generating relevant and
12 Innovative Mobile Payment AppsJul 5, 2022
Paying with a smartphone is easier than ever. Innovative mobile payment apps are providing consumers with new ways to exchange money with peers, purchase
Why Your eCommerce Business Should Have a Pop-Up ShopJul 5, 2022
Ecommerce is booming, and there’s no doubt about that. The numbers speak for themselves. After all, in 2017, ecommerce sales reached $2.3 trillion, and
Asking Users to Complete Tough Mudders to Use Your ProductJul 5, 2022
Funnel optimization for web3 companies will become critical to their success. Token grants cost 4-7x than traditional customer acquisition techniques. Other techniques, like incentivized referral, improve the economics but still tally 19 month payback periods. A year-and-a-half might be fine for a SaaS company selling a $50k to $100k ARR product, but long-term viability demands achieving 3-6 month paybacks of modern web2 consumer companies. Why are the payback periods so high?
Could This Be The End Of Hidden Ticket Charges For Concert Tickets?Jul 4, 2022
Hidden ticket charges and more have been outlawed in New York State thanks to new legislature that just passed.
1980 Sears Spring Summer Catalog, Page 729 - Catalogs & WishbooksJul 4, 2022
1980 Sears Spring Summer Catalog, Page 729
Cross-chain Deals and Adversarial CommerceJun 29, 2022
This paper appeared in VLDB'19 and is authored by Maurice Herlihy, Barbara Liskov, and Liuba Shrira. How can autonomous, mutually-distrust...
aynuriev.com - aynuriev Resources and Information.Jun 28, 2022
aynuriev.com is your first and best source for all of the information you’re looking for. From general topics to more of what you would expect to find here, aynuriev.com has it all. We hope you find what you are searching for!
Ahrefs—Marketing Intelligence Tools Powered by Big Data.Jun 28, 2022
Unlock data to make effective decisions across digital marketing. SEO, content marketing, PPC, digital PR, and more.
16 Tools to Manage Your ReputationJun 28, 2022
Reputation management is essential for any brand. Your company's future may depend on what’s been said about it in posts, comments, reviews, and rankings. Fortunately, there are affordable tools to help. Here is a list of tools to manage your brand’s reputation.
Namechk - Username and Domain Name Checker - Search All Domain Names and User Names to see if they're availableJun 28, 2022
There are 351 million registered domain names and counting. Every day, thousands more are registered. Since domain names can only be used by one company or
Applying Luxury Principles to Ecommerce DesignJun 27, 2022
Luxury brands should use their digital channels to support and enhance their high-quality customer experiences. This requires providing product details that spark interest, balancing visual design with other priorities, and avoiding interruptions that risk cheapening the brand.
Neil Patel's Digital Marketing BlogJun 25, 2022
Your #1 resource for digital marketing tips, trends, and strategy to help you build a successful online business.
Using cohort analysis to improve retentionJun 25, 2022
It’s no good acquiring customers for $10, if they only stick around for a month or two. Your retention can be visualized much easier by doing a cohort analysis, a technique widely used in medicine. Here's some tips top get started.
Infographic: 26 Ideas For Split Testing Your Search AdsJun 25, 2022
If you want to always be closing, then you need to always be testing, a long-standing mantra (and title of a popular book) in the search marketing space.
Scale campaigns and conversions with easeJun 25, 2022
Unbounce has everything you need to optimize for conversion.
I sell onions on the Internet - Deep South VenturesJun 23, 2022
Vidalia Onions to be exact. They’re classified as a sweet onion, and because of their mild flavor (they don’t make your eyes tear up), some folks can eat them like an apple. Most of my customers do. During a phone order one season – 2018 I believe – a customer shared this story where he ... Read more
Video Tools ArchivesJun 23, 2022
The Outlandish Story Of Ollie’s: A $5 Billion Retail Empire That Sells Nothing Online (But Is Beating Amazon)Jun 23, 2022
Ollie’s is very possibly the only company in America whose brick-and-mortar stores are not just surviving but thriving.
13 Platforms for Shoppable VideoJun 23, 2022
Video is increasingly impacting ecommerce. Consumers use it for purchase decisions. Influencers live-stream product endorsements. And brands deploy video for engagement and product offerings. Here is a list of platforms for shoppable video.
The Best SaaS Landing page examples I’ve seen (+ their secrets for conversion)Jun 23, 2022
SaaS Landing page inspiration is usually "pretty" but not conversion/result driven so in this article, I compiled the best SaaS Landing pages examples I've seen and broke-down their secrets for conversions!
Twitter partners with Shopify to bring merchants' products to Twitter Shopping | TechCrunchJun 22, 2022
As part of its ongoing efforts to expand into e-commerce, Twitter today announced a new partnership with Shopify. The deal will see Twitter launching a
7 Reasons to Consider USPS Flat Rate ShippingJun 22, 2022
Merchants in North America have many carrier choices for delivering goods to customers. The U.S. Postal Service's flat-rate shipping boxes can save money in certain instances. We compare prices in this post.
Perfect CTA Placement: Above-The-Fold Vs. Below-The-FoldJun 21, 2022
Should You Place a CTA Above the Fold? Experts in the design and digital marketing world have frequently claimed that if you want to get the best results with a CTA , you need to place it above the fold. Just look at this landing page from Lyft, for instance, you immediately see what you need to do…
6 Email Triggers for Max ConversionsJun 21, 2022
Shoppers' actions on an ecommerce site create opportunities for automated, triggered emails. Such behavior-based email automation is a sure-fire tactic to drive revenue.
Success with Google Shopping, Part 1: Getting StartedJun 15, 2022
Google Shopping ads appear in search results as pictures above or alongside the text-based ads and organic listings. But unlike text-based ads, Shopping
Packaging Inserts: Types and How To Create Yours (2024) - ShopifyJun 13, 2022
Increase customer loyalty and take advantage of an additional opportunity to connect with customers by using packaging inserts. Here's why and how to use them in every package you send out.
What Is a Transactional Email? Types and Best Practices (2024) - ShopifyJun 13, 2022
Dive into the world of transactional emails and their importance for ecommerce stores. Learn the types and best practices, with examples, in this guide.
21 Examples of Pricing Pages in Web DesignJun 13, 2022
Luxury marketing search strategy, Part 2: Strategies and tactics - Search Engine WatchJun 13, 2022
Marketing for luxury goods is a highly competitive space. Here's a full guide of how to craft SEO strategies and tactics to maximize those results.
Why You’re Never Really Happy With the Things You Buy AnymoreJun 12, 2022
Constant bargain hunting makes us value all the wrong things about shopping.
AdWords: 3 Ways to Find Negative KeywordsJun 12, 2022
Inside every AdWords account there is a report that shows the exact words (a "query") that searchers typed into Google before clicking on a specific ad.
Product Descriptions: 17 Fresh Writing AnglesJun 12, 2022
Need to spice up descriptions for bland products? Use these themes and examples the next time you’re describing a back-to-school backpack or plain white t-shirt. You’ll soon understand how to look at ordinary products differently.
Digital Advertising Platform for Brands and Agencies | AdRollJun 12, 2022
Boost brand awareness, increase site visitors, and drive conversions with personalized advertising. AdRoll's been trusted by 140,000+ brands for over 15 years.
Why there are so many online mattress-in-a-box companiesJun 7, 2022
Some industry insiders estimate there are as many as 100 brands selling compressed foam mattresses online.
Past Behavior Does Not Determine Future Purchases | TechCrunchJun 7, 2022
Ever wonder why after buying shoes online (or any other consumer goods), for the next few weeks or months, you can be sure to spot ads or promotions for those same shoes on nearly every website you visit? What’s more, you'll see which shoes your Facebook friends bought, which shoes their friends bought and which shoes “others like you” bought. You already bought shoes, so why are you still being bombarded with ads for them?
DesignJun 7, 2022
Find the latest Design news from Fast company. See related business and technology articles, photos, slideshows and videos.
Rithum: End-to-End E-commerce Solutions for Brands & RetailersJun 2, 2022
CommerceHub and ChannelAdvisor are now united as Rithum. We empower top brands, suppliers, and retailers with durable, profitable e-commerce solutions.
Getting Started with Google Tag Manager, for EcommerceMay 28, 2022
Many websites lose reporting from one of their marketing or analytics platforms. The culprit is usually the removal of tags during updates to the sites. Tags are critical for ecommerce merchants. But they add clutter to websites. That's the purpose of Google Tag Manager — to manage tags and contain them in a single JavaScript snippet on all pages.
SEO: Product Descriptions Are a Blind Spot for Ecommerce MerchantsMay 28, 2022
Why does the ecommerce community have such a blind spot when it comes to unique product descriptions? Syndicated descriptions produce duplicate content. Why is duplicate product copy accepted so blindly? The answer depends on whether you’re the syndicator or the site using the syndicated content.
13 marketing automation tools that can help you boost your salesMay 27, 2022
The way we live our lives has an impact on our work. Long lists of typical chores may turn your
When Keyword Poaching Pays OffMay 20, 2022
Competitive poaching refers to the practice of bidding on ads for a competitor’s search terms, in order to poach customers searching for that brand. It’s a common tactic in the world of digital ads — but is it effective? The author shares results from the first-ever empirical study of this practice, which found that poaching can work well for higher-end brands, but may backfire for lower-end or mass market offerings. Specifically, the study found that when an ad poached customers who searched for a high-end brand, users clicked on it more, but when an ad poached a low-end or mass market target, users were less likely to click. Of course, the author notes that clickthrough rate is just one metric, and there may be other ways in which a poaching campaign could be harmful or beneficial. But these findings can help marketers add a bit of science to the art that is digital advertising, helping them to optimize campaigns for their unique products and customers.
How Keyword Clustering Powers SEOMay 19, 2022
Keyword lists for SEO are often cluttered and seemingly endless. "Clustering" can help by grouping keywords by a common modifier.
Spot the difference: the invincible business of counterfeit goodsMay 13, 2022
The long read: Selling cheap fakes of a successful product makes horribly good business sense. Is there any way to stop it?
3 Keyword Tools for Search IntentMay 12, 2022
Optimizing content for organic rankings requires knowing how Google will interpret searchers' intent — informational, commercial, or navigational.
Fast, Cheap, and Out of Control: Inside Shein’s Sudden RiseMay 9, 2022
The Chinese company has become a fast-fashion juggernaut by appealing to budget-conscious Gen Zers. But its ultralow prices are hiding unacceptable costs.
How Sephora “sucks” all my money through great UX and psychologyApr 11, 2022
My girlfriends always complain to me that Sephora is like a black hole that sucks up all their money. Some of my girlfriends even have to…
Improving Shopping Recommendations for Customers Through eBay’s Relevance CApr 7, 2022
Under the new machine learning model, buyers are recommended items that are more aligned to their shopping interests on eBay.
E-commerce giants didn't deliver. So these islanders built their own online shopping ecosystemApr 3, 2022
Local couriers are making online delivery possible in French Polynesia's 118 atolls and islands in the Pacific Ocean.
How One Website Exploited Amazon S3 to Outrank Everyone on GoogleMar 16, 2022
Quick Intro to the World of SEO, Affiliate Marketing, and Amazon S3
The Sales Sandwich by @ttunguzFeb 19, 2022
The most consistent sales leader I’ve worked with hit plan 27 consecutive quarters. How can a sales leader develop similar repeatability? Much goes into it here are the reports he used to manage his team at the board level. The PQR (pipeline-to-quota) funnel is first. Pipeline is the total value of the accounts within a stage or later. Quota is the aggregate quota on the street for the quarter. Divide P by Q to get PQR.
Here’s what actually happens to all your online shopping returnsFeb 18, 2022
Ordering clothes from Chinese fast-fashion brands like Shein is easy. Sending them back is a lot more complicated
How to Build an Ecommerce Keyword ListFeb 10, 2022
Keywords are an important building block for ecommerce marketing. Developing and maintaining a keyword list may help an ecommerce business understand shoppers and do a better job of marketing to them. In the context of search engine optimization, searchers' words or phrases summarize their thoughts, questions, or needs. Those keywords represent the language people use to ask for help finding resources online.
Shopify and the Power of PlatformsFeb 10, 2022
It is all but impossible to beat an Aggregator head-on, as Walmart is trying to do with Amazon. The solution instead is to build a platform like Shopify.
Shopify SEO Guide: How to increase organic traffic to your storeFeb 6, 2022
Everything a merchant needs to know about optimizing their Shopify site, from basic SEO capabilities to apps, technical SEO challenges and beyond.
We Analyzed The Top 7,000 Websites in 22 Industries. Here’s What We LearnedJan 31, 2022
We analyzed 7,000+ websites with reviews of more than 4 stars on Trustpilot. Here are some SEO factors we noticed they had in common.
18,000+ E-Commerce Design Examples Organized Across 62 Page Types – Baymard InstituteJan 29, 2022
Every single one of the 18,000+ screenshots is annotated with highlights of UX “violations” and “adherences” (i.e. what the page design does well from a UX perspective, and what it does poorly).
250 Top E-Commerce Sites Ranked by User Experience Performance – Baymard InstituteJan 29, 2022
See the ranked UX performance of the 250 leading e-commerce sites in the US and Europe. The chart summarizes 50,000+ UX performance ratings.
887 ‘Cart’ Design Examples – Baymard InstituteJan 23, 2022
UX Guidelines for Ecommerce Product PagesJan 17, 2022
Customers shopping online rely on product pages to decide what to buy. Help them by answering questions, enabling comparison, providing reviews, and facilitating the purchase process.
7 Ecommerce UX Tips That Drive Sales :: UXmattersJan 17, 2022
Web magazine about user experience matters, providing insights and inspiration for the user experience community
UX Guidelines for Ecommerce Homepages, Category Pages, and Product Listing PagesJan 17, 2022
Streamline users’ path to products by providing clear, differentiating product information at all levels — from the homepage to product listing pages.
Instant gratification: The neuroscience of impulse buyingDec 25, 2021
Our brains did not evolve to shop on Amazon.
Product Photography, Part 14: Optimizing for Speed, SearchNov 29, 2021
The final step in product photography is optimizing the images for search engines and page speed. This is the 14th installment in my series on helping ecommerce merchants create better product images. In this post, I'll address making your photos faster to download and more visible in Google's image search.
From Street Fashion to Online – How to Set-up an E-commerce StoreNov 29, 2021
These days, online shopping is a massive industry. In 2020, with the COVID-19 pandemic in full swing, online retailers earned over $4.2 trillion from just over two billion shoppers. Overall, the industry grew by about 25 percent, and the trend doesn’t seem to be slowing. So, if you’re trying to sell products (e.g., clothing), the […]
11 A/B Testing Tools to Optimize ConversionsNov 17, 2021
A/B testing, the process of exposing randomized visitors to one or more variables, is among the most effective strategies to optimize user experiences and conversion rates. Here is a list of A/B testing tools.
The “ghost stores” of InstagramNov 3, 2021
That cute dress you bought off Instagram could be found on Shein, AliExpress, or Amazon for much cheaper.
The Emergence of B2B Raw Material MarketplacesSep 26, 2021
Business-to-business marketplaces are among ecommerce's leading growth trends, yet many industries remain under-served, especially for raw materials.
Why Amazon really built a new warehouse on the U.S.-Mexico borderSep 14, 2021
The fulfillment center in Tijuana is a symbol of how the pandemic has changed the way the world shops.
Why payment apps that thrive in India struggle to succeed in MexicoAug 31, 2021
One fintech veteran from India found out the hard way why “Mexicans love cash.”
Six emerging trends in product packagingJul 25, 2021
In the modern business world, there are several businesses releasing similar products into the market.
16 Tools to Manage Your ReputationJul 20, 2021
Reputation management is essential for any brand. Your company's future may depend on what’s been said about it in posts, comments, reviews, and rankings. Fortunately, there are affordable tools to help. Here is a list of tools to manage your brand’s reputation.
Policy Pages, Done Well, Enhance a BrandJul 7, 2021
Shoppers search an online store's policy pages for details on shipping, returns, and more. Rarely are these vital pages engaging. But they should be.
The life cycle of a viral productJul 7, 2021
The video app is causing products to blow up — and flame out — faster than ever.
Improving The Performance Of An Online Store (Case Study)Jun 3, 2021
Getting a good performance score from Google is hard for any website — but doing so for an online store is even harder. We achieved green scores — even several for mobile. Here is how we did it.
Boxes, trucks and bikesMay 29, 2021
Should we still be talking about online and offline retail, or about trucks versus boxes versus bikes?
3 Keys for High-converting Product DescriptionsMay 21, 2021
Writing product descriptions sounds simple. But it takes planning. The best descriptions address a broad audience, which is why many companies employ marketers to help. When writing descriptions for the masses, focus on the following three elements.
Instacart Market Basket Analysis. Winner’s Interview: 2nd place, Kazuki… |May 1, 2021
Winner’s Interview: 2nd place, Kazuki Onodera
Evaluating Search AlgorithmsApr 2, 2021
The three-step framework Shopify's Data Science & Engineering team built for evaluating new search algorithms.
Here’s Why Your Ecommerce Subscriptions Aren’t SellingMar 30, 2021
A recurring subscription model is a powerful tool for growth and profit — if you can get subscribers. "A lot of brands install our subscription software
How Shopify Payments Work: All You Want To Know?Mar 22, 2021
Well, if you are planning to sell your stuff online and make money, then there are a few top eCommerce platforms that would help you out. Shopify is the
What I wish I knew before building a Shopify AppMar 21, 2021
If Your iPhone Charger Blows Up, It May Be a Fake Sold on InstagramMar 18, 2021
A simple, daily gesture like charging an iPhone turned into a life-threatening task for Andrea Stroppa, a cybersecurity researcher. The charger that exploded after he borrowed it from a friend, Stroppa discovered, was a counterfeit Apple Inc. product bought through an unofficial channel on Instagram.
11 TikTok Video Ideas for MerchantsMar 2, 2021
You’ve downloaded TikTok and browsed the videos. Now you’re wondering what content to create for your ecommerce business. There are many types of videos to attract leads without dancing on camera. Here are 11 ideas for all types of merchants.
Buyer beware: Massive experiment shows why ticket sellers hit you with last-second fees | Haas News | Berkeley HaasFeb 23, 2021
There’s a reason that online ticket sellers hit you with those extra fees after you’ve picked your seats and are ready to click “buy.” Pure profit. A
How A Retail Chain Without A Website Powered Through The PandemicFeb 18, 2021
Burlington shut down online sales in March right before coronavirus lockdowns. But it's among the discount retailers that have endured the pandemic surprisingly well, even opening new stores.
The art and science of SaaS pricing: True usage-based pricingJan 10, 2021
Usage-based pricing can be incredibly powerful, particularly in cases where the SaaS solution handles the flow of money.
The art and science of SaaS pricing: Finding the right model fitJan 10, 2021
Part 1 in this 3-part series: Find the pricing model that fits with your particular options for expansion once you've made that first sale.
How Amazon’s Business Practices Harm American Consumers: Why Amazon Needs aJan 6, 2021
Why Amazon Needs a Competitor and Why Walmart Ain’t It
Looks vs. Results: My ugly ad got 150% more clicks than a professional desiJan 4, 2021
Making things look nice can take a long time, either due to lack of resources or abundance of opinions. This could delay launches, frustrate people, and waste precious energy. Those are high costs for startups or companies hoping to move fast. Is it worth it? Long ago I got fed
The Top Affiliate Marketing NetworksJan 2, 2021
Looking to grow your affiliate marketing site but aren't sure which affiliate network is right for you? Here's everything you need to know.
5 e-commerce tips for businesses in 2021Dec 26, 2020
By Rob van den Heuvel, CEO at Sendcloud. If there’s one thing 2020 has taught us, it is the art of adaptability. As we knock on the door of 2021, the next stage of transition is upon us.
16 Tools to Sell Products on PinterestDec 25, 2020
Pinterest provides tools to help merchants promote and sell products. Here is a list of tools for creating shops, product catalogs, ad campaigns, live events, and more.
Lessons from Running a Sale that Earned 3 Month's Profit in a WeekDec 10, 2020
Tips on running successful Black Friday sales for creators and Indie Hackers
The 11 Best Dropshipping ToolsNov 20, 2020
How can dropshipping tools give you the edge in the competitive world of e-commerce? We take a look at the 11 best dropshipping tools you should be using.
As its ecosystem grows, companies are becoming reliant on Shopify for moreNov 13, 2020
Read more in the DTC Briefing, a weekly Modern Retail column about the biggest challenges and trends facing the DTC startup world.
'Growing two times faster than the rest of the market': Inside L'Oreal's e-Nov 10, 2020
If e-commerce was a market for L’Oreal, then it would be the biggest in terms of market value, worth nearly €5 billion ($5.9 billion).
A Guide to Behavioral Segmentation MarketingNov 6, 2020
What is behavioral marketing? Here's how email marketing, demographics, and upsells can be used to monitor and act on customer behavior.
Improving complementary-product recommendationsNov 3, 2020
New modeling approach increases accuracy of recommendations by an average of 7%.
Managing your product feeds to thrive in a new retail landscapeNov 3, 2020
To succeed in today’s e-commerce environment, companies must craft an online experience that meshes with the brick-and-mortar brand experience in their physical stores.
4 Payment Methods to Integrate for the HolidaysNov 3, 2020
Convenience and security increasingly impact online selling. That's especially the case for the upcoming holiday season, as consumers will likely seek flexible, seamless payment options. Here are four payment methods to consider for this year's holiday selling.
6 methods for touch-free and remote paymentsNov 3, 2020
Checking out should be easier, especially now.
14 Tools to Sell on Facebook and InstagramNov 3, 2020
Shopping on Facebook and Instagram is finally here. With the recent launches of Shops on both apps and Live Shopping, Facebook is facilitating easier commerce across its platform. Here is a list of tools to help you sell on Facebook and Instagram.
The First Steps in Adding Ecommerce to a Brick-and-mortar StoreAug 2, 2020
Brick-and-mortar retail businesses are turning toward ecommerce to generate revenue — online and click-and-collect. As they make this digital transformation, those merchants will likely have questions about ecommerce platforms, themes, and design. While all of these are important, a company's focus should be on products and marketing first, in my experience.
Is Your Chip Card Secure? Much Depends on Where You BankAug 2, 2020
Chip-based credit and debit cards are designed to make it infeasible for skimming devices or malware to clone your card when you pay for something by dipping the chip instead of swiping the stripe. But a recent series of malware…
10 Best Ecommerce Platforms Compared & Rated For 2020Jul 26, 2020
Our top ecommerce builders are based on objective performance data, feature set & value. Check out ecommerce platforms now.
10 Marketplaces to Buy and Sell Ecommerce SitesJun 23, 2020
A ecosystem of buyers, sellers, and brokers creates a thriving M&A market for digital businesses.
Amazon’s New Competitive Advantage: Putting Its Own Products FirstJun 8, 2020
Brands have long been able to bid for the premier slot at the top left of Amazon’s listings, but during the pandemic the online retailer has begun using this position for its private-label items, raising antitrust concerns.
Using K-Means to detect changes in a retail store | Towards Data ScienceJun 1, 2020
Unsupervised techniques to identify changes in the behavior
Platforms in an Aggregator WorldMay 27, 2020
Facebook Shops are good for Shopify merchants, but bad for Shopify; the answer is to push more into the real world.
How ceramics brand East Fork transitioned to a pre-sale only modelMay 15, 2020
2020 was the year East Fork ceramics planned to become profitable. Now, that's likely no longer on the table, but the company is using a new model to better handle its balance sheet: pre-sales. Now, new product lines will all be for sale before they're manufactured, as a way to get capital in as early as possible.
Web Monetization - The EcosystemMay 14, 2020
Greetings, everyone. This post begins a series on Web Monetization and serves to document my learning...
AliExpress - Online Shopping for Popular Electronics, Fashion, Home & GardeMay 2, 2020
AliExpress lets you unlock top brands' bestselling electronics, clothing, homewares, toys, sporting equipment, auto parts and more so you can live better for less.
‘It’s bullshit’: Inside the weird, get-rich-quick world of dropshippingMay 1, 2020
In Bali, western immigrants are selling products they've never handled, from countries they've never visited, to consumers they've never met
Introducing the Periodic Table of Digital Commerce MarketingMar 9, 2020
Packing an astonishing amount of information into an easy-to-digest visual, it's well worth the download.
Wayfair is all in on logisticsFeb 29, 2020
Executives insist 2020 is the year Wayfair's logistics investments will show their worth.
An elegy for cash: the technology we might never replaceFeb 19, 2020
Cash is gradually dying out. Will we ever have a digital alternative that offers the same mix of convenience and freedom?
Unnamed and UnsurveilledFeb 19, 2020
Craigslist feels like an island in the slipstream, evidence of an online past where improvisation and commonality superseded hierarchy and standard practices.
Why Restoration Hardware Sends Catalogs the Size of a ToddlerFeb 19, 2020
The surprising persistence of the mail-order business
A Guide to Payment Tokens for EcommerceJan 27, 2020
Innovation in electronic payments has always balanced risk and convenience. Generally, a payment method that's convenient for consumers is risky for merchants. The use of "tokens" can reduce that risk by protecting credit card details.
The economics of unused gift cardsJan 5, 2020
Every year, Americans spend billions of dollars on gift cards. But what happens to the money when the gift cards go unused?
7 eCommerce trends to watch in 2020 and beyondDec 31, 2019
How to use returns to build customer loyaltyDec 23, 2019
Returns are on the rise – here’s what you can do to make it your competitive advantage.
vumaasha/Atlas: Atlas: A Dataset and Benchmark for E-commerce Clothing ProdDec 23, 2019
Atlas: A Dataset and Benchmark for E-commerce Clothing Product Categorization - vumaasha/Atlas
The Best E-Commerce Fulfillment Services for 2019 | PCMag.comDec 23, 2019
An online shopping cart and catalog is only the first step in e-commerce retail success. Once the customer buys, you need to get them their wares quickly and efficiently. That's where fulfillment services come in and we take a close look at ten of the top players.
Study of Over 11,000 Online Stores Finds 'Dark Patterns' on 1,254 sitesDec 23, 2019
A large-scale academic study that analyzed more than 53,000 product pages on more than 11,000 online stores found widespread use of user interface "dark patterns" -- practices meant to mislead customers into making purchases based on false or misleading information. from a report: The study -- prese...
Stripe CLIDec 23, 2019
The Stripe CLI is a developer tool that helps you build, test, and manage your Stripe integration right from the terminal.
Hacks, Methods and Tools to Keyword Research for eCommerce StoresDec 23, 2019
Learn the exact way that I perform keyword research that generates profitable, scalable ROI for eCommerce stores.
7 Fantastic eCommerce Product Videos and The Lessons They Taught UsDec 23, 2019
Due to availability and ease of use, eCommerce companies have all but taken most markets by storm, becoming the preferred purchase alternative for
Prime Power: How Amazon Squeezes the Businesses Behind Its Store (Published 2019)Dec 21, 2019
Twenty years ago, Amazon opened its storefront to anyone who wanted to sell something. Then it began demanding more out of them.
Crossed StitchesNov 28, 2019
Beverly Pennington was a Pinterest-perfect entrepreneur whose patchwork quilts—made from people’s most treasured T-shirts—found thousands of devotees all over the country. But when the quilts stopped coming, leaving the shirts in limbo, her customers pieced together a plan to fight back.
People Are Confused About the Usefulness of Buying Fancy ThingsOct 27, 2019
Why luxury goods don't impress, but repel.
23 Twitter Feeds for Ecommerce Merchants to FollowSep 10, 2019
Here is a list of Twitter feeds for online merchants to follow. Most feeds are from individuals although a few are from application platforms. The feeds are separated into ecommerce, marketing, and design categories.
Meet the man keeping America's dead malls aliveSep 8, 2019
Is there hope for our once-beloved social and commercial centers?
Free Shipping — Real LifeAug 31, 2019
Delivery robots will redefine the meaning of every object they transport
'Shoppable billboards': DTC retailers say physical stores are driving online salesAug 31, 2019
DTC brands credit physical stores with boosting their online sales.
Are subscription services viable for independent retailers?Aug 31, 2019
Small, local retailers are vying for a piece of the market and find a focused approach builds customer loyalty.
Shopping Cart or Wishlist? Saving Products for Later in EcommerceAug 30, 2019
On ecommerce sites, saving shopping-cart items for possible later purchase must be discoverable and low-effort.
How to Display Taxes, Fees, and Shipping Charges on Ecommerce SitesAug 30, 2019
Unexpected service fees and special-delivery costs should be disclosed early in the shopping process to avoid losing customers.
Applying Discounts and Promotions on Ecommerce WebsitesAug 29, 2019
Coupons and other discounts should be easy to apply and shopping carts should clearly display how the total was affected by the promotion.
How to Respond to a Copyright Infringement NoticeAug 29, 2019
Copyright infringement is a serious issue that could cost a business as much as $150,000 per instance. If your business receives an infringement notice, take it seriously. Aim to settle if, in fact, infringement occurred.
How to Negotiate the Price of a Pricey Premium DomainAug 29, 2019
Buying a domain at the asking price? That's like buying a used car at the asking price. Doing your homework pays off.
Is your E-commerce Store performing poorly? – Here are essential tips to tuAug 29, 2019
When setting up an e-commerce store, the majority of the entrepreneurs usually assume things will automatically work out, and they will start making good
4 Online Merchandising Hacks to Increase ProfitsAug 29, 2019
Retailers seek to avoid markdowns and sell out of the season at full margin, but it isn’t easy to predict how much inventory to acquire. In this post, I'll address four online merchandising tactics that balance consumer demand with inventory levels, to maximize profits.
Beginner’s Guide to Product Qualified Leads (PQLs)Aug 29, 2019
A product qualified lead (PQL) is a lead who has experienced meaningful value using your product through a free trial or freemium model. Learn how to use them in your organization here.
Non-standard Product Images Can Spur SalesAug 23, 2019
Quality product photos are crucial to selling online. Since they cannot physically touch an item, shoppers need to see all the core details. To maximize sales of a product, though, you need multiple types of images — beyond studio shots. Here are three types of non-standard photos that encourage sales.
SEO Checklist for Website Redesigns and ReplatformsAug 20, 2019
Major website redesigns and replatforms can kill organic search traffic. Use this checklist to minimize the impact.
Useful (and Useless) Mobile Ecommerce MetricsAug 20, 2019
In my experience, there are a few "cuts" of data that matter more for mobile than for desktop. Conversely, there are a handful of traditional metrics from desktops that are not as important on mobile or potentially difficult to optimize.
How SaaS Products Ascend the “Trust Pyramid”Aug 20, 2019
SaaS products may be the future of how we work, but that future will only happen if we can learn how to build trust with your customers.
8-step SEO Crawl Audit for EcommerceAug 20, 2019
Your site won’t rank if search engine bots can’t crawl it. And hidden doors that don’t impact human visitors can lock bots out. Use these eight steps to ensure search bots can access all of your ecommerce site.
Amazon is a boring retailer — Benedict EvansAug 9, 2019
Amazon is so new, and so dramatic in its speed and scale and aggression, that we can easily forget how many of the things it’s doing are actually very old.
Free SaaS tools for companies on a budget (and a pre-formatted budgeting sheet) - Canny BlogJul 25, 2019
Not every SaaS company has endless spare money. One of the biggest piggy bank breakers are the tools we use—and it adds up fast.
7 Gaps in Google Analytics That Require Additional ToolsJun 23, 2019
Google Analytics is a powerful, free web analytics platform. However, it has gaps that are better served by other tools. I'll address those gaps and tools in this post.
The inherent value of identifiable store trafficMay 29, 2019
Many attributes of the customer journey are very predictable and can be planned for to create and convert inbound store footfall.
Buy Me a CoffeeMay 12, 2019
Buy Me a Coffee is the best way for creators and artists to accept support and membership from their fans.
Amazon and Target race to revolutionize the cardboard shipping boxMay 8, 2019
The box has never looked better.
The Case for Optimizing Image PerformanceApr 16, 2019
For ecommerce, pictures can showcase products, inspire customers, and boost conversion rates. For web performance, however, pictures can hurt page load
SEO: Tell Google Which Pages Not to CrawlMar 8, 2019
The typical goal of search engine optimization is to have your site's pages show up on a Google results page in answer to a query. But there are pages that should not be included in search results. Removing them from Google's index might actually increase search engine traffic.
Laundry detergent or boxed wine? How e-commerce is changing packagingFeb 5, 2019
Manufacturers are developing two packaging designs for the same product: those destined for the retail shelf and those sent directly to consumers.
‘They offered us everything but the kitchen sink’: DTC brands are mostly spJan 26, 2019
Amazon wants the customer that buys DTC brands, and it’s offering incentives for that to happen like specialized shipping packages or financial investments.
StoreKing lures Amazon by connecting the dots of rural IndiaJan 22, 2019
Network of mom-and-pop shops brings e-commerce to up to 800m consumers
Untuckit is using Amazon to offload older stylesJan 22, 2019
Untuckit is using Amazon to offload older styles -- preferring the marketplace as an alternative over the traditional outlet store.
We wasted $50K on Google Ads so you don’t have toJan 16, 2019
Connect with developers sharing the strategies and revenue numbers behind their companies and side projects.
How PopSockets Prospered after Leaving AmazonJan 13, 2019
PopSockets opted not to be a direct vendor to Amazon. Instead, it chose one major reseller to represent it on the marketplace. But, Amazon would not allow it. So, PopSockets walked away.
3 Strategies to Fulfill Like AmazonJan 13, 2019
We can be certain that Amazon is spending millions to improve and optimize its shipping processes. In this post, I'll describe three strategies to fulfill like Amazon, even if you have a fraction of its scale and infrastructure.
“Secret” Google Playbook Shows How to Improve Ecommerce SalesDec 31, 2018
Google published a strategy book that's a gold mine of data driven tips for increasing sales.
Shopify App Store: Ecommerce App MarketplaceDec 22, 2018
Shopify App Store: customize your online store and grow your business with Shopify-approved apps for marketing, store design, fulfillment, and more.
‘It’s their moat’: How Shopify built an $800 million partner ecosystemDec 21, 2018
Shopify is partnering with a network of more than 20,000 app developers and agency partners to build profitable businesses.
25 Ecommerce A/B Testing Ideas For Your 5 Top Store PagesNov 26, 2018
The biggest question in ecommerce A/B testing is not “how.”
Why the Sharing Economy Has Come to ApparelNov 13, 2018
Express and Ann Taylor are just two of several established retailers that have launched clothing rental subscriptions in recent months.
Success with Google Shopping, Part 3: Merchant Center SetupNov 3, 2018
Google Shopping ads can deliver many prospects to an ecommerce site. The ads can appear for precise keyword searches — such as a product make and model — making them effective in matching products to buyers. This is the third article in my "Success with Google Shopping" serious.
How to Market a Seemingly Boring Industry in a Unique Way That Results in PSep 21, 2018
Sometimes the outrageous, bizarre route is best.
5 ways to avoid duplicate content and indexing issues on your e-commerce siSep 3, 2018
Before a page can rank well, it needs to be crawled and indexed. Contributor Manish Dudharejia shares five tips to give your pages the best chance of getting indexed in the search results.
eCommerce 101: Understanding Shopping Cart Abandonment [with Infographic]Aug 23, 2018
An illuminating infographic highlights 10 e-commerce pain points that ruin the user experience and lead to shopping cart abandonment.
Service as a SKU | Andreessen HorowitzAug 21, 2018
Editor’s note: This article by now-a16z general partner Alex Rampell was originally published in 2012 in TechCrunch. The biggest ecommerce opportunity today involves taking offline services and offering them for sale online (O2O commerce). The first generation of O2O commerce was driven by discounting, push-based engagements, and artificial scarcity. The still-unfulfilled opportunity in O2O today is tantamount to...
What PopSugar learned from selling products through text messagesAug 13, 2018
PopSugar said it expects to have 20,000 subscribers by year's end to its text message program, which it's used to sell protein bars and housewares.
The Real Benefit of Amazon ReviewsJul 5, 2018
I'm a longtime seller on Amazon's marketplace. I also mentor many sellers and help brands to improve their marketplace sales. And I belong to various
15 Tools for AnimationJun 13, 2018
If you’re interested in creating content to promote your product or service, think about making a cartoon. Producing animation has several advantages over
Strategy & Implementation of Third-Party Connections in ProductsJun 5, 2018
Building a product that connects to multiple third-party products is a common approach — an annotated twitter thread exploring strategic…
51 Examples of Growth Hacking Strategies & Techniques From The World’s MostJun 4, 2018
Learn how the world's fastest growing companies have hacked their way to success with innovative products, viral promotions and ingenious marketing campaigns. [6500 words]
10 ways to offer shoppers a discountMay 30, 2018
Many online retailers unintentionally train consumers to expect discounts. Clothing stores are amongst the worst offenders. Constant discounting makes full-price shoppers believe they’re being overcharged. They often won’t shop until the next sale, which leads to a vicious cycle. It is a rare company that doesn’t get asked for discounts. In this post, I'll review 10 ways to offer clients a discount.
9 Tips to Manage Out-of-stock InventoryMay 28, 2018
Sometimes even the most-prepared retailers sell out of popular items. How these inventory shortages are communicated on an ecommerce website may impact
Why Online Retailers Should Hide Their Best DiscountsMay 8, 2018
Online retailers should take a tip from brick-and-mortar stores: shove your best deals to the back of the store. Research by Thales Teixeira and Donald Ngwe.
Indie Hackers: Work Together to Build Profitable Online BusinessesMay 7, 2018
Connect with developers sharing the strategies and revenue numbers behind their companies and side projects.
Why sell barbells?May 4, 2018
I'm often asked why I started FringeSport. People inquire, "Of all the things to do, why sell barbells?" I tell them that if I wanted only to make money,
Comparing A/B and Multivariate TestingJan 24, 2018
A/B tests are controlled experiments of two attributes, to measure which one was most popular with users. You can apply A/B testing to just about anything that you can measure. Multivariate testing allows you to measure multiple variables simultaneously.
Amazon’s systematic approachNov 24, 2017
Amazon turned an event into a blockbuster. Here’s a roadmap for retailers who want to replicate its success.
4 Marketing Lessons from Opening a Brick-and-mortar StoreNov 15, 2017
Lessons learned from opening a brick-and-mortar retail store may apply to online merchants, providing insights about promoting products, driving sales,
Locking A LoopholeSep 24, 2017
The Biden administration’s push to close an obscure loophole on imports highlights just how disruptive the Temu model really is.
How Not To Sort By Average Rating – Evan MillerAug 31, 2017
Users are rating items on your website. How do you know what the highest-rated items are?
36-year-old’s Etsy side hustle brings in $220000 a year—and costs under $40 to start: ‘You really cOct 24, 2007
Etsy seller Emily Odio-Sutton shares how she started, and grew, her lucrative print-on-demand side hustle — and offers tips for how to replicate her success.
economics
Why GPU Useful Life Is the Most Misunderstood Variable in AI EconomicsFeb 23, 2026
Amazon shortened GPU depreciation while Meta extended it—same month, same technology. The $3.6B divergence exposes the accounting discretion behind AI infrastructure economics.
Who Is Paying for the 2025 U.S. Tariffs? - Liberty Street EconomicsFeb 13, 2026
Over the course of 2025, the average tariff rate on U.S. imports increased from 2.6 to 13 percent. In this blog post, we ask how much of the tariffs were paid by the U.S., using import data through November 2025. We find that nearly 90 percent of the tariffs’ economic burden fell on U.S. firms and consumers.
Why American needs fewer bus stopsJan 20, 2026
Removing them can turn a service people tolerate into one they’re happy to use.
How Did TVs Get So Cheap?Jan 8, 2026
You’ve probably seen this famous graph that breaks out various categories of inflation, showing labor-intensive services getting more expensive during the 21st century and manufactured goods getting less expensive.
How to spot a monopoly - Works in Progress MagazineDec 4, 2025
Competition makes capitalism work. A new method for measuring it may be the holy grail of economic regulation.
China’s unfair labor model is going globalNov 30, 2025
China's low rights model is no longer a domestic labor issue but a systemic challenge to global labor standards, supply chain governance and fair market competition.
Why Georgia Tech Sold Its Biennial Georgia Home Game for $10MNov 28, 2025
The 119th edition of the Georgia–Georgia Tech annual rivalry game has turned into a neutral-site matchup, with the Yellow Jackets getting a big payday.
Classical Thermodynamics and Economics – Yuxi on the WiredOct 14, 2025
How to think like a classical thermodynamic-economist, delivered with many illustrations and some sci-fi metaphors. Particular emphasis on what traditional pedagogy gets wrong. Prerequisites: multivariate calculus and mathematical maturity.
How market design can feed the poorSep 15, 2025
America's largest non-profit had a broken distribution system. University of Chicago economists fixed it.
Ford and the Birth of the Model TAug 28, 2025
Ford’s status as a large-volume car producer began with the predecessor to the Model T: the Model N, a four-cylinder, two-seater car initially priced at $500. At the time, the average car in the US cost more than $2,000, and it seemed nearly unimaginable that a car with the capabilities of the Model N could cost so littl
What Declining Cardboard Box Sales Tell Us About the US EconomyAug 17, 2025
Box demand touches nearly every industry, from flat-screen TVs to packaged food, all of which see sales fluctuate based on how flush shoppers feel.
Of Marx and Moloch: How My Attempt to Convince Effective Altruists to Become Socialists Backfired CompletelyAug 16, 2025
Why psychology explains politics better than politics explain psychology
That ‘cheap’ open-source AI model is actually burning through your compute budgetAug 15, 2025
New research reveals open-source AI models use up to 10 times more computing resources than closed alternatives, potentially negating cost advantages for enterprise deployments.
Shorting Your Rivals: A Radical Antitrust Remedy - Marginal REVOLUTIONJul 21, 2025
Conventional antitrust enforcement tries to prevent harmful mergers by blocking them but empirical evidence shows that rival stock prices often rise when a merger is blocked—suggesting that many blocked mergers would have increased competition. In other words, we may be stopping the wrong mergers. In a clever proposal, Ayres, Hemphill, and Wickelgren (2024) argue that […]
Firewood in the American Economy: 1700 to 2010 - Marginal REVOLUTIONJul 1, 2025
Despite the central role of firewood in the development of the early American economy, prices for this energy fuel are absent from official government statistics and the scholarly literature. This paper presents the most comprehensive dataset of firewood prices in the United States compiled to date, encompassing over 6,000 price quotes from 1700 to 2010. […]
Why Are Homes in Western States So Expensive?Jun 26, 2025
Earlier this month I came across the following graphic, originally posted on Reddit in 2022, showing the state of housing affordability in the US.
How to Build a $20 Billion Semiconductor FabJun 4, 2025
For the last several decades, one avenue of technological progress has towered over nearly everything else: semiconductors.
Setting a Pricing Strategy Amid Ever-Changing TariffsApr 23, 2025
There are options beyond simply raising your prices or absorbing extra costs.
Brian Potter on what he has learned writing Construction Phyics - Marginal REVOLUTIONApr 19, 2025
Individual construction tasks have, on average, not gotten cheaper since at least the 1950s. Bricks haven’t gotten cheaper since the mid-19th century, despite massive improvements in brickmaking technology. Construction has a reputation for being slow to innovate, but innovations seem to spread in construction at roughly similar rates to other industries, like car manufacturing or agriculture. Single family […]
Prediction marketApr 9, 2025
What Do Pawn Shops Buy? Answered + Prices Ranges DetailedApr 8, 2025
What can you sell at a pawn shop? We explain what pawn shops buy, plus how to get the most money. Find price details for electronics, clothing, and more.
How PawnGuru Helps Sellers And Pawn Shops Compare Prices OnlineApr 8, 2025
Inside of a pawn shop / Photo Credit: PawnGuru Pawning something you own can be a major challenge. You want to get the highest amount for your item, but you don’t know which pawn shop will pay the most. Reality TV shows like “Hardcore Pawn” and “Pawn Stars” demonstrate how pawn [...]
The Economics of Pawn ShopsApr 8, 2025
Pawn shops are America's lenders of last resort. But even for the same item, the amount pawn shops will loan you can vary more than 1,000%.
Opinion | He Cut a Secret Deal That Cemented U.S. Economic Power — And He Has a Lesson for Donald TrumpMar 24, 2025
A forgotten Nixon-era negotiation offers urgent lessons for our new age of economic
warfare.
The Wild Economics Behind Ferrari’s Domination of the Luxury Car MarketFeb 22, 2025
Limiting production is helping to make its sports cars coveted—and the company the most valuable automaker in Europe
The Great Grocery SqueezeDec 7, 2024
How a federal policy change in the 1980s created the modern food desert
Mastering the Big 12 Data-driven Economic Concepts - DataScienceCentral.comOct 20, 2024
“If you want to change the game, change the frame.” The game has certainly changed with the data era, and maybe the most drastic change driven by data has occurred in economics, the foundation upon which our modern society is built and sustained. Understanding and mastering the transition from “traditional” economics to modern data-driven economics… Read More »Mastering the Big 12 Data-driven Economic Concepts
Why did Venezuela’s economy collapse? - Economics ObservatoryOct 19, 2024
The Venezuelan economy has suffered from decades of disastrous economic policies – and more recently, from economic sanctions. The country has seen the largest ever decline in living standards outside war, revolution or the collapse of the state.
What to think about ranked choice voting?Aug 4, 2024
That is the topic of my latest Bloomberg column, here is one key segment: Game theory can help explain how ranked choice voting changes the behavior of candidates, as well as the elites who support them. Consider a ranked choice election that has five or six candidates. To win the election, you can’t just appeal […]
Information as a Universal Complement and Universal SubstituteJun 11, 2024
Plus! Diff Jobs; Making a Market; Financial Innovation; IRL; Open-Ended Liabilities; Meme Stock Relapse
Chart: US sets new record with $71B in clean energy investmentJun 10, 2024
In the first quarter of this year, private investors poured 40% more money into clean energy and electric vehicles than they did in Q1 2023.
The future of foundation models is closed-sourceMay 26, 2024
if the centralizing forces of data and compute hold, open and closed-source AI cannot both dominate long-term
The beauty of concreteMay 20, 2024
Why are buildings today simple and austere, while buildings of the past were ornate and elaborately ornamented? The answer is not the cost of labor.
The Rise and Fall of China’s Economic ‘Miracle’May 12, 2024
China’s economy has reached a dead end. Getting out will mean more trade friction with the United States.
Paris F.C. Set Tickets To $0. Should Others Do the Same?May 4, 2024
When Paris F.C. made its tickets free, it began an experiment into the connection between fans and teams, and posed a question about the value of big crowds to televised sports.
The economics of dollar storesApr 10, 2024
A visual explainer of the numbers behind America’s ubiquitous bargain-basement chains.
Economic Growth Makes Physical Stuff Cheap and Time PreciousApr 8, 2024
Or: You Know The Economy is Good When You Can't Find a Babysitter
The marketplace of good and bad ideasApr 2, 2024
On why the free exchange of ideas is a complex breeding ground for truth, appealing falsehoods, and self-serving rationalisations.
Why is Diet Coke so expensive in 2023? - VoxFeb 21, 2024
The economy, explained by your Diet Coke and soda prices, kind of.
Are you ‘loud budgeting’ or ‘doom spending’? Finance according to gen ZFeb 15, 2024
US schools fall short on financial literacy. So a generation saddled with money woes has developed language of its own
Liberals Love Ranked-Choice Voting. Will Conservatives?Feb 10, 2024
Ranked-choice voting could be on the November ballot in four states, a sign of the system’s rising popularity. Most conservatives have opposed it. But some say that could be changing.
The Rutters of Athens CountySep 9, 2023
An Appalachian school district’s daring experiment in economic integration.
Appalachia’s North–South DivideSep 1, 2023
Economic dynamism is vaulting the southern portion of the vast region ahead of its northern cousin.
Dollar General has racked up $21M in OSHA penalties since 2017. It’s paid $Jul 12, 2023
The retailer discounts the importance of in-store safety, the regulatory agency says, and was named a severe violator this fall.
The Market for LemonsFeb 5, 2023
"The Market for 'Lemons': Quality Uncertainty and the Market Mechanism" is a widely cited seminal paper in the field of economics which explores the concept of asymmetric information in markets. The paper was written in 1970 by George Akerlof and published in the Quarterly Journal of Economics. The paper's findings have since been applied to many other types of markets. However, Akerlof's research focused solely on the market for used cars.
An alternate ending to the tragedy of the commonsJan 31, 2023
I recently read Elinor Ostrom’s Governing the Commons and have been evangelizing it so enthusiastically that I figured I’d do a quick…
The Power of the Stora Rör Swimming Association and Other Local InstitutionJan 31, 2023
Economist Elinor Ostrom believed in the power of economics to “bring out the best in humans.” The way to do it, she thought, was to help them build community.
What’s Behind the Exploding Prices of Pro Sports Franchises?Dec 8, 2022
Teams were once considered poor, unpredictable investments. Today they’re among the most coveted assets in the world. What changed?
The Art of Profitability by Adrian SlywotzkyNov 5, 2022
This is a book summary of The Art of Profitability by Adrian Slywotzky. Read The Art of Profitability summary to review key ideas and lessons from the book.
the-economics-of-girl-talkJul 19, 2022
He is a music sensation, but Girl Talk neither sings nor plays an instrument. He plays music off reinforced Toughbook laptops protected from his sweat by layers of plastic wrap.
The American Amusement Park's Wild RideJul 16, 2022
From the trolley parks of the early 20th century to the theme parks of today, these spaces of shared pleasure have been both a reflection of urban life, and an escape from it.
America’s favorite family outings are increasingly out of reachJul 16, 2022
Taking the kids to a baseball game, a movie, or Disneyland is a bigger financial commitment than it used to be for middle-class families.
West Virginia-Pitt’s renewed Backyard Brawl a reminder of toll realignmentJul 14, 2022
"For your fans, what’s important to them?” said West Virginia athletic director Shane Lyons of scheduling rivals after realignment.
24 charts that show we’re (mostly) living better than our parentsJul 3, 2022
Ignore the haters: living standards have improved a lot since the 1980s.
The Dollar-Store Economy (Published 2011)Jun 23, 2022
The ubiquitous dollar store is the American dream writ small.
The Return of Industrial Warfare | Royal United Services InstituteJun 23, 2022
Can the West still provide the arsenal of democracy?
We are not in a recession, nor is one inevitable.Jun 21, 2022
Americans are rightly angry about inflation. A strong labor market is not enough reason to celebrate. But, we are coming out of, not going into the hurricane.
‘Just stop buying lattes’: The origins of a millennial housing mythJun 18, 2022
Financial gurus want young home shoppers to stop complaining and cut back on small luxuries. But there are broader affordability issues at play.
AWS for Industry, But Better: The Railroad Investment CaseJun 13, 2022
Plus! Smart Margin; Peak College?; Two-Sided Markets; Bonds; Diff Jobs
Timing a Recession vs. Timing the Stock MarketJun 11, 2022
It's not always easy to predict the timing of a recession and what that means for the stock market.
What Trait Affects Income the Most? – Economics from the Top DownMay 27, 2022
Ever wondered what trait most affects your income? Turns out it’s your rank in a hierarchy.
Quadratic VotingMar 31, 2022
We are a community of activists, artists, entrepreneurs, and scholars committed to using mechanism design to inspire radical social change.
The Cult of Adam ToozeMar 31, 2022
How the impeccably credentialed, improbably charming economic historian supplanted the dirtbag left.
Consuming Contests: The Effect of Outcome Uncertainty on Spectator Attendance in the Australian Football LeagueJan 16, 2022
Contests that non-contestants consume for entertainment are a fixture of economic, cultural and political life. We exploit injury-induced changes to teams’ line
The Importance of Price SignalsDec 27, 2021
Originally published: December 2021 When price inflation occurs, it can be a very challenging time for everyone. In that type of environment, prices of goods and services often go up faster than wages, and the public and policymakers wish to constrain them. Historically, when price inflation becomes rampant, policymakers tend to put in place price […]
The Behavioral Economics of Price-SettingDec 8, 2021
Prospect theory proposes that when making decisions people use a reference point to frame prospective alternative outcomes as either potential gains or losses; when considering prospective gains, they are risk-averse and prefer certainty, but when considering prospective losses, they are risk-prone and prefer to risk the possibility of larger but uncertain losses. However, when setting
Oil System Collapsing so Fast it May Derail Renewables, Warn French GovernmOct 24, 2021
Forget ‘peak oil’. Nafeez Ahmed reveals how the oil and gas industries are cannibalising themselves as the costs of fossil fuel extraction mount
Let’s Build a Chip – With MathJun 30, 2021
Let’s Build a Chip – We lay out the costs of building a chip – with spreadsheets!
The miracle of the commonsMay 5, 2021
Far from being profoundly destructive, we humans have deep capacities for sharing resources with generosity and foresight
The surprising problem with ranked-choice votingFeb 9, 2021
By every measure I can think of, ranked-choice voting is a superior way to hold a modern election. When a group of people want to decide something at the national or even the organizational level, …
Quadratic Payments: A PrimerDec 23, 2019
A New Way of Voting That Makes Zealotry ExpensiveMay 5, 2019
Some lawmakers in Colorado tried so-called quadratic voting—and it worked.
Guns, Germs and Steel | Documentary - The Big PictureMar 12, 2019
A PBS documentary concerning the disparity between those who have advanced technology and those who still live primitively.
Winner Takes it All: How Markets Favor the Few at the Expense of the ManySep 29, 2018
Markets tend to favor unequal distributions of market share and profits, with a few leaders emerging in any industry.Winner-take-all markets are hard to disrupt and suppress the entry of new players by locking in market share for leading players.
Can Basic Income Plus The Blockchain Build A New Economic System?Nov 11, 2017
To stop society's unsustainable demand for ever-more resources, we need to decentralize and localize our economy. Combining the new ledger technology with UBI may be the way to make that happen.
elasticsearch
Do you really need a Vector Search Database?Apr 30, 2025
Reflections on Intercom’s decision to stick with Elasticsearch
Getting started with Elasticsearch PythonFeb 10, 2024
This blog will introduce you to some core concepts and building blocks of working with the official...
Top 10 Best Vector Databases & LibrariesApr 19, 2023
Vector database is a type of database that stores data as high-dimensional vectors, which are...
Full-text Search with Elasticsearch in RailsJul 5, 2022
If you're finding performance bottlenecks with full-text search in your database, it may be time to switch to Elasticsearch. In this tutorial, Ianis introduces Elasticsearch and shows us how to implement an efficient ...
Four Things You Need to Master to Get Started with ElasticSearchSep 1, 2021
A concise overview of Elasticsearch concepts and principles
How to Build a Booking Engine Similar to Booking.com with Ruby on Rails 6 aJul 10, 2021
Think building a booking system is not your cup of tea? I bet, you will change your mind after...
electricity
The Datacenter Bible - From Layman to Expert in 100 PagesFeb 25, 2026
The definitive 100+ page guide to the thermodynamics, scarcity, and heavy assets powering the AI revolution.
How AI Labs Are Solving the Power Crisis: The Onsite Gas Deep DiveJan 1, 2026
Bring Your Own Generation, Sayonara Electric Grid, Turbines vs. Recips. vs. Fuel Cells, Why Not Build More CCGTs?, Onsite Power TCO
‘Strange metals’ point to a whole new way to understand electricityNov 15, 2025
Exotic materials with bizarre electron behavior could pave the road to revolutionary technologies
PoE basics and beyond: What every engineer should knowOct 22, 2025
Here is a short primer that walks you through the basics of Power over Ethernet (PoE) technology.
Inside the Interconnection QueueOct 4, 2025
Electric power in the US is provided by the electrical grid, a huge network of power plants, transmission lines, and transformers that moves electric power from where it's generated to where it's consumed.
How Co-Ops Electrified America—AsteriskSep 29, 2025
In the 1930s, private utilities balked at the task of bringing electricity to rural America. A New Deal agency figured out how to do it more quickly and more cheaply than anyone expected.
The Wireless Grid: How Power Is Becoming Infrastructure - EE TimesSep 22, 2025
Wireless Power Networks are transforming power from fixed and static into an ambient utility that’s omnipresent.
The beauty of batteriesAug 28, 2025
Keeping the grid stable requires overbuilding generation, driving up costs. Batteries fix that.
Liquid cooling: The next evolution in data center thermal managementAug 24, 2025
Immersion cooling on the horizon
The enduring puzzle of static electricityAug 11, 2025
Even though it lacks a complete explanation, the small-scale, everyday effect is being exploited for various applications.
How Batteries Are Making the Electrical Grid More ReliableJun 19, 2025
To operate reliably, the US electrical grid needs to balance supply and demand: to make sure, at any given moment, that the amount of electricity demanded by homes, businesses, and factories is equal to the amount being supplied by nuclear reactors, gas turbines, and other types of power plants.
Got juice? Future AI processors said to drink up to 15,360 watts of power — titanic requirements demand exotic immersion and embedded coolingJun 18, 2025
It is going to get hot.
We’ve unlocked a holy grail in clean energy. It’s only the beginning.Apr 21, 2025
Do we have batteries that are advanced enough to store renewable energy? Yes, yes we do.
Big gas turbine manufacturers aren’t ready to bet on the AI boomMar 18, 2025
Demand for gas power-generation hardware is surging, but the few companies that make it are reluctant to scale up.
Data center energy consumptionMar 17, 2025
Can We Build a Five Gigawatt Data Center?—AsteriskJan 29, 2025
By 2030, leading AI labs will need data centers so massive they will require the power equivalent of some of America’s largest cities. Will they be able to find it?
This Essential Element of the Power Grid Is in Critically Short SupplyDec 11, 2024
A transformer supply crisis bottlenecks energy projects
How to Build an AI Data CenterJun 12, 2024
This piece is the first in a new series from the Institute for Progress (IFP), called Compute in America: Building the Next Generation of AI Infrastructure at Home. In this series, we examine the challenges of accelerating the American AI data center buildout. Future pieces will be published
How to EMP-Proof a BuildingMay 26, 2024
Oak Ridge researchers mimicked electromagnetic pulses to block them
Giant 'sand battery' holds a week's heat for a whole townMar 15, 2024
A new industrial-scale 'sand battery' has been announced for Finland, which packs 1 MW of power and a capacity of up to 100 MWh of thermal energy for use during those cold polar winters. The new battery will be about 10 times bigger than a pilot plant that’s been running since 2022.
The Holdouts in the Quest for a Better Power GridJan 26, 2024
Farmers in Missouri are opposing the Grain Belt Express, a transmission line that will connect wind farms in Kansas with cities in the East.
Scientists Made An Artificial "Cloud" That Pulls Electricity From AirJul 24, 2023
A new prototype compatible with a wide range of materials could grab a continuous supply of renewable energy from the air.
This startup wants to make nuclear energy huge by making its reactors tiny—Jul 13, 2023
“In one week [in March], we sold more nuclear power plant contracts than any company in all of history,” says @LastEnergy CEO Bret Kugelmass.
The Grid, Part III: The Dream of DeregulationJul 7, 2023
For most of the industry’s history, electric power in the US had largely been provided by vertically integrated utility companies that handled every part of the electricity supply: generating it, transmitting it, distributing it to customers, and managing the overall system. Utilities were granted monopoly status in their area of operations, and in return had their rates regulated by state public utility commissions. Most utility companies were private enterprises known as investor-owned utilities (IOUs), though there were several other models, such as municipally-owned utilities, rural co-ops, or the federal Tennessee Valley Authority.
Electricity Prices Worldwide » (April 2023) « ElectricRateApr 9, 2023
Think that electricity in the U.S. is expensive? You should know that there are countries that have it worse (and better). Who pays the most for electricity?
Get to Know Maxwell's Equations—You're Using Them Right NowDec 3, 2021
James Clerk Maxwell's equations are a big deal in physics, explaining the fundamentals of electricity and magnetism. Here's the gist of how they work.
Introduction to Vibration Energy Harvesting - Technical ArticlesDec 2, 2021
Learn more about vibration energy harvesting as a source of power for electronic systems.
Opposites Attract: A Review of Basic Magnetic Theories - Technical ArticlesDec 1, 2021
Electric machineries are based on the basic principles of electromechanical conversion, which use either the electrostatic or the electromagnetic principle. This technical article deals with the magnetic circuit theory for the conversion of one form of energy to another.
Power to the PeopleMay 14, 2020
Planned outages have sparked the use of more in-home batteries and generators. Here’s how to keep the lights on.
This technology could fundamentally change our relationship to electricityJul 26, 2018
An “operating system” for power could double the efficiency of the grid.
elixir
How to Track Faces in Live Video with Elixir: Quick TutorialMay 11, 2024
32K subscribers in the elixir community. Subreddit for the Elixir programming language, a dynamic, functional language designed for building scalable…
When "letting it crash" is not enoughFeb 10, 2024
This essay explores the connection between Erlang's process supervision, state management and durable execution.
An Introduction to AbsintheMay 16, 2023
In the first part of this Absinthe for Elixir series, let's explore some of the basics of Absinthe and GraphQL.
"Deploying Elixir: Advanced Topics" eBookMay 4, 2022
Deploying Elixir clusters to Production using Kubernetes
Announcing Livebook - Dashbit BlogApr 20, 2021
Livebook is a web application for writing interactive and collaborative code notebooks
Learn Elixir: The Ultimate GuideJun 1, 2020
98 votes, 16 comments. 32K subscribers in the elixir community. Subreddit for the Elixir programming language, a dynamic, functional language…
What Is RabbitMQ? An Intro To The Message Queuing TechMay 22, 2020
What is RabbitMQ? Find out in our introduction to the powerful Message Queue tech.
How to build an ecommerce machine learning project in ElixirOct 27, 2019
32K subscribers in the elixir community. Subreddit for the Elixir programming language, a dynamic, functional language designed for building scalable…
Elixir Boilerplate — a batteries-included Elixir application setup with Phoenix, Ecto, Credo, Distillery, Dialyzer, Docker, Coveralls, etc.Aug 29, 2019
90 votes, 11 comments. 32K subscribers in the elixir community. Subreddit for the Elixir programming language, a dynamic, functional language…
Elixir Makes Testing Hard Things EasyJun 9, 2019
32K subscribers in the elixir community. Subreddit for the Elixir programming language, a dynamic, functional language designed for building scalable…
Mint, a new HTTP library for ElixirFeb 26, 2019
32K subscribers in the elixir community. Subreddit for the Elixir programming language, a dynamic, functional language designed for building scalable…
Elixir SchoolJan 12, 2019
You are wasting your warm introsApr 23, 2025
Your note sucks because you don't sound sincere. Do these 6 things to make your note more persuasive before you hit send.
Talking To Your Mailserver Is Not as Hard as You Think!Mar 31, 2025
The technology behind E-Mails (or ‘emails‘) always interested me. This is because in some sense it was way ahead of its time by being a decentralized communication system. Unlike WhatsApp, Telegram or other messenger services, where the service provi...
The Cold Email HandbookDec 13, 2024
Learn how to master cold email outreach from $0 to $1M ARR. A comprehensive playbook on infrastructure, copywriting, and AI-powered personalization at scale.
I tried every email marketing tool — these are the best (2024)Nov 17, 2024
After 14 years with MailChimp, I decided to switch. I researched the top 26 email marketing tools to find a replacement and here’s what I discovered.
nicanorflavier/spf-dkim-dmarc-simplified: Email security is a key part of iJun 17, 2024
Email security is a key part of internet communication. But what are SPF, DKIM, and DMARC, and how do they work? This guide will explain it all in simple terms to make these concepts clearer. - nic...
Email Delivery, ExplainedFeb 29, 2024
The best email offers are meaningless if recipients never see them. Here's how to ensure messages reach inboxes.
The Unexpected Benefits of Email ValidationMar 15, 2023
Find out the many unexpected benefits of email validation for email marketing to make the most of your efforts and resources.
How to Create a Gmail AliasFeb 4, 2023
You're not limited to just one Gmail email address. Make a temporary alias for Gmail using periods and plus signs, or create a permanent one by adding another address to your account.
Ultimate Guide on Working with Suppression ListsDec 28, 2022
Email suppression lists are a powerful tool that every email marketer should use. Since suppression lists allow keeping your sending reputation and email
How SPF, DKIM, DMARC Drive Email Delivery, SecurityNov 28, 2022
There's no shortage of crooks looking to impersonate an authentic email sender. These three authentication tools prevent that from happening while improving deliverability.
3 Email Lead Capture Hacks to Get More CustomersJul 19, 2022
When it comes to email lead capture, you can just acquire email addresses, or you can acquire real contacts that you can turn into leads. Context is key.
undefined | Customer.ioJul 19, 2022
Leverage marketing automation and customer data in a single Customer Engagement Platform.
Email Marketing Metrics, Part 1: The BasicsJul 19, 2022
Email marketing is cost effective and typically has a high return on investment. But over the years, email marketing has changed. Measuring the
http://blog.chamaileon.io/900-free-responsive-email-templates-to-help-you-start-with-email-designJul 19, 2022
Advanced list buildingJul 18, 2022
12 Ways to Improve Email DeliverabilityJul 18, 2022
Let me state that another way so you don’t miss it. If your emails aren’t getting delivered, then email marketing is a massive waste of time and money.
Welcome Email to New Client | 17 Examples of Highly Effective Welcome EmailsJul 18, 2022
Learn everything you need to know about creating an effective welcome email in these 17 examples. Read more.
Email subject lines: Boost open rates with 7 eye catchy examplesJul 18, 2022
Craft powerful, eye-catching email subject lines that grab your reader's attention, increase your subscriber's engagement & catapult your open rates.
How to Get Busy People to Take Action When You Send an EmailJul 18, 2022
We all get a lot of email. And we send off scores of them, too. For important emails we hope for replies or action. If you do the math on the number of inbound emails you get multiplied by the time…
Email Marketing Metrics, Part 2: Advanced TopicsJul 17, 2022
In "Email Marketing Metrics, Part 1: The Basics," my article last month, I addressed the primary measurements for email marketing: delivery rate, open
275 Free, Responsive Email TemplatesJul 5, 2022
Whether you’re sending a newsletter, welcome message, product announcement, or holiday greetings, there are plenty of customizable email templates to match your brand and design on any device. Here is a list of responsive email templates.
It’s OK to Move Down (Yes, Down) the Value ChainJul 5, 2022
There is increased efficiency and other benefits to doing so.
12 Ways to Improve Email DeliverabilityJul 5, 2022
Let me state that another way so you don’t miss it. If your emails aren’t getting delivered, then email marketing is a massive waste of time and money.
How CDBaby Built 20,000 Citations With One E-MailJun 25, 2022
CDBaby* is an online distributor of independent music. Founded by well-known entrepreneur Derek Sivers, the service became a huge hit with independent
165 Great Email Subject Lines from SXSW Catalog [updated]Jun 25, 2022
Increase your email open rates. Get inspired by these 165 great email subject lines from the SXSW catalog. Check them out!
How to Write Email with Military Precision | FlipboardJun 24, 2022
Harvard Business Review - When you send an email, the first thing your recipient sees is the subject line, so make sure it’s as clear as possible: What is your email’s purpose? What do you want your recipient to do? Take a page from military personnel. Their subject lines use keywords in all caps to note the email’s …
6 Email Triggers for Max ConversionsJun 21, 2022
Shoppers' actions on an ecommerce site create opportunities for automated, triggered emails. Such behavior-based email automation is a sure-fire tactic to drive revenue.
What Is a Transactional Email? Types and Best Practices (2024) - ShopifyJun 13, 2022
Dive into the world of transactional emails and their importance for ecommerce stores. Learn the types and best practices, with examples, in this guide.
Using Rails Action MailerJun 4, 2022
In this quick tutorial I will go over how I use Action Mailer in my Rails apps. A bonus if you have...
Email explained from first principlesMay 11, 2021
Modern email is a patchwork of protocols and extensions. Here is one article to understand them all.
Sending Email with Rails | Learn Enough News & BlogJan 29, 2021
News & blog about Learn Enough (including the Ruby on Rails Tutorial)
How to Write Warm EmailsDec 18, 2020
How to Use the Infinite Number of Email Addresses Gmail Gives YouNov 6, 2020
One trick you may or may not have picked up about Gmail is that you can add in periods anywhere in the front part of your address and it makes no
To Get More Replies, Say LessJul 25, 2020
This is a story of how a software company was able to start a conversation with 8x more of their users by cutting the length of their emails by 90%. You could set up a test of this method in less than an hour. The Problem One of the most
How to Create a Disposable Email Address with GmailJun 24, 2020
Temporary, disposable email addresses help keep spam out of your main inbox and are really useful when you don't want to give your real email address on the Internet
10 Email Marketing Automation Campaigns Your eCommerce Store Needs in 2020Feb 19, 2020
Reaching and engaging your email subscribers with incredible email marketing automation campaigns is every eCommerce business’s secret weapon to success.
How to Write Follow Up Emails That Virtually Guarantee a Response (with TemSep 28, 2018
Your first message is only the start. Here’s a tested method for following up to get results.
WordPress, Spam Filtering, and You: From SPF to DKIM to BlocklistsSep 9, 2018
There is no one key to making sure WordPress site emails are sent reliably and stay out of the recipient’s spam folder. A common recommendation is to use a dedicated…
emojis
Emoji Kitchen BrowserJul 26, 2022
Browse thousands of delightful Emoji Kitchen combinations, available in Gboard for Android.
emotions
Why Do We Like Music?Feb 11, 2026
People with musical anhedonia don’t get any enjoyment from music. Shayla Love writes about scientists studying this condition to learn about how music affects listeners’ minds and moods.
Friction Science: Why Users Drop Off - UX MagazineFeb 10, 2026
Most teams worry about small changes to UI when users stop using the product. But research shows that the real problem is psychological friction. This is when your brain has hidden mental interruptions that make you think, "Maybe later." This article looks at the four types of friction that can stop people from buying your products, and why 91% of people leave websites when there are problems with these things happening at the same time. Spoiler: You're not designing for screens. You're designing for the human mind.
Will we ever… understand why music makes us feel good?Feb 8, 2026
No one knows why music has such a potent effect on our emotions. But thanks to some recent studies we have a few intriguing clues.
How Small, Easy Acts of Joy Improve Happiness and Well-BeingSep 5, 2025
A community science project finds that modest reminders to find joy in the day can have benefits that are on par with those of more ambitious well-being interventions
The neuroscience of rejection: The surprising way your brain learns from being left outAug 26, 2025
Rejection stings, but scientists suggest it’s more than just emotional pain. New research indicates our brains treat social slights as learning signals, helping us recalibrate who values us and shaping how we navigate relationships and future connections.
The 7 Triggers of FascinationApr 23, 2025
Wish to push the right "buy" buttons in your consumer's hearts and minds? Consider the 7 triggers of fascination.
Why We Love to Be Grossed Out - NautilusMar 30, 2025
Disgust may not be a straightforward extension of the immune system’s aversion to harmful substances, but rather “a psychological nebula, lacking definite boundaries, discrete internal structure, or a single center of gravity,” says psychologist Nina Strohminger.Photograph by Star Stock / Flickr Nautilus Members enjoy an ad-free experience. Log in or Join now . Nina Strohminger, […]
The Strange Power of LaughterJan 21, 2025
An anthropologist explores laughter as a far more complex phenomenon than simple delight—reflecting on its surprising power to disturb and disrupt.
The small exercise that's a powerful mood boosterDec 20, 2024
Counting our blessings is an age-old piece of advice – but it turns out that writing lists of good things that happen to us actually does help improve our mood.
The Roots of Fear: Understanding the AmygdalaNov 5, 2024
Treating anxiety, depression and other disorders may depend on the amygdala, a part of the brain that controls strong emotional reactions, especially fear. But a deep understanding of this structure has been lacking. Now scientists at the University of California, Davis have identified new clusters of cells with differing patterns of gene expression in the amygdala of humans and non-human primates. The work could lead to more targeted treatments for disorders such as anxiety that affect tens of millions of people.
Stuck in a rut? How to appreciate your life again, according to scienceJun 27, 2024
After a while, even the most exciting relationships, jobs and environments lose their spark. But cognitive neuroscientist Tali Sharot says it's possible to fall back in love with life's small joys.
How Actors Remember Their LinesMay 27, 2024
In describing how they remember their lines, actors are telling us an important truth about memory.
Why We Love MusicMay 11, 2024
Researchers are discovering how music affects the brain, helping us to make sense of its real emotional and social power.
ChillsDB: an open-source database of chills-inducing stimuliApr 18, 2024
ChillsDB is the first database of validated audiovisual stimuli eliciting aesthetic chills (goosebumps, psychogenic shivers) in the US population.
Could that tingle down the spine be a way to rediscover joy?Mar 29, 2024
In new research, scientists have looked into the potential benefits of giving people with depression the aesthetic chills
Why are Russians so stingy with their smiles?Mar 27, 2024
In the US, smiling is a reflexive gesture of goodwill, but Russians view it as a sign of stupidity. Social psychology research could help explain this cultural contrast.
Elizabeth Goodspeed on the delicate art of nostalgia in brandingMar 20, 2024
Our US editor-at-large dissects the emotional potency of heritage branding and how companies try (and sometimes fail) to capitalise on it.
What are Emotions, Legally Speaking? And does it even matter?Mar 1, 2024
Exploring the Legal Framework for Emotion in Emotion Recognition Tech
This former Google X exec reverse engineered happiness — here's what he foundFeb 29, 2024
Mo Gawdat says it took him much longer to find happiness than it did for him to find success, so he hacked it for everyone else.
7 Things A Happiness Scientist Taught Me About Finding More JoyJan 22, 2024
“Without unhappiness, you wouldn’t survive, learn, or come up with a good idea,” points out Harvard professor Arthur C Brooks.
Psychology for UX: Study GuideJan 17, 2024
Unsure where to start? Use this collection of links to our articles and videos to learn about some principles of human psychology and how they relate to UX design.
There's a word for feeling like you're falling behind in life, and 10 other common, hard-to-explain emotionsJan 15, 2024
Ever experience an emotion you can't quite explain? You're not alone. These 11 words may help you describe them.
The Science of Gift GivingSep 17, 2023
There is a lot of social psychology out there providing information that can inform our everyday lives, and most people are completely unaware of the research. Richard Wiseman makes this point in his book, 59 Seconds - we actually have useful scientific information, and yet we also have a vast self-help industry giving advice that
8 Ways to Emotionally Reward Your Users | Web Designer DepotAug 7, 2023
They made this digital faux-Montana delightful enough that I don’t want to leave. But hey, you can use these powers for good.Anyway, my point is that people want payoff for the effort they put into things, and that includes the websites they browse. But you can build emotional rewards into just…
How John Fetterman Came Out of the DarknessJul 25, 2023
In a series of emotional interviews, the unconventional senator opens up about his battle with depression.
The fear of being duped is ubiquitous, but excessive scepticism makes it haJul 24, 2023
The fear of being duped is ubiquitous, but excessive scepticism makes it harder to trust one another and cooperate
Joy Is Good for Your Body and Your Mind – Three Ways to Feel It More OftenMay 20, 2023
Joy is very different from our other emotions.
How to feel less lonely as you get olderApr 30, 2023
Work and family life are no longer so busy and life can suddenly seem empty. Here are some good ways to stay connected
How our brains process music and why we like what we like | Press PlayApr 11, 2023
How long does it take before you change the station or hit “skip” if you don’t like a song? Seconds — according to researchers at New York University.
The Art and Science of Spending MoneyApr 8, 2023
Former General Electric CEO Jack Welch once nearly died of a heart attack.
Ten Words That Describe Human Emotions That We Might Have Difficulty ExpresApr 5, 2023
Sometimes, we feel things that we can’t put into words. We can certainly describe things through paragraphs, but finding the exact word to describe our emotions can be limited. It turns out that aside from the common words we used to talk about how we feel, there are other phrases and nouns in English that can describe more complicated human emotions.
Be Dignified, as a RuleMar 28, 2023
Much of what you’ve read on this blog has been written in pajama pants. Writing directly follows meditation in my morning routine, so I’ve often gone right from the cushion to the coffeepot to the desk. Occasionally life would remind me that there are practical reasons to put on socially acceptable pants before beginning the workday. Someone could knock on
The Weird Reason We're Afraid of ClownsMar 8, 2023
Our research shows that coulrophobia, or fear of clowns, is mainly triggered by being unable to understand their facial expressions.
How Loneliness Reshapes the Brain | Quanta MagazineMar 2, 2023
Feelings of loneliness prompt changes in the brain that further isolate people from social contact.
A ‘Distinctly Human’ Trait That Might Actually Be UniversalFeb 22, 2023
Disgust is surprisingly common across nature.
How to have more fun: 5 ideas to make your life more playful : Shots - HealFeb 17, 2023
Happiness can sometimes feel just out of reach. But having more fun? You've got this — and those giggles and playful moments can make a big difference to your health and well-being.
This 715-song playlist is scientifically verified to give you the chills, thanks to "frisson"Dec 18, 2022
Listening to some songs can cause a powerful physiological response known as "frisson." What is it, and why does it happen?
The Psychologist | BPSOct 30, 2022
The magazine of the British Psychological Society - in print and online.
The four horsemen of fearOct 5, 2022
All fears can be divided into four broad categories which psychologists refer to as the four horsemen of fear: bodily, interpersonal, cognitive and behavioral fears. And each of the four horsemen of fear can be addressed by applying simple strategies.
Charlie Tyson: "Theater of Shame"Oct 4, 2022
What does the state of online shaming reveal about our democracy?
Asking one simple question can entirely change how you feel | Psyche IdeasOct 2, 2022
Positive and negative emotions respond differently to ‘affect labelling’ – the act of giving a name to your feelings
PocketSep 17, 2022
Purring Is a Love Language No Human Can SpeakSep 9, 2022
Some cats do it, but others can’t—and researchers still don’t fully understand why.
How to cope with shame | Psyche GuidesSep 9, 2022
Do you feel perpetually bad, broken or unlovable? These tools will help you relate to yourself in a fairer, gentler way
The Trait That ‘Super Friends’ Have in CommonAug 28, 2022
A secure attachment style can help people initiate and maintain friendships.
3 Types of Burnout, and How to Overcome ThemAug 27, 2022
Research shows that people don’t burn out in the exact same way or for the exact same reasons. Because of this, it’s important to identify the type of burnout that you may be facing. You may even be dealing with a mix of one or two of these types at the same time. In this article, the author describes three types of burnout — overload, under-challenged, and neglect — and provides readers with signs to watch out for, and tips on how to overcome each type.
The Scientific Underpinnings and Impacts of ShameAug 17, 2022
People who feel shame readily are at risk for depression and anxiety disorders
Does the Dog Die? · The WildestAug 14, 2022
Save yourself the heartache and check this awesomely to-the-point site before pressing play.
How to Build Resilience to ShameJul 30, 2022
Today’s hustle culture claims “unearned” pleasure is shameful. But there are ways to resist this cultural response.
Nobody optimizes happinessJul 30, 2022
People don’t seem to try very hard to make themselves happier. Why not?
Cinema’s greatest scene: ‘Casablanca’ and ‘La Marseillaise’Jul 27, 2022
Casablanca is widely remembered as one of the greatest films of all time, coming in at #2 on the AFI’s top 100 list and similarly regarded by many other critics. You can quibble with its exac…
Separating Yourself from the Pack | Hidden Brain MediaJul 18, 2022
Have you ever gotten into a heated argument about politics? Maybe you’ve said something you're not proud of during game night with friends, or booed the opposing team at a sporting event. Psychologist Mina Cikara studies what happens in these moments — when our mindset shifts from “you and me” to “us and them.” This week on the show, Mina shares the profound ways that becoming a part of a group shapes our thoughts, feelings and behaviors.
7 Reasons Why Emotional Intelligence Is One Of The Fastest-Growing Job SkillsJul 18, 2022
Here’s why hiring managers say they often value emotional intelligence more highly than IQ.
Why criticism lasts longer than praiseJul 5, 2022
Most of us are subjected to insults, sarcastic comments or bad feedback in our everyday lives. But we weren't built to deal with torrents of criticism.
How to Sell High-priced (and High-quality) ProductsJun 28, 2022
In the 1950s, most products were built to last. Companies knew that manufacturing long-lasting products would spread word-of-mouth referrals, which meant
Baking mischief and delight into your products will make people love themJun 12, 2022
You should never underestimate the power of making people happy. Here are four tips from Techstars' Eamonn Carey to help you build products people love.
Why your favourite colour is probably blueJun 10, 2022
From a young age we are primed to choose a favourite colour, but strangely as we grow up our preference often changes – and it's largely due to influences outside our control.
How to harness employees’ emotional energyJun 7, 2022
Fuel success by linking a company’s strategic goals to the reasons people are proud to work there.
What makes hate a unique emotion – and why that matters | Psyche IdeasMay 17, 2022
How does hating someone compare with anger, contempt or disgust? A clearer picture of what makes it unique is emerging
A Gentler, Better Way to Change MindsApr 14, 2022
Stop wielding your values as a weapon and start offering them as a gift.
The Endgames of Bad Faith CommunicationApr 13, 2022
How to live with your regretsFeb 20, 2022
Regret is often seen as undesirable, but it’s a crucial emotion in helping us develop. How do we harness its powerful lessons?
What Internet Search Patterns Can Teach Us About CopingJan 25, 2022
I analyzed thousands of searches by people who were diagnosed with cancer. Their queries offer valuable lessons that could improve the way doctors treat patients.
Why This Certain Smile Can Change Your LifeJan 21, 2022
Changing how people view you and how you view yourself
How to perform well under pressure | Psyche GuidesJan 17, 2022
Ditch the tough talk, it won’t help. Instead cultivate your mental flexibility so you can handle whatever comes your way
List of Emotions: 135 Words that Express FeelingsJan 17, 2022
The list of emotions a child understands may be limited to happy, mad, sad, and scared, but as we grow, we develop a nuanced vocabulary to explain how we feel.
How Disgust Explains Everything (Published 2021)Dec 28, 2021
For psychologists who study it, disgust is one of the primal emotions that define — and explain — humanity.
7 Powerful Habits of People With High Emotional IntelligenceDec 10, 2021
You don’t get where you want to be without practice. Here’s how and what to practice.
Interoception: The Hidden Sense That Shapes WellbeingOct 27, 2021
There’s growing evidence that signals sent from our internal organs to the brain play a major role in regulating emotions and fending off anxiety and depression.
The 10 Must-Read Psychology Books Every Human Being Should Read | DurmonskiJul 13, 2021
Regardless of where you are in the pathway of understanding how the human psyche works, this list of must-read psychology books will upgrade your personal library.
How Pixar Uses Hyper-Colors to Hack Your BrainMay 7, 2021
The animation studio’s artists are masters at tweaking light and color to trigger deep emotional responses. Coming soon: effects you’ll only see inside your head.
A Visual Guide to Human EmotionApr 3, 2021
Dissecting the Bloodthirsty Bliss of Death MetalFeb 12, 2021
Fans of this violent music report feelings of transcendence and positive emotions; psychologists want to learn why.
Interpersonal Reactivity Index - Psychology | Eckerd CollegeFeb 12, 2021
[vc_row type=”full_width_background” full_screen_row_position=”middle” column_margin=”default” column_direction=”default” column_direction_tablet=”default” column_direction_phone=”default” scene_position=”center” top_padding=”48″ text_color=”dark” text_align=”left” row_border_radius=”none” row_border_radius_applies=”bg” overflow=”visible” overlay_strength=”0.3″ gradient_direction=”left_to_right” shape_divider_position=”bottom” bg_image_animation=”none”][vc_column column_padding=”no-extra-padding” column_padding_tablet=”inherit” column_padding_phone=”inherit” column_padding_position=”all” column_element_direction_desktop=”default” column_element_spacing=”default” desktop_text_alignment=”default” tablet_text_alignment=”default” phone_text_alignment=”default” background_color_opacity=”1″ background_hover_color_opacity=”1″ column_backdrop_filter=”none” column_shadow=”none” column_border_radius=”none” column_link_target=”_self” column_position=”default” gradient_direction=”left_to_right” overlay_strength=”0.3″ width=”1/1″ tablet_width_inherit=”default” animation_type=”default” bg_image_animation=”none” border_type=”simple” column_border_width=”none” column_border_style=”solid”][vc_column_text] Interpersonal Reactivity...
A neurosurgeon shares his effective strategy for overcoming fearsFeb 12, 2021
Think about your life like an x-y axis, with four quadrants.
the art of negativityFeb 11, 2021
The concept of ‘positive thinking’ is ubiquitous throughout society – from socia… media to home décor. What then, of adopting an approach grounded in negativity?
How to be angry | Psyche GuidesFeb 7, 2021
Anger is a fuel that’s dangerous when out of control. But managed well, it can energise you to identify and confront problems
Ads Don’t Work That Way | Melting AsphaltDec 26, 2020
Emotion classification - WikipediaNov 29, 2020
Emotion classification, the means by which one may distinguish or contrast one emotion from another, is a contested issue in emotion research and in affective science. Researchers have approached the classification of emotions from one of two fundamental viewpoints:that emotions are discrete and fundamentally different constructs
that emotions can be characterized on a dimensional basis in groupings
An Extensive List of Human Emotions and Their Meanings - PsychologenieNov 29, 2020
When we are feeling something, we don't really stop to define that emotion or think about the exact emotion that we are experiencing. We just feel and go through it; may it be sadness, anger or happiness. As human beings, we experience a plethora of feelings and emotions in our lifetime that range over several forms and types. This article is an attempt to list down an extensive list of those emotions.
The Ultimate List of Emotions and How to Control Your Emotions | Science ofNov 29, 2020
Could you make a list of all the emotions you feel in a day? Emotions play a fascinating
Emotional Intelligence: The Social Skills You Weren’t Taught in SchoolFeb 12, 2020
How well do you recognize and understand your emotions? What about the emotions of those around you?
Why the French Don’t Show ExcitementJan 5, 2020
Not only is ‘Je suis excité’ not the appropriate way to convey excitement in French, but there seems to be no real way to express it at all.
I Now Suspect the Vagus Nerve Is the Key to Well-beingOct 26, 2019
“Stimulating” it leads to calmness, but how and why?
Why wonder is the most human of all emotions | Aeon EssaysOct 26, 2019
One emotion inspired our greatest achievements in science, art and religion. We can manipulate it – but why do we have it?
On Humility and Making Better DecisionsOct 18, 2019
Dr. Daniel Kahneman features on the latest Farnam Street podcast and it’s a surprising episode. Kahneman wrote Thinking Fast and Slow. I admire Kahneman a great deal. Not for his Nobel or for his work, which are both impressive, but for his humility. Some of the key tenets of Kahneman’s work in his famous book were disproved. And he owned up to it, both in print and on the podcast. That’s the hallmark of someone with great integrity, and it’s a sign to trust someone more.
The fast track to a life well lived is feeling gratefulOct 9, 2019
Being ‘good’ need not take years of ethical analysis: just a few moments of gratitude can set you on the path to virtue
To Persuade Someone, Look EmotionalSep 16, 2019
Look like you‘re trusting your gut and others will trust you.
The value of shameSep 12, 2019
Immanuel Kant held that moral education is hydraulic: shame squashes down our vices, making space for virtue to rise up
What can psychopaths teach us about AI?Aug 31, 2019
What happens when machines learn to manipulate us by faking our emotions? Judging by the rate at which researchers are developing human-like AI agents, we’re about to find out. Researchers around the world are trying to create more human-li
The Science Behind “Blade Runner”’s Voight-Kampff Test - Facts So RomanticJul 25, 2019
Is Rick Deckard a replicant, an advanced bioengineered being? The jury concerning the character in 1982’s Blade Runner is still out. Harrison Ford, who plays Deckard in the film, thinks he’s human. Ridley Scott, the film’s director, is adamant that he’s not.* Hampton Fancher, the screenwriter for the original film and the sequel, Blade Runner […]
Why we buy the things we buySep 12, 2018
The mysteries of consumer behavior, explained by ice cream and independent bookstores.
100,000 happy momentsFeb 20, 2018
What makes people happy? A huge database is making it possible to discern the answer at last.
When personalities go from bad to goodJan 11, 2018
Brain injury does not always result in an undesirable personality change, finds Christian Jarrett.
Anger is temporary madness: here’s how to avoid the triggers | Aeon IdeasOct 15, 2017
Anger is temporary madness: to avoid the triggers, follow the Stoics’ advice and achieve a kind of serenity
We should take awkwardness less personally and more seriously | Aeon EssaysOct 24, 2006
Rather than being a cringey personal failing, awkwardness is a collective rupture – and a chance to rewrite the social script
empathy
Your Closest Relationship Isn't With Family or Friends, Viral Theory SaysDec 14, 2025
Everyone loves a good relationship theory, especially one that feels uncannily accurate. This one hit home for anyone who hates their job.
Scientists Discover People Act More Altruistic When Batman Is Present - SlashdotNov 30, 2025
Psychology Today reports:
In a study conducted in Milan, Italy, and published in November 2025, the sight of a person dressed as Batman led to a nearly doubled rate of people giving up their seat to a pregnant woman. Over the course of 138 subway rides, researchers found that people who saw "Batm...
Active Listening: Swiss Army Knife of Communication (with Examples)Nov 1, 2025
Master the ultimate communication skill, useful in almost any scenario.
This World-Renowned Negotiator Says Trump’s Secret Weapon Is EmpathyAug 16, 2025
Chris Voss on our “dealmaker in chief” and the benefit of approaching life as a deal waiting to be made.
To instantly sound more sincere, do thisJul 25, 2025
If you aren’t careful, you may come across as less sincere because your writing doesn’t translate your intent. Here’s how to make sure that doesn’t happen.
How privilege impacts empathy - UX CollectiveApr 22, 2025
I recently met a woman named Dolores*, an older Hispanic woman, living in Queens, NY with her mother and teenage daughter. As the primary provider for her family, she had come to the organization…
How to Make an Instant Connection With AnyoneApr 4, 2025
A good first impression can make or break an opportunity or connection. Here's how to make an instant connection with anyone.
Is generosity the most underrated leadership skill?Mar 20, 2025
Leadership isn’t about a title or position — it’s about generosity, says organizational expert Joe Davis. Drawing on his extensive experience as a people manager, he shares three essential tips for leaders to unlock the potential of their teams by listening generously, embracing vulnerability and leading with humanity — and shows how it's possible to both earn trust and drive results.
How do we start learning to ‘read’ other people’s minds?Mar 18, 2025
Studies of young children give us insight into the building blocks of an ability that most of us use every day
Sunday Firesides: Just Be CoolApr 30, 2024
What does it mean to be cool? Philosophers have long pondered this burning question. There are different types of coolness, with some related to affect, style, or talent. But one type is connected to how we show up in relationships. It’s the type that underlies the feeling expressed when you think to tell someone (or […]
When to Use Empathy Maps: 3 OptionsFeb 15, 2023
Empathy maps are a powerful, flexible tool that can be used to plan for future research studies, capture insights during current user research, and communicate research insights from research that has already been conducted to others.
Conversation Skills Essentials – Tynan.comJan 3, 2023
'Arrival' Is a Timely Film About Aliens and EmpathyDec 4, 2022
The movie's screenwriter talks about the creation of the story's extraterrestrial language and the importance of communication.
4 Ways to Communicate with More EmpathyAug 30, 2022
The pandemic and other stressful events over the past few years have only made empathic communications even more desirable and necessary, especially as those expressions have become more virtual — including videos, social media posts, and emails. But just as each of us has varying levels of empathy, not every leader is equally empathic. So is a lack of natural empathy a showstopper when it comes to expressing and benefitting from empathic communications? No. The good news is that all leaders (even those who are not naturally empathic) can communicate messages of empathy as powerfully as they convey messages of unity and accountability. During challenging times, the most effective leadership communications are ones that deliver attention, acknowledge distress, demonstrate care, and — not necessarily at first, but eventually — take appropriate action to mitigate the situation or at least provide comfort. This article offers four touchpoints to focus on in your communications.
How to Build Resilience to ShameJul 30, 2022
Today’s hustle culture claims “unearned” pleasure is shameful. But there are ways to resist this cultural response.
Separating Yourself from the Pack | Hidden Brain MediaJul 18, 2022
Have you ever gotten into a heated argument about politics? Maybe you’ve said something you're not proud of during game night with friends, or booed the opposing team at a sporting event. Psychologist Mina Cikara studies what happens in these moments — when our mindset shifts from “you and me” to “us and them.” This week on the show, Mina shares the profound ways that becoming a part of a group shapes our thoughts, feelings and behaviors.
Resonance: How to Open Doors For Other PeopleJul 18, 2022
Opening doors for other people is a critical concept to understand in life. Read this article to learn more about how to show people that you care.
Empathy is a skill. Here's how to cultivate itJul 18, 2022
"Empathy is something like a muscle: left unused, it atrophies; put to work, it grows."
How to Feel Better NakedJun 21, 2022
Whether you want to find joy in your body, or just greater self-acceptance, these four strategies from psychologists and activists — and, yes, nudists — might help.
What’s Your Listening Style?Jun 3, 2022
We may have learned that we need to let people speak without interrupting but taking turns talking does not truly denote listening. And unintentionally hijacking conversations to advise, inject humor, empathize, prioritize efficiency, or insert ourselves into the speaker’s narrative is often done with good intentions, but may instead disrupt the human connection we think we’re forging. Recognizing when to shift out of our habitual styles and consciously apply alternative styles of listening and responding may allow for more effective and meaningful interactions.
Learn Street Epistemology To Deal With Difficult People at Work | Code CapsuleMay 28, 2022
Learn the street epistemology conversation technique and how you can apply it at work.
The Endgames of Bad Faith CommunicationApr 13, 2022
How to live with your regretsFeb 20, 2022
Regret is often seen as undesirable, but it’s a crucial emotion in helping us develop. How do we harness its powerful lessons?
Top Performers Have a Superpower: HappinessFeb 20, 2022
Employee well-being and happiness are surprisingly powerful predictors of performance.
Micromanipulation: The Covert Tactic That Narcissists Use in Arguments to Reassert ControlFeb 11, 2022
Here’s how to recognize its damaging effects.
Sympathy vs. Empathy in UXJan 17, 2022
The majority of UX professionals practice sympathy instead of empathy for their users.
Your sense of right and wrong is interwoven with your personality | Psyche IdeasJan 7, 2022
Personality traits such as agreeableness and openness to experience can help explain differences in moral judgment
Sensitive People Bring a Major Happiness Habit to the WorkplaceJan 6, 2022
Hint: It’s all to do with empathy.
Dissecting the Bloodthirsty Bliss of Death MetalFeb 12, 2021
Fans of this violent music report feelings of transcendence and positive emotions; psychologists want to learn why.
Interpersonal Reactivity Index - Psychology | Eckerd CollegeFeb 12, 2021
[vc_row type=”full_width_background” full_screen_row_position=”middle” column_margin=”default” column_direction=”default” column_direction_tablet=”default” column_direction_phone=”default” scene_position=”center” top_padding=”48″ text_color=”dark” text_align=”left” row_border_radius=”none” row_border_radius_applies=”bg” overflow=”visible” overlay_strength=”0.3″ gradient_direction=”left_to_right” shape_divider_position=”bottom” bg_image_animation=”none”][vc_column column_padding=”no-extra-padding” column_padding_tablet=”inherit” column_padding_phone=”inherit” column_padding_position=”all” column_element_direction_desktop=”default” column_element_spacing=”default” desktop_text_alignment=”default” tablet_text_alignment=”default” phone_text_alignment=”default” background_color_opacity=”1″ background_hover_color_opacity=”1″ column_backdrop_filter=”none” column_shadow=”none” column_border_radius=”none” column_link_target=”_self” column_position=”default” gradient_direction=”left_to_right” overlay_strength=”0.3″ width=”1/1″ tablet_width_inherit=”default” animation_type=”default” bg_image_animation=”none” border_type=”simple” column_border_width=”none” column_border_style=”solid”][vc_column_text] Interpersonal Reactivity...
Sunday Firesides: Don’t Confuse Niceness With KindnessJan 31, 2021
We often use the words “nice” and “kind” synonymously. But it can be helpful to distinguish between the two qualities, as Eric Kapitulik, Marine special operator and leadership coach, does. Being nice means making people feel good in the short-term. Behaving politely. Offering a smile and a pat on the back. Exchanging pleasantries. Avoiding arguments. […]
The Practical Guide to Empathy Maps: 10-Minute User PersonasSep 24, 2009
A step-by-step process to creating an empathy map as a lean user persona with examples from leading design tool - UXPin.
Being Empathetic Is Easier when Everyone’s Doing ItOct 24, 2002
Research is revealing the key to motivating empathy—and making it stick
energy
How AI Labs Are Solving the Power Crisis: The Onsite Gas Deep DiveJan 1, 2026
Bring Your Own Generation, Sayonara Electric Grid, Turbines vs. Recips. vs. Fuel Cells, Why Not Build More CCGTs?, Onsite Power TCO
Energy Predictions 2025Dec 13, 2025
Printable pdf. It’s been a few years since I wrote a broad post on energy, so I’m providing an update in one easy to read place. More detailed specific posts on energy are here. If you want t…
This power source is 15,000 ft below the ground | Bill GatesSep 6, 2025
A company called Fervo Energy is hoping to supercharge geothermal power with an innovative new approach to turning the earth’s heat into power.
Liberté, égalité, radioactivitéSep 4, 2025
France built forty nuclear reactors in a decade. Here's what the world can learn from it.
Building Ultra Cheap Energy Storage for Solar PVAug 23, 2025
Solar still needs storage cheap enough to move energy between seasons. I have been working on a startup to do this for the last two years.
The precious 'white gold' buried in the EarthJul 24, 2025
Naturally occurring "white hydrogen" lies in vast reservoirs beneath our feet – now the gold rush of the clean energy era is beginning.
Stellantis abandons hydrogen fuel cell developmentJul 16, 2025
Fast filling times are seductive, but they don’t compensate for H2’s many drawbacks.
Exclusive: Tulum Energy rediscovered a forgotten hydrogen tech and used it to raise $27M | TechCrunchJul 8, 2025
Results of a 20-year-old curiosity now form the basis of Tulum, a startup that has attracted significant investor attention.
Age of Invention: All Fired UpJul 5, 2025
The mystifying, centuries-long failure of the coal briquette
Record-Breaking Results Bring Fusion Power Closer to RealityJul 3, 2025
Breakthroughs from two rival experiments, Germany’s Wendelstein 7-X and the Joint European Torus, suggest the elusive dream of controlled nuclear fusion may be within reach
Firewood in the American Economy: 1700 to 2010 - Marginal REVOLUTIONJul 1, 2025
Despite the central role of firewood in the development of the early American economy, prices for this energy fuel are absent from official government statistics and the scholarly literature. This paper presents the most comprehensive dataset of firewood prices in the United States compiled to date, encompassing over 6,000 price quotes from 1700 to 2010. […]
How Batteries Are Making the Electrical Grid More ReliableJun 19, 2025
To operate reliably, the US electrical grid needs to balance supply and demand: to make sure, at any given moment, that the amount of electricity demanded by homes, businesses, and factories is equal to the amount being supplied by nuclear reactors, gas turbines, and other types of power plants.
Evari turns to rocket science to solve problems with heat pumpsMay 13, 2025
The startup emerged from stealth with a goal of extending the range of EVs while also eliminating fossil fuels from home heating.
Big gas turbine manufacturers aren’t ready to bet on the AI boomMar 18, 2025
Demand for gas power-generation hardware is surging, but the few companies that make it are reluctant to scale up.
Data center energy consumptionMar 17, 2025
Steam networks - Works in ProgressMar 13, 2025
New York's skyscrapers soar above a century-old steam network that still warms the city. While the rest of the world moved to hot water, Manhattanites still buy steam by the megapound.
How We Got the Lithium-Ion BatteryNov 29, 2024
It took decades of research, performed around the world, before a practical lithium-ion battery was possible.
Developers drop out of Appalachian hydrogen hub over strict carbon emission capsNov 25, 2024
Several of the initial development partners balk at the terms of a federal tax credit that places restrictions on the amount of carbon in the hydrogen production process.
Why Are Cooling Towers Shaped Like That? — Practical EngineeringNov 7, 2024
[Note that this article is a transcript of the video embedded above.] This is not smoke. And this isn’t a smoke stack (at least not the kind we normally think of). It serves a totally different purpose at a power plant than smoke stacks whose job is moving combustion products high into the air, al
SlashdotOct 24, 2024
Marvel Fusion breaks ground on $150M laser facility in ColoradoOct 18, 2024
The ATLAS facility will use three ultra-high intensity lasers to initiate the same reaction that powers the Sun and stars.
The Secret, Magical Life Of LithiumJul 14, 2024
One of the oldest, scarcest elements in the universe has given us treatments for mental illness, ovenproof casserole dishes and electric cars. But how much do we really know about lithium?
The US experienced staggering growth in solar and wind power over the lastJun 11, 2024
With gains in solar and wind, 22 percent of the nation's electricity comes from renewables, bringing the country closer to its climate goals.
Chart: US sets new record with $71B in clean energy investmentJun 10, 2024
In the first quarter of this year, private investors poured 40% more money into clean energy and electric vehicles than they did in Q1 2023.
Coal, the dirtiest fossil fuel, is preparing for a long goodbyeMar 24, 2024
Output hit a record last year, and producers expect a future where coal will be required to balance renewable energy for decades.
Turning abandoned mines into batteries | IIASAFeb 6, 2024
A novel technique called Underground Gravity Energy Storage turns decommissioned mines into long-term energy storage solutions, thereby supporting the sustainable energy transition.
The One Climate Policy All 2024 Candidates Support Is Actually TerribleFeb 3, 2024
Ethanol is a comically inefficient form of solar energy—and a toxic one. Putting regular solar panels on some of that land would be better.
Electric Hydrogen is the green hydrogen industry’s first unicornOct 4, 2023
Investors have historically been skeptical of green hydrogen. High production costs, expensive infrastructure builds, competition with batteries and
The underbelly of electric vehiclesAug 22, 2023
Mining and processing the minerals needed to meet the growing demand for EVs can be costly for workers, local communities and the environment.
Scientists Made An Artificial "Cloud" That Pulls Electricity From AirJul 24, 2023
A new prototype compatible with a wide range of materials could grab a continuous supply of renewable energy from the air.
‘It was an accident’: the scientists who have turned humid air into renewabJul 24, 2023
Tesla speculated electricity from thin air was possible – now the question is whether it will be possible to harness it on the scale needed to power our homes
Magnetohydrodynamic Drive – Silent Water PropulsionJul 24, 2023
DARPA, the US Defense Advanced Research Projects Agency, is now working on developing a magnet-driven silent water propulsion system - the magnetohydrodynamic (MHD) drive. The primary reason is to develop silent military naval craft. Imagine a nuclear submarine with an MHD drive, without moving parts, that can slice through the water silently. No moving parts
This startup wants to make nuclear energy huge by making its reactors tiny—Jul 13, 2023
“In one week [in March], we sold more nuclear power plant contracts than any company in all of history,” says @LastEnergy CEO Bret Kugelmass.
I’m in Wyoming to celebrate the next nuclear breakthroughMay 7, 2023
Bill Gates writes about visiting Kemmerer, Wyoming, the future site of the fourth-generation Natrium nuclear power plant being designed by TerraPower.
Thoughts on Electricity Storage | Turkeys in the DesertMar 13, 2023
Energy storage – both home-scale and utility-scale – has become more relevant as the use of renewable energy for electricity generation proliferates. It is particularly topical recently, as the Inflation Reduction Act includes tax credits specifically targeting energy storage projects. Energy storage (chemical batteries, pumped hydro storage, gravity-based batteries) transports electrical energy through time, from generation earlier to consumption later. Storage works when the aggregate amount of energy generated is adequate to satisfy aggregate demand, but there is a mismatch in the timing of supply and demand. Some basic fact patterns are: Demand More Variable than Supply. As discussed in previous posts, there is both a daily and a seasonal cycle to electricity usage. If a region’s generation is dominated by traditional base-load type power plants with high and constant generation capacity (nuclear, coal) or are quickly dispatchable (natural gas), there are two basic choices for meeting demand: either have enough generation capacity to cover the peak usage at any time, or marry sub-peak generation with the ability to store energy when demand is below supply and then release it for use when demand exceeds capacity. Supply More Variable through time than Demand. Supply can also be more variable than demand. Solar, for instance, generates electricity only during an 8-14 hour period during the daytime. The daily cycle of electricity usage varies but not this much: there is meaningful demand in the evening and through the night. So a grid with significant solar power will likely need to store daytime-generated energy to be deployed at night. Unplanned Intermittancy. A special case of supply variability: power outages due to storms or maintenance, or unfavorable weather conditions for solar / wind, can cause generation to temporarily fall short of demand. This post will illustrate, using real-world electricity demand data and overly simplistic supply models (with no unplanned outages or weather intermittency) what profile of storage could be useful: how much energy capacity is needed and how frequently it is used. In all cases there will be a real-world question of whether it is more efficient to deploy capital in storage solutions or more generation capacity to compensate. A complete answer to that question is beyond the scope of this post, but my analysis provides some indication of feasibility of different architectures. Here’s a summary: In the constant generation model of traditional generation plants, it appears feasible to use battery storage to substitute for power generation that would cover the last ~10 - 20% of peak demand. Somewhat frustratingly, the strong variability of demand still means that this implies generation capacity that is adequate to supply more than 1.5 times the aggregate energy needs. In a variable generation model like predominantly solar,1 there is some benefit in warm climates with mild winters from aligning higher summer generation with higher summer demand. But substantial storage is needed (probably more than is economical) to manage the day-night cycle. As with fixed generation however, there is so much variability of demand over time that the generation capacity measured in GWh needs to be a reasonable multiple of aggregate energy consumed. A combination, heavily weighted towards fixed, can get benefits of both fixed generation (no daily cycle) and solar (more generation with higher summer demand). This post ignores wind power, which is too unpredictable for me to handle at this time. ↩
Biden Expected to Move Ahead on a Major Oil Project in AlaskaMar 12, 2023
The decision would allow an enormous $8 billion drilling project in the largest expanse of pristine wilderness in the United States.
Super Hot Sand Could Help Us Store Renewable EnergySep 9, 2022
It’d be much cheaper than lithium battery storage.
When Coal First Arrived, Americans Said 'No Thanks'Aug 9, 2022
Back in the 19th century, coal was the nation's newfangled fuel source—and it faced the same resistance as wind and solar today
Why clean energy needs financial engineeringJun 27, 2022
Plus: Hydrogen pipelines, Advanced Market Commitments, and what made solar energy cheap
The Quest for Fusion EnergyJun 19, 2022
Despite repeated claims that the prospects for commercialization have never looked brighter, the stark reality is that practical fusion-based electric power remains a very distant prospect.
A new heat engine with no moving parts is as efficient as a steam turbineApr 15, 2022
Engineers at MIT and NREL have developed a heat engine with no moving parts that is as efficient as a steam turbine.
The happiest number I've heard in ages - by Bill McKibbenJan 13, 2022
Doing the right thing makes other right things happen
Gravity Could Solve Clean Energy’s One Major DrawbackJan 12, 2022
Finding green energy when the winds are calm and the skies are cloudy has been a challenge. Storing it in giant concrete blocks could be the answer.
Oil System Collapsing so Fast it May Derail Renewables, Warn French GovernmOct 24, 2021
Forget ‘peak oil’. Nafeez Ahmed reveals how the oil and gas industries are cannibalising themselves as the costs of fossil fuel extraction mount
How a Laser Fusion Experiment Unleashed an Energetic Burst of OptimismAug 17, 2021
Even scientists who were skeptical of work at the National Ignition Facility called the results a success.
SoftBank’s first bet in energy storage is a startup that stacks concrete blAug 15, 2019
So far, most large investments in energy storage have gone to companies building lithium-ion batteries. SoftBank's newest bet changes that.
Renewables generated more electricity than coal for the first time in US hiMay 4, 2019
King Coal is being dethroned, and faster than forecast.
How Much Energy Can You Store in a Stack of Cement Blocks?Sep 12, 2018
It's not a trick question: You can make a battery out of concrete by storing gravitational potential energy.
As Economics Improve, Solar Shines in Rural AmericaJul 29, 2018
Declining costs have helped some of the country's smallest electricity providers expand their use of solar in highly innovative ways
This technology could fundamentally change our relationship to electricityJul 26, 2018
An “operating system” for power could double the efficiency of the grid.
Nuclear Zeitgeist Part 1: A Reactor PrimerOct 24, 2007
AI takes a lot of power. Why did we stop it again? Today's deeper dive on Nuclear power and why I think it will power AI in the future.
entity-resolution
What actually is a legal entity?Feb 26, 2026
Part 1 in a series on the fundamentals of legal entity identity data. Think about the last time you signed a contract. If it was done in a work context, perhaps it was a supplier agreement, a SaaS …
Streamlining E-commerce: Leveraging Entity Resolution for Product MatchingMay 28, 2024
How Google figures out the price of a product across websites
Practical Guide to Entity Resolution — part 1Dec 18, 2020
This is part 1 of a mini-series on the topic of entity resolution
entropy
Understanding Entropy in Statistics: A Simple GuideAug 25, 2025
Entropy quantifies uncertainty in data, forming the mathematical foundation for decision trees, feature selection, and information theory applications.
What does Entropy Measure? An Intuitive ExplanationJan 22, 2023
Entropy can be thought of as the probability of seeing certain patterns in data. Here’s how it works.
eols
How to sunset a featureJul 5, 2022
When it's time to call a feature quits, how should you announce end of life? Here's how to sunset a feature while minimizing customer impact.
When should you kill a product? 4 lessons from GitLab’s subscription changeMar 15, 2021
Earlier this year, GitLab got rid of a paid starter offering, trimming its product catalog from 4 subscription tiers to 3 — here's why it makes sense.
erlang
What Is RabbitMQ? An Intro To The Message Queuing TechMay 22, 2020
What is RabbitMQ? Find out in our introduction to the powerful Message Queue tech.
ethereum
Ethereum’s consensus layer elliptic curveOct 13, 2025
Introduction to the BLS12-381 curve used in Ethereum's consensus layer. Focus on concrete calculations to make the curve more tangible.
Why Ethereum access matters in automation - DataconomyMay 3, 2025
Automation is now a baseline in digital operations. From scheduled token distributions to smart contract orchestration, systems are expected to run with
Home | Solidity Programming LanguageFeb 27, 2024
Solidity is a statically-typed curly-braces programming language designed for developing smart contracts that run on Ethereum.
Home | ethereum.orgFeb 27, 2024
Ethereum is a global, decentralized platform for money and new kinds of applications. On Ethereum, you can write code that controls money, and build applications accessible anywhere in the world.
ethics
Judgment is an exercise in discretion: circumstances are everything | Aeon EssaysAug 17, 2022
A virtuous person respects the rules. So when should the same person make a judgment call and break or bend them instead?
Ashoka’s ethical infrastructure is carved into India’s rocks | Aeon EssaysJul 10, 2020
Being good is hard. How an ancient Indian emperor, horrified by the cruelty of war, created an infrastructure of goodness
etl
ETL: The Key to Unlocking the Power of Big DataJun 29, 2022
A comprehensive guide to understanding the ETL process and how it can help you manage and analyze large data sets efficiently
Talend - A Cloud Data Integration Leader (modern ETL)Feb 6, 2021
Talend Data Fabric offers a scalable, cloud-independent data fabric that supports the full data lifecycle, from integration and quality to observability and governance.
evolutionary
What are evolutionary algorithms? - DataconomyMar 26, 2025
Evolutionary algorithms are optimization techniques inspired by natural evolution, solving complex problems through processes like selection, adaptation, and mutation.
Evolutionary AlgorithmsFeb 19, 2020
Evolutionary algorithms are an unsupervised learning alternative to neural networks that rely on fitness functions instead of trained nodes for evaluation.
[P] A Visual Guide to Evolution StrategiesOct 29, 2017
380 votes, 20 comments. 2.9M subscribers in the MachineLearning community. Beginners -> /r/mlquestions , AGI -> /r/singularity, career advices ->…
excel
https://www.statology.org/how-to-effectively-work-with-excel-files-in-python-pandas-vs-openpyxl-guide/Mar 19, 2025
In this article, we'll explore when and why you might want to use openpyxl directly, and understand its relationship with pandas.
Microsoft Introduces Python in Excel: Bridging Analytical Prowess with FamiAug 24, 2023
The realm of data analysis has long struggled with seamlessly integrating the capabilities of Python—a powerful programming language widely used for analytics—with the familiar interface and functionalities of Microsoft Excel. This challenge has hindered efficient decision-making and data processing for professionals who rely on both tools for their tasks. The need for a cohesive solution that bridges this gap is evident. Existing attempts to merge Python and Excel have often been cumbersome and involved complex setups. Analysts resorted to using external scripts, third-party tools, or manual data transfers between the two environments. These methods introduced inefficiencies, raised security concerns, and
7 useful Excel formulas and functions for PPCAug 24, 2022
Use these tips to quickly analyze performance data and identify high-impact PPC optimizations that will move the needle.
✚ How to Make Frequency Trails in ExcelDec 27, 2021
Also known as ridgelines, use the method to create a compact visualization where you can easily identify major patterns and outliers.
Read Excel files with Python. 1000x Faster.Jul 3, 2021
In this article, I’ll show you five ways to load data in Python. Achieving a speedup of 3 orders of magnitude.
Turn Excel Into a Beautiful Web Application Using StreamlitJun 26, 2021
Present your data as an interactive dashboard web application using the python library Streamlit
LAMBDA: The ultimate Excel worksheet function - Microsoft ResearchApr 23, 2021
Microsoft Excel the programming language is evolving. With the recent release of LAMBDA, users can now define new functions in the program’s formula language. Learn about the capability & its role in the transformation of spreadsheet formulas.
Use Python to Design Automation Tools for Excel UsersApr 18, 2021
Design of Excel Automation Tools for Sales Analytics ready to be used by your colleagues without any prior knowledge of Python
Forget coding, you can now solve your AI problems with ExcelJan 16, 2021
Microsoft Excel is a powerful tool for learning the basics of data science and machine learning.
exclusivity
Harvard's Sendhil Mullainathan on behavior and poverty | Harvard MagazineJul 19, 2022
A behavioral economist’s fresh perspectives on poverty
Pliny the Elder: A case study in scarcity marketing - MarketplaceJul 18, 2022
Pliny the Elder inspires beer hunters around the world to search for just one bottle.
excuses
Declined invitations go over more graciously when lack of money is cited instead of lack of time – new researchAug 5, 2021
Several studies found that using the excuse ‘I don’t have time’ when declining an invitation harmed the relationship with the person who extended it.
These Apology Critics Want to Teach You How to Say SorrySep 25, 2018
No more excuses for bad apologies.
execution
It’s the Hottest Restaurant in America. It’s Probably in Your Mall’s Parking Lot. How Did This Happen?Feb 17, 2026
It started with a cheese pull.
Lessons Learned Shipping 500 Units of my First Hardware ProductFeb 4, 2026
Building in consumer hardware as a software engineer
How Accurate Are Learning Curves?Dec 24, 2025
We’ve talked several times on this substack (as well as in my book), about the learning curve, the observation that costs of a produced good tend to fall by some constant proportion for every cumulative doubling of production volume: go from 100 to 200 units, costs might fall by 15%, go from 200 to 400, another 15%, and so on.
The Coffee WarehouseDec 23, 2025
Starbucks ascended as a "third space." Maybe it should run like a 3PL.
Do Things that Don't ScaleAug 15, 2025
The Importance of the Semantic Layer by @ttunguzAug 13, 2025
Data without context is noise masquerading as insight.
How many times have you sat in a board meeting where the marketing team reports a 40% increase in qualified leads while sales insists conversion has plummeted?
Both teams are right, and both are wrong. Marketing measures MQLs based on email engagement and website behavior. Sales defines qualified leads as prospects with confirmed budget and timeline. The same company, the same quarter, two different realities.
Task estimation: Conquering Hofstadter's LawMay 13, 2025
How to turn your time estimates into reliable predictions — and communicate them.
First-Time Silicon Success PlummetsMar 27, 2025
Number of designs that are late increases. Rapidly rising complexity is the leading cause, but tools, training, and workflows need to improve.
Frustration Tolerance: An Essential for Surviving Large OrgsJan 20, 2025
In leadership and life, ambitions often outpace our ability to consistently execute on them. A hidden hurdle that trips up many is their level of “frustration tolerance.” This is particularly true in large organizations that are literally designed to frustrate ambitions and agendas.
In this piece, I unpack the critical
Binstack: Making a maximal multi-dimensional decisionJan 4, 2025
Binstack is a technique for selecting the "single most impactful" solution when there are multiple, incomparable dimensions to evaluate.
How I ship projects at big tech companiesNov 12, 2024
What I think about when I'm lead engineer on a project
Goodhart's Law Isn't as Useful as You Might ThinkOct 27, 2024
Goodhart's Law is useless. It tells you about a phenomenon, but it doesn't tell you how to solve it. We look at how organisations actually prevent Goodhart's Law, and illustrate this with Amazon's Weekly Business Review as an example.
How Sprinting Slows You Down: A Better Way to Build SoftwareJun 7, 2024
Sprints promise to accelerate development, but often do the opposite. Check out this alternative approach to building software.
Danaher: Masterful Capital Allocation and Lean Manufacturing, CombinedApr 29, 2024
How Danaher combines Lean manufacturing with masterful capital allocation to build a remarkable manufacturing company in the United States.
The Art of Decision-MakingApr 22, 2024
Your life choices aren’t just about what you want to do; they’re about who you want to be.
Why You’ve Never Been In A Plane Crash—AsteriskFeb 1, 2024
The United States leads the world in airline safety. That’s because of the way we assign blame when accidents do happen.
What’s an Operational Definition Anyway?Oct 4, 2023
Two principles on collecting data, from the field of Statistical Process Control. As with most principles in SPC, this is both simpler and more important than you might think.
Akin's Laws of Spacecraft DesignAug 27, 2023
I've been involved in spacecraft and space systems design and development for my entire career, including teaching the senior-level capstone spacecraft design course, for ten years at MIT and now at the University of Maryland for more than three decades.
Fast · Patrick CollisonJul 7, 2023
Welcome to Hillstone, America's Favorite Restaurant | Bon AppétitFeb 26, 2023
It’s never going to win a James Beard Award. Or try to wow you with its foam experiments or ingredients you’ve never heard of. But it is the best-run, most-loved, relentlessly respected restaurant in America. And, oh yeah, Danny Meyer, David Chang, and Shaq all agree. Welcome to Hillstone.
17 DevOps Metrics To Measure SuccessNov 5, 2022
Photo by Carl Heyerdahl on Unsplash Productivity in software development has always been tricky to...
Be critical or be corruptedSep 24, 2022
I recently rewatched "The Wire". The show's central theme is about counter-productive metrics and their corrupting influence on institutions. I've noticed hints of this pattern in software engineering, too
The Anatomy of an Amazon 6-pagerSep 3, 2022
A deep dive into writing detailed planning docs from one of the most successful companies in the world
Cost Per Reasonable Decision (CPRD)Jul 19, 2022
Note: With the arrival of my son, I’m slowing down on the blogging. Give me a couple months (or more sleepless nights), and I’ll be back…
2016 scrum guide usJul 19, 2022
A value creation checklistJul 19, 2022
This project you’re working on, the new business or offering, what sort of value does it create? Who is it for? What mindset and worldview and situation?Is it paid for by organizations or individua…
How to go fasterJul 18, 2022
How do you get to market faster than the competition? How do you become more efficient without violating the laws of physics? How do you save time, money and frustration? It all comes down to decis…
David Nicholas WilliamsJul 18, 2022
The Art of the OKRJul 18, 2022
Read the updated post, Art of the OKR Redux instead! A lot has changed since 2014…. Original “Art of the OKR” below, for archival purposes: I wrote a book on…
Super successful companiesJul 18, 2022
I spent some time recently thinking about what companies that grow up to be extremely successful do when they are very young. I came up with the following list. It’s from personal experience and...
What is an OKR? Objectives, key results and how to use themJul 18, 2022
Understanding what an Objective and Key Result is, why it's different from traditional goal setting, and what impact a good OKR will can have is vital.
Execution is EverythingJul 18, 2022
I have wanted to write a review of John Doerr’s book Execution is Everything since it was first published five months ago. Some of you are probably saying right now: “That’…
The Tricks Used by Pilots, Surgeons & Engineers to Overcome Human ErrorJul 18, 2022
When Germanwings Flight 4U9525 crashed into the French Alps in March it did not take investigators long to determine the likely reason: Co-pilot Andreas Lubitz had allegedly been suffering from depression and may have crashed the plane as a means to commit suicide, taking hundreds of people along with him. But that doesn’t tell the […]
Scaling Engineering Teams via RFCs: Writing Things DownJul 18, 2022
I have recently been talking at small and mid-size companies, sharing engineering best practices I see us use at Uber, which I would recommend any tech company adopt as they are growing. The one topic that gets both the most raised eyebrows, as well the most "aha!" moments is the
What is Kanban? A Quick Guide to Visualized ImprovementJul 18, 2022
What is Kanban? Learn more about how the kanban methodology of visualizing work in progress can accelerate your team’s improvement efforts and minimize waste
How Much Does It Cost To Make A Hit Song?Jul 6, 2022
We go step-by-step through the making of Rihanna's song "Man Down." Bringing in top songwriters and producers costs tens of thousands of dollars. Trying to turn the song into a hit costs much more.
Report templates for fewer status meetings | Folding BurritosJul 5, 2022
Report templates, and guided steps to create them, so Product Managers spend less time in status meetings and more time out of the building
SEO Checklist 2015 - Elvin Web MarketingJul 5, 2022
Complete SEO Checklist to increase your website search rankings in 2015. Check off each item with the quick list or follow the comprehensive guide...
Why Key Results Need to Be ResultsJul 5, 2022
If you know nothing about OKRs, please start here: Art of the OKR. Or buy my book, Radical Focus. I think it’s rather good. An Objective is the goal you wish to achieve in a g…
The Design Sprint — GVJul 5, 2022
The sprint is a 5-day process for answering critical business questions through design, prototyping, and testing with customers. Learn to run your own sprints, and read about our book on sprints.
How Paypal and Reddit faked their way to tractionJul 5, 2022
When “faking it before making it” actually works
Using OKRs to Increase Organizational LearningJul 5, 2022
This is a draft chapter from the second edition of Radical Focus. It’s coming… eventually. Hopefully soonish. Leave your wishlist for other topics you’d like it to cover, and enjoy the sneak peek! …
12 signs youre working in a feature factoryJun 29, 2022
Failure mode and effects analysisJun 28, 2022
Failure mode and effects analysis is the process of reviewing as many components, assemblies, and subsystems as possible to identify potential failure modes in a system and their causes and effects. For each component, the failure modes and their resulting effects on the rest of the system are recorded in a specific FMEA worksheet. There are numerous variations of such worksheets. An FMEA can be a qualitative analysis, but may be put on a quantitative basis when mathematical failure rate models are combined with a statistical failure mode ratio database. It was one of the first highly structured, systematic techniques for failure analysis. It was developed by reliability engineers in the late 1950s to study problems that might arise from malfunctions of military systems. An FMEA is often the first step of a system reliability study.
Make Operations Your Secret Weapon - Here’s HowJun 28, 2022
Etsy COO Linda Kozlowski knows an operations leader is critical to the success of a company. Here, she sheds light on the most mysterious role in the C-suite — and how startups can hire and empower the right COO for their company.
Steve Blank Fear of Failure and Lack of Speed In a Large CorporationJun 28, 2022
I just spent a day working with Bob, the Chief Innovation Officer of a very smart large company I’ll call Acme Widgets. Bob summarized Acme’s impediments to innovation. “At our company we have a cu…
Growth Hacking ChecklistJun 28, 2022
“My biggest surprise was when we launched the Facebook app and it didn’t go viral” -Startup CEO quote “The month after we ...
What Process Mining Is, and Why Companies Should Do ItJun 25, 2022
There have long been a few fundamental challenges associated with business process management. But a relatively new and innovative technology, process mining, has the capability to revitalize process management in firms where it has lain fallow for years. One problem involves the creation of “current state” processes — a description of how a business process is being performed today. In business process reengineering, organizations are primarily interested in an improved “to be” process, so often they have little interest in exploring “as is,” or how the process is currently performed. The other general problem with process management is the lack of connections between business processes and an organization’s enterprise information systems. Enter process mining. Process mining software can help organizations easily capture information from enterprise transaction systems and provides detailed — and data-driven — information about how key processes are performing. It creates event logs as work is done: an order is received, a product is delivered, a payment is made. The logs make visible how computer-mediated work is really happening, including who did it, how long it takes, and how it departs from the average. Process analytics create key performance indicators for the process, which enables a company to focus on the priority steps to improve.
The 9 Habits of Ultra-Fast IterationsJun 23, 2022
One sector has an unfair number of elite product minds. These 9 habits are their underlying behaviors that result in product success.
Evidence Based SchedulingJun 23, 2022
Software developers don’t really like to make schedules. Usually, they try to get away without one. “It’ll be done when it’s done!” they say, expecting that such a brave, funny zinger will reduce t…
Use OKRs to Set Goals for Teams, Not IndividualsJun 23, 2022
A popular goal-setting framework, Objectives and key results (or OKRs) are an effective method for planning and measuring success on a team level. They fall short, however, when companies attempt to apply them to individual contributors. Setting individual OKRs generally leads to goals that are either not true indications of meaningful progress or that are easily gameable. Instead, individual contributors should be assessed based on the extent to which their work contributes to team goals that add real value to the company and its customers.
OKRs – The Ultimate Guide to Goal Setting in 2020 - noupeJun 13, 2022
The acronym OKR stands for Objectives and Key Results. Much has been written on the topic over the years yet they still remain a mystery for
A case study in early-stage startup executionMar 27, 2022
Before joining Wave four years ago, I spoke to a former employee about his experience. He said something that has stayed in my memory ever since: “Wave is really good at execution, so by working at Wave, you’ll learn how to execute very well.” Now that I’ve been here a while, I thought it would be good to write down what really good execution actually looks like in practice and the counterintuitive lessons I’ve learned along the way.
3 Practices That Set Resilient Teams ApartMar 16, 2022
New research reveals that how we perform work as a team contributes more to resilience than external stressors. On resilient teams, individuals feel responsible for energizing each other. This is in stark contrast to teams who are challenged by frustrating ways of working and fractured relationships. As we move into the third year of pandemic uncertainty, adopting three simple practices will help managers build more resilient — and re-energized — teams.
42 things I learned from building a production databaseNov 29, 2021
In 2017, I went to Facebook on a sabbatical from my faculty position at Yale. I created a team to build a storage system called Delos at the bottom of the Facebook stack (think of it as Facebook’s version of Chubby). We hit production with a 3-person team in less than a year; and subsequently scaled the team to 30+ engineers spanning multiple sub-teams. In the four years that I led the team (until Spring 2021), we did not experience a single severe outage (nothing higher than a SEV3). The Delos design is well-documented in two academic papers (in OSDI 2020 and SOSP 2021). Delos is currently replacing all uses of ZooKeeper at Facebook.
Speed as a HabitAug 6, 2021
All things being equal, speed will determine whether your company succeeds or not. Here's how to make it core to your culture.
Adam Savage on Lists, More Lists, and the Power of Checkboxes | WIREDAug 4, 2021
The 'Mythbusters' star and author of the new book 'Every Tool's a Hammer,' explains the magic of the colored-in checkbox.
The unreasonable effectiveness of just showing up everyday | TypesenseJul 17, 2021
When I first started working on Typesense six years ago, I set myself a simple rule: I shall write some code everyday before or after work. That’s it. No deadlines, no quarterly goals, no milestones. I did not have a choice really — I was about to get married and was already working full-time in a demanding role. As you can imagine, building a search engine from scratch is not a trivial undertaking, so that was my way of not having to deal with additional stress.
After-action Reviews: A Simple Yet Powerful ToolJul 14, 2021
This Nano Tool for Leaders offers guidance for creating a culture of continuous performance improvement and adaptive learning by systematically reviewing team successes and failures.…Read More
The Right Way to Ship Software | First Round ReviewJul 5, 2021
An open letter from a former Facebook and VMware engineering executive on how startups can best structure their release processes.
Moral CompetenceJan 7, 2021
Lessons learned in incident managementJan 6, 2021
How to Stop Endless Discussions with RFCsJan 4, 2021
When we find ourselves in endless debates where everyone defends their idea, we don't know how to handle the situation. We eventually find a way out, but what we need is an excellent system.
The difference between efficacy, effectiveness and efficiencyDec 10, 2020
Efficacy, effectiveness, efficiency… These terms sound confusingly similar. Commonly used in medical research, project management, and decision science, they are often mixed up in everyday conversations. If you’re in a hurry, here’s the difference: Efficacy means getting things done Effectiveness means doing the right things Efficiency means doing things right Sounds confusing? Don’t worry, I ... Read More
The Checklist Manifesto: How to Get Things Right: Gawande, Atul: 9780805091748: Amazon.com: BooksMay 15, 2020
The Checklist Manifesto: How to Get Things Right [Gawande, Atul] on Amazon.com. *FREE* shipping on qualifying offers. The Checklist Manifesto: How to Get Things Right
How OKRs can make you a better leaderApr 20, 2020
Leaders need to lead by example using OKRs, showing that they are equally as committed to successful outcomes as anyone on the front lines of the business.
The GIST Board — A New Way to Do Planning and Execution | HackerNoonFeb 27, 2019
Done right, GIST keeps the team, management and stakeholders aligned on the why (goals), what (ideas) and how (steps and tasks), and every task we execute is connected to a business goal. A full quarterly plan creates a GIST tree per goal:
Why Japan's Rail Workers Can't Stop Pointing at Things - Atlas ObscuraJan 19, 2019
A seemingly silly gesture is done for the sake of safety.
5 Concepts That Will Help Your Team Be More Data-DrivenNov 3, 2018
Data is invading every nook and cranny of every team, department, and company in every industry, everywhere. Developing the talent needed to take full advantage must be a high priority. Indeed, everyone must be able to contribute to improving data quality, interpreting analyses, and conducting their own experiments. It will take decades for the public education systems to churn out enough people with the needed skills — far too long for companies to wait. Fortunately, managers, aided by a senior data scientist engaged for a few hours a week can introduce five powerful “tools” that will help their teams start to use analytics to solve important business problems.
How One Hospital Improved Patient Safety in 10 Minutes a DayOct 31, 2018
Clinical and nonclinical staff at the Rotterdam Eye Hospital have improved patient care and raised staff morale at a very modest cost: 10 minutes a day and a special deck of cards. At the start of every shift, the team members get together for a brief “team-start.” Each team member rates his or her own mood as green (I’m good), orange (I’m okay but I have a few things I’m concerned about) or red (I’m under stress). The rest of the team doesn’t need to know that you’re under stress because you’re having a dispute with your landlord or you are worried about your ill toddler. How you feel, however, is important because it affects how you should be treated. Next, the team leader asks if there is anything in particular the team needs to know to work more effectively together that shift: For example, “Is there a delay in public transport so we can expect patients to be late for their appointments?,” or “Is there a patient with some kind of special need coming in?” Sharing the answers or results generated by the card questions and activities with the group ensures that the insights stick.
dbt Labs Blog | Learn from the experts | dbt LabsSep 29, 2018
Learn more about the data analytics industry, dbt Cloud and dbt Core, as well as company news and updates.
Strategy vs. TacticsAug 12, 2018
Strategy and tactics are two terms that get thrown around a lot, often used interchangeably. But what exactly do they mean, what is the difference, and why is it important? In this article, we look at the contrast between strategy and tactics, and the most effective ways to use each, whether you're trying to win a war, start a business, or reach any other important objective.
Running a Fine Dining Restaurant in a RecessionAug 24, 2006
How Eleven Madison Park survived the 2008 Global Recession ... and what this tells us about operating through the capital cycle.
exercise
Stop, Shop, and ScrollJan 6, 2026
Behind every influencer is an army of the influenced, many adrift in debt and mass-produced clutter. These are the stories of credit card debt and piles of mass-produced clutter.
44 TRX Band Workouts: Boost Your Fitness Routine TodayOct 5, 2025
Explore 44 TRX band workouts that might transform your fitness routine. From beginner to advanced, these moves may enhance strength and stability.
10,000 Pushups And Other Silly Exercise Quests That Changed My LifeOct 4, 2025
A few thoughts regarding my climb from 0 to 10,000 pushups in less than a year.
The Sunday Morning Post: Why Exercise Is a Miracle DrugAug 2, 2025
Plus: How to save 100 million lives with 1/400th of our income
Barry sanders million dollar strength coachJul 31, 2025
How Oklahoma State’s Rob Glass became irreplaceable to Cowboys football—without ever calling a single play
The Powerlifter Who Became a Professor and Changed the GameMay 31, 2025
Once known as “the world’s strongest woman,” Dr. Todd spent 50 years breaking records — and turning strength into a field of study.
The Deadlift Alternative That Works Your Whole Body at HomeMay 13, 2025
In today's world, having reliable at-home workout options isn't just convenient; it's practically essential.
A 105-Year-Old Japanese Doctor Reveals How to Reverse Aging and Stay 30 Years YoungerApr 28, 2025
Imagine feeling 30 years younger even when you’re 100. Sounds impossible, right? Dr. Hinohara proved otherwise. Meet Dr. Shigeaki Hinohara who was one of Japan’s most respected doctors and a global…
The squat secret: why this simple move is the key to long-term health – and how to improve yoursJan 12, 2025
Whether you want to lift weights in the gym or just get yourself on and off a chair, a good solid squat makes life so much easier. What can you do if yours needs work?
Podcast #1,048: The Swiss Army Knife of Fitness — How to Get Lean, Strong, and Flexible With Kettlebells AloneDec 18, 2024
What if there was one piece of fitness equipment that was affordable, didn’t take up much space, could get you both strong and flexible, and was fun to use? While that might sound too good to be true, my guest, Pat Flynn, would say you can find all those benefits in the old-school kettlebell. Pat, […]
A 20-Minute Workout to Keep Your Body LimberOct 25, 2024
Throwing your back out is often caused by stiffness in the upper spine. Here’s how to prevent future pain.
My New Favorite SquatJul 13, 2024
Looking for a new squat variation? Learn about the Hatfield squat and how it can help you build lower-body strength and overcome pain or discomfort.
Lifting Weights? Your Fat Cells Would Like to Have a Word.Apr 21, 2024
A cellular chat after your workout may explain in part why weight training burns fat.
How to Do the World's Greatest StretchApr 18, 2024
Dr. Aaron Horschig, DPT, of Squat University explains the intricacies of this widely-renowned mobility move.
DAREBEE - Fitness On Your Terms.Feb 10, 2024
2300+ FREE workouts, fitness programs, monthly challenges and training guides.
Exercise vs. Training: The Difference, and Why It MattersJan 31, 2024
Get on track to achieve your fitness goals by understanding the difference between exercise and training and why it matters.
This No-Equipment Upper-Body Workout Is Crazy Easy to Do At HomeMar 20, 2023
Upper body strength is almost as important as powerful legs when it comes to cycling.
How to Exercise More Day to Day: 7 Tips That Actually WorkMar 17, 2023
Try these easy ways to sneak exercise into your daily routine and improve your everyday health.
The five-minute fix: how to improve your fitness, strength and posture at super-quick speedJan 29, 2023
In the time it takes to make a cup of tea, you can build your core muscles, increase hip flexibility and stave off the effects of sitting at your desk all day
‘I’m a 68-Year-Old Trainer, and This Is My Go-To Core Exercise To Ease Back Pain and Improve Balance’Jan 15, 2023
A standing abs routine that anyone can do.
The 9-Minute Strength Workout - Well Guides - The New York TimesDec 21, 2022
Strength training is the key to flexibility, mobility, improved performance and lower injury risk.
The Planks You Should Be Doing (But Probably Aren't)Dec 21, 2022
As one-minute planks gave way to three-minute planks, and three-minute planks evolved into ten-minute planks, marathon plank-holding has become a calling card of sorts. " Being able to hold a traditional plank for 10 minutes isn't very functional for anything except just that," says Tier 4 trainer Josh Stolz. "Even Stuart McGill (a top authority and researcher of low back pain and function) recommends holding a plank for 10 seconds, tops, followed by a brief, 1-to-2 seconds-long relaxation of the muscles.
How to Perform 4 Kettlebell Exercises: An Illustrated GuideAug 22, 2022
Kettlebell exercises for beginners that will work your entire body and help with your regular strength training.
3 Robust Bodyweight Exercises to Train Every Muscle Fibre in Your BodyJul 18, 2022
Smash a full-body workout from the comfort of your home
3 Marvellous Full-Body Exercises I Wish I Had Started Way EarlierJul 5, 2022
Level up your strength, muscle mass, endurance, and functional fitness
Lower Back Pain: The Best Mobility Exercises to Stretch and Strengthen a Sore BackMar 17, 2022
Lower back pain from sitting at your desk for too long? Try these simple mobility moves.
This guy's workout routineMar 16, 2022
2.7K votes, 342 comments. 8.3M subscribers in the BeAmazed community. I bet you will /r/BeAmazed! A place to find and share amazing things
Yoga for Beginners: The Best Basic Stretches to Get You StartedJan 23, 2022
Yoga stretches are great for everything from pain relief to stress relief, and they’re really easy to work into your day. Yoga instructor Donna Noble explains how.
4 Glute Stretches You Should Do Every Day to Run Faster and Avoid InjuryJan 7, 2022
Your glutes are your primary source of power on the run. Show them a little love with these moves.
A Three-Part Stretch Your Hips Will LoveOct 10, 2021
Sometimes known as the “world’s greatest stretch,” this move gives tight hips relief
The Elliptical vs. the Treadmill: Which Is Better for You?Oct 8, 2021
Each cardio machine offers a little something different when it comes to toning and strengthening.
10 Best Stretches to Ease Your Lower Back Pain, According to TrainersSep 20, 2021
These exercises will bring you the relief you’ve been craving.
A Chest-Opening Stretch That Feels AmazingAug 30, 2021
Your pectoral muscles will thank you for this reset that brings relief from the 21st century lifestyle
This 10-Minute, At-Home Ab Workout Will Fire Up Your Entire CoreAug 30, 2021
All you need is an exercise mat to get started.
Are Squats Bad For Your Knees?Aug 25, 2021
Taking a look at the effects of compression, knees over toes, and deep squatting
6 Upright Abs Exercises That Will Absolutely Crush Your CoreAug 1, 2021
Get off the mat to give your abs a whole different type of challenge.
Over 60? Here Are 8 of the Best Exercises You Can DoJul 3, 2021
Fitness experts break down eight of the absolute best exercises to do if you're over 60 to maintain your independence and strength.
This 5-Move, No-Gym Workout Got Matt Damon Fighting Fit in His FortiesApr 20, 2021
Hollywood PT Jason Walsh reveals the back-to-basics workout that healed Jason Bourne's battered body
Your Guide To Building a Stronger Body — From a Personal TrainerFeb 26, 2021
Tested and proven exercise routines you can use to build your own strength
The Planks You Should Be Doing (But Probably Aren't)Dec 25, 2020
As one-minute planks gave way to three-minute planks, and three-minute planks evolved into ten-minute planks, marathon plank-holding has become a calling card of sorts. " Being able to hold a traditional plank for 10 minutes isn't very functional for anything except just that," says Tier 4 trainer Josh Stolz. "Even Stuart McGill (a top authority and researcher of low back pain and function) recommends holding a plank for 10 seconds, tops, followed by a brief, 1-to-2 seconds-long relaxation of the muscles.
The Minimalist’s Strength WorkoutDec 25, 2020
Five exercises that will guarantee you have the strength to adventure all weekend, well into your eighties.
Freestanding Handstand Push-Up Tutorial - YouTubeDec 25, 2020
Hey guys, after working for 3 months on this I can finally release it! I tried to make this tutorial as detailed as possible and keep it entertaining at the same time! I hope I've succeeded at doing this and wish everyone a lot of luck with their journey. Please thumbs up, subscribe and share it if you thought it was useful!
Special thanks to:
Joshua Naterman - https://www.youtube.com/user/slizzardman
Antranik - https://www.youtube.com/user/AntranikDotOrg
jokester (mmmr)
And all the people who reviewed it!
Check out https://www.reddit.com/r/bodyweightfitness/
Wrist warm-up: https://www.youtube.com/watch?v=mSZWSQSSEjE
**STAGES**
Stage 1:
Declined pike push-ups (strength work) 06:30
Frogstand (prior to strength work) 08:10
Yaad lean (skill work) 08:50
Ready for stage 2 when you can do:
Frogstand 30s
Tucked Yaad hold 2s
Stage 2:
Declined pike push-ups (strength work) 06:30
Tucked Yaad hold (skill work) 09:39
Ready for stage 3 when you can do:
Tucked Yaad hold 10s
Full Yaad hold 2s
Stage 3:
Declined pike push-ups (strength work) 06:30
Full Yaad hold (skill work) 10:16
Ready for stage 4 when you can do:
Full Yaad hold 10s
Stage 4:
Declined pike push-ups (strength work) 06:30
Full Yaad hold (skill work) 10:16
HeSPU negatives (skill work) 10:45
Ready for stage 5 when you can do:
Stable HeSPU negatives
Stage 5:
Declined pike push-ups (strength work) 06:30
Full Yaad hold (skill work) 10:16
HeSPU negatives (skill work) 10:45
Frogstand to HS (prior to strength work) 11:00
Ready for stage 6 when you can do:
Stable frogstand to HS
Stage 6:
Declined pike push-ups (strength work) 06:30
Full Yaad hold (skill work) 10:16
HeSPU negatives (skill work) 10:45
Full Yaad hold to HS (prior to strength work) 11:34
Ready for stage 7 when you can do:
Stable full Yaad hold to HS
Stage 7:
Freestanding handstand push-up
Chisel Your Core With This Glute And Hamstring WorkoutDec 25, 2020
If you want shredded abs, you can't overlook your hips and glutes
Incorporate Strength ExercisesDec 25, 2020
You don't need a gym membership to be ready for race season
Get Ripped with This No-Equipment 6-Move WorkoutJul 26, 2020
Use tempo and isometrics to improve your bodyweight routine
How Treadmill Running Differs from Running OutsideJun 1, 2020
Yes, the physiology and biomechanics of treadmill running are a little different. But how you feel about it is probably more important.
🔥 His work out routine is truly amazing.May 21, 2020
70K votes, 4.3K comments. 9M subscribers in the nextfuckinglevel community.
How I completely transformed my body in one year.Feb 19, 2020
And if I can do it, you definitely can.
How to Jump Rope Like a BoxerFeb 19, 2020
With our archives now 3,500+ articles deep, we’ve decided to republish a classic piece each Sunday to help our newer readers discover some of the best, evergreen gems from the past. This article was originally published in January 2019. When you think about boxers’ workouts — when you mentally run through all the real life […]
The Activation Drill You Need to Try Before Upper Body WorkoutsFeb 9, 2020
You won't be able to use much weight at all, but you'll still feel like Superman.
This Split Squat Hellset Blasts Every Single Leg Muscle In MinutesJan 29, 2020
Blend three kinds of Bulgarian split squats into one monstrous set for glute, quad, and hamstring gains.
10 Morning Exercises You Should Do When You Wake Up - Men's JournalDec 23, 2019
You don't need to bang out a whole morning workout, but morning exercises can increase blood flow and give you the boost you need to start the day.
The Dead Hang Delight: How This Quick Surprisingly Simple Exercise Can Change Your LifeOct 24, 2014
Would you like to strengthen your upper body and core muscles, while improving your flexibility and breathing? Here’s how to do it.
Know Your Lifts: DeadliftOct 24, 2008
Learn how to deadlift with proper form using our illustrated guide.
Leg Press Like a Pro: Tips Techniques and Mistakes to AvoidOct 24, 2003
As I’ve discussed in previous articles, I’ve been incorporating more machines into my weight training. A few months ago, I wrote about how I’m using leg extensions along with squats to build meaty quads. Lately I’ve been availing myself of another lower-body-building apparatus: the leg press machine. The leg press machine has the reputation of being […]
experience-maps
Customer Journey Mapping 101Nov 27, 2025
Mastering the Art of Customer Journey Mapping: A Step-by-Step Guide
experiments
Miller–Urey experiment - WikipediaOct 13, 2025
How to Run Smart Experiments When You Just Don’t KnowAug 20, 2025
How all good entrepreneurs run experiments at the earliest stages of a business, and how you can use this approach for your own career.
How to Take Bigger, Bolder Product Bets — Lessons from Slack’s Chief ProducMar 1, 2024
Seasoned product leader and Slack’s CPO Noah Desai Weiss shares the three-step framework he leans on to make quality product decisions with just the right amount of risk.
3 pitfalls of PPC experimentsJun 25, 2022
Knowing what to test and how to interpret the results based on nuances and oddities of experiments is an important skill for people, not automations.
ReforgeJun 13, 2022
You Are Solving The Wrong Problem | UX MagazineDec 19, 2020
When solving a difficult problem, re-ask the problem so the solution helps you learn faster.
Building our Centralized Experimental Platform | Stitch Fix Technology – MultithreadedDec 14, 2019
Running an A/B test is easy. Screwing up an A/B test is even easier.
Why This Opportunity Solution Tree is Changing the Way Product Teams Work - Product TalkDec 14, 2019
Have you heard? My new book Continuous Discovery Habits is now available. Get the product trio's guide to a structured and sustainable approach to continuous discovery. I’ve found a visual […]
Using Experiments to Launch New ProductsAug 30, 2019
Increasingly, companies are using experiments to guide them in their decision making—but many are still missing opportunities, or are failing to implement experiments well. When it comes to the rollout of new products, one particularly effective new kind of experiment involves randomizing the introduction of new products across a set of markets. Uber used this strategy before rolling out its Express Pool service, and Airbnb did the same before rollout out a new landing-page design. In both cases, the companies gathered data that allowed them to roll out their products with confidence that they would succeed—as indeed they did. Many companies, even those not in the tech sector, can benefit from this kind of experimentation, especially if they follow a few basic guidelines.
https://t.co/jaEWMYfgXr?ssr=trueJan 12, 2019
expressjs
Getting Started with Express.jsJan 12, 2022
Express is a minimal web server built on Node.js that provides essential functionality for delivering web applications to the browser and mobile devices...
Express - Node.js web application frameworkDec 17, 2021
How To Set Up An Express API Backend Project With PostgreSQL — Smashing MagazineDec 13, 2021
In this article, Chidi Orji will create a set of API endpoints using [Express](https://expressjs.com/) from scratch in ES6 syntax, and cover some development best practices. Find out how all the pieces work together as you create a small project using Continuous Integration and Test-Driven Development before deploying to Heroku.
Building a MERN stack simple blog site from absolute scratch ?Dec 3, 2021
Even a few years ago, web application development was not what it is today. Nowadays, there are so...
Building a Restful CRUD API with Node JS, Express, and MongoDBSep 1, 2021
Application Programming Interface is the abbreviation for API. An API is a software interface that...
When to use these Nodejs frameworks? Express, Koa, Nest, Socket.io, Meteor.Dec 18, 2020
According to the Node.js web survey report 2018, Node.js has increased developer productivity by 68%,...
fabric
Forget Egyptian cotton. The most luxurious sheets are made in AmericaJun 4, 2024
Boll & Branch just launched Summit Supima, a new luxury sheet set made from cotton sourced from a Texas cotton farm.
A Guide to the Most Common Fabric Patterns Used in Interior DesignFeb 19, 2020
From chevron to polka dots and beyond.
face-recognition
Facial features linked to stereotypes and social class perceptionFeb 29, 2024
Research shows that people are quick to form impressions of other people’s social class standing, which can have important consequences – but what specifically drives these impressions, and their relationship to judgements of harmful or advantageous stereotypes, has remained unknown.
A Face Search Engine Anyone Can Use Is Alarmingly AccurateMay 30, 2022
PimEyes is a paid service that finds photos of a person from across the internet, including some the person may not want exposed. “We’re just a tool provider,” its owner said.
Are You Better Than a Machine at Spotting a Deepfake?Mar 15, 2022
New research shows that detecting digital fakes generated by machine learning might be a job best done with humans still in the loop.
Computer Vision | Papers With CodeDec 21, 2020
**Facial Recognition** is the task of making a positive identification of a face in a photo or video image against a pre-existing database of faces. It begins with detection - distinguishing human faces from other objects in the image - and then works on identification of those detected faces. The state of the art tables for this task are contained mainly in the consistent parts of the task : the face verification and face identification tasks. ( Image credit: [Face Verification](https://shuftipro.com/face-verification) )
The Secret History of Facial RecognitionFeb 19, 2020
Sixty years ago, a sharecropper’s son invented a technology to identify faces. Then the record of his role all but vanished. Who was Woody Bledsoe, and who was he working for?
My life with face blindness: I spent decades unable to recognize people. Then I learned why.Aug 29, 2019
A journey toward seeing myself more clearly.
Spotting AI-generated facesDec 22, 2018
Computers can generate faces that look real. What a time to be alive. As it becomes easier to do so, you can bet that the software will be used at some point for less innocent reasons. You should p…
failure
Loot Drop - The Startup GraveyardFeb 7, 2026
Explore 925+ failed startups and learn from $32.5B+ in burned venture capital. Discover why they failed, their market potential, and how to rebuild them.
The Biggest Failure in a Century of Sneakers Is Now Complete. It’s Almost Unbelievable How We Got Here.Nov 28, 2025
In 103 years, there’s never been a flameout quite like this.
The 6 Forces of FailureApr 30, 2025
Sean Jacobsohn, founder of the Failure Museum, shares notable product failures and the lessons we can learn from them.
How Beautycounter Fell Apart, Sinking Almost $700 Million With ItJul 10, 2024
When the private equity firm Carlyle bought Beautycounter, the skin care brand that people sold at kitchen tables, everything changed.
Columbia's Last FlightMay 22, 2024
The inside story of the investigation—and the catastrophe it laid bare
From $1B to bankrupt: How private equity killed Beautycounter, the belovedMay 21, 2024
After selling to the Carlyle Group, the brand went from $1 billion to broke. Inside its rise and fall—and possible rise again.
Are you a “harbinger of failure”?Jul 16, 2023
An MIT study finds the same consumers tend to purchase failed products. Dubbed “harbingers of failure,” these buyers may provide new window into consumer behavior and behavioral economics.
Sundown products need love too 69ed2136fd36Jul 19, 2022
I worked in a video store for 25 years. Here’s what I learned as my industry died.Jul 19, 2022
Vox is a general interest news site for the 21st century. Its mission: to help everyone understand our complicated world, so that we can all help shape it. In text, video and audio, our reporters explain politics, policy, world affairs, technology, culture, science, the climate crisis, money, health and everything else that matters. Our goal is to ensure that everyone, regardless of income or status, can access accurate information that empowers them.
UserTesting BlogJul 18, 2022
Get the best insights into the latest trends and all things human insight, CX, UX , product, marketing and research on our blog.
Cavemen, Samurais and Fight Club on breaking through failure | Spikelab.org - Mentoring social entrepreneurs for impactJul 18, 2022
There's an increasing amount of talk around failure and the fear of it, but it's largely missing the point. Here's why
How to Fail at Almost Everything and Still Win BigJul 18, 2022
Don't set goals. Passion is bullshit. Mediocre skills are valuable. These are just a few of the unexpected truths you'll discover in Scott Adams' new book. Here are 10 more takeaways.
Winamp’s woes: How the greatest MP3 player undid itselfJul 18, 2022
15 years on, Winamp “still lives”—but mismanagement blunted its llama-whipping.
Everything Must Go: A Strategy for Store LiquidationJul 18, 2022
Closing stores requires a deliberate, systematic approach to price markdowns and inventory transfers. The result, say Ananth Raman and Nathan Craig, is significant value for the retailer and new opportunities for others.
The rise of the "successful" unsustainable companyJul 17, 2022
We're funding too many unsustainable companies.
Watching an acquirer ruin your company - by Jon ChristensenJul 4, 2022
What happens on the other side of the acquisition doesn't get much startup press
Failure mode and effects analysisJun 28, 2022
Failure mode and effects analysis is the process of reviewing as many components, assemblies, and subsystems as possible to identify potential failure modes in a system and their causes and effects. For each component, the failure modes and their resulting effects on the rest of the system are recorded in a specific FMEA worksheet. There are numerous variations of such worksheets. An FMEA can be a qualitative analysis, but may be put on a quantitative basis when mathematical failure rate models are combined with a statistical failure mode ratio database. It was one of the first highly structured, systematic techniques for failure analysis. It was developed by reliability engineers in the late 1950s to study problems that might arise from malfunctions of military systems. An FMEA is often the first step of a system reliability study.
Failing wellJun 28, 2022
Failure sucks. Nobody wants to fail. But in the start-up world, most people are doing just that. I'm not sure I've read much about "how" to fail, since failure is so depressing and negative. But I'm...
autopsy.io - Domain Name For Sale | Dan.comJun 28, 2022
I found a great domain name for sale on @undeveloped. Check it out!
Failure Is An Option: How To Unwind An Unsuccessful Startup The Right Way –Oct 28, 2021
Unwind An Unsuccessful Startup The Right Way - Many startups fail, but few founders prepare for unwinding. Find out how to do this & deal with investors.
There's a Giant Warehouse Full of Product Launches That FailedOct 14, 2021
Not open to the public, this expansive archive schools marketers in the art of pitchmanship
Tails, You Win · Collaborative FundDec 23, 2019
Steamboat Willie put Walt Disney on the map as an animator.
How to Overcome Your Fear of FailureAug 20, 2019
People are quick to blame themselves for failure. But not doing something because you’re afraid to get started isn’t going to help you grow. Here are four strategies to help you get over the hump. Start by redefining what failure means to you. If you define failure as the discrepancy between what you hope to achieve (such as getting a job offer) and what you might achieve (learning from the experience), you can focus on what you learned, which helps you recalibrate for future challenges. It’s also important to set approach goals instead of avoidance goals: focus on what you want to achieve rather than what you want to avoid. Creating a “fear list” can also help. This is a list of what may not happen as a result of your fear — the cost of inaction. And finally, focus on learning. The chips aren’t always going to fall where you want them to — but if you expect that reality going into an event, you can be prepared to wring the most value out of whatever outcome.
fakes
How dupes turned online shopping upside down | The VergeAug 5, 2025
Most of what we see online is a copy of something else. There’s a whole ecosystem of influencers who focus their content on findings dupes of something else, and brands hawking dupes as a marketing tactic. When everything is the same, who gets to claim ownership over ideas?
3 Famous Archeological Finds That Were Actually Hoaxes | TheCollectorJul 25, 2025
The history of archeological discovery is riddled with forgeries. Discover three famous archeological hoaxes and the lessons they teach us about discovery and deception.
Every Piece in This Exhibition Is a FakeJul 24, 2023
A new show at London's Courtauld Gallery will explore the value of counterfeit art
'Duped': Inside the Black Market for Illegal Temporary License PlatesJun 10, 2023
When a Harlem 20-something answered a Craigslist ad, he had no idea he was about to become a dealer of illegal ghost plates.
Inside the Delirious Rise of ‘Superfake’ Handbags (Published 2023)May 31, 2023
Can you tell the difference between a $10,000 Chanel bag and a $200 knockoff? Almost nobody can, and it’s turning luxury fashion upside down.
Tracking the Fake GitHub Star Black Market with Dagster, dbt and BigQuery | Dagster BlogMar 19, 2023
It's easy for an open-source project to buy fake GitHub stars. We share two approaches for detecting them.
The Case of the Disputed Lucian FreudSep 30, 2022
A collector thought he had bought a painting by the celebrated British artist. How far would he go to prove it?
The 1,000 Chinese SpaceX engineers who never existedSep 7, 2022
LinkedIn users are being scammed of millions of dollars by fake connections posing as graduates of prestigious universities and employees at top tech companies.
Inside the World of Investigators Who Know You’ve Faked Your DeathJul 10, 2022
‘Faking your own death is a full-time job, and I can guarantee you that if you slip up with even the slightest sign of life, we will find you’.
How Paypal and Reddit faked their way to tractionJul 5, 2022
When “faking it before making it” actually works
Reddit Was Built On Legions of Fake Accounts | The Mary SueJun 24, 2022
Reddit has never been a place where you could necessarily connect one user with one account. Parody accounts are commonplace -- to a fault if you ask some -- and there have been more than one fiasco involving users who pretend to be different people with different accounts; it's crazy. It's also extremely fitting. Why? Because when Reddit was first started, it was populated almost entirely with content submitted by fake users.
Welcome to the Era of Fake ProductsJun 13, 2022
Counterfeit goods have proliferated along with e-commerce. Here’s your primer on the growing world of fake products—and the forces working to combat them.
A True Story About Bogus Photos of People Making Fake NewsOct 18, 2021
A photographer set out to capture the misinformation producers in a small town in Macedonia. He wound up revealing uncomfortable truths about his own profession.
F is for FakeNov 9, 2020
How a dozen possibly fraudulent and forged Indigenous artworks left Texas and ended up on museum walls in Wyoming.
To Catch a Counterfeiter — The California Sunday MagazineAug 6, 2019
Nearly all the world’s counterfeits come from China. Pinkerton is on the case.
fallacies
17 Logical Fallacies Everyone Should KnowMay 11, 2025
This article examines 17 important logical fallacies in argumentation that everyone should know for better critical thinking.
67 Logical Fallacies Explained in 11 MinutesApr 11, 2024
Fallacies—notes Purdue's Writing Lab—'are common errors in reasoning that will undermine the logic of your argument. Fallacies can be either illegitimate arguments or irrelevant points, and are often identified because they lack evidence that supports their claim.
fanclubs-fandom
What Your Favorite Grocery Store Says About YouJul 10, 2025
Once a place of utility, the supermarket is now an object of obsession.
How Cornhole Went ProJun 22, 2024
It might be America’s most-played sport. Now it’s quietly becoming a TV success story.
The all-out revolt against Knitting.com helps explain boycotts at Reddit anOct 3, 2023
The knitting world rose up against corporate ownership—and displayed the power of online communities
Why Losing Bonds Sports FansFeb 3, 2021
A study on team loyalty among fans shows that club ranking plays an important role in how they identify with one another.
What Makes Someone a Fan?Sep 21, 2019
It’s more than just ticket sales. Rich Luker, a social psychologist, studies fandom and why, for example, someone might get a tattoo of their favorite team.
faqs
6 Customer Service Examples from Online RetailersFeb 16, 2023
Changing consumer expectations and advances in technology provide merchants the opportunity to test customer support options. Many reduce costs while improving shoppers' experiences.
Designing Effective FAQ PagesJul 18, 2022
Adding an FAQ page to your website? Here are some tips, strategies, and things to avoid when designing an effective FAQ page!
fascination
The 7 Triggers of FascinationApr 23, 2025
Wish to push the right "buy" buttons in your consumer's hearts and minds? Consider the 7 triggers of fascination.
How to sell to the 42 different archetypesJul 18, 2022
fashion
Why Levi’s is teaching high schoolers how to mend their clothesJan 14, 2026
The denim brand is launching a high school curriculum to teach students how to stitch up tears and replace buttons.
The Psychology of FashionDec 22, 2025
Leslie Jamison reviews “Dress, Dreams, and Desire,” a new book by the fashion historian Valerie Steele, and discusses the accompanying exhibition at the Museum at the Fashion Institute of Technology, and the place that clothing had in the works of Freud and Lacan.
Opinion | Everyone Wants High-Quality Clothes. That’s Become Its Own Trend.Dec 7, 2025
Being a smart consumer has never been easier. Influencers and the fashion industry are all taking advantage of that.
The Biggest Failure in a Century of Sneakers Is Now Complete. It’s Almost Unbelievable How We Got Here.Nov 28, 2025
In 103 years, there’s never been a flameout quite like this.
Inside Uniqlo’s Quest for Global DominanceSep 15, 2025
The brand conceives of itself as a distribution system for utopian values as much as an apparel company. Can it become the world’s biggest clothing manufacturer? Lauren Collins reports.
Shoes not only express our social roles, they also create them | Aeon EssaysJul 2, 2025
Shoes are deeply personal, literally moulded to our lives. But they create our social lives as much as express them
Buy All This, Look RichFeb 22, 2025
How Quince, the one-stop shop for everything from cashmere sweaters to caviar, seduced a generation of jaded shoppers.
Six Handbags - The Paris ReviewDec 17, 2024
“I lean close to the bag and inhale. I remember that the leather is baby-cow skin. I smell the earth, animal mortality, and the moment of my financial trauma.”
Why Prada is expanding production in Italy and its artisanal talentMay 11, 2024
'In the last six or seven years, with the extraordinary growth in knitwear, we decided to create an all-around industrial hub.'
Is Dr. Martens a fashion victim?May 4, 2024
Just three years after Dr. Martens' $5 billion IPO, the Docs boot brand is struggling and the CEO is stepping down. What went wrong?
This clever new tool will help you buy fewer clothesApr 15, 2024
Eileen Fisher has vowed to reduce overconsumption. Now, the brand is making good on its promise.
How to choose clothes for longevity, not the landfillMar 23, 2024
Buying cheap clothing online can be satisfying, but it comes with not-so-hidden environmental costs. When designer Diarra Bousso was growing up in Senegal, her family bought and created new outfits for longevity rather than on impulse — an intention she carries forth in her fashion tech brand. Outlining three sustainable principles, including crowdsourcing designs and limiting excess inventory, Bousso shows it's possible to decrease waste while increasing profit — and shares how to apply this wisdom across the fashion industry.
What’s the Status of Flaunting Your Status?Jan 16, 2024
In the world of the ultrawealthy, luxury is only quiet if you don’t know what to listen for.
How Glossier Made Effortlessness a Billion-Dollar BrandSep 18, 2023
In the influencer era, Emily Weiss built a beauty empire on hashtags, highlighter, and customer-led marketing campaigns.
From Forever 21 to Online Shopping, Why Fast Fashion Is So AddictiveJul 18, 2022
Research shows that the brain finds pleasure in the pursuit of inexpensive things, and high-street chains and online retailers sites alike are cashing in.
Payless punks fashionistas by opening a fake luxury store and inviting them to comment on its 'designer' shoesJul 18, 2022
Bargain shoe chain Payless recently took over a Santa Monica retail shop and turned it into Palessi, a luxury store selling their bargain shoes. Then they invited influencers to the…
It Costs $2.50 to Make Lipstick — Here’s Why You’re Charged So Much MoreJun 23, 2022
This is not a matter of "you get what you pay for."
Why So Many Luxury Brands Are Terrible at EcommerceMay 30, 2022
Until recently, a lack of digital prioritization and desire to control access have led to sub-par luxury ecommerce experiences. Many luxury brands are struggling to improve.
Spot the difference: the invincible business of counterfeit goodsMay 13, 2022
The long read: Selling cheap fakes of a successful product makes horribly good business sense. Is there any way to stop it?
Fast, Cheap, and Out of Control: Inside Shein’s Sudden RiseMay 9, 2022
The Chinese company has become a fast-fashion juggernaut by appealing to budget-conscious Gen Zers. But its ultralow prices are hiding unacceptable costs.
The Secret Psychology of Sneaker ColorsMay 24, 2021
You think they randomly choose those glaring shades of Nike, Adidas and New Balance? Think again.
Algorithm-Assisted Inventory CurationMay 15, 2021
Building the raw materials for personalization at scale
The fabric no one knows how to makeMar 20, 2021
Nearly 200 years ago, Dhaka muslin was the most valuable fabric on the planet. Then it was lost altogether. How did this happen? And can we bring it back?
The Row’s Beige AmbitionMar 9, 2021
Mary-Kate and Ashley Olsen grew up to make New York’s most desirable clothes. But can even perfection survive the pandemic?
Vestiaire Collective raises $216 million for its second-hand fashion platform | TechCrunchMar 3, 2021
Vestiaire Collective announced a new funding round. The company has raised $216 million, or €178 million — it has reached a valuation above $1 billion,
Sneakerheads have turned Jordans and Yeezys into an asset classFeb 27, 2021
When the pandemic presented a buy-low opportunity, one college dropout hit the road and filled his truck with $200,000 worth of kicks.
'Growing two times faster than the rest of the market': Inside L'Oreal's e-Nov 10, 2020
If e-commerce was a market for L’Oreal, then it would be the biggest in terms of market value, worth nearly €5 billion ($5.9 billion).
A Guide to the Most Common Fabric Patterns Used in Interior DesignFeb 19, 2020
From chevron to polka dots and beyond.
vumaasha/Atlas: Atlas: A Dataset and Benchmark for E-commerce Clothing ProdDec 23, 2019
Atlas: A Dataset and Benchmark for E-commerce Clothing Product Categorization - vumaasha/Atlas
Inside a Top-Secret Factory Where Scent Is MadeJul 25, 2019
A peek at the scientists who chemically engineer the scents behind numerous commercial products.
Dark Fashion - The Paris ReviewJan 9, 2019
Black is the color of formal clothing, of the cowed and of the law-abiding, of Romanticism, of wandering religious fanatics, of mourning and of tired workaday uniform.
Op-Ed | How Premium Mediocre Conquered FashionDec 10, 2018
Brands are giving the masses the illusion that they are consuming luxury, when in reality they are doing nothing of the sort, argues Eugene Rabkin.
Chanel shoes, but no salary: how one woman exposed the scandal of the French fashion industrySep 9, 2018
A new book by academic Giulia Mensitieri, laying bare the working conditions of stylists and young designers, has sparked controversy. Will it lead to improved conditions for those forced to work for clothes vouchers instead of cash?
How we grew from 0 to 4 million women on our fashion app, with a vertical machine learning approachApr 10, 2018
My name is Gabi (my bio), and I’m the CEO and co-founder of Chicisimo. We launched three years ago, our goal was to offer automated outfit…
Why Sephora merged its digital and physical retail teams into one departmenApr 8, 2018
Since the teams were combined, Sephora's customer profiles have been rebuilt to include 360-degree data that tracks in-store purchases, interactions with sales people, online browsing and online purchasing.
How we grew from 0 to 4 million women on our fashion app, with a vertical mMar 1, 2018
Three years ago we launched Chicisimo, our goal was to offer automated outfit advice. Today, with over 4 million women on the app, we want to share how our data and machine learning approach helped us grow. It’s been chaotic but it is now under control.
The French Perfumer Behind the Internet’s Favorite Fragrance Baccarat Rouge 540Sep 24, 2016
Francis Kurkdjian had a runaway hit with Baccarat Rouge 540. Now, at Parfums Christian Dior, he’s trying to make his mark on a storied fashion house.
fastapi
Beginner’s Guide to Deploying a Machine Learning API with FastAPIMar 27, 2025
In this guide, you will learn how to deploy a machine learning model as an API using FastAPI. We will create an API that predicts the species of a penguin based on its bill length and flipper length. Prerequisites Step 1: Set Up Your Environment Step 2: Prepare Your Machine Learning Model Step 3: Create […]
Deploy a Python FastAPI Application to RenderJun 27, 2024
Let's create a FastAPI app and deploy it to Render.
FastAPI Best Practices: A Condensed Guide with ExamplesApr 30, 2024
FastAPI is a modern, high-performance web framework for building APIs with Python, based on standard...
Beginner’s Guide to FastAPIOct 24, 2014
FastApi is a contemporary web framework designed for creating RESTful APIs with Python 3.8 or later.
fear
The rare disease that stops us feeling fearSep 25, 2025
Feeling fear is an evolutionary survival tactic. A small number of people have a rare condition that means they're not scared of anything. How do they live a life without fear?
The Roots of Fear: Understanding the AmygdalaNov 5, 2024
Treating anxiety, depression and other disorders may depend on the amygdala, a part of the brain that controls strong emotional reactions, especially fear. But a deep understanding of this structure has been lacking. Now scientists at the University of California, Davis have identified new clusters of cells with differing patterns of gene expression in the amygdala of humans and non-human primates. The work could lead to more targeted treatments for disorders such as anxiety that affect tens of millions of people.
Shari Liu: How babies think about danger | TED TalkFeb 6, 2024
Are babies oblivious to danger? It's not that simple, says cognitive scientist Shari Liu. Sharing surprising insights (and plenty of baby videos) from studies of early human development, Liu highlights the unexpected ways babies perceive and respond to risky situations — and what these findings could unravel about the inner workings of our minds.
The Weird Reason We're Afraid of ClownsMar 8, 2023
Our research shows that coulrophobia, or fear of clowns, is mainly triggered by being unable to understand their facial expressions.
The four horsemen of fearOct 5, 2022
All fears can be divided into four broad categories which psychologists refer to as the four horsemen of fear: bodily, interpersonal, cognitive and behavioral fears. And each of the four horsemen of fear can be addressed by applying simple strategies.
feature-engineering
How To Measure The Impact Of Features — Smashing MagazineDec 19, 2025
Meet TARS — a simple, repeatable, and meaningful UX metric designed specifically to track the performance of product features. Upcoming part of the Measure UX & Design Impact (use the code 🎟 IMPACT to save 20% off today).
Shapley Values Explained: Seeing Which Features Drive Your PredictionsDec 17, 2025
Learn what Shapley values are and how SHAP tools help explain machine learning predictions.
How to Analyze Features Using YellowbrickMar 4, 2025
In this article, we'll walk through the process of aggregating claims data to create meaningful provider features, visualize patterns using Yellowbrick's Parallel Coordinates, and explore other visualization tools available for feature analysis.
What is Dataset Distillation Learning? A Comprehensive OverviewJun 11, 2024
Dataset distillation is an innovative approach that addresses the challenges posed by the ever-growing size of datasets in machine learning. This technique focuses on creating a compact, synthetic dataset that encapsulates the essential information of a larger dataset, enabling efficient and effective model training. Despite its promise, the intricacies of how distilled data retains its utility and information content have yet to be fully understood. Let’s delve into the fundamental aspects of dataset distillation, exploring its mechanisms, advantages, and limitations. Dataset distillation aims to overcome the limitations of large datasets by generating a smaller, information-dense dataset. Traditional data compression methods
18 Data Profiling Tools Every Developer Must KnowJun 5, 2024
Analytics, management, and business intelligence (BI) procedures, such as data cleansing, transformation, and decision-making, rely on data profiling. Content and quality reviews are becoming more important as data sets grow in size and variety of sources. In addition, organizations that rely on data must prioritize data quality review. Analysts and developers can enhance business operations by analyzing the dataset and drawing significant insights from it. Data profiling is a crucial tool. For evaluating data quality. It entails analyzing, cleansing, transforming, and modeling data to find valuable information, improve data quality, and assist in better decision-making, What is Data Profiling? Examining
Basis Functions: Simple Definition - Statistics How ToMay 28, 2024
Types of Functions > Basis functions (called derived features in machine learning) are building blocks for creating more complex functions. In other
Permutation Feature Importance from ScratchApr 24, 2024
Understanding the importance of permutations in the field of explainable AI
A Practical Guide to Data Normalization in RApr 3, 2024
Introduction Data normalization is a crucial preprocessing step in data analysis and machine learning workflows. It helps in standardizing the scale of numeric features, ensuring fair treatment to all variables regardless of their magnitude. In ...
Planning poker - WikipediaOct 20, 2023
Planning poker, also called Scrum poker, is a consensus-based, gamified technique for estimating, mostly used for timeboxing in Agile principles. In planning poker, members of the group make estimates by playing numbered cards face-down to the table, instead of speaking them aloud. The cards are revealed, and the estimates are then discussed. By hiding the figures in this way, the group can avoid the cognitive bias of anchoring, where the first number spoken aloud sets a precedent for subsequent estimates.
Why is Feature Scaling Important in Machine Learning? Discussing 6 FeatureAug 19, 2023
Standardization, Normalization, Robust Scaling, Mean Normalization, Maximum Absolute Scaling and Vector Unit Length Scaling
A practical introduction to sequential feature selectionFeb 16, 2023
A gentle dive into this unusual feature selection technique
PacktPublishing/Python-Feature-Engineering-Cookbook-Second-Edition: PythonDec 25, 2022
Python Feature Engineering Cookbook Second Edition, published by Packt - PacktPublishing/Python-Feature-Engineering-Cookbook-Second-Edition
python-data-science-handbook/scikit/SciKit-Feature-Engineering.ipynb at master · bjpcjp/python-data-science-handbookFeb 7, 2022
Sourced from O'Reilly ebook of the same name.
scikit-learn/63_preprocessing.ipynb at master · bjpcjp/scikit-learnJan 16, 2022
Updates in progress. Jupyter workbooks will be added as time allows. - bjpcjp/scikit-learn
The 5 Feature Selection Algorithms every Data Scientist should knowMay 5, 2021
Bonus: What makes a good footballer great?
Why you should always use feature embeddings with structured datasetsFeb 11, 2021
A simple technique for boosting accuracy on ANY model you use
[1605.09782v6] Adversarial Feature LearningFeb 4, 2021
The ability of the Generative Adversarial Networks (GANs) framework to learn generative models mapping from simple latent distributions to arbitrarily complex data distributions has been...
Recursive Feature Elimination (RFE) for Feature Selection in PythonJun 1, 2020
Recursive Feature Elimination, or RFE for short, is a popular feature selection algorithm. RFE is popular because it is easy to configure and use and because it is effective at selecting those features (columns) in a training dataset that are more or most relevant in predicting the target variable. There are two important configuration options when using RFE: the choice…
Feature Engineering: Data scientist's Secret Sauce ! - DataScienceCentral.comMay 15, 2020
originally posted by the author on Linkedin : Link It is very tempting for data science practitioners to opt for the best known algorithms for a given problem.However It’s not the algorithm alone , which can provide the best solution ; Model built on carefully engineered and selected features can provide far better results. “Any intelligent… Read More »Feature Engineering: Data scientist's Secret Sauce !
Know Your Data: Part 1 - KDnuggetsDec 23, 2019
This article will introduce the different type of data sets, data object and attributes.
How to find Feature importances for BlackBox Models?Dec 14, 2019
Permutation Importance as a feature selection method
Labeling, transforming, and structuring training data sets for machine learAug 22, 2019
The O’Reilly Data Show Podcast: Alex Ratner on how to build and manage training data with Snorkel.
The 5 Feature Selection Algorithms every Data Scientist should knowAug 7, 2019
This post is about some of the most common feature selection techniques one can use while working with data.
The Hitchhiker’s Guide to Feature ExtractionMay 21, 2019
168 votes, 13 comments. 2.2M subscribers in the datascience community. A space for data science professionals to engage in discussions and debates on…
A Feature Selection Tool for Machine Learning in PythonAug 30, 2018
Using the FeatureSelector for efficient machine learning workflows
Feature Engineering with TidyverseJun 8, 2018
Stay up-to-date on the latest data science and AI news in the worlds of artificial intelligence, machine learning, deep learning, implementation, and more.
Best Practices for Feature EngineeringMay 12, 2018
Unsure how to perform feature engineering? Here are 20 best practices and heuristics that will help you engineer great features for machine learning.
Understanding Feature Engineering (Part 3) — Traditional Methods for Text DApr 9, 2018
Traditional strategies for taming unstructured, textual data
Understanding Feature Engineering (Part 2) — Categorical DataApr 9, 2018
Strategies for working with discrete, categorical data
Understanding Feature Engineering (Part 1) — Continuous Numeric DataApr 9, 2018
Strategies for working with continuous, numerical data
A Beginner’s Guide to Data Engineering — Part I – Robert Chang – MediumFeb 6, 2018
Data Engineering: The Close Cousin of Data Science
[D] A Comparison of Six Methods for Missing Data ImputationDec 27, 2017
2.9M subscribers in the MachineLearning community. Beginners -> /r/mlquestions , AGI -> /r/singularity, career advices -> /r/cscareerquestions…
features-benefits
Optimally Suboptimal: Behavioral-Economic Product FeaturesJul 22, 2025
Booking travel online feels like shopping in an Indian bazaar: a deluge of options, no credible information, aggressive hawkers (“recommendations” and “targeted ads”), and hours of frantic search that end with purchasing something more out of exhaustion than conviction. Online travel booking is not unique in offering this miserable experience. Buying on Amazon feels like a similar sand trap. But why is that? Poor product management? A more provocative but perhaps more accurate answer is that the
Planning poker - WikipediaOct 20, 2023
Planning poker, also called Scrum poker, is a consensus-based, gamified technique for estimating, mostly used for timeboxing in Agile principles. In planning poker, members of the group make estimates by playing numbered cards face-down to the table, instead of speaking them aloud. The cards are revealed, and the estimates are then discussed. By hiding the figures in this way, the group can avoid the cognitive bias of anchoring, where the first number spoken aloud sets a precedent for subsequent estimates.
A New Approach to Feature RequestsJul 19, 2022
A few months ago, I got this email from a customer: It would be wonderful if there was a way to tag/assign forwarded emails to specific task lists within client projects. The “email forwards” secti…
This Is All Your App Is: a Collection of Tiny DetailsJul 19, 2022
Fair warning: this is a blog post about automated cat feeders. Sort of. But bear with me, because I'm also trying to make a point about software. If you have a sudden urge to click the back button on your browser now, I don't blame you. I don't often talk
Neil Patel's Digital Marketing BlogJul 18, 2022
Your #1 resource for digital marketing tips, trends, and strategy to help you build a successful online business.
Feature vs ProductJul 18, 2022
When you understand the difference between a feature and a product, designing that successful product will be easier.
Babe Ruth and Feature ListsJul 6, 2022
Prioritized lists are essential for product managers, right? Yes, but be careful. Ken Norton illustrates why.
How to sunset a featureJul 5, 2022
When it's time to call a feature quits, how should you announce end of life? Here's how to sunset a feature while minimizing customer impact.
12 signs youre working in a feature factoryJun 29, 2022
How to build B2B recommendation engines from competitor’s alternativesJun 28, 2022
Without driving yourself crazy
Top 10 Reasons for Weak Product | Silicon Valley Product GroupJun 25, 2022
In my last article I discussed the top reasons for slow product, and here I wanted to highlight the top reasons for weak product. I am defining weak product here as product that fails to meet its objectives and provide new and expanded sources of revenue and/or growth for your company. Lack of product vision. ...
Guide to Product Planning: Three Feature BucketsJun 24, 2022
In the spirit of capturing some of the observations that I find myself repeating, I’m adding this one to the mix tonight. Unlike the previous two, this is really a piece of concrete advice f…
The Problem with Feature BranchesJun 21, 2022
As more companies strive to deliver software faster it becomes clear what legacy processes are...
Features Tell, But Benefits Sell - Help ScoutJun 14, 2022
Founders and marketers must go beyond selling products, and instead sell what their product will allow customers to do.
federated-learning
Federation Architecture Overview - BlueskyMay 7, 2023
Soon, we’re launching a sandbox environment for federation. In advance, we want to share some technical details about our design decisions.
Edge 285: A Recap Of Our Series About Federated LearningApr 25, 2023
A summary of the topics discussed in the last 8 weeks.
A Quick Start on Your Journey to Federated LearningDec 10, 2022
Adapting federated learning to your own datasets
Automated reasoning at Amazon: A conversationAug 9, 2022
To mark the occasion of the eighth Federated Logic Conference (FloC), Amazon’s Byron Cook, Daniel Kröning, and Marijn Heule discussed automated reasoning’s prospects.
Introduction to Federated LearningNov 29, 2020
Federated learning means enabling on-device training, model personalization, and more. Read more about it in this article.
Federated Learning using PyTorch and PySyft | LearnOpenCVJun 1, 2020
A gentle introduction to federated learning using PyTorch and PySyft with the help of a real life example.
MIT Technology Review on LinkedIn: A little-known AI method can train on your health data without threatening…Mar 9, 2020
This little-known method could very well be the answer to the greatest obstacle facing artificial intelligence's adoption in health care. (from March)
feedback
How to coach your team (without making them defensive)Feb 4, 2026
When I give honest feedback, I don’t want people to argue with me. Here's a simple technique I use so my direct reports are more likely to listen with an open mind.
When Expressing Gratitude to Employees, Timing MattersNov 29, 2024
Extensive research has indicated the benefits of showing gratitude to those around you, including your colleagues or employees. However, a new study suggests that the timing of these expressions can make a big difference. Through two experiments and an analysis of a top hospital’s intensive care units, researchers found that when you express gratitude to others before they engage in a distressing task it helps counteract some of the negative emotions associated with the task. Expressing gratitude early also makes employees more likely to persist through difficulty and bounce back and be resilient following failure. The authors suggests ways to show gratitude meaningfully and create a culture where your employees feel their work is seen, supported, and valued.
How to give a senior leader feedback (without getting fired)Nov 24, 2024
There’s a right and wrong way to proceed. Here’s how to increase the chances your leader listens and takes action--while reducing the chance they feel threatened.
How to Ask for the Feedback You Really NeedMay 16, 2024
When we ask for feedback on our work, we often get poor-quality feedback that’s not useful or that makes us feel attacked or defensive. Part of the reason is in how we’re asking for feedback. Most requests are too generic, too open, and too late. The result is that you’re more likely to get a heap of opinion rather than a helping of insight. Instead of saying, “I’d love it if you could provide some feedback,” try setting the other person up to add more value by being more prescriptive about what you’re looking for. This article discusses a three step process for getting more constructive feedback that supports your growth, strengthens your relationships, and accelerates your career.
Stand Out by Giving Feedback the Right WayMar 15, 2023
Most managers suck at giving feedback — it’s too infrequent and not actionable enough.
How to Talk with Your Team About the Elephant in the RoomJan 27, 2023
If your team feels “stuck,” the problem might involve issues that are difficult to discuss — conflict between two team members, for example, or an underperforming employee. To address these issues head-on, leaders must learn the art of framing a conversation so people can organize their thoughts, feelings, and experiences to come to a solution. This article offers a five-step process around framing, and two examples of how it can help bring “undiscussables” into the light.
How to Be Resilient in the Face of Harsh CriticismNov 5, 2022
Most of us have been “feedsmacked” at some point in our life. In the midst of a meeting, an innocent walk down the hallway, or a performance review, someone delivers a verbal wallop that rocks us to our psychological footings. These situations are so tough to handle because we all have two fundamental psychological needs: safety (perceived physical, social, or material security) and worth (a sense of self-respect, self-regard or self-confidence). Critical feedback feels traumatic because it’s often interpreted as a threat to these needs. Fortunately, there are four skills that will help you reduce the perceived threat in the moment. First, collect yourself. You might breathe deeply and slowly or notice your feelings. Then, seek to understand the feedback. Ask questions. Ask for examples. Get curious. Next, take the time you need to recover before you evaluate the feedback. Lastly, examine what you were told, scouring for the kernels of truth. That’s where the learning and development comes from. Being caught off-guard with feedback isn’t fun, but it doesn’t have to be traumatic if you use these four skills.
An Old Diagnosis: The Common ScoldAug 23, 2022
The "common scold," recognized in England for centuries is still with us. Although such a person is not described in the psychiatric literature, I describe his/her principal elements here.
How Great Leaders Respond to Negative Criticism in the Digital AgeJul 19, 2022
Corporate leadership today is more public than ever before thanks to digital communication and the web. The status quo has been upended by the ease with
Have the Courage to Be DirectJul 18, 2022
It’s time to get past the human tendency to avoid conflict-causing topics.
Book Review: Turn the Ship Around! How to Create Leadership at Every LevelJul 18, 2022
I just had the pleasure of reading David Marquet's book, Turn the Ship Around!: A True Story of Turning Followers into Leaders*, and I have been encouraging everyone I see
How to Deliver Constructive Feedback in Difficult SituationsJul 18, 2022
Thoughtful, empathetic language can make or break your business relationships
Identify Leaders By Giving People Assignments - Brad FeldJul 18, 2022
As the Boulder Startup Community evolved, I started to become inundated with people who wanted to get involved. Some of these were locals while others where people looking to move to Boulder, or who had recently moved here. Some where people known to me while others were new relationships. As the momentum, size, impact, and reach […]
Be a Minimally Invasive ManagerJul 18, 2022
It’s not your job to carry the ball, but to run interference for those who do.
Beginner's Guide to Arguing ConstructivelyJul 18, 2022
How to turn arguments from vicious battles into productive dialogues.
Why criticism lasts longer than praiseJul 5, 2022
Most of us are subjected to insults, sarcastic comments or bad feedback in our everyday lives. But we weren't built to deal with torrents of criticism.
What’s Your Listening Style?Jun 3, 2022
We may have learned that we need to let people speak without interrupting but taking turns talking does not truly denote listening. And unintentionally hijacking conversations to advise, inject humor, empathize, prioritize efficiency, or insert ourselves into the speaker’s narrative is often done with good intentions, but may instead disrupt the human connection we think we’re forging. Recognizing when to shift out of our habitual styles and consciously apply alternative styles of listening and responding may allow for more effective and meaningful interactions.
What You’re Saying When You Give Someone the Silent Treatment - ostracismMar 29, 2021
Social ostracism has been a common punishment for millennia. But freezing someone out harms both the victim and the perpetrator.
Constructive criticism: how to give and receive feedbackDec 18, 2020
Whether in our personal or professional lives, we are constantly giving and receiving feedback. Some of the feedback is subtle, often unconscious, and some of it is proactive. Being able to receive and to offer constructive feedback is an essential skill in building meaningful social relationships. In addition, research suggests that meaningful feedback is crucial ... Read More
Giving Feedback to Someone Who Hasn’t Had It in YearsFeb 19, 2020
If you work with someone who’s gone too long without feedback and want to help them grow, you’ll need to take an empathetic approach to the conversation. Start by asking questions to clarify their motives. If a leader is constantly forcing their ideas on others, for example, you might start with a question like, “How were you hoping the team would respond to your idea?” Once you are aware of your colleague’s intentions, you need to separate them from their actions in order to have a productive discussion. Acknowledge their original intent, but follow up by stating the negative impact their action actually had on you. Pointing out the gap between what they meant to do and what happened, will help them recognize patterns of unwanted behaviors. Remember that the feedback will be hard to hear — so give them space to feel upset, remind them you are telling them to help them grow, and encourage them to focus on the future.
Our 6 Must Reads for Cutting Through Conflict and Tough ConversationsJul 25, 2019
Big ideas, strong-willed characters, impossible deadlines and close quarters — if you wrote out a recipe for conflict, it might bear an uncanny resemblance to the high-stakes, pressure-cooker environment of a startup. We spoke with top engineers, seasoned managers and experts in human behavior to share their experience-tested wisdom on conflict mediation and management in rapidly scaling companies.
How to Deliver Constructive Feedback in Difficult SituationsMar 28, 2019
Thoughtful, empathetic language can make or break your business relationships
4-Part Nonviolent Communication (NVC) - PuddleDancer PressMar 12, 2019
Express and receive communication empathically using the four-part Nonviolent Communication process developed by Marshall B. Rosenberg, Ph.D.
5 mistakes we all make with product feedbackOct 3, 2016
It rarely makes sense to take product feedback from all users and it never makes sense to get it all at once. Five fixes feedback for your product.
figma
Top 6 Figma Competitors that Product Teams UseJul 15, 2024
Who competes with Figma in the design universe? Meet top Figma competitors and learn what they offer. See what we got for you.
25 Fantastic Tutorials For Learning FigmaFeb 24, 2023
From UI basics to more advanced techniques, with the help of these tutorials, you'll be able to learn and master Figma in no time.
Why Figma Wins - kwokchainJul 17, 2022
Companies are a sequencing of loops. While it’s possible to stumble into an initial core loop that works, the companies that are successful in the long term are the ones that can repeatedly find the next loop. However, this evolution is poorly understood relative to its existential impact on a company’s trajectory. Figma is a … Continue reading Why Figma Wins →
Figma UI Design Tutorial: Get Started in Just 24 Minutes! (2022) - YouTubeJul 8, 2022
✅ Check out our FREE FACILITATION TRAINING and learn the 5 things you can do to become a top 1% facilitator and earn 6 figures while doing it! 👉https://go.ajsmart.com/start?utm_source=youtube&utm_medium=channel-video&utm_campaign=081220
________
Do you want to learn Figma but don’t know where to start? Well, if you follow this step-by-step tutorial, it will only take you 24 minutes to learn all the basics you need to know to start designing apps and websites in Figma.
In this Figma tutorial for beginners, UX designer Amr guides you through Figma’s interface and tools following a very valuable principle to start mastering this tool. “If you want to learn the basics, you should copy other designs”.
Do you have more questions about Figma or the next steps you should take? Leave them in the comments below ⬇️
✅ If you want to learn about facilitation and workshopping join our FREE FACILITATION COMMUNITY where hundreds of workshop facilitators gather to share their resources, insights and experiences 👉 https://www.skool.com/facilitatorclub
Also if you haven't already, subscribe to our Youtube channel for weekly UX / UI / Career / and Design Sprint videos: ❤️ https://www.youtube.com/AJ&Smart?sub_confirmation=1 😉
🛠Free resources mentioned in this video:
1️⃣ Figma website - https://www.figma.com/
2️⃣ Figma resources (Food delivery app UI template) - https://www.figma.com/community/file/852455074698003039
3️⃣ Free Figma icons - https://www.figma.com/resources/assets/evericons-for-figma/
4️⃣ Unsplash (Free images) - https://unsplash.com/
⏰ Video Timestamps
0:00 Intro
0:22 Advantages of using Figma
1:22 How to log in into figma.com
1:36 Why you should copy other designs
Start of Tutorial
2:28 How to start a project from a TEMPLATE
5:10 Interface OVERVIEW
5:27 Create a FRAME
6:38 SHAPE and COLOR creation
8:28 CORNER RADIUS adjustment
10:12 Create a CIRCLE
12:25 How to use an ICON
14:28 How to paste IMAGES
15:32 How to use TEXT
18:39 BUTTON UI
21:39 Conclusion
22:32 Next steps
Thanks for watching!
----
#Figma #FigmaTutorial #UXDesign
📣 FREE FACILITATION TRAINING! 👉 https://go.ajsmart.com/start
We’ve JUST launched a new 1-hour facilitation training, where we’ll teach you:
✅How we landed facilitation gigs with the world’s best companies (Google, Twitter, LEGO & more!)
✅How to successfully build & facilitate ANY workshop, even when you’re not a subject-matter expert
✅How to become a high-paid facilitator in 90 days or less, using our special ‘5-1-6 method’.
Interested? This training is available for a limited time only, so unlock it now and start watching!
If you want to stay ahead of the UX game, level up your career, and be in the know on the nerdiest, ‘techiest’ things, sign up for our FREE newsletter here: 📩 👇
📝 https://aj-smart.ck.page/21100f1c73 👀
Want more? Join 200,000+ people subscribing to our AJ&Smart YouTube, LinkedIn and Instagram channels for free content to help you and your team do more valuable work.
AJ&Smart is the #1 design sprint firm in the world, the official Design Sprint training partner with Jake Knapp inventor of the google design sprint and partner of choice for the world's most successful brands.
Figma UI Design Tutorial: Get Started in Just 24 Minutes! (2021)
https://youtu.be/FTFaQWZBqQ8
An inside look at how Figma ships productJul 5, 2022
Designing the fastest way to keep an entire company up-to-date on our roadmap using a Coda doc and a bit of social engineering.
Figma Crash CourseFeb 23, 2022
Deep dives into powerful Figma features. Skip the basics and learn prototyping, auto-layout, systems, and illustration with your instructor, Pablo Stanley.
Figma-Linux/figma-linux: Figma is the first interface design tool based in the browser, making it easier for teams to create software. Join us in https://t.me/figma_linuxJan 29, 2022
Figma is the first interface design tool based in the browser, making it easier for teams to create software. Join us in https://t.me/figma_linux - Figma-Linux/figma-linux
Login | FigmaJan 23, 2022
Everything Developers Need To Know About FigmaNov 3, 2020
Figma is a design tool that is rapidly gaining popularity and becoming more common in companies around the world. Unlike most design software, Figma is free and browser-based so developers can easily access the full design files making the developer handoff process significantly smoother. With article, Jurn van Wissen teaches developers who have nothing but a basic understanding of design tools everything they need to know to work with Figma.
Speed Up Your Workflow With Figma PluginsOct 21, 2020
There are hundreds of Figma plugins available as of today, yet the Figma plugin search functionality is pretty basic and at times it can be very difficult to find the right plugin for a certain task. Today, Abel Hancock will take you into an in-depth look at several plugins that can speed up your design workflow. **Note**: *This article is aimed at user interface designers who use Figma on a daily basis.*
Figma's Features for the Entire Design Process | ToptalFeb 19, 2020
Can one program handle the entire digital product design process? Learn how Figma, a web-based design tool, promotes collaboration, iteration, and documentation throughout the design process. #product #mobile #app #design #digital #ui #ux
file-formats
Top File Formats Every Data Engineer Should Know in 2025Jul 24, 2025
The reply sets the cost of storage, speed of search, and even how happy the analysts who open the files will be. By 2025 the choice of tools is bigger than before, but each type still works best in…
The Hidden CSV Catastrophe: How a 50-Year-Old File Format Is Secretly Destroying Your Data (And…Jul 24, 2025
Your CSV files are destroying your data right now. Discover why this 'simple' format is tech's most expensive mistake and what to do about it.
How to Create a Custom File Type on Linux with a Custom IconJul 24, 2025
As a Flutter developer building a Linux desktop app, I recently wanted my app to support a custom file format — let’s call it .maso. My goal was simple: In this post, I’ll walk you through how to set…
Comparing Performance of Big Data File Formats: A Practical GuideJan 25, 2024
Parquet vs ORC vs Avro vs Delta Lake
filters
Bloom Filters by ExampleJun 30, 2025
A non-mathematical introduction to Kalman Filters for programmersAug 3, 2023
Read my manifesto on Code as an alternative to Mathematics. Code for this article can be found on this Colab Notebook should you choose to follow along. Why Kalman Filters? Kalman filters are ingenius. If you have never heard of them, then a very intuitive (and arguably reductive) way to think about them is to
An Intuitive Explanation of Collaborative FilteringSep 16, 2022
The post introduces one of the most popular recommendation algorithms, i.e., collaborative filtering. It focuses on building an intuitive understanding of the algorithm illustrated with the help of an example.
Optimal Estimation Algorithms: Kalman and Particle FiltersOct 1, 2021
An introduction to the Kalman and Particle Filters and their applications in fields such as Robotics and Reinforcement Learning.
A Simple Kalman Filter ImplementationMay 15, 2020
A tank level measurement application to help you develop intuition on Kalman Filters
Xor Filters: Faster and Smaller Than Bloom and Cuckoo Filters: ACM Journal of Experimental Algorithmics: Vol 25, No nullApr 1, 2020
The Bloom filter provides fast approximate set membership while using little memory. Engineers often use these filters to avoid slow operations such as disk or network accesses. As an alternative, a cuckoo filter may need less space than a Bloom filter ...
finance
Why GPU Useful Life Is the Most Misunderstood Variable in AI EconomicsFeb 23, 2026
Amazon shortened GPU depreciation while Meta extended it—same month, same technology. The $3.6B divergence exposes the accounting discretion behind AI infrastructure economics.
Fraud Investigation Lessons From FinanceFeb 18, 2026
The financial industry has paid tens of billions of dollars in tuition on fraud detection. Here are some observations for investigators with badges, press cards, or GoPros.
The VC Corner | Ruben Dominguez | SubstackJan 20, 2026
The VC Corner is where founders stay ahead: sharp news, fundraising strategies, battle-tested playbooks, and the tools to grow. Click to read The VC Corner, by Ruben Dominguez, a Substack publication with hundreds of thousands of subscribers.
Getting Started with OpenBB: The Ultimate Python Toolkit for Financial and Economic DataDec 20, 2025
Streamline your financial data workflow with OpenBB. Learn setup, data extraction, and automation using Python—perfect for analysts and economists.
The Accounting Uproar Over How Fast an AI Chip Depreciates - SlashdotDec 8, 2025
Tech giants including Meta, Alphabet, Microsoft and Amazon have all extended the estimated useful lives of their servers and AI equipment over the past five years, sparking a debate among investors about whether these accounting changes are artificially inflating profits. Meta this year increased it...
What Happens When an “Infinite-Money Machine” UnravelsDec 8, 2025
John Cassidy on Michael Saylor, the head and co-founder of the business-software company Strategy, the firm’s bitcoin strategy, and the risks of betting on crypto.
The Merger Playbook: Crossbeam’s CEO Breaks Down Every Detail of the Deal That WorkedDec 2, 2025
A founder's firsthand account of how he merged with a competitor to materially change the trajectory of his company.
College Sports Finances DatabaseNov 25, 2025
Sportico is maintaining an interactive, real-time database that tracks the official balance sheets of public FBS university athletic departments.
Polymath Investor (@polymathinvestor)Nov 6, 2025
Sharing this quick list on How To Analyze An Income Statement.
I think it covers the basics pretty well.
How Underwater Shells Became the First Global Money | TheCollectorSep 26, 2025
How did underwater shells from the Maldives become an instrumental form of currency in the Transatlantic Slave Trade?
The Intellectual Edge (@theintellectualedge)Aug 13, 2025
Four basic steps to gauging a firm’s true financial position
A good read:
What Is the Luhn Algorithm? The Math Behind Secure Credit Card NumbersAug 12, 2025
Find out how this simple algorithm from the 1960s keeps your wallet safe
Apple’s $20 Billion Ticking Time BombJul 29, 2025
If Google’s payments go away, Apple’s services business could take a massive hit.
The Wyoming Hospital Upending the Logic of Private EquityJun 11, 2025
Instead of cutting services to cut costs, one rural hospital plans to thrive by offering more.
Visual VocabularyMar 18, 2025
What Do You Lose When You Abandon the Cloud?Dec 18, 2024
Cloud repatriation might seem like a solution for high infrastructure costs, but it can prove short-sighted as an organization scales.
NCAA Finances: Revenue & Expenses by School - USA TODAYDec 7, 2024
Which are the most profitable college athletic programs in the country? See a ranked listed, including total revenue and expenses. Brought to you by USA TODAY.
How do the most successful VCs pick which companies to bet on and which to avoid?Oct 26, 2024
At Robinhood’s first annual Hood Summit in Miami, Sherwood Media’s Editor-in-Chief Joshua Topolosky sat down with Rebecca Kacaba, CEO and cofounder...
At the Money: Building a Bond Ladder - The Big PictureOct 23, 2024
At The Money: BlackRock on Building a Bond Ladder (October 23, 2024) Full transcript below. ~~~ About this week’s guest: Karen Veraa is a Fixed Income Product Strategist within BlackRock’s Global Fixed Income Group focusing on iShares fixed-income ETFs. She supports iShares clients, generates content on fixed-income markets and ETFs, develops new…Read More
Moving Bricks: Money-Laundering Practices in the Online Scam IndustryOct 19, 2024
Jingjing invited me to her office and asked me to wait for her to finish work before we headed out to dinner together.[1] At the time, she was working in a third-party payment company—what, in the jargon of the money-laundering industry, is known as a ‘gateway’ (通道, tongdao). Like another similar enterprise I had previously […]
The Great Zelle Pool ScamJul 26, 2024
In search of a status symbol, I wound up getting ripped off big-time. But the real scam is how America's payment apps treat their customers.
Why Paper Checks Refuse to DieJul 24, 2024
It’s hard to avoid hassle — or fraud — when you’re required to pay with paper and ink. Here’s why checks persist and why some people don’t mind.
AI’s $600B QuestionJul 5, 2024
The AI bubble is reaching a tipping point. As we continue to follow the GPUs, navigating what comes next will be essential.
Fabricated Knowledge Q2 2024 Quarterly ReviewJul 3, 2024
Here's everything that happened this quarter, and some thoughts and ideas.
Danaher: Masterful Capital Allocation and Lean Manufacturing, CombinedApr 29, 2024
How Danaher combines Lean manufacturing with masterful capital allocation to build a remarkable manufacturing company in the United States.
Anatomy of a credit card rewards programApr 9, 2024
Credit card rewards are mostly funded out of interchange, a fee paid by businesses to accept cards.
How credit cards make moneyApr 9, 2024
Credit cards make money through net interest, interchange, fees, and marketing contributions.
Essential Formulas for Data Science in FinanceApr 5, 2024
In this article, I'll take you through a guide to some essential formulas for Data Science in finance with implementation using Python.
The Definitive History of Private CreditApr 1, 2024
From the days of Drexel Burnham Lambert to the "Golden Age"
How to Get Started: Investigating Payment Gateways OnlineMar 29, 2024
Investigating the financial transactions of an organisation can reveal details about its connections and funding. Here's a quick guide on how to do it.
Decoding U.S. Tariff Classifications: A Comprehensive GuideMar 21, 2024
Involved in international trade? U.S. custom regulations can lead to cost savings, compliance benefits, and a smoother trade process.
The Black-Scholes-Merton Options Pricing EquationMar 5, 2024
A superb video on the history and mathematics of options pricing from Veritasium.
Corporate Finance ModelingFeb 27, 2024
LIMITED-TIME OFFER : $119 instead of $185Who is this course forFor finance and accounting professionals who want to level up its career by gathering crucial expertise in finance management, budgeti...
The What, Who, and When with IPOsFeb 22, 2024
In 2022 and 2023, US IPOs hit decade lows after the record high of 2021. Now, in 2024, will the IPO window reopen? In this episode, we revisit a conversation with Jeff Jordan, former CEO of OpenTable, and J.D. Moriarty, the former Head Managing Director and Head of Equity Capital Markets at Bank of America...
A Russian Bank Account May Offer Clues to a North Korean Arms DealFeb 6, 2024
Moscow may be trying to help Pyongyang with access to the international financial system in exchange for missiles and ammunition, U.S.-allied intelligence officials suggest.
The Rule of XJan 18, 2024
Introducing the Rule of X — this new cloud metric is an adjusted form of the Rule of 40, taking composition (and weighting) into account.
What I learned selling my companyJan 16, 2024
At my first company, I internalized the standard advice to never think about M&A. The consensus was, and is, to just keep growing the business and good things will come. I did that, and I was lucky that good things did come in the form of a $130M acquisition
REVIEW: Central Banking 101, by Joseph WangDec 29, 2023
Central Banking 101, Joseph Wang (Self-Published, 2021) The greatest gift bestowed by admittance to elite institutions is that you stop being overawed by them. For instance, there was a time when upon hearing “so-and-so is a Rhodes Scholar”, I would have assumed that so-and-so was a very impressive person indeed. Nowadays I know quite a lot of former Rhodes Scholars, and have seen firsthand that some of them are extremely mediocre individuals, so meeting a new one doesn’t phase me much. My own
ACH vs. Wire Transfers: Which Is Right for You?Sep 8, 2023
Automate complex business processes with Nanonets' intelligent automation AI. Draw actionable insights from unstructured data across multiple sources.
Tradables and Non-TradablesJul 22, 2023
Why the Best Way to Make Something Affordable is to Send it Around the World a Few Times
Dell's Capital ExpertiseJul 3, 2023
We trace Michael Dell's skill at the art of capital in business, and use it to examine how skill at capital allows you to make moves that aren't available to a novice business operator.
Anatomy of an ACH Transaction: The Guide for FinTechsJun 28, 2023
ACH transactions happen every day, but how do they work? We break down the anatomy of an ACH transaction to help you understand the role they play in your banking product.
Meet FinGPT: An Open-Source Financial Large Language Model (LLMs)Jun 18, 2023
Large language models have increased due to the ongoing development and advancement of artificial intelligence, which has profoundly impacted the state of natural language processing in various fields. The potential use of these models in the financial sector has sparked intense attention in light of this radical upheaval. However, constructing an effective and efficient open-source economic language model depends on gathering high-quality, pertinent, and current data. The use of language models in the financial sector exposes many barriers. These vary from challenges in getting data, maintaining various data forms and kinds, and coping with inconsistent data quality to the crucial
How Forensic Accounting Can Supercharge Your Financial Risk AnalysisMay 8, 2023
Spot trouble early in a volatile environment with forensic accounting.
You’ve Heard About Behavioral Finance. But What About Physical Finance?May 5, 2023
Research suggests a fascinating link between the physical world and how investors price stocks.
‘I feel like I’m selling my soul’: inside the crisis at JuventusApr 25, 2023
The long read: A series of financial scandals have rocked Italy’s most glamorous club. But is the trouble at Juventus symptomatic of a deeper rot in world football?
Bidder Density: When 1 1 = 10xMar 25, 2023
How bid density impacts ads, recommender systems, and salary negotiations.
A Visual Guide to Bond Market DynamicsMar 25, 2023
Finance 101: The Guide for Seed/Series A Startups - The Causal BlogMar 18, 2023
The things you need to know and the things you can ignore, at the early stage of your company’s journey.
The Original King of Crypto Is BackMar 4, 2023
Arthur Hayes rubbed success in the Feds’ face and got busted. Now he’s returning to a shell-shocked industry.
How the Biggest Fraud in German History UnravelledFeb 28, 2023
The tech company Wirecard was embraced by the German élite. But a reporter discovered that behind the façade of innovation were lies and links to Russian intelligence.
Algorithmic Trading: A Practitioner’s Guide | Henrik Warne's blogFeb 13, 2023
I really enjoyed reading Algorithmic Trading: A Practitioner’s Guide by Jeffrey M. Bacidore. Before starting, I imagined it would cover various strategies for trading in the markets, along th…
Cultures Clash at Salomon Smith Barney — Stories.FinanceFeb 4, 2023
Richard Bookstaber was Salomon Brothers’ chief risk officer in 1997 when the firm was bought by Travelers and merged with Smith Barney, Travelers’ retail brokerage. He describes the resulting clash of cultures.
The Getty Family’s Trust IssuesJan 20, 2023
Heirs to an iconic fortune sought out a wealth manager who would assuage their progressive consciences. Now their dispute is exposing dynastic secrets.
Hacker NewsJan 7, 2023
Jane Street is a quantitative trading firm and liquidity provider with a unique focus on technology and collaborative problem solving.
The Games People Play With Cash FlowJan 2, 2023
One way that first principles thinking fails is when you build your analysis up from a deficient set of base principles. Everything is correct and true, but you still end up mistaken. Here's how that looks like in practice.
The Capital Allocation Guide for CEOs — Behavioral Value InvestorDec 21, 2022
Too many CEOs don't understand capital allocation. They rose up through the sales or operations ranks, and now that they are at the top they have to wing it with respect to one of the most important aspects of running the business. Don’t get me wrong – there are some amazing capital allocators among
A Standard and Clean Series A Term Sheet | Y CombinatorDec 21, 2022
We’ve noticed a common problem: founders don’t know what “good” looks like in a term sheet. This makes sense, because it is often, literally, the first time in their careers that they’ve seen one. This puts founders at a significant disadvantage because VCs see term sheets all the time and know what to expect. Because we’ve invested in so many founders over the years and have seen hundreds of Series A term sheets, we know what “good” looks like. We work with our founders to understand where term
The quiet disappearance of the safe deposit boxDec 10, 2022
Once revered as the safest way to store physical valuables, safe deposit boxes are now being phased out by major banks.
How to Sell Gold Krugerrands | SaplingDec 10, 2022
The Krugerrand is a popular gold coin that is minted in South Africa and distributed to buyers around the world. Krugerrands contain 22 karat gold, an alloy of 91.67 percent gold and 8.33 percent copper.
Capital in the Twenty-First Century a book by Thomas Piketty and Arthur GoldhammerDec 7, 2022
A New York Times #1 BestsellerAn Amazon #1 BestsellerA Wall Street Journal #1 BestsellerA USA Today BestsellerA Sunday Times BestsellerA Guardian Best Book of the 21st CenturyWinner of the Financial Times and McKinsey Business Book of the Year AwardWinner of the British Academy MedalFinalist, National Book Critics Circle Award "It seems safe to say that Capital in the Twenty-First Century, the magnum opus of the French economist Thomas Piketty, will be the most important economics book of the year--and maybe of the decade."--Paul Krugman, New York Times "The book aims to revolutionize the way people think about the economic history of the past two centuries. It may well manage the feat."--The Economist "Piketty's Capital in the Twenty-First Century is an intellectual tour de force, a triumph of economic history over the theoretical, mathematical modeling that has come to dominate the economics profession in recent years."--Steven Pearlstein, Washington Post "Piketty has written an extraordinarily important book...In its scale and sweep it brings us back to the founders of political economy."--Martin Wolf, Financial Times "A sweeping account of rising inequality...Piketty has written a book that nobody interested in a defining issue of our era can afford to ignore."--John Cassidy, New Yorker "Stands a fair chance of becoming the most influential work of economics yet published in our young century. It is the most important study of inequality in over fifty years."--Timothy Shenk, The Nation
Recipe for Disaster: The Formula That Killed Wall StreetDec 7, 2022
In the mid-’80s, Wall Street turned to the quants—brainy financial engineers—to invent new ways to boost profits. Their methods for minting money worked brilliantly… until one of them devastated the global economy.
Should You Invest in Disruptive Materials?Nov 23, 2022
3-statement Modeling for Valuations and Projections | ToptalNov 21, 2022
When valuing a company, investing in a three-statement financial model pays off.
Pollen’s enormous debt left behind: exclusive detailsOct 22, 2022
Two months after the startup went bankrupt, administrators have summarized the $80M+ debt the company has accumulated, most of which will not be paid. The highest offer to buy Pollen’s business assets - but without its liabilities - currently stands at only $250K. Details.
Industrials Outlook: Overcoming MisconceptionsOct 17, 2022
While the industrial technology sector is undervalued and underappreciated, it actually offers a bright economic future. By Nick Santhanam, Fernweh Group While the industrial technology sector is undervalued and underappreciated, it actually offers a bright economic future.
A Taxonomy of DrawdownsSep 15, 2022
Plus! Watercooler Shows; Smart Thermostats; Substitutes and Complements; Monetization; Apple Ads; Diff Jobs
SaaS spend ratios on R&D/S&M/G&ASep 12, 2022
Understanding Jane Street - by Byrne Hobart - The DiffSep 5, 2022
Plus! Pensions; Customer-Facing; Use Cases; Making a Market; Reflexive Energy Politics; Diff Jobs
Financial Lessons From the Great Depression We Can All Use TodaySep 4, 2022
Those who survived had to go beyond simply saving more and spending less.
Royalty Exchange: Buy & Sell Music Rights & CopyrightsJul 30, 2022
Royalty Exchange is an online marketplace & auction platform where investors & owners of royalty streams can buy royalties and sell all types of royalties.
Buy Royalties & Intellectual Property Rights Income | Royalty ExchangeJul 30, 2022
Royalty Exchange is a marketplace where investors can buy income-generating intellectual property and other royalty streams as alternative investments.
Running Costs - CushionJul 19, 2022
A close look at the costs that go into running Cushion and the reasons why we use specific services.
15 Tools to Curate Content for Social Media, Newsletters, MoreJul 18, 2022
Content curation is the process of gathering content — blog posts, images, videos — from a variety of sources. Sharing relevant information with your
SG&A Benchmarks Archives - SAI BooksJul 18, 2022
SG&A Benchmarks SG&A Expense as a Percentage of Sales by Industry Sector Industry Sector 10% ile Median 90% ile Agriculture, Forestry, Fishing 5.54 36.96 237.02 Mining/Extraction 2.21 7.29 143.32 Construction 5.82 9.85 19.81 Manufacturing 8.44 33.23 248.16 Transportation, Communications, Utilities 2.80 15.55 52.69 Wholesale Trade 3.52 17.86 112.27 Retail Trade 7.83 27.26 70.28 Finance, Insurance, Real Estate 5.15 31.43 69.19 Services 12.14 42.20 146.35 All sectors combined 6.04 30.65 146.32 The series of PDF reports SG&A Benchmarks is the source for the above data. They serve as a convenient source of information for professional managers seeking benchmark information on the Selling, General & Administrative spending practices of major public corporations within a specific industry sector. SG&A expenses are composed of all the commercial expenses of operation incurred in the regular course of business pertaining to the securing of operating income. Any portion of these expenses that the company itself allocates to cost of goods sold will not be included in SG&A. SG&A expense includes advertising expense, commissions, engineering expense, marketing expense, selling expense including salaries of the salesforce, employee benefit expenses, software expense, administrative office expense and other expenses related to sales but not included in cost of goods sold. Frequently SG&A to Sales ratios are used to judge overhead or cost of sales. Since different industries vary significantly in their practices of classification of expenses considered to be reported within SG&A expense, SG&A Benchmarks is produced for individual industry sectors. SG&A spending practices may also vary with size and country so information on annual sales and headquarters city is provided. The industry sector summary displays median SG&A to Sales ratio by industry to illustrate the range of values reported by firms within the industry. The tables for each individual industry present SG&A as a percentage of sales and the annual percentage growth rate in SG&A spending as well as in sales for each company within the industry. Comparing the growth rate of SG&A expenses and sales gives a snapshot of where the profitability of the firm may be heading. The firms are presented in three groups as defined by sales of less than $100 million, sales between $100 million and $1 billion, and sales of more than $1 billion. Two sets of industry tabulations are presented. Alphabetical order by company name aids in locating a firm. Order by SG&A to Sales ratio showcases the ‘leaner and meaner’ firms in each industry. This report will benefit anyone seeking competitive benchmark intelligence including: corporate staff, financial analysts, investment professionals, lenders, M&A advisors, appraisers and industry consultants. Click on the sector of interest below for more details, including a sample page, table of contents, and ordering information.
https://gigaom.com/2011/05/22/six-key-principles-of-a-successful-acquisition-strategy-part-2/Jul 18, 2022
Reading a Profit & Loss statement.Jul 10, 2022
Some years ago, I was explaining to my manager that I was feeling a bit bored, and they told me to learn how to read a Profit & Loss (P&L) statement. At the time, that sounded suspiciously like, “Stop wasting my time,” but operating in an executive role has shifted my perspective a bit: this is actually a surprisingly useful thing to learn. The P&L statement is a map of a company’s operation and is an effective tool for pointing you towards the most pressing areas to dig in.
firmai/financial-machine-learning: A curated list of practical financial machine learning tools and applications.Jul 6, 2022
A curated list of practical financial machine learning tools and applications. - firmai/financial-machine-learning
2015 Valuation HandbookJul 5, 2022
The New Standard Source of Industry-level Analysis The 2015 Valuation Handbook ‒ Industry Cost of Capital includes cost of capital estimates (equity capital, debt capital, and weighted average cost of capital, or WACC) for over 200 U.S. industries, plus a host of detailed statistics that can be used for benchmarking purposes,Don't Forget the Quarterly UpdatesThe hardcover 2015 Valuation Handbook - Industry Cost of Capital includes U.S. industry data updated through March 2015. This critical analysis is updated quarterly with data through June, September, and December. Ensure that you are using the most up-to-date data and information available: add the Quarterly Updates and keep your data library current. For more information about Duff & Phelps valuation data resources published by Wiley, please visit www.wiley.com/go/valuationhandbooks.Also Available 2015 Valuation Handbook - Guide to Cost of Capital 2015 International Valuation Handbook - Guide to Cost of Capital 2015 International Valuation Handbook - Industry Cost of Capital Key Features Over 200 U.S. industries analyzed: The 2015 Valuation Handbook ‒ Industry Cost of Capital provides comprehensive, detailed industry-level analyses that can be used for benchmarking purposes. Over 200 U.S. industries organized by standard industrial classification (SIC) code are presented. Up to 8 separate cost of equity and WACC estimates, plus cost of debt, by industry: The 2015 Valuation Handbook ‒ Industry Cost of Capital provides cost of equity capital and WACC estimates for each industry using multiple estimation models (various build-up models, CAPM, CAPM adjusted for size, 1-stage and 3-stage discounted cash flow (DCF) models, and Fama-French multi-factor model). Cost of debt is also estimated for each industry. Industry and peer group betas: The 2015 Valuation Handbook ‒ Industry Cost of Capital provides levered and unlevered beta estimates for each industry (e.g. ordinary-least squares (OLS) beta, sum beta, downside beta, etc.), plus peer group betas adjusted to the industry average based upon statistical quality. Additional industry statistics: The 2015 Valuation Handbook ‒ Industry Cost of Capital provides detailed statistics for sales, market capitalization, capital structure, valuation (trading) multiples, financial and profitability ratios, equity returns, aggregate forward-looking earnings-per-share (EPS) growth rates, and more. Analysis of off-balance-sheet debt: The 2015 Valuation Handbook ‒ Industry Cost of Capital includes a separate analysis of "off-balance-sheet" debt by industry (capitalized operating leases and unfunded pension liabilities), Analysis of high-financial-risk companies: The 2015 Valuation Handbook ‒ Industry Cost of Capital includes a separate analysis of "high-financial-risk" companies by industry. Quarterly Updates are (i) optional, and (ii) not sold separately. Quarterly Updates are delivered in PDF format only.
Cash is a fact, profit is an opinionJul 5, 2022
Apologies in advance: If you’re fluent in the language of accounting, please skip to the bonus Verizon iPhone feature at the end. What I’m about to describe will strike you as oversimplified and…
A Standard and Clean Series A Term Sheet | Y CombinatorJul 5, 2022
We’ve noticed a common problem: founders don’t know what “good” looks like in a term sheet. This makes sense, because it is often, literally, the first time in their careers that they’ve seen one. This puts founders at a significant disadvantage because VCs see term sheets all the time and know what to expect. Because we’ve invested in so many founders over the years and have seen hundreds of Series A term sheets, we know what “good” looks like. We work with our founders to understand where term
A simple explanation of how money moves around the banking systemJul 5, 2022
Twitter went mad last week because somebody had transferred almost $150m in a single Bitcoin transaction. This tweet was typical: There was much comment about how expensive or difficult this would …
All Revenue is Not Created Equal: The Keys to the 10X Revenue ClubJul 5, 2022
[Follow Me on Twitter] “ Don't you know that you are a shooting star, And all the world will love you just as long, As long as you are.” -- Paul Rodgers, Shooting Star With the IPO market now blown wide-open, and the media completely infatuated with frothy trades in the bubbly late stage private market, it is common to see articles that reference both “valuation” and “revenue” and suggest that there is a correlation between the two. Calculating or qualifying potential valuation using the simplistic and crude tool of a revenue multiple (also known as the price/revenue or price/sales ratio)…
24 charts that show we’re (mostly) living better than our parentsJul 3, 2022
Ignore the haters: living standards have improved a lot since the 1980s.
Ten Ways Billionaires Avoid Taxes on an Epic ScaleJul 1, 2022
After a year of reporting on the tax machinations of the ultrawealthy, ProPublica spotlights the top tax-avoidance techniques that provide massive benefits to billionaires.
Why clean energy needs financial engineeringJun 27, 2022
Plus: Hydrogen pipelines, Advanced Market Commitments, and what made solar energy cheap
https://gigaom.com/2011/05/21/six-key-principles-of-a-successful-acquisition-strategy-part-1/Jun 24, 2022
When Payment Processing Becomes A Commodity | TechCrunchJun 23, 2022
One of the big subjects of discussion in the banking industry earlier this year was the publication of the Millennial Disruption Index, stating that millennials view banks as irrelevant and placing traditional retail banking at the highest risk of disruption compared to other B2C industries. Accenture's Banking 2020 report confirms this and draws a parallel to the challenges the telecom industry faced 20 years ago and states that non-banks will take a third of incumbent banks revenues by 2020.
The Dollar-Store Economy (Published 2011)Jun 23, 2022
The ubiquitous dollar store is the American dream writ small.
We are not in a recession, nor is one inevitable.Jun 21, 2022
Americans are rightly angry about inflation. A strong labor market is not enough reason to celebrate. But, we are coming out of, not going into the hurricane.
The Coin That Could Wreck Crypto (Published 2022)Jun 20, 2022
As cryptocurrencies have plunged, attention has focused on a potential point of vulnerability: the market’s reliance on a so-called stablecoin called Tether.
Tracking the Fear Index on Wall StreetJun 18, 2022
Plus, with Revlon’s bankruptcy, Wall Street bankers get ready for a wave of distressed situations.
‘Just stop buying lattes’: The origins of a millennial housing mythJun 18, 2022
Financial gurus want young home shoppers to stop complaining and cut back on small luxuries. But there are broader affordability issues at play.
Timing a Recession vs. Timing the Stock MarketJun 11, 2022
It's not always easy to predict the timing of a recession and what that means for the stock market.
All Personal FeedsMay 18, 2022
Although we are not technically in a bear market (the S&P 500 Index has not declined 20%) it absolutely feels like one. The tech-heavy NASDAQ index is 26% off its highs, and so are small-cap stocks. Many of the darling stocks of the latest growth rally have been decimated. These are some of the most...
Why Does the Stock Market Go Up Over the Long-Term?May 4, 2022
Why the stock market has to go down sometimes.
Do You Have to Pay Capital Gains Tax on a Home Sale?Mar 23, 2022
Capital gains taxes on real estate and property can be reduced or not assessed when you sell your home, up to certain tax limits, if you meet the requirements.
The Hidden Story of the North’s Victory in the Civil WarMar 8, 2022
Roger Lowenstein’s “Ways and Means” offers a fresh perspective on the Civil War by explaining the importance of financing.
How Crypto’s Original Bubble Boy Rode Ethereum And Is Now Pulling The Strings Of The DeFi BoomFeb 12, 2022
Now he’s pulling the strings, and raking in hundreds of millions, from a blockchain rage called DeFi, which promotes the fantasy of democratized financial services.
How Often Should You Expect a Stock Market Correction?Jan 21, 2022
A short history of stock market corrections.
Blankly - Rapidly Build Quant Models Across ExchangesJan 15, 2022
Build in minutes. Deploy in seconds. Quant workflow reimagined. Built by developers for developers 🚀
Trading Algos - 5 Key Metrics and How to Implement Them in PythonJan 15, 2022
Metrics surround us. Whether you're building the next big thing and need to measure customer churn,...
How Signal is playing with fireJan 9, 2022
Signal employees are worried about anonymous crypto payments.
An Introduction to Semiconductor EconomicsDec 6, 2021
This blog post is in response to a recent topic on the Parallella forum regarding Adapteva’s chip cost efficiency (GFLOPS/$): [forum discussion thread]. I had to be a little vague on some poi…
Bank transfers as a payment methodNov 28, 2021
Bank transfers have exploded as a payment method in India and may become more common in much of the world.
The Commonsense Capitalism of Chris JamesOct 8, 2021
Engine No. 1’s victory in a boardroom battle with ExxonMobil is taking ESG investing to the next level.
Why payment apps that thrive in India struggle to succeed in MexicoAug 31, 2021
One fintech veteran from India found out the hard way why “Mexicans love cash.”
The $2 Billion Mall RatsAug 28, 2021
The inside story of a black sheep hedge fund, a massive bet that shopping malls would crash, and how they proved Wall Street wrong.
How Intel Financialized and Lost Leadership in Semiconductor Fabrication |Jul 10, 2021
Intel is the poster child of how stock buybacks come at the cost of technological innovation.
Let’s Build a Chip – With MathJun 30, 2021
Let’s Build a Chip – We lay out the costs of building a chip – with spreadsheets!
Quantra — a Python coding platform to learn quantitative financeMay 27, 2021
To be honest, the title of the article does quite a good job in describing what Quantra actually is. It’s a platform that helps potential students with their journey of learning about quantitative…
What is a store worth?May 18, 2021
Retailers who want to measure the full value of their physical stores need to consider factors in addition to in-store sales.
Property Taxes by State in 2024Apr 12, 2021
Greensill Capital: The Collapse of a Company Built on DebtMar 28, 2021
Greensill Capital promised a win-win for buyers and sellers, until it all fell apart, igniting concerns about opaque accounting practices.
Mark Carney: ‘I didn’t want the Bank of England job. But I was asked to fix something’Mar 20, 2021
He earned a fortune at Goldman Sachs, but now the banker wants the financial sector to reassess its values and tackle the climate emergency
Respect the Base Rate – Of Dollars And DataFeb 17, 2021
On making optimal decisions, when to expect the average outcome in life, and when not to.
How the Most Hyped U.S. Oil Merger in a Decade Went BustJan 27, 2021
As CEO of Occidental Petroleum, Vicki Hollub made the biggest deal the oil business had seen in years. Will it also go down as the biggest failure?
How Do I Find a Stock's Number of Shorted Shares?Jan 27, 2021
Most websites with a stock quotes service offer free short interest data. Learn more about what shorting information means and how to find it.
What I Believe Most · Collaborative FundJan 23, 2021
Ten things that guide almost everything I think about in business and investing…
7 Crowdfunding Platforms You Can Use To Boost Your IdeasJan 21, 2021
Advice, insight, profiles and guides for established and aspiring entrepreneurs worldwide. Home of Entrepreneur magazine.
WTF is a SPAC?Jan 21, 2021
In a SPAC IPO, a shell company goes public with a pledge to investors that it will eventually become a traditional company via acquisition.
Yield CurveDec 18, 2020
The Games People Play With Cash Flow - Commonplace - The Commoncog BlogDec 12, 2020
One way that first principles thinking fails is when you build your analysis up from a deficient set of base principles. Everything is correct and true, but you still end up mistaken. Here's how that looks like in practice.
Debt: the First 5000 YearsJun 28, 2020
I recently read Debt: the First 5000 Years by David Graeber, and it has stuck on my mind for a while. It’s one of those “Everybody is wrong about X, here is what you’ve missed in plain sight” -type…
Azure GPUs with Riskfuel’s technology offer 20 million times faster valuation of derivatives | Microsoft Azure BlogMay 15, 2020
We recently collaborated with Riskfuel, a startup developing fast derivatives models based on AI, to measure the performance gained by running a Riskfuel-accelerated model on the Azure ND40rs_v2 Virtual Machine instance powered by NVIDIA GPUs against traditional CPU-driven methods.
Is Private Equity Having Its Minsky Moment?May 10, 2020
Hi, Welcome to BIG, a newsletter about the politics of monopoly. If you’d like to sign up, you can do so here. Or just read on…
Black–Scholes model - WikipediaFeb 26, 2020
The Black–Scholes /ˌblæk ˈʃoʊlz/[1] or Black–Scholes–Merton model is a mathematical model for the dynamics of a financial market containing derivative investment instruments. From the parabolic partial differential equation in the model, known as the Black–Scholes equation, one can deduce the Black–Scholes formula, which gives a theoretical estimate of the price of European-style options and shows that the option has a unique price given the risk of the security and its expected return (instead replacing the security's expected return with the risk-neutral rate). The equation and model are named after economists Fischer Black and Myron Scholes. Robert C. Merton, who first wrote an academic paper on the subject, is sometimes also credited.
Getting to the root of the revenue multiple | TechCrunchFeb 19, 2020
Valuation concerns are top of mind for many investors. For those in tech investing, this concern is perhaps most acute, given the generally high multiples assigned to the sector. There are good articles addressing how revenue multiples have moved over time or why this methodology even came to be, but I'm still curious as to how a revenue multiples ties to some fundamental unit of company value.
Show HN: Excel Sensitivity Analysis ToolDec 23, 2019
Build models better. Causal replaces spreadsheets with collaborative modeling in the browser.
How Renaissance’s Medallion Fund Became Finance’s Blackest BoxDec 15, 2019
The Medallion Fund, an employees-only offering for the quants at Renaissance Technologies, is the blackest box in all of finance.
Collection of Jupyter notebooks for quantitative financeDec 14, 2019
Collection of notebooks about quantitative finance, with interactive python code. - cantaro86/Financial-Models-Numerical-Methods
Bank of the Underworld - The AtlanticOct 29, 2019
Liberty Reserve was like PayPal for the unbanked. Was it also a global money-laundering operation?
I Worked at Capital One for Five Years. This Is How We Justified Piling Debt on Poor Customers.Oct 9, 2019
The subprime lending giant is a textbook case in creating a corporate culture of denial.
How to avoid losses and prune projects proactivelyAug 29, 2019
It’s common for companies to hang on for too long to projects or parts of the business that are underperforming. Two effective techniques can help executives make project investment decisions on when to hold on to an asset and when to let it go.
The Black-Scholes formula, explainedJul 23, 2019
505 votes, 61 comments. 2M subscribers in the finance community. Welcome to r/Finance! No Personal Finance, Homework, Personal blogs, or…
The real Goldfinger: the London banker who broke the worldJun 16, 2019
The true story of how the City of London invented offshore banking – and set the rich free
How America’s Oldest Gun Maker Went Bankrupt: A Financial Engineering Mystery (Published 2019)May 4, 2019
When a secretive private equity firm bought Remington, sales were strong and the future bright. A decade later, the company couldn’t escape its debts.
The Periodic Table of Commodity ReturnsJan 22, 2019
The Triple Jeopardy of a Chinese Math ProdigyNov 26, 2018
A secretive hedge fund used the British court system to punish an IP thief‚ even though he was already in jail.
Sector HeatmapsNov 10, 2018
Stock market rotation has been a pretty big theme this year but you wouldn't necessarily know it from our sector performance heatmap.
Lessons from Robert Smith of Vista Equity PartnersOct 7, 2018
Robert Smith is the Founder, Chairman, and Chief Executive Officer of Vista Equity Partners. A March 2018 Forbes profile described Vista’s performance: “Since the firm’s inception in 2000, Vi…
Business and Investing Lessons from CaddyshackSep 29, 2018
There are certainly some people who don’t know that Caddyshack is a 1980 comedy movie directed by Harold Ramis and written by Brian Doyle-Murray, Douglas Kenney and the director Ramis.…
https://funduf.com/Sep 14, 2018
Justifying Investments with the Capital Budgeting ProcessAug 30, 2018
The capital budgeting process involves applying the time value of money concepts to business investment decision making. It is critical towards ensuring that capital is invested into the right projects.
The many twists and turns of hardwareJul 7, 2018
I don’t think anyone would disagree that building a successful hardware business has quite literally many more moving parts than software.
Inside the 20-year decline of Toys R UsJul 1, 2018
Cost cuts, stressed employees, intercompany rivalries, dirty floors, dusty rafters, glitchy IT, fudged metrics: The people who ran the failed toy retailer's stores know what went wrong.
Python For Finance: Algorithmic TradingJun 8, 2018
Originally published at https://www.datacamp.com/community/tutorials/finance-python-trading
Revealed: The Secrets Of One Of The World's Dirtiest Banks And Its PowerfulDec 15, 2017
Blatant forgery. Snarling guard dogs. Shredded evidence. An incendiary cache of leaked documents reveals the farcical scramble inside one of the world’s dirtiest banks to conceal incriminating information from US government investigators – while some of the most prestigious accountants and lawyers on the planet used all their power to keep the bank in business.
It’s Good to Be the KingOct 24, 2003
The ins and outs of how the mega-rich wall themselves off from government’s prying eyes
finland
It’s the Happiest Country in the World. I Spent a Week There. I Wish I Could Unlearn Its Secret.Aug 27, 2025
The truth is both simpler and more complicated than it seems.
firebase
Introducing Firebase QueueDec 17, 2021
Deploy Angular Apps to Firebase From GitHubNov 3, 2020
How to create simple CI/CD pipelines for automated deployments
Firebase consoleJun 8, 2018
Using React, Firebase, and Ant Design to Quickly Prototype Web ApplicationsJun 8, 2018
In this guide I will show you how to use Firebase, React, and Ant Design as building blocks to build functional, high-fidelity web applications. To illustrate this, we’ll go through an example of building a todo list app. These days, there are so many tools available for web development
firecrawl
mendableai/firecrawl: 🔥 Turn entire websites into LLM-ready markdown or structured data. Scrape, crawl and extract with a single API.May 11, 2025
🔥 Turn entire websites into LLM-ready markdown or structured data. Scrape, crawl and extract with a single API. - mendableai/firecrawl
Firecrawl: A Powerful Web Scraping Tool for Turning Websites into Large LanJun 20, 2024
In the rapidly advancing field of Artificial Intelligence (AI), effective use of web data can lead to unique applications and insights. A recent tweet has brought attention to Firecrawl, a potent tool in this field created by the Mendable AI team. Firecrawl is a state-of-the-art web scraping program made to tackle the complex problems involved in getting data off the internet. Web scraping is useful, but it frequently requires overcoming various challenges like proxies, caching, rate limitations, and material generated with JavaScript. Firecrawl is a vital tool for data scientists because it addresses these issues head-on. Even without a sitemap,
flask
Welcome to Flask — Flask Documentation (3.1.x)Dec 24, 2024
Unleashing the Power of Flask: A Guide to Building Web Applications with PyOct 15, 2023
Introduction In the vast landscape of web development, Flask stands out as a lightweight yet...
Learn How to Test Flask Applications with PytestMar 22, 2023
Welcome to this tutorial on how to test Flask applications with Pytest. Flask is a popular web...
Deploy an NLP pipeline. Flask Heroku Bert.May 1, 2021
A simple quick solution for deploying an NLP project and challenges you may faced during the process.
Quickstart: Create a Python app - Azure App Service | Microsoft DocsDec 18, 2020
Get started with Azure App Service by deploying your first Python app to Azure App Service.
How to Install Flask on Ubuntu 20.04Dec 10, 2020
In this article we'll discuss how to install Flask on Ubuntu 20.04 inside a Python virtual environment.
Create and Deploy your First Flask App using Python and HerokuNov 3, 2020
Flask is a straightforward and lightweight web application framework for Python applications. This guide walks you through how to write an application using Flask with a deployment on Heroku.
Iris Classifier Flask AppJun 1, 2020
Hey guys this my first blog on Medium. This is an Iris classification ML model turned into a flask app for hosting on Heroku.
How to Easily Deploy Machine Learning Models Using FlaskDec 14, 2019
This post aims to make you get started with putting your trained machine learning models into production using Flask API.
Designing a RESTful API with Python and Flask - miguelgrinberg.comApr 21, 2019
In recent years REST (REpresentational State Transfer) has emerged as the standard architectural design for web services and web APIs.In this article I'm going to show you how easy it is to create a…
focus-distractions
The Ability To Focus And Make The Best Move When There Are No Good MovesApr 22, 2025
"if there is one skill that stands out, it’s the ability to focus and make the best move when there are no good moves."
Use A Work Journal To Recover Focus Faster And Clarify Your ThoughtsJul 15, 2024
You’re working on the most complex problem in computer science: fixing permissions on a deployment pipeline. It’s been 4 days you started on that simple task...
Never say “no,” but rarely say “yes.”Oct 4, 2023
"Focus" requires saying "no" to most things, but there's a way to do it that allows you to say "yes" exactly when it matters most.
How listening to uninterrupted noise helped millions to focusJul 24, 2023
False copyright claim briefly took Lofi Girl and her continuous music stream down.
Easily Distracted? You Need to Think Like a Medieval MonkJan 22, 2023
Focusing wasn’t much easier in the time before electricity or on-demand TV. In fact, you probably have a lot in common with these super-distracted monks.
How we tune out distractionsNov 5, 2022
MIT neuroscientists have identified a brain circuit that helps us to filter out unwanted background noise or other distracting sensory stimuli. When this circuit is engaged, the prefrontal cortex selectively suppresses sensory input as it flows into the thalamus, the site where most sensory information enters the brain.
How Product Strategy Fails in the Real World — What to Avoid When BuildingOct 1, 2022
Why does strategy tend to stall when the rubber hits the road? Nate Stewart, Chief Product Officer of Cockroach Labs, shares an essential guide for creating a resilient strategy that’s still standing next year.
The science of a wandering mindSep 15, 2022
More than just a distraction, mind-wandering (and its cousin, daydreaming) may help us prepare for the future
http://limedaring.com/articles/how-i-run-a-marketplace-with-eleven-different-properties-and-5000-vendors/Mar 16, 2022
Why athletes need a ‘quiet eye’Jul 24, 2021
Want to know who will win a World Cup game or Wimbledon match? Look closely at the athletes’ eyes — including when it seems they're about to lose.
Tips from neuroscience to keep you focused on hard tasksMar 19, 2021
Nature - Understanding cognitive control can help your working life, says David Badre.
folklore-myths
Killing the Dead by John Blair review – a gloriously gruesome history of vampiresJan 11, 2026
Shroud-chewers, lip-smackers and suckers populate this fascinating study of ‘the unquiet dead’ across the centuries
Why Real Biblical Angels Are Creepy, Beastly, and Hardly AngelicOct 15, 2025
Nearly 70 percent of Americans believe in angels, at least according to a statistic often cited in recent years. But what, exactly, comes to their minds — or those of any other believers around the world — when they imagine one?
What Are Some of the Most Prominent Medieval Myths? | TheCollectorOct 1, 2025
Explore some of the best-known medieval myths, about legendary characters and perhaps even real people.
Gobsmacked! Supernatural Sightings After a Kentucky FloodSep 28, 2025
Lora Eli Smith reports on mysterious goblin-like creatures sightings by Eastern Kentucky residents after the devastating 2022 floods.
The Congo’s Dinosaur of DiscordApr 25, 2025
Once a subject of Victorian fascination, the mokele-mbembe myth is now fodder for creationists on a quest to disprove Darwinism
Don't Stare at the Dark Watchers - Atlas ObscuraMay 8, 2024
Cryptic characters lurk in California's mountains. Or maybe it's just the weather.
Inside the Decades Long Hunt for the Mongolian Death WormMay 4, 2024
Some say the true death worm has already been found—slithering beneath the sands of the Gobi.
Valery Slauk’s Magnificent Creepy Folk and Mythological ArtistryApr 7, 2024
Valery Slauk, a celebrated Belarusian artist, specializes in book art and easel graphics, particularly employing the etching technique. His work delves into Slavic mythology, crafting captivating worlds that blend literary inspiration with boundless imagination. With a deft balance between reali
Both folktales and formal philosophy unsettle us into thinking anew about oFeb 26, 2024
Both folktales and formal philosophy unsettle us into thinking anew about our cherished values and views of the world
A 500-Page Book Explores the Ghosts & Monsters from Japanese FolkloreFeb 6, 2024
Westerners tend to think of Japan as a land of high-speed trains, expertly prepared sushi and ramen, auteur films, brilliant animation, elegant woodblock prints, glorious old hotels, sought-after jazz-records, cat islands, and ghost towns.
A Japanese Island Where the Wild Things AreApr 16, 2023
In the pantheon of yokai, spooky beings of Japanese folklore embody anxieties ancient and modern. On Shodoshima, an art contest helps bring new ones to life.
Why are flood myths so common in stories from ancient cultures around the world?Feb 10, 2023
Could the prevalence of flood myths around the world tell us something about early human migration or even the way our brains work?
List of mythological objectsJun 3, 2022
Mythological objects encompass a variety of items found in mythology, legend, folklore, tall tale, fable, religion, spirituality, superstition, paranormal, and pseudoscience from across the world. This list is organized according to the category of object.
Loki’s Place in Trickster MythologyMay 28, 2022
Smithsonian’s James Deutsch says that behind the character in the Marvel Studios series lies the oft-told story of “guile” outsmarting authority.
fonts-typography
Smashing Animations Part 7: Recreating Toon Text With CSS And SVG — Smashing MagazineDec 17, 2025
In this article, pioneering author and web designer [Andy Clarke](https://stuffandnonsense.co.uk) shows his techniques for creating [Toon Text titles](https://stuffandnonsense.co.uk/toon-text/index.html) using modern CSS and SVG.
Beth Mathews Design — Parts List TypefaceDec 12, 2025
A typeface inspired by vintage forms, lists and gas station ephemera.
Modern Font StacksOct 4, 2025
System font stack CSS organized by typeface classification for every modern OS. The fastest fonts available. No downloading, no layout shifts, no flashes — just instant renders.
The hardest working font in ManhattanFeb 15, 2025
A story of a 150-year-old font you have never heard of – and one you probably saw earlier today.
LETTERHEADYJan 18, 2025
letterheady –adjective 1. overcome by a strong emotion due to a letterhead design. Edited by me,...
Mastering the Art of Web Typography: Enhancing Readability and Brand Identity - noupeOct 24, 2024
Learn how to use the art of web typography to enhance website readability and your brand identity.
Free Typography Fonts, Tools, CoursesJun 25, 2024
Typography is an essential component of web design. It’s also affordable, with free commercial fonts, tools, and educational materials.
THE ART AND HISTORY OF LETTERING COMICSMar 7, 2024
Todd Klein's online book exploring little-known aspects of comics: lettering, letterers, logo design and more.
He’s Probably in Your House, Lurking on Your BookshelfMar 3, 2024
The Museo Bodoniano in Parma, Italy, is a mecca for one of the world’s most enduring, and ubiquitous, typefaces. Meet Giambattista Bodoni, the “prince of typography.”
HistoryFeb 3, 2024
Hey, Computer, Make Me a FontOct 4, 2023
This is a story of my journey learning to build generative ML models from scratch and teaching a computer to create fonts in the process.
The Mystery of the Dune FontJan 30, 2023
Putting a name to the typeface that defined the visual identity of the science fiction series and its author, Frank Herbert
Almost monospaced: the perfect fonts for writing - blakewatson.comNov 7, 2022
The unedited, writerly feel of monospaced fonts meets the readability and legibility of proportional ones.
Eye-Catching Typography To Get More LeadsJul 6, 2022
Noupe passionately delivers stylish and dynamic news for designers and Web developers across the globe on all subjects of design; ranging from CSS, Photography, JavaScript, Web design, Graphics, Typography and much more.
6 In-demand Marketing Skills for Your Design CVJun 21, 2022
In today’s tech-savvy world, being a great designer is not all about being a whiz at tools such as Adobe Photoshop and Adobe Illustrator. The job is
Interactive Typography Tutorial – Learn UI DesignJun 1, 2022
Learn the fundamentals of typography through this gamified walkthrough with real-time feedback and logic-based principles.
Understanding Typographic HierarchyApr 8, 2022
What is hierarchy in typography, and how does it work? In this article, we'll explain type hierarchy and look at some examples of how it works.
A beginner’s guide to kerning like a designerJan 29, 2022
In this article, we talk about the definition of kerning and its importance in design. Learn more about kerning here, and start kerning like a pro!
Atkinson Hyperlegible Font May Be Pretty Good If Your Granny Can't See WellJan 23, 2022
My grandmother approves of Atkinson Hyperlegible free font for her phone book printout
CSS Techniques And Effects For Knockout Text | CSS-TricksJan 16, 2022
Knockout text is a technique where words are clipped out of an element and reveal the background. In other words, you only see the background because the
7 Practical Tips for Cheating at DesignJan 16, 2022
Improving your designs with tactics instead of talent.
Web fonts - Learn web development | MDNJan 16, 2022
Now that you have worked through our articles on text styling fundamentals, it's time to test your comprehension with our assessment for the module: Typesetting a community school homepage.
Beautiful web type — the best typefaces from the Google web fonts directoryDec 17, 2021
A showcase of the best typefaces from the Google web fonts directory.
A Comprehensive Guide to Font Loading Strategies—zachleat.comDec 13, 2021
A post by Zach Leatherman (zachleat)
Improving The Performance Of An Online Store (Case Study)Jun 3, 2021
Getting a good performance score from Google is hard for any website — but doing so for an online store is even harder. We achieved green scores — even several for mobile. Here is how we did it.
Font size is useless; let’s fix it @ tonsky.meApr 1, 2021
What happens when you set fontSize: 32 in your favorite editor
On snot and fonts / Luc DevroyeDec 25, 2020
An encyclopedic site about typefaces and type design, managed by Luc Devroye
How this one font took over the worldDec 18, 2020
It’s the font we deserve, but is it the one we need right now?
Why This Font Is Everywhere: How Cooper Black Became Pop Culture’s FavoriteJun 19, 2020
You know Times New Roman, you know Helvetica, you know Comic Sans — and though you may not realize it, you know Cooper Black as well. Just think of the 'VOTE FOR PEDRO' shirt worn in Napoleon Dynamite (and in real life for years thereafter), or a few decades earlier, the cover of Pet Sounds.
A brief history of typeface and its online evolutionJun 1, 2020
Did you know TNW’s Couch Conference has a track fully dedicated to exploring new design trends this year? Check out the full ‘Sprint’ program here. It’s easy to take books and other printed material for granted. However, before the inventio
Creating typography using word cloud in pythonJun 1, 2020
A Picture is worth a thousand words. Literally! there are 2200+ words in this picture. 😱
Mini Tutorial – A Guide to Font CombinationsAug 20, 2019
Effective font combinations are a hallmark of good design. Designers who master this aspect of typography can make the most basic designs more effective.
food-drink
The Best New Reason to Visit the Barbecue Capital of TexasFeb 25, 2026
At Barbs B Q in Lockhart, Chuck Charnichart is putting her own signature touches on classic brisket, sausage and ribs.
Whatever Happened to Restaurants Serving Tortillas With Butter?Feb 20, 2026
Many remember the Tex-Mex appetizer as a staple of growing up in Texas. There are still a few places that haven’t given way to chips and salsa.
Sandwiched Between New Orleans And Baton Rouge Is 'The Jambalaya Capital Of The World'Feb 20, 2026
Jambalaya is incredibly versatile with families passing down their variations on the dish. A festival in this town celebrates everything jambalaya.
It’s the Hottest Restaurant in America. It’s Probably in Your Mall’s Parking Lot. How Did This Happen?Feb 17, 2026
It started with a cheese pull.
What It's Like to Be...a Baker - By Dan Heath - Behavioral ScientistFeb 15, 2026
Tinkering with the recipe for gingerbread cake until it's right, adjusting to the variability of local grains, and cherishing the quiet mornings when the sun fills the bakery windows with Sophie Williams, a baker in Bellingham, Washington.
Pan-Baked Lemon-Almond TartFeb 10, 2026
This flourless, crustless tart is rich, moist, sweet and and prepared almost entirely on the stovetop (with the exception of a few minutes spent under the broiler to crisp the top). It is the ideal decadent breakfast, a new twist on the classic coffeecake or last-minute dessert.
Beer Is Declining in America. The Saga of One Tells Part of the Story.Feb 5, 2026
The ballad of Bell's Brewery.
Home | laesperanzatortillasJan 22, 2026
La Esperanza Tortilla Factory brings the best quality tortillas, chips, and snacks to your doorstep. Find the most authentic tortillas, savory chips, and mouthwatering Mexican snacks this side of the border on our website https://www.laesperanzatortillas.com/
Why Mexican Coffee Is Becoming More Popular in TexasJan 13, 2026
I took a trip to the heart of the country’s coffee-growing scene to learn more about the beans that turn into an easy-drinking brew.
Not a Diet: Why Japanese Meals WorkJan 11, 2026
The most useful meal framework in my kitchen has nothing to do with dieting.
The Birth of Espresso: The Story Behind the Coffee Shots That Fuel Modern LifeJan 2, 2026
Espresso is neither bean nor roast.
It is a method of pressurized coffee brewing that ensures speedy delivery, and it has birthed a whole culture.
Balthazar, 1997 by Heather BurschJan 1, 2026
December 11, 2025 – “I’d been working at Balthazar for a few months when Debra pulled me aside to tell me they knew I’d lied on my resume. Was I fired?”
Buttery Breakfast CasseroleDec 25, 2025
The word “buttery” in the title refers to croissants, which make an especially rich foundation for this golden-topped baked breakfast classic. Toasting the croissants before building the casserole adds caramelized notes that can stand up to the bits of browned sausage, sage and melted Gruyère strewn throughout. Make this the night before a special breakfast or brunch, then pop it in the oven an hour before you plan to serve it.
The Coffee WarehouseDec 23, 2025
Starbucks ascended as a "third space." Maybe it should run like a 3PL.
Why branded merch is the next post-ironic trend - Fast CompanyDec 18, 2025
Fast casual restaurant chains are turning to merch, fashion, perfumes, apparel—and to fans, it’s no joke.
A quest to uncovering the origins of phoDec 15, 2025
A writer explores Vietnam, seeking to untangle the origin of the beloved noodle soup that is the country’s national dish.
CookingwithsamiraDec 10, 2025
10mg THC Ruby Red Ranch WaterNov 6, 2025
Crack open calm with Upstate’s Ruby Red Ranch Water, a bright, citrusy blend of juicy grapefruit, 10mg of hemp-derived THC, and a functional dose of adaptogenic mushrooms. Lion’s Mane, Cordyceps, and Reishi work together to support balance and resilience. Lion’s Mane supports cognitive health and mental clarity, helpin
Pumpkin Maple MuffinsOct 18, 2025
These muffins are just the right amount of sweet, lightly spiced and deeply orange, thanks to the addition of ground turmeric. Browning the butter beforehand may seem like a fussy step, but it provides a vaguely nutty, deeply caramelized flavor that makes for a superlative muffin.
10 Best Boxed WinesOct 6, 2025
Thoughtful winemakers, motivated by environmental concerns, are turning to boxes.
Affordable Omakase Sushi Restaurants in TokyoSep 29, 2025
We introduce five recommended spots for omakase experiences that won’t break the bank, located across central Tokyo.
Why Frozen Food Gets an Icy Reception in ChinaSep 26, 2025
Chinese diets are dictated by a culture of eating ingredients just hours after slaughtering or harvesting.
How the Spice Trade Redrew the World Map | TheCollectorSep 26, 2025
In the 15th and 16th centuries, the desire to expand and control the spice trade was one of the driving forces behind the Age of Exploration.
The thousand-year story of how the fork crossed Europe, and onto your plate todaySep 24, 2025
From scandal to staple: how the fork travelled from Byzantium to Lithuania, helped by Queen Bona Sforza and centuries of changing table manners.
How market design can feed the poorSep 15, 2025
America's largest non-profit had a broken distribution system. University of Chicago economists fixed it.
There’s One Summer Vegetable So Bad It Wants to Kill Itself. Why Do We Keep Pretending It’s Worth Eating?Aug 31, 2025
Your loved ones are probably trying to smuggle some into your kitchen right now …
Hot Dog UniversityAug 29, 2025
Hot Dog University in Chicago trains entrepreneurs to master the Chicago-style hot dog. From Vienna Beef traditions to food cart businesses nationwide, Hot Dog U graduates are proving the American dream is still alive — one hot dog stand at a time.
I Drank Every CocktailAug 16, 2025
The International Bartenders Association, or IBA, maintains a list of official cocktails, ones they deem to be “the most requested recipes” at bars all around the world. It’s the closest thing the bartending industry has to a canonical list of cocktails, akin to the American Kennel Club’s registry of dog breeds or a jazz musician’s Real Book of standards.
Fresh Corn and Black Bean Salad With Corn ChipsAug 10, 2025
This superquick corn and black bean salad is enlivened with crackly corn chips, in the spirit of salads like fattoush, panzanella and crispy noodle salad. When corn is at its peak, its subtly sweet raw kernels are plump and juicy, and the perfect addition to salads. Corn pairs beautifully with earthy black beans and this sprightly cumin-lime vinaigrette. The corn, black beans, cilantro and vinaigrette can mingle up to 4 hours ahead, so this make-ahead dish is perfect for a picnic, potluck, cookout, or simply dinner. For best results, toss in the corn chips and avocado just before serving.
The Best Ice Cream SandwichesAug 4, 2025
We all scream for ice cream—but when it comes to ice cream sandwiches, these choices had us screaming the loudest.
What legacy brands can learn from the hype cycleJul 28, 2025
How to balance modern and classic brand design - Fast Company
This Zesty, No-Bake Dessert Is Tangy, Creamy, and Totally IrresistibleJul 27, 2025
Bolis de Pay de Limón are creamy, tart ice pops with vanilla cookie crumbs swirled in to emulate classic key lime pie.
We Taste-Tested 19 Supermarket Canned Tunas—Here Are Our FavoritesJul 20, 2025
In our most recent taste test, we pulled together 19 brands of canned tuna you’re likely to find in your local supermarket and very thoughtfully tasted each to find the very best one. To be of the most service to our readers, we tasted both canned tuna in water and canned tuna in oil.
French Recipes to Channel Your Inner Julia ChildJul 14, 2025
Whether you’re braising boeuf or just buttering a baguette, these recipes will transport you to France.
One Day—and One Night—in Anthony Bourdain’s KitchenJul 3, 2025
From 2000: “The people who will be coming tonight and tomorrow night to Les Halles, a restaurant on Park Avenue South where I work as the chef, aren’t like the people who come during the week,” Anthony Bourdain writes.
Backyard Coffee And Jazz In Kyoto, JapanJun 24, 2025
A "magical" experience, and what we get when we let people pursue their passions
Sea moss punch: The Caribbean's cooling, healthy elixir for summerJun 24, 2025
Plucked from the ocean, Trinidad's answer to the summer milkshake is now part of a frenzied craze around the world.
Tart Cherry Nighttime MocktailJun 5, 2025
Sip on this sweet-tart cherry nighttime mocktail before bedtime. Emerging research shows that the polyphenols in cherries may help you sleep better.
How a Hazelnut Spread Became a Sticking Point in Franco-Algerian RelationsJun 2, 2025
The wildly popular Nutella competitor El Mordjene has been banned by the European Union, a move some see as politically motivated, Lauren Collins writes.
The Self-Taught Cook Who Mastered the Flour TortillaMay 26, 2025
Some of the best Sonoran-style tortillas in the U.S. are being made far from the border, in a college town forty miles outside Kansas City, Hannah Goldfield writes.
‘Without time, there is no flavour’: a South Korean grand master on the art of the perfect soy sauceMay 23, 2025
Ki Soon-do’s soy sauce has been served to Donald Trump and gained Unesco heritage protection. It is recognition that is 370 years in the making
This Tiny Town in Pennsylvania Still Makes the Pierogi of My ChildhoodMay 21, 2025
I spent decades chasing down the Eastern European classic that defined my family's celebrations. A chance encounter led me to the source.
The 30 Best Rosé Wines of 2025May 14, 2025
words: Published: photography: Check out the best rosés from previous years here! Orange wines and chilled reds continue to challenge rosé for a spot in the summer lineup, but we can’t deny that the incumbent warm-weather wine continues to draw our attention with its ever-expanding range of styles. While the pale pink bottles from Provence that originally sparked the rosé frenzy remain wildly popular, there are wines from around the world that offer something new and exciting for curious
There's a secret superfood in white rice and pasta: Here's how to unlock itMay 12, 2025
When it comes to rice and pasta, dieticians recommend eating brown or whole grain because they're more nutritious. But you can create a super nutrient in white rice and white pasta. Here's the trick.
The sushi cone that changed everythingMay 3, 2025
Inspired by ice cream cones, Tokyo’s “temaki-zushi” made sushi handheld, affordable — and a quietly radical moment in Japanese dining.
My Favorite Restaurant Served Gas — THE BITTER SOUTHERNERMay 1, 2025
With the arrival of Thank You Please Come Again, our new book by Kate Medley, we present its opening essay.
The Palisades Restaurant in EgglestonMay 1, 2025
Dine in a former general store from the Roaring Twenties, when Eggleston was a hot springs boomtown.
How to Cook With TunaApr 26, 2025
Take the pantry staple from dependable to delectable with these easy tips.
Sesame Balls-Jian DuiApr 22, 2025
Chinese deep-fried crispy sesame balls with black sesame filling or red bean paste filling. This can be served as breakfast or snack.
Burlap & Barrel on how Trump’s tariffs will impact the spice business - Fast CompanyApr 4, 2025
Burlap & Barrel built a business on foreign spices. Trump’s tariffs are about to hit its bottom line.
Tacos del CarmenMar 26, 2025
Don't be surprised if you run into some of Oaxaca's top chefs in line at this family-run taco stop.
Sachiyo Harada’s Visual Guide to Mastering Japanese CuisineMar 25, 2025
Sachiyo Harada’s new cookbook offers 100 classic recipes with step-by-step visuals, making Japanese cooking accessible to all skill levels.
Mise en Place: The Chef’s Secret to a More Productive and Organized LifeMar 3, 2025
People have different styles when they cook. Some people are neat and tidy. After taking out and using an ingredient they don’t need anymore, they return it to the fridge or cabinet. After chopping up vegetables, they clean up the scraps left behind. When a dish has been dirtied, they put it in the sink. […]
How Protein Mania Took Over the Grocery StoreFeb 22, 2025
Americans can’t get enough of its favorite macronutrient. Big Food is heeding the call.
A Guide to the Cardamoms of the WorldFeb 17, 2025
The Cardamom Expanded Universe is bigger than you think.
How One Austinite Is Bringing Central Texas–Style BBQ to ThailandJan 24, 2025
It hasn’t been easy sourcing smokers, big cuts of meat, and properly seasoned wood in Chiang Mai, but Davis Campbell, and his fiancée, Rotjana, do just that for their Dinky’s BBQ.
One-Bowl Lemon and Olive Oil Cake RecipeJan 21, 2025
This standalone lemon cake needs no adornment; no glaze or drizzle, no syrupy soak (just a light dusting of powdered sugar if you want it to be beauty contest-ready) – yet it practically oozes with glowing citrus flavor, thanks to the fruity olive oil, tangy yogurt and a dash of piney nutmeg that highlight the various facets of lemon’s character White chocolate and almond flour add hints of the nutty richness and velvety crumb of an almond torte to what looks like a simple yellow cake Always seek out organic lemons for zesting, as conventional lemons can be coated with a wax you shouldn’t eat.
The case for Japan-ifying everything you cookJan 12, 2025
“Wafu Cooking: Everyday Recipes with Japanese Style” coins the term “wafuing” — shorthand for bringing Japanese flavors into anything and everything.
Maitake au Poivre RecipeJan 8, 2025
Hold the steak This vegetarian take on steak au poivre, from Manhattan’s Café Chelsea, boasts the same generous application of crushed black pepper, mellowed with cream, stock and a vibrant splash of Cognac, but calls for slabs of maitake mushroom instead of beef To strut its meaty swagger, the dish is listed on Café Chelsea’s menu among the grilled choices (a grill pan or skillet works just as well) rather than being relegated to the vegetable section
Everything You Need to Know About GamayDec 29, 2024
The Gamay grape variety is synonymous with the Beaujolais region of France, but it also produces excellent red wines around the world.
How Tortillas Lost Their MagicDec 23, 2024
Most American tortillas taste like cardboard. Chefs, restaurants, and companies are trying to restore the corny glory.
Vanilla Wafers RecipeDec 21, 2024
These vanilla wafers go perfectly with banana pudding, can be made in less than 30 minutes, and don't require chilling! Recipe includes a how-to video!
How to Make Vospov Kofte (Red Lentil Kofte)Dec 20, 2024
Test cook Dan Souza makes a foolproof Vospov Kofte (Red Lentil Kofte) with host Bridget Lancaster.
Get our Vospov Kofte recipe: https://cooks.io/3y0zFZt
Buy our winning chefs knife: https://cooks.io/3tQ9mDh
Buy our winning large saucepan: https://cooks.io/2QQbsgK
Buy our winning baking sheet: https://cooks.io/2OTFRd8
Buy our winning bench scraper: http://cooks.io/2F4MQLG
Browse our latest recipes: https://cooks.io/3f0Hdoo
ABOUT US: Located in Boston’s Seaport District in the historic Innovation and Design Building, America's Test Kitchen features 15,000 square feet of kitchen space including multiple photography and video studios. It is the home of Cook’s Illustrated magazine and Cook’s Country magazine and is the workday destination for more than 60 test cooks, editors, and cookware specialists. Our mission is to test recipes over and over again until we understand how and why they work and until we arrive at the best version.
If you like us, follow us:
http://americastestkitchen.com
http://facebook.com/americastestkitchen
http://twitter.com/testkitchen
http://instagram.com/testkitchen
http://pinterest.com/testkitchen
The Secret History of RisottoDec 16, 2024
The dish is governed by a set of laws that are rooted in tradition, rich in common sense, and aching to be broken or bent.
The secret tricks hidden inside restaurant menusDec 2, 2024
Great thought and effort go into creating restaurant menus – and there are some very powerful psychological tricks employed to make you choose.
Extra virgin olive oil is the flavour of mechanisation | Aeon EssaysNov 12, 2024
Olive oil was revered and cherished by the ancients. But its distinctive peppery taste is really a modern invention
The truffle industry is a big scam. Not just truffle oil, everythingNov 6, 2024
You may be familiar with the truffle oil scam, but everything else you think you know about truffles is probably a lie too.
The Surprising Story of How Peaches Became an Icon of the U.S. SoutheastOct 25, 2024
The Spanish brought peaches to the U.S., but Indigenous peoples spread the fruit across the eastern half of the U.S.
The Vivid Second Life of a Mexican Supper ClubOct 20, 2024
In a colorful space in Hamilton Heights, Cocina Consuelo does serious renditions of beef birria, mole negro, and cinnamon-scented café de olla.
Allrecipes America’s Most Unruly Cooking Web SiteOct 19, 2024
The immensely popular crowdsourced recipe site has an aura of shambolic good will, something between a church cookbook and a fan-run Wiki.
The Mystery of the Masters' Pimento CheeseOct 19, 2024
The $1.50 pimento cheese sandwich at the Masters is as legendary as the golf tournament itself. Here's the secret behind this classic Southern sandwich.
Amid a Disastrous Crawfish Harvest, Louisiana Restaurateurs and Farmers Wonder What’s NextOct 19, 2024
Hard shells and claws can’t protect crawfish from a double hit of drought and cold
How to Get Rich From Peeping Inside People’s FridgesJul 31, 2024
Forget the S&P 500. Look at the ice cream. This investor visits homes around the world to see where diets—and economies—will go next.
All Meat Church Merch – Page 4Jul 15, 2024
This is where you can find the best BBQ merchandise online.
Grilled Chorizo Sandwiches with Chimichurri (Choripán)Jul 14, 2024
Casually eaten and widely beloved in Argentina, these grilled sausage sandwiches are great with a cold beer.
Book Review: Refrigeration and the Many Virtues of the Cold ChainJul 13, 2024
Nicola Twilley’s "Frostbite" explores how refrigeration has shaped everything over time from our guts to economies.
3 Degrees and $100M of Product: What It’s Like to Work a Shift in a Cold StJun 28, 2024
Cold storage warehouses are essential to America’s food system. In "Frostbite," Nicola Twilley tries out a shift alongside the Americold workers who form one link in our vast cold chain.
Pizza in America Is Better Than EverJun 26, 2024
Since the early 2000s, the variety and quality of pizza made by ambitious chefs all over the country have only gotten better.
Creamy Coconut-Lime Rice With PeanutsJun 24, 2024
Coconut milk does double duty here in this light yet hearty rice dish that straddles the line between side salad and pilaf-like main First the rice is simmered in creamy coconut milk, then the remaining milk is used to make a soothing dressing spiked with lime juice, peanut butter, toasted peanuts and garlic, with a little added heat from chile sauce Fresh cherry tomatoes and chopped herbs turn it all into a rice salad that can be a flavorful side for grilled chicken or the base for fried eggs.
How onigiri, not as famous as ramen or sushi, became Japan’s soul foodJun 23, 2024
The humble sticky-rice ball’s popularity has shot up because it’s simple to make, is gluten-free and is versatile.
The Man Who’s Going to Save Your Neighborhood Grocery StoreJun 16, 2024
American food supplies are increasingly channeled through a handful of big companies: Amazon, Walmart, FreshDirect, Blue Apron. What do we lose when local supermarkets go under? A lot -- and Kevin Kelley wants to stop that.
The Utopian Promises and Novelty Cheese of a Discount Grocery StoreJun 16, 2024
The future of grocery shopping might just be a 100-year-old grocery chain with a cult following.
How to Eat Your Way Through 24 Perfect Hours in ParisJun 7, 2024
Brioche pastries for breakfast, a Michelin-starred tasting menu for lunch, an ambitious vegetable-forward dinner, and all the wine and oysters you can handle in between.
It’s the first taquería in the world to get a Michelin star. Here come theMay 30, 2024
For the first time, a taco stand wins a Michelin star. Some taco aficionados in Mexico City are unimpressed.
Vietnamese Daikon and Carrot Pickles (Do Chua)May 21, 2024
Julienned carrots and daikon in a salty-sweet vinegar brine are the perfect quick condiment for grilled meat, sandwiches, or classic Vietnamese banh mi.
The Ultimate Gulf Coast Seafood CrawlMay 21, 2024
Work your way up the shoreline at these longtime waterside spots, where you can dive into fried-shrimp baskets, fish tacos, and maybe a Stingarita or two.
How to Apéro Like the FrenchMay 20, 2024
Rebekah Peppler shines a spotlight on a beloved French tradition that you can try at home.
The hot business of cold storageMay 12, 2024
Diets, demographics, desertification: what trends aren’t growing the global cold chain?...
The Giddy Delights of Trompe L’Oeil CandyMay 11, 2024
The long history of — and current appetite for — trompe l’oeil sweets.
I Was at the Clapperboard for Orson Welles’ Drunk Wine CommercialMay 10, 2024
I also helped undress him so he could lie down
Hear that? That’s the sound of an ultrasonic cold brew coffee ready in undeMay 7, 2024
UNSW Sydney engineers have utilised sound waves to cut the time it takes to make a cold brew coffee from many hours down to mere minutes.
The Country Bumpkins who gave us Parisian Café CultureMay 5, 2024
The Country Bumpkins who gave us Parisian Café Culture - Editor's Picks - Messy Nessy Chic
This Restaurant Offers Free Wine if You Put Away Your PhoneApr 16, 2024
Al Condominio, a restaurant that opened last month in Verona, Italy, would like for its patrons to fully enjoy the social aspects of public dining. This requires putting away phones and, hopefully, talking to other human beings who are physically present.The Guardian reports that to encourage socializing, the restaurant encourages patrons to lock their phones in boxes. Once seated at a table, the patron hands the box key to a waiter, who provides free wine. So far, about 90% of patrons participate in thi...
Saffron: The Story of the World’s Most Expensive SpiceApr 4, 2024
Appearing in the written record as early as 2300 BCE, saffron can be traced in foodways around the globe, despite the finicky nature of its harvest.
The Hottest Restaurant in France Is an All-You-Can-Eat BuffetApr 1, 2024
Les Grands Buffets features a seven-tiered lobster tower, a chocolate fountain, and only what it considers traditional French food. Gourmands are willing to wait months for a table.
A Hearty Irish Bread Absolutely Anyone Can MakeMar 11, 2024
This brown bread recipe, a staple of the Ballymaloe Cookery School in Cork, Ireland, is as satisfying and foolproof as they come.
The 38 All-Time Best Food MoviesMar 11, 2024
What to add to your Netflix queue when you want to feel really hungry
The Unique History of Japanese Plastic Food SamplesFeb 29, 2024
Tokyo Weekender went to Yamato Samples in Toshima city to find out the ins and outs of Japan’s fascinating food sample culture.
Millions of women are 'under-muscled.' These foods help build strengthFeb 22, 2024
We start to lose muscle in our 30s, and the loss accelerates with age, putting us at risk of frailty later in life. But what you eat — specifically how much protein — is a big part of the solution.
Why is Diet Coke so expensive in 2023? - VoxFeb 21, 2024
The economy, explained by your Diet Coke and soda prices, kind of.
The Twilight of the American SommelierFeb 21, 2024
The job, once seen as an essential feature of any establishment serious about wine, now seems to be a luxury in the post-pandemic restaurant economy.
What really caused the sriracha shortage? 2 friends and the epic breakup thFeb 10, 2024
Sauce-maker David Tran and farmer Craig Underwood came together from different worlds to create an American icon. After 28 years, it fell apart in one day.
Your CartFeb 6, 2024
Liquid logistics: The fine art of wine transportationFeb 6, 2024
Wine transport is as old as the craft itself, but as the business grows globally wine shipping companies face many challenges. Join us as we uncork the world of liquid logistics and wine shipping services.
Where Southerners Go to Fill the Tank and Feed the FamilyJan 30, 2024
Are they gas stations that serve food or restaurants that pump gas? A new photography book explores the lure of these restorative community rest stops.
The Right Way to Sauce PastaJan 28, 2024
Pasta heated in the skillet with sauce has a vastly different and superior flavor and texture compared with pasta that is simply sauced on the plate. No matter how great a sauce you can make, if you don't sauce your pasta correctly, you're missing out on one of life's greatest pleasures. Conversely, even a so-so jarred marinara sauce can be improved upon by finishing it off right. Here's how to properly sauce your pasta, step by step.
Please sir, I want Sumo: How Sumo wrestlers fuel up for fightsJan 16, 2024
A look inside the sport’s nutrition — and one dish in particular — reveals athletes who are much healthier than many of us realize. | Sport
The Best Restaurants in New OrleansOct 18, 2023
There’s plenty of great Creole and Cajun food, of course, but also outstanding Vietnamese, Indian and Trinbagonian cuisine.
Sweet Potato Stew With Chickpeas & Hardy GreensOct 15, 2023
This autumnal stew recipe is warm and cozy, ready in 30 minutes, and layered with rich, vivid flavors. It features sweet potatoes, chickpeas, and hardy greens.
We are sakuracoOct 7, 2023
Explore new authentic Japanese snacks every month. Indulge in hand-selected seasonal sweets, snacks and tea made by local makers. Worldwide shipping.
I Was a Pop-Tarts Taste TesterOct 6, 2023
When my family was enlisted nearly 60 years ago, little did we suspect that the pastry would become a pop-culture phenomenon and inspire a Seinfeld movie.
The Ultimate TexasTacopediaSep 28, 2023
Your guide to the many types of tacos around the state, where to find them, and how to enjoy them!
The Chemistry behind BourbonSep 27, 2023
The bourbon industry has been booming in recent years, but what sets all the different types of bourbon apart?
Eating bread when scared? There's science behind the Mexican 'bolillo' tradSep 13, 2023
Doctors, writers, cooks and anthropologists explain the origins behind eating the traditional roll after a fright; according to a researcher "our grandmothers were right ... it does work."
Why the world’s best vanilla is so easy to stealAug 16, 2023
A journey inside Mexico’s underground vanilla economy
Meet Luna: The New, Improved ‘Great-Granddaughter’ of the Beloved Hass AvocAug 9, 2023
A new variety of avocado that can withstand higher temperatures may soon find a home in South Texas.
Saraga Is the International Grocery Store of My DreamsAug 5, 2023
In a former Toys “R” Us, you can buy Nepali dumplings, get your eyebrows threaded, and pick up merguez sausages.
Revolutionary culinary collective Ghetto Gastro is bringing its goods to TaJul 31, 2023
Starting today, you can pick up Ghetto Gastro's new food goods at Target.
What Makes the Allsup’s Burrito So Legendary?Jul 29, 2023
It’s small-town Texas’s go-to convenience store snack. Texas Monthly’s taco editor finally gives it a go.
Lemon PossetJul 28, 2023
This 5-ingredient lemon posset is just the dessert you need this summer. It’s light and creamy with the perfect melt-in-your-mouth texture! You won’t be able to stop after one bite.
A Story of Pepper, the World’s Most Important and Underappreciated SpiceJul 24, 2023
How Arabs, Malabarians and Portuguese shaped the world in search of the 'black gold'
A funeral for fish and chipsJul 22, 2023
The long read: Plenty of people will tell you the East Neuk of Fife in Scotland is the best place in the world to eat fish and chips. So what happens when its chippies – and chippies across the UK – start to close?
The Condiment Packet GalleryJul 2, 2023
Meyer Lemon Mezcal MargaritaJun 17, 2023
These mezcal Margaritas are made with Meyer lemons, ginger, and Makrut lime leaves for a complex, smoky, floral cocktail.
This 1-Ingredient No-Cook Stock is at the Heart of Japanese Vegetarian CookJun 12, 2023
Konbu dashi lends flavor and depth to these three refreshing plant-based classics.
For a Chile Con Queso Like No Other, Head to Southern New MexicoMay 29, 2023
At Chope’s Town Bar & Cafe, one family has closely guarded a recipe that makes the most of the region’s beloved chiles.
Baking Powder vs. Baking Soda: How They’re Different, Which to Use When and MoreMay 24, 2023
While they serve a similar purpose, baking powder and baking soda are different and not necessarily interchangeable.
It’s May in Rome: A Time to Revere, and Fear, Fava BeansMay 13, 2023
Although favism, a blood disorder that can cause a violent reaction to fava beans, lurks throughout Italy, many Romans look forward to May, when the legumes are in season.
How Sight—Not Taste, Smell, or Touch—Became the Sense of the Supermarket -May 9, 2023
When it comes to buying food, sight has usurped all other senses. What are the consequences of relegating smell, taste, and touch to the sidelines?
16 Recipes for Becoming a Next-Level French CookMay 7, 2023
Once you know the basics of French cooking with dishes like vichyssoise and bouillabaisse, you're ready to move on to more advanced recipes for French classics like soufflés and coq au vin.
Why so many top restaurants are launching grocery store product linesMay 5, 2023
A bunch of razor-thin restaurant margins doesn’t make a fortune so much as a bed of razors.
Black Vinegar Doesn't Just Season a Dish–It Transforms It | Bon AppétitApr 30, 2023
It's umami in a bottle, baby.
This Ginger-Based Cocktail Is an Incredible Hangover CureApr 20, 2023
Shaky Pete's Ginger Brew is a semi-frozen cocktail from Hawksmoor's New York City location that calls for gin, ginger syrup, lemon juice, and London Pale ale.
8 French Sandwiches to Eat Before You DieApr 19, 2023
French sandwiches are a thing of glory. Here are the classic combinations with baguettes, butter, and more to eat the next time you're in France — or ASAP elsewhere.
Why Does a Plastic-Wrapped Turkey Sandwich Cost $15 at the Airport? - Hell GateApr 16, 2023
We filed a public records request, but the Port Authority is treating airport pricing like a state secret.
How America's Beloved Meyer Lemon Caused a Mid-Century Citrus PanicApr 13, 2023
The fragrant fruit hid a dark secret.
How to Make a Simple Roast Chicken, According to a French MomApr 12, 2023
Featuring butter, tarragon and Cognac, this reader-submitted recipe is simple, sophisticated and utterly stunning, Melissa Clark writes.
Allegheny Coffee & Tea ExchangeApr 9, 2023
Pittsburgh's home for gourmet coffee and tea in the heart of the Strip District. Specializing in single-origin coffee, organic and fair trade products, nitro coffee, and barrel-aged coffee.
How to Make BaguettesApr 8, 2023
Our recipe tester (and pro baker) demystifies the simple French bread recipe for home cooks.
How Cookie Jars Capture American KitschApr 6, 2023
The cookie jar continues to be a vessel for cheeky self expression, if not for cookies themselves.
The Best Biscuits Outside of the SouthMar 28, 2023
These uniquely layered, pillowy biscuits get a caramelized crust from a bit of extra sugar.
Carrot Maqluba RecipeMar 22, 2023
Maqluba is a traditional Palestinian dish made of rice, meat and fried vegetables, most often eggplants (in summer) or cauliflower (in winter), although some like to combine both, and add carrots as well There are probably as many variations of this dish as there are families A very popular, easy version is the one made with only carrots
The Timeless Draw of Decorating CookiesMar 17, 2023
Intricate designs painted by biscuit artist Ella Hawkins are part of a lengthy baking tradition
Fish Sauce, Loud and ProudMar 17, 2023
No longer a “secret weapon,” Southeast Asian cooks are getting creative with the traditional umami ingredient.
The Folklore-Filled History of AbsintheMar 8, 2023
Grab your spoons and sugar cubes, we're debunking the biggest myths surrounding absinthe.
The East Village Shop That’s Been the Magic Weapon of Chefs for Nearly 30 YearsMar 1, 2023
Restaurants seek out SOS Chefs for its hard-to-find spices, vinegars, and oils from every corner of the globe
Welcome to Hillstone, America's Favorite Restaurant | Bon AppétitFeb 26, 2023
It’s never going to win a James Beard Award. Or try to wow you with its foam experiments or ingredients you’ve never heard of. But it is the best-run, most-loved, relentlessly respected restaurant in America. And, oh yeah, Danny Meyer, David Chang, and Shaq all agree. Welcome to Hillstone.
A Pro Baker's Top 10 Essentials for Dabbling With DoughFeb 22, 2023
Mixing bowls, sourdough starter, whole wheat flour, and more.
Palestinian Food 101: Recipes to Get You StartedFeb 9, 2023
An introductory resource for cooking Palestinian food at home.
How saliva changes the flavor of foodJan 22, 2023
The liquid that our mouths produce isn’t just a lubricant. It plays an active role in how we perceive taste and can influence what we choose to eat, researchers are discovering.
Flour TripJan 20, 2023
During the pandemic, Americans have turned to baking in droves, but few of us know exactly how our flour is made. What happens when we start to find out?
All of the Tools You Need to Make Really Great Baguettes at HomeJan 19, 2023
The basic tools any home baker should arm themselves with before getting started, according to our rigorous tests and bread-making experts.
Hunting for Truffles Is a Perilous Pursuit, Especially for the Dogs Who DigJan 14, 2023
Truffles are big business, and some are trying to take out the competition by poisoning the dogs that accompany those known as “truffle hunters.”
The Economic Secret Hidden in a Tiny, Discontinued PastaJan 13, 2023
Ronzini says it didn’t want to halt sales of its star-shaped “pastina.” So why did it?
Homemade French BaguettesDec 19, 2022
Everything you need to know to make perfect French baguettes at home.
Chile Crisp RecipeDec 16, 2022
There’s just enough oil to slick all the crispy bits of chile, onion and sesame in this version of the spicy Chinese condiment, so it delivers as much crunch as it does salty, sweet, nutty heat Dried minced onion from the supermarket spice aisle is a shortcut for the usual step of frying fresh minced onion, and it improves the crispness, too You can experiment by mixing the hot and fruity flavors of different dried chile varieties, crushing them into flaky bits, or stick with ready-to-add red-pepper flakes
What it's like to be a food writer when you can taste everything you seeDec 15, 2022
People with synesthesia experience stimulation in multiple senses: hearing color, feeling sounds—or tasting everything they see. For a food writer, that can lead to some fascinating revelations.
Ka'ak al QudsDec 14, 2022
A sesame seed crusted exterior gives way to a sweet fluffy interior in these hallmark ka’ak breads synonymous with Jerusalem.
MansafDec 9, 2022
The quintessential dish of Bedouins, featuring lightly spiced lamb, fluffy rice, and a tangy jameed-based yogurt sauce, all piled on top of torn flatbread.
The weird world of soda flavoursDec 8, 2022
From drinks that taste like cough medicine to sodas that contain fish roe, there is a vast and varied landscape of flavours beyond the familiar cola and lemonade.
‘China’s hottest woman’: the driving force behind crunchy chilli sensation Lao Gan MaNov 22, 2022
Tao Huabi rose from humble origins in south-western China to create a beloved condiment that can now be found in fridges around the world
Blessed are the (tiny) cheesemakersNov 20, 2022
Cheese is not just a tasty snack — it’s an ecosystem. And the fungi and bacteria within that ecosystem play a big part in shaping the flavor and texture of the final product.
Life in the Slow LaneNov 17, 2022
Olivia Potts | Longreads | November 2022 | 16 minutes (4,649 words) It’s six in the morning, and Robert Booth has already been on the road for three hours. Sitting alongside him in the cab of his lorry (the British term for a truck) is Louis, Robert’s small dog, a Jack Russell-chihuahua mix, and a washing-up bowl […]
Why Prehistoric Herders Didn't Spit Out Their Watermelon SeedsNov 12, 2022
Thousands of years ago, Saharans ate the kernels before the fruit became sweet
What's the Difference Between Western and Japanese Chef's Knives?Oct 25, 2022
Here's what differentiates these two styles of chef's knives and why we think it's worth owning both. Plus, our tested chef's knife recommendations for both styles.
Recipe: How to make cannabis-infused caramelsOct 25, 2022
The leaves are browning, temperatures are dropping, and nothing suits a cozy night in than infused caramels. Here's how to make them.
The Evolution of the Diwali SweetOct 24, 2022
Desserts like burfi shaped like chocolate cigars with edible gold show mithai’s transformation
How to Buy the Best CoffeeOct 21, 2022
We asked our in-house coffee expert (who’s spent 15 years in the specialty coffee industry) to select their favorite coffee subscriptions.
How to Make the Juiciest Dumplings at HomeOct 21, 2022
According to Sandy Zheng of Beijing Restaurant and United Dumplings
Use the Leidenfrost effect to make your stainless steel pan non-stickOct 11, 2022
You can turn your stainless steel pan into a non-stick one in minutes. You'll need heat, a drop of water, and some good ol' science.
The 40 Top Restaurants Along The Pacific Coast HighwayOct 10, 2022
The Pacific Coast Highway is among the most gorgeous routes in the United States, and there are plenty of great restaurants to hit as you drive it.
The Best Jewish Food Cookbooks (for Noshing Your Way Through the Holidays)Oct 1, 2022
From classic to innovative, these Jewish cookbooks will teach you how to make Israeli street food, West African-inspired brisket, and way, way more.
A Guide to Thai SoupsSep 30, 2022
An introduction to the three main types of Thai soups: herb-infused soups, clear soups, and Chinese-style soups. Here is a guide to what makes them different, and how to start making them at home.
Drinking Ginger Water Can Actually Help With PMS, Research SaysSep 29, 2022
Its anti-inflammatory properties are no joke.
A good biscuit is a work of art. You won't want to miss Melissa M. Martin's variation, which utilizes this season's sweet potatoes:Sep 27, 2022
— Garden & Gun (@gardenandgun)
A Pesto for Every Pantry and MoodSep 23, 2022
Use the Ligurian sauce as a guideline and make tastier sandwiches, soups, pastas, gratins and more.
Pay Attention to Deviations from Mainstream IncentivesSep 19, 2022
The second part of a three part piece on incentives. It turns out that if you've grokked the primary incentives of an industry, you can do one other thing: identify aberrations, and use that as a guide to dig further.
The Japanese tradition of raising and eating wasps | The Splendid TableSep 19, 2022
Guest producer Soleil Ho, the food critic for the San Francisco Chronicle, travels to Kushihara, a mountain village in Japan where wasps are a seasonal delicacy, to learn more about the region's traditional eating of insects.
The family that built a ballpark nachos monopolySep 18, 2022
Anytime you order nachos at a sporting event, there’s a good chance they came from a molten-cheese empire in San Antonio, Texas.
The Mysterious, Stubborn Appeal of Mass-Produced Fried ChickenSep 17, 2022
Why do so many accomplished chefs call Popeyes their favorite fried chicken?
#17: One kitchen, hundreds of internet restaurantsSep 16, 2022
There are a few cloud kitchen restaurants that deliver food that is so shit that I want to know which other brands are being run from the same kitchen so that I can avoid them all.
NakedPack uses edible, soluble food packaging to give you a complete mealSep 14, 2022
https://vimeo.com/721917759?embedded=true&source=vimeo_logo&owner=125548125 One of the most wasteful and mostly non-biodegradable things we have lying around is food packaging. But if you buy your food or ingredients in "traditional" supermarkets or from the usual brands, you know that sustainable packaging is not their utmost priority. There are product designers and creators out there that are concerned about
The Missing Chinese Machine RevolutionSep 5, 2022
Before the industrial revolution, there had been a significant increase in machinery use in Europe. Why not in China?
Grilling the Perfect SteakSep 2, 2022
Grilling steaks truly is like art. How you grill a steak will separate you from the majority of the guys on the block and might even impress the ladies.
Meet Pinky Cole, the force behind Slutty Vegan’s booming empireAug 30, 2022
Pinky Cole's Slutty Vegan brand has grown from an Atlanta-based restaurant chain to burgeoning national brand — and she's just getting started.
Scientists Fed Rats Sugary Soda for Two Months and They Got Demonstrably StupiderAug 24, 2022
A recent study showed that feeding rats Cola-based soft drinks like Coke and Pepsi caused enough damage to their brains to cause... uh, some... stupidity.
J.Q. Dickinson Appalachian MercantileAug 21, 2022
Curator of Appalachian food, crafts, home and bath goods. Get a subscription to have an assortment delivered monthly or seasonally. Appalachia's finest goods. Appalachia is home to high quality artisans and producers. We want to share these fine products with the world.
Why Are Border Smugglers Trafficking Bologna?Aug 17, 2022
The tons of contraband lunch meat seized at the U.S.-Mexico border tell us something about the market value of nostalgia.
Le bon temps continue to roll on Cajun radio in Southern LouisianaAug 15, 2022
Eight radio stations in Southern Louisiana still broadcast partially in French as they try to keep alive a dying language in the area. French has been spoken there since the mid-1700s.
The Economic Principle That Helps Me Order at RestaurantsAug 14, 2022
If you’re just eating one dish, you’re missing out.
Can a grocery store teach its customers to love to cook?Aug 12, 2022
A grocer in Utah is opening a store that aspires to focus on meal prep instead of just selling groceries, guiding customers to cook creatively with a limited number of locally produced ingredients. Will a grocer with a stripped-down inventory, dedicated to helping customers with meal prep, succeed in the long run?
The Secret Life of Leftovers — The New AtlantisAug 12, 2022
Cheese, curry, beer: We can thank our ancestors who put food scraps to creative use. What we’re leaving our children is garbage.
Za'atarAug 8, 2022
Fragrant herbs dried at home create a blend that pairs perfectly with countless dishes (and is perfect even on its own).
Is the Minimalist Restaurant Menu Over?Jul 30, 2022
More than ever, diners need actual descriptions of what they’re eating
When Did Peanut Butter Get So Cool?Jul 28, 2022
Like coffee, ice cream, and chocolate, nut butter is having its connoisseur moment.
A Traveling Jewish Deli Exhibit Tells an American Tale in Pickles and PastrJul 23, 2022
“I’ll Have What She’s Having,” a traveling exhibit on the Jewish delicatessen, looks back at a vibrant institution fueled by immigration and irresistible food.
Samoon | Traditional Bread From Iraq | TasteAtlasJul 20, 2022
Samoon is a traditional Iraqi yeast bread characterized by its unusual diamond shape. The bread is usually baked in a tandoor oven, and in Iraq, shops that sell samoon often have yellow diamonds painted on the outside to signify what awaits inside
The Case for Bad CoffeeJul 19, 2022
Lately, something has changed. Lately, I've been reacting to fancy coffee the same way a child reacts to an accidental sip of red wine mistaken for grape juice. I don't know when it happened, but I've devolved into an unexpected love affair with bad coffee. It's not just instant coffee that I hanker for each morning, either, it's any subpar coffee I can get my hands on.
Dinner Parties Are No Longer About Showing OffJul 17, 2022
Hold the fancy china—it's time to get comfy.
A Guide to Barbecue Around the World—in All Its Tangy, Spicy, and Charred GloryJul 13, 2022
A roadmap for exploring tasty traditions in more than 20 countries.
Hacker NewsJul 11, 2022
From a salt substitute in China’s impoverished southwest to a fixture on tables nationwide, chili peppers have come a long way over the past 400 years.
The Secret to Better Home Fries? Cook Them Like the French DoJul 10, 2022
How to make pommes persillade (potatoes with parsley and garlic).
Recipe: Laotian lettuce wrapsJul 9, 2022
Light and fresh, this Southeast Asian favorite works as a party snack and a full meal.
On the Sonoma Coast, Fog, Wind and Exceptional WineJul 4, 2022
At Peay Vineyards, a coastal pioneer, reflecting on the evolution of an appellation, following one’s muse and seeing tastes grow more diverse.
Lifelong Quests! Lawsuits! Feuds! A Super-Serious Story About Cereal.Jun 27, 2022
The world’s most obsessive breakfast-food fans demonstrate just how far humans will go for the sweet taste of nostalgia.
When Baking and Real Estate CollideJun 16, 2022
Tartine, a beloved San Francisco bakery, wanted to grow. Partnering with a developer was one way to rise.
How Cup Noodles Became One of the Biggest Transpacific Business Success Stories of All TimeJun 13, 2022
There was a time when eating out of Cup Noodle’s iconic packaging exuded cosmopolitanism.
The Engineering of the Chain Restaurant MenuJun 7, 2022
At IHOP and Applebee's, menus are sales documents. And navigational guides. And explainers.
Easy No Knead BreadJun 7, 2022
FOOL-PROOF and only 4-ingredients! So hearty and rustic with the most amazing crust + fluffy, soft, chewy inside. Seriously, SO GOOD.
Chemistry of Cast Iron Seasoning (2010)Jun 2, 2022
So You Want to Be a Bootlegger | The Saturday Evening PostMay 30, 2022
In a 1922 Post article, an ex-bootlegger offers advice for how to break into the business.
Here’s How to Make Olive Oil Like an Ancient EgyptianMay 18, 2022
An archaeologist pieces together a recipe for olive oil crafted in ancient Egypt. It’s easy for you to try at home.
3 Must-Know Mexican Spirits Worth a Spot on Your Bar CartMay 17, 2022
While we're making room for these, we'll never stop loving you, tequila and mezcal.
The Shortcut Magic of Mole PasteMay 17, 2022
Andrea Aliseda shares five recs for this pantry hero (plus the chilaquiles you should make with it).
Hacker NewsMay 15, 2022
The story of See’s Candies reminds us of the importance of consistency, quality, and long-term growth in investing.
The Rickety Economics of Food TrucksMay 15, 2022
Can you ever do more than break even when selling hot dogs, kimchi-flavored tacos, lobster rolls or ironically-shaped pretzels to the fickle masses?
From Our Cooking NewsletterMay 8, 2022
Sam Sifton and Melissa Clark’s Suggestions is a group of recipes collected by the editors of NYT Cooking.
18 Recipes You Should Learn by Heart (Published 2022)May 3, 2022
Memorize these easy dishes and techniques, and you’ll have an arsenal of easy meals at hand.
You Can Have Torta Rustica, an Easter Pie, Any Time of YearApr 14, 2022
Melissa Clark’s take on torta rustica, a Southern Italian mainstay, is full of ricotta and spinach.
The world's oldest dessert?Apr 10, 2022
Although chickpeas and beans don't usually belong in a pudding, they are core ingredients in one of the oldest – and, some say, one of the most delicious – desserts in the world.
Sassquatch Coffee Mug by Sophie Corrigan | Society6Apr 9, 2022
Buy Sassquatch Coffee Mug by Sophie Corrigan. Worldwide shipping available at Society6.com. Just one of millions of high quality products available.
Best Spaghetti with Lemon Pesto Recipe - How to Make Spaghetti with Lemon PApr 8, 2022
This lemon pesto spaghetti is adapted from spaghetti al pesto di limone we had in Amalfi, Italy. We use almonds, Parmesan and chives and add zest to the water.
How to Make Conchas - The New York TimesMar 27, 2022
The popular Mexican sweet bread, with its seashell-shaped topping, is a delight when prepared right.
14 Things to Buy at H Mart, America's Favorite Korean Grocery StoreMar 17, 2022
Kimchi, gochujang, and more.
Everything You Ever Wanted to Know About SumacMar 16, 2022
Beloved for its wonderful tartness, sumac is a spice that goes well with just about anything
How Sugar Affects the Brain, According to a Neuroscience ExpertMar 6, 2022
Not surprisingly, you need sugar to function—but cravings are actually a result of too much.
Revolución on the Cookie Factory FloorMar 4, 2022
The new owner of Argentina’s de facto national treat stopped paying his majority-female workforce — so they seized control of the entire operation.
The rise, fall and potential resurrection of a coffee brewing legendFeb 25, 2022
Bonavita was one of the first to make a good affordable at-home automatic drip coffee machine. Recent legal battles put its future in limbo.
How Heinz uses a fake number to keep its brand timeless | CNN BusinessFeb 24, 2022
Heinz has been linked to the number 57 for more than a century. The company’s “57 varieties” slogan was a key part of its early strategy to attract consumers. It’s still featured on Heinz ketchup bottles today and is central to the brand’s identity.
Flour TripFeb 18, 2022
During the pandemic, Americans have turned to baking in droves, but few of us know exactly how our flour is made. What happens when we start to find out?
20 Cannabis Edibles That Are Truly, Actually DeliciousFeb 18, 2022
The world of cannabis is bursting with new flavors—here are ones worth picking up.
Heart of MoldFeb 9, 2022
Why we’re obsessed with heart-shaped foods around Valentine’s Day—especially the suddenly ubiquitous heart-shaped pizza.
Drugs, Punk Rock, and Handmade Street Pasta: How Popping-Up Gave This BurntFeb 5, 2022
Estrano was born out of how restaurants are changing in L.A. It is talent outside of convention and growing from darkness. Estrano is a fuck you and a love letter to restaurants at the same time.
Johnnie Walker Penicillin | VinePairFeb 3, 2022
Served on the rocks with candied ginger, the Johnnie Walker Penicillin shines equally as an aperitif or an after-dinner palate cleanser.
America’s Next Food Craze Is Buried in AppalachiaFeb 3, 2022
All over America’s ancient eastern mountains, there’s an organism that lives underground, tethered to tree roots, waiting to be hunted. It’s among the world’s rarest and most expensive foods, and it grows in a wide range of conditions. But there’s only one guy in the country who really knows how to find it. Rowan Jacobsen joins him in the search for the Appalachian truffle.
How to Fry Fish: The Ultimate Guide on Everything from Oil Temperature to Batter RecipesJan 30, 2022
Here’s your guide on how to fry fish like a pro
The reason some vegan alternatives don't taste like meat - BBC FutureJan 29, 2022
Some of the qualities that make meat "meaty" are hard to reproduce with plant-based alternatives. Should we be focusing on replicating them – or trying to make new, tasty alternatives?
Plastic-Free Shopping Is Going MainstreamJan 29, 2022
A partnership between America's largest supermarket chain and a reusable packaging company is a sign that no-waste shopping is catching on.
Spice up your life! 22 sensational seasonings that aren’t salt or pepperJan 29, 2022
Why stick to the same condiments when you can zhoosh dishes up with za’atar or add some yummy yaji? Some of Britain’s best chefs suggest their favourite additions
The (Other) French Chef | HazlittJan 7, 2022
Julia Child's collaborator Simone Beck has lingered as an object of pity in public memory. But maybe Beck didn’t want stardom at all.
Still She Rises — THE BITTER SOUTHERNERJan 7, 2022
Biscuit-whisperer Erika Council honors the women who taught her to bake a perfect biscuit.
Sonoma County farm finds first truffle - Los Angeles TimesJan 7, 2022
The Alexander Valley Truffle Farm has found its first truffle almost a decade after planting its truffle orchard in Geyserville, Calif.
In West Bengal, Date Palm Jaggery Is a Winter Delicacy. It’s Also in Danger of Extinction.Jan 3, 2022
Valued for its seasonality and hyper-local terroir, date palm jaggery is facing an array of threats, from urbanization to climate change
The Incredible FigDec 27, 2021
The fig is an ecological marvel. Although you may never want to eat one again.
Where the Tupelo Grows — THE BITTER SOUTHERNERDec 26, 2021
Beekeeping helped Gary Adkison pull his life together. Now he's among the tenacious harvesters of tupelo honey.
I Write About Food Every Single Day, And These Are The Most Clever Food Tips I've Learned RecentlyDec 26, 2021
Instantly upgrade boxed cake mix, make better pasta with one simple ingredient, and so much more.
Lemon Bars With Olive Oil and Sea Salt RecipeDec 24, 2021
Traditional lemon bars balance the tangy sweetness of lemon curd with a rich shortbread crust This recipe adds extra notes of flavor to the mix: the compelling bitterness of good olive oil and a touch of sea salt sprinkled on top They lend a mild savory character to this childhood favorite, making it a little more sophisticated than the usual lemon bar, but just as compelling
Umami Exists and MSG is its MessengerDec 18, 2021
For a long time, I thought MSG was a food additive more like "Red 40", that it had some obscure food-science use and junk food companies were either too lazy or callous to replace it. It turns out it's more like salt. Good luck taking that out of your Cheetos.
Cioppino (San Francisco Seafood Stew)Dec 15, 2021
A hearty Italian-American seafood stew chock full of shrimp, clams, mussels, crab, and more.
The Story of Carolina Gold, the Best Rice You've Never TastedDec 12, 2021
Due in large part to Glenn Roberts of Anson Mills, a Georgia optometrist, and several members of what's known as the Carolina Gold Rice Foundation (yes, that exists), Carolina Gold rice is back, allowing a new generation of home cooks to experience what real Lowcountry cooking was meant to taste like.
Spicy Pork Tamales RecipeDec 12, 2021
Braise pork shoulder in a mixture of chilies, veggies, and annatto seeds, then nestle it in masa and steam until fluffy for the ultimate holiday recipe.
Bros., Lecce: We Eat at The Worst Michelin Starred Restaurant, EverDec 10, 2021
There is something to be said about a truly disastrous meal, a meal forever indelible in your memory because it’s so uniquely bad, it can only be deemed an achievement. The sort of meal where everyone involved was definitely trying to do something; it’s just not entirely clear what. I’m not talking about a meal…
Crispy Garlic Chili Oil RecipeDec 8, 2021
Toasted nuts, seeds, and garlic bring on the crunch in this seriously addictive and spicy condiment.
In New Mexico, Money Grows on TreesDec 8, 2021
The painstaking process of picking piñon makes for a booming roadside economy for the Navajo Nation and other Indigenous Americans
The Loss at the Heart of Guy Fieri’s Entertainment EmpireNov 29, 2021
"Diners, Drive-Ins and Dives" is a mainstay of basic cable—and a rallying cry for a country that is losing touch with itself.
The World’s Deadliest Thing — Anthony WarnerNov 23, 2021
It is deadly, invisible and shapes much of the food we eat. A teaspoon of it could kill millions of people, and it is probably the most expensive material on earth. Yet you probably have some stuck to the bottom of you shoe.
How Fish and Chips Migrated to Great BritainNov 22, 2021
The fried fish was introduced by Jews fleeing religious persecution.
Bulk Yemeni Coffee - Al MokhaNov 21, 2021
Purchase a 5-pound bulk bag "Reserve" coffee matches our rotating selection of regional-lot coffees. (Specific origin requests? Put them in order notes at checkout.) Takes up to 5 - 7 business days to process Questions? Wholesale needs? Contact us. Veteran-owned small business Washington, DC S Stability Certified
Follow These 5 Steps to the Best Banh MiNov 9, 2021
A foolproof formula for building this uniquely Vietnamese sandwich.
A Hot Bowl Of Homemade Shoyu Ramen Is Worth Every SecondNov 8, 2021
Introducing: The most rewarding weekend project.
Inside Ekiben’s six-hour trip to make a special dish for customer dying of cancerNov 2, 2021
It flurried all day Sunday in Vermont. Ekiben co-founder Steve Chu watched the flakes with dread. Snow in the fryer would be trouble. This is the story of how the owners of Baltimore’s most p…
Hatch green chiles are feeling the heatOct 26, 2021
Growers of New Mexico’s iconic crop wrestle with drought, water rights and labor shortages.
An NYC Chef’s Flavor-Building Pantry Staples, None of Which Are Olive OilOct 24, 2021
Plus recipes that star the ingredients.
How to Make a Fried Catfish Po’Boy SandwichOct 1, 2021
Few fish taste better than fried catfish, and this sandwich is the perfect recipe for it.
The Wild Story of Manuka, the World’s Most Coveted HoneySep 25, 2021
New Zealand’s manuka honey is celebrated for its unique healing properties and is in demand from London to Hollywood. This is the unusual history of an even more unusual honey.
How to Use Canned Chipotles—the Smoky, Spicy Peppers We Always Have on HandSep 24, 2021
Chipotle peppers in adobo sauce are one of our favorite canned foods. We always have a can of these chiles on hand so we can use them in dips, marinades, sauces, slow-cooker meals, and more. Here's everything you need to know about this magical ingredient.
A rare treat getting rarer: Chimayo Red New Mexico's 'holy chile'Sep 24, 2021
A beloved heirloom variety of New Mexico red chile commands high prices because of its scarcity. Finding farmers to continue cultivating it has become a challenge.
The Million-Dollar NoseSep 5, 2021
With his stubborn disregard for the hierarchy of wines, Robert Parker, the straight-talking American wine critic, is revolutionizing the industry -- and teaching the French wine establishment some lessons it would rather not learn.
Serving Up West Virginia History, Not All of It Sweet (Published 2019)Aug 21, 2021
While big-name chefs take up Appalachian cooking, a farm couple are using old seeds and recipes to tell a more complex story and lift up their region.
The Queen of Delicacies — THE BITTER SOUTHERNERAug 20, 2021
Shane Mitchell writes about peaches: the stone fruit that has come to define the often terrible but persistent beauty of the South.
Pastis, an iconic French aperitif, makes a comebackAug 15, 2021
A new generation of artisanal distillers infuses Provence’s beloved aniseed drink with fresh vitality—and flavors.
Lifelong Quests! Lawsuits! Feuds! A Super-Serious Story About Cereal.Aug 5, 2021
The world’s most obsessive breakfast-food fans demonstrate just how far humans will go for the sweet taste of nostalgia.
Everything You Always Wanted to Know About VanillaJul 30, 2021
The world of vanilla products is as rich as it is potentially confusing. Here’s how to navigate it.
How Pork Rinds Ditched the ‘Junk Food’ LabelJul 20, 2021
The shift to “wellness” and changing class signifiers have turned fried pork skin into a “healthy” snack that's earned space on Whole Foods shelves.
The unique culture of Japanese convenience stores - BBC TravelJul 10, 2021
The true star of the Akutagawa Prize-winning novel Convenience Store Woman is the convenience store itself. But what is it that makes these shops so magical?
The Deep Roots of the Vegetable That ‘Took Over the World’Jul 3, 2021
A study digs up the origin of the single species that gives us turnips, bok choy, broccoli rabe, and more.
Pastis, a Perfect Aperitif for the Lazy Days of Summer (Published 2021)Jun 27, 2021
It’s no more than a blend of water and spirit, but for a relaxed afternoon, it can’t be beat.
Chefs share their best tricks for making 16 foods everyone should know how to cookJun 23, 2021
Whether it's mashed potatoes or omelets, everyone should perfect a handful of recipes. Insider asked chefs to share their best tips for go-to meals.
Bringing the sass(afras) and other spices to root beer makingJun 20, 2021
Root beer dates back to colonial times, where roots of plants made a low-alcohol beverage. Peter Bahlawanian of Spice Station describes what is needed for a traditional root beer, including sassafras, sarsaparilla, cherry bark, and licorice bark.
The Elusive Story of the Bread-and-Butter Pickle SandwichJun 19, 2021
In which one writer seeks to understand the Depression-era (maybe?) staple.
The birthplace of the modern apple - BBC TravelJun 19, 2021
When a Russian scientist identified the Malus sieversii as the progenitor of the domestic apple, harvests in Kazakhstan’s forests were bountiful; now this wild fruit is threatened.
How to Start Cooking: Tips from the ProsJun 7, 2021
Skip cooking school and learn how to thrive in the kitchen from the experts themselves.
How to Build a Better Dinner - The New York TimesJun 7, 2021
To be a faster, more creative cook, take a cue from restaurant chefs, J. Kenji López-Alt suggests, and rely on culinary building blocks.
At Grocery Stores, It's Hard Work Picking Your Online Order - The New YorkJun 7, 2021
The technology needed to fulfill orders is costly for stores, and the workers who pick items off the shelves often feel the pressure of being tracked.
Meet the Appalachian Apple Hunter Who Rescued 1,000 'Lost' VarietiesJun 4, 2021
Tom Brown's retirement hobby is a godsend for chefs, conservationists, and cider.
America Loves Gas Station Snacks. Here Are Some of the Finest by RegionMay 31, 2021
From Buc-ee’s Beaver Nuggets to 7-Eleven Spam musubi
Spaghetti With Fried Eggs RecipeMay 31, 2021
Here's a quick and delicious pasta dish to make when you have little time, and even less food in the house All you need is a box of spaghetti, four eggs, olive oil and garlic (Parmesan is a delicious, but optional, addition).
Shrimp TacosMay 24, 2021
The BEST shrimp tacos recipe with a creamy cilantro lime taco sauce and crunchy slaw. Juicy, spicy, and so quick and easy! Cook on the stove or grill.
How to Use Onions, Garlic, Shallots and MoreMay 17, 2021
Ever wonder about the difference between a spring onion and a scallion? A ramp and a scape? Melissa Clark has a crash course for you.
The Unlikely Success of Fish Sticks | Hakai MagazineApr 26, 2021
From unappetizing “fishbricks” to cultural darlings, the 1950s convenience food has enjoyed a winning streak—no less so than during the COVID-19 pandemic.
Mexican Street TacosApr 24, 2021
Mexican Street Tacos - Easy, quick, authentic carne asada street tacos you can now make right at home! Top with onion, cilantro + fresh lime juice! SO GOOD!
How to make tonpeiyaki cabbage and pork omeletteApr 24, 2021
The much-easier cousin of okonomiyaki, stir-fried pork and spring cabbage are sandwiched between an omelette for a light, quick meal.
The Cold War Over Hacking McDonald’s Ice Cream MachinesApr 23, 2021
Secret codes. Legal threats. Betrayal. How one couple built a device to fix McDonald’s notoriously broken soft-serve machines—and how the fast-food giant froze them out.
How to Make Fresh Homemade PastaApr 20, 2021
No matter your age, skill level, or kitchen set-up, you (yes, you) can make fresh pasta at home. Here’s how.
The Unlikely Rise of the French TacosApr 12, 2021
How an upstart fast food became essential dining in the home of haute cuisine.
A Hedonist’s Guide to Dining in and Around Big BendApr 10, 2021
For a food obsessive like me, Big Bend’s culinary scene rivals the nature.
Authentic HummusApr 8, 2021
This is the best hummus recipe (seriously.. the BEST!) based on authentic Lebanese method. If you want the smoothest, creamiest hummus this is it!
Low effort, huge reward: readers recommend 10 very easy, supremely tasty recipesMar 29, 2021
A delicious, hearty meal needn’t take much time to make. Here are some startlingly quick options for big taste sensations – from midnight spaghetti to fried green plantain
The Timeless Fantasy of Stanley Tucci Eating Italian Food | The New YorkerMar 27, 2021
In CNN’s culinary travel series, Italy is beautiful and the food of Italy is beautiful. Not insignificantly, Tucci is beautiful, too.
Pan-Baked Lemon-Almond Tart RecipeMar 19, 2021
This flourless, crustless tart is rich, moist, sweet and and prepared almost entirely on the stovetop (with the exception of a few minutes spent under the broiler to crisp the top) It is the ideal decadent breakfast, a new twist on the classic coffeecake or last-minute dessert.
Tuna’s Last Stand | Hakai MagazineMar 14, 2021
Skipjack are the world’s most abundant tuna. They’re resilient, but can they outswim our demand for this pantry staple?
Will Fish Sauce and Charred Oranges Return the World Covid Took From Me? (Published 2021)Mar 9, 2021
Regaining my sense of smell is tedious and slow, but I’m using the only therapy proven to work.
Guobing: the giant Chinese pancake three times the size of your face | SoutMar 7, 2021
The giant pastry is called a guobing, which literally means ‘pot biscuit’ because it resembles the mouth of a giant pot.
‘The Truffle Hunters’ Review: In Dogged Pursuit of Culinary GoldMar 7, 2021
An enchanting documentary about men and their best friends combing the northern Italian forests for an unlikely delicacy.
Tiny Pies – Locally Sourced Pies made from scratch dailyMar 6, 2021
Tiny Pies are baked fresh daily from scratch with the highest quality, natural ingredients sourced from local farms. Order online for pickup or delivery!
‘This sauce will change your life!’ 30 brilliant condiments to transform your tired lockdown dishesMar 2, 2021
When you’re barely allowed out of your home, let alone your neighbourhood, you have to mix things up whenever you can. From Chinese XO to Romanian mujdei and Filipino banana ketchup, these spicy sauces will bring the whole world into your kitchen
Iranian and Mexican Rice Pudding Meet at Nixta Taqueria in AustinMar 1, 2021
The owners of the genre-bending Texas restaurant took inspiration from similar childhood treats.
Garam Masala, Za'atar and More Homemade Spice BlendsFeb 23, 2021
Grind these five versatile, beloved mixes ahead of time, then keep them on hand for cooking that’s full of verve and depth.
Take your pasta up a notch with Niigata’s kanzuri chili pasteFeb 20, 2021
Fans of yuzu kosho will love kanzuri's complex heat and citrus undertones — use it in place of harissa or to give dishes an extra kick.
How To Make Classic French MadeleinesFeb 20, 2021
A perfect accompaniment to your afternoon cup of tea.
The Secret to a Rich and Comforting Beef Stew? Just Add CookiesFeb 19, 2021
The classic Belgian dish carbonnade is enhanced when you throw in some speculoos.
De Cecco Reveals Why There Is a Bucatini Shortage in AmericaFeb 9, 2021
“It’s always a good thing to know who your enemies are.”
This Ridiculously Tender Brisket Is Almost Too Good to Be TrueFeb 9, 2021
And it cooks in a fraction of the time.
Birria: greatest of all time | Good FoodFeb 8, 2021
A red, beef stew tucked into a corn tortilla stained red from the juices — birria de res has become a bonafide phenomenon. Bill Esparza documented its journey from Tijuana to Los Angeles and beyond in a deep dive for Eater .
Filipino Tacos Are Here, and They’re SuperbFeb 3, 2021
The Asian nation's food is on the rise in Texas. A recent pop-up collaboration shows how Tex-Mex is giving it a helping hand.
The Fried Rib Tips Are Sacred at Mitch’s Corner StopFeb 2, 2021
The New Orleans–inspired dish is available every day except Sunday, when Mitch Davis preaches at the local Baptist church.
Treat Yourself to a Parisian Aperitif That Is Easy to Make at HomeJan 27, 2021
In France, savory cakes salés are served as a light nibble before dinner. They’re remarkably versatile and come together in a snap.
America’s Independent Bowling Alleys Might Not Make It Through the PandemicJan 19, 2021
Alongside restaurants and bars, recreational spaces like bowling alleys are also feeling the pressures of indefinite COVID-19 closures
How the napa cabbage became the king of leafy greens in JapanJan 17, 2021
The napa cabbage is key to both traditional washoku dishes as well as ones of Chinese origin. It's also one of the easiest vegetables to pickle at home.
For a ‘Proper Proper Proper’ Baked Sweet Potato, Freeze It FirstJan 13, 2021
Try Junzi lead chef Lucas Sin’s method for recreating a favorite Chinese street food at home
How to Make Buckwheat Soba Noodles from ScratchJan 10, 2021
I must confess to eating this entire bowl of soba by myself. I didn’t share. I didn’t look up from the bowl. I just inhaled. Fresh buckwheat soba is an entirely different food group from the dried soba we usually buy at the store. It’s like night and day. The nutty aroma of the buckwheat, the perfect chewiness of the noodles, the way they slip perfectly around a chopstick — fresh soba needs little more than some dashi and a splash of soy sauce to be the perfect meal.
The Industrial Croissant Deserves Your RespectJan 7, 2021
Humans may have invented the croissant. But machines perfected it.
The Poke ParadoxJan 2, 2021
Where culinary bliss meets environmental peril, and how to solve America’s poke problem.
Thai Basil Stir-Fry (Put Kaprow)Dec 28, 2020
With pork, chilies, a few sauces thrown in, finish this stir-fry recipe off with a big generous handful of Thai basil, a fried egg and fish chili sauce on rice.
The Tasting Menu at the End of the WorldDec 26, 2020
Sonoma County’s SingleThread has been hailed as the apotheosis of high-end, farm-to-table dining. The perpetual threat of wildfires and once-in-a-generation flooding also make it a case study in the challenges that climate change will soon pose to restaurants everywhere.
How To Make Starbucks-Style Cold Brew Coffee at HomeDec 24, 2020
Everything you need to know for DIY big-Batch cold brew.
A Chicken Dish That Makes It Feel Like Christmas (Published 2020)Dec 18, 2020
When Nik Sharma left Mumbai for Ohio years ago, he had to leave his family’s holiday celebration behind too. Now he recreates one of his favorite dishes, chicken cafreal, in his own kitchen.
Sini Manti (Armenian Baked Lamb Manti)Dec 18, 2020
Crunchy-crisp baked lamb dumplings in a rich, aromatic broth.
Recipe: Slow Cooker Golden Chickpea SoupDec 18, 2020
Equal parts hearty, bright, and completely nourishing.
Recipe: Slow Cooker Boeuf BourguignonDec 16, 2020
Boeuf bourguignon is so much more than just another beef stew.
Old-Fashioned Buttermilk Bar Donuts Are Crispy, Fluffy PerfectionDec 16, 2020
They're the donuts of your dreams.
What It Takes to Be a Short-Order Cook in Las VegasNov 27, 2020
Burkhard Bilger’s 2005 piece on the short-order cooks at the Flamingo hotel, who crack well over a million eggs a year, in a city built by breakfast specials.
A Coconut Milk–Laced Beef Stew to Warm You Up in an Instant (Pot)Nov 26, 2020
Skimp on time and mess, not flavor
Who Was Pappy Van Winkle and Why Does His Whiskey Cost So Much?Nov 11, 2020
Wright Thompson’s “Pappyland” goes deep into Kentucky’s bourbon culture through a history of one of its prominent producer families.
The World’s Most Nutritious FoodsNov 7, 2020
After analysing more than 1,000 raw foods, researchers ranked the ingredients that provide the best balance of your daily nutritional requirements – and they found a few surprises.
custom yeast - Google SearchNov 5, 2020
Tamales | Order Tamales Online | Delia’s Specializing in TamalesNov 3, 2020
If you want tamales, look no further than Delia’s. Delia’s specializes in tamales and is a south Texas staple. Order tamales and have them shipped to your door.
The 20 best sandwich recipesOct 30, 2020
Pierre Koffman’s croque monsieur, Rick Stein’s mackerel baguette and Claire Ptak’s peanut butter and jelly: the recipes to transform your working-from-home lunch
Panduan Cerdas untuk Teknologi Sehari-hariOct 30, 2020
Temukan panduan cerdas dan praktis untuk mengoptimalkan penggunaan teknologi dalam kehidupan sehari-hari Anda. Dari menghemat data seluler hingga menjaga keamanan Wi-Fi, kami hadir dengan solusi yang dapat Anda andalkan.
Simple Crusty Bread Recipe - NYT CookingOct 26, 2020
We thought we’d landed upon the simplest yeast bread recipe in 2007, when Mark Bittman wrote about the no-knead approach of Jim Lahey, owner of Sullivan Street Bakery It quickly became (and remains) one of our most popular recipes because it made bakery-quality bread a real possibility for home cooks But then we heard about Jeff Hertzberg, a physician from Minneapolis, who devised a streamlined technique for a crusty loaf of bread
How To Make Pita Bread at HomeOct 23, 2020
The pitas you make at home are worlds apart from the stuff you buy in stores, and watching them puff to glorious heights in your oven or on your stovetop is culinary magic.
How To Make No-Knead BreadOct 20, 2020
If you’re intimidated by baking ratios, this is a great recipe to start with. It’s ridiculously easy, and very forgiving.
How To Make Cacio e Pepe: The Easiest Method for Perfect Results Every TimeOct 19, 2020
The easiest method for perfect results every time.
How To Make Crispy Roasted Chickpeas in the OvenOct 18, 2020
So tiny. So easy to eat by the handful. So irresistible.
You'll Want to Add Socca — A Popular French Street Food — To Your Recipe RotationSep 29, 2020
They're vegan, cook in 10 minutes, and have three ingredients. What's more to love?
53 Vegetarian Dinner Recipes for Meatless Meals Every Night of the WeekSep 20, 2020
Transform beans, lentils, and tofu into satisfying vegetarian dinners the whole family will love.
The Redemption of the Spice BlendSep 16, 2020
Spice blends have never just been for "lazy" cooks, but a new generation is showing how crucial they are to any kitchen
Prik Gaeng Panaeng (Thai Panang Curry Paste)Aug 20, 2020
Bust out the mortar and pestle for this peanut-spiked Thai curry paste.
Ackee and Saltfish with Johnny Cakes and Steamed Callaloo RecipeAug 17, 2020
The Jamaican national dish complemented by 2 classic sides is a well-balanced breakfast and perfect way to start the day.
Finding the Soul of Sonora in Carne Asada (Published 2020)Aug 12, 2020
A carne asada goes far beyond grilled meat: In the Mexican state of Sonora, it’s a weekly ritual, a tight-knit gathering of friends and family.
How To Make Kombucha Tea at HomeAug 11, 2020
Save your pennies! Watch the video to learn how to make your own kombucha at home.
The Parisian Cookbook We're Escaping IntoAug 11, 2020
"Plating the pasta on a nice plate helps elevate the experience, even when it's just you alone in your kitchen," says Kate Leahy.
How to Make Cannabutter at Home - Best Weed Butter RecipeAug 10, 2020
A beginner-friendly guide to making weed butter at home.
It Took Years to Formulate, But This Is the Absolute Best Lentil SoupAug 8, 2020
You can cook this with whatever you have on hand right now.
The Simple Joys of TamarindAug 8, 2020
Sweet, sour and tender under its brittle shell, the fruit’s pulp is equally at home in desserts and savory dishes.
The Valley of the Cheese of the DeadJul 24, 2020
In this remote Swiss town, residents spent a lifetime aging a wheel for their own funeral.
Lamb Biryani With Saffron, Yogurt, and Caramelized OnionsJul 23, 2020
Biryani is a celebration of aroma, color, and flavor, with perfectly cooked, fluffy grains of scented basmati rice and tender chunks of spiced lamb.
Misir Wat (Ethiopian Spiced Red Lentils)Jul 19, 2020
One of Ethiopia's most famous vegetarian dishes, Misir Wat showcases lentils unlike anything else, the incredible flavor will blow you away!
How Nespresso's coffee revolution got ground down | Coffee | The GuardianJul 16, 2020
The long read: Nestlé’s sleek, chic capsule system changed the way we drink coffee. But in an age when everyone’s a coffee snob and waste is wickedness, can it survive?
The French Girl’s Guide to Cooking EggsJul 16, 2020
How to crack, poach, flip, and scramble like a seasoned chef.
The Mighty MudbugJul 10, 2020
Is there anything sweeter than crawfish in season? Come along for the best eats in Louisiana and Texas.
Maque Choux Recipe - NYT CookingJun 23, 2020
This classic Cajun side dish is a sweet, hot, juicy, milky, buttery combination of corn, onions and peppers. It’s often cooked in rendered bacon fat and enriched with heavy cream, but this version relies upon only butter and a little water in their place, which allow the ingredients’ flavors to sing more clearly While it is commonly understood that Fat Equals Flavor, there is a point at which too much fat actually masks complexities in flavors and dulls their vibrancy Try the maque choux this way and see if you notice how bold and lively it tastes
This European Pre-Dinner Ritual Helps Me Wind Down After WorkJun 20, 2020
Credit goes to my French boyfriend.
How Energy Bars Became America's Favorite SnackMay 28, 2020
When outdoor athletes launched the first energy bars more than 30 years ago, no one could have predicted it would revolutionize the way Americans eat. A look inside the hottest—and strangest—category in natural foods.
Inside the Flour Company Supplying America’s Sudden Baking ObsessionMay 24, 2020
How King Arthur Flour found itself in the unlikely crosshairs of a pandemic
Grilled Shrimp with Miso, Ginger, and Scallion Butter RecipeMay 21, 2020
Add some tang to your grilled shrimp.
A Hotelier’s Spicy Fish StewMay 19, 2020
As she prepares to embark on a new chapter, Liz Lambert has rediscovered the joy of sharing food with her family.
Guy Fieri Is The Last Unproblematic Food PersonMay 17, 2020
Let’s all move to Flavortown, where no one is mean and everything is going to be OK. (For now?!)
Chef Hugh Amano Explains How To Make Handmade Ramen NoodlesMay 3, 2020
This precise (and, yes, challenging) process produces toothsome, beautiful noodles.
The Worst Rebrand in the History of Orange JuiceMay 1, 2020
They paid $35 million to then lose $20m in sales
The Art of Homemade Soba NoodlesApr 25, 2020
Mastering the Japanese buckwheat noodles is notoriously tricky; Francis Lam picks up tips from a former Hollywood movie producer who gave up the fast life for the slow knead
BBC - Travel - How to make pizza like a Neapolitan masterApr 24, 2020
Often considered one of Italy’s most memorable dishes, beloved pizza is an ultimate comfort food and has become an ever-growing obsession around the world.
16 Recipes That Prove Canned Fish Is Actually Rad As HellApr 23, 2020
It's time to broaden your horizons beyond chunk tuna. Here's how to eat canned fish like anchovies and sardines.
We Don’t Need Nearly as Much Protein as We ConsumeApr 23, 2020
Many of us consciously eat a high-protein diet, with protein-rich products readily available, but how much protein do we really need? And does it actually help us lose weight?
Stanley Tucci offers unsolicited advice on making the perfect NegroniApr 21, 2020
The latest Speed Read,/speed-reads,,speed-reads, breaking news, comment, reviews and features from the experts at The Week
In Japan, a 1,000-year-old cheese recipe makes its comeback - The World from PRXApr 21, 2020
In Japan, people are making a long-forgotten cheese called “so.” The 1,000-year-old recipe became popular recently on Japanese social media as people stuck at home have extra time on their hands.
How to Substitute FloursApr 21, 2020
Can’t find all-purpose flour? Out of whole-wheat? Here’s what you can use instead.
The Galette Recipe One French Creative Director Grew Up OnApr 19, 2020
At his grandmother’s cottage in Brittany, Pierre-Alexis Delaplace of Kerzon would wait, somewhat impatiently, for this savory treat.
How Sherry Became the Secret to Great ScotchApr 19, 2020
Scottish and Spanish spirits have a symbiotic relationship.
Flourless Almond CakeApr 19, 2020
A French classic crisp and crunchy on the outside, dense and chewy on the inside, and flourless through and through. #glutenfree #baking #almondcake #passover
The Bacon, Egg and Cheese of PastasApr 7, 2020
Is there anything more satisfying than an easy bowl of carbonara?
Baking Bread in LyonApr 6, 2020
For a newcomer to the city, a boulangerie apprenticeship reveals a way of life.
Victorian Culinary Trading Cards Are a Feast for the EyesMar 11, 2020
But maybe not for your stomach.
The Tiny Island Just Minutes From Québec City That’s a Food-Lover’s ParadiseMar 5, 2020
Alongside fresh berries, homemade jams, maple syrup, wine, and cheeses, Québec’s Île d’Orléans serves up a side of nature and history.
Chowhound - The Site for Food Nerds: Cooking Tips, Culinary How-To's, & More.Mar 3, 2020
Chowhound is the site for food nerds - from expert chef tips to culinary how-to's, helpful ingredient lists, baking science, and more.
The Surprising Story of Moscow’s Food RevolutionFeb 26, 2020
Start with a bubbling locavore scene, add a dash of Soviet nostalgia, and you’ve got the recipe for a delicious Moscow homecoming.
A Texas Border Town’s Booming Trade in Great TacosFeb 26, 2020
Brownsville has its troubles, but it’s also starting to draw attention for its thriving collection of distinctive taquerias.
The Recipe to Bob's Red Mill's Supreme RecipesFeb 23, 2020
If you've ever cooked a recipe from the back of one of the company's 400+ products, you have one very busy pastry chef to thank.
Why Japan Is Obsessed With Kentucky Fried Chicken on ChristmasFeb 19, 2020
Thanks to the successful “Kurisumasu ni wa kentakkii!” (Kentucky for Christmas!) marketing campaign in 1974, Japan can't get enough KFC on Christmas Day
A Guide to 'Nduja: Italy's Funky, Spicy, Spreadable SalumeFeb 18, 2020
The funky, salty, magical salume that will change how you cook.
An app can be a home-cooked mealFeb 17, 2020
I made a messaging app for my family and my family only.
Old-Fashioned RecipeFeb 7, 2020
The old-fashioned is one of the oldest mixed drinks in the cocktail canon (Original name: whiskey cocktail, which became old-fashioned whiskey cocktail, and then just old-fashioned.) It is a stirred drink, usually built in the glass in which it is served Both rye and bourbon are suitable base spirits
50 Slow-Cooker Recipes to Set & ForgetFeb 2, 2020
Because at the end of the day, comfort cooking will always mean comfort food.
This Is the Secret Michelin-Star Capital of the WorldJan 22, 2020
The best place to eat in Germany is in a little village in a forest.
How New York’s Bagel Union Fought — and Beat — the MafiaJan 12, 2020
The mob saw an opportunity. Local 338 had other ideas.
Italy's Great Garlic DivideJan 12, 2020
In the United States, garlic is woven into every pizza, pasta, and breadstick. But in Italy, it's more complicated.
The Chef Restoring Appalachia's World-Class Food CultureJan 10, 2020
A coal fortune is fueling the revival of a cuisine it nearly destroyed.
Eating the Arab Roots of Sicilian CuisineJan 2, 2020
Adam Leith Gollner on the sun-drenched island’s agrodolce flavors
Potpies Gone Wild – Garden & GunDec 23, 2019
For a surprising twist on the original, look to the region's fall bounty of mushrooms
Pasta With Cauliflower, Bacon and Sage RecipeDec 22, 2019
A comforting dinner for a cold night, this hearty pasta has all the makings of a crowd-pleaser like fried sage leaves, crispy bacon and nutty roasted cauliflower This recipe demonstrates the magic of starchy pasta water: Swirled with lemon juice and Parmesan, it creates a luxurious sauce without the addition of cream or butter Add more pasta water than you think you need, so the pasta stays moist as it absorbs the sauce.
Readers’ choice: Tokyo’s best ramen shopsDec 20, 2019
Last month, The Japan Times published its curated list of Tokyo's five best ramen shops. But Japan's capital city is a truly massive metropolis boasting restaurants galore, so we wanted to know: What did we overlook? And where are your favorite ramen shops?
The Surprising Psychology of Dieting and Plate DesignDec 15, 2019
New research is challenging long-held assumptions about how our eyes influence our stomachs.
Why Does Cilantro Taste Like Soap To Some People?Dec 15, 2019
The herb’s unique flavor can make a dish for some and ruin it for others.
Journey to the Place Where Pesto Was BornDec 15, 2019
Somewhere on its path to global ubiquity, pesto became a catchall name for any random herby sauce thrown in a blender. Now Ligurians want it back
You Don’t Know JackDec 11, 2019
Gather ’round, the great American melting cheese has a story to tell.
Death-Cap Mushrooms Are Spreading Across North AmericaDec 11, 2019
“There’s nothing in the taste that tells you what you are eating is about to kill you.”
Kitchen Rhythm: A Year in a Parisian Pâtisserie - LongreadsDec 2, 2019
An Oxford grad learns to navigate boiling sugar, sleep deprivation, and exacting pastry chefs with whom she can barely communicate.
Lessons From a ‘Local Food’ Scam ArtistNov 27, 2019
Working summers at an authentically quaint roadside produce stand, a teenage salesperson is schooled in the not-so-subtle art of how to con a foodie from the big city.
Snow’s QueenNov 27, 2019
On Saturdays Tootsie Tomanetz cooks barbecue the old-fashioned way for legions of loyal fans. That doesn’t mean she’ll ever give up her day job.
Inside the Secret World of Global Food SpiesNov 26, 2019
Retail giants turn to bitcoin technology to combat food-fraud that costs the global food industry up to $40 billion every year.
How Turkish coffee destroyed an empireNov 18, 2019
Kahve was a favourite drink of the Ottoman Empire’s ruling class. Little did they know it would one day hasten the empire’s demise
This little butcher shop in rural West Virginia is turning out world-classNov 6, 2019
A young couple’s grocery store could start a patty pilgrimage to Capon Bridge.
How to be an EpicureanNov 5, 2019
A philosophy that values innocent pleasure, human warmth and the rewards of creative endeavour. What’s not to like?
Of Meat and MenNov 3, 2019
John Mueller was the heir to one of the great Texas barbecue dynasties. Aaron Franklin was an unknown kid from College Station who worked his counter. John had it all and then threw it all away. Aaron came out of nowhere to create the state’s most coveted brisket. Then John rose from the ashes.
No-Knead Bread Recipe - NYT CookingNov 2, 2019
Here is one of the most popular recipes The Times has ever published, courtesy of Jim Lahey, owner of Sullivan Street Bakery It requires no kneading It uses no special ingredients, equipment or techniques
Manago Hotel - Hawaii Restaurant ReviewOct 31, 2019
Not much has changed in a hundred years, and that’s part of the charm.
The Agony and the Ecstasy of the State Fair Food FinalistsOct 31, 2019
The grim traveler sampled the offerings with a heavy heart.
Jasmine, Basmati, Sticky, and Beyond: The Serious Eats Guide to RiceOct 26, 2019
A brief history and thorough shopping guide of the grain that became a staple across the world.
The Paleta WarOct 25, 2019
The word "Michoacana" has been at the center of a series of lawsuits over which paleta shops get to use it
The Queen of the State Fair of TexasOct 23, 2019
Ruth Hauntz was in her late 20s when the fair was desegregated. Now, her creations make thousands of fairgoers happy every year
What happens when an Italian tries to go paleo for a monthOct 22, 2019
Your relationship to food could always be worse.
Inside the Members-Only Eating Clubs of San SebastiánOct 21, 2019
Step into the private kitchens of Basque country’s sociedades gastronómicas, where everything revolves around food
ZhugOct 20, 2019
This bright green sauce from Yemen — so fresh from cilantro, so spicy from serrano chiles, so vividly aromatic — will open up a whole world in your cooking Treat it just as you would a basil pesto or a salsa verde: Make it in small batches, in the mortar and pestle, and then spoon it with abandon over your lunch of cooked lentils with Bulgarian white cheese, chunks of ripe tomatoes and cold cucumbers, your dinner of roasted chicken and sautéed zucchini, or even your breakfast of fried eggs It brings intense new life and dimension to everything it touches.
This Knockout Spicy Sauce From Yemen Will Improve Almost Any DishOct 20, 2019
Looking to punch up your eggs? Or add some zing to your salad? Just give it a little zhug.
The Story of France’s Most Extraordinary PastryOct 17, 2019
Rustically simple, this baked good is delicious due to the high quality of its parts.
The Best Cast Iron SkilletsOct 15, 2019
We found five cast iron skillets worth their weight in metal after examining heat conduction, frying dozens of eggs, searing steaks, and loads of baking cornbread.
Sinigang (Tamarind Broth With Pork and Vegetables) Recipe - NYT CookingOct 14, 2019
This is the soup that made me like vegetables when I was growing up You always measure sinigang by sourness, which is so much a part of our cuisine — layers of acid coming from vinegar, fresh citrus, tamarind and unripe fruits Here, sour is a power move, hitting you all the way at the back of your tongue
How Irish Butter Kerrygold Conquered America’s KitchensOct 7, 2019
The salty, uber-yellow spread has seen double-digit growth almost every year for the past decade.
15 Dressings and Vinaigrettes That Will Make You Fall in Love With SaladSep 17, 2019
14 Dressings and Vinaigrettes That Will Make You Fall in Love With Salad is a group of recipes collected by the editors of NYT Cooking.
Long Misunderstood, Appalachian Food Finds the SpotlightSep 10, 2019
Chefs like Sean Brock and Katie Button are embracing and expanding on the region’s cooking, which is far more varied than most people realize.
On the Hunt for the World’s Rarest PastaSep 10, 2019
Delicate and impossible to replicate, su filindeu (or the “threads of God”) is a pasta made of hundreds of tiny strands by a single woman in a hillside town in Sardinia. She’ll make it for you too—if you’re willing to walk 20 miles overnight
The Rickety Economics of Food TrucksSep 3, 2019
Whenever food trucks materialize to serve often-indulgent food out of a little kitchen with a big engine, more than a few of us wonder: How...
Jacobsen Salt Is Bringing Attention to Sodium ChlorideSep 3, 2019
Ben Jacobsen wants people to think differently about the power of salt.
Want to eat much less meat? Take the top vegan tips from the world’s tastiest cuisinesSep 3, 2019
While veganism is growing rapidly in the west, other parts of the world have had meat-free cuisines for centuries. For a rich and varied plant-based diet, talk to the Chinese, Indians, Ethiopians …
Why the Food in Okinawa’s Not Like Anything in the Rest of JapanSep 3, 2019
Laurie Woolever tastes and cooks her way through the unique landscape and culinary heritage of this remote and atypical Japanese archipelago
How Ranch Water Became the Unofficial Cocktail of West Texas | PUNCHAug 16, 2019
Anyone who’s spent time in West Texas between May and September has experienced the relentless desert sun, offset ever-so-briefly by a bone-dry, tumblewe
The True Story of Wild Rice, North America’s Most Misunderstood GrainAug 15, 2019
The Ojibwe people of northern Minnesota are sustained by the real wild rice, which they harvest by hand and dry over fire
This Is the Beginning of the End of the Beef IndustryAug 14, 2019
On the rise of alt meat and the decline of cattle.
The Humble Brilliance of Italy’s Moka Coffee PotAug 6, 2019
In the era of pods, the iconic item has become an endangered species.
This Italian Town Always Smells Like PanettoneAug 4, 2019
The Galup factory and its sweet Christmas bread is the pride of Pinerolo
In Search of Alaska’s Deadliest Catch: The Sea CucumberJul 31, 2019
As a cuke deckhand, your job first and foremost consists of making sure your diver survives
The Multimillion-Dollar Junkets That Introduced Americans to Olive OilJul 31, 2019
The olive oil industry spent millions of dollars throughout the ’90s to try to sell American chefs and nutritionists on the Mediterranean diet. It worked.
Restaurant Secrets From Nobu: Reservations, Unruly Celebs, SushiJul 27, 2019
From celebrity seating warfare to dogs sipping Champagne, there’s never a dull moment at America’s most famous sushi joint.
The Oyster Poachers of Connemara - Saveur - PocketJul 21, 2019
In Ireland, few things are black and white, especially the law—and the tales of men who break it to dive for treasure under cover of darkness
Inside the “largest launch of a produce item in American history”Jul 21, 2019
The Cosmic Crisp could change the apple industry.
Is the World’s Best Butter Worth 50 Dollars a Pound?Jul 16, 2019
Alex Halberstadt scores a bag of the creamiest, most coveted stuff on earth and ponders a question: can you put a price tag on outstanding dairy?
Don’t Mess With the Food of LyonJul 11, 2019
Adam Sachs eats around town with hometown hero Daniel Boulud in the gutsy gastronomic capital
The Varied, Still-Evolving History of San Vicente’s Basket TacosJul 10, 2019
How did the most beloved street snack from one small Mexican village become the regional phenomenon they are today?
The Complete Guide to Mastering Chinese Dumplings at HomeJul 8, 2019
The recipes, tools, and tips you need for the endlessly adaptable one-bite marvel
The Durian KingJul 7, 2019
How a clever Malaysian farmer has made a fortune off the durian, the pungent tropical fruit that attracts equal parts adoration and revulsion.
Tembo Tusk – Innovations for the Road Less TraveledJun 29, 2019
Camping equipment for the savvy off roader, overland traveler Camping grills, lantern hangers, 12 volt fridge slides and overland travel equipment.
The Surprising Reason that There Are So Many Thai Restaurants in AmericaJun 18, 2019
You may have noticed that the ratio of Thai restaurants to Thai people in the US is high—and it's no coincidence.
The Raisin Situation (Published 2019)Apr 27, 2019
One man wanted to change the raisin industry for the better. He got more than he bargained for.
A Dispatch From the Fast-Paced, Makeshift World of High-End CateringApr 25, 2019
The unsung heroes of the food world battle against time and chaos, cooking haute cuisine over lit cans of Sterno in the gloomy back hallways of New York's civic landmarks.
The Startlingly Flavorful Dressing That Will Boost More Than Just Your SalaMar 31, 2019
Stir together a few ingredients, and you have a sauce that will improve boiled broccoli, leafy mustard greens, even pizza crusts.
How Turkish coffee destroyed an empireMar 16, 2019
Kahve was a favourite drink of the Ottoman Empire’s ruling class. Little did they know it would one day hasten the empire’s demise
The Prized Pepper That Comes From a Single New Mexican TownMar 9, 2019
But can it be grown anywhere else?
The Female Chef Making Japan’s Most Elaborate Cuisine Her OwnMar 6, 2019
From 2019: How Niki Nakayama’s kaiseki restaurant became a highly coveted reservation in L.A.
The Aldi effect: how one discount supermarket transformed the way Britain sMar 6, 2019
The long read: When Aldi arrived in Britain, Tesco and Sainsbury’s were sure they had nothing to worry about. Three decades later, they know better
Are Mail-Order Meal Kits Doomed? - EaterFeb 27, 2019
As customers unsubscribe, companies like Blue Apron and Hello Fresh look for salvation at the grocery store
The 'Ten Commandments' of running a genuine Irish pubFeb 10, 2019
British bars are ubiquitous in Kansai, but a genuine Irish establishment should follow these 'Ten Commandments':
Beer Pairing 101: Rich and Roasty BeersFeb 10, 2019
Porters, stouts, and other rich beers can go perfectly well with a savory meal.
How Heirloom Corn Is Making a Comeback in Mexico CityFeb 2, 2019
In Mexico City, the country’s native corn is experiencing a culinary renaissance.
White gold: the unstoppable rise of alternative milksJan 29, 2019
The long read: How wellness upstarts spoiled milk’s healthy reputation – and built a billion-dollar industry from juicing oats and nuts
The Secret Sushi Bar on the 10th FloorJan 28, 2019
A controversial chef has created a sort of sushi speakeasy in a hotel room. It’s not easy to get a reservation. For one thing, there are only four seats at the bar.
This exceptional French white wine tastes rich but costs just $15Jan 26, 2019
RECOMMENDED | It’s a pinot gris from a region not known for it.
RibollitaJan 16, 2019
Ribollita, a beautifully thick Tuscan stew made with dark greens, lots of beans, vegetables, olive oil, and thickened with day-old bread.
The High-Stakes World of Christmas TamalesJan 11, 2019
“Tamales are different not just from country to country, but also from region to region and even from abuela to abuela.”
In a Tokyo neighborhood’s last sushi restaurant, a sense of lossJan 7, 2019
'I'll have a draft,' says Yasuo Fujinuma, heaving himself down at the sushi counter. He pulls a pack of cigarettes from a frayed pocket of his sweater. From the corner of the restaurant, a small TV hums the noon weather forecast. He never drinks at noon.
The Best Things We Ate This YearDec 30, 2018
Halibut with mole blanco. A giant soup dumpling. A mug of oysters. Queso. Our Dining Guide contributors share their favorite bites of 2018 from across the state.
The Fight to Save the Traditional TortillaDec 26, 2018
In Mexico, this staple — made with heirloom corn — is under pressure from mass production and modernity, but small producers are pushing back.
Rice Pilaf With Cinnamon And Golden Raisins Recipe - Genius KitchenDec 18, 2018
This is an adaptation on a recipe that was emailed to me. The original recipe was from The New Family Cookbook for People with Diabetes. It goes wel
Inside Sun Noodle, the Secret Weapon of America's Best Ramen Shops - EaterDec 12, 2018
There were only about three or four ramen shops on Oahu when Hidehito Uki founded Sun Noodle in 1981. Ramen in America was pretty much just a cup of noodles you cooked in the microwave. Uki — who...
Leftover Turkey Pot Pie EmpanadasNov 23, 2018
These Leftover Turkey Pot Pie Empanadas, or hand pies are a delicious way to use up your leftover Thanksgiving turkey!
A day in the life of Lloyd Squires, Vermont's 'best' bagel makerNov 20, 2018
Some consider him a master. That takes work.
Will Stanich's Ever Reopen? Why America's Best Burger Spot Closed Down - ThNov 17, 2018
If you love a burger...
A new wave of grain - Boulder WeeklyNov 16, 2018
When it comes to grain, the future looks like the past. Go back a half-century in Boulder County, and there’s Old Man Webber coming into town with his portable combine. Word gets passed around and Webber goes to every farm, home and plot growing wheat and chops it. Then Beth near Valmont gets her seed […]
The man who has eaten at more than 7,300 Chinese restaurants, but can’t useOct 23, 2018
David R. Chan’s love of lists and determination never to eat at the same place twice has seen him become an accidental expert on Chinese-American history. Just don’t call him a foodie
How Being a Line Cook Ruined MeOct 21, 2018
When you exist outside of regular society, when the nine-to-five gig is as foreign to you as going somewhere hot for a vacation, it makes it easier to indulge in the wilder, untamed side of things.
The Cheating Scandal That Has Shaken the World of Élite SommeliersOct 18, 2018
The revelation of deceit in fine wine’s most sacrosanct circle has rattled the tight-knit world of sommeliers, who pride themselves on presenting a decorous, unflappable face to those outside their ranks.
France Dispatch: At World’s Largest Food Market, a Sip of Wine After a NighOct 17, 2018
Rungis, a wholesale food market bigger than Monaco, is beloved in culinary circles, but this “working-class place” is unknown to most visitors to Paris.
Bracing for the Vanilla BoomSep 28, 2018
Amidst soaring vanilla prices, some Madagascar farmers spend their cash in sprees. Their spending may not be as illogical as it appears.
Searching for chocolate’s roots, and enemies, in Colombia’s wildernessSep 14, 2018
A newfound peace has spurred the hunt for disease-resistant wild cacao within the nation’s borders. What scientists find could help the country expand its role in the global trade.
Meet the Warby Parker of dishwareSep 11, 2018
"Our lives have modernized in many ways, but bizarrely, we still buy our dishes based on very traditional notions of marriage and wedding registry."
How Food Holidays and Hashtags Like #NationalCoffeeDay Start Social MovemenSep 10, 2018
Opinion: Brands are promoting and foodies are consuming.
A History of Moscow in 13 DishesAug 31, 2018
War, hunger, and some of the world’s great doomed social experiments all changed the way that Moscow eats.
9 Food Markets Around the World We'd Hop on a Plane ForAug 28, 2018
Because food tourism is the best tourism.
Why This Japanese Knife Takes 42 Days to MakeAug 27, 2018
Inside the workshop of Japan’s Miyabi Knives.
Can Liquor Have a Local Taste? They’re Banking on It (Published 2018)Aug 24, 2018
No one is sure whether spirits can convey “terroir” like wine does. But distillers are seeking, and selling, that sense of place.
The multibillion-dollar war over chocolate designAug 8, 2018
A fight in EU courts over KitKat bars raises questions about how much a product's shape defines its brand.
Pizza Physics: Why Brick Ovens Bake The Perfect Italian-Style PieJul 30, 2018
Brick transfers heat to dough more slowly than steel, allowing both crust and toppings to simultaneously reach perfection. In a home oven, that balance is elusive — but you might be able to get close.
Viet-Cajun CrawfishJul 24, 2018
The buttered crustaceans benefit from a blend of Cajun and Asian spices.
No-Cook, No-Sweat, No-Churn Lemon Ice Cream From a Southern Cooking LegendJul 22, 2018
Skip your next ice cream run and try this recipe instead.
White GoldJul 15, 2018
Mushrooms foraged by itinerant harvesters in Oregon can earn a fortune in Tokyo.
An Ohio Startup Rebuilds Lives One Piece of Fried Chicken at a Time - POLITJul 2, 2018
A millennial entrepreneur hires from inmates and homeless people who struggle to find work even in a strong economy.
The Best Chef's KnivesJul 1, 2018
We tested 33 chef’s knives, evaluating their sharpness and using them to dice onions, slice tomatoes, and more. We found seven favorites.
A Brief History of America's Appetite for Macaroni and CheeseJun 3, 2018
Popularized by Thomas Jefferson, this versatile dish fulfills our nation's quest for the 'cheapest protein possible'
A Beginner’s Guide to the Dizzying World of Caribbean RumMay 19, 2018
Consider this your entry-level guide to the curious world of Caribbean rum.
On Dessert: A New Pastry Layers Tastes of France and SyriaApr 5, 2018
Baklava and mille-feuille come together in this chewy, buttery, sweet and creamy morsel.
The story of Heady Topper, Americas most loved craft beerMar 17, 2018
How a difficult to obtain American double IPA brewed in a small town in Vermont developed a world-wide cult following, with beer fans traveling hundreds of miles just to get a taste.
The Story of Dave and His Killer BreadMar 7, 2018
Dave’s Killer Bread has become a cult favorite across the nation, drawing in both health-conscious consumers and those who root for an unlikely success story. But you won’t find the full story on the bread packaging.
‘Feeding the spirit, soul and stomach’: Inside Pittsburgh’s famous fish friFeb 28, 2018
Disruptive technology is embraced in sectors where customers are eager to tear up and replace old models for doing business. That's not so much the case
Eureka! California-Grown Coffee Is Becoming The State's Next Gold MineFeb 20, 2018
Sure, a cup of California-grown coffee sells for about $18 a cup, but people are buying it. The niche industry is booming with no signs of slowing, and the state's farmers still can't meet demand.
The humble origins of popular foodsFeb 20, 2018
These foods show how human ingenuity can make use of even the most unlikely ingredients.
The Unexpected Reemergence of an Elusive Strain of RiceFeb 20, 2018
Hill rice was supposed to be extinct, until a South Carolina chef stumbled on it -- in Trinidad.
The Food Lab's 20 Most Influential Food BooksDec 13, 2017
These books shaped us into the cooks we are today.
How an unpaid UK researcher saved the Japanese seaweed industryNov 21, 2017
After crops failed, botanist Kathleen Drew-Baker realized that nori wasn’t what it seemed.
Here's What Happened When I Opened a Restaurant in PortlandOct 10, 2017
We closed Renard down more than nine months ago, but every night (and often early in the morning), first thing after waking up, I lie there and write the story of my failure over, and over and over again.
The Tater Tot Is American Ingenuity at Its FinestAug 31, 2017
The genius move that turned potato scraps into a frozen-food empire
In photos: India’s colonial coffee houses in an era of Starbucks and hipster cafesApr 14, 2017
A photographer captures time standing still inside the iconic joints.
The Puzzling History of China’s Most Controversial FlavoringOct 24, 2014
Monosodium glutamate, better known as MSG, is a Japanese import that became as Chinese as Kung Pao chicken. But its spread was more historical accident than foreordained.
How pour-over coffee got goodSep 24, 2014
Pour-over coffee has long been popular with coffee enthusiasts, but it frustrated coffee shops because it takes so long to make. That’s changing.
The Secretive Dynasty That Controls the Boar’s Head BrandOct 24, 2013
The deli-meat company made its owners fabulously wealthy. But they have remained silent, even as the company faces the biggest scandal in its history.
Injera Is the Soul of Ethiopian CuisineAug 24, 2012
Injera takes days to prepare, but this quick recipe streamlines the process.
Lemony Shrimp and Bean StewSep 24, 2011
With minimal prep and a quick cook time, this shrimp stew feels elegant for such an easy weeknight meal You can also take the dish in a number of directions: Substitute the shrimp with an equal amount of flaky white fish or even seared scallops, or stretch the dish into a meal for six by stirring in some butter and serving over cooked spaghetti or rigatoni A good glug of your best olive oil would also be a welcome.
Miso Mushroom and Leek PastaOct 24, 2008
Alchemy is at play here with the delightful union of miso and sherry vinegar, both working to amplify mushroom’s savory, umami notes, and create a rich, layered pasta in just over 30 minutes Sautéed leeks and mushrooms form the core flavors of the pasta, but it is the addition of miso that completes the dish: Whisked with the starchy pasta water and grated Parmesan, it forms a quick sauce to coat the noodles A farro, spelt or whole-wheat pasta would nicely complement the earthy flavors of this dish.
Coconut PalomaOct 24, 2008
In this bright, hydrating take on the Paloma, coconut water is incorporated two ways: in the shaker alongside tequila, grapefruit and lime juice, and in the ice the final drink is poured over As the ice cubes melt, they infuse the drink with coconut-forward flavor Use any extra ice cubes in the next morning’s cold brew coffee, iced tea or another chilled drink.
Running a Fine Dining Restaurant in a RecessionAug 24, 2006
How Eleven Madison Park survived the 2008 Global Recession ... and what this tells us about operating through the capital cycle.
football
Why Georgia Tech Sold Its Biennial Georgia Home Game for $10MNov 28, 2025
The 119th edition of the Georgia–Georgia Tech annual rivalry game has turned into a neutral-site matchup, with the Yellow Jackets getting a big payday.
College football program valuations: Ranking every Power 4 team by how much they’d sell forJul 22, 2025
College football programs may not be for sale, but what if they were? Here's our best guess at how much the Power 4 would sell for.
Using Motion to Create Running LanesJul 19, 2025
There are many elements to a running game that can make it successful.
Can UMass sell hope? Why college football’s losingest problem believes it can winMay 14, 2025
Best known for basketball success under John Calipari 30 years ago, UMass has won 26 football games in 13 years in the FBS. Can it change?
Charles Huff, Marshall and a glimpse inside the coaching carousel’s most puzzling splitDec 12, 2024
Huff and Marshall had been heading for a divorce for months, but there were few hard feelings as both coach and program turned the page.
Inside Florida State’s historic fall from 13-0 to its worst showing in 50 yearsDec 5, 2024
Even a storied program like Florida State is susceptible to the volatile landscape of college football and the sport's new-age war chests.
Who is Dan Casey, and how did he become a favorite follow for football coacMay 22, 2024
Casey has used his internet prowess to become a good follow for football coaches and continue to grow the game.
How next-gen data analytics is changing American footballApr 24, 2024
At the NFL’s Big Data Bowl, scientists compete to develop new stats that better capture player performance
Dallas high school football coaches on best recruiters, impact of OU, TexasApr 18, 2024
How has Texas A&M's approach changed under Mike Elko? Will Texas' move to the SEC help the Longhorns with in-state prospects?
The five types of college football programs you meet in the transfer portalApr 15, 2024
In this evolving portal era, programs take different approaches to attacking the opportunity that arises during each transfer window.
A ‘high butt factor’ might be an NFL Draft prospect’s most prized assetMar 22, 2024
For years, the humble human haunches have been key indicators as football scouts evaluate players.
Get Ready for the Biennial Texas High School Football Feeding FrenzyFeb 1, 2024
On Thursday, schools across Texas will learn what districts they’ll play in for the next two years. Then, the scheduling madness begins.
When should a football team attempt a two point conversion instead of an exJan 25, 2024
NOTE: see the February 2024 update to this post and my two point conversion analysis here. On Sunday November 10, 2019, the Carolina Panthers were down 14 against the Packers early in the 4th quart…
30 Best Animation Software for Beginners in 2024 [Free & Paid]Feb 11, 2023
Some of the best animation software are Visme, Adobe Animate, Blender, Pencil2D, Animaker and Biteable. Find out how these and other tools compare.
The gore, guts and horror of an NFL fumble pileOct 13, 2022
What it’s like at the bottom of the most lawless play in sports.
Justin Jefferson, his wide receiver ‘sensei’ and the art of running silky-smooth routesSep 21, 2022
EAGAN, Minn. — The perfect description of Justin Jefferson’s route running is tucked inside one specific video on the internet. The video, released by the NFL Network in August, begins with several Jefferson receptions then transitions to comments from opposing defenders. About 50 seconds in,...
The game within a game: Secrets of a college football signal stealerAug 14, 2022
Espionage on the sideline and in the coaches' booth is increasing in college football, but does all that effort make a difference on the field?
West Virginia-Pitt’s renewed Backyard Brawl a reminder of toll realignmentJul 14, 2022
"For your fans, what’s important to them?” said West Virginia athletic director Shane Lyons of scheduling rivals after realignment.
Saudi-backed LIV Golf shows how ‘sportswashing’ can backfireJul 4, 2022
Saudi-backed LIV Golf shows how 'sportswashing' can backfire.
Hacker NewsJul 4, 2022
Sponsoring a football club is about more than just advertising, it's a status symbol.
Pro sport team sales are driven by the law of scarcityJun 25, 2022
This is a luxury toy collection at a level above yachts or private islands.
How to watch football like an expert from the comfort of your couchJun 24, 2022
There is always something to learn about the game and there are levels to watching it.
Vic Fangio, the most influential DC in modern NFL: A deep dive into his systemJun 21, 2022
What makes Vic Fangio's defense the best response to modern offenses? Its two-high structure limits explosive plays and forces short throws.
Ted's Nguyen's Film Room: A comprehensive breakdown of Belichick's defensive masterpiece in Super Bowl LIIIJun 21, 2022
One of the keys to the Rams' offense is its simplicity. Bill Belichick countered with his own "simple" game plan: a 6-1 front that had answers for all of the Rams' bread-and-butter plays.
Ron Cook: Pitt-West Virginia injecting some much-needed bad blood into thisMay 28, 2022
Some people will tell you Pat Narduzzi did his finest work in 2021 when he led Pitt to the ACC championship. It was Pitt’s best season in 40 years....
College Football Stats - College FB Team Opponent Yards per Play | TeamRankFeb 1, 2022
College Football opponent yards per play, by team.
Alabama Defense - Nick Saban - 2008.pdfFeb 1, 2022
The 2021 UCLA Chip Kelly playbook (823 snaps) sorted by play call volume. Blue bars are pass, yellow bares are run. The purple line is Yards Per Play for each concept. Y-Cross, Four Verts, and Interior Zone (from offset sidecar Inside Zone or pistol Midline Zone) dominate.Jan 27, 2022
— chris osgood (@osgoodck)
How Marshawn Lynch Became an N.F.L. Mentor (Published 2022)Jan 24, 2022
The former Super Bowl champion has always had a way with words. It has turned him into a trusted adviser to N.F.L. and college football players who want to use their “wittys to get up out that siti.”
3-4 Defense - FootballXOs.com - Free Football PlaybooksJan 17, 2022
The 3-4 Defense has become more popular in recent years with both NFL and College defenses. During the 1970's and 1980's the 3-4 defense was the most widely used defense in the NFL.
Air Raid Playbooks - FootballXOs.comJan 17, 2022
View our detailed collection of air raid playbooks through the years from many different teams and coaches.
The 2018 advanced college football stats glossaryJan 7, 2022
Here is a glossary for the terms used in the 2018 college football season previews at SB Nation.
John Madden Was America’s Greatest Football TeacherJan 6, 2022
Madden, who died Tuesday at the age of 85, made a generation of football fans smarter
ProductsDec 27, 2021
Make Fullbacks Great Again. The official site of Oakland Raiders fullback Keith Smith.
How Deion Sanders Turned Jackson State Into the Best Story in College FootballDec 16, 2021
On Wednesday, the top-ranked recruit in the country shocked the world by announcing he’ll play at Jackson State. The news has flipped college sports on its head—and sheds light on just what’s so remarkable about the Coach Prime experience.
Lawsuits, secret taping and the unraveling of a powerhouse high school football programMar 30, 2021
Valdosta might be a 24-time state football champ, but lately its program has been rocked by a racial discrimination lawsuit filed by a former coach, the hiring of controversial coach Rush Propst and a secret recording that alleged cheating by SEC powers.
Jet sweep read option | Football PlayAug 27, 2020
BCF Toys - IndexJul 26, 2020
Play calling systemDec 23, 2019
A play calling system in American football is the specific language and methods used to call offensive plays.
Coach O & The Cajun PeopleDec 12, 2019
An exile from French Louisiana realizes that Ed Orgeron is her very own
cfbstats.com - 2019 National Team LeadersOct 25, 2019
Free Football Playbooks - FootballXOs.com - NFL, College, High SchoolAug 28, 2019
We have a lot of free football playbooks for you to view, download and enjoy. Use these files to enjoy and understand the game of football better.
nfl-football-ops/Big-Data-Bowl: Homepage for the National Football League'sMar 16, 2019
Homepage for the National Football League's Big Data Bowl - nfl-football-ops/Big-Data-Bowl
The Football Route Tree, Explained | STACKMar 6, 2019
A football route tree consists of a single straight line with other lines branching off it, depicting the various possible routes. Here is what a basic football route tree looks like.
The game of their lives was 25 years ago. They’re still replaying it in theDec 24, 2018
The exploits of a high school football team can become small-town legend. For the Prestonsburg Blackcats of Eastern Kentucky, the 1993 season “was like something out of a movie, if you’ve ever seen ‘Hoosiers,’ ” one coach said. Reality, however, left more complicated memories.
Horns Down should become college football’s universal hand signalNov 30, 2018
It offends rich people who don’t like fun, and what’s more fun than that?
The Expectations and Realities of Six-Man Football in Small-Town TexasNov 29, 2018
On the football field, one team went from six to eleven. Another went from eleven to six. And both faced challenges they didn’t expect.
Moonshine and the Mountaineers: West Virginia's tailgate traditionNov 8, 2018
The potent homemade whiskey is a hand-me-down through generations and a favorite of visiting fans. It's also illegal -- not that anyone cares.
forecasting-predictions
Designing Prediction Markets — LessWrongFeb 11, 2026
Prerequisite: basic familiarity with what a prediction market is …
Energy Predictions 2025Dec 13, 2025
Printable pdf. It’s been a few years since I wrote a broad post on energy, so I’m providing an update in one easy to read place. More detailed specific posts on energy are here. If you want t…
Prediction marketApr 9, 2025
Demand Forecasting with Darts: A TutorialJan 2, 2025
A hands-on tutorial with Python and Darts for demand forecasting, showcasing the power of TiDE and TFT
Why prediction markets aren’t popular - Works in ProgressDec 6, 2024
Prediction markets are legal, contrary to popular belief. But they remain unpopular, because they lack key features that make markets attractive.
The Death and Life of Prediction Markets at Google—AsteriskNov 11, 2024
Over the past two decades, Google has hosted two different internal platforms for predictions. Why did the first one fail — and will the other endure?
Supply Chain Analysis with R Using the planr Package | R-bloggersOct 20, 2024
Hey guys, welcome back to my R-tips newsletter. Supply chain management is essential in making sure that your company’s business runs smoothly. One of the key elements is managing inventory efficiently. Today, I’m going to show you how to estimate inve...
Business Forecasting Project IdeasJan 12, 2024
This article will take you through some of the best Business Forecasting project ideas you should try. Business Forecasting Project Ideas.
Demand Forecasting and Inventory Optimization using PythonAug 29, 2023
In this article, I'll take you through the task of Demand Forecasting and Inventory Optimization using Python.
2012.03854.pdfMar 16, 2023
Demand Planning. When The Answer To Two Simple Questions Is Not So Simple.Jan 3, 2023
The answer to a simple question of why do consumer products manufacturers not use retail data in the management of the supply chain?
Data on correlated products and sellers helps improve demand forecasting -Dec 28, 2022
Graph-based models capture correlations efficiently enough to enable machine learning at scale.
Bayesian Hierarchical Marketing Mix Modeling in PyMCOct 14, 2022
Learn how to build MMMs for different countries the right way
Subsidizing Prediction MarketsJun 14, 2022
Epistemic Status: Sadly Not Yet Subsidized Robin Hanson linked to my previous post on prediction markets with the following note: I did briefly mention subsidization, as an option for satisfying th…
Consuming Contests: The Effect of Outcome Uncertainty on Spectator Attendance in the Australian Football LeagueJan 16, 2022
Contests that non-contestants consume for entertainment are a fixture of economic, cultural and political life. We exploit injury-induced changes to teams’ line
How to replace estimations and guesses with a Monte Carlo simulationOct 7, 2021
There are many ways of estimating how long a software project will take. All of them are a waste of time.
The history of Amazon’s forecasting algorithmAug 9, 2021
The story of a decade-plus long journey toward a unified forecasting model.
https://dev-alloy.pantheonsite.io/wp-content/uploads/2020/11/Guide_NoNonsenseForecasting_Alloy_022019.pdfJul 25, 2021
Amazon open-sources library for prediction over large output spacesMay 1, 2021
Framework improves efficiency, accuracy of applications that search for a handful of solutions in a huge space of candidates.
Advanced forecasting using Bayesian diffusion modelingMay 1, 2021
Applications from cancer to covid-19
Best Practices for Using AI to Develop the Most Accurate Retail ForecastingMay 1, 2021
A leading global retailer has invested heavily in becoming one of the most competitive technology companies around. Accurate and timely demand forecasting for millions of item-by-store combinations is…
Pocket - Reduce Noise, Not Cognitive BiasesFeb 4, 2021
A series of posts on the limits of human forecasting, and what we may learn from the very best research into the topic.
Reduce Noise, Not Cognitive BiasesFeb 3, 2021
Results from the BIN paper, or why reducing noise in your decision making is far easier than fighting your cognitive biases.
The Psychology of Prediction · Collaborative FundAug 9, 2019
This report describes 12 common flaws, errors, and misadventures that occur in people’s heads when predictions are made.
forensics
Inside the Texas Crime Lab That’s Cracked Hundreds of Cold CasesOct 15, 2025
"The killing of Catherine Edwards, in Beaumont, long remained unsolved. Then came Othram, a start-up whose breakthroughs in DNA technology are helping identify bodies and solve decades-old murders and rapes."
Inside the Glitter LabOct 14, 2025
"How the tiniest trace of red shimmer helped solve one of California’s most brutal crimes."
Can a Comma Solve a Crime? — The DialDec 6, 2024
How forensic linguists use grammar, syntax and vocabulary to help crack cold cases.
Open Forensic Science in RFeb 22, 2024
This book is for anyone looking to do forensic science analysis in a data-driven and open way.
How Forensic Accounting Can Supercharge Your Financial Risk AnalysisMay 8, 2023
Spot trouble early in a volatile environment with forensic accounting.
The Sultan of SpatterJan 28, 2021
Dr. Donald Johnson has spent his career making crime scene blood stains spill their secrets. His next mission: bringing forensic science into the iPad age.
To Catch A Bomb-MakerOct 26, 2019
This is the story of a little-known FBI forensics lab and how it changed the war on terror.
How to identify a body: the Marchioness disaster and my life in forensic paApr 19, 2019
The long read: In my career, I have investigated many of the UK’s worst disasters. Few cases were as harrowing as the sinking of the Marchioness in 1989, which left scores dead and almost impossible to identify
forth
Forth2020 - About ForthOct 13, 2022
Interview from : "Masterminds of Programming by Shane Warden, Federico Biancuzzi" Chapter 4. Forth Forth is a stack-based, concatenative language designed by Chuck Moore in the 1960s. Its main features are the use of a stack to hold data, and words that operate on the stack, popping arguments
1. Fundamental ForthJan 9, 2022
In this chapter we'll acquaint you with some of the unique properties of the Forth language. After a few introductory pages we'll have you sitting at a
My history with Forth & stack machinesFeb 20, 2021
Factor programming languageJun 17, 2020
Forth Lessons - OLPCApr 24, 2020
fortran
Why You Should Consider Using Fortran As A Data ScientistMay 18, 2023
An exploration of the benefits that Fortran can bring to Data Science and Machine Learning
The Skills Gap For Fortran Looms Large In HPCMay 2, 2023
Back in the dawn of time, which is four decades ago in computer science and which was before technical computing went mainstream with the advent of Unix
Crucial Computer Program for Particle Physics at Risk of ObsolescenceDec 8, 2022
Maintenance of the software that’s used for the hardest physics calculations rests almost entirely with a retiree. The situation reveals the problematic incentive structure of academia.
Why are most climate models in FortranMar 14, 2021
An examination of the software that powers modern Climate simulations.
foundries
Gate-All-Around (GAA) Technology for Sustainable AI - SemiWikiFeb 9, 2026
Key takeaways ▼ The transition from FinFET to Gate-All-Around (GAA) transistor technology represents a pivotal moment in the evolution of logic devices, driven by both physical scaling limits and the … Continue reading "Gate-All-Around (GAA) Technology for Sustainable AI"
Where Are Semiconductor Fabs Currently Being Built Around the World? - Z2DataOct 1, 2025
The semiconductor manufacturing landscape continues to grow, with new fabs and expansions to current production sites taking place in the U.S., Asia, and other key manufacturing regions.
GlobalFoundries Q2 2025 Performance: Strategic Repositioning Amid Weak Consumer Demand - AnySiliconAug 8, 2025
In today’s semiconductor landscape, demand is increasingly shifting toward specialized solutions—automotive electrification, industrial AI deployment, and communication infrastructure—while consumer electronics markets like smartphones are showing slower recovery. In this context, GlobalFoundries (GF) is charting a strategic shift as it aligns its manufacturing and IP capabilities toward high-value domains such as automotive, datacenters, and industrial computing.
Google NewsJul 7, 2025
Comprehensive up-to-date news coverage, aggregated from sources all over the world by Google News.
SMIC Is Rumored To Complete 5nm Chip Development By 2025; Costs Could Be Up To 50 Percent Higher Than TS…Mar 28, 2025
China’s biggest semiconductor manufacturer, SMIC, is rumored to complete 5nm chip development in 2025, leading to advanced chip orders from Huawei
BintangChip: Your specialty foundry for the analog worldFeb 18, 2025
BintangChip is one of the world’s leading specialty foundry groups for analog/mixed-signal semiconductor technologies. As a pure-play foundry, we provide manufacturing and strong design support services to our customers that design analog/mixed-signal integrated circuits and other semiconductor devices for use in their own products or the products of their customers.
The U.S. has sanctioned 18 Chinese fabs, dozens remain in in white zoneJul 31, 2024
China has big plans for semiconductor industry and they include self reliance.
Intel Vs. Samsung Vs. TSMCJul 27, 2024
Foundry competition heats up in three dimensions and with novel technologies as planar scaling benefits diminish.
Growth of 300mm fab capacity picks up pace again - Bits&ChipsApr 5, 2023
After dipping this year, the growth of 300mm semiconductor manufacturing capacity is set to gain momentum.
Wafer foundries in China expected to continue with capacity expansion plansMar 14, 2023
China-based semiconductor manufacturers, in the wake of geopolitical risks, are expected to keep up with their capacity expansion strategies going into 2023 with a good number of projects already in construction, according to DIGITIMES Research's latest report covering the latest status of China's wafer foundry industry
Total Revenue of Top 10 Foundries Fell by 4.7% QoQ for 4Q22 and Will SlideMar 14, 2023
Mar. 13, 2023 —- According to TrendForce’s latest survey of the global foundry market, electronics brands began adjusting their inventories in 2Q22, but foundries were unable to rapidly adapt to this development because they reside in the more upper portion of the supply chain. Moreover, revising procurement quantities of long-term foundry contracts takes time as well. Hence,
Report: Samsung Is Struggling With 10-20% Yields at 2nmSep 24, 2013
The company's difficulties have allegedly caused it to withdraw personnel from its Taylor, TX facility while it reassesses its plans.
Clash of the Foundries: Gate All Around + Backside Power at 2nmOct 24, 2002
Fab Cost, WFE Implications, Backside Power Details
fourier
What Is the Fourier Transform?Sep 3, 2025
Amid the chaos of revolutionary France, one man’s mathematical obsession gave way to a calculation that now underpins much of mathematics and physics. The calculation, called the Fourier transform, decomposes any function into its parts.
youtube_channel/Python Tutorial Series/fourier_transform1.ipynb at main · lukepolson/youtube_channelSep 29, 2023
Notebooks for the python tutorials of my youtube channel. See specific youtube video for link to specifc notebook. - lukepolson/youtube_channel
Digital Music Couldn't Exist Without the Fourier TransformDec 21, 2022
This is the Fourier Transform. You can thank it for providing the music you stream every day, squeezing down the images you see on the Internet into tiny
Signal Processing, beyond the Fourier Transform: Introduction to the ChirplSep 24, 2022
From a theoretical introduction to the hands-on implementation: here’s what you need to know about the Chirplet Transform
The Math Trick Behind MP3s, JPEGs, and Homer Simpson’s FaceJun 29, 2020
It doesn’t quite get the audiophile seal of approval, but scientists are very intrigued.
An Introduction to the Fast Fourier TransformDec 27, 2017
This article will review the basics of the decimation-in-time FFT algorithms.
fpgas
FPGAs Need a New FutureDec 10, 2025
FPGAs are limited by outdated proprietary software. Learn how embracing open-source tools is necessary to modernize FPGA development and unlock their full potential.
How FPGAs Can Take On GPUs And Knights LandingDec 8, 2021
Nallatech doesn't make FPGAs, but it does have several decades of experience turning FPGAs into devices and systems that companies can deploy to solve
Analysis and Comparison of Performance and Power Consumption of Neural NetwDec 8, 2021
In this work, we analyze the performance of neural networks on a variety of heterogenous platforms. We strive to find the best platform in terms of raw benchmark performance, performance per watt a…
Synopsys Blog | Latest Insights on EDA, IP & Systems DesignDec 4, 2021
Explore Synopsys Blog for the latest insights and trends in EDA, IP, and Systems Design. Stay updated with expert articles and industry news.
How FPGAs work, and why you'll buy oneDec 1, 2021
AMD Patent Reveals Hybrid CPU-FPGA Design That Could Be Enabled By Xilinx TJan 2, 2021
Intel has been talking about on-processor FPGAs since 2014, but AMD's patent might actually result in one.
How Does Xilinx Use Its Logic Fabric to Implement Efficient Multipliers?May 3, 2018
This article will review the structure of the binary multipliers that use the look-up tables (LUTs) in the Xilinx logic fabric.
fraud
Fraud Investigation Lessons From FinanceFeb 18, 2026
The financial industry has paid tens of billions of dollars in tuition on fraud detection. Here are some observations for investigators with badges, press cards, or GoPros.
What AI builders can learn from fraud models that run in 300 millisecondsFeb 9, 2026
Mastercard's Decision Intelligence Pro uses recurrent neural networks to analyze 160 billion yearly transactions in under 50 milliseconds, delivering precise fraud risk scores at 70,000 transactions per second during peak periods.
Escape From the BoxJul 10, 2024
New technology and old tactics have made buying a car a death march of deception. Jase Patrick, who spent 15 years in the business, reveals the dealer secrets.
How Four Brothers Allegedly Fleeced $19 Million From AmazonApr 30, 2024
Over the course of two years, four brothers allegedly swindled Amazon out of at least $19 million using $94 toothbrushes and other expensive goods.
How Bots Corrupted AdvertisingOct 18, 2022
Botmasters have created a Kafkaesque system where companies are paying huge sums to show their ads to bots. And everyone is fine with this.
freemium
How to Compete with “Free” Products and ServicesAug 6, 2023
Companies make two key mistakes when they try to compete with a free entrant.
Why We’re Dropping Freemium as a Business Model: Value vs. Cost - Blog | evercontactJul 18, 2022
This past week our Community / Growth Manager, Brad Patterson, spoke at the European Cloud Expo in London on the topic Try Before You Buy – Successes and Misgivings in the European Cloud Ecosystem. Also speaking were Jason Turner, director of Business development at Cedexis, António Ferreira, CEO at Luna Cloud, Lee […]
There are 7 Types of Freemium and Why That Matters...Jul 6, 2022
Freemium - especially in B2B SaaS - has evolved and there are now seven distinct types of Freemium in the market.
Secrets Of Freemium Pricing: Make The Cheapskates PayJul 5, 2022
The following is a guest post by Andy Singleton Andy is the founder and CEO of Assembla a company that provides bug tracking and hosted GIT and SVN
When Freemium FailsJun 23, 2022
A growing number of new businesses are following in the footsteps of successful companies such as Dropbox and Skype, by giving away their products and services free to build a customer base. But for some, that 'freemium' strategy is turning out to be costly.
friction-traction
Friction Science: Why Users Drop Off - UX MagazineFeb 10, 2026
Most teams worry about small changes to UI when users stop using the product. But research shows that the real problem is psychological friction. This is when your brain has hidden mental interruptions that make you think, "Maybe later." This article looks at the four types of friction that can stop people from buying your products, and why 91% of people leave websites when there are problems with these things happening at the same time. Spoiler: You're not designing for screens. You're designing for the human mind.
The Uses of FrictionDec 6, 2022
Plus! Market-Making; Poaching and Equity Currency; China's Covid Economy; The Cost of AI; Friendshoring; Diff Jobs
Find The Fast Moving WaterSep 5, 2022
We work with our NFX Guild on this mental model for greatness from day 1. Now, we are sharing it with the rest of the startup community.
How to design a referral programAug 17, 2022
Amazon’s Friction-Killing Tactics To Make Products More SeamlessJul 19, 2022
Amazon director Kintan Brahmbhatt, who's helped develop and refine the product strategy behind the Alexa and Amazon Music, explains the ways in which friction can live in your product, throwing roadblocks in a user's path to becoming a customer. He explains how to uncover counterintuitive insights that can pinpoint friction points, and spells out the three-step process for eliminating them.
How a Preview Image Increased a Landing Page's Conversion Rate by 359% - Search Engine WatchJul 18, 2022
Using Google’s new “Google Experiments” for A/B testing confirmed a hypothesis that a landing page with a preview image will have a higher conversion rate than a landing page without the preview image. Here’s how you can conduct your own test.
Why Marketing Flywheels Work - SparkToroJul 18, 2022
The first few years of my career were awful. Drowning in debt, losing nine out of ten pitches for new business, failing to earn clients. It felt like
Jonah Berger’s 75 Examples Of Infectious MarketingJul 18, 2022
Make your brand messages viral with the 6 STEPPS from Jonah Berger's Contagious, including 75 real-life marketing examples to learn from.
User Acquisition: The Five Sources of TrafficJul 18, 2022
This is the first post in a three post series on user acquisition. The topic of this blog post may seem simplistic to those of you who have been in the trenches, working hard to grow visits and vis…
Traction PDF Summary - Gabriel Weinberg & Justin Mares | 12min BlogJul 17, 2022
Traction PDF Summary by Gabriel Weinberg & Justin Mares pinpoints how startups can climb the ladder at lightning speed and learn how to expand your company.
10-Steps to a Friction-Free App.Jul 5, 2022
How to improve your product experience to eliminate confusion and frustration for your users.
Batman Is A Growth HackerJul 5, 2022
B.J. Mendelson breaks down how Batman is a growth hacker, and what we can learn about the field from him.
How Paypal and Reddit faked their way to tractionJul 5, 2022
When “faking it before making it” actually works
Liquidity hacking: Solving the chicken-egg dilemma with marketplace startupsJun 24, 2022
Guest How to get a two-sided marketplace startup like Airbnb, Exec, or eBay up and running -- the painless way.
Q: What Makes a Product Attract Early Adopters? - SKMurphy, Inc.Jun 23, 2022
This is an edited version of a recent online conversation I had with a team of bootstrappers about how to make their product attract early adopters.
Two lessons on reducing sign-up frictionMay 14, 2020
I learned the hard way how important a carefully designed sign-up process is. I saw a large percentage of interested people fail to sign up because of easily preventable flaws in the flow.
The Subtle Art of User Onboarding & AdoptionAug 29, 2019
The “traditional” user onboarding flows and walkthroughs are dead. Learn about the next era of user onboarding and how to adapt to the changes in your org.
Don't Pay to Acquire Your First UsersJan 26, 2019
Recently, a founder asked to chat with me about SEO. During our call, the founder - whose startup is backed by a top-tier VC - said to me “I assume that you acquired your first users through paid marketing.” Really? Is this an assumption nowadays? Since we’ve raised money
Friction – Stratechery by Ben ThompsonDec 18, 2017
The Internet has removed friction: that means a whole new set of possibilities; it doesn’t mean they are all good.
friends
The Sociological Eye: FIVE KINDS OF FRIENDSOct 6, 2023
The word “friends” has at least five different meanings: Allies Backstage intimates Fun friends Mutual interests friends Soc...
The Trait That ‘Super Friends’ Have in CommonAug 28, 2022
A secure attachment style can help people initiate and maintain friendships.
furniture
5 Products Made from Cardboard: The Bench Supports 300 Pounds - Yanko DesignFeb 18, 2026
Cardboard was once seen as just packaging, but it is now becoming a design hero. As sustainability and cost efficiency drive modern innovation, this humble material is being reimagined for far more than shipping boxes. Lightweight, strong, and easily recyclable, it inspires designers to create accessible, eco-friendly products without compromising on aesthetics or performance. From
Rossini Rattan Dining ChairDec 9, 2025
Construction
Handcrafted of natural rattan in Indonesia. This product celebrates and preserves artisan handcraft traditions around the world.
This product is made of rapidly renewable, natural rattan – a responsible material and one of
If you want luxury furniture for less, trek to a hidden Bay Area warehouseNov 11, 2024
“They just kicked everybody out.”
The Napoleon of Your Living RoomJun 8, 2024
Gary Friedman, who runs RH (formerly Restoration Hardware), is out to conquer the world, one luxurious sofa at a time. Next stop, Waterloo?
Why Are (Most) Sofas So Bad?Mar 16, 2024
The most important piece of furniture in your home is in need of assistance. How did we end up here? And how can we fix it?
The Uncomfortable Truth About Why Buying Furniture Is So MiserableMar 28, 2023
Shopping for a simple couch or dresser is driving Americans mad. What does the future hold for one of North Carolina's most important industries?
‘Mid-century millennial’ – the ubiquitous look that took over a generation’s homesJul 5, 2022
Curvy sofas, industrial finishes, pastel overload … mid-century-ish furnishings have come to define the millennial look. What’s the appeal – and what will our homes look like next?
Meyda Prairie Corn Burgundy & Beige 13" Shade | MY18670Jan 26, 2022
Shop this meyda prairie corn burgundy & beige 13" shade from our top selling Meyda lighting shades. LuxeDecor is your premier online showroom for lighting and high-end home decor.
The thriving business of ‘Ikea hacking’Jun 25, 2021
A growing number of companies are offering design tweaks for old Ikea furniture — and business is booming.
This Pig Ottoman Went Viral on Twitter, and It’s So Oinking CuteMar 30, 2021
“No thoughts just pig ottoman” is Twitter user @2Saddington’s quarantine mood — and it’s a relatable one at that. This cute little footstool from Target went viral on March 3 with over 100,000 retweets.The Burton New Velvet Pig Ottoman could be yours for less than $60 — though certain colorways in some areas are, unsurprisingly, sold out after the footstool’s five minutes of fame.
fusion
Helion gives behind-the-scenes tour of secretive fusion prototypeOct 28, 2025
In the city of Everett, inside a vault built with thick concrete blocks is Polaris, a machine that could change the world.
Record-Breaking Results Bring Fusion Power Closer to RealityJul 3, 2025
Breakthroughs from two rival experiments, Germany’s Wendelstein 7-X and the Joint European Torus, suggest the elusive dream of controlled nuclear fusion may be within reach
Chinese Fusion Reactor Maintains Steady State For Almost 18 Minutes - SlashdotJan 24, 2025
Longtime Slashdot readers smooth wombat and AmiMoJo shares a fusion energy breakthrough from China. Charming Science reports: China's "artificial sun," officially known as the Experimental Advanced Superconducting Tokamak (EAST), has achieved a groundbreaking milestone in fusion energy research. Ac...
Princeton achieves 10x reduction in tritium needs for nuclear fusionNov 20, 2024
US scientists made a breakthrough in fusion energy, discovering a new fuel mix that could improve efficiency and reduce tritium reliance.
Nuclear Fusion’s New Idea: An Off-the-Shelf StellaratorOct 30, 2024
Fast prototyping revives a 70-year-old reactor design
Marvel Fusion breaks ground on $150M laser facility in ColoradoOct 18, 2024
The ATLAS facility will use three ultra-high intensity lasers to initiate the same reaction that powers the Sun and stars.
Will We Ever Get Fusion Power?Jul 2, 2024
“Every one of the stars in the sky uses fusion to generate enormous amounts of energy. Why shouldn’t we?”
Nuclear fusion world record a promising step toward limitless energyFeb 11, 2024
The JET fusion reactor in the UK has set a new world record for energy output — but the promise of abundant, clean energy is still way off.
Korean nuclear fusion reactor achieves 100 million°C for 30 secondsSep 9, 2022
A sustained, stable experiment is the latest demonstration that nuclear fusion is moving from being a physics problem to an engineering one.
The Quest for Fusion EnergyJun 19, 2022
Despite repeated claims that the prospects for commercialization have never looked brighter, the stark reality is that practical fusion-based electric power remains a very distant prospect.
gallium-arsenide
Google NewsJul 7, 2025
Comprehensive up-to-date news coverage, aggregated from sources all over the world by Google News.
Gallium Arsenide (GaAs) OverviewDec 11, 2022
Gallium arsenide (GaAs) technology is a type of semiconductor material used in the manufacturing of various electronic devices. It is known for its high electron mobility, which allows it to operate at higher speeds and with lower power consumption compared to other semiconductor materials such as silicon.
GaN Systems Cup 2022 design competition underwayJun 21, 2022
Challenge to create GaN-based 400V photovoltaic power supply
gallium-nitride
The vertical GaN transistor: Time for take-off - Compound Semiconductor NewsOct 23, 2025
Our selection of industry specific magazines cover a large range of topics.
MIT spinoff Vertical Semiconductor gets $11M to build more power-efficient AI chips - SiliconANGLEOct 15, 2025
The power GaN race: market growth, consolidation, and new entrantsOct 1, 2025
The expanding role of GaN in power electronics. Gallium nitride (GaN) has emerged as one of the most disruptive semiconductor technologies of the decade, with a market projected to reach $3 billion by 2030. Consumer applications, particularly fast chargers, have been the early adopters, driving volume growth and ecosystem maturity. By 2030, the Consumer and […]
Negative Capacitance Breaks GaN Transistor LimitsJul 28, 2025
Researchers are testing a special coating on GaN devices that may enhance transistor performance by breaking the Schottky limit.
300mm GaN roadmapJul 7, 2025
Our selection of industry specific magazines cover a large range of topics.
Why RF Technologies Should Consider GaN Over Silicon - EE TimesMay 7, 2025
Silicon is the industry standard for semiconductors. However, GaN has become a more beneficial option for RF applications.
Improving GaN Device ArchitecturesJan 23, 2025
Novel combinations show promise for different applications.
GaN Devices: Properties and Performance At Extremely High TemperaturesMay 29, 2024
A new technical paper titled “High temperature stability of regrown and alloyed Ohmic contacts to AlGaN/GaN heterostructure up to 500 °C” was published by researchers at MIT, Technology Innovation Institute, Ohio State University, Rice University and Bangladesh University of Engineering and Technology. Abstract “This Letter reports the stability of regrown and alloyed Ohmic contacts to AlGaN/GaN-on-Si... » read more
Choosing the Best Wide Bandgap Technology for Your Application - Industry ArticlesJan 7, 2024
Understanding the unique advantages provided by silicon carbide (SiC) and gallium nitride (GaN) can help you select the optimal technology to meet your products’ power, thermal, and size requirements.
GaN HEMT Circuit Topologies for High-resolution LiDARApr 29, 2023
Learn about gallium-nitride (GaN) high electron mobility transistors (HEMTs) and how they can be used in LiDAR (light detection and ranging) applications.
Latest GaN ICs Crank out More Speed, Efficiency, and Power DensityApr 15, 2023
Leveraging gallium nitride (GaN) technology, the latest batch of power devices boast improved performance, high efficiency, and low design costs.
Five key reasons to switch to GaN - DCDFeb 25, 2023
It may be the only way to keep up with environmental power regulations
Sandia reports GaN diode with record 6.4kV breakdown ultrafast devices stepMar 21, 2022
Target is 20kV, to protect electric grid from electromagnetic pulse
game-theory
Game Theory Patterns at WorkFeb 10, 2026
Foundations: Games, Rationality, and Traps In organizations, strategies and execution are interdependent. Outcomes depend not just on what you do, but on what others do, and what they expect you to…
The Game Theory of How Algorithms Can Drive Up Prices | Quanta MagazineOct 22, 2025
Recent findings reveal that even simple pricing algorithms can make things more expensive.
Schelling PointSep 7, 2025
In game theory, a Schelling point describes an intuitive focal solution people gravitate towards without direct communication. Named after its progenitor, economist Thomas Schelling, its reach extends to realms like negotiations, economics, and international affairs, driven by common societal frameworks and references.
How the Mathematics of Honesty Underlies These AuctionsJun 9, 2025
Here's the surprising math at the heart of auction theory
Top Strategy Board Games to Challenge Your Mind and Elevate Game NightMay 28, 2025
Have you ever wondered how a simple board game can sharpen your mind and enhance your strategic thinking skills? In recent years, strategy board games have surged in popularity, captivating players of all ages with their intricate designs and challenging gameplay. These games are not just a source of entertainment; they offer a unique blend
Beyond Human Intervention: Algorithmic Collusion through Multi-Agent Learning StrategiesJan 29, 2025
Our paper, Beyond Human Intervention: Algorithmic Collusion through Multi-Agent Learning Strategies, with Suzie Grondin and Philipp Ratz is now available online Collusion in market pricing is a concept associated with human actions to raise market prices through artificially limited supply. Recently, the idea of algorithmic collusion was put forward, where the human action in the … Continue reading Beyond Human Intervention: Algorithmic Collusion through Multi-Agent Learning Strategies →
Top 10 Game Theory Books to Enhance Strategic ThinkingJan 19, 2025
Explore the best books on game theory to sharpen your strategic thinking. From foundational texts to advanced strategies, these books offer valuable insights for professionals, students, and enthusiasts
NJan 2, 2025
Title:An Abundance of Katherines: The Game Theory of Baby NamingJul 30, 2024
In this paper, we study the highly competitive arena of baby naming. Through making several Extremely Reasonable Assumptions (namely, that parents are myopic, perfectly knowledgeable agents who...
How Game Theory and AI Have Raised the Stakes in Top-Level PokerJul 20, 2024
Poker players can now employ AI to find the optimal playing strategy, but they often don’t use it. Here’s why
The Evolution of TrustJul 8, 2024
an interactive guide to the game theory of why & how we trust each other
Glossary of game theory - WikipediaJun 22, 2024
Game theory is the branch of mathematics in which games are studied: that is, models describing human behaviour. This is a glossary of some terms of the subject.
Information as a Universal Complement and Universal SubstituteJun 11, 2024
Plus! Diff Jobs; Making a Market; Financial Innovation; IRL; Open-Ended Liabilities; Meme Stock Relapse
Bargaining and Dynamic CompetitionMay 28, 2024
Prediction Markets - LessWrongApr 13, 2024
Prediction markets are speculative markets created for the purpose of making predictions. Assets are created whose final cash value is tied to a particular event or parameter. The current market prices can then be interpreted as predictions of the probability of the event or the expected value of the parameter. Prediction markets are thus structured as betting exchanges, without any risk for the bookmaker. Robin Hanson was the first to run a corporate prediction market - at Project Xanadu -, and has made several contributions to the field such as: conditional predictions, accuracy issues and market and media manipulation. People who buy low and sell high are rewarded for improving the market prediction, while those who buy high and sell low are punished for degrading the market prediction. Evidence so far suggests that prediction markets are at least as accurate as other institutions predicting the same events with a similar pool of participants. Predictions markets have been used by organizations such as Google, General Electric, and Microsoft; several online and commercial prediction markets are also in operation. Historically, prediction markets have often been used to predict election outcomes. See Also * Prediction * Economic consequences of AI and whole brain emulation * Group rationality * Making beliefs pay rent * QURI External Posts * Prediction Market FAQ by @Scott Alexander * A 1990 Corporate Prediction Market by Robin Hanson * Leamer's 1986 Idea Futures Proposal by Robin Hanson * Should Prediction Markets be Charities? by Peter McCluskey * The Future of Oil Prices 2: Option Probabilities by Hal Finney * Prediction Markets As Collective Intelligence by Robin Hanson * Fixing Election Markets by Robin Hanson * Prediction Markets at gwern.net * Idea Futures (a.k.a. Prediction Markets) by Robin Hanson External Links * Comparing face-to-face meetings, nominal groups, Delphi and prediction markets on an estimation task * Video of Robin
CARD GAME RULESJan 8, 2024
The largest collection of card game rules on the Internet, with information about hundreds of card and tile games from all parts of the world.
The Hidden Worlds of MonopolyJan 5, 2024
From Atlantic City to high fashion to Karl Marx, the most recognizable board game has had serious cultural impact.
What is RGSP? Google’s Randomized Generalized Second-Price ad auctions explOct 15, 2023
A deep dive into why the DOJ thinks RGSP makes ad auctions unfair, and why Google believes it creates a better user experience.
Five Game Theory’s Concepts: Avoid Zero-Sum Games and Improve Your Life ByJul 3, 2023
Game theory provides a lot of insightful concepts we can wrap in the theoretical framework that can be applied to different fields under various circumstances. Here are five concepts from game theory that have a wide range of applications, and my examples of using them in different areas of my life.
Bidder Density: When 1 1 = 10xMar 25, 2023
How bid density impacts ads, recommender systems, and salary negotiations.
GitHub - ncase/trust: An interactive guide to the game theory of cooperatioMar 20, 2023
An interactive guide to the game theory of cooperation - ncase/trust
Researcher solves nearly 60-year-old game theory dilemmaMar 15, 2023
A researcher has solved a nearly 60-year-old game theory dilemma called the wall pursuit game, with implications for better reasoning about autonomous systems such as driver-less vehicles.
How "Generous Tit for Tat" wins at lifeMar 6, 2023
And why the combo of strength+gentleness is unbeatable in the long run.
The Market for LemonsFeb 5, 2023
"The Market for 'Lemons': Quality Uncertainty and the Market Mechanism" is a widely cited seminal paper in the field of economics which explores the concept of asymmetric information in markets. The paper was written in 1970 by George Akerlof and published in the Quarterly Journal of Economics. The paper's findings have since been applied to many other types of markets. However, Akerlof's research focused solely on the market for used cars.
Mastering Stratego, the classic game of imperfect informationDec 2, 2022
Game-playing artificial intelligence (AI) systems have advanced to a new frontier. Stratego, the classic board game that’s more complex than chess and Go, and craftier than poker, has now been...
Victor Shi: We don’t need a third party. We need ranked choice voting.Oct 2, 2022
Earlier this summer, a group of anti-Trump and moderate Republicans and Democrats launched a new political party called the Forward Party. On the surface, this movement echoes recent polls indicati…
Auction Houses and Galleries Are Working Together—Here’s WhySep 27, 2022
Auction houses and galleries are getting creative, partnering to drive demand and give their clients access to the best works.
Pricing Novel GoodsSep 25, 2022
With Peltola’s Defeat of Palin, Alaska’s Ranked-Choice Voting Has a MomentSep 2, 2022
Mary Peltola won by appealing to Alaskan interests and the electorate’s independent streak. But Alaska’s new voting system played a big role, too.
How Pricing Bots Could Form Cartels and Make Things More ExpensiveJul 18, 2022
Antitrust law will have to evolve to cope.
To Get Good, Go After The MetagameJul 18, 2022
What do metagames have to do with the acquisition of expertise?
Mastering the Game of Stratego with Model-Free Multiagent...Jul 11, 2022
We introduce DeepNash, an autonomous agent capable of learning to play the imperfect information game Stratego from scratch, up to a human expert level. Stratego is one of the few iconic board...
Cross-chain Deals and Adversarial CommerceJun 29, 2022
This paper appeared in VLDB'19 and is authored by Maurice Herlihy, Barbara Liskov, and Liuba Shrira. How can autonomous, mutually-distrust...
Market DesignJun 23, 2022
A broad overview of market mechanisms, with an emphasis on the interplay between theory and real-life applications; examples range from eBay auctions to scho...
Subsidizing Prediction MarketsJun 14, 2022
Epistemic Status: Sadly Not Yet Subsidized Robin Hanson linked to my previous post on prediction markets with the following note: I did briefly mention subsidization, as an option for satisfying th…
Auctions: Theory and PracticeJun 13, 2022
Quadratic VotingMar 31, 2022
We are a community of activists, artists, entrepreneurs, and scholars committed to using mechanism design to inspire radical social change.
The Games We Play: Understanding Strategic Culture Through Games - Modern War InstituteMar 27, 2022
This article is part of the contribution made by the US Army War College to the series “Compete and Win: Envisioning a Competitive Strategy for the Twenty-First Century.” The series […]
Consuming Contests: The Effect of Outcome Uncertainty on Spectator Attendance in the Australian Football LeagueJan 16, 2022
Contests that non-contestants consume for entertainment are a fixture of economic, cultural and political life. We exploit injury-induced changes to teams’ line
The Wild, Wonderful World of Estate SalesJan 15, 2022
The estate-sale industry is fragile and persistent in a way that doesn’t square with the story of the world as we have come to expect it.
Game theory as an engine for large-scale data analysis | DeepMindMay 7, 2021
Modern AI systems approach tasks like recognising objects in images and predicting the 3D structure of proteins as a diligent student would prepare for an exam. By training on many example...
Larry David and the Game Theory of Anonymous DonationsMar 14, 2021
What your generosity signals about you.
Game Theory – Open Yale CoursesMar 8, 2021
In Game Theory, No Clear Path to EquilibriumDec 29, 2020
John Nash’s notion of equilibrium is ubiquitous in economic theory, but a new study shows that it is often impossible to reach efficiently.
How grading agencies drove the trading card boomDec 18, 2020
They standardized value, which helped collectors to get a sense of the market.
Game TheoryJun 24, 2020
Game Theory is the study of micro-situations where each situation demands a decision that
The (Auction) House Doesn’t Always WinJun 3, 2020
As Christie’s, Sotheby’s and others vie to lure sellers of big-name artworks, analysts wonder if the houses are running oversize risks.
Quadratic VotingMay 17, 2020
Quadratic voting is a rated voting method procedure where voters express the degree of their preferences. By doing so, quadratic voting seeks to address issues of the Condorcet paradox and tyranny of the majority. Quadratic voting works by allowing users to "pay" for additional votes on a given outcome to express their support for given issues more strongly, resulting in voting outcomes that are aligned with the highest willingness to pay outcome, rather than just the outcome preferred by the majority regardless of the intensity of individual preferences. The payment for votes may be through either artificial or real currencies. Quadratic voting is a variant of cumulative voting, which differs in that the weight of a vote is normalized using the sum of squares, rather than the sum of absolute values.
Why prediction markets are bad at predicting who’ll be presidentMar 9, 2020
Betting markets show Bloomberg as a leading candidate. Really?
Black–Scholes model - WikipediaFeb 26, 2020
The Black–Scholes /ˌblæk ˈʃoʊlz/[1] or Black–Scholes–Merton model is a mathematical model for the dynamics of a financial market containing derivative investment instruments. From the parabolic partial differential equation in the model, known as the Black–Scholes equation, one can deduce the Black–Scholes formula, which gives a theoretical estimate of the price of European-style options and shows that the option has a unique price given the risk of the security and its expected return (instead replacing the security's expected return with the risk-neutral rate). The equation and model are named after economists Fischer Black and Myron Scholes. Robert C. Merton, who first wrote an academic paper on the subject, is sometimes also credited.
Overcoming Bias : Should Prediction Markets be Charities?Feb 19, 2020
Advocates of prediction markets often focus their attention on markets that can be run for profit.
Prisoner’s Dilemma: Is Cooperation Always the Right Answer?Feb 17, 2020
In this classic game theory experiment, you must decide: rat out another for personal benefit, or cooperate? The answer may be more complicated than you think.
The Best Board Games of the Ancient WorldFeb 9, 2020
Thousands of years before Monopoly, people were playing games like Senet, Patolli and Chaturanga
Pricing algorithms can learn to collude with each other to raise pricesDec 28, 2019
If you shop on Amazon, an algorithm rather than a human probably set the price of the service or item you bought. Pricing algorithms have become ubiquitous in online retail as automated systems have grown increasingly affordable and easy to implement. But while companies like airlines and hotels have long used machines to set their…
Quadratic Payments: A PrimerDec 23, 2019
ChessRoots - Chess opening graph from over 800 million Chess gamesDec 5, 2019
Chess openings visualized from over 800 million Lichess games, 2 million tournament games and 1 million chess engine games.
The Board Game at the Heart of Viking CultureOct 9, 2019
An ancient game known as “hnefatafl” held immense symbolic and religious significance.
Vickrey–Clarke–Groves auctionAug 2, 2019
A Vickrey–Clarke–Groves (VCG) auction is a type of sealed-bid auction of multiple items. Bidders submit bids that report their valuations for the items, without knowing the bids of the other bidders. The auction system assigns the items in a socially optimal manner: it charges each individual the harm they cause to other bidders. It gives bidders an incentive to bid their true valuations, by ensuring that the optimal strategy for each bidder is to bid their true valuations of the items; it can be undermined by bidder collusion and in particular in some circumstances by a single bidder making multiple bids under different names. It is a generalization of a Vickrey auction for multiple items.
A New Way of Voting That Makes Zealotry ExpensiveMay 5, 2019
Some lawmakers in Colorado tried so-called quadratic voting—and it worked.
The confoundingly simple yet deep design of Azul, the best board game of 2018Jan 8, 2019
It’s the game for anyone who loves shaking Scrabble tiles in the bag. (And you know you do.)
The Board Game of the Alpha NerdsOct 8, 2018
8 Board Games So Beautiful, They’re Works Of ArtMar 8, 2018
Find the latest Design news from Fast company. See related business and technology articles, photos, slideshows and videos.
GAME THEORY FOR MANAGERSDec 15, 2017
This book, written in an interactive manner and easy-to-comprehend style, explicates the concepts of game theory. It enables the readers to think strategically in interactions that they may encounter as managers. The book innovatively cites real-world scenarios to highlight the fundamental concepts of game theory. It includes applications from regions around the world, with special emphasis on India.Primarily intended for the students of MBA, the book is also of immense use for managers involved in decision-making. In addition, it will be of value to all readers from all walks of life engaged in strategic interactions, including professionals. The book is supplemented with Instructor’s Manual and Solution’s Manual.Highlights of the book• Many case studies and examples are given in the text to maintain the reader’s interest in the subject. The case studies dwell on diverse issues such as diplomacy, politics, movies, sports, health care, environment, besides business and economics.• Mathematical usage is kept at a level that is easy for most MBA students. Even for those students who are not very comfortable with mathematics, the book is designed in such a way that intuitive and logical understanding is possible without rigorous models. • Each chapter (excluding the first chapter on introduction) ends with summary, solved examples, key terms and exercises.
games
The Chess Cheating EpidemicSep 22, 2025
The Chief Chess Officer of Chess.com describes the crisis he confronted when Norwegian chess grandmaster Magnus Carlsen lost a tournament match to a suspected cheater.
On Designing For ChildrenJul 28, 2025
I’ve been building Kidz Fun Art (web, iPad & Windows) since 2021, so 4 years at time of writing. It’s a tablet optimized application intended to be used by children of all ages R…
5 Mind-Bending Puzzles That Will Challenge Your Brain in 2025Jul 26, 2025
Are you ready to put your problem-solving skills to the test? Whether you’re a lifelong puzzle lover or just looking for a new way to sharpen your mind, the world of modern brain teasers has never been more exciting. In 2025, designers and creators are pushing the boundaries of what a puzzle can be, combining
Would You Pay Nearly $9,000 for a Puzzle?Jul 18, 2025
Some of the most devoted hobbyists are willing to shell out big bucks for what one called “a couture puzzle.”
Top Strategy Board Games to Challenge Your Mind and Elevate Game NightMay 28, 2025
Have you ever wondered how a simple board game can sharpen your mind and enhance your strategic thinking skills? In recent years, strategy board games have surged in popularity, captivating players of all ages with their intricate designs and challenging gameplay. These games are not just a source of entertainment; they offer a unique blend
Real-world map data is helping make better games about farms and transportationMay 25, 2025
Games like City Bus Manager and Global Farmer are using real-world mapping data from OpenStreetMap for more realistic simulations.
10 Ancient Games That Are Still Fun to PlayJul 28, 2024
Find new ways to fill the long summer days with these quick primers on 10 ancient games
Pimp Your Board GamesFeb 18, 2024
Board gaming is such a lovely hobby to keep your mind and your company on edge. No bright blue …
CARD GAME RULESJan 8, 2024
The largest collection of card game rules on the Internet, with information about hundreds of card and tile games from all parts of the world.
The Hidden Worlds of MonopolyJan 5, 2024
From Atlantic City to high fashion to Karl Marx, the most recognizable board game has had serious cultural impact.
Pinball is booming in America, thanks to nostalgia and canny marketingMay 18, 2023
A generations-old game makes a comeback
Please Don’t Ask Me to Play Your Board GameApr 11, 2023
Play can be a great shortcut to bonding. But I’d rather just have a conversation.
GitHub - ncase/trust: An interactive guide to the game theory of cooperatioMar 20, 2023
An interactive guide to the game theory of cooperation - ncase/trust
ChatGPT invented a puzzle game that already exists | Digital TrendsMar 12, 2023
ChatGPT invented a hit puzzle game called Sumplete that could rival Wordle. There's just one problem: It already exists.
For Amusement OnlyDec 13, 2022
Have you ever played those arcade games that give you tickets that you can redeem at the counter for prizes? Here’s a whole article about them.
Thank you very much for your order | puzzleYOUDec 10, 2022
Upload your favorite photos to make custom jigsaw puzzles. Browse 250+ puzzle templates & 80+ gift box designs, customized with your message. Shop over 25,000 jigsaw puzzles. 2-day shipping from Pennsylvania, USA.
Show HN: Trading cards made with e-ink displays | Hacker NewsDec 2, 2022
Right now, each card costs me about $20 each, but with only a bit more scale, I think I can get that down to $10.
Introducing Wyldcard — WyldcardDec 2, 2022
Introducing Wyldcard, a new paradigm for tabletop gaming, trading cards which can magically change as you play.
Mastering Stratego, the classic game of imperfect informationDec 2, 2022
Game-playing artificial intelligence (AI) systems have advanced to a new frontier. Stratego, the classic board game that’s more complex than chess and Go, and craftier than poker, has now been...
Mastering the Game of Stratego with Model-Free Multiagent...Jul 11, 2022
We introduce DeepNash, an autonomous agent capable of learning to play the imperfect information game Stratego from scratch, up to a human expert level. Stratego is one of the few iconic board...
Why are some people compelled to cheat at games? - BBC FutureDec 28, 2021
When it comes to unfair tactics, some of us are just better at bending the rules. But, the urge to cheat at games is easier to understand when you examine how they are designed.
Tabletop Reads: 21 Great Articles About Board GamesJun 25, 2021
From the dark roots of The Game of Life to the real-life operation inspired by Operation, these stories take you deep into the worlds of your favorite board games.
The UX of video game tutorials. What decisions a designer will run into… |Jun 19, 2021
What decisions a designer will run into while designing learning experiences.
Learn To Play | American Go AssociationJun 19, 2021
The national organization for the promotion of the ancient game of Go (aka Weiqi, Baduk) in the US.
A Thread from @Tocelot: "The best apps today are games in disguise @calm @tMar 15, 2021
Get a selection of good threads from Twitter every day
Jon Lai on Twitter: "The best apps today are games in disguise @calm @tiktoMar 14, 2021
Thread 👇
— Jon Lai (@Tocelot)
Go Big or Go HomeJan 30, 2021
In dingy basements and private clubs, an ancient Asian board game becomes a cutthroat battlefield for brainiacs.
How to get over the intimidation factor and start loving hardcore strategy gamesJan 29, 2021
The strategy and wargaming genres contain some of the best reviewed and most beloved games of all time, but many of the most revered of these titles are fiendishly difficult to get into. If you’ve been putting off trying new games such as C
Fixing the past: The art of collecting pinball machinesJul 7, 2019
From the archives: Pinball is a dying art, but as it dies it has spawned a new art in its place.
Table-top generals | 1843Dec 1, 2017
Board games are back, thanks to the lessons their designers have learned from computer games. Tim Cross rolls the dice
A Free 700-Page Chess Manual Explains 1,000 Chess Tactics in Plain EnglishApr 17, 2017
In 2011, Ward Farnsworth published a two-volume collection called Predator At The Chessboard: A Field Guide To Chess Tactics (Volume 1 - Volume 2) where he explains countless chess tactics in plain English.
The Hit New Board Game of the Year Comes From a Decidedly Unexpected SourceSep 24, 2002
How a Runaways star turned a thrilling and traumatic era into a very fun new board game.
gamification
26 Elements of a Gamification Marketing Strategy : Social Media ExaminerJul 18, 2022
Game-based marketing: a gamification marketing guide to create brand awareness and drive user engagement for your business.
The Benefits and Pitfalls of GamificationJun 13, 2022
Gamification is becoming a hot commodity around the web, but what is it? Is it being used correctly? Let's have a look at various aspects of gamification and how they can be used and...
gaming
The (Ludicrous) Psychology of Slot MachinesApr 20, 2025
Slot Machines are the workhorse of Las Vegas casinos. After decades of design tweaks, the "crack cocaine of gambling" brings in more revenue than every other casino game combined.
Optimizing Game Performance: Essential Techniques and ToolsApr 27, 2024
Newzoo’s Global Games Market Report states that in 2023, the global games market shot up to levels...
Babylon.js PlaygroundFeb 10, 2023
Babylon.js playground is a live editor for Babylon.js WebGL and WebGPU 3D scenes
Why is a Swedish billionaire buying up California’s video gaming empire?Dec 28, 2022
In just a few years, Embracer, based in a small Swedish town, has swallowed up studios and brands to become a major player in the gaming industry.
https://fabiensanglard.net/b/gebbdoom.pdfDec 10, 2022
An absurdist baseball game is tearing up the internet, thanks to fansAug 9, 2020
Fans create much of what makes Blaseball special, and they’re immune from the threat of incineration by rogue umpires
Introduction to Networked Physics | Gaffer On GamesJul 16, 2020
Hello readers, I’m no longer posting new content on gafferongames.com Please check out my new blog at mas-bandwidth.com! Introduction Hi, I’m Glenn Fiedler and welcome to the first article in Networked Physics. In this article series we’re going to network a physics simulation three different ways: deterministic lockstep, snapshot interpolation and state synchronization. But before we get to this, let’s spend some time exploring the physics simulation we’re going to network in this article series:
Custom Game Engines: A Small StudyApr 24, 2020
A small state-of-the-art study on custom engines · GitHub
The Story of the Game OperationDec 5, 2019
When you were a kid, it was always fun to play Operation, a game in which you fished parts out of a patient named Cavity Sam, and you had be precise or you'd complete an electric circuit and a buzzer would sound. It was not the first game based on an electric circuit- Ben Franklin actually developed one! And the idea behind Operation was originally based on believe it or not, desert survival.John Spinello created the initial concept for what became Operation in the early 1960s, when he was an industrial ...
ChessRoots - Chess opening graph from over 800 million Chess gamesDec 5, 2019
Chess openings visualized from over 800 million Lichess games, 2 million tournament games and 1 million chess engine games.
Possibility SpaceNov 3, 2019
Hooked on Loot Boxes: How Behavioral Design Gets GamersAug 31, 2019
Nir Eyal’s Hooked Model explains how games keep players coming back.
Fixing the past: The art of collecting pinball machinesJul 7, 2019
From the archives: Pinball is a dying art, but as it dies it has spawned a new art in its place.
Breaking Down OnlyFans’ Stunning Economics — MatthewBall.coSep 24, 2015
Due to UK disclosure requirements, it's possible to examine the P&L of the privately owned/controlled OnlyFans. And the results are shocking.
gans
Building Synthetic Medical Records using GANsAug 12, 2025
In this article, I'll walk you through building GANs from scratch to generate synthetic medical records using Python.
What is Fréchet inception distance (FID)? - DataconomyApr 17, 2025
Fréchet Inception Distance (FID) is a metric that quantifies the quality and diversity of images generated by GANs by comparing feature representations.
Deep Learning Architectures From CNN, RNN, GAN, and Transformers To EncoderApr 15, 2024
Deep learning architectures have revolutionized the field of artificial intelligence, offering innovative solutions for complex problems across various domains, including computer vision, natural language processing, speech recognition, and generative models. This article explores some of the most influential deep learning architectures: Convolutional Neural Networks (CNNs), Recurrent Neural Networks (RNNs), Generative Adversarial Networks (GANs), Transformers, and Encoder-Decoder architectures, highlighting their unique features, applications, and how they compare against each other. Convolutional Neural Networks (CNNs) CNNs are specialized deep neural networks for processing data with a grid-like topology, such as images. A CNN automatically detects the important features without any human supervision.
Why WGANs beat GANs: A journey from KL divergence to Wasserstein lossJan 13, 2023
Wasserstein distance helps WGANs outperform vanilla GANs and VAEs. This post explains why so using some easy math.
Deep Convolutional GAN — How to Use a DCGAN to Generate Images in PythonJul 14, 2022
An overview of DCGAN architecture with a step-by-step guide to building it yourself
New AI tool detects Deepfakes by analyzing light reflections in the eyesMar 14, 2021
Computer scientists from the University at Buffalo used the method to successfully detect Deepfakes taken from This Person Does Not Exist.
An End to End Introduction to GANs using Keras - MLWhizDec 23, 2019
I bet most of us have seen a lot of AI-generated people faces in recent times, be it in papers or blogs. We have reached a stage where it is becoming increasingly difficult to distinguish between actual human faces and faces that are generated by Artificial Intelligence. In this post, I will help the reader to understand how they can create and build such applications on their own. I will try to keep this post as intuitive as possible for starters while not dumbing it down too much. This post is about understanding how GANs work.
Nvidia’s GauGAN has been used to create 500,000 imagesAug 5, 2019
Nvidia's GauGAN tool has been used to create more than 500,000 images, the company announced at the SIGGRAPH 2019 conference in Los Angeles.
Generative Adversarial Networks (GANs): Engine and Applications - Data ScieJun 8, 2018
Generative adversarial networks (GANs) are a class of neural networks that are used in unsupervised machine learning. They help to solve such tasks as image generation from descriptions, getting high resolution images from low resolution ones, predicting which drug could treat a certain disease, retrieving images that contain a given pattern, etc. Our team asked… Read More »Generative Adversarial Networks (GANs): Engine and Applications
How Adversarial Attacks WorkNov 11, 2017
Emil Mikhailov is the founder of XIX.ai [http://XIX.ai] (YC W17). Roman Trusov is a researcher at XIX.ai. Recent studies by Google Brain have shown that any machine learning classifier can be tricked to give incorrect predictions, and with a little bit of skill, you can get them to give pretty much any result you want. This fact steadily becomes worrisome as more and more systems are powered by artificial intelligence — and many of them are crucial for our safe and comfortable life. Banks, sur
garbage-collection
Autotuner: How to Speed Up Your Rails AppApr 26, 2024
Ruby’s garbage collector is designed to be adaptable, scaling from short Ruby scripts to running apps that serve millions of requests per second. While it’s designed to be adaptable, it may not work optimally for every use case. For this reason, Ruby’s garbage collector supports many parameters that can be used to tune it. However, the use of these parameters requires knowledge into how the garbage collector works on the inside. Learn how the Autotuner gem can analyze your app’s traffic and provide suggestions for tuning the garbage collector.
Deep Understanding of Garbage Collection: Principles, Algorithms, and OptimMar 11, 2024
1. Preface Garbage Collection (GC) is an important feature of automatic memory management...
gaslighting
A Defense Against Gaslighting SociopathsDec 30, 2025
If you can recognize their signature move, then forewarned is forearmed.
How Your Brain Gaslights You—for Your Own Good - NautilusJun 27, 2025
Nailia Schwarz via Shutterstock Nautilus Members enjoy an ad-free experience. Log in or Join now . Runners can tell you that sometimes the last mile of a run seems to feel dramatically longer than the first. This perceptual distortion isn’t limited to brains addled by exercise—it’s a consistent feature of our minds. When we […]
So You Think You’ve Been GaslitApr 1, 2024
What happens when a niche clinical concept becomes a ubiquitous cultural diagnosis.
Turn off the gaslightJan 15, 2021
The skilled manipulator casts a shadow of doubt over everything that you feel or think. Therapy can bring the daylight in
gatsby
Quick Start | GatsbyNov 18, 2025
This quick start is intended for intermediate to advanced developers. For a gentler intro to Gatsby, head to our tutorial ! Getting started…
The Best React-Based Framework | GatsbyDec 11, 2021
Gatsby is a React-based open source framework with performance, scalability and security built-in. Collaborate, build and deploy 1000x faster on Netlify.
How To Build A Blog With Gatsby and NetlifyDec 2, 2021
The #1 Blog For Software & Web Developers. Free Tutorials, Tips, Tricks and Learning Resources.
Gatsby.js Documentation | GatsbyJSJun 10, 2020
A-Z Guide To Create And Deploy A Website With GatsbyJS GitHub NetlifyJun 10, 2020
Complete guide to build and deploy a blazingly fast and modern website for free (with custom domain).
gaussian
A Python Engineer’s Introduction To 3D Gaussian Splatting (Part 1)Aug 2, 2024
Understanding and coding Gaussian Splatting from a Python Engineer’s perspective
A Python Engineer’s Introduction to 3D Gaussian Splatting (Part 2)Aug 2, 2024
Understanding and coding how Gaussian’s are used within 3D Gaussian Splatting
A Python Engineer’s Introduction to 3D Gaussian Splatting (Part 3)Aug 2, 2024
Part 3 of our Gaussian Splatting tutorial, showing how to render splats onto a 2D image.
How to Improve Clustering Accuracy with Bayesian Gaussian Mixture ModelsFeb 15, 2023
A more advanced clustering technique for real world data
Gaussian Belief PropagationSep 1, 2021
GPBoost: Combining Tree-Boosting with Gaussian Process and Mixed Effects MoJun 25, 2021
Combining tree-boosting with Gaussian process and mixed effects models - fabsig/GPBoost
Using Gaussian Mixture Models to Transform User-Item Embedding and Generate Better User ClustersApr 18, 2021
Improve clustering of user-item embedding by using GMM to generate new and tighter features
Gaussian Process Regression From First PrinciplesMar 16, 2021
Gaussian Process Regression is a remarkably powerful class of machine learning algorithms. Here, we introduce them from first principles.
Gaussian Mixture Models(GMM)Apr 26, 2020
Understanding GMM: Idea, Maths, EM algorithm & python implementation
What is (Gaussian) curvature?Aug 20, 2019
A Visual Exploration of Gaussian ProcessesApr 5, 2019
How to turn a collection of small building blocks into a versatile tool for solving regression problems.
gcc
Important GCC Flags in LinuxDec 16, 2022
You can use GCC flags to extend the functionality of the GCC compiler. Here are some of the common and yet important flags.
gemini
rbenv and CLI executablesDec 5, 2025
Meet Gemini, Google’s AI assistant. Get help with writing, planning, brainstorming, and more. Experience the power of generative AI.
Practical Guide on how to build an Agent from scratch with Gemini 3Nov 23, 2025
A step-by-step practical guide on building AI agents using Gemini 3 Pro, covering tool integration, context management, and best practices for creating effective and reliable agents.
Beginner’s Guide to Gemini CLI: Install, Setup, and Use It Like a Pro - KDnuggetsAug 6, 2025
Turn your terminal into an AI coding assistant with Gemini CLI and learn how to use it like a pro in minutes.
gemini-cli/docs/cli/commands.md at main · google-gemini/gemini-cliJun 29, 2025
An open-source AI agent that brings the power of Gemini directly into your terminal. - google-gemini/gemini-cli
Gemini CLIJun 25, 2025
First there was Claude Code in February, then OpenAI Codex (CLI) in April, and now Gemini CLI in June. All three of the largest AI labs now have their own …
Putting Gemini 2.5 Pro through its pacesMar 26, 2025
There’s a new release from Google Gemini this morning: the first in the Gemini 2.5 series. Google call it “a thinking model, designed to tackle increasingly complex problems”. It’s already …
Build a Document AI pipeline for ANY type of PDF With GeminiDec 15, 2024
Tables, Images, figures or handwriting are not problem anymore ! Full Code provided.
generative
Best GitHub Repositories to Master Generative AISep 15, 2025
I'm going to walk you through the best repositories I for every fresher to master Generative AI. GitHub Repositories for Generative AI.
ChatGPT, Bard, or Bing Chat? Differences Among 3 Generative-AI BotsOct 3, 2023
Participants rated Bing Chat as less helpful and trustworthy than ChatGPT or Bard. These results can be attributed to Bing’s richer yet imperfect UI and to its poorer information aggregation.
Paris-based Mistral releases first generative AI model — and it’s totally fSep 29, 2023
Europe’s startup contribution to the generative AI bonanza, Mistral, has released its first model. Mistral 7B is free to download and be used anywhere — including locally. French AI developer Mistral says its Large Language Model is optima
Cracking Open the Hugging Face Transformers LibrarySep 25, 2023
A quick-start guide to using open-source LLMs
OpenAI Unveils DALL·E 3: A Revolutionary Leap in Text-to-Image GenerationSep 24, 2023
In a significant technological leap, OpenAI has announced the launch of DALL·E 3, the latest iteration in their groundbreaking text-to-image generation technology. With an unprecedented capacity to understand nuanced and detailed descriptions, DALL·E 3 promises to revolutionize the creative landscape by allowing users to translate their textual ideas into astonishingly accurate images effortlessly. DALL·E 3 is currently in research preview, offering a tantalizing glimpse into its capabilities. However, the broader availability of this cutting-edge technology is set for early October, when it will be accessible to ChatGPT Plus and Enterprise customers through the API and Labs later in the fall.
Comparison: DALL-E 3 vs MidjourneySep 24, 2023
DALL-E 3, the latest version of OpenAI's ground-breaking generative AI visual art platform, was just announced with groundbreaking features, including
Variational Autoencoder (VAE) with Discrete Distribution using Gumbel SoftmAug 10, 2023
Theory and PyTorch Implementation
Stable Diffusion: Basic Intuition Behind Generative AIJul 28, 2023
This article provides a general overview of Stable Diffusion and focuses on building a basic understanding of how generative artificial intelligence works.
Midjourney pricing plans and free alternatives to tryJul 28, 2023
Navigating the maze of pricing plans for digital services can sometimes be a daunting task. Today, we are unveiling Midjourney
Build Industry-Specific LLMs Using Retrieval Augmented GenerationJul 24, 2023
Organizations are in a race to adopt Large Language Models. Let’s dive into how you can build industry-specific LLMs Through RAG
Observe.ai unveils 30-billion-parameter contact center LLM and a generativeJul 23, 2023
The Observe.AI contact center LLM showed a 35% increase in accuracy compared to GPT-3.5 when automatically summarizing conversations.
How to Train Generative AI Using Your Company’s DataJul 23, 2023
Leveraging a company’s proprietary knowledge is critical to its ability to compete and innovate, especially in today’s volatile environment. Organizational innovation is fueled through effective and agile creation, management, application, recombination, and deployment of knowledge assets and know-how. However, knowledge within organizations is typically generated and captured across various sources and forms, including individual minds, processes, policies, reports, operational transactions, discussion boards, and online chats and meetings. As such, a company’s comprehensive knowledge is often unaccounted for and difficult to organize and deploy where needed in an effective or efficient way.
The Balancing Act Of Training Generative AIJul 22, 2023
We learn a lot of lessons from the hyperscalers and HPC centers of the world, and one of them is that those who control their own software control their
How reinforcement learning with human feedback is unlocking the power of geApr 25, 2023
How reinforcement learning with human feedback helps ensure that businesses are building ethical generative AI models.
“A really big deal”—Dolly is a free, open source, ChatGPT-style AI modelApr 16, 2023
Dolly 2.0 could spark a new wave of fully open source LLMs similar to ChatGPT.
The Sequence Chat: Salesforce Research's Junnan Li on Multimodal Generative AIApr 12, 2023
One of the creators of the famous BLIP-2 model shares his insights about the current state of multimodal generative AI.
Meta unveils a new large language model that can run on a single GPUFeb 25, 2023
LLaMA-13B reportedly outperforms ChatGPT-like tech despite being 10x smaller.
What Are Latent Diffusion Models? How Founders Should Think ... - CrunchbasFeb 17, 2023
Generative AI is a hot topic in the tech startup world, and the ongoing advancement of latent diffusion models only expands its use cases.
Paper Review: A Deep Dive into ImagenFeb 3, 2023
A critical analysis of Google’s impressive new text-to-image generation tool
Text-to-4D dynamic scene generationJan 29, 2023
Find it here, via Ryan Watkins. Further improvement is required, but the pace of current breakthroughs is remarkable.
ChatGPT is not all you need. A State of the Art Review of large...Jan 24, 2023
During the last two years there has been a plethora of large generative models such as ChatGPT or Stable Diffusion that have been published. Concretely, these models are able to perform tasks such...
ChatGPT and the Imagenet moment — Benedict EvansDec 16, 2022
The wave of enthusiasm around generative networks feels like another Imagenet moment - a step change in what ‘AI’ can do that could generalise far beyond the cool demos. What can it create, and where are the humans in the loop?
DeepMind Created An AI Tool That Can Help Generate Rough Film and Stage ScrDec 10, 2022
Alphabet's DeepMind has built an AI tool that can help generate rough film and stage scripts Engadget's Kris Holt reports: Dramatron is a so-called "co-writing" tool that can generate character descriptions, plot points, location descriptions and dialogue. The idea is that human writers will be abl...
Generative Deep Learning [Book]Dec 14, 2019
Generative modeling is one of the hottest topics in AI. It’s now possible to teach a machine to excel at human endeavors such as painting, writing, and composing music. With … - Selection from Generative Deep Learning [Book]
genetics
Learning about longevity from long-lived animalsFeb 14, 2026
The secrets to extending human lifespans might lie in the animals that can already live for centuries.
The Rarest of All Diseases Are Becoming TreatableDec 8, 2025
This year, gene-editing technology was customized to fix mutations in a single patient’s genes for the first time.
A Cell So Minimal That It Challenges Definitions of Life | Quanta MagazineNov 27, 2025
The newly described microbe represents a world of parasitic, intercellular biodiversity only beginning to be revealed by genome sequencing.
Personalized mRNA Vaccines Will Revolutionize Cancer Treatment—If Federal Funding Cuts Don’t Doom ThemNov 18, 2025
Vaccines based on mRNA can be tailored to target a cancer patient’s unique tumor mutations. But crumbling support for cancer and mRNA vaccine research has endangered this promising therapy
Can a 'molecular crowbar' fight pancreatic cancer? - FuturityNov 13, 2025
Can a ‘molecular crowbar’ fight pancreatic cancer?
Axolotls Can Regenerate Limbs, and Scientists Are Finally Learning HowJun 25, 2025
A new study looked into the axolotl’s freakish regenerative talents, hoping to uncover secrets that could revolutionize human medicine.
A Visual Guide to Genome EditorsJun 19, 2025
A selected encyclopedia of major gene-editing systems, together with illustrated diagrams.
Was a Mushroom Behind an ALS Outbreak in the Alps?Mar 23, 2025
In one tiny town, more than a dozen people were diagnosed with the rare neurodegenerative disease ALS. Why?
How Colorful Ribbon Diagrams Became the Face of ProteinsAug 24, 2023
Proteins are often visualized as cascades of curled ribbons and twisted strings, which both reveal and conceal the mess of atoms that make up these impossibly complex molecules.
Why the human genome was never completedFeb 24, 2023
No human genome has ever been read in its entirety before. This year, scientists expect to pass that milestone for the first time.
The Complicated Quest to Decipher Human DifferenceDec 25, 2022
Racial categories are crude maps imposed on human biological variation. How do scientists square them with genetics?
Base editing: Revolutionary therapy clears girl's incurable cancer - BBC NeDec 11, 2022
New way of altering DNA is used to engineer an "exciting", experimental therapy for a 13-year-old girl.
The Many Uses of CRISPR: Scientists Tell All (Published 2022)Jul 5, 2022
What do infectious diseases, T-cells, tomatoes, heart failure, sickle cell anemia and sorghum harvests have in common?
Complete Step-by-step Genetic Algorithm from Scratch for Global OptimizationJun 22, 2022
No need to worry about getting stuck in local minima anymore
IDseqFeb 17, 2021
Real-time pathogen detection, microbiome characterization and outbreak detection for researchers
Growing Neural Cellular AutomataMar 9, 2020
Training an end-to-end differentiable, self-organising cellular automata model of morphogenesis, able to both grow and regenerate specific patterns.
The Scientific Swap Meet Behind the Gene-Editing BoomJan 18, 2020
How one nonprofit’s mailroom is making tinkering with genomes as easy as shopping at Amazon.
The newest gene editor radically improves on CRISPRJan 18, 2020
Researchers have developed “prime editing,” a true search-and-replace function for DNA.
The Viral Paleontologist Who Unearths Pathogens’ Deep HistoriesAug 24, 2016
Sébastien Calvignac-Spencer searches museum jars for genetic traces of flu, measles and other viruses. Their evolutionary stories can help treat modern outbreaks and prepare for future ones.
genius
How to be a geniusJan 26, 2021
I travelled the world and trawled the archive to unearth the hidden lessons from history’s most brilliant people
The Bus Ticket Theory of GeniusNov 23, 2019
gensim
Introduction to Vector Similarity SearchJul 14, 2023
Learn what vector search is and the metrics pertinent to decide the distance (or similarity) between objects.
Topic Modeling with Gensim (Python) - A Practical GuideMay 12, 2018
Topic Modeling is a technique to understand and extract the hidden topics from large volumes of text. Latent Dirichlet Allocation(LDA) is an algorithm for topic modeling, which has excellent implementations in the Python's Gensim package. This tutorial tackles the problem of finding the optimal number of topics.
geofencing
Stop Using Zip Codes for Geospatial AnalysisFeb 7, 2025
Uncover deeper insights beyond ZIP codes with geospatial analysis. Explore the limitations of ZIP codes and discover alternatives for spatial understanding.
Transforming Location Retrieval at Airbnb: A Journey from Heuristics to Reinforcement LearningNov 11, 2024
How Airbnb leverages machine learning and reinforcement learning techniques to solve a unique information retrieval task in order to…
The Power of Geospatial Intelligence and Similarity Analysis for Data MappiFeb 17, 2024
Strategically enhancing address mapping during data integration using geocoding and string matching
Using the HTML Geolocation API to display a users location on a mapFeb 22, 2023
In this tutorial we’ll be using the HTML Geolocation API to display the current location of a user on...
How to Anonymise Places in PythonDec 18, 2022
A ready-to-run code which identifies and anonymises places, based on the GeoNames database
How to Use Geo-Fencing to Resist TemptationDec 10, 2022
This smart behavioral design strategy gives you the power to stay the course when willpower alone fails
Geofencing with QuadkeysSep 18, 2022
This article explains how to create geofences with square partitions
How to Create a Geofence with PythonAug 17, 2021
Taking Advantage of Your Location Data for an Expansive Range of Possibilities
geography
The Strange History of Why North Is Always Up | TheCollectorOct 27, 2025
South-up maps are challenging traditional views of the Earth—and the political and cultural beliefs that go with them.
OpenTimesMar 18, 2025
Spectacular new open geospatial project by [Dan Snow](https://sno.ws/): > OpenTimes is a database of pre-computed, point-to-point travel times between United States Census geographies. It lets you download bulk travel time …
Gulf of Mexico vs. Gulf of America: How digital maps display disputed namesMar 4, 2025
Mapping companies like Google Maps and Apple’s Maps navigate government pressure and political disputes over sea names. Here’s how they decide what to display.
The Power of Geospatial Intelligence and Similarity Analysis for Data MappiFeb 17, 2024
Strategically enhancing address mapping during data integration using geocoding and string matching
Finding Patterns in Convenience Store Locations with Geospatial AssociationApr 1, 2023
Understanding spatial trends in the location of Tokyo convenience stores
Meet the Man Collecting Fading Place NamesMar 13, 2023
What do we lose when we forget about locations like "Troll's Cave" and "Window Claw"?
How to Anonymise Places in PythonDec 18, 2022
A ready-to-run code which identifies and anonymises places, based on the GeoNames database
https://about.maps.earth/Oct 14, 2022
Developer Center | Targomo Developers!Jul 30, 2022
Build the next generation of Location Intelligence applications with the Targomo API
Isochrone Map Generator: How to Create Travel Time Maps | BlogJul 30, 2022
Learn how to create isochrones for different transport modes with our free isochrone map generator, Isochrone API or software plugins.
Rails Geocoder: A Guide to Managing Locations in Your AppsJun 23, 2022
In 2019 there are a myriad of options for mapping and geolocation services. Rails geocoder gem makes it easy to find your way around those services.
The Battle of Choropleths — Part 3 — FoliumJun 22, 2022
Using the Folium Package to Create Stunning Choropleths
A Python Tutorial on Geomapping using Folium and GeoPandasMay 28, 2022
Maps and geography have been a long passion of mine, especially in my International Relations background. A side goal of mine as I grow as…
Explore and Visualize Geospatial Data using Leafmap Python PackageMar 23, 2022
Create interactive maps with just a few lines of Python code
SubmarineCableMap2021Jun 7, 2021
Geometric Deep Learning: Grids, Groups, Graphs, Geodesics, and GaugesMay 12, 2021
The last decade has witnessed an experimental revolution in data science and machine learning, epitomised by deep learning methods. Indeed, many high-dimensional learning tasks previously thought...
Geopandas Hands-on: Geospatial Relations and OperationsApr 26, 2021
Part 1: Introduction to geospatial concepts (follow here) Part 2: Geospatial visualization and geometry creation (follow here) Part 3: Geospatial operations (this post) Part 4: Building geospatial…
[1902.04615] Gauge Equivariant Convolutional Networks and the Icosahedral CFeb 22, 2021
The principle of equivariance to symmetry transformations enables a theoretically grounded approach to neural network architecture design. Equivariant networks have shown excellent performance and...
Represent your Geospatial Data using FoliumDec 10, 2020
As a part of the Data Science community, Geospatial data is one of the most crucial kind of data to work with. The applications are as…
Six Python Tips for Geospatial Data ScienceNov 3, 2020
How to easily and effectively incorporate spatial features in Python using Geopandas
Elegant Geographic plots in Python and R using GeoPandas and Leaflet | by KNov 2, 2020
How to use GeoPandas and Leaflet?
Visualizing Geospatial Data in PythonJun 2, 2020
Open source tools and techniques for visualizing data on custom maps
Hyperspectral Image Analysis — Getting StartedMay 15, 2020
A Walkthrough on Hyperspectral Image Analysis Using Python.
Open Source Spatial Analysis Tools for Python: A Quick GuideApr 30, 2020
The ultimate guide on open source GIS tools for spatial analysis. Find the tools you need to support your next spatial data project!
The Art of Geofencing in PythonApr 1, 2020
Tutorial — Triggering notifications and Nudging GPS locations from users.
Distance calculation in Ruby using RGeoDec 23, 2019
22K subscribers in the rubyonrails community. Everything RoR! Ruby on Rails, often simply Rails, is an open source web application framework which…
Ghost ships, crop circles, and soft gold: A GPS mystery in ShanghaiDec 23, 2019
A sophisticated new electronic warfare system is being used at the world’s busiest port. But is it sand thieves or the Chinese state behind it?
7 Techniques to Visualize Geospatial DataOct 25, 2017
In this article, we explore 7 interesting yet simple techniques to visualize geospatial data that will help you visualize your data better.
geology
This power source is 15,000 ft below the ground | Bill GatesSep 6, 2025
A company called Fervo Energy is hoping to supercharge geothermal power with an innovative new approach to turning the earth’s heat into power.
TIL Under Yellowstone lies a massive supervolcano with a magma chamber about 4–6 miles deep.Jul 24, 2025
Why Texas ‘Flash Flood Alley’ Is So Deadly, Explained by GeologyJul 24, 2025
A hydrologist explains why Texas Hill Country is known as Flash Flood Alley and how its geography and geology can lead to heavy downpours and sudden, destructive floods
Why are there continent-sized 'blobs' in the deep Earth?May 12, 2022
They're among the largest physical structures on the planet – and they're a total mystery.
geometry
Generate random points inside a sphereOct 12, 2025
Generating random points inside a sphere of any dimension.
Geometric Deep Learning: Grids, Groups, Graphs, Geodesics, and GaugesSep 8, 2025
The last decade has witnessed an experimental revolution in data science and machine learning, epitomised by deep learning methods. Indeed, many high-dimensional learning tasks previously thought to be beyond reach -- such as computer vision, playing Go, or protein folding -- are in fact feasible with appropriate computational scale. Remarkably, the essence of deep learning is built from two simple algorithmic principles: first, the notion of representation or feature learning, whereby adapted, often hierarchical, features capture the appropriate notion of regularity for each task, and second, learning by local gradient-descent type methods, typically implemented as backpropagation.
While learning generic functions in high dimensions is a cursed estimation problem, most tasks of interest are not generic, and come with essential pre-defined regularities arising from the underlying low-dimensionality and structure of the physical world. This text is concerned with exposing these regularities through unified geometric principles that can be applied throughout a wide spectrum of applications.
Such a 'geometric unification' endeavour, in the spirit of Felix Klein's Erlangen Program, serves a dual purpose: on one hand, it provides a common mathematical framework to study the most successful neural network architectures, such as CNNs, RNNs, GNNs, and Transformers. On the other hand, it gives a constructive procedure to incorporate prior physical knowledge into neural architectures and provide principled way to build future architectures yet to be invented.
Roundest regular solidAug 1, 2025
A dodecahedron is rounder than an icosahedron, as measured by angle defect, the discrete analog of curvature.
Fractal GeometryMay 29, 2024
Index—The Stacks projectApr 18, 2024
an open source textbook and reference work on algebraic geometry
Geometry CentralApr 17, 2023
Geometric KernelsJan 1, 2023
A cross-framework package for kernels and Gaussian processes on manifolds, graphs, and meshes
Artificial Intelligence for Geospatial Analysis with Pytorch’s TorchGeo (paDec 18, 2022
An end-to-end deep learning geospatial segmentation project using Pytorch and TorchGeo packages
Curves and Surfaces – Bartosz CiechanowskiNov 3, 2021
Interactive article explaining how curves and surfaces are modeled.
gerrymandering
The Define–Combine ProcedureFeb 19, 2024
A Partisan Solution to Partisan Gerrymandering: The Define–Combine Procedure - Volume 32 Issue 3
Is Gerrymandering About to Become More Difficult?May 31, 2021
A new approach in the way the Census aggregates its data could make it more difficult to do extreme gerrymandering, says Moon Duchin.
gestures
These Dance Moves Can Make You More AttractiveSep 3, 2025
In two studies, Northumbria University set out to identify which dance moves heterosexual men and women find the most attractive.
Beyond words: The 200-year-old hidden languages of datingJul 6, 2025
From Regency-era "fan flirting" to online dating, we decipher the timeless looks, signs and gifts that signal secret love.
On-Device, Real-Time Hand Tracking with MediaPipeApr 21, 2025
Posted by Valentin Bazarevsky and Fan Zhang, Research Engineers, Google Research The ability to perceive the shape and motion of hands can be a v...
From Iron Man to Reality: Hand Gesture Recognition Reshapes Tech Interaction - DataconomyMar 28, 2025
The surge in hand gesture recognition is not merely a novelty; it's a fundamental shift in how humans interact with machines.
secret hand gestures in paintingsJun 7, 2024
During the Renaissance period, hands were as important a focus of attention as the face was, because they were the only other visible area of the body. Hence, representation of the position of the hands became a decorative element that was almost as important ...
Why are Russians so stingy with their smiles?Mar 27, 2024
In the US, smiling is a reflexive gesture of goodwill, but Russians view it as a sign of stupidity. Social psychology research could help explain this cultural contrast.
Hand Signals at The Stork ClubMar 24, 2024
The Stork Club was a famous Manhattan night club that was founded by Oklahoma native and ex-bootlegger Sherman Billingsley (ed. note: amazing name), and operated continuously from 1929-1965. The NYC hot spot – which was located on 53rd Street near Fifth Avenue – was a destination for celebrities, ar
Sign DiningMar 24, 2024
The tradition of discreet communication among staff at the Stork Club lives on at the restaurant Eleven Madison Park.
Usher SignalsMar 24, 2024
Many ushers communicate during church services using a sequence of hand signals called the “National Silent Uniform System.” Here are some of the central elements of these signals.
An Illustrated Guide to Mouth Gestures and Their Meanings Around the WorldJun 1, 2023
An excerpt from François Caradec’s book “Dictionary of Gestures.”
Why Do We Gesture When We Talk?May 27, 2023
We all know people who talk with their hands. Turns out there’s quite a bit of research around the relationship between language and gestures.
How Your Body Posture Communicates Feelings to OthersMay 6, 2023
New research suggests that body postures can reveal our emotions to other people—and maybe even change how we feel inside.
The Hidden History of “Hand Talk,” the Native American Sign Language That PSep 13, 2022
No one person can take credit for the invention of American Sign Language. Its history reaches back to the early 19th century, when forms of sign developed among Deaf communities in New England.
The Fine Art of Italian Hand Gestures: A Vintage Visual Dictionary by Bruno MunariAug 7, 2022
A pocket guide to Neapolitan nonverbal communication.
How the Brain Links Gestures, Perception and MeaningAug 1, 2022
Neuroscience has found that gestures are not merely important as tools of expression but as guides of cognition and perception.
The Language You Speak Influences Where Your Attention GoesAug 1, 2022
It’s all because of the similarities between words.
When Did Shaking Hands Become a Standard Way of Greeting Someone?Jul 24, 2022
There’s ancient evidence for the custom of shaking hands, but did it mean the same thing then as it does today?
The Way Humans Point Isn’t as Universal as You Might ThinkJul 18, 2022
It was long thought that humans everywhere favor pointing with the index finger. But some fieldwork out of Papua New Guinea identified a group of people who prefer to scrunch their noses.
8 body-language tricks that are hard to master but will pay off foreverJul 18, 2022
Good body language is a crucial part of making an excellent first impression.
Why Do We Gesture When We Talk?Jul 18, 2022
Gesture researchers have spent the past 40 years uncovering how movements (like a cupped hand rotating in space or a finger tracing a path through the air) are intimately tied to speech.
Handy Mnemonics: The Five-Fingered Memory MachineApr 28, 2022
Before humans stored memories as zeroes and ones, we turned to digital devices of another kind — preserving knowledge on the surface of fingers and palms. Kensy Cooperrider leads us through a millennium of “hand mnemonics” and the variety of techniques practised by Buddhist monks, Latin linguists, and Renaissance musicians for remembering what might otherwise elude the mind.
The hand gestures that last longer than spoken languagesAug 19, 2021
Using hand gestures might feel like an intuitive way to communicate across language barriers, but their meaning can change, and there are few universal signs that everyone agrees on.
The evolutionary psychology of talking with your hands - Big ThinkMar 8, 2021
A team of researchers from the Netherlands found that hands gestures, when used strategically, influence how certain words are heard.
Text2Gestures: A Transformer-Based Network for Generating Emotive Body GestJan 31, 2021
We present Text2Gestures, a transformer-based learning method to interactively generate emotive full-body gestures for virtual agents aligned with natural language text inputs. Our method generates…
How the Brain Links Gestures, Perception and Meaning | Quanta MagazineMar 27, 2019
Neuroscience has found that gestures are not merely important as tools of expression but as guides of cognition and perception.
Expert tips on using gestures to think and talk more effectivelyOct 24, 2003
The gesticulations that accompany your speech are so much more than mere hand-waving – they contain and convey meaning
gifs
A Brief History of the GIF, From Early Internet Innovation to Ubiquitous ReApr 6, 2024
How an image format changed the way we communicate
Drude Model of Free Electron Conduction in a MetalSep 8, 2023
Browse MakeaGif's great section of animated GIFs, or make your very own. Upload, customize and create the best GIFs with our free GIF animator! See it. GIF it. Share it.
How to Create a GIF from Matplotlib Plots in PythonOct 30, 2022
A data visualization technique for 2-dimensional time series data using imageio
Gif Creation in Python.Jul 6, 2022
Here you can add multiple Images and duration as well in the code.
— Python Coding (@clcoding)
How to make an animated GIF map in Python using Folium and ImageioDec 18, 2020
A visual analysis of Brazilian Higher Education history
Gifsicle: Command-Line Animated GIFsJul 30, 2020
Gifsicle is a powerful, simple command line tool for creating, editing, and optimizing animated GIFs.
http://gif.co/F45u.gifJan 21, 2020
gifts
Paper Lanterns, Party Lights, Wedding & DecorationFeb 10, 2024
Paper Lantern Store is the world's LARGEST online shop for paper lanterns, with thousands colors and styles! Free Shipping on orders over $99! Shop party string lights, wedding decor and more at guaranteed LOW prices. Find party supplies, star lanterns, parasols and to make your event or celebration unforgettable!
The Science of Gift GivingSep 17, 2023
There is a lot of social psychology out there providing information that can inform our everyday lives, and most people are completely unaware of the research. Richard Wiseman makes this point in his book, 59 Seconds - we actually have useful scientific information, and yet we also have a vast self-help industry giving advice that
The stigma around secondhand gifting is fading awayNov 17, 2022
With inflation top of mind for many, surveys show consumers are more eager to buy secondhand items as holiday gifts this year to save money. Are the drivers behind gifting resale items this holiday different from past years?
The Importance of Holiday CardsAug 14, 2022
Sending written holiday greetings is not a new tradition. Holiday cards are new, however. Where did this practice come from and why does it persist?
The Very Sincere Economics of Greeting CardsAug 12, 2022
Believe it or not, the biggest demographic driving the greeting card industry is millennials.
gift exchanges behavior - Google SearchJul 10, 2022
The Joy of Writing a RecommendationMay 29, 2021
5 tips on putting together a recommendation to help a young adult
The Very Sincere Economics of Greeting CardsMar 21, 2021
It seems like absolutely nobody except your grandmother sends greeting cards anymore, which makes sense, because a text message is so much more immediate and...
NanaGram | Text your photos and we'll mail glossy, frameable 4x6 prints toJan 26, 2021
Text your photos and we'll mail glossy, frameable 4x6 prints to your loved ones.
Ombraz Armless Sunglasses | No Sidearms. No Problems.Dec 10, 2020
The Ombraz Classics are a timeless, tried & true frame with +1000 5-star reviews. Ombraz' best-selling, original armless frame. Backpacker Magazine's Gear Editor's Choice Winner.
Hawkins New York Simple Linen QuiltApr 28, 2020
We spend a third of our lives in bed (more, if you nap), so why not make them the coziest nests they can be? This stonewashed linen bedding comes in a wide range of colors and grows softer and more lovable with use. * Machine washable * 100% Belgian linen * Essential Set includes fitted sheet, top sheet, and pillow cases * Complete Set includes duvet cover, fitted sheet, top sheet, and pillow cases * Also available in a king size
Moon LightFeb 19, 2020
Gaze into the incredibly detailed 3-D lunar landscape and let your imagination take you away. The rechargeable Moon Light makes a distinctive and functional addition to your home office. And since it’s fully portable, you can set the mood in any room with a choice of 6 distinctive colour hues.
Contemporary wooden pedestal base features tri-point support for maximum light flow and visibility. Choice of two sizes – 15 or 20 cm diameter.
teivah/algodeck: Algo Deck is an Open-Source Collection of 200 AlgorithmicFeb 9, 2020
An Open-Source Collection of 200+ Flash Cards to Help You Preparing Your Algorithms & Data Structures Interview 💯 - teivah/algodeck
The Bitter Southerner General StoreDec 23, 2019
The Bitter Southerner tells real stories about the real South. We survive through your memberships and purchases in our store.
Star Trek Mr. Spock Live Long And Prosper Pill BoxOct 24, 2019
Star Trek Mr. Spock Live Long And Prosper Pill BoxYour bag, pocket, or car: the final frontier. These are the voyages of your on the go medication. They will travel with you in a handy container as you seek out new life and civilizations. They will boldly go with you to places that they have never gone before. Humans may find that having the Star Trek Mr. Spock Live Long And Prosper Pill Box is as pleasing as wanting. Embrace the utility and beauty of the pill box. It is only logical that you should...
The Best Cast Iron SkilletsOct 15, 2019
We found five cast iron skillets worth their weight in metal after examining heat conduction, frying dozens of eggs, searing steaks, and loads of baking cornbread.
The 51 coolest laptop stickers of all time - TechRepublicSep 7, 2019
Because your hardware deserves to look even cooler.
On the Importance of the Studley Tool Chest - Lost Art PressSep 2, 2019
During the last five years, I’ve had more than my share of intimate contact with the famous H.O. Studley tool cabinet. And so wherever I travel I get asked
Milk Carton - ImageChefMay 22, 2019
Cone of Shame NotecardsMar 13, 2019
Spawned from her Cone of Shame series, photographer and creative director Winnie Au's new notecards—which are currently funding on Kickstarter—are essentials for dog lovers and design enthusiasts alike. Stylist Marie-Yan Morvan created
Download Coloring Pages From Over 100 MuseumsMar 5, 2019
We first shared this post in early 2019, long after the peak of the adult coloring fad . But desperate times call for desperate measures, and a globa
The Levimoon brings a levitating, light-up moon replica to your bedside tabOct 14, 2018
https://youtu.be/ZI5KLV6vmdY Some products are built purely for one's eyes only. Designed to uplift spaces and enrich lives, the Levimoon is one such product. Designed as a replica of our very own satellite, the Levimoon is a levitating moon-like orb that can float, rotate, and even light up in mid-air! The levitating base comes made from
This deck of cards will spark small, IRL experiencesAug 23, 2018
The fabulous Lea Redmond of Leafcutter Designs (previously) has launched a brand new project. It's called Lively Matter and it's a 52-card activity deck to create grand adventures and experiences…
git
Git’s Magic FilesFeb 23, 2026
Magic files and where to find them: .gitignore, .gitattributes, .mailmap, .git-blame-ignore-revs, .lfsconfig, and more.
Git exclude, a handy feature you might not know about / Marijke LuttekesSep 3, 2025
Explaining git exclude and how it differs from git ignore.
git-annexAug 25, 2025
Git Large File StorageMay 2, 2025
Git Large File Storage (LFS) replaces large files such as audio samples, videos, datasets, and graphics with text pointers inside Git, while storing the file contents on a remote server like GitHub.com or GitHub Enterprise.
How to Use Git and Git Bash Locally: A Comprehensive GuideApr 1, 2025
Introduction Git is a distributed version control system that helps you track changes in your code, collaborate with others, and maintain a history of your project. Git Bash is a terminal application for Windows that provides a Unix-like command-line experience for using Git. This guide will walk you through setting up Git, using Git Bash, […]
Meet Git Stash: Your Secret Chest of Unfinished CodeOct 26, 2024
A powerful Git feature for temporarily saving code in progress
Undo Git Add and Remove Files from StagingJun 24, 2024
Accidentally add a file that was not supposed to be added? If you have not made the commit yet, you can undo the git add and remove the file from staging.
Push an Empty Commit in GitJun 20, 2024
Yes, you can totally push an empty commit in Git if you really want to. Here's how to do that.
10 Advanced Git TechniquesJan 27, 2024
Improve your version control skills to resolve issues and maintain a clean Git repository.
Understanding Git Rebasing: A Detailed Guide with CommandsJan 10, 2024
Git rebasing is a crucial skill for developers working in collaborative environments. It involves...
We Put Half a Million files in One git Repository, Here's What We Learned -Aug 28, 2023
Using a monorepo causes a lot of performance challenges for git. Here's how we solve them at Canva.
How to Remove a File from Git and Add it to `.gitignore`Jun 11, 2023
If you no longer want to include a file in Git version control and want to add it to the .gitignore...
Essential Tools for a Successful DevOps EngineerMar 20, 2023
Introduction: The software development process has been transformed by the DevOps...
The Hidden Risks of Global Git Configurations and How to Avoid ThemFeb 6, 2023
I am sharing my personal experience through this article. When working with Git, it's important to...
Git at a Glance: A Cheatsheet of 30 Must-know CommandsJan 27, 2023
Managing code and collaborating with others can be a daunting task, but Git makes it easy. This...
Getting Started With GitOps For Developers!Dec 9, 2022
GitOps is a methodology for deploying and managing software applications using Git. It is also...
Git, GitHub and Git Commands (70 git commands)Aug 21, 2022
WHAT IS GIT? A lot of times, people are confused on the right commands to use to resolve git...
Things I wish everyone knew about Git (Part II)Jul 20, 2022
From the highly eclectic blog of Mark Dominus
Git 101: Rename default branch from master to mainJun 22, 2022
How to rename master to main in Github Table of Contents Context setting Step...
The Problem with Feature BranchesJun 21, 2022
As more companies strive to deliver software faster it becomes clear what legacy processes are...
14 Essential Git Commands for Data ScientistsJun 13, 2022
Learn essential Git commands for versioning and collaborating on data science projects.
How to Remove a File From Git History PermanentlyMay 17, 2022
And how to avoid them getting in there? — A surprisingly simple technique to handle it.
gitleaks/gitleaks: Protect and discover secrets using Gitleaks 🔑Jan 17, 2022
Protect and discover secrets using Gitleaks 🔑.
susam/gitpr: Quick reference guide on fork and pull request workflowJan 16, 2022
Quick reference guide on fork and pull request workflow - susam/gitpr
Git from the inside outJan 13, 2022
Oh Shit, Git!?!Jan 12, 2022
8 Small git tips · Rodrigo Flores's CornerJan 12, 2022
GitJan 12, 2022
When to Use Git Reset, Git Revert & Git CheckoutJan 12, 2022
Because they perform similar operations, it is easy to mix these commands up. Here are a few guidelines and rules for when each command should and should not be used.
A Hacker's Guide to GitJan 4, 2022
A Hacker’s Guide to Git is now available as an e-book. You can purchase it on Leanpub. Introduction Git is currently the most widely used version control system in the world, mostly thanks to GitHub. By that measure, I’d argue that it’s a...
How to handle big repositories with Git | Atlassian Git TutorialJan 4, 2022
Learn about the major reasons behind Git repositories becoming too large and techniques to manage these repositories, from submodules to Git LFS.
Useful tricks you might not know about Git stashDec 26, 2021
I have launched a newsletter Git Better to help learn new tricks and advanced topics of Gi...
Tips for a disciplined git workflowDec 26, 2021
A Guide to Creating and Hosting a Personal Website on GitHub | Jonathan McGlone | Librarian, Product Designer, User Researcher, Digital Publisher, Accessibility Specialist, Music Enthusiast, Web Noodler.Dec 15, 2021
A beginner's guide to creating a personal website and blog using Jekyll and hosting it for free using GitHub Pages.
Managing Huge Repositories with Git — SitePointDec 15, 2021
Shaumik examines ways to manage huge repositories with Git, including shallow cloning, cloning a single branch, using submodules and third-party extensions.
git-flow cheatsheetDec 14, 2021
Git Hooks | Atlassian Git TutorialDec 14, 2021
Git Hooks are scripts that run automatically every time a particular event occurs in a Git repository. Learn what they do and how to use them effectively.
Git Workflows for Pros: A Good Git Guide | Toptal®Dec 14, 2021
Boom! A Git implosion means man hours down the drain! Avoid such scenarios by making use of Git patterns that suit your team and project. What Git workflow should you be using? Joe James serves up this in-depth guide to Git patterns for every kind of project.
Git Tutorial: How to Fix 18 Common MistakesOct 7, 2021
This article is a collection of the 18 most frequently asked questions and their answers when it...
Datasets should behave like git repositories | by Simon Lousky | Towards DaMay 5, 2021
Create, maintain, and contribute to a long-living dataset that will update itself automatically across projects.
git stash - Store your uncommitted changes aside to work on it laterApr 8, 2021
Introduction In this post, we'll be looking at the git stash command and its usage. We com...
Getting Started with GitLab: The Absolute Beginner’s GuideMar 14, 2021
How to use GitLab step by step, even if you have never heard of Git before
Mikkel PaulsonFeb 24, 2021
At this point, most developers use Git as a tool for collaboration. We have our rote-learned commands to pull, commit, and push. And of course, there's that one coworker who knows a bit more about Git than everyone else, who helps get us back on track whenever our local repos end up in a strange state. But what if I told you that Git can be a valuable tool without ever setting up a remote repository? I'm not just talking about having a working version of your code base to roll back to if you mess something up, although there's that too. Used correctly, Git can help to structure your work, identifying gaps in your test coverage and minimizing dead code.
A Personal Git Repo as a Knowledge Base WikiFeb 20, 2021
While it's not something that everyone likes to do, I've always found it essential to write notes. Th...
15 Git tips to improve your workflowApr 7, 2020
Learn how to compare commits, delete stale branches, and write aliases to save you some time. It's time to dust off your command line and Git busy!
How to undo almost anything with Git (2015)Feb 19, 2020
One of the most useful features of any version control system is the ability to "undo" your mistakes. In Git, "undo" can mean many slightly different things.
Advanced git tipsAug 29, 2019
After using Git for more than 2 years and teaching it to people, there are few tip that I would like to share.
Easy Git Repository Summaries With Web-git-sumMar 28, 2019
For those hosting their own git repositories there are a number of solutions for creating convenient web-accessible front ends, but [mitxela] wasn’t quite satisfied with any of them. After tr…
How conventional commits improved my git skillsJan 10, 2019
The best way to get to know git is by using it.
How to use Git stashes as a temporary storageOct 17, 2018
Git stashes can be used to temporarily store code you don't want to commit. This video shows you how to create and apply Git Stashes.
Git Commands Ultimate Tutorial [Part 2]May 1, 2018
Did you ever have a problem with Git that you knew a command could fix but you just couldn't remember what one it could be? With this tutorial, you can quickly and easily find it, and get a better understanding how each of them works.
10 Useful Git TipsDec 27, 2017
In this tutorial we share with you a collection of tips that will help you manage your git repositories.
Git Show Files in a CommitSep 24, 2008
Are you adding all the correct files? Check the files that are part of a commit in git with this trick.
Installing Git Large File Storage - GitHub DocsOct 24, 2007
In order to use Git LFS, you'll need to download and install a new program that's separate from Git.
github
Introducing gisthost.github.ioJan 1, 2026
I am a huge fan of gistpreview.github.io, the site by Leon Huang that lets you append ?GIST_id to see a browser-rendered version of an HTML page that you have saved …
Marktechpost/AI-Tutorial-Codes-Included: Codes/Notebooks for AI ProjectsOct 27, 2025
Codes/Notebooks for AI Projects. Contribute to Marktechpost/AI-Tutorial-Codes-Included development by creating an account on GitHub.
Best GitHub Repositories to Master Generative AISep 15, 2025
I'm going to walk you through the best repositories I for every fresher to master Generative AI. GitHub Repositories for Generative AI.
Understanding and Implementing Qwen3 From ScratchSep 6, 2025
A Detailed Look at One of the Leading Open-Source LLMs
chiphuyen/aie-book: [WIP] Resources for AI engineers. Also contains supporting materials for the book AI Engineering (Chip Huyen, 2025)Aug 31, 2025
[WIP] Resources for AI engineers. Also contains supporting materials for the book AI Engineering (Chip Huyen, 2025) - chiphuyen/aie-book
Carl-McBride-Ellis/Compendium-of-free-ML-reading-resources: Compendium of free ML reading resourcesJul 28, 2025
Compendium of free ML reading resources
10 GitHub Repositories for Mastering Agents and MCPsJul 7, 2025
Learn how to build your own agentic AI application with free tutorials, guides, courses, projects, example code, research papers, and more.
Optimization-Algorithms-Book/Code-ListingsApr 9, 2025
Code Listings for the book: Optimization Algorithms. Manning Publications, 2024. - Optimization-Algorithms-Book/Code-Listings
Umami is a simple, fast, privacy-focused alternative to Google Analytics.Feb 17, 2025
Umami is a simple, fast, privacy-focused alternative to Google Analytics. - umami-software/umami
How to scan a full commit history to detect sensitive secretsFeb 6, 2025
Use GitLab Secret Detection to scan a repository's commit history, including branches. View results within the GitLab UI with just a few lines of code added to a pipeline file.
odewahn/ipynb-examplesDec 20, 2024
A Curated List of 57 Amazing GitHub Repositories for Every Python DeveloperNov 25, 2024
Photo by Luke Chesser on Unsplash
How to Run a Paper Club (also: LIVE at NeurIPS 2024!)Nov 24, 2024
Your ultimate Paper Club Starter Kit, from your friends at the Latent Space Paper Club, where we have now read 100 papers. Also: Announcing Latent Space Paper Club LIVE! at Neurips 2024! Join us!
DataExpert-io/data-engineer-handbook: This is a repo with links to everything you'd ever want to learn about data engineeringNov 20, 2024
This is a repo with links to everything you'd ever want to learn about data engineering - DataExpert-io/data-engineer-handbook
10 GitHub Repositories for Advanced Machine Learning ProjectsOct 16, 2024
Where can you find projects dealing with advanced ML topics? GitHub is a perfect source with its many repositories. I’ve selected ten to talk about in this article.
naklecha/llama3-from-scratchMay 21, 2024
llama3 implementation one matrix multiplication at a time - naklecha/llama3-from-scratch
HVision-NKU/StoryDiffusionMay 7, 2024
Accepted as [NeurIPS 2024] Spotlight Presentation Paper - HVision-NKU/StoryDiffusion
Creating a GitHub Repository Collection Using GitHub Lists ✨Apr 21, 2024
Creating a GitHub Repository Collection Using GitHub Lists ✨ GitHub Lists is a relatively...
rasbt/LLMs-from-scratchFeb 29, 2024
Implementing a ChatGPT-like LLM in PyTorch from scratch, step by step - rasbt/LLMs-from-scratch
Increase your productivity with the Github CLIFeb 28, 2024
If you use Github on a daily basis and still don't know about the Github CLI, I recommend you to keep...
awesome · GitHub TopicsJan 27, 2024
GitHub is where people build software. More than 100 million people use GitHub to discover, fork, and contribute to over 420 million projects.
recommenders-team/recommenders: Best Practices on Recommendation SystemsJan 17, 2024
Best Practices on Recommendation Systems.
youtube_channel/Python Tutorial Series/fourier_transform1.ipynb at main · lukepolson/youtube_channelSep 29, 2023
Notebooks for the python tutorials of my youtube channel. See specific youtube video for link to specifc notebook. - lukepolson/youtube_channel
bjpcjp/awk-sed-lessons: Awk & Sed lessons for noobs. Using The UNIX SchoolAug 23, 2023
Awk & Sed lessons for noobs. Using The UNIX School for reference - bjpcjp/awk-sed-lessons
karpathy/nanoGPT: The simplest, fastest repository for training/finetuningApr 17, 2023
The simplest, fastest repository for training/finetuning medium-sized GPTs. - karpathy/nanoGPT
Tracking the Fake GitHub Star Black Market with Dagster, dbt and BigQuery | Dagster BlogMar 19, 2023
It's easy for an open-source project to buy fake GitHub stars. We share two approaches for detecting them.
The Awesome Side of GitHub - Awesome ListsMar 7, 2023
Free resources for developers, board games and chess... what do they have in common? You can find...
Git, GitHub and Git Commands (70 git commands)Aug 21, 2022
WHAT IS GIT? A lot of times, people are confused on the right commands to use to resolve git...
firmai/financial-machine-learning: A curated list of practical financial machine learning tools and applications.Jul 6, 2022
A curated list of practical financial machine learning tools and applications. - firmai/financial-machine-learning
GitHub Copilot · Your AI pair programmerJun 22, 2022
GitHub Copilot works alongside you directly in your editor, suggesting whole lines or entire functions for you.
Overview of Github Actions - Part 1Jun 1, 2022
Overview of Github Actions Overview of Github Actions - Part 1 Overview of Github Actions...
Overview of Github Actions - Part 2Jun 1, 2022
Overview of Github Actions Overview of Github Actions - Part 1 Overview of Github Actions...
SSH and GPG keysMay 29, 2022
GitHub is where people build software. More than 100 million people use GitHub to discover, fork, and contribute to over 420 million projects.
Render mathematical expressions in Markdown · GitHub ChangelogMay 28, 2022
Render mathematical expressions in Markdown
Creating diagrams - GitHub DocsMay 20, 2022
Create diagrams to convey information through charts and graphs
python-data-science-handbook/scikit/SciKit-Feature-Engineering.ipynb at master · bjpcjp/python-data-science-handbookFeb 7, 2022
Sourced from O'Reilly ebook of the same name.
well-grounded-rubyist-book-notes/ch14-callables-runnables.ipynb at master · bjpcjp/well-grounded-rubyist-book-notesJan 17, 2022
My working notes of "The Well-Grounded Rubyist" (Black & Leo), implemented in Jupyter Lab (Ruby kernel 2.7.0) - bjpcjp/well-grounded-rubyist-book-notes
NLP_workshop/NLP_demo.ipynb at master · bjpcjp/NLP_workshopJan 17, 2022
NLP demo code, largely based on https://github.com/hundredblocks/concrete_NLP_tutorial - bjpcjp/NLP_workshop
GitHub Awesome SearchJan 17, 2022
jenofdoom/jekyll-bootstrap-4: A starter kit for jekyll + bootstrap 4Dec 15, 2021
A starter kit for jekyll + bootstrap 4.
A Guide to Creating and Hosting a Personal Website on GitHub | Jonathan McGlone | Librarian, Product Designer, User Researcher, Digital Publisher, Accessibility Specialist, Music Enthusiast, Web Noodler.Dec 15, 2021
A beginner's guide to creating a personal website and blog using Jekyll and hosting it for free using GitHub Pages.
GitHub ActionsDec 12, 2021
Easily build, package, release, update, and deploy your project in any language—on GitHub or any external system—without having to run code yourself.
Jekyll Tags on Github Pages · Long QianNov 29, 2021
Github page does not allow customized plugins, and jekyll-tagging is not one of the supported GEMs of Github pages. It needs some effort to add tag support your Jekyll blog hosted by Github page. This blog shows you how to do this step by step.
Python/DIRECTORY.md at master · TheAlgorithms/PythonOct 3, 2021
All Algorithms implemented in Python.
Carl-McBride-Ellis/Compendium-of-free-ML-reading-resourcesSep 24, 2021
Compendium of free ML reading resources.
ABZ-Aaron/CheatSheets: Just a place to store cheatsheetsSep 6, 2021
Just a place to store cheatsheets.
Hosting SQLite databases on Github Pages - (or any static file hoster) - phJul 31, 2021
I was writing a tiny website to display statistics of how much sponsored content a Youtube creator has over time when I noticed that I often write a small tool as a website that queries some data from a database and then displays it in a graph, a table, or similar. But if you want to use a
China wants to build an open source ecosystem to rival GitHub – Rest of WorJan 19, 2021
With GitHub in the crosshairs of Chinese censors, Beijing is backing Gitee as its official hub, an open-source institution tailored for a closed internet.
How to Automate Tasks on GitHub With Machine Learning for Fun and Profit |Jan 2, 2021
A tutorial on how to build a GitHub App that predicts and applies issue labels using Tensorflow and public datasets.
Complete Walkthrough to Connect your SDE to GCP with GithubDec 18, 2020
Power-up Your Workflow with Cloud instance!
GitHub CLI 1.0 is now availableNov 3, 2020
GitHub CLI brings GitHub to your terminal. It reduces context switching, helps you focus, and enables you to more easily script and create your own workflows. Earlier this year, we…
Create and Deploy your First Flask App using Python and HerokuNov 3, 2020
Flask is a straightforward and lightweight web application framework for Python applications. This guide walks you through how to write an application using Flask with a deployment on Heroku.
Deploy Angular Apps to Firebase From GitHubNov 3, 2020
How to create simple CI/CD pipelines for automated deployments
gothinkster/realworld: "The mother of all demo apps" — Exemplary fullstackAug 31, 2019
"The mother of all demo apps" — Exemplary fullstack Medium.com clone powered by React, Angular, Node, Django, and many more - gothinkster/realworld
A gentle explanation of Github WebhooksAug 29, 2019
In this context, *hooks are events you can subscribe to* in order to trigger some action. It is possible that you have been using them for a while without knowing.
HackerNoon - read, write and learn about any technologyOct 17, 2017
How hackers start their afternoon. HackerNoon is a free platform with 25k+ contributing writers. 100M+ humans have visited HackerNoon to learn about technology
10 GitHub Repositories to Master Computer VisionSep 24, 2012
The GitHub repository includes up-to-date learning resources, research papers, guides, popular tools, tutorials, projects, and datasets.
Installing Git Large File Storage - GitHub DocsOct 24, 2007
In order to use Git LFS, you'll need to download and install a new program that's separate from Git.
GitHub - agarrharr/awesome-cli-apps: 🖥 📊 🕹 🛠 A curated list of command line appsSep 24, 2004
🖥 📊 🕹 🛠 A curated list of command line apps.
github-awesome
donBarbos/awesome-standards: A curated list of technical standards, they may be called requests for comments, proposals, drafts, notes, specifications, or something elseJul 4, 2025
A curated list of technical standards, they may be called requests for comments, proposals, drafts, notes, specifications, or something else - donBarbos/awesome-standards
Glossary — Python 3.10.3 documentationMar 23, 2022
>>>, The default Python prompt of the interactive shell. Often seen for code examples which can be executed interactively in the interpreter.,,..., Can refer to:- The default Python prompt of the i...
vinta/awesome-python: A curated list of awesome Python frameworks, librarieMar 23, 2022
An opinionated list of awesome Python frameworks, libraries, software and resources. - vinta/awesome-python
GitHub Awesome SearchJan 17, 2022
igorbarinov/awesome-data-engineering: A curated list of data engineering tools for software developersDec 10, 2021
A curated list of data engineering tools for software developers - igorbarinov/awesome-data-engineering
Curated List of ListsMay 1, 2021
GitHub - agarrharr/awesome-cli-apps: 🖥 📊 🕹 🛠 A curated list of command line appsSep 24, 2004
🖥 📊 🕹 🛠 A curated list of command line apps.
gitlab
How to scan a full commit history to detect sensitive secretsFeb 6, 2025
Use GitLab Secret Detection to scan a repository's commit history, including branches. View results within the GitLab UI with just a few lines of code added to a pipeline file.
Best practices to keep secrets out of GitLab repositoriesOct 31, 2024
Learn strategies to secure secrets and what to do if secrets are accidentally leaked in a GitLab repository.
What I learned at GitLab that I don't want to forgetDec 13, 2022
After a little over 5 years, I'm going to be leaving GitLab for my next adventure. It's no surprise to those of you who have been following me that I have absolutely loved my time there. I'm so proud of what we built—and I'm still proud and awed by
The GitLab HandbookMay 6, 2022
GitLab Handbook Company About GitLab Values Mission Vision Strategy Communication Culture TeamOps CEO Readme Office of the CEO Key Reviews Group Conversations E-Group Weekly Environmental, Social, and Governance Handbook About the Handbook Handbook Changelog Handbook Roadmap Handbook Escalation Handbook Usage Contribution Guide Editing the handbook Handbook Style Guide Handbook maintenance People Group Anti-Harassment Policy Global Volunteer Month Hiring Inclusion & Diversity Labor and Employment Notices Leadership Learning & Development Onboarding Offboarding Spending Company Money Talent Assessment Team Member Relations Philosophy Total Rewards Tools and Tips Engineering Customer Support Department Development Department Incubation Engineering Department Infrastructure Department Quality Department Security Practices Open Source Security Product Security Security Operations Threat Management Security Assurance Marketing Team Member Social Media Policy Blog Brand and Product Marketing Enterprise Data Integrated Marketing Sales Development Marketing Operations and Analytics Growth Developer Relations Corporate Communications Sales Alliances Commercial Customer Success Customer Success Management Reseller Channels Field Operations Reporting Solutions Architecture Finance Accounts Payable Accounts Receivable Business Technology Expenses Financial Planning & Analysis Payroll Procurement Tax Board meetings Internal Audit Equity Compensation Product Release posts About the GitLab Product Being a Product Manager at GitLab Product Principles Product Processes Product sections, stages, groups, and categories Product Development Flow Product Development Timeline Data for Product Managers Product Pricing Model Corporate Development / Acquisitions UX Department Legal and Corporate Affairs Commercial Corporate Corporate Development Employment Environment, Social, and Governance (ESG) Operations Privacy Product Risk Management and Dispute Resolution Trade Compliance
luong-komorebi/Short-Gitlab-Tutorial: Get started with Gitlab in practicable timeJan 16, 2022
Get started with Gitlab in practicable time.
Download and install GitLabDec 11, 2021
Download, install and maintain your own GitLab instance with various installation packages and downloads for Linux, Kubernetes, Docker, Google Cloud and more.
Getting Started with GitLab: The Absolute Beginner’s GuideMar 14, 2021
How to use GitLab step by step, even if you have never heard of Git before
gkeep
html-css-google-keep-complete - CodeSandboxFeb 20, 2022
html-css-google-keep-complete by akhilboddu using parcel-bundler
Keep API | Google DevelopersFeb 2, 2022
Automate, enhance, or integrate with Google Keep.
glossaries
“Periodic table of machine learning” could fuel AI discoveryApr 23, 2025
After uncovering a unifying algorithm that links more than 20 common machine-learning approaches, MIT researchers organized them into a “periodic table of machine learning” that can help scientists combine elements of different methods to improve algorithms or create new ones.
10 Types of Machine learning Algorithms and Their Use CasesNov 28, 2024
In today’s world, you’ve probably heard the term “Machine Learning” more than once. It’s a big topic, and if you’re new to it, all the technical words might feel confusing. Let’s start with the basics and make it easy to understand. Machine Learning, a subset of Artificial Intelligence, has emerged as a transformative force, empowering machines to learn from data and make intelligent decisions without explicit programming. At its core, machine learning algorithms seek to identify patterns within data, enabling computers to learn and adapt to new information. Think about how a child learns to recognize a cat. At first,
Product & UX GlossaryOct 25, 2024
Use this glossary to quickly clarify key terms and concepts related to product management and UX.
[2304.05055] A Comprehensive Survey on Deep Graph Representation LearningMar 5, 2024
Graph representation learning aims to effectively encode high-dimensional sparse graph-structured data into low-dimensional dense vectors, which is a fundamental task that has been widely studied...
LappleApple/awesome-leading-and-managing: Awesome List of resources on leading people and being a manager. Geared toward tech, but potentially useful to anyone.Jul 18, 2022
Awesome List of resources on leading people and being a manager. Geared toward tech, but potentially useful to anyone. - LappleApple/awesome-leading-and-managing
Glossary — Python 3.10.3 documentationMar 23, 2022
>>>, The default Python prompt of the interactive shell. Often seen for code examples which can be executed interactively in the interpreter.,,..., Can refer to:- The default Python prompt of the i...
Crypto Glossary of Terms And JargonFeb 12, 2022
Learn all of the most important blockchain and cryptocurrency terms and jargon here. We add new words and descriptions every week.
Ultimate UI/UX glossary to speak same language with design teamJan 26, 2022
Building a dream UI/UX design for your app is very much about communication with your design team. Here is a list of 57 essential terms.
A comprehensive list of UX design methods & deliverablesJan 23, 2022
The most common tool, methods, processes, and deliverables that designers use throughout the digital product design process.
Reference Designs | Technical Blueprints | Interactive Design Tools | Arrow.comDec 2, 2021
Reference designs covering essential system elements for millions of products are available at arrow.com. Search our extensive library today.
TheAlgorithms/Python: All Algorithms implemented in PythonJun 28, 2021
All Algorithms implemented in Python.
Data Science & AI Glossary | DeepAIFeb 11, 2021
The data science and artificial intelligence terms you need while reading the latest research
10 NLP Terms Every Data Scientist Should KnowFeb 7, 2021
Knowing the terminology is essential to understanding any tutorial.
Navigating the mind: 40 major fields of psychology and neuroscienceFeb 6, 2021
Psychology and neuroscience are such rapidly growing fields of research, it’s easy to get confused. If you’ve sometimes been scratching your head trying to figure out who does what, this guide is for you. We will cover 40 major fields of psychology and neuroscience using plain language explanations.
6 NLP Techniques Every Data Scientist Should KnowJan 21, 2021
Towards more efficient natural language processing
Patterns — Gordon BranderJan 4, 2021
This is my bag of tricks — loose notes, design patterns, rules-of-thumb, tools, cheatsheets, gimmicks, leverage points, descriptions of systems, key questions, risks, and unknowns.
Bookshelf — Gordon BranderJan 3, 2021
Periodic Table of Deep Learning Patterns / Via DataCampNov 3, 2020
443K subscribers in the learnmachinelearning community. A subreddit dedicated to learning machine learning
63 Machine Learning Algorithms — Introduction | by Priyanshu Jain | The StaNov 3, 2020
In this article I covered 63 Algorithms of Machine Learning in easy to understand manner for business professionals.
Video Advertising Glossary - SelectMediaNov 3, 2020
View our video advertising glossary and learn common terms that will help you understand better the world of video advertising.
The Periodic Table of Data ScienceFeb 21, 2018
This periodic table can serve as a guide to navigate the key players in the data science space. The resources in the table were chosen by looking at surveys taken from data science users, such as the 2016 Data Science Salary Survey by O'Reilly, the 201...
An Intuitive Guide to Deep Network ArchitecturesDec 27, 2017
How and why do different Deep Learning models work? We provide an intuitive explanation for 3 very popular DL models: Resnet, Inception, and Xception.
OverAPI.com | Collecting all the cheat sheetsNov 15, 2017
OverAPI.com is a site collecting all the cheatsheets,all!
delgado14a.pdfOct 31, 2016
gmail
How to Create a Gmail AliasFeb 4, 2023
You're not limited to just one Gmail email address. Make a temporary alias for Gmail using periods and plus signs, or create a permanent one by adding another address to your account.
Can I automatically forward my email newsletters from my inbox to the Feedly email?Nov 23, 2021
Yes, you can. The emails will show up in your Feedly. Do you prefer to learn by watching? If so, click here to skip to the video. Set up a forwarding rule in Gm
3 ways to send emails with only few lines of code and Gmail - Ruby - Part 2Jun 21, 2021
We will see how to send a simple email with the help of three different programming languages:...
go-game
How an Obscure Rule Sparked an International Incident in GoJan 26, 2025
The board game has seen a surge in popularity in recent years. Now a championship-deciding referee’s decision threatens its growth.
AI's Victories in Go Inspire Better Human Game PlayingMar 13, 2023
Famed AI wins in Go let human players rethink their moves in a whole new way
Learn To Play | American Go AssociationJun 19, 2021
The national organization for the promotion of the ancient game of Go (aka Weiqi, Baduk) in the US.
golang
Go Optimization GuideMar 31, 2025
Patterns and Techniques for Writing High-Performance Applications with Go
Building and Consuming Custom Packages in Go: A Complete GuideMar 15, 2023
Go makes it easy to create and use packages. In this tutorial, we’ll create a simple package that...
The Go libraries that never failed us: 22 libraries you need to knowDec 13, 2022
In this guide, we share 22 Go libraries that have proven reliable across multiple production systems we've built. We cover essential tools for HTTP routing, database access, messaging, observability, and testing - all based on our experience leading Go teams. For each library, we explain its key strengths and provide practical usage tips. We also highlight common mistakes to avoid when using these tools.
Book Release: Go For DevOps #go #golang #sre #devops #terraform #kubernetesJul 13, 2022
Go for DevOps: Learn how to use the Go language to automate servers, the cloud, Kubernetes, GitHub, Packer, and Terraform [Doak, John, Justice, David] on Amazon.com. *FREE* shipping on qualifying offers. Go for DevOps: Learn how to use the Go language to automate servers, the cloud, Kubernetes, GitHub, Packer, and Terraform
How to structure a golang projectJun 1, 2022
Structuring Go Projects is the number one question for Gophers, new and old. What are the best practices? What should you not do?
Go · How I Start.May 29, 2022
Why We Switched from Python to Go - Software Engineering DailyMay 26, 2022
Switching to a new language is always a big step, especially when only one of your team members has prior experience with that language. Early this year, we switched Stream’s primary programming language from Python to Go. This post will explain some of the reasons why we decided to leave Python behind and make the switch to
Experience Report: 6 months of GoMay 1, 2022
A report of my positive and negative experiences with Go after using it for 6 months at work.
Effective Go - The Go Programming LanguageApr 29, 2022
jmoiron/sqlx: general purpose extensions to golang's database/sqlApr 9, 2022
general purpose extensions to golang's database/sql - jmoiron/sqlx
Building and distributing a command line tool in GolangApr 8, 2022
Thanks to its static binaries and cross-compiling, building and distributing command-line apps in Go...
Build Load Balancer in GoDec 8, 2021
Learn how to build a simple load balancer server in Go. Table of Contents: What is a Load...
Effective Go - The Go Programming LanguageOct 3, 2021
Start a blog in 30 minutes with Hugo, a static site generator written in GoOct 1, 2021
Get your new site up and running quickly with Hugo.
The art of solving problems with Monte Carlo simulations | Gabriel CarvalhoMay 4, 2021
Using the power of randomness to answer scientific questions.
Home - Practical Go Lessons BookMar 26, 2021
stitchfix/mab: Library for multi-armed bandit selection strategies, including efficient deterministic implementations of Thompson sampling and epsilon-greedy.Mar 20, 2021
Library for multi-armed bandit selection strategies, including efficient deterministic implementations of Thompson sampling and epsilon-greedy. - stitchfix/mab
Quality Code with GoNov 20, 2020
Take a book on learning how to write Go code and add in the mindset of test-driven development the fun way. When you read a book or watch a course, it's a great accomplishment. You're learning how ...
Golang course with building a fintech banking app - Lesson 5: Bank transactions PART 2Jun 24, 2020
In Lesson 5 of the Golang course, we will continue with banking transactions. We will build a new module named transactions that we
How to Deploy A Golang App to Heroku.Jun 24, 2020
This is a step by step tutorial on how to deploy a Golang app on Heroku. Requirements. H...
Go and CPU CachesJun 1, 2020
How understanding the processor architecture can help us in optimizing performance?
Learn go panic and recover in golangApr 17, 2020
Well-structured Logic: A Golang OOP TutorialMar 18, 2020
Learn why and how in this handy tutorial on object-oriented programming in Go.
Building a BitTorrent client from the ground up in Go | Jesse LiFeb 19, 2020
What is the complete path between visiting thepiratebay and sublimating an mp3 file from thin air? In this post, we'll implement enough of the BitTorrent protocol to download Debian. Look at the [Source code](https://github.com/veggiedefender/torrent-client/) or skip to the [last bit](/posts/torrent#putting-it-all-together).
Million WebSockets and GoFeb 19, 2020
Go.dev: a new hub for Go developers - The Go BlogDec 23, 2019
Announcing go.dev, which answers: who else is using Go, what do they use it for, and how can I find useful Go packages?
10 things you (probably) don't know about GoOct 11, 2019
Welcome to Revel, the Web Framework for Go!Aug 30, 2019
Go Modules in 2019 - The Go Programming LanguageAug 29, 2019
What the Go team is planning for Go modules in 2019.
Debugging what you deploy in Go 1.12 - The Go Programming LanguageAug 29, 2019
Go 1.12 improves support for debugging optimized binaries.
Better Error Handling, in GoAug 29, 2019
Using Go Modules - The Go Programming LanguageAug 29, 2019
An introduction to the basic operations needed to get started with Go modules.
dgryski/go-perfbook: Thoughts on Go performance optimizationAug 23, 2019
Thoughts on Go performance optimization.
Account SuspendedAug 20, 2019
quii/learn-go-with-tests: Learn Go with test-driven developmentAug 20, 2019
Learn Go with test-driven development.
Lessons learned porting 50k loc from Java to GoApr 6, 2019
Things I've learned porting a 50 thousand lines of code from Java to Go
Interactive Go programming with JupyterJun 8, 2018
Introduction of a new feature-rich golang Jupyter kernel
gold
How to Sell Gold Krugerrands | SaplingDec 10, 2022
The Krugerrand is a popular gold coin that is minted in South Africa and distributed to buyers around the world. Krugerrands contain 22 karat gold, an alloy of 91.67 percent gold and 8.33 percent copper.
How to Become an International Gold SmugglerMar 9, 2020
Harold Vilches, a 23-year-old Chilean, exported $80 million in contraband gold. It all started with a Google search.
The Curse of the Ship of GoldJun 14, 2019
How a brilliant scientist went from discovering a mother lode of treasure at the bottom of the sea to fleeing from authorities with suitcases full of cash.
goodreads
National Magazine Awards 2026 NominationsMar 1, 2026
The best writing of 2025 as chosen by the American Society of Magazine Editors
Saving The Life We Cannot SeeFeb 26, 2026
Conservation has traditionally ignored the planet's smallest life forms. Microbiologists are trying to change that — before it's too late. Microbes make life on Earth possible, yet human activity is wiping these microbiomes out — and science is only beginning to grasp the potential implications.
When Coyotes Threatened Livestock on Central Texas Ranches, the Solution Was to Unlock an Ancient Ability in DogsFeb 20, 2026
Killing the predators is not nearly as effective as the intimidating presence of well-trained guardians, a role some breeds have played for 5,000 years
Vigilantes at Dawn - LongreadsFeb 19, 2026
A forgotten deportation, a family archive, and the cost of belonging.
The ‘Godmother’ of Weed vs. Her Uncle, the DEA Agent | THE CITY — NYC NewsFeb 17, 2026
Cannabis officials courted a rising pot star to join New York’s legal market. Then a stunning police raid upended everything and shattered her family.
The House That Dizzy Built—And the City That Kept It - KOLUMN MagazineFeb 2, 2026
Hidden behind Georgetown storefronts, a candlelit room has spent 60 years turning dinner service into American music history—and fighting to keep the lights on
When Hannibal Lecter Took Over - LongreadsJan 29, 2026
With "The Silence of the Lambs" hitting theaters, Orion wanted a hit. They didn't anticipate an antihero.
Forty years in the Siberian wilderness: the Old Believers who time forgotJan 22, 2026
The long read: In 1978, Soviet scientists stumbled upon a family living in a remote part of Russia. They hadn’t interacted with outsiders for decades. Almost half a century later, one of them is still there
The extraordinary story of a soccer coach, a kidnapping and a Saudi job that didn’t existJan 21, 2026
Adrian Heath was duped into thinking he was on the verge of a new job – only to be held at knifepoint in Morocco. Turns out he's not alone
Why Satyendra Nath Bose was more than Einstein’s sidekick | Aeon EssaysJan 20, 2026
The life of Indian physicist Satyendra Nath Bose illuminates how scientific genius can emerge from the most unexpected quarters
The Backcountry Rescue Squad at America’s Busiest National ParkJan 15, 2026
In the Great Smoky Mountains, an auxiliary team of élite outdoorsmen answers the call when park-goers’ hikes, climbs, and rafting adventures go wrong, Paige Williams writes.
The Worst Shot Ever Taken - Believer MagazineJan 7, 2026
I was sixteen when my mother gifted me a painting by Ernie Barnes. I’d seen one Barnes painting at that point on the cover of Marvin Gaye’s 1976 album, I Want You, on the brown carpeted floor of my Auntie Sue’s apartment. Then I saw it five days a week for at least a decade during […]
George Bell Served 24 Years in Prison for a Crime He Didn’t Commit. Now He’s Learning to Live Again.Jan 5, 2026
After a quarter century behind bars, he was exonerated for the 1996 crime and received the largest payout ever from New York City. But money can’t buy back all that time.
The Electric TypewriterJan 3, 2026
Great articles and essays by the world's best journalists and writers.
Balthazar, 1997 by Heather BurschJan 1, 2026
December 11, 2025 – “I’d been working at Balthazar for a few months when Debra pulled me aside to tell me they knew I’d lied on my resume. Was I fired?”
Unmasking “Rex Feral,” Author of the Infamous Hit Man ManualDec 28, 2025
A 1983 book inspired a triple murder and led to a major First Amendment case. Its until-now anonymous author is a 77-year-old great-grandmother wrestling with decades of guilt.
Best of 2025: Our Most Popular Originals of the Year - LongreadsDec 15, 2025
Our 10 most-read Longreads essays of 2025.
The curious life and lonely death of an American in KabulNov 16, 2025
Jeff Rigsby moved back to Afghanistan after the US withdrawal with a self-imposed mission to save lives and inform millions.
The Blue Book BurglarNov 4, 2025
The 'Social Register' was a who’s who of America’s rich and powerful—the heirs of robber barons, scions of political dynasties, and descendants of 'Mayflower' passengers. It was also the perfect hit list for the country’s hardest-working art thief.
Museum of ColorSep 14, 2025
From ochre to lapis lazuli, Stephanie Krzywonos opens a door into the entangled histories of our most iconic pigments, revealing how colors hold stories of both lightness and darkness.
A Deaf Galveston Lifeguard Saved Hundreds. His Legacy Is Complicated.Sep 10, 2025
LeRoy Colombo was a champion swimmer, and even landed in the Guinness Book of World Records. But there's more to his story.
The Worst Air Disaster You’ve Never Heard OfSep 4, 2025
"In the early days of flight, airships were hailed as the future of war. Then disaster struck the USS Akron."
God Dog | Mina TavakoliSep 4, 2025
BLACK RUSSIAN TERRIER, read the chyron on Madison Square Garden’s GardenVision video display. Beneath: THEIR ONLY COLOR IS BLACK.
She Vanished on a Colorado Mountain. 19 Years Later, a Mysterious Dream Helped Rescuers Find Her.Sep 3, 2025
Michelle Vanek disappeared on Mt. of the Holy Cross in 2005, setting off the largest search for a missing hiker in state history. The trail went cold—until an all-women team reopened the case.
Hot Dog UniversityAug 29, 2025
Hot Dog University in Chicago trains entrepreneurs to master the Chicago-style hot dog. From Vienna Beef traditions to food cart businesses nationwide, Hot Dog U graduates are proving the American dream is still alive — one hot dog stand at a time.
How a Billionaire Owner Brought Turmoil and Trouble to Sotheby’sAug 25, 2025
Patrick Drahi made a fortune through debt-fuelled telecommunications companies, Sam Knight writes. Now he’s bringing his methods to the art market.
The Software Tycoon Scaling AI Education to a Billion KidsAug 22, 2025
As an elementary school principal, a feared software tycoon, a genial recluse, and a technology zealot determined to redefine childhood for mankind, J
The Quest to Cure Progeria Is a Quest to Slow AgingAug 11, 2025
One of the world’s rarest diseases makes people grow old prematurely. Scientists think that gene-editing can stop it, Dhruv Khullar writes.
Whiteouts, Ice Roads, and Wolverines: What Working at a Diamond Mine in the Far North Is Like | The WalrusAug 5, 2025
In minus forty, even a twisted ankle can turn deadly if no one knows where to find you
One Day—and One Night—in Anthony Bourdain’s KitchenJul 3, 2025
From 2000: “The people who will be coming tonight and tomorrow night to Les Halles, a restaurant on Park Avenue South where I work as the chef, aren’t like the people who come during the week,” Anthony Bourdain writes.
Opinion | Christo Grozev Is the Man Putin Couldn’t KillJun 2, 2025
Putin had Christo Grozev in his sights. Grozev was way ahead of him.
The 2020 Commencement Speech You’ll Never HearMay 31, 2025
The 2020 commencement speech you’ll never hear
The Ballad of Bill FoxMay 23, 2025
Robert Pollard adores him. Jeff Tweedy calls him a hero. But he’s just wanted to be left alone — until now.
Dolly Parton’s Quietly Inspiring Defense of MarriageMay 15, 2025
The death of Parton’s husband, in March, called rare attention to a steadfast union that the fame-friendly country star had kept private for decades.
The Hobo Handbook by Jeremiah DavidMay 14, 2025
May 9, 2025 – “The Guide is either the train hopper’s Bible or an outdated relic, a must-have or a crutch, depending on whom you ask.”
Trial by Fire: The crash of Aeroflot flight 1492May 13, 2025
Six years after 41 people died aboard a Sukhoi Superjet on a Moscow runway, the full story of that horrible day can finally be told.
My Favorite Restaurant Served Gas — THE BITTER SOUTHERNERMay 1, 2025
With the arrival of Thank You Please Come Again, our new book by Kate Medley, we present its opening essay.
Mike Piazza Is Alive and Well and Living in ItalyApr 29, 2025
The candid Mets legend reflects on his Cinderella career and indelible place in the pop-culture pantheon.
The Longest NightApr 26, 2025
One Easter Sunday, the Alaska Ranger—a fishing boat out of Dutch Harbor—went down in the Bering Sea, 6,000 feet deep and thirty-two degrees cold. Forty-seven people were on board, and nearly half of them would spend hours floating alone in the darkness, in water so frigid it can kill a man in minutes. Forty-two of them would be rescued. Here’s how.
The Congo’s Dinosaur of DiscordApr 25, 2025
Once a subject of Victorian fascination, the mokele-mbembe myth is now fodder for creationists on a quest to disprove Darwinism
To Steal a Whale BoneApr 23, 2025
"There’s something about the thrill of discovery that can make a person believe what they’ve found is theirs now—to claim, to guard, to name."
Polaroid Death Machine - The Georgia ReviewApr 12, 2025
In late February of 2020 I traveled home to Pittsburgh to salvage what I could of my grandparents’ lives. After caring for them and their things during their final years and after, my aunt was moving to Florida and giving it all away: furniture and dinnerware; my grandmother’s full collection of Emmett Kelly clown figurines;
Working on the Railroad Changed My LifeMar 14, 2025
The time I spent working on the Canadian National Railroad changed the course of my life.
A Death in the WinelandsMar 14, 2025
Among the vineyards and fruit farms of South Africa’s Western Cape, the mysterious death of a farmworker reveals a violent history.
In search of the South Pacific fugitive who crowned himself kingMar 6, 2025
Noah Musingku made a fortune with a Ponzi scheme and then retreated to a remote armed compound in the jungle, where he still commands the loyalty of his Bougainville subjects
Tyler Cowen, the man who wants to know everythingMar 5, 2025
He is Silicon Valley’s favourite economist. Does his lust for knowledge have a place in the age of AI?
Her Greatest HitsFeb 18, 2025
"Maybe it's only when you don’t know what you are listening for that you find what you were waiting all along to discover."
Song Hunter: The Life of Alan LomaxJan 21, 2025
Alan Lomax was a legendary collector of folk music, author, broadcaster, oral historian, musicologist, and filmmaker who raised the profile of folk music worldwide.
Knotty Business: A Delightfully Tangled Reading List on Knots - LongreadsJan 7, 2025
Six stories on our fascination with knots.
10 years of the long read: a selection of great storiesDec 31, 2024
From food to Freud to football, 10 lists for 10 years
Quality Trash: Meet director Ron Oliver, Hallmark’s king of schmaltz - Toronto LifeDec 11, 2024
And other oxymoronic observations about the oeuvre of Ron Oliver, the Hallmark Channel’s most prolific, flamboyant and unapologetically sappy director
My Uncle, the Hit ManNov 28, 2024
No one in my family wanted to talk about Harold’s life as a contract killer for the Mob. Then one day he called me.
Memories of Flame: The crash of TWA flight 800Nov 14, 2024
It’s time to take a comprehensive look at one of America’s most controversial plane crashes, and ask how it ended up that way.
These Women Were Some of Afghanistan’s Best Athletes. Then They Started Getting Death Threats.Nov 6, 2024
They led a cycling revolution in a country where women were forbidden to ride. When the Taliban returned to power, their only hope was a harrowing escape to an uncertain future.
The Shipwreck DetectiveNov 4, 2024
Nigel Pickford has spent a lifetime searching for sunken treasure—without leaving dry land.
Meet America's secret team of nuclear first respondersOct 29, 2024
For 50 years, a secretive group of government workers has been preparing for the worst. Here's a rare look inside the team that's ready to respond to a nuclear incident anywhere, anytime.
How Two of the Rarest Horses on Earth Got LostOct 23, 2024
The entire world’s population of Przewalski’s horses once dwindled to a mere dozen. So how did a pair named Fiona and Shrek end up in livestock auctions in the West?
The Charming, Eccentric, Blessed Life of Lee MaxwellAug 3, 2024
Lee Maxwell owns a Guinness-world-record-holding washing machine collection. When his wife of 71 years died, he was left to ponder what his life would look like.
How to Eat a Tire in a Year, by David Sedaris | The New YorkerAug 2, 2024
Walking and talking with my friend Dawn.
MacArthur Maze Collapse and ReconstructionAug 2, 2024
After a crucial section of a California freeway collapsed, this formidable construction boss pulled off one of the fastest, riskiest, most high-stakes reconstructions in U.S. history.
Into the WindJul 27, 2024
"There is a fine line between losing yourself and finding your deepest truths."
A Cursed Ship and the Fate of Its Sunken GoldJul 27, 2024
In 1746, a vessel called the Prince de Conty foundered off the coast of France. How did its most valuable cargo end up in the hands of a semi-retired Florida couple?
In the Straits: An Inmate Turned Millionaire Turned Lone SurvivorJul 27, 2024
He was a convicted felon who found a niche in Seattle’s construction boom. Then a fatal boating accident came for Michael Powers’s fairy-tale ending.
To prosecute parents of a school shooter, Michigan prosecutors led a rare cJul 24, 2024
A Post reporter embedded with Michigan prosecutors for two years as they pursued homicide charges against Jennifer and James Crumbley, whose son killed four students at Oxford High School.
The Eagle Never SleepsJul 14, 2024
Why one tiny newspaper in Whitesburg, Kentucky still screams for press freedom despite arson, abuse from the public and financial challenges.
A Close Reading of the Best Opening Paragraph of All TimeJun 29, 2024
From Shirley Jackson's ‘We Have Always Lived in the Castle’, of course.
‘I’m good, I promise’: the loneliness of the low-ranking tennis playerJun 27, 2024
The long read: I was once Ireland’s No 1 player, and tried for years to climb the global ranks. But life at the bottom of the top can be brutal
The Misfit Who Built the IBM PCJun 24, 2024
Don Estridge broke all of Big Blue's rules to create the home computer. The company would never forgive him for it.
The Man Who’s Going to Save Your Neighborhood Grocery StoreJun 16, 2024
American food supplies are increasingly channeled through a handful of big companies: Amazon, Walmart, FreshDirect, Blue Apron. What do we lose when local supermarkets go under? A lot -- and Kevin Kelley wants to stop that.
“The Woman Who Came From the Sky” — Meet Valérie André, the World’s First FJun 16, 2024
“As a doctor, she had already faced misogyny in the French medical corps. But she persevered. It would be no different for her as a rescue pilot.” By Charles Morgan Evans AT A remote French...
The Adopted Dallas Woman Who Found Family on the Other Side of the WorldJun 11, 2024
A herd of elephants halfway around the world gave an adopted Dallas woman the home she always wanted.
When the C.I.A. Messes UpJun 10, 2024
Its agents are often depicted as malevolent puppet masters—or as bumbling idiots. The truth is even less comforting.
Katie Ledecky’s Gold Medal Mind-SetJun 10, 2024
As she prepares for the Paris Games, the seven-time Olympic gold medalist talks about the doping accusations against her competitors and how she stays focused while swimming 1,900 miles a year.
A Surf Legend’s Long RideJun 3, 2024
For Jock Sutherland, being hailed as the world’s best surfer was just one phase in an unlikely life.
Exclusive: Inside America’s Secret Efforts to Free US HostagesMay 31, 2024
With US detainees being held in Russia, Gaza, and Venezuela, VF embedded with the team tasked with gaining their freedom.
Master of Make-BelieveMay 28, 2024
Zach Horwitz came to Los Angeles hoping to make it in the movies. He ended up running a seven-hundred-million-dollar scam, defrauding a sprawling group of investors, starting with his best friends.
There Are Places You Cannot GoMay 22, 2024
A friendship born out of the ruins of a nation, a dangerous journey home, and a 40-year search for the truth.
Columbia's Last FlightMay 22, 2024
The inside story of the investigation—and the catastrophe it laid bare
The Mystery of S., the Man with an Impossible MemoryMay 19, 2024
A famous case study helped spark a myth about a man who could not forget. But the truth is more complicated.
Poison PillMay 12, 2024
Is the killer behind the 1982 Tylenol poisonings still on the loose? Exclusive revelations by investigators yield the first authoritative account of what happened and who likely did it.
The ObsessionMay 12, 2024
A multicultural, interfaith family in 1970s San Francisco reported a series of unexplained phenomena. Then a priest with a dark past stepped up.
I Wish I’d Never Become The NFL Weed GuyMay 11, 2024
My friend called to say he saw me on Real Sports with Bryant Gumbel’s final episode. It was a retrospective of the best of the 29 years of the show and my story made the cut. What hard-hitting piece of journalism landed me that honor? What story brought Andrea Kremer and crew across the country […]
I Was at the Clapperboard for Orson Welles’ Drunk Wine CommercialMay 10, 2024
I also helped undress him so he could lie down
Inside the Decades Long Hunt for the Mongolian Death WormMay 4, 2024
Some say the true death worm has already been found—slithering beneath the sands of the Gobi.
The Positively True Adventures of the Kilgore Rangerette–Kidnapping Mom – TApr 23, 2024
What pushed an East Texas mother to kidnap at gunpoint the director of the famed college drill team and her nineteen-year-old daughter?
The Man Who Spent Forty-two Years at the Beverly Hills Hotel PoolApr 15, 2024
From 1993: Nearly every day for decades, Irving V. Link tanned by the luxury pool, Adam Gopnik writes. Then his idyllic life style came under threat from the hotel’s owner, the Sultan of Brunei.
The Family Who Vanished Into the BushApr 12, 2024
The two disappearances of Tom Phillips and his children.
A Trail Gone ColdApr 9, 2024
Against the odds, a tiny Icelandic town speaks of a local Black ancestor. Geneticists and historians combine forces to uncover the man’s eventful life.
‘Stay Away From Him. He’s Dangerous.’Apr 4, 2024
"For years, a mysterious figure preyed on gay men in Atlanta. People on the streets called him the Handcuff Man—but the police knew his real name."
How Marlon Brando Lost His WayApr 4, 2024
From 2008: What was real about the realest actor of them all? Claudia Roth Pierpont on Brando’s dilemmas and his depths.
A Lotta Love to Give: The Brilliant Voice and Too-Short Life of Nicolette LarsonApr 3, 2024
Friends and family of late singer Nicolette Larson remember her brilliant voice, and the ups and downs of a life that ended far too soon.
Leonard Cohen’s ‘Hallelujah’ Belongs to EveryoneApr 3, 2024
What is it about the once virtually unknown song that inspires so many musicians to make it their own?
Lachlan Cartwright: What I Saw at the National Enquirer During Trump’s RiseApr 3, 2024
Inside the notorious “catch and kill” campaign that now stands at the heart of the former president’s legal trial.
Searching for the Cause of a Catastrophic Plane Crash | The New YorkerMar 29, 2024
On a calm, clear day, USAir Flight 427 suddenly nosedived and smashed into the earth, killing everyone on board. A team of investigators quickly assembled to sift through the rubble.
Being Caitlin Clark: Inside the world of the player who redefined the gameMar 24, 2024
She overcame trust issues and chartered a yacht. Now Caitlin Clark is ready for March.
The Heartbreak of an English Football TeamMar 24, 2024
The Netflix series “Sunderland ’Til I Die” serves as a thesis both for fandom and for the inevitability of its disappointments.
March Madness Spotlights a Sport Relegated to Pittsburgh’s Shadows: BasketbMar 23, 2024
A city that pro basketball abandoned in the early 1970s, and whose college teams have only flirted with relevance for decades, has basketball roots that run deep.
Age of Invention: The Second Soul, Part IMar 19, 2024
Here’s a riddle. There was a product in the seventeenth century that was universally considered a necessity as important as grain and fuel. Controlling the source of this product was one of the first priorities for many a military campaign, and sometimes even a motivation for starting a war. Improvements to the preparation and uses of this product would have increased population size and would have had a general and noticeable impact on people’s living standards. And this product underwent dramatic changes in the seventeenth and eighteenth centuries, becoming an obsession for many inventors and industrialists, while seemingly not featuring in many estimates of historical economic output or growth at all.
The Many Lifetimes of an Old Red BikeMar 16, 2024
"Five generations of a family's love, told through a bicycle."
Tales From an AtticMar 15, 2024
Suitcases once belonging to residents of a New York State mental hospital tell the stories of long-forgotten lives
How to Survive 75 Hours Alone in the OceanMar 12, 2024
A case study digs into the medical records of a lost diver’s incredible survival story.
The Extraordinary Lives Of Coast RedwoodsMar 7, 2024
Oddities, marvels and revelations proliferate in groves of the tallest trees on the planet.
Ridley Scott’s “Napoleon” ComplexMar 5, 2024
Does the director of “Alien,” “Blade Runner,” and “Gladiator” see himself in the hero of his epic new film?
Rescuing Abandoned Dogs Is His RehabFeb 29, 2024
Mike Favor spent 13 years addicted to cocaine. Running a shelter for abandoned and abused dogs has helped him and others stay sober. But it hasn’t been easy.
Safety NetFeb 29, 2024
These days, when you work as a librarian in America, there is no lack of emergencies.
The World’s Most Important Industry Has a New Captain—and She’s Piloting ItFeb 17, 2024
Meet Marina Hadjipateras: Greek shipping heiress, successful venture capitalist, and the woman trying to transform the $14 trillion shipping industry.
A Teen’s Fatal Plunge Into the London UnderworldFeb 6, 2024
After Zac Brettler mysteriously plummeted into the Thames, his grieving parents discovered that he’d been posing as an oligarch’s son. Would the police help them solve the puzzle of his death?
In Defense of the RatFeb 3, 2024
Rats are less pestilent and more lovable than we think. Can we learn to live with them?
Has Amelia Earhart’s plane really been found?Feb 1, 2024
Claims that a recent undersea discovery may be Amelia Earhart’s long-lost aeroplane raise questions. Experts weigh in on the mystery that continues to captivate us.
What happens when an astronaut in orbit says he’s not coming back?Jan 23, 2024
“If you guys don’t give me a chance to repair my instrument, I’m not going back.”…
Ada Blackjack’s Secret WeaponJan 19, 2024
Memories of her son helped Blackjack to become the sole survivor of an ill-fated expedition to Wrangel Island.
Ada Blackjack Kept Going After Everyone Else on Wrangel Island DiedJan 19, 2024
Ada Blackjack was an Iñupiaq woman who married at 16 and had three children before her husband abandoned her. Only one child survived infancy, and he suffered from tuberculosis. Blackjack walked 40 miles to Nome, Alaska, carrying her son Bennett in order to place him in an orphanage, because she couldn't afford his medical treatment. She desperately wanted him back, and that's why she signed on to the doomed 1921 expedition that Vilhjalmur Stefansson organized to explore the possibility of a colon...
A 4-Year-Old Trapped in a Teenager’s BodyJan 15, 2024
“I was all of the things people are when they’re 14 or 15” — except a decade younger.
Phyllis Latour: The secret life of a WW2 heroine revealedJan 13, 2024
WW2 spy Phyllis Latour has died aged 102. Now the full story of her wartime career can be told.
Billy Crystal is the last of his kindDec 28, 2023
The versatile comedian became the ultimate showman. But Billy Crystal was never putting on an act.
Obituary for a Quiet LifeDec 28, 2023
A man passes away without a word in the mountains of North Carolina, and his grandson sets out to write about the importance of a seemingly unimportant life.
'Then the alligators got him' - Inside Memphis Grizzlies star Ja Morant's 1Oct 20, 2023
After the 2022 All-Star Game, Morant's misconduct became more frequent -- and dangerous. Since then, serious allegations have emerged. Lawsuits and subpoenas remain open. And a 24-year-old superstar's career is on the brink.
The Race to Catch the Last Nazis | GQSep 29, 2023
A lifetime after the Holocaust, a few of its perpetrators remain at large. German detectives are making a final push to hunt them down.
Luigi Ciotti the Priest Who Helps Women in the Mob EscapeSep 24, 2023
Don Luigi Ciotti leads an anti-Mafia organization, and for decades he has run a secret operation that liberates women from the criminal underworld.
Kyle Deschanel, the Rothschild Who Wasn’tSep 4, 2023
Kyle de Rothschild Deschanel was an instant New York sensation who seemed to live on a 24/7 carousel of mega-dollar deals and raucous parties. Then his best friend found an ID marked “Aryeh Dodelson.”
How “Chuck Norris Facts” Gave Birth to the Modern MemeAug 29, 2023
"It's hard to say Ian Spector officially invented the meme. But he was, at minimum, a key early influencer."
RoundtableAug 27, 2023
The Lows of the High LifeAug 22, 2023
I had never had money, and then I did. For three days in New York, I learned how not to use it.
A Photographer’s Frank, Tender Portrait of Her Parents’ Final YearAug 22, 2023
When the pandemic came, Becky Wilkes moved her enfeebled mom and dad into her own home. Her series “Till Death Do Us Part” documents that time.
The Elusive, Maddening Mystery of the Bell Witch - Atlas ObscuraAug 5, 2023
A classic ghost story has something to say about America—200 years ago, 100 years ago, and today.
Inside an Air Force Pararescue mission in the middle of the Pacific OceanAug 3, 2023
An inside account of how Air Force pararescue jumped into the middle of the Pacific Ocean to reach an injured sailor.
The Astonishing Transformation of AustinAug 1, 2023
My town, once celebrated for its laid-back weirdness, is now a turbocharged tech megalopolis being shaped by exiles from places like Silicon Valley.
How Larry Gagosian Reshaped the Art WorldJul 27, 2023
The dealer has been so successful selling art to masters of the universe that he has become one of them.
How John Fetterman Came Out of the DarknessJul 25, 2023
In a series of emotional interviews, the unconventional senator opens up about his battle with depression.
What happened to Jai Alai? - SBNation.comJul 22, 2023
Once the next big thing in American sports, Jai Alai has all but completely disappeared over the past 20 years. But in Miami, the game is still played for much smaller crowds and stakes.
Notes From the Inner Lives of Con ArtistsJul 22, 2023
Venture inside the minds of some of the greatest scammers.
Earth League International Hunts the Hunters | The New YorkerJul 19, 2023
A conservation N.G.O. infiltrates wildlife-trafficking rings to bring them down.
The Fugitive Princesses of Dubai | The New YorkerJul 19, 2023
As the emirate’s ruler espoused gender equality, four royal women staked their lives on escaping his control.
Country Music’s Culture Wars and the Remaking of NashvilleJul 18, 2023
Tennessee’s government has turned hard red, but a new set of outlaw songwriters is challenging Music City’s conservative ways—and ruling bro-country sound.
‘The Bear’ and the Need for a Place to BelongJul 16, 2023
The powerful moral message of FX’s hit show.
Ride the Good WitchesJul 12, 2023
"She threw herself into bonding with a breed of horse that seems touched by Viking spirit."
The A-Bomb, Selma, Broadway: She Saw It All and Knew EveryoneJul 12, 2023
The mysterious neighbor claimed to have witnessed a nuclear detonation, marched on Selma and acted on Broadway. Would an overlooked form letter be her downfall?
Anne Rapp Immortalized Small-town Texas on the Big Screen. But She Can’t StJul 11, 2023
During Anne Rapp’s Hollywood career, she worked with the biggest names in movies. Now, at 72, she’s ready to tell her own stories about her Panhandle upbringing.
The Secretive, Delightful Man Changing Everything We Know About Theme ParksJul 9, 2023
The only thing more fun than the rides themselves is this guy’s staggering analysis of them.
The Titan Submersible Was “an Accident Waiting to Happen”Jul 3, 2023
Interviews and e-mails with expedition leaders and employees reveal how OceanGate ignored desperate warnings from inside and outside the company. “It’s a lemon,” one wrote.
Saudi Arabia’s Vanished PrincessesJun 30, 2023
King Abdullah allegedly imprisoned four of his daughters. After his death, the princesses’ supporters say, they disappeared.
The Greatest Hospitality Story EverJun 14, 2023
While my uncle was dying from a rare cancer, he found solace in a hotel whose staff became a surrogate family.
The Trillion-Dollar Auction to Save the WorldJun 11, 2023
Ocean creatures soak up huge amounts of humanity’s carbon mess. Should we value them like financial assets?
The Dave Matthews Guide to Living and DyingMay 24, 2023
The troubadour of mellow vibes has been one of the biggest acts in music for three decades. Now 56, Matthews has been singing about mortality for a long time, and he’s confronting its specter in new and surprising ways.
Demon Core: The Strange Death of Louis Slotin - The New Yorker | The New YoMay 23, 2023
There was a flash of blue and a surge of radioactive heat. Nine days later, Louis Slotin was dead.
My Night in the Sistine ChapelMay 20, 2023
After the tourists go home, a museum’s collection tells its own story.
Creatures That Don’t Conform – Lucy JonesMay 19, 2023
In the woods near her home, Lucy Jones discovers the magic of slime molds and becomes entangled in their fluid, nonbinary way of being.
The Last Gamble of Tokyo JoeMay 14, 2023
Ken Eto rose through the ranks of the Chicago mob, and then it tried to kill him. The underworld would never be the same.
The Titanic of the Pacific - The Atavist MagazineMay 3, 2023
A tale of disaster, survival, and ghosts.
‘I feel like I’m selling my soul’: inside the crisis at JuventusApr 25, 2023
The long read: A series of financial scandals have rocked Italy’s most glamorous club. But is the trouble at Juventus symptomatic of a deeper rot in world football?
The Lost Music of Connie ConverseApr 24, 2023
A writer of haunting, uncategorizable songs, she once seemed poised for runaway fame. But only decades after she disappeared has her music found an audience.
The HackerApr 21, 2023
Runa Sandvik has made it her life’s work to protect journalists against cyberattacks. Authoritarian regimes are keeping her in business.
The PrinceApr 19, 2023
On the French Riviera and Italian coast, in the yacht clubs and shimmering ballrooms, everyone, including Pamela Anderson, wanted to get close to the prince. So did investigators. The story of Stefano Cernetic.
The Otherworldly Compositions of an Ethiopian NunApr 15, 2023
Emahoy Tsegué-Maryam Guèbrou, who died recently, wrote pieces that were elegiac, but suffused with a sense of survival: we are broken, we are wounded, we carry on.
How America's Beloved Meyer Lemon Caused a Mid-Century Citrus PanicApr 13, 2023
The fragrant fruit hid a dark secret.
I hope you will never see this letterApr 12, 2023
Days before entering space, Yuri Gagarin writes a letter to be opened in the event of his death
What Really Happened After the Mutiny on the Bounty?Apr 2, 2023
On November 28, 1787, His Majesty’s Armed Vessel Bounty set sail from England with 46 men aboard, bound for the island of Tahiti in the South Pacific. Commanded by Lieutenant William Bligh, her mission was to collect and deliver breadfruit plants to the West Indies, where they would serve as cheap food for slaves on British plantations. After a long [...]
The Ancient Order of BaliMar 28, 2023
In 1970s Bali, a sudden rice crisis prompted an unexpectedly far-reaching scientific discovery
‘Dad said: We’re going to follow Captain Cook’: how an endless round-the-woMar 28, 2023
In 1976, Suzanne Heywood’s father decided to take the family on a three-year sailing ‘adventure’ – and then just kept going. It was a journey into fear, isolation and danger …
Three abandoned children, two missing parents and a 40-year mysteryMar 28, 2023
The long read: Elvira and her brothers, Ricard and Ramón, were left at a train station in Barcelona aged two, four and five. As an adult, when Elvira decided to look for her parents, she discovered a family history wilder than anything she had imagined
Why Are These Italians Massacring Each Other With Oranges?Mar 27, 2023
Every winter, Ivrea erupts into a ferocious three-day festival where its citizens pelt one another with 900 tons of oranges. (Yes, oranges.)
David Sulzer’s Wild World of MusicMar 27, 2023
What can elephants, birds, and flamenco players teach a neuroscientist-composer about music?
How a Team of Ambitious Crooks in 1960s Montreal Planned the Biggest Bank Heist Anyone Had Ever SeenMar 26, 2023
In the spring of 1961, Georges Lemay, a dapper thirty-six-year-old French Canadian, spent his days holed up in his cottage on a private island on a river in the Laurentian Mountains north of Montre…
The Gospel According to Mavis StaplesMar 24, 2023
A legendary singer on faith, loss, and a family legacy.
Crime of the CenturiesMar 19, 2023
Tomb raiders, crooked art dealers, and museum curators fed billionaire Michael Steinhardt’s addiction to antiquities. Many also happened to be stolen.
Beyond Borders: Adolfo Kaminsky’s ForgeriesMar 19, 2023
Kaminsky bought chemistry books from bouquinistes along the Seine and taught himself to make explosives. But when a man...
The brief but shining life of Paul Laurence Dunbar, a poet who gave dignity to the Black experienceMar 17, 2023
Paul Laurence Dunbar became the first Black writer to earn international acclaim through his poetry, essays and musical lyrics.
11 of the Greatest Scams of All Time, Curated by ‘Scam Goddess’ Laci MosleyMar 16, 2023
The comedian and podcast host—and bonafide scam expert—shares her favorite capers, along with what makes them so irresistible.
The people who feel they are shrinkingMar 14, 2023
A surprising number of people experience symptoms of this curious condition, which is named after Lewis Carroll's heroine, who changed size after eating and drinking.
Why don't humans have fur?Mar 11, 2023
Most mammals, including our closest living relatives, have fur. So why did we lose ours?
Margaret Atwood Is Ready to Let It RipMar 10, 2023
The author spoke with WIRED about her new short story collection "Old Babes in the Wood," crypto, the end of Roe v. Wade, and what’s left to inspire hope.
Vanquishing the Dutch, Jordan Stolz Creates a New Norse Myth - The New YorkMar 6, 2023
Stolz, the 18-year-old from Wisconsin, won three gold medals at the speedskating world championships, finishing his turns in a way that seemed like something out of a storybook.
The “Dazed and Confused” GenerationMar 4, 2023
People my age are described as baby boomers, but our experiences call for a different label altogether.
There’s Something Odd About the Dogs Living at ChernobylMar 4, 2023
Pets left behind when people fled the disaster in 1986 seem to have seeded a unique population.
Dinner with Proust: how Alzheimer’s caregivers are pulled into their patients’ worldsMar 3, 2023
The long read: What do you say to someone whose wife prefers photographs of deceased authors to him?
How the Biggest Fraud in German History UnravelledFeb 28, 2023
The tech company Wirecard was embraced by the German élite. But a reporter discovered that behind the façade of innovation were lies and links to Russian intelligence.
What you learn about beauty and grief as a guard at the Metropolitan Museum of ArtFeb 27, 2023
After his brother’s death, Patrick Bringley took a job at the grandest place he could find.
Meet the Runner Who Leads Every Pack and Then VanishesFeb 26, 2023
Erik Sowinski is a professional pacer, a talented runner who is in high demand on starting lines, and nowhere to be found at the finish.
The rise of the scented-candle industrial complexFeb 26, 2023
Why is everyone waxing on about Diptyque?
The Oligarchs’ DerbyFeb 25, 2023
When the top teams in Greece meet, the story lines, and the rivalries, regularly extend far beyond the soccer field.
The blast furnace - 800 years of technology improvementFeb 25, 2023
The modern world uses shocking amounts of steel.
‘One billionaire at a time’: inside the Swiss clinics where the super-richFeb 24, 2023
The long read: For the ultra-wealthy and the super-famous, regular therapy won’t do
The Dystopian Underworld of South Africa’s Illegal Gold MinesFeb 20, 2023
When the country’s mining industry collapsed, a criminal economy grew in its place, with thousands of men climbing into some of the deepest shafts in the world, searching for leftover gold.
What’s a Japanese Mobster to Do in Retirement? Join a Softball Team. (Published 2023)Feb 19, 2023
The members of the Ryuyukai have done nearly 100 years of hard time. Now they’re just looking to stay out of trouble.
The long search for artificial heartsFeb 18, 2023
Humanity's engineering achievements have been extraordinary, so why has building an artificial heart has proved to be more challenging than expected.
No coach, no agent, no ego: the incredible story of the ‘Lionel Messi of clFeb 16, 2023
Gary Hunt is an enigma. He trains with the intensity of a modern athlete, but relaxes like a sportsman of a bygone era. He is fiercely competitive but unbelievably laid-back. How did he become the greatest cliff diver of all time?
The Strange Real-Life Mystery Behind Edgar Allan Poe’s “The Black Cat”Feb 16, 2023
George Stebbins was tearing down a stone wall in the cellar of his home in Northfield, Massachusetts when he uncovered the bones. A skull emerged first, then the spine and the bones of the arms and…
Avenging Billy: How amateur sleuths took on a gay porn actor’s haunting Hollywood murderFeb 15, 2023
Local sleuths help find a suspect in gay porn actor Bill Newton's murder. His dismembered head and feet were found in a Hollywood dumpster in 1990.
Portrait of a killer: art class in one of Mexico’s most notorious prisonsFeb 15, 2023
The long read: In 2016, artist César Aréchiga talked one of Mexico’s most dangerous maximum security prisons into letting him run art classes for its inmates, many of them violent gang members. Could he really change their lives?
The husband-and-wife forgers who fooled the art market — and made millions | CNNFeb 15, 2023
Wolfgang and Helene Beltracchi’s forgeries infiltrated museums, auction houses and private collections. A decade after their conviction, psychoanalyst Jeannette Fischer asks: Why did they do it?
The Defiance of Salman RushdieFeb 14, 2023
After a near-fatal stabbing—and decades of threats—the novelist speaks about writing as a death-defying act.
How to Become a Regular at a Texas Dive BarFeb 14, 2023
Follow these tips and tricks to becoming beloved at your local watering hole from the guy who literally wrote the book.
Joe Montana Was HereFeb 12, 2023
He won four Super Bowls and retired as the undisputed greatest. What came next was turning a legacy into a life.
Madeline Kripke Owned 20,000 Books, Some of Them Very BawdyFeb 11, 2023
She had perhaps the largest personal dictionary collection in the world. It is certainly the most titillating.
The Laundress Was Supposed to Be the Nice DetergentFeb 7, 2023
Until people started breaking out into hideous rashes.
I Never Understood Why Veterinarians Are at Such High Risk of Suicide. Until I Became One.Feb 7, 2023
The story of Lacey, and why I had to kill her.
43 Hours on the Amtrak Southwest Chief – Lennart KoopmannFeb 4, 2023
In September 2022, after watching many YouTube videos of other people on long-distance Amtrak trips, I finally embarked on a journey of my own. I took the Amtrak Southwest Chief train from Chicago to Los Angeles. Continue reading to learn more about it and why I'll do it again on another route.
The Dirt on Pig-Pen | Elif BatumanFeb 3, 2023
Pig-Pen was dirty — visibly so... That’s who and how he was. And yet — what was that dirtiness? Was it essential or incidental? How did it work?
The First Family of Human CannonballingFeb 2, 2023
David and Jeannie Smith gave up their day jobs for a life of daredevil stunts —with six children in tow. Five decades, thousands of cannon shots and multiple Guinness World Records later, this stupendous family business is still defying gravity and all
The Man Who Fixes the World's Finest ViolinsJan 27, 2023
He’s trusted to repair some of the world’s most fabled — and expensive — instruments. How does John Becker manage to unlock the sound of a Stradivarius?
A journey to Earth's most remote flowerJan 27, 2023
Tagimoucia is so rare that it only grows on one of Fiji's 330 islands, it's found high atop a steep mountain ridge and it blooms for less than three months a year.
The Spectacular Case of Lørenskog: Norway's Ongoing Search for a MurdererJan 26, 2023
Anne-Elisabeth Hagen, 68, was married to one of the wealthiest men in Norway. But four years ago, she disappeared, and police still have no solid leads. The entire country has been obsessed by the case ever since.
Spirited Away: A Peek into the World of China’s Door GodsJan 22, 2023
While the superstition isn’t widespread, the age-old tradition of hanging up door gods still endures during Lunar New Year.
The Alchemy of Air: A Jewish Genius, a Doomed Tycoon, and the Scientific Discovery That Fed the World but Fueled the Rise of Hitler: Hager, Thomas: 9780307351791: Amazon.com: BooksJan 22, 2023
The Alchemy of Air: A Jewish Genius, a Doomed Tycoon, and the Scientific Discovery That Fed the World but Fueled the Rise of Hitler [Hager, Thomas] on Amazon.com. *FREE* shipping on qualifying offers. The Alchemy of Air: A Jewish Genius, a Doomed Tycoon, and the Scientific Discovery That Fed the World but Fueled the Rise of Hitler
ExtractionJan 22, 2023
When your great-grandparents grew up in Stalin’s terror-famine, your grandparents in the Holocaust, and your parents in a straddle between totalitarianism and democracy, you grew up confused about pain. Were you entitled to it? Was it real?
I Became a Pastor during the Pandemic | The WalrusJan 22, 2023
I wasn’t prepared for the challenges I would face as a priest during COVID-19
The Getty Family’s Trust IssuesJan 20, 2023
Heirs to an iconic fortune sought out a wealth manager who would assuage their progressive consciences. Now their dispute is exposing dynastic secrets.
Remembering the triumph and tragedy of the 1986 Paris-Dakar rally - Hagerty MediaJan 14, 2023
The Paris-Dakar rally has an insane history of adventure, but none greater in triumph or tragedy than the 1986 running.
VictoryJan 13, 2023
Eleven-year-old Victoria has her sights set on playing Little League with the boys. She goes through tryouts and is told to learn to cook…
Life Lessons from 1,000 Years | The Curiosity ChronicleJan 13, 2023
The Curiosity Chronicle has quickly become one of the most popular newsletters for growth-minded individuals in the world. Each week, subscribers receive a deep dive that covers topics ranging from growth and decision-making to business, finance, startups, and technology. In addition, subscribers receive The Friday Five, a weekly newsletter with five ideas curated to spark curiosity headed into the weekend.
How pulling off a ‘potato trick’ ended a baseball player’s careerJan 11, 2023
Dave Bresnahan never made it past AA, but, thanks to a specially prepared potato, he holds a place in baseball lore
Hello world!Jan 10, 2023
Catapult publishes literary fiction and artful narrative nonfiction that engages with our Perception Box, the powerful metaphor we use to define the structure and boundaries of how we see others in th
The Science of Mind ReadingJan 2, 2023
Researchers are pursuing age-old questions about the nature of thoughts—and learning how to read them.
Why Did Walter Springs Die?Dec 31, 2022
When a 24-year-old Denver soldier was shot and killed by military police near his base in Texas in 1942, his family and friends suspected the official story wasn’t complete. They were right.
The Miraculous Life and Afterlife of Charlene Richard (Published 2022)Dec 28, 2022
She died in 1959, at age 12. But for Catholics in her Louisiana community, that was just the beginning of her incredible story — and a decades-long fight to make her a saint.
And the Lord Said, “You’ve Got a Time-Out, Mister”Dec 27, 2022
Was banishment from the Garden too tough a punishment for Adam and Eve? And other parental conundrums.
Trapped in the Trenches in UkraineDec 26, 2022
Along the country’s seven-hundred-mile front line, constant artillery fire and drone surveillance have made it excruciatingly difficult to maneuver.
The True Story of Lawrence of ArabiaDec 16, 2022
His daring raids in World War I made him a legend. But in the Middle East today, the desert warrior’s legacy is written in sand
What Humans Can Learn From The Language Of HoneybeesDec 8, 2022
Advanced technologies like A.I. are enabling scientists to learn that the world is full of intelligent creatures with sophisticated languages, like honeybees. What might they tell us?
How Michael Goguen Got ConnedDec 4, 2022
How one billionaire with a savior complex and a voracious sexual appetite got conned by his best friend, who saw him as the perfect mark.
The Enduring Metal Genius of MetallicaNov 28, 2022
On the road with the band in its forty-first year.
Life in the Slow LaneNov 17, 2022
Olivia Potts | Longreads | November 2022 | 16 minutes (4,649 words) It’s six in the morning, and Robert Booth has already been on the road for three hours. Sitting alongside him in the cab of his lorry (the British term for a truck) is Louis, Robert’s small dog, a Jack Russell-chihuahua mix, and a washing-up bowl […]
The Vineyard Falcon Does Not Suffer FoolsNov 15, 2022
Master falconer Alina Blankenship and her mélange of raptors have become the protectors of some of Oregon's top vineyards.
The Art of Bidding: How I Survived Federal Prison | The Marshall ProjectOct 31, 2022
When Eric Borsuk went to prison with his two best friends, they found their ‘bid’ — their purpose — together. Then one day, everything changed.
The Night Warren Zevon Left the ‘Late Show’ BuildingOct 31, 2022
On October 30, 2002, a cancer-stricken Warren Zevon returned to the ‘Late Show With David Letterman’ stage for one last performance. Twenty years later, Letterman and more remember the gravitas and emotion of that stunning night.
COVID-19 Origins: Investigating a “Complex and Grave Situation” Inside a Wuhan LabOct 30, 2022
The Wuhan lab at the center of suspicions about the pandemic’s onset was far more troubled than known, documents unearthed by a Senate team reveal. Tracing the evidence, Vanity Fair and ProPublica give the clearest view yet of a biocomplex in crisis.
The Most Lawless County in TexasOct 30, 2022
Suzanne Wooten did the impossible and became the first candidate to defeat a sitting judge in Collin County. What followed is the unbelievable, epic tale of the craziest case in the history of jurisprudence.
An Undiscovered Coronavirus? The Mystery of the ‘Russian Flu’ - The New YorOct 21, 2022
Scientists are grasping for any example that could help anticipate the future of Covid, even a mysterious respiratory pandemic that spread in the late 19th century.
The Mysterious Patient in Room 23: The Hermit Baroness (Published 2022)Oct 21, 2022
Birgit Thyssen-Bornemisza led a life of eccentric anonymity and shabby gentility. Then her money got cut off. Then she had a stroke.
Bertrand Piccard’s Laps Around the WorldOct 19, 2022
The explorer’s grandfather travelled higher than anyone; his father went deeper. Now it was his turn to make a mark.
Interview: Why Mastering Language Is So Difficult for AIOct 17, 2022
Scientist Gary Marcus argues that “deep learning” is not the only path to true artificial intelligence.
The Richest Athlete of All Time Did Nothing With His Wealth and Vanished Into HistoryOct 16, 2022
Over the course of his chariot racing career, Gaius Appuleius Diocles won almost 60,000 lbs of gold. What did he do with it? Who knows.
Paul McCartney's freakish memory - by Ian LeslieOct 5, 2022
And what it tells us about his creativity
Alone at the Edge of the World - The Atavist MagazineOct 3, 2022
Susie Goodall wanted to circumnavigate the globe in her sailboat without stopping. She didn’t bargain for what everyone else wanted.
The Bodies in the CaveOct 3, 2022
Native people have lived in the Big Bend region for thousands of years. Who should claim their remains?
Inside the Ransomware Gangs That Extort HospitalsOct 2, 2022
They shut down patient care and put lives at risk. Would the pandemic finally slow them down?
The Thorny Problem of Keeping the Internet’s TimeOct 2, 2022
An obscure software system synchronizes the network’s clocks. Who will keep it running?
Something Strange Happens When You Tear These Creatures ApartOct 1, 2022
Behold choanoflagellates, tiny creatures that can be one body and many bodies all at once.
The Case of the Disputed Lucian FreudSep 30, 2022
A collector thought he had bought a painting by the celebrated British artist. How far would he go to prove it?
The Wondrous Lives of Julius ShapiroSep 30, 2022
He was a jovial Lower East Side gangster, wartime chemical researcher and secretive color television pioneer. An inquisitive daughter wants the full story, but this ninety-three-year-old would rather drink his coffee and read his book in peace.
One man's journey from state prison to a revered San Francisco restaurantSep 24, 2022
'The world owes me nothing.'
My Chances of Being a Mom Were Fading. Then Two Beautiful Lambs Came into My Life.Sep 22, 2022
People say farmers aren’t supposed to get emotionally attached to livestock. Uh-huh. When fate sent our writer two newborn sheep with life-threatening birth defects, that kind of thinking was banished from the barn.
The Enduring Wisdom of ‘Goodnight Moon’ (Published 2022)Sep 22, 2022
It’s the first book many babies receive as a gift, and one of the few that parents will keep when their child is grown. Why does this 75-year-old story have such staying power?
The Mysterious, Vexing, and Utterly Engrossing Search for the Origin of EelSep 20, 2022
To save endangered eels, researchers have been working for decades to figure out where they reproduce.
A Rural Doctor Gave Her All. Then Her Heart Broke. (Published 2022)Sep 20, 2022
Physicians suffer one of the highest burnout rates among professionals. Dr. Kimberly Becher, one of two family practitioners in Clay County, West Virginia, learned the hard way.
The Mysterious, Stubborn Appeal of Mass-Produced Fried ChickenSep 17, 2022
Why do so many accomplished chefs call Popeyes their favorite fried chicken?
The Real Warriors Behind 'The Woman King'Sep 17, 2022
A new film stars Viola Davis as the leader of the Agojie, the all-woman army of the African kingdom of Dahomey
The Despotism of Isaias Afewerki | Alex de WaalSep 9, 2022
Afewerki’s attack on Tigray is the culmination of the Eritrean dictator’s ambition to become master of the Horn of Africa.
The Substance of Silence: A Reading List About HermitsSep 8, 2022
Humans are social creatures, and loneliness can be debilitating — yet, many have discovered solace in the solitary life.
The Missing Chinese Machine RevolutionSep 5, 2022
Before the industrial revolution, there had been a significant increase in machinery use in Europe. Why not in China?
Why an American chestnut tree in Centreville is the 'holy grail' for conservationistsSep 5, 2022
The American chestnut tree used to grow throughout the eastern U.S., but was devastated by a blight in the early 20th century.
Are All Brains Good at Math?Sep 5, 2022
Math provokes dread in so many people—yet we are all born with a sense for numbers.
Killing Invasive Species Is Now a Competitive SportSep 5, 2022
In the Panhandle, where swarms of lionfish gobble up native species, a tournament offers cash prizes to divers skilled at spearing one predator after another.
Was King Arthur a Real Person?Sep 5, 2022
The story of Camelot and the Knights of the Round Table has captivated us for a thousand years. But is there any truth behind the tales?
Why Do So Many Zippers Say YKK?Sep 1, 2022
The zipper is one of those inventions—along with the bicycle—that seems as though it should have occurred much earlier in history. How complicated...
I Went to Trash SchoolAug 31, 2022
An education in “juice,” how to protect your shins, and keeping 12,000 daily tons of garbage at bay.
The Animal TranslatorsAug 30, 2022
Scientists are using machine learning to eavesdrop on naked mole rats, fruit bats, crows and whales — and to communicate back.
How It Feels To Chase a Tornado Across Three StatesAug 27, 2022
In the moments before entering every supercell thunderstorm, there’s a moment of pause that washes over me. It usually comes as daylight vanishes, a few seconds after I turn on my headlights; just …
Five Lessons from HistoryAug 27, 2022
The most important lessons from history are the takeaways that are so broad they can apply to other fields, other…
Robert Plant and Alison Krauss on the secrets to aging gracefullyAug 24, 2022
Plant and Krauss discuss their first album together in 15 years, their 'happily incompatible' friendship and, of course, the chances of a Led Zeppelin reunion.
Willie Nelson’s Long EncoreAug 17, 2022
As he approaches 90, even brushes with death can’t keep him off the road — or dim a late-life creative burst.
Judgment is an exercise in discretion: circumstances are everything | Aeon EssaysAug 17, 2022
A virtuous person respects the rules. So when should the same person make a judgment call and break or bend them instead?
The Case of the Matisse and the Mysterious ThingamabobAug 17, 2022
Did the artist paint a security camera (or a condom, or a portrait of rigatoni) into “The Red Studio”? An investigation at MoMA looks for clues.
Why Are Border Smugglers Trafficking Bologna?Aug 17, 2022
The tons of contraband lunch meat seized at the U.S.-Mexico border tell us something about the market value of nostalgia.
My Mother’s 13 Unbeatable Tips to Staying YouthfulAug 16, 2022
It’s time to ditch the biological clock, run to the nearest fair and jump back on that metaphoric roller-coaster known as your life
Le bon temps continue to roll on Cajun radio in Southern LouisianaAug 15, 2022
Eight radio stations in Southern Louisiana still broadcast partially in French as they try to keep alive a dying language in the area. French has been spoken there since the mid-1700s.
20 of the Best Science Fiction Books of All Time | Book RiotAug 14, 2022
The best science fiction books of all time push the envelope, show what could be, and make you question what's possible.
The Most Influential Sci-Fi Books Of All TimeAug 14, 2022
The most influential sci-fi books of all time examine humanity's longest-held hopes and deepest, most visceral fears.
20 Must-Read Genre-Bending Sci-Fi Books | Book RiotAug 14, 2022
From sci fi romance to science fantasy and sci fi horror, those genre-blending science fiction books have something for every reader.
Outer Sight: The Best Science Fiction Books You've Never Heard ofAug 14, 2022
These hidden gems are all great works of imagination set near and far that you need to add to your TBR ASAP.
The Tip-Off From a Nazi That Saved My GrandparentsAug 14, 2022
It has often been described as a “miracle” that most of Denmark’s Jews escaped the Holocaust. Now it seems that the country’s Nazi rulers deliberately sabotaged their own operation.
Animal Magic: Why Intelligence Isn’t Just for HumansAug 13, 2022
Meet the footballing bees, optimistic pigs and alien-like octopuses that are shaking up how we think about minds.
On the moral virtues of mischief and mischievous people | Aeon EssaysAug 12, 2022
Mischievousness requires humour, wit and a playful humaneness: qualities that make for a particular kind of virtue
The Secret Life of Leftovers — The New AtlantisAug 12, 2022
Cheese, curry, beer: We can thank our ancestors who put food scraps to creative use. What we’re leaving our children is garbage.
Human Tetrachromacy is Real. Here's What We KnowAug 9, 2022
After decades of exhaustive study, scientists have determined that human tetrachromacy is real. It comes in two forms -- and one can actually be an acquired trait.
The Beautiful Life of Vin ScullyAug 5, 2022
The legendary Dodgers broadcaster, who died Tuesday at age 94, was a modern Socrates, only more revered. He was simultaneously a giant and our best friend.
The Night That Grasshoppers Killed Texas League BaseballJul 30, 2022
Fifty years ago, a minor league game in Midland was postponed for the rarest of reasons—a swarm of grasshoppers biblical in its proportions.
Into the Forbidden ForestJul 29, 2022
Famed American biologist Patricia Wright explores an astonishing breadth of biodiversity in the wilderness of Madagascar
Romance, Politics, and Ecological Damage: The Saga of Sable Island’s Wild Horses | Hakai MagazineJul 28, 2022
They’ve roamed free for hundreds of years, but is that freedom harming the ecosystem they call home?
Inside the Mind-Boggling World of the Antiquities Theft Task ForceJul 19, 2022
You can't make this shit up
The Case for Bad CoffeeJul 19, 2022
Lately, something has changed. Lately, I've been reacting to fancy coffee the same way a child reacts to an accidental sip of red wine mistaken for grape juice. I don't know when it happened, but I've devolved into an unexpected love affair with bad coffee. It's not just instant coffee that I hanker for each morning, either, it's any subpar coffee I can get my hands on.
Isolated and in crisis – Russia’s war in Ukraine has damaged football at home tooJul 11, 2022
Football in Russia was booming after the 2018 World Cup - now, thanks to the invasion of Ukraine, it promises to keep on shrinking
The surprising afterlife of used hotel soapJul 5, 2022
Hotel guests leave behind millions of half-used bars of soap every day. A nonprofit is on a mission to repurpose them.
Is Music Universal?Jul 5, 2022
From a neurological and evolutionary perspective, music is fascinating. There seems to be a deeply rooted biological appreciation for tonality, rhythm, and melody. Not only can people find certain sequences of sounds to be pleasurable, they can powerfully evoke emotions. Music can be happy, sad, peaceful, foreboding, energetic or comical. Why is this? Music is
Hacker NewsJul 5, 2022
The books that no-one can readJul 4, 2022
Some of the world's most celebrated authors have written manuscripts that won't be published for a century – why? Richard Fisher visits the Future Library in Oslo to find out.
‘More than a song’: the enduring power of Leonard Cohen’s HallelujahJul 3, 2022
In a new documentary, fans and experts explore the legacy of a song that was originally shunned before becoming a timeless classic
Mark Manson, the Self-Help Guru Who Burned OutJul 2, 2022
He sold 12 million copies of The Subtle Art of Not Giving a Fuck. Then he started taking his own advice.
And Then the Sea Glowed a Magnificent Milky Green | Hakai MagazineJul 2, 2022
A chance encounter with a rare phenomenon called a milky sea connects a sailor and a scientist to explain the ocean’s ghostly glow.
The Barkley Marathons: the hellish 100-mile race with 15 finishers in 36 yearsJul 1, 2022
Participants in the Tennessee race must negotiate extreme temperatures, wild terrain and more than 50,000 feet of accumulated ascent
A Mystery That Took 13,200 Years to CrackJun 30, 2022
Hidden in the tusk of a 34-year-old mastodon was a record of time and space that helped explain his violent death.
Whatever happened to the Bee Apocalypse?Jun 25, 2022
Science News, Physics, Science, Philosophy, Philosophy of Science
The human sensory experience is limited. Journey into the world that animals knowJun 25, 2022
In his new book, An Immense World, science writer Ed Yong explores the diversity of perception in the animal world — including echolocation, magnetic fields and ultraviolet vision.
India’s Untouchable Queen of the DeadJun 25, 2022
Legions of the sick and elderly go to great lengths to die in India’s holiest city. One mysterious woman guards this fiery entrance to eternal bliss.
THE MOST DANGEROUS PLACE ON EARTHJun 24, 2022
In a showdown between Russia and NATO, the ‘Suwałki Gap’ would likely be the first point of contact.
Hacker NewsJun 23, 2022
Stranger Things: A Reading List of Unsolved MysteriesJun 23, 2022
Tales of odd phenomena stoke our imagination even as they tease us.
Animal magic: why intelligence isn’t just for humansJun 23, 2022
Meet the footballing bees, optimistic pigs and alien-like octopuses that are shaking up how we think about minds
What Really Happened to Malaysia’s Missing AirplaneJun 23, 2022
Five years ago, the flight vanished into the Indian Ocean. Officials on land know more about why than they dare to say.
What Klingon and Other Constructed Languages RevealJun 22, 2022
Christine Schreyer is a linguistic anthropologist who researches the people who invent new tongues and seek to sustain ancient ones.
How Animals Perceive the WorldJun 21, 2022
Every creature lives within its own sensory bubble, but only humans have the capacity to appreciate the experiences of other species. What we’ve learned is astounding.
Hong Kong’s Floating Restaurant Sinks at Sea, Laden With Memories (Published 2022)Jun 21, 2022
Jumbo Floating Restaurant, which closed in 2020, capsized in the South China Sea after being towed from the city. The sinking triggered nostalgia for a happier period of Hong Kong history.
The Incredible Journey of Three African Wild DogsJun 21, 2022
Three sisters braved lions, crocodiles, poachers, raging rivers and other dangers on a 1,300-mile transnational effort to forge a new dynasty.
[Miscellany] The Crow Whisperer, By Lauren Markham | Harper's MagazineJun 21, 2022
What happens when we talk to animals?
Drew Houston's Commencement addressJun 21, 2022
'I stopped trying to make my life perfect, and instead tried to make it interesting.'
How to Feel Better NakedJun 21, 2022
Whether you want to find joy in your body, or just greater self-acceptance, these four strategies from psychologists and activists — and, yes, nudists — might help.
You May Want to Marry My Husband (Published 2017)Jun 20, 2022
After learning she doesn’t have long to live, a woman composes a dating profile for the man she will leave behind.
Inside the Brilliant, Heartbreaking First 10 Minutes of ‘Up’Jun 19, 2022
"We figured the best way to make the audience understand—and care—would be to connect his house to a relationship, and unfinished business," says director Pete Docter
Visiting Vladimir Putin’s Lost RussiaJun 18, 2022
An ex-Soviet state’s national myths—as well as the forces of nationalism, economics, culture, and religion—all pull it away from Moscow. Can Russia really compete?
When Baking and Real Estate CollideJun 16, 2022
Tartine, a beloved San Francisco bakery, wanted to grow. Partnering with a developer was one way to rise.
Meet the Yucca Whisperer of West TexasJun 16, 2022
Near Fort Stockton, Hoven Riley has been quietly growing more than 20,000 of the prized plants, which are being illicitly uprooted from public and private lands to meet a growing demand.
At 88, Poker Legend Doyle Brunson Is Still Bluffing. Or Is He?Jun 13, 2022
The Texas gambler has been winning at poker for seventy years—long enough to become an icon and watch an outlaw’s game become an industry.
Raiders of the Looted Assets: Inside the High-Stakes Race to Recover QaddafJun 9, 2022
While spooks, treasure hunters, and lawyers search for cash, gold, and antiquities, Libya offers a lesson—and 1,001 cautionary tales—about how to recoup loot from kleptocrats.
“I'm Still Alive but Sh*t Is Getting Wild”: Inside the Siege of the AmarulaJun 8, 2022
When vast gas reserves were discovered off the idyllic coast of northern Mozambique, a crew of roughnecks flew in from around the world to make their fortunes. But in March 2021, Islamist rebels attacked, and the foreigners and thousands of Mozambicans were abandoned. Two hundred holed up at the Amarula Lodge, where the expats faced a choice: save themselves, or risk it all to save everyone. As oil and gas fuel a new war in Europe, Alex Perry pieces together, shot by shot, a stunning morality tale for the global economy.
‘The Soundtrack of Your Mistakes In Stereo’: Documenting Every Detail of Life Behind BarsJun 7, 2022
"Jail is its own kingdom. The basic rules of engagement do not apply here," Keri Blakinger writes in this excerpt from her new memoir.
Kai Lenny Surfs the UnsurfableJun 7, 2022
The big-wave surfer tackles some of the most fearsome swells on the planet. On the surface, it looks like he’s just having fun.
The people who rescue giant shipsMay 31, 2022
Enormous container ships ferry goods all over the world, but when one of them gets into trouble – as happened with the Ever Given and Ever Forward recently – how can they be saved?
42 years ago, the "Mother of Yoda" conquered Hollywood — then she vanishedMay 29, 2022
You might not recognize the name Wendy Froud (née Midener), but in the practical effects world, she’s a legend. Her work even earned her one of pop culture’s greatest monikers: the Mother of Yoda.
This Old ManMay 28, 2022
“I know how lucky I am, and secretly tap wood, greet the day, and grab a sneaky pleasure from my survival at long odds.”
Loki’s Place in Trickster MythologyMay 28, 2022
Smithsonian’s James Deutsch says that behind the character in the Marvel Studios series lies the oft-told story of “guile” outsmarting authority.
When Major Leaguer Eddie Grant Made the Ultimate SacrificeMay 28, 2022
The Harvard-trained lawyer and professional baseball player Eddie Grant volunteered to serve in World War I. He fought as he'd played: selflessly
43 of the Most Iconic Short Stories in the English LanguageMay 27, 2022
From Washington Irving to Kristen Roupenian.
Why Is ‘Bob’s Burgers’ So Freakishly Lovable? This Guy.May 25, 2022
Loren Bouchard’s accidental career as a comedy mogul has now brought his TV family to the big screen.
The True Story Of A Man-Eating Tiger's 'Vengeance'May 16, 2022
In December 1997, a tiger prowled the outskirts of a small town in Russia's Far East. In his book The Tiger, John Vaillant re-creates the events of that terrifying winter in an environment where man and tiger live side-by-side.
Hacker NewsMay 15, 2022
The story of See’s Candies reminds us of the importance of consistency, quality, and long-term growth in investing.
The History of Lady LookoutsMay 14, 2022
Spotting smoke from towers on high peaks could have been deemed ‘man’s work,’ but a few pioneers paved the way for generations of women to do the job.
‘People took so many drugs, they forgot they played on it’ – stars on Exile on Main St, the Rolling Stones’ sprawling masterpieceMay 12, 2022
Recorded during several hedonistic months in a fabulous Cote d’Azur villa, Exile on Main St is seen as the Stones’ epic, creative peak. As the classic album turns 50, stars tell us how it got their rocks off
The Strange Afterlife of George CarlinMay 12, 2022
Nearly 14 years after his death, his provocative humor has been embraced by people across the political spectrum. What happens when comedy outlasts the era it was made for?
A Woman Alone in Oman: Three Weeks Along the Arabian CoastMay 9, 2022
In December, a photographer set off on a 2,600-mile road trip, traveling from the Yemeni border to the Strait of Hormuz. Here’s what she saw.
How Ukrainians Saved Their Capital | The New YorkerMay 5, 2022
When Russia attacked Kyiv, Ukrainians dropped everything to protect the city—and to ease one another’s suffering.
The Island That Humans Can’t Conquer | Hakai MagazineApr 16, 2022
A faraway island in Alaska has had its share of visitors, but none can remain for long on its shores.
How Bitcoin Tracers Took Down the Web’s Biggest Child Abuse SiteApr 10, 2022
Welcome to Video’s customers thought their payments were untraceable. They couldn’t have been more wrong. The untold story of the case that shredded the myth of Bitcoin’s anonymity.
The Legend of the Music TreeApr 9, 2022
Exotic lumber salvaged from a remote forest in Belize is the world’s most coveted tonewood
MIT scans brain of hyperpolyglot Vaughn Smith, who speaks 24 languages - WaApr 6, 2022
In a city where diplomats and embassies abound, where interpreters can command six-figure salaries, where language proficiency is résumé rocket fuel, Vaughn Smith was a savant with a secret.
Is Geometry a Language That Only Humans Know? (Published 2022)Apr 3, 2022
Neuroscientists are exploring whether shapes like squares and rectangles — and our ability to recognize them — are part of what makes our species special.
The Cult of Adam ToozeMar 31, 2022
How the impeccably credentialed, improbably charming economic historian supplanted the dirtbag left.
How national identities are inventedMar 17, 2022
A strong national identity is essential for any country's survival – and the easiest route to acquiring one is to unite behind a common enemy.
Six Tips on Writing from John SteinbeckMar 16, 2022
On the value of unconscious association, or why the best advice is no advice.
Wonders and warnings from the ancient world | Daisy Dunn | The Critic MagazMar 14, 2022
This article is taken from the March 2022 issue of The Critic. To get the full magazine why not subscribe? Right now we’re offering five issue for just £10. If you’ve ever wondered how letters were…
Revolución on the Cookie Factory FloorMar 4, 2022
The new owner of Argentina’s de facto national treat stopped paying his majority-female workforce — so they seized control of the entire operation.
Bringing Home Braden: The extraordinary ‘rescue’ of a fallen California firMar 2, 2022
In the midst of the 2018 Ferguson Fire in Northern California, a young bulldozer driver tumbled to his death trying to cut a fire break to protect his friends and his neighbors. Despite flames and dangerous terrain, his fellow firefighters were determined to do whatever it took to recover his body.
The Medical Miracle of a Pig’s Heart in a Human BodyFeb 21, 2022
The first successful transplantation may solve a donor shortage, but this major scientific advancement is not without challenges.
How America Saved Millions of Dogs—By Moving ThemFeb 20, 2022
How adoptable animals became a cultural phenomenon in their own right, and a key part of a transformation of companion-animal welfare.
The Rise and Fall of a Prison Town QueenFeb 13, 2022
A family feud over drugs, money and fried fish roils the heart of the Texas prison system.
The Last Oyster Tongers of Apalachicola — THE BITTER SOUTHERNERFeb 1, 2022
Oysters may survive population decline in Apalachicola, Florida, but what about the people who harvest them?
Led Zeppelin Gets Into Your SoulJan 29, 2022
The musicians were diabolically bad as people, and satanically good as performers.
Finding the world’s deepest shipwreckJan 25, 2022
In 1944, the USS Johnston sank after a battle against the world's largest battleship. More than 75 years later, her wreck was finally located, 6km (3.7 miles) below the waves.
The Infamous FBI Informant Behind a 20-Fatality Limo CrashJan 23, 2022
It was the deadliest U.S. transportation disaster in a decade. The man behind it was one of the most notorious confidential informants in FBI history.
Divine Comedy - WikipediaJan 23, 2022
The Divine Comedy is an Italian narrative poem by Dante Alighieri, begun c. 1308 and completed around 1321, shortly before the author's death. It is widely considered the pre-eminent work in Italian literature and one of the greatest works of Western literature. The poem's imaginative vision of the afterlife is representative of the medieval worldview as it existed in the Western Church by the 14th century. It helped establish the Tuscan language, in which it is written, as the standardized Italian language. It is divided into three parts: Inferno, Purgatorio, and Paradiso.
Dun, Dun Duuun! Where did pop culture’s most dramatic sound come from?Jan 21, 2022
Did the iconic three-note sequence come from Stravinsky, the Muppets or somewhere else? Our writer set out to – dun, dun duuuun! – reveal the mystery
What Lies BeneathJan 21, 2022
In 1708, the Spanish galleon San José sank in a deadly battle against English warships, taking with it billions in treasure. Centuries passed until a secretive archaeologist found the wreck, but now nations are again warring over who may claim the gold and glory.
The Eerie, Lunar Nothingness of Namibia’s Skeleton Coast (Published 2022)Jan 18, 2022
The stretch of coastline in southwest Africa is a strange and beautiful reminder that, in the end, we are powerless against nature and time.
Welcome to the land that no country wants | Jack Shenker | World news | TheJan 16, 2022
The long read: In 2014, an American dad claimed a tiny parcel of African land to make his daughter a princess. But Jack Shenker had got there first – and learned that states and borders are volatile and delicate things
20 Short Novels To Stay Up All Night ReadingJan 15, 2022
Unputdownable books you can finish in bed tonight.
From Prejudice to Pride | Hakai MagazineJan 14, 2022
In the 20th century, Japanese anthropologists and officials tried to hide the existence of the Indigenous Ainu. Then the Ainu fought back like their cousins, the bears.
The forgotten medieval habit of 'two sleeps'Jan 12, 2022
For millennia, people slept in two shifts – once in the evening, and once in the morning. But why? And how did the habit disappear?
The (Other) French Chef | HazlittJan 7, 2022
Julia Child's collaborator Simone Beck has lingered as an object of pity in public memory. But maybe Beck didn’t want stardom at all.
Still She Rises — THE BITTER SOUTHERNERJan 7, 2022
Biscuit-whisperer Erika Council honors the women who taught her to bake a perfect biscuit.
Ninety-Nine Fascinating Finds Revealed in 2021Jan 6, 2022
The year's most exciting discoveries include a Viking "piggy bank," a lost Native American settlement and a secret passageway hidden behind a bookshelf
John Madden Was America’s Greatest Football TeacherJan 6, 2022
Madden, who died Tuesday at the age of 85, made a generation of football fans smarter
Qassem Suleimani and How Nations Decide to KillDec 28, 2021
The political, moral, and visceral considerations behind assassination.
The Looming Threat of a Nuclear Crisis with IranDec 28, 2021
The Biden Administration faces a potential confrontation with a longtime rival that is better armed and more hard-line than at any time in its modern history.
The Incredible FigDec 27, 2021
The fig is an ecological marvel. Although you may never want to eat one again.
Where the Tupelo Grows — THE BITTER SOUTHERNERDec 26, 2021
Beekeeping helped Gary Adkison pull his life together. Now he's among the tenacious harvesters of tupelo honey.
The History of O. Henry's 'The Gift of the Magi'Dec 25, 2021
The beloved Christmas short story may have been dashed off on deadline but its core message has endured
The lawyer who tried faking his death, and the writer exposing his crime dynastyDec 22, 2021
Mandy Matney kept a harsh spotlight trained on South Carolina’s Murdaugh family until they became impossible for anyone to ignore
The Race to Find ‘Green’ HeliumDec 20, 2021
Helium is a critical—and finite—resource. The future of our most indispensable technologies depends on a new supply.
Umami Exists and MSG is its MessengerDec 18, 2021
For a long time, I thought MSG was a food additive more like "Red 40", that it had some obscure food-science use and junk food companies were either too lazy or callous to replace it. It turns out it's more like salt. Good luck taking that out of your Cheetos.
See the Real Live Man Who Grew Up in a CarnivalDec 15, 2021
For our reporter, “Nightmare Alley” recalls a childhood spent working the circuit with his parents. Carnies like the World’s Smallest Woman welcomed him when cruel classmates didn’t.
The Story of Carolina Gold, the Best Rice You've Never TastedDec 12, 2021
Due in large part to Glenn Roberts of Anson Mills, a Georgia optometrist, and several members of what's known as the Carolina Gold Rice Foundation (yes, that exists), Carolina Gold rice is back, allowing a new generation of home cooks to experience what real Lowcountry cooking was meant to taste like.
The Story of Catherine the GreatDec 11, 2021
Hulu’s “The Great” offers an irreverent, ahistorical take on the Russian empress’ life. This is the real history behind the period comedy.
Death of a LobstermanDec 10, 2021
On a remote island in Maine, a group of friends thought they witnessed one man killing another with an ax. But no one was ever arrested. In a small town far out at sea, justice sometimes works a little differently.
In New Mexico, Money Grows on TreesDec 8, 2021
The painstaking process of picking piñon makes for a booming roadside economy for the Navajo Nation and other Indigenous Americans
The Flying Santas Who Airdrop Christmas Cheer to America’s Lighthouse KeepersDec 7, 2021
When a 1920s aviation pioneer launched a thank-you project for the families that keep coastal ships safe, he propelled a tradition that’s lasted longer than he ever imagined.
It’s Hard Out Here—Way, Way, Way Out Here—for a MedicDec 6, 2021
Oil-field medics face long hours, grisly accidents, desolation, and low pay. So why do they do it?
Old Trucks for New MoneyDec 3, 2021
The booming market for certain vintage vehicles is driven by a particular vision of authenticity.
The Spine CollectorNov 30, 2021
For five years, a mysterious figure has been stealing books before their release. Is it espionage? Revenge? A trap? Or a complete waste of time?
How an American in Paris won the rarest of French honorsNov 29, 2021
Josephine Baker next week will become the first Black woman and first American to be honored with enshrinement in Paris' Pantheon.
The Pigeon Puzzle: How Do They Figure Out Their Impossibly Long Routes Home? | The WalrusNov 29, 2021
You might consider them flying rats, but their odysseys stump scientists
The Notorious Mrs. MosslerNov 28, 2021
In the mid-sixties, Candace Mossler was one of the most widely known socialites in Houston. She was in her forties, vivacious and full of charm, with wavy blond hair, deep-blue eyes, and a surgically enhanced figure that was often remarked upon in the many newspaper columns written about her.
Can a Boxer Return to the Ring After Killing?Nov 24, 2021
In 2019, Charles Conwell unintentionally ended Patrick Day’s life with his fists. Now he’s trying to make sense of his life, and boxing itself.
David Simon and the Creation of “The Wire”Nov 23, 2021
Margaret Talbot’s 2007 Profile of the show’s creator, with a behind-the-scenes look at the filming of “The Wire” ’s fifth season.
What It Takes to Climb the World’s Most Forbidding CliffsNov 23, 2021
After decades of dominance, Tommy Caldwell is still seeking new ascents.
The World’s Deadliest Thing — Anthony WarnerNov 23, 2021
It is deadly, invisible and shapes much of the food we eat. A teaspoon of it could kill millions of people, and it is probably the most expensive material on earth. Yet you probably have some stuck to the bottom of you shoe.
The Tomb Raiders of the Upper East SideNov 23, 2021
Inside the Manhattan DA’s Antiquities Trafficking Unit
The Old Country Meets Prozac Nation on “The Sopranos”Nov 22, 2021
From 1999: “There has certainly never been anything like it on TV, and on network TV there never could be anything like it.”
The Incredible Tale of the Greatest Toy Man You've Never KnownNov 14, 2021
He brought Pokémon, Yu-Gi-Oh!, and Cabbage Patch Kids to our living rooms. He made and lost fortunes. Can Al Kahn stay in the game?
What lies beneath: the secrets of France’s top serial killer expertNov 13, 2021
The long read: An intrepid expert with dozens of books to his name, Stéphane Bourgoin was a bestselling author, famous in France for having interviewed more than 70 notorious murderers. Then an anonymous collective began to investigate his past
Eliud Kipchoge: Inside the camp, and the mind, of the greatest marathon runner of all timeNov 11, 2021
He’s the greatest marathoner in history, a national hero in Kenya, and an icon for runners around the world. But despite his fame and wealth, Eliud Kipchoge chooses to live the most basic lifestyle. Cathal Dennehy travels to the highlands of Kenya for an inside look at his training camp and to meet a champion with a quiet, complex personality
Brain Damage Saved His Music - Issue 20: Creativity - NautilusNov 8, 2021
After a chunk of his brain was removed, guitarist Pat Martino got his groove back.
"A Great Day In Harlem": Remembering the iconic 1958 photo of legendary musiciansNov 4, 2021
58 musicians showed up for a picture that captured the giants of jazz
The Awe-Inspiring But Tragic Story of Africa’s Festival In The Desert (2001Nov 3, 2021
Nenad Georgievski writes at All About Jazz, though the world knew little about Malian music until American musicians began partnering with players from West Africa. In the 1980s, Stevie Wonder began touring with Amadou and Mariam, helping to popularize their form of Malian blues.
How Bionic Gloves Gave a Maestro Pianist His Hands BackNov 3, 2021
A lifetime of brutal injuries and misfortune robbed the world-renowned pianist João Carlos Martins of the ability to play his instrument. And then along came an eccentric designer and his bionic gloves.
How 12th-century Genoese merchants invented the idea of risk | Psyche IdeasNov 3, 2021
From the docks of 12th-century Genoa to the gambling tables of today, risk is a story that we tell ourselves about the future
How to Read “Gilgamesh” | The New YorkerNov 3, 2021
The heart of the world’s oldest long poem is found in its gaps and mysteries.
Inside Ekiben’s six-hour trip to make a special dish for customer dying of cancerNov 2, 2021
It flurried all day Sunday in Vermont. Ekiben co-founder Steve Chu watched the flakes with dread. Snow in the fryer would be trouble. This is the story of how the owners of Baltimore’s most p…
Are We on the Verge of Chatting with Whales? | Hakai MagazineOct 30, 2021
An ambitious project is attempting to interpret sperm whale clicks with artificial intelligence, then talk back to them.
The last great mystery of the mind: meet the people who have unusual – or non-existent – inner voicesOct 28, 2021
Does your internal monologue play out on a television, in an attic, as a bickering Italian couple – or is it entirely, blissfully silent?
For Forest Blazes Grown Wilder, an Alternative: The 'Good Fire'Oct 28, 2021
Despite the evidence supporting prescribed fires in the American West, policymakers are slow to put it into practice.
Hatch green chiles are feeling the heatOct 26, 2021
Growers of New Mexico’s iconic crop wrestle with drought, water rights and labor shortages.
The Daring Diplomat Who Proved One Person Can Thwart an EmpireOct 15, 2021
A whistleblower puts his life on the line to defy Soviet aggression. Over sixty years later, this forgotten story of subterfuge, smears and suspicious death has never felt more timely.
The Day Treva Throneberry DisappearedOct 10, 2021
The North Texas teenager went missing in the late eighties. For years, no one knew where she was, or even if she was still alive-no one, that is, except a mysterious young woman two thousand miles away.
The Ship That Became a BombOct 4, 2021
Stranded in Yemen’s war zone, a decaying supertanker has more than a million barrels of oil aboard. If—or when—it explodes or sinks, thousands may die.
Searching for Mr. X - The Atavist MagazineOct 3, 2021
For eight years, a man without a memory lived among strangers at a hospital in Mississippi. But was recovering his identity the happy ending he was looking for?
The Legacy of Colin Kaepernick: On the First High School Team to Take a KneeSep 22, 2021
James A. Garfield High School in Seattle is a place where you can feel the history thrum throughout the hallways. Quincy Jones and Jimi Hendrix were students here. Dr. Martin Luther King Jr. spoke …
When Nazis tried to trace Aryan race myth in TibetSep 19, 2021
Heinrich Himmler sent a team of five Germans to Tibet in 1938 to pursue the Aryan race myth.
The Mystery of People Who Speak Dozens of Languages | The New YorkerSep 18, 2021
What can hyperpolyglots teach the rest of us?
When Wall Street came to coal country: how a big-money gamble scarred AppalSep 14, 2021
The long read: Around the turn of the millennium, hedge fund investors put an audacious bet on coal mining in the US. The bet failed – but it was the workers and the environment that paid the price
The Secret Sisterhood of Offshore Oil WorkersSep 14, 2021
Living on a remote oil platform 60 miles out into the Gulf of Mexico is no easy assignment. Now imagine being one of the first women to ever step on board.
‘Every message was copied to the police’: the inside story of the most daring surveillance sting in historySep 13, 2021
Billed as the most secure phone on the planet, An0m became a viral sensation in the underworld. There was just one problem for anyone using it for criminal means: it was run by the police
Florida nurses feel helpless as so many people die of COVIDSep 10, 2021
On this ward at Morton Plant Hospital, nurses are overwhelmed by the number of new, desperate cases.
Rain Boots, Turning Tides, and the Search for a Missing BoySep 10, 2021
Last year in Nova Scotia, after 3-year-old Dylan Ehler vanished, online sleuths descended on Facebook groups to help find him. Then they lost their way.
The disastrous voyage of Satoshi, the world’s first cryptocurrency cruise sSep 8, 2021
The long read: Last year, three cryptocurrency enthusiasts bought a cruise ship. They named it the Satoshi, and dreamed of starting a floating libertarian utopia. It didn’t work out
The Lost BoysSep 8, 2021
It was the most shocking crime of its day, 27 boys from the same part of town kidnapped, tortured, and killed by an affable neighbor named Dean Corll. Forty years later, it remains one of the least understood—or talked about—chapters in Houston's history.
The Million-Dollar NoseSep 5, 2021
With his stubborn disregard for the hierarchy of wines, Robert Parker, the straight-talking American wine critic, is revolutionizing the industry -- and teaching the French wine establishment some lessons it would rather not learn.
The miracle molecule that could treat brain injuries and boost your fading memorySep 4, 2021
Discovered more than a decade ago, a remarkable compound shows promise in treating everything from Alzheimer’s to brain injuries—and it just might improve your cognitive abilities.
Knives OutbackAug 28, 2021
A man is presumed murdered. In this town of 12, everyone is a possible suspect.
The $2 Billion Mall RatsAug 28, 2021
The inside story of a black sheep hedge fund, a massive bet that shopping malls would crash, and how they proved Wall Street wrong.
The Kingpin of ShanghaiAug 26, 2021
From the depths of poverty, Du Yuesheng rose through Shanghai’s underworld to become one of the most influential, and overlooked, figures in modern China.
“I understand what joy is now”: An MDMA trial participant tells his storyAug 26, 2021
One patient in a pioneering trial describes his “life-changing” experience with the psychoactive drug.
The Real C.E.O. of “Succession”Aug 24, 2021
How the writer Jesse Armstrong keeps the billionaire Roy family trapped in its gilded cage.
Chris and Rich Robinson swore never to speak again. But for the Black Crowes, rock heals all woundsAug 24, 2021
After years apart, the Black Crowes perform at the Forum on Thursday, part of a tour celebrating the 30th anniversary of the group’s breakthrough debut.
Serving Up West Virginia History, Not All of It Sweet (Published 2019)Aug 21, 2021
While big-name chefs take up Appalachian cooking, a farm couple are using old seeds and recipes to tell a more complex story and lift up their region.
The magical day Kobe Bryant became Lord of the Rings at Rucker ParkAug 21, 2021
In 2002, Kobe Bryant's surprise arrival at Harlem's legendary court caused a stir. This is the oral history of what happened when the Lakers great put his streetball cred on the line.
The beautiful world of heavy metalAug 21, 2021
Why does a genre obsessed with death attract the kindest people?
An Oral History of Adam Sandler, Pickup Basketball LegendAug 21, 2021
‘He was just out there drilling long threes in his shades and hitting cutters. It was really incredible.’
Five Books: The best books on Assassinations, recommended by Michael BurleighAug 17, 2021
Best books on assassinations, recommended by historian Michael Burleigh, covering everything from Caesar to JFK, to drone warfare.
At 71, She’s Never Felt Pain or Anxiety. Now Scientists Know Why. (Published 2019)Aug 15, 2021
Scientists discovered a previously unidentified genetic mutation in a Scottish woman. They hope it could lead to the development of new pain treatment.
The Ancient Persian way to keep coolAug 12, 2021
From ancient Egypt to the Persian Empire, an ingenious method of catching the breeze kept people cool for millennia. Now, it could come to our aid once again.
Family, identity and one of the longest manhunts in U.S. historyAug 9, 2021
Fifty years ago, a shooting that nearly killed police officer Daril Cinquanta set in motion a decadeslong chase across the American West
Lifelong Quests! Lawsuits! Feuds! A Super-Serious Story About Cereal.Aug 5, 2021
The world’s most obsessive breakfast-food fans demonstrate just how far humans will go for the sweet taste of nostalgia.
The dangerously cheesy collectible Cheetos marketAug 5, 2021
Dozens of “rare Cheetos,” shaped like everything from Donald Trump to a squirrel, are up for sale on eBay. But who’s buying?
We Asked A Girl Who Collects Every Mosquito She's Killed: Why?Aug 4, 2021
Things got weird when a 19-year-old artist shared her unique hobby online.
Eccentric Food Advertisements Were the Baseball Cards of the Victorian EraAug 4, 2021
Collectors swapped ads featuring pretty pictures, demons, and chefs bursting out of giant pickles.
They Meet Up in Motels Across America…to Trade Old Beer CansAug 4, 2021
Their collections may look like trash to you, but these guys know every can has a story—and some have shockingly high price tags, too.
The man who hunts 'hidden' radioactive objectsAug 4, 2021
Most of us try to avoid radiation, but not Andrew Walker, who collects radioactive objects. The surprising part? These items can be found in a variety of common places.
Flying Dead Bodies Across the Land of the Midnight SunJul 19, 2021
When there’s a murder or mysterious death in remote areas of Alaska, corpses are flown in to the state morgue. This is what it’s like to run that airborne operation.
The Weird History of Hillbilly TV — THE BITTER SOUTHERNERJul 18, 2021
Gabe Bullard takes a long, hard look at the history of hillbilly TV, from Andy Griffith to “Duck Dynasty.”
“The Lottery,” by Shirley JacksonJul 18, 2021
Fiction, from 1948: “The people had done it so many times that they only half listened to the directions; most of them were quiet, wetting their lips, not looking around.”
When the Next Animal Plague Hits, Can This Lab Stop It?Jul 16, 2021
A new federal facility in Kansas will house the deadliest agricultural pathogens in the world—and researchers working tirelessly to contain them.
The Evolution of ThrowingJul 15, 2021
Homo sapiens has a throwing arm that sets it apart. Athletes are helping anthropologists understand this prowess.
Who Killed Cachou the Bear? Murder Mystery in Spain Rattles ConservationistsJul 13, 2021
Conservationists saw the 6-year-old brown bear as a symbol of hope. Villagers saw him as a menace. Then he turned up dead.
The unique culture of Japanese convenience stores - BBC TravelJul 10, 2021
The true star of the Akutagawa Prize-winning novel Convenience Store Woman is the convenience store itself. But what is it that makes these shops so magical?
The Gull Next Door | Hakai MagazineJul 10, 2021
Your obnoxious neighbor or just a misunderstood, displaced seabird?
“The Only Thing I Knew How to Do Was Kill People”: Inside the Rash of UnexpJul 7, 2021
Dozens of people were killed, died by suicide, or went missing from the Texas military base last year alone. What is behind the violence and tragedy at Fort Hood?
Minik and the MeteorJul 3, 2021
Behind the American Museum of Natural History’s most venerable artifact is the shameful tale of a relentless explorer and a young boy’s torturous journey from Greenland to New York.
The Deep Roots of the Vegetable That ‘Took Over the World’Jul 3, 2021
A study digs up the origin of the single species that gives us turnips, bok choy, broccoli rabe, and more.
The Sky ThiefJun 26, 2021
How a goofy, God-fearing airport worker stole a passenger plane from the Seattle-Tacoma Airport and took flight with no plan to land.
The Lazarus heist: How North Korea almost pulled off a billion-dollar hackJun 25, 2021
In 2016 North Korean hackers planned a $1bn raid on Bangladesh's national bank and came within an inch of success. But how did they do it?
Four Stories from the Russian ArcticJun 25, 2021
Evgenia Arbugaeva’s pictures of isolated figures in harsh terrain look recovered from the deep past or icebound legend.
Tomorrow Edition - The Agony and the Ecstasy of Deep Brain Stimulation SurgJun 22, 2021
What deep brain stimulation surgery feels like.
Africa’s ancient scripts counter European ideas of literacy | Aeon EssaysJun 21, 2021
European ideas of African illiteracy are persistent, prejudiced and, as the story of Libyc script shows, entirely wrong
Her Kind Of Blue: Joni Mitchell's Masterpiece At 50Jun 20, 2021
How do we understand Blue in the 21st century? Can we think of Mitchell's 1971 album, long considered the apex of confessional songwriting, as a paradigm not of raw emotion, but of care and craft?
The birthplace of the modern apple - BBC TravelJun 19, 2021
When a Russian scientist identified the Malus sieversii as the progenitor of the domestic apple, harvests in Kazakhstan’s forests were bountiful; now this wild fruit is threatened.
A boy, his brain, and a decades-long medical controversyJun 17, 2021
No one could deny that Timothy was sick. But when doctors can’t agree on the cause of an illness, what happens to the patients trapped in limbo?
Bill Ackman Sent a Text to the CEO of Mastercard. What Happened Next Is a Parable for ESG.Jun 17, 2021
A yearlong campaign to hold major companies accountable for online sexual abuse met with little success — until a New York Times article got a hedge fund manager involved.
Decades After Mysteriously Drowning, Pecos Jane Has a Name – Texas MonthlyJun 14, 2021
The young woman who mysteriously drowned in the Ropers Motel pool in 1966 might have remained anonymous forever, if not for cutting-edge genetics, old-fashioned genealogy—and the kindness of a small West Texas town.
The Mystery at the Heart of Physics That Only Math Can SolveJun 10, 2021
The accelerating effort to understand the mathematics of quantum field theory will have profound consequences for both math and physics.
How to Save an Ancient Language Before It Disappears ForeverJun 10, 2021
For decades, Taiwan’s minority Hakka people were banned from teaching their native language. Now an unlikely coalition of aging academics and millennial radio DJs are doing all they can to keep it alive.
The Mother of All ‘Abandoned’ Airports (2015)Jun 10, 2021
West Berlin's lifeline during the Soviet Blockade, Tempelhof Airport has since become the city’s biggest park. Berliners will fight to keep it that way.
The elephant vanishes: how a circus family went on the runJun 8, 2021
The long read: Dumba has spent her life performing in circuses around Europe, but in recent years animal rights activists have been campaigning to rescue her. When it looked like they might succeed, Dumba and her owners disappeared
It’s All in Your Head review – enduring mystery of psychosomatic illness |Jun 5, 2021
Suzanne O’Sullivan’s excellent book reveals that medicine remains as much an art as a science
An Old Effort To Stop The Smallpox Virus Has Lessons For COVID-19 Today : SJun 4, 2021
In 1721, London was in the grips of a deadly smallpox epidemic. One woman learned how to stop it, but her solution sowed political division.
Meet the Appalachian Apple Hunter Who Rescued 1,000 'Lost' VarietiesJun 4, 2021
Tom Brown's retirement hobby is a godsend for chefs, conservationists, and cider.
Ho Chi Bear and the RavensJun 4, 2021
Dubbed the Ravens, misfit American pilots in Vietnam learned they could fly, fight, and drink as they pleased in a CIA-sponsored secret war. Just one catch: They answered to General Vang Pao.
Narratively | SubstackJun 4, 2021
Discover extraordinary true stories celebrating the diversity of humanity. Click to read Narratively, a Substack publication with tens of thousands of subscribers.
The Snitch - The Atavist MagazineJun 3, 2021
In Scott Kimball, the FBI thought it had found a high-value informant who could help solve big cases. What it got instead was lies, betrayal, and murder.
The World’s Northernmost Town Is Changing DramaticallyJun 3, 2021
Climate change is bringing tourism and tension to Longyearbyen on the Norwegian archipelago of Svalbard.
The Havana JobMay 31, 2021
This is the previously classified story of a Hail Mary plan, a Dirty Dozen crew of lowlifes, and a woman who wouldn’t bow to authority as she fought to bring three captured CIA agents home from Cuba.
What Robots Can—and Can’t—Do for the Old and LonelyMay 31, 2021
For elderly Americans, social isolation is especially perilous. Will machine companions fill the void?
The Death of Hahnemann HospitalMay 31, 2021
When a private-equity firm bought a Philadelphia institution, the most vulnerable patients bore the cost.
How SoundScan Changed Everything We Knew About Popular MusicMay 29, 2021
Thirty years ago, Billboard changed the way it tabulated its charts, turning the industry on its head and making room for genres once considered afterthoughts to explode in the national consciousness
Inside Youth Baseball's Most Notorious Dad-On-Dad RivalryMay 29, 2021
On the Long Island Inferno, two fathers, both with complicated pasts took it all too far. Neither man was ever the same.
Three Family Members, One Business. Robbing Armored Cars.May 27, 2021
A man returns home from the army and gets a surprising offer from his father: Join the family business and help mom & pop pull off a string of daring cross-country heists. No one expects the betrayals coming.
DNA Could Identify Somerton Man Exhumed in Australia - The New York TimesMay 23, 2021
This week the police disinterred a body, found on a beach in 1948, that has puzzled investigators for decades. “There’s lots of twists and turns in this case, and every turn is pretty weird,” one said.
Exclusive: Inside the Military's Secret Undercover ArmyMay 22, 2021
Thousands of soldiers, civilians and contractors operate under false names, on the ground and in cyberspace. A Newsweek investigation of the ever-growing and unregulated world of "signature reduction."
A Hypnotic Look at How Japanese Samurai Swords Are MadeMay 18, 2021
Paper, books, wooden joints, tea whisks — Japanese culture has, for seemingly all of its long recorded history, greatly esteemed the making of objects.
The 60-Year-Old Scientific Screwup That Helped Covid KillMay 18, 2021
All pandemic long, scientists brawled over how the virus spreads. Droplets! No, aerosols! At the heart of the fight was a teensy error with huge consequences.
West Virginia, 1972, Revisited — THE BITTER SOUTHERNERMay 18, 2021
More than two decades after his mother died, Jay Steele unearthed a Tupperware full of his mother’s Kodak photo slides. Her photos revealed a world of mud-stomping, banjo-strumming, red-clay-wandering joy, a world he never knew about until he cracked the lid of her old box.
How clothing and climate change kickstarted agriculture | Aeon EssaysMay 18, 2021
What if the need for fabric, not food, in the face of a changing climate is what first tipped humanity towards agriculture?
Bob and Evelyn’s Seven-Decade DanceMay 17, 2021
In swinging 1940s Hawaii, an eager young sailor courts a trailblazing woman who dreams of joining the Navy herself. The attack on Pearl Harbor upends their lives and solidifies a romance that lasts sixty-seven years.
Cryptoqueen: How this woman scammed the world, then vanished - BBC NewsMay 16, 2021
How did Ruja Ignatova make $4bn selling her fake cryptocurrency to the world - and where did she go?
The Most Honored Photograph | PetaPixelMay 12, 2021
Doesn’t look like much, does it? But, depending upon your definition, this photograph, a team effort by 9 men, is the most honored picture in U. S.
'He knew something': The Bay Area flight of Rangers that vanishedMay 12, 2021
The mission, still a secret to this day, was so dangerous many men bid emotional goodbyes...
The Case Against the EaglesMay 10, 2021
Fifty years after their first release, the country-rock titans led by Don Henley and the late Glenn Frey still loom large in American music. Their hits still get play and their sound is a precursor to modern Nashville. But has this biggest of bands aged well? A panel of experts weigh the case.
Tome Raiders: Solving the Great Book HeistMay 9, 2021
When nearly $3.5M of rare books were stolen in an audacious heist at Feltham in 2017, police wondered, what’s the story?
Two Assholes Lost in the Woods: An Oral History of ‘Pine Barrens’May 9, 2021
Twenty years after it aired, David Chase and Co. look back on one of the wildest, boldest, funniest episodes of ‘The Sopranos’ ever made
‘I’d Never Been Involved in Anything as Secret as This’May 7, 2021
The plan to kill Osama bin Laden—from the spycraft to the assault to its bizarre political backdrop—as told by the people in the room.
The miracle of the commonsMay 5, 2021
Far from being profoundly destructive, we humans have deep capacities for sharing resources with generosity and foresight
Persuading the Body to Regenerate Its LimbsMay 3, 2021
Deer can regrow their antlers, and humans can replace their liver. What else might be possible?
The Story of One Whale Who Tried to Bridge the Linguistic Divide Between AnMay 2, 2021
While captive in a Navy program, a beluga whale named Noc began to mimic human speech. What was behind his attempt to talk to us?
Exclusive Excerpt: An Icy Death at the Bottom of the WorldApr 30, 2021
In the first look at one of the year’s most eagerly anticipated books, Madhouse at the End of the Earth, the author describes a terrifying tragedy that foreshadowed the horrors awaiting a group of turn-of-the-century explorers in uncharted Antarctica.
Fifteen Years ForsakenApr 29, 2021
A true story of castaways on a lost and hostile scrap of land, all thanks to some meddlesome Frenchmen and terrible luck.
Queen of the S.R.O.Apr 29, 2021
In gritty 1980s New York, one West Village flophouse became a last-chance refuge for addicts, criminals, LGBTQ runaways, and anyone with nowhere left to go. And my mom was their queen.
The Blue Hole in the Red Sea Is the Deadliest Dive Site in the WorldApr 28, 2021
It doesn't have the nicest coral formations nor the most fish. But the Blue Hole in the Gulf of Aqaba is a magnet for divers, primarily because of its reputation. Dozens of adventurers have lost their lives here over the years and, when they do, Tarek Omar pulls them back to the surface.
'The Clouds Cleared': What Terminal Lucidity Teaches Us About Life, Death and DementiaApr 28, 2021
Just before Alex Godfrey’s grandmother died from dementia, she snapped back to lucidity and regaled him with stories of her youth. Could moments like this teach us more about the human brain?
The Challenges of Animal TranslationApr 28, 2021
Artificial intelligence may help us decode animalese. But how much will we really be able to understand?
How Maxwell’s Demon Continues to Startle ScientistsApr 27, 2021
The thorny thought experiment has been turned into a real experiment — one that physicists use to probe the physics of information.
The Rise and Fall of a Double Agent | The WalrusApr 26, 2021
Cameron Ortis was an RCMP officer privy to the inner workings of Canada's national security—and in a prime position to exploit them
The Unlikely Success of Fish Sticks | Hakai MagazineApr 26, 2021
From unappetizing “fishbricks” to cultural darlings, the 1950s convenience food has enjoyed a winning streak—no less so than during the COVID-19 pandemic.
In the Tales Told by Sewage, Public Health and Privacy CollideApr 26, 2021
Sewage epidemiology has been embraced in other countries for decades, but not in the U.S. Will Covid change that?
The girl in the Kent State photo and the lifelong burden of being a national symbolApr 24, 2021
In 1970, an image of a dead protester at Kent State became iconic. But what happened to the 14-year-old kneeling next to him?
This Basketball Season Is Missing One Thing: PrinceApr 24, 2021
Five years after his death, let's remember one of the most unique talents ever to be drawn to the game
The Cold War Over Hacking McDonald’s Ice Cream MachinesApr 23, 2021
Secret codes. Legal threats. Betrayal. How one couple built a device to fix McDonald’s notoriously broken soft-serve machines—and how the fast-food giant froze them out.
HathiApr 23, 2021
Millions suffered through terror and upheaval in the turbulent years following the Soviet occupation of Afghanistan. One of them was a baby elephant from India — A new story from India to the world, each week on FiftyTwo.in
The guards caring for Chernobyl's abandoned dogs - BBC FutureApr 23, 2021
The descendants of pets abandoned by those fleeing the Chernobyl disaster are now striking up a curious relationship with humans charged with guarding the contaminated area.
Tardigrades: Nature's Great SurvivorsApr 22, 2021
The microscopic animals can withstand extreme conditions that would kill humans, and may one day help in the development of Covid vaccines. How do they do it?
How Did a Self-Taught Linguist Come to Own an Indigenous Language?Apr 18, 2021
The Penobscot language was spoken by almost no one when Frank Siebert set about trying to preserve it. The people of Indian Island are still reckoning with his legacy.
A 23-Year-Old Coder Kept QAnon and the Far Right Online When No One Else WouldApr 18, 2021
Nick Lim provides tech support to the U.S. networks of White nationalists and conspiracy theorists banned by the likes of Amazon.
The Low-Key Carter-Era Pleasures of “The Muppet Show”Apr 17, 2021
On the original show, which is now streaming for the first time on Disney+, bits of fabric and glue and yarn become complexly real.
The Great Cottonmouth-Catching Get-Rich-Quick Scheme of 1956Apr 16, 2021
As a reptile-obsessed teen, I ran away to hunt lizards in the Everglades, then hatched a plan to milk venom from deadly snakes. It went even more comically wrong than you're thinking.
The John Patterson Kidnapping in Mexico - The AtlanticApr 16, 2021
In 1974, John Patterson was abducted by the People’s Liberation Army of Mexico—a group no one had heard of before. The kidnappers wanted $500,000, and insisted that Patterson’s wife deliver the ransom.
Out of thin air: the mystery of the man who fell from the sky | Air transpoApr 16, 2021
The long read: In 2019, the body of a man fell from a passenger plane into a garden in south London. Who was he?
Hiking the Mountain Trails Less Traveled in Colorado – Texas MonthlyApr 16, 2021
The hills are alive with socially distant adventures.
Inside the Thrilling, Slightly Terrifying World of Austrian Hut-to-Hut HikingApr 16, 2021
Up, up, and away!
The Real Book - 99% InvisibleApr 12, 2021
Since the mid-1970s, almost every jazz musician has owned a copy of the same book. It has a peach-colored cover, a chunky, 1970s-style logo, and a black plastic binding. It’s delightfully homemade-looking—like it was printed by a bunch of teenagers at a Kinkos. And inside is the sheet music for hundreds of common jazz tunes—also
Why Animals Don’t Get LostApr 4, 2021
Birds do it. Bees do it. Learning about the astounding navigational feats of wild creatures can teach us a lot about where we’re going.
Death of a (Really Good) SalesmanApr 3, 2021
He was a powerful executive at some of the best-known companies in the world. Then he started robbing banks. The meteoric rise and…
The Amazing Aviatrix of Wartime CasablancaApr 2, 2021
A daring teenage girl defies authority to become Morocco’s first female pilot and the hero of a young nation—then the victim of an assassination still shrouded in mystery.
Lawsuits, secret taping and the unraveling of a powerhouse high school football programMar 30, 2021
Valdosta might be a 24-time state football champ, but lately its program has been rocked by a racial discrimination lawsuit filed by a former coach, the hiring of controversial coach Rush Propst and a secret recording that alleged cheating by SEC powers.
Inside America’s Most Interesting Magazine, and Media’s Oddest WorkplaceMar 30, 2021
The publication of the “Harper’s letter” attracted huge attention. Most people had stopped reading the magazine, which is stranger and better than you might expect.
Harriet Cole’s Mysterious Identity Still Stumps HistoriansMar 29, 2021
Whose body was harvested to create a spectacular anatomical specimen, and did that person know they would be on display more than a century later?
Conscripted Into The Emperor’s Private OrchestraMar 28, 2021
What does a crew of talented musicians do when forced to serve at the pleasure of a notoriously cruel dictator? They play like their lives depend on it.
Did the Black Death Rampage Across the World a Century Earlier Than Previously Thought?Mar 27, 2021
Scholar Monica Green combined the science of genetics with the study of old texts to reach a new hypothesis about the plague
What It’s Really Like When a Prison ‘Lifer’ Gets a New Shot at LifeMar 27, 2021
Ricardo Sapienza served 25 years for a crime he swears he didn’t commit. But his hardest challenge began the day the parole board finally said “yes.”
The Spy of Night and Fog (2020)Mar 26, 2021
Noor Khan, a pacifist descendant of Indian Royalty became a famed World War II spy for Britain’s Special Operations Executive.
The Lost Prince of Yacht RockMar 25, 2021
In 1978 he was music’s next big thing. Then his album bombed, he began a long slide into obscurity, and a bizarre fraud sent him to prison. Will Dane Donohue finally get his encore?
Spilling SecretsMar 23, 2021
A bartender opens up about what it’s really like to spend your nights as a therapist/wingman/entertainer/best friend for an entire roomful of inebriated New Yorkers.
Why Extraterrestrial Life May Not Seem Entirely AlienMar 22, 2021
The zoologist Arik Kershenbaum argues that because some evolutionary challenges are truly universal, life throughout the cosmos may share certain features.
Mark Carney: ‘I didn’t want the Bank of England job. But I was asked to fix something’Mar 20, 2021
He earned a fortune at Goldman Sachs, but now the banker wants the financial sector to reassess its values and tackle the climate emergency
The fabric no one knows how to makeMar 20, 2021
Nearly 200 years ago, Dhaka muslin was the most valuable fabric on the planet. Then it was lost altogether. How did this happen? And can we bring it back?
The Wolf That Discovered CaliforniaMar 20, 2021
Nearly a century after the last wolf was eradicated in the state, a lone female arrived and established a pack. Not everyone is cheering
How Freddie Gibbs Beat the Odds to Reach the MountaintopMar 19, 2021
After a turbulent decade, the Gary, Indiana, native has cemented himself as one of the greatest rappers of his—or any—generation. And on Sunday, he’s up for a Grammy award.
The art dealer, the £10m Benin Bronze and the HolocaustMar 19, 2021
Western museums are under pressure to return looted treasure, but what of those in private collections?
Brackets, Buzzer Beaters and Burning Jockstraps: For Indiana, Hosting March Madness Renews an Epic Tradition of Hoosier HysteriaMar 19, 2021
Indiana is set to host a Big Dance unlike any other, evoking the madness—from buzzer beaters to bourbon-soaked basketball—of the state's fabled high school tournament.
What I Learned from Doing 100 Wheelies a DayMar 16, 2021
In her quest to master a quintessential cool-kid trick, Outside contributor Kim Cross found the sweet spot at the crossroads of work and play
Tuna’s Last Stand | Hakai MagazineMar 14, 2021
Skipjack are the world’s most abundant tuna. They’re resilient, but can they outswim our demand for this pantry staple?
https://www.sierraclub.org/sierra/2021-2-march-april/feature/demise-and-potential-revival-american-chestnutMar 13, 2021
How Hank the Cowdog Made John R. Erickson the King of the Canine CanonMar 12, 2021
He wanted to become a serious literary novelist, like Faulkner or Hemingway. Fortunately for millions of Hank the Cowdog fans, he failed.
The Audacious Tabloid Couple Who Scammed Their Way Into New York’s High SocMar 11, 2021
The vaudeville dancer and his beguiling Parisian wife arrived in Manhattan in 1911 with secret identities in tow. They enjoyed wealth and notoriety for years—until it all came crashing down.
The Row’s Beige AmbitionMar 9, 2021
Mary-Kate and Ashley Olsen grew up to make New York’s most desirable clothes. But can even perfection survive the pandemic?
How to Build an Artificial HeartMar 5, 2021
Millions of hearts fail each year. Why can’t we replace them?
The 25 Greatest Art Heists of All TimeMar 3, 2021
What are the greatest art heists of all time? See a list of the 25 most memorable thefts from museums.
The Once-Classified Tale of Juanita Moody: The Woman Who Helped Avert a Nuclear WarFeb 28, 2021
America’s bold response to the Soviet Union depended on an unknown spy agency operative whose story can at last be told
50 Great Classic Novels Under 200 PagesFeb 21, 2021
We are now past the mid-way point in February, which is technically the shortest month, but is also the one that—for me, anyway—feels the longest. Especially this year, for all of the reasons that …
Sitting Atop the World, Sketching the Faces of the DeadFeb 20, 2021
The author, a former soldier, reflects on his experiences helping build the top secret Karakoram Highway between China and Pakistan in the late 1970s.
Huntsville stationFeb 18, 2021
‘It’s a trip just being out’: at the local Greyhound bus station with newly released men from the Texas State Penitentiary
The Extraordinary Trial of the Child Soldier Who Became a Brutal Rebel CommFeb 18, 2021
Kidnapped at 9 by Joseph Kony’s notorious guerilla army, Dominic Ongwen was groomed to kill. Is he a lost soul deserving of mercy, or a cold-blooded war criminal who must face justice?
On Hustles - The Paris ReviewFeb 12, 2021
For all of its other moving parts, ‘White Men Can’t Jump’ relies on teasing out the part of a hustle that I am most fascinated by in real life.
All Personal FeedsFeb 9, 2021
Iga Swiatek of Poland came out of nowhere to win the French Open in October. A sports psychologist was with her all the way.
The Original KarenFeb 9, 2021
After Kenya declared independence from British rule in 1963, there came a flood of renamings. Schools, suburbs, and roads were rechristened in ways that spoke to a new idea of what it meant to be…
Hawkeye Elegy: A collision of pandemic, disaster, and polarization in the heartlandFeb 9, 2021
Last summer a monster storm tore across Iowa, leaving billions of dollars damage in its wake. It was a brutal blow to an economy already reeling from a deadly pandemic and a state divided by politics like never before.
The Accident on the Pacific Crest TrailFeb 7, 2021
The Pacific Crest Trail is as dangerous as it is beautiful. This is the story of one young hiker who never made it home.
There Is No Chinese ‘Debt Trap’Feb 6, 2021
The narrative wrongfully portrays both Beijing and the developing countries it deals with.
ReadingFeb 4, 2021
These are the things that have inspired me the most or changed the way I live. You can find what I'm reading now on Goodreads [https://goodreads.com/austenallred]. Memos/Articles/Blogs * Amazon Shareholder Letters [https://drive.google.com/file/d/1SpgDsIpC_cAS0O4cBz4Sb_GJcEIBhUtA/view?usp=sharing] * Berkshire Hathaway Shareholder
Two Elderly Sisters in Lifelong Isolation in IndiaFeb 3, 2021
The photographer Debsuddha documents the indignities suffered by his albino aunts in Kolkata, and how their world became even smaller in coronavirus lockdown.
The Century-Old Neon Sign Tearing Up LA ConservationistsJan 31, 2021
After hiding just out of frame for decades, an exceptionally rare and remarkable Depression-era neon sign was discovered outside of Los Angeles. Then the past came rushing back.
List of Logical Fallacies with ExamplesJan 30, 2021
A comprehensive list of logical fallacies, with definitions, explanations, and examples that are easy-to-understand.
The mind-blowing secret of the Armenian alphabet - PeopleOfArJan 30, 2021
The Armenian alphabet is a true masterpiece of its era and knows many secrets. However, there is one in particular that still blows my mind. As some people know the Armenian alphabet was (re)invented in 405 AD by the Armenian linguist and theologian Mesrop Mashtots with the help of the patriarch Sahak Partev and the […]
The Long History of Japan’s Tidying UpJan 30, 2021
Marie Kondo is just the current manifestation of a tradition of cleaning.
Lunik: Inside the CIA’s audacious plot to steal a Soviet satelliteJan 29, 2021
How a team of spies in Mexico got their hands on Russia's space secrets—and tried to change the course of the Cold War.
The Sultan of SpatterJan 28, 2021
Dr. Donald Johnson has spent his career making crime scene blood stains spill their secrets. His next mission: bringing forensic science into the iPad age.
How the Most Hyped U.S. Oil Merger in a Decade Went BustJan 27, 2021
As CEO of Occidental Petroleum, Vicki Hollub made the biggest deal the oil business had seen in years. Will it also go down as the biggest failure?
How to be a geniusJan 26, 2021
I travelled the world and trawled the archive to unearth the hidden lessons from history’s most brilliant people
C’est Si Bon: Eartha Kitt’s Transformative LifeJan 22, 2021
Kitt’s 1989 autobiography, “Confessions of a Sex Kitten,” tracks an icon’s incredible journey from abused child to outspoken star.
Palantir’s God’s-Eye View of AfghanistanJan 22, 2021
The company’s software can sift through enormous amounts of data, and those metrics can be used to make life-or-death decisions.
This ‘hillbilly madman’ is country music royalty. So why haven’t you heardJan 22, 2021
The hard life and overlooked brilliance of Zane Campbell.
Neil Peart: Rush Drummer's Bold Life and Brave Final Years - Rolling StoneJan 20, 2021
For the first time since the passing of Rush's drum god, Neil Peart, Geddy Lee and Alex Lifeson speak about his legacy.
WHERE IS BUM FARTOJan 19, 2021
In Sept. 9, 1975, William Osterhoudt, a local school principal, looked out at an implausible scene unfolding at the pink house belonging to his neighbor on United Street. Key West Fire Chief Joseph…
What Do Wall Street Leaders Think Is the Next Big Risk?Jan 19, 2021
We asked three executives who’ve spent their careers on the cutting edge of the financial industry what they see coming in 5 to 10 years. Here are their answers.
How to Go From Working in a Steel Mill to Being the Highest Paid Actor on TVJan 16, 2021
Ed O’Neill made his career during the era when networks dominated TV, starring in “Married... With Children” and “Modern Family.” He also gives a stunning performance in the recently released film “The Last Shift,” a new comedy about working-class life. He opens up to Wealthsimple about earning $300 a week in a steel mill in Youngstown and getting a $3-million bonus in Hollywood.
The CatchJan 14, 2021
The rescue in July of two children from a burning apartment in Grenoble, southern France, captivated the world. For the first time six of the seven men injured in the rescue explain what happened in those critical moments.
Ted Danson Was Never Sam Malone. That’s Why He Was Such a Great Sam Malone.Jan 13, 2021
Although ‘Cheers’ made the actor a star, he always swore he had a tough time getting comfortable playing the womanizing character. But the humanity he brought to Sam has informed his career and his life ever since.
Keeping Watch Over Seabirds at the World’s Edge | Hakai MagazineJan 10, 2021
In Alaska, one of the longest-running and most comprehensive seabird monitoring projects is equal parts tedium, adventure, truth, and beauty.
The Lost History of YellowstoneJan 8, 2021
Debunking the myth that the great national park was a wilderness untouched by humans
The Last Two Northern White Rhinos On Earth - The New York TimesJan 7, 2021
What will we lose when Najin and Fatu die?
Perspective | My two weeks with John le Carré: What I learned about writing, fame and grace when I showed him around Miami in 1991.Jan 6, 2021
He wanted to learn about the Miami drug world and had been told I could help.
The Poke ParadoxJan 2, 2021
Where culinary bliss meets environmental peril, and how to solve America’s poke problem.
When COVID hit, a Colorado county kicked out second-home owners. They hit bJan 2, 2021
How a group of nonresident homeowners tried to influence a rural Colorado election.
In this rapaciously dry year, a quiet question grows louder: What are we doJan 2, 2021
Drought, dread and family in the American Southwest.
Dr. Death: The Shocking Story of Christopher Duntsch, a Madman with a ScalpJan 2, 2021
Plano surgeon Christopher Duntsch left a trail of bodies. The shocking story of a madman with a scalpel.
Russian Off-Roaders Crossed 2,000 Miles of Siberia to Reach One Of The MostJan 1, 2021
Oh, you hit the fire road again with your lifted Wrangler? Cute.
The Golden Guide to Hallucinogenic Plants: Discover the 1977 Illustrated GuJan 1, 2021
I mean, the idea that you would give a psychedelic—in this case, magic mushrooms or the chemical called psilocybin that's derived from magic mushrooms—to people dying of cancer, people with terminal diagnoses, to help them deal with their - what's called existential distress.
The Squid Hunter | The New YorkerJan 1, 2021
The giant squid has taken on a near-mythical status for generations of sailors, explorers, and writers. How could something so big remain unseen—or be less understood than dinosaurs?
Herschel, the Very Hungry Sea Lion | Hakai MagazineDec 30, 2020
It’s dangerous to blame the decline of one species on a single predator. We humans like to do it anyway.
The Plague Year | The New YorkerDec 29, 2020
The mistakes and the struggles behind America’s coronavirus tragedy.
Raiders of the lost steelDec 29, 2020
The skills behind the legendary sharpness of wootz steel were once forgotten, but Andy Extance talks to the researchers unsheathing its secrets
Reading, That Strange and Uniquely Human ThingDec 28, 2020
How we evolved to read is a story of one creative species.
Pugilism on the PlainsDec 28, 2020
How a booming oil town aimed to become a western metropolis through one of the most ill-conceived boxing matches of all time.
The Tasting Menu at the End of the WorldDec 26, 2020
Sonoma County’s SingleThread has been hailed as the apotheosis of high-end, farm-to-table dining. The perpetual threat of wildfires and once-in-a-generation flooding also make it a case study in the challenges that climate change will soon pose to restaurants everywhere.
The Proving Grounds: Charley Crockett and the Story of Deep Ellum - LongreadsDec 26, 2020
Generations of musicians got their start busking the streets of the Deep Ellum neighborhood of Dallas, Texas. After a decade of 'hobo-ing' around cities like New Orleans, Paris, and New York, Charley Crockett discovered it was his turn.
The Curious Cons of the Man Who Wouldn’t Die | GQDec 26, 2020
When Mark Olmsted contracted HIV, in the early 1980s, he figured the disease was a death sentence. And so he hatched a scheme to live out his last years in style—swiping credit cards, bilking insurance companies, even faking his own death. What’s the problem with some forgery, fraud, and crystal meth if you’ll soon be gone? A better question might have been: What the hell happens if you survive?
A family with no fingerprintsDec 26, 2020
A family in Bangladesh struggles with an extremely rare genetic condition, "immigration delay disease".
The Mystery of Mistletoe’s Missing GenesDec 26, 2020
Mistletoes have all but shut down the powerhouses of their cells. Scientists are still trying to understand the plants’ unorthodox survival strategy.
Louisiana’s Disappearing Coast | The New YorkerDec 26, 2020
The state loses a football field’s worth of land every hour and a half. Now engineers are in a race to prevent it from sinking into oblivion.
The World’s Cheapest Hospital Has to Get Even Cheaper - BloombergDec 26, 2020
Cancer surgery for $700, a heart bypass for $2,000. Pretty good, but under India’s new health-care system, it’s not good enough.
John Franzese ratted out his Colombo crime family father – then disappearedDec 26, 2020
John Franzese Jr. helped send his father, notorious Colombo family mobster Sonny Franzese, to prison. Then he turned up in Indianapolis.
How To Lose Everything And Get Some Of It BackDec 26, 2020
The hunt to find Dorothy’s stolen ruby slippers from ‘The Wizard of Oz’ - TDec 26, 2020
How a big crime in a small town produced a whodunit as gripping and colorful as “The Wizard of Oz” itself.
‘None of this happened the way you think it did’ — High Country News – KnowDec 26, 2020
For years, the clients of a Colorado funeral home kept their loved ones’ cremated remains. Then the FBI called.
How SoulCycle lost its soulDec 26, 2020
The boutique fitness phenomenon sold exclusivity with a smile, until a toxic atmosphere and a push for growth brought the whole thing down.
The Year in PhysicsDec 26, 2020
Featuring paradoxical black holes, room-temperature superconductors and a new escape from the prison of time.
Ads Don’t Work That Way | Melting AsphaltDec 26, 2020
Gravity, Gizmos, and a Grand Theory of Interstellar Travel | WIREDDec 26, 2020
For decades, Jim Woodward dreamed of a propellantless engine to take humans to the stars. Now he thinks he’s got it. But is it revolutionary—or illusory?
Why Iceland’s Christmas Witch Is Much Cooler (and Scarier) Than KrampusDec 24, 2020
With roots dating back to the 13th century, Grýla is not to be messed with.
In a Pandemic Fairy Tale, a Garden Leads to a Magical Friendship (Published 2020)Dec 24, 2020
A 4-year-old girl coping with the loneliness of the pandemic created a tiny garden, and kindled an unlikely friendship with an enchanted neighbor who moved into her tree.
"If it Hadn't Been for the Prompt Work of the Medics": FSB Officer Inadvertently Confesses Murder Plot to Navalny - bellingcatDec 21, 2020
Bellingcat and its partners reported that Russia’s Federal Security Service (FSB) was implicated in the near-fatal nerve-agent poisoning of Alexey Navalny on 20 August 2020. The report identified eight clandestine operatives with medical and chemical/biological warfare expertise working under the guise of the FSB’s Criminalistics Institute who had tailed Alexey Navalny on more than 30 […]
The Fall Of Mic Was A Warning | HuffPostDec 21, 2020
"I don’t need a pair of Nikes. I need a 401(k)" -- and other lessons from the death of a venture-backed, Facebook-dependent, millennial-focused news site.
Leaving the Grace of This WorldDec 18, 2020
More than 17 years ago, a successful Michigan attorney took his life on a cherished trout stream, devastating close friends and family. Haunted by what happened, his nephew investigated and discovered tragic truths that were in plain sight all along.
The Obsessive Life and Mysterious Death of the Fisherman Who Discovered TheDec 10, 2020
A humble Scotsman saw something strange in the water—and daringly set out to catch it—only to have lecherous out-of-towners steal his fame and upend his quest.
A Chain Cut Through a Capsized Cargo Ship Filled W' Cars: Process Is FascinDec 10, 2020
Workers used a chain to cut off the first enormous chunk of ship, revealing mangled cars within. Here’s a look at the fascinating way the team pulled this off.
Thirty-six Thousand Feet Under the SeaDec 6, 2020
The explorers who set one of the last meaningful records on earth.
What It Takes to Be a Short-Order Cook in Las VegasNov 27, 2020
Burkhard Bilger’s 2005 piece on the short-order cooks at the Flamingo hotel, who crack well over a million eggs a year, in a city built by breakfast specials.
How an intimate burial can make death human-sizedNov 17, 2020
In burying a stranger, a writer learns that dying can be as small and personal as life.
The History of Creepy DollsNov 14, 2020
Take a trip to the uncanny valley and hope you make it back unscathed.
An Atlas of the Cosmos - LongreadsNov 5, 2020
We’ve mapped Mars, the Moon, the solar system, even our own galaxy. Which means there is only one thing left to understand in this symbolic way and that is the entirety of the cosmos.
No Pulse: How Doctors Reinvented The Human HeartNov 5, 2020
This 10,000-rpm, no-pulse artificial heart doesn’t resemble an organic heart—and might be all the better for it.
Shelved: Pink Floyd's Household Objects - LongreadsNov 3, 2020
On Syd Barrett's time with Pink Floyd and making an album with household objects and found sounds.
Secret Knowledge—or a Hoax? | Eamon DuffyOct 20, 2020
When Umberto Eco, the semiologist, medievalist, and author of the best-selling medieval puzzle-novel The Name of the Rose, lectured at Yale to celebrate the Beinecke Library’s fiftieth anniversary, the only one of its many treasures he asked to see was the Voynich manuscript.
What My Sled Dogs Taught Me About Planning for the Unknown (Published 2020)Oct 20, 2020
Working with them in the wilderness means negotiating countless shifting variables. Sounds a lot like the world we’re living in.
The Man Who Refused to SpySep 15, 2020
The F.B.I. tried to recruit an Iranian scientist as an informant. When he balked, the payback was brutal.
BBC - Travel - This desolate English path has killed more than 100 peopleSep 9, 2020
The Broomway is known as the most perilous path in Britain – and is a favourite walk of writer Robert Macfarlane, who describes it in this adaptation from his book The Old Ways.
The Wildest Insurance Fraud Scheme Texas Has Ever SeenAug 25, 2020
Theodore Robert Wright III carried out one of the boldest insurance fraud schemes Texas has ever seen. That was only the half of it.
The jaw-dropping story behind an NFL coach's search for his familyAug 21, 2020
Kansas City Chiefs running backs coach Deland McCullough went searching for his biological parents. He found them where he never would have expected.
How a White Lie Gave Japan KFC for ChristmasAug 19, 2020
One cunning business maneuver created a tradition and saved a franchise.
Searching for Misha: The Life and Tragedies of the World’s Most Famous Polar BearAug 18, 2020
Both I and my research have been deeply affected by a polar bear I have never met face to face.
How the Library of Congress Unrolled a 2,000-Year-Old Buddhist ScrollAug 13, 2020
“It was the most fragile object we have ever encountered.”
On the Midway With the Carnival Game Investigators Out to Protect Your Summer FunAug 10, 2020
Step right up!
Electric Crypto Balkan Acid Test | Alexander ClappAug 10, 2020
After decades of conflict in North Kosovo, all it’s taken for Serb and Albanian politicians to put aside their resentments is the get-rich-quick prospect of cryptomining.
Too Clever By Half - Epsilon TheoryAug 10, 2020
The inevitable result of financial innovation gone awry, which it ALWAYS does, is that it ALWAYS ends up empowering the State. When too clever by
Unraveling the mystery of a stolen ceremonial shield - High Country NewsAug 6, 2020
How a sacred object from the Pueblo of Acoma turned up at a Paris auction house, and how the tribe fought for its return.
Buster Keaton’s Last StandAug 3, 2020
Production for The General involved guns, bombs, fires, and the blowing up of a bridge in a tiny Oregon town.
The Misplaced Wallet and The Year of Delightful DeceptionAug 2, 2020
A college student’s lost-and-then-found wallet leads to a theatrical treasure hunt complete with hollowed-out library books, a disappearing magician, and an unforgettable year of campy one-upmanship.
Cryin’, Dyin’, or Goin’ Somewhere: A Country Music Reading ListJul 30, 2020
Although the sound of the music has changed, country’s themes have endured.
A Border Town Built for ViceJul 29, 2020
Along the murky border of China and Myanmar is a no-man’s-land where prostitution is unchecked, gambling is rampant, and the tiger bone wine flows freely.
If language began in the hands, why did it ever leave? | Aeon EssaysJul 25, 2020
If language began with gestures around a campfire and secret signals on hunts, why did speech come to dominate communication?
The Valley of the Cheese of the DeadJul 24, 2020
In this remote Swiss town, residents spent a lifetime aging a wheel for their own funeral.
Exclusive: How Carlos Ghosn Escaped Japan, According to the Ex-Green Beret Who Snuck Him OutJul 24, 2020
When the auto king fled house arrest, he captivated the world. Now, the guy who helped him is in jail—and never got paid a dime.
A Monk’s Life in Turmoil in TibetJul 24, 2020
Dongtuk’s home town was known for self-immolations. How would he choose to live?
7 Weeks, 11,000 Miles, and 2 Tiny Cars: Tales from the Mongol RallyJul 23, 2020
These people drove from the U.K. to Siberia—and you can, too.
“This Was Abuse”: The Fall of a CBS ShowrunnerJul 23, 2020
Earlier this month, CBS fired Peter Lenkov, who’d overseen a powerful fiefdom. V.F. spoke to 30 sources about what happens when a network gives somebody a difficult job, then seems to let problems pile up for years because he’s making it money.
How to Make Sense of an Undrowned TownJul 23, 2020
Residents of Celles in France were evicted so their village could be flooded. Then, it wasn’t.
How viruses evolveJul 22, 2020
Pathogens that switch to a new host species have some adapting to do. How does that affect the course of a pandemic like Covid-19?
California’s Lone Wolf PackJul 22, 2020
Fourteen animals near Mount Lassen are the best hope for the reestablishment of this misunderstood species.
Alone in the Wilderness, Again and AgainJul 22, 2020
Dick Proenneke has achieved something mythical: he seems happy.
Under WrapsJul 21, 2020
Bored with baseball cards and baubles, Jason Liebig turned to collecting vintage candy wrappers—and his Astoria apartment now houses some 10,000 of them.
The Guy Who Wouldn't Write a Hit: An Interview with David Simon | Claudia DreifusJul 19, 2020
Claudia Dreifus: You are sometimes called “the Balzac of Baltimore.” What’s your take on the title? David Simon: When people say that, I go, “Did you just call me a ball sac?” I usually goof on that. I haven’t read all of Balzac. I keep slicing up society, taking a different slice each time, thinking, eventually I’ll have a cake. That’s Balzac. That’s what he did. What I never do is raise my hand and say, “This could be a hit. Make this because this could be a hit.” The minute I do that, I’m done as me.
How a Single Mom Created a Plastic Food-Storage EmpireJul 18, 2020
The story of Tupperware™ is one of innovation and reinvention: a new kind of plastic, made from industrial waste, became a symbol of female empowerment.
How Ultra-Black Fish Disappear in the Deepest SeasJul 17, 2020
Researchers have found fish that absorb more than 99.9 percent of the light that hits their skin.
The Smell of AmericaJul 16, 2020
When an Italian patriarch crosses the Atlantic, the family he left behind clings tight to the enticing promise of New York.
The Donkey Farmer’s Magical Matchmaking BookJul 16, 2020
In the era of online dating, one septuagenarian Irishman clings tight to a method passed down through the generations—and thousands of happy couples are luckier for it.
Coronavirus Conversations With One of America’s Richest MenJul 16, 2020
How a pandemic unfolds when you’re a Wall Street billionaire.
Bob and Evelyn’s Seven-Decade DanceJul 15, 2020
In swinging 1940s Hawaii, an eager young sailor courts a trailblazing woman who dreams of joining the Navy herself. The attack on Pearl Harbor upends their lives and solidifies a romance that lasts 67 years.
Highway Through HellJul 15, 2020
The human-smuggling route across the Sahara may have been the deadliest on Earth. Then the EU paid off Niger’s army to shut it down — and made it even more treacherous.
A California Type Foundry Is Keeping Vintage Printing AliveJul 15, 2020
“It’s a really neat feeling to help people be able to print from hot metal.”
The Kung Fu Nuns Of KathmanduJul 15, 2020
They call themselves the "fearless ones." They've built a reputation not just for their martial arts prowess but for teaching girls to stand up for their rights. And they love watching horror movies.
The Man Who Went to War With CanadaJul 15, 2020
For centuries, the United States and Canada’s only remaining land border dispute has been kept alive by a single family.
A Bizarre 1970 Arctic Killing Offers a Road Map for How Not to Deal With MuJul 15, 2020
Murder will happen in outer space. This 50-year-old death on a now-melted chunk of ice shows how complicated it will get.
The Dangerous Undersea Search for Missing Military HeroesJul 13, 2020
From the English Channel to the Pacific, one band of volunteer divers look for the remains of American M.I.A.s. I joined and discovered this mission can be perilous — even deadly.
The Political Education of Killer MikeJul 11, 2020
How Michael Render—a rapper from Atlanta who also happens to be a Second Amendment–loving, Bernie Sanders–boosting, unapologetically pro-Black businessman—became one of the loudest and most original political voices in the country.
An Icy Conquest | Susan DunnJul 11, 2020
“We are starved! We are starved!” the sixty skeletal members of the English colony of Jamestown cried out in desperation as two ships arrived with provisions in June 1610. They suffered from exhaustion, starvation, and malnutrition as well as from a strange sickness that “caused all our skinns to peele off, from head to foote, as if we had beene flayed.” During those pitiless months of “starving time” they turned to eating dogs, cats, rats, mice, venomous snakes, and other famine foods: mushrooms, toadstools, “or what els we founde growing upon the grounde that would fill either mouth or belly.”
From cow to customer, a $20 cheeseburger’s tumultuous journey during a pandemicJul 11, 2020
A cash-strapped rancher, a virus-stricken meatpacker, an underpaid chef, a hungry engineer: All their lives have been upended
On Knowing the Winged Whale | Hakai MagazineJul 10, 2020
Humpbacks are some of the most watched whales in the world, and yet so much of their lives remains a mystery.
Unlucky Charms: The Rise and Fall of Billion-Dollar Jewelry Empire Alex and AniJul 10, 2020
Astrology, private equity, a $1.1 billion gender discrimination lawsuit, and a precariously built bangle behemoth
How Cars and Hygiene Killed the Middle-Class Hat | by Hanna Brooks Olsen |Jul 10, 2020
Don’t blame JFK
The Not-So-Simple LifeJul 3, 2020
The farm-to-table frenzy has thousands of urbanites trading in their desks for the idylls of agriculture. But one eager young couple learns the hard way that organic utopia is easier dreamed than achieved.
The Stranger-Than-Fiction Secret History of Prog-Rock Icon Rick WakemanJul 3, 2020
The Yes keyboardist defined Spinal Tap–esque excess, until he staked everything on his eccentric dream of an Arthurian rock opera on ice. Now, the tale of his epic spiral and long, slow comeback can finally be told.
The Wondrous Lives of Julius ShapiroJun 27, 2020
He was a Lower East Side gangster, wartime chemical researcher and secretive color television pioneer. An inquisitive daughter wants the full story, but he would rather drink his coffee and read his book in peace.
Blast From the PastJun 23, 2020
40 years ago, a U.S. satellite detected the telltale signs of a nuclear explosion. An analysis of the evidence today points to a clandestine nuclear test, a Carter administration cover-up, and only one country that was willing and able to carry it out: Israel.
Why Gravity Is Not Like the Other ForcesJun 17, 2020
We asked four physicists why gravity stands out among the forces of nature. We got four different answers.
The White Man in That PhotoJun 13, 2020
Riccardo Gazzaniga | Sometimes photographs deceive. Take this one, for example. It represents John Carlos and Tommie Smith’s rebellious gesture the day they won medals for the 200 meters at the 1968 Summer Olympics in...
The Rise of the Cyber-MercenariesJun 12, 2020
What happens when private firms have cyberweapons as powerful as those owned by governments?
Sort By ControversialJun 10, 2020
[Epistemic status: fiction] Thanks for letting me put my story on your blog. Mainstream media is crap and no one would have believed me anyway. This starts in September 2017. I was working for a sm…
Leonard Cohen: Remembering the Life and Legacy of the Poet of BrokennessJun 10, 2020
We look back on the many chapters of Leonard Cohen's long, remarkable life, from teenage poet to midlife monk and beyond.
The Boogaloo Movement Is Not What You Think - bellingcatJun 3, 2020
Translations:English (UK)Русский (Россия)On May 26th, crowds gathered in Minneapolis, Minnesota, to protest the death of 46-year-old George Floyd at the hands of the city’s police department. Floyd was black. Many of the protesters were people of color. The department fired four policemen that same day, after footage emerged appearing to show Floyd being strangled by […]
The WitnessJun 1, 2020
For more than a decade, Michelle Lyons’s job required her to watch condemned criminals be put to death. After 278 executions, she won't ever be the same.
The Remaking of Steve BuscemiMay 28, 2020
In a rare interview, Hollywood's most beloved misfit opens up about anxiety, loss, and the hard work of getting through it all.
The Drug RunnersMay 25, 2020
The Tarahumara, of Mexico’s Sierra Madre mountains, are the world’s greatest ultramarathoners. But in recent years, their legendary endurance has been put to a sinister use—in service of the narcos.
The Chernobyl Syndrome | Sophie PinkhamMay 19, 2020
On the night of April 25, 1986, during a planned maintenance shutdown at the Chernobyl power plant in northern Ukraine, one of the four reactors overheated and began to burn. As plant engineers scrambled to regain control of it, they thought for a moment that there had been an earthquake. In fact, a buildup of steam had propelled the two-hundred-ton concrete top of the reactor’s casing into the air, with masses of radioactive material following close behind when the core exploded. The plant workers had been assured again and again of the safety of the “peaceful atom,” and they couldn’t imagine that the reactor had exploded. Firefighters rushed to the scene without special equipment or a clear understanding of the potential risks; they had not been trained to deal with a nuclear explosion, because such training would have involved acknowledging that an explosion was possible.
The Twilight of the Iranian RevolutionMay 19, 2020
For decades, Ayatollah Khamenei has professed enmity with America. Now his regime is threatened from within the country.
Why This Woman Chooses to Live in a Ghost TownMay 19, 2020
As one of the only inhabitants of an abandoned railway stop in eastern New Mexico, Debra Dawson has been social distancing for decades. Attracted to its history and surrounding landscape, she's found happiness far away from just about everyone.
On the Shoulders of Giants — THE BITTER SOUTHERNERMay 16, 2020
How Single Lock Records unites the hometown legends of Muscle Shoals, Alabama, music with the new generation.
A Mystery at OxfordMay 15, 2020
A renowned scholar claimed that he discovered a first-century gospel fragment. Now he’s facing allegations of antiquities theft, cover-up, and fraud.
68 Bits of Unsolicited AdviceMay 3, 2020
UPDATE Several years ago on my 68th birthday I wrote up 68 bits of advice for my adult children, and posted them here. Here are the first five bits: Learn how to learn from those you disagree with, or even … Continue reading →
Exxon’s Humbling Fall From Oil Juggernaut to Mediocre CompanyMay 3, 2020
The industrial giant missed the shale boom, overspent on projects, and saw its debt rise to $50 billion as its stock plummeted.
The Day Treva Throneberry DisappearedMay 3, 2020
The North Texas teenager went missing in the late eighties. For years, no one knew where she was, or even if she was still alive-no one, that is, except a mysterious young woman two thousand miles away.
The Rise of the ValkyriesMay 3, 2020
Dirty money piling up in L.A. as coronavirus cripples international money launderingMay 3, 2020
With storefronts closed, supply chains in disarray and the global economy in peril, money laundering schemes are hobbled and cash is piling up in L.A., the city's top drug enforcement official said.
“This Land Is Your Land”: The Story Behind America’s Best-Known Protest SongMay 3, 2020
It has been a staple of kindergarten classrooms for decades. But Woody Guthrie didn’t intend for the song to be a ringing endorsement of American exceptionalism—he wrote it for those who were getting left behind.
Sherry Goes with EverythingApr 30, 2020
In Jerez, a sherry maker and a criminologist have embarked on a quest to find the oldest, most potent casks of amontillado (and discover why it just makes food taste better)
The Mysterious Bronze Objects that Have Baffled Archaeologists for CenturiesApr 30, 2020
The first dodecahedron was discovered nearly 300 years ago, yet no one is certain just what they were used for.
10 Incredible Long-Reads That’ll Transport You to Another Time and PlaceApr 28, 2020
There’s nothing like getting lost in a fascinating story—and now is a better time than any to dive into another world.
Joey Santore: Oakland’s Stealth ArboristApr 27, 2020
Guerrilla gardener Joey Santore has planted more than 300 trees, encouraging a new appreciation of our habitat—and one another.
The Adventures of a Pakistani in TexasApr 26, 2020
A young woman from Karachi doesn’t discover how intense Islam can be…until moving to Texas.
“Just Like at Madrid, Comrades!” | Lapham’s QuarterlyApr 24, 2020
Following three Spanish Republicans from civil war to the North African campaign.
The value of lives saved by social distancing outweighs the costsApr 24, 2020
Social distancing means a net benefit of $5.2 trillion, according to the analysis.
A Man Who Designed Ghost Armies and Opera Houses (2016)Apr 24, 2020
The storied career of the centenarian and acoustician, Leo Beranek.
Baking Bread in LyonApr 6, 2020
For a newcomer to the city, a boulangerie apprenticeship reveals a way of life.
The Maine Farmer Saving the World's Rarest Heirloom SeedsApr 6, 2020
Will Bonsall has spent a lifetime scattering seeds across the country. But will his efforts fall among the thorns?
Looking for a distraction? Here are 25 of our favourite long readsApr 1, 2020
The long read: If you feel like reading about something other than coronavirus – and filling some more time during lockdown – then dive into a few of these highlights from the long read archive
Every Inch of EarthMar 31, 2020
Sebastian Meyer and Kamaran Najm co-founded a photo agency in Iraq and teamed up to document a new era in Kurdistan, a region with a long history of suffering. Until Kamaran was captured by ISIS.
Total recall: the people who never forget | Science | The GuardianMar 31, 2020
The Long Read: An extremely rare condition may transform our understanding of memory
Bowel movement: the push to change the way you pooMar 30, 2020
The long read: Are you sitting comfortably? Many people are not – and there are some who insist the way we’ve been going to the toilet is all wrong
Cold-Case Cure: Inside New Era of Hunting Serial KillersMar 27, 2020
New advances in DNA technology — and new databases allowing law-enforcement searches — means more unsolved murder cases are being closed.
Phineas Gage, Neuroscience’s Most Famous PatientMar 27, 2020
Each generation revises his myth. Here’s the true story.
Radical SolutionsMar 26, 2020
French mathematician Évariste Galois lived a full life. When he wasn't trying to overthrow the government, he was reinventing algebra.
Everything on 'Naked and Afraid' Is Real—and I Lived It | Outside OnlineMar 23, 2020
When the Discovery Channel invited me to audition for its popular survival-challenge reality show, I knew it was going to be rough. What followed was one of the most intense experiences of my life.
The Hunt for Planet Nine - LongreadsMar 22, 2020
What will it take to find the biggest missing object in our solar system?
How China's 'Bat Woman' Hunted Down Viruses from SARS to the New CoronavirusMar 16, 2020
Wuhan-based virologist Shi Zhengli has identified dozens of deadly SARS-like viruses in bat caves, and she warns there are more out there
Victorian Culinary Trading Cards Are a Feast for the EyesMar 11, 2020
But maybe not for your stomach.
Why Japan is obsessed with paperMar 11, 2020
For a country often depicted as the pinnacle of high-tech living Japan has a surprising and enduring obsession with paper. That might finally be changing.
It’s been brought to my attention not every single human being has had the privilege of watching this phenomenal German commercial. It deserves a goddamn Oscar imhoMar 9, 2020
— Diego Lopez (@thisdiegolopez)
How to Become an International Gold SmugglerMar 9, 2020
Harold Vilches, a 23-year-old Chilean, exported $80 million in contraband gold. It all started with a Google search.
Nothing Compares to YuzuMar 5, 2020
The knobbly-skinned Japanese fruits are among the most exquisite members of the citrus family, and yuzu kosho—a fiery-hot condiment of chiles, zest, and salt—shows off all that’s wonderful about them.
The Shipwrecked Sailors & the Wandering CodFeb 29, 2020
In the remote archipelago of Lofoten, Arctic cod have been dried on oceanfront racks since the age of the Vikings. This is the unlikely story of how the humble fish became king of Norway
Chasing the Pearl of Lao TzuFeb 23, 2020
A tale of ancient philosophers, alien abductions, murder-for-hire—and how the world’s largest pearl came to be the centerpiece of an 80-year-old hoax.
The Recipe to Bob's Red Mill's Supreme RecipesFeb 23, 2020
If you've ever cooked a recipe from the back of one of the company's 400+ products, you have one very busy pastry chef to thank.
How One Man and His Dog Rowed More Than 700 Kākāpōs to SafetyFeb 23, 2020
In the late 19th century, Richard Henry laid a blueprint for modern conservation in New Zealand.
In Search of DarknessFeb 21, 2020
In a world where everything is illuminated, something essential is lost.
Louis Armstrong, the King of QueensFeb 20, 2020
The jazz musician’s impeccably maintained home in a modest New York City neighborhood is a testament to his — and midcentury design’s — legacy.
Overcoming Bias : How Bees ArgueFeb 19, 2020
The book Honeybee Democracy, published in 2010, has been sitting on my shelf for many years.
The Hacker ClassicsFeb 19, 2020
The Best Little Museum You Never Visited in ParisFeb 19, 2020
The Museum of Arts and Crafts is a trove of cunning inventions
Unnamed and UnsurveilledFeb 19, 2020
Craigslist feels like an island in the slipstream, evidence of an online past where improvisation and commonality superseded hierarchy and standard practices.
Why Japan Is Obsessed With Kentucky Fried Chicken on ChristmasFeb 19, 2020
Thanks to the successful “Kurisumasu ni wa kentakkii!” (Kentucky for Christmas!) marketing campaign in 1974, Japan can't get enough KFC on Christmas Day
Grand Theft Cobalt: RotterdamFeb 19, 2020
Thieves are pulling off audacious metal heists at Europe’s largest port. They’re even stealing from the Cobalt Jesus.
The Legend of John Holmes JenkinsFeb 19, 2020
A renowned rare books dealer left many unanswered questions when he died, none more intriguing than the circumstances of his death.
Snow Fall: The Avalanche at Tunnel Creek (2012)Feb 19, 2020
Fresh powder beckoned 16 expert skiers and snowboarders into the backcountry. Then the snow gave way.
The Guerrilla Car Washers of N.Y.C.Feb 15, 2020
Development is finally coming to the top of Manhattan. Are its carwash vans doomed?
He Is Building a Home. And a Career in the N.B.A.Feb 15, 2020
Pat Connaughton, a reserve guard for the Milwaukee Bucks, is forging his own path in basketball while continuing a family tradition of working in real estate.
The geology and geophysics of Kuiper Belt object (486958) ArrokothFeb 15, 2020
Stereo images of Arrokoth (2014 MU69) are used to map its geological units and date its surface using impact craters.
The Donkey Farmer’s Magical Matchmaking BookFeb 13, 2020
In the era of online dating, one septuagenarian Irishman clings tight to a method passed down through the generations—and thousands of happy couples are luckier for it.
The quest to explore Colombia’s untouched jungleFeb 12, 2020
Colombia is on a mission to make sense of its rich biodiversity, isolated thanks to years of war. For researchers, it is a golden opportunity – and a breathtaking adventure.
The Grand Unified Theory of Rogue Waves | Quanta MagazineFeb 12, 2020
Rogue waves — enigmatic giants of the sea — were thought to be caused by two different mechanisms. But a new idea that borrows from the hinterlands of probability theory has the potential to predict…
Keeping the Country — THE BITTER SOUTHERNERFeb 6, 2020
In southwest Florida, the Myakka River Valley — a place of mystery and myth — is under threat of development.
The Family That Couldn’t Say HippopotamusFeb 5, 2020
The origins of language are not what inherited disorders seemed to suggest.
The Ghost Hunter - The Atavist MagazineFeb 2, 2020
For hundreds of years, there were rumors of a shipwrecked treasure on the Oregon coast. But no one found anything, until Cameron La Follette began digging.
The Great Heavy Metal HoaxFeb 1, 2020
This down-on-his-luck headbanger fabricated a persona, faked a tour and promoted himself as a hard-rock savior
‘The Story of a Weird World I Was Warned Never to Tell’Jan 25, 2020
Pauline Dakin's childhood in Canada in the 1970s was full of secrets, disruption and unpleasant surprises. She wasn't allowed to talk about her family life with anyone - and it wasn't until she was 23 that she was told why.
This Is the Secret Michelin-Star Capital of the WorldJan 22, 2020
The best place to eat in Germany is in a little village in a forest.
The Untold Story of the Vegetable Peeler That Changed the WorldJan 20, 2020
The origin story of one of the great icons of 20th-century industrial design.
A Pilgrimage to the Pub at the End of the WorldJan 20, 2020
For decades, the Old Forge was the holy grail of the British outdoors community. The UK's remotest pub, it could only be reached via boat or a three-day walk through one of Britain's last true wildernesses, the Knoydart peninsula in Scotland. A dispute between some locals and a new owner threatened the legend—until they decided to open up a pub of their own.
How 17 Outsize Portraits Rattled a Small Southern TownJan 19, 2020
Newnan, Ga., decided to use art to help the community celebrate diversity and embrace change. Not everyone was ready for what they saw.
The Most Dangerous Job: The Murder of America’s First Bird WardenJan 18, 2020
When the hunting of a profitable bird is outlawed, enforcing the law means dealing with armed and angry lawbreakers.
Bring up the bodies: the retired couple who find drowning victimsJan 17, 2020
The long read: Gene and Sandy Ralston are a married couple in their 70s, who also happen to be among North America’s leading experts at searching for the dead
Overtaken by Frigid Seas, Hours From Help, There Was Little Chance of Survival (Published 2020)Jan 13, 2020
For an Alaskan fishing industry with an improving safety record, the sinking of the Scandies Rose was a devastating loss. It also began an astonishing tale of endurance.
How to Spot a Perfect Fake: The World’s Top Art Forgery DetectiveJan 12, 2020
Forgeries have become so good – and so costly – that Sotheby’s has brought in its own in-house fraud-busting expert.
How New York’s Bagel Union Fought — and Beat — the MafiaJan 12, 2020
The mob saw an opportunity. Local 338 had other ideas.
This Flood-Savaged Hamlet Proves Climate Change Isn’t Just a Coastal ConcernJan 12, 2020
Nine inches of rain nearly wiped Richwood, West Virginia, off the map. As waters rise around the globe, this tiny town offers a terrifying vision of our future—if we don’t act.
They Started a Ned Flanders Metal Band. Then ‘The Simpsons’ CalledJan 11, 2020
What started as a joke between friends has become official Simpsons lore.
The Chef Restoring Appalachia's World-Class Food CultureJan 10, 2020
A coal fortune is fueling the revival of a cuisine it nearly destroyed.
Red Sea Diving Resort: The Holiday Village Run by SpiesJan 9, 2020
Arous was an idyllic holiday resort in the Sudanese desert, on the shores of the Red Sea. But this glamorous destination was also a base for Israeli agents with a secret mission.
What Big History Says About How Royal Women Exercise PowerJan 5, 2020
Queens in many societies heavily influenced the policies and governing behavior of their kings.
The Night the Music DiedJan 5, 2020
Fifty years ago, a plane carrying Buddy Holly crashed in a remote Iowa cornfield. This month, hundreds of fans will gather at the ballroom where he played his final show to sing, dance, and mourn the greatest rock star ever to come out of Texas.
What I Learned in Avalanche School (Published 2019)Jan 5, 2020
I wanted to be prepared for the worst nature could throw at me. But the real threat turned out to be human.
The Doctor, the Dentist, and the KillerJan 4, 2020
Brenda thought she and Ricky would be together forever, until he left her. Kendra thought she and Ricky would be together forever. Then Brenda took matters into her own hands. Inside the case of jealousy, spying, and murder that shook Uptown Dallas.
Mecca 1979: The mosque siege that changed the course of Saudi historyJan 2, 2020
An armed takeover of the Grand Mosque in Mecca put a halt to the modernisation of Saudi society.
What It’s Like to Live in a California Ghost TownJan 1, 2020
To be an off-season caretaker of Bodie, California (winter population: 5), you need a high tolerance for cold, solitude, and two-hour grocery runs.
In the Jungle: Inside the Long, Hidden Genealogy of ‘The Lion Sleeps TonighJan 1, 2020
How the American music legends behind 'The Lion Sleeps Tonight' made millions off the work of a Zulu tribesman named Solomon Linda who died a pauper.
Miss Girard’s Christmas GiftDec 28, 2019
When her former student was found wandering the streets a decade after she’d last seen him, Michell Girard immediately agreed to take him in. Then she decided to do far more, including give him the Christmas he’d never had.
A Navy Seal's Semester at Yale, at Age 52Dec 24, 2019
The Ugly History of Beautiful Things: OrchidsDec 23, 2019
Sometimes a flower is just a flower, and sometimes it's a powerful vehicle for giving free rein to our worst colonialist and misogynist impulses.
Queens of Infamy: Njinga - LongreadsDec 23, 2019
The Portuguese colonizers of West Central Africa learned it the hard way: you mess with the Queen of Ndongo and Matamba at your own peril.
The Story of a Great Monopoly - The AtlanticDec 23, 2019
”These incidents in railroad history show most of the points where we fail ... to maintain the equities of ‘government’—and employment—‘of the people, by the people, for the people.’”
Ghost ships, crop circles, and soft gold: A GPS mystery in ShanghaiDec 23, 2019
A sophisticated new electronic warfare system is being used at the world’s busiest port. But is it sand thieves or the Chinese state behind it?
The Cry of AliceDec 23, 2019
The Terrewode Women’s Community Hospital is the happy ending of a story that harkens back to a time when women’s bodies were a frontier and a commodity.
Let's Create a Simple Load Balancer With GoDec 23, 2019
Load Balancers plays a key role in Web Architecture. In this post we are going to develop a simple load balancer with power of Go
The Wild OnesDec 23, 2019
People said that women had no place in the Grand Canyon and would likely die trying to run the Colorado River. In 1938, two female scientists set out to prove them wrong.
Inside Wayne LaPierre’s Battle for the N.R.A. (Published 2019)Dec 23, 2019
How an internal power struggle, a New York State investigation and accusations of fraud and betrayal on all sides have left the longtime leader of the gun-rights organization reeling.
Mathematical Model Reveals the Patterns of How Innovations AriseDec 23, 2019
The work could lead to a new approach to the study of what is possible, and how it follows from what already exists.
The Invisible Boy Who Became Mr. InvincibleDec 23, 2019
One man's unlikely journey from servant and prisoner of war to bodybuilding champion—with an epic, trans-continental love story along the way.
A Doctor’s Diary: The Overnight Shift in the E.R. (Published 2019)Dec 22, 2019
In the typical emergency room, demand far outpaces the care that workers can provide. Can the E.R. be fixed?
Perspective | Blight wiped out the American chestnut. Parallel efforts are close to bringing it back.Dec 22, 2019
One method, the slow, methodical work of traditional hybridization, is long familiar. The other, genetic engineering, is more controversial.
Prime Power: How Amazon Squeezes the Businesses Behind Its Store (Published 2019)Dec 21, 2019
Twenty years ago, Amazon opened its storefront to anyone who wanted to sell something. Then it began demanding more out of them.
How Do You Save an Endangered Tree from Extinction When You Can't Save ItsDec 21, 2019
“Recalcitrant” seeds hold the secret to saving a critically endangered Indian tree—thanks to a bit of human help
The falling price of a TV set is the story of the American economy | The OuDec 19, 2019
A 50-inch TV for $300 comes with some trade-offs.
What Ecstasy Does to OctopusesDec 15, 2019
Despite their wacky brains, these intelligent animals seem to respond to the drug in a very similar way to humans.
The Influencer and the Hit Man: How a Years-Long Domain Name Feud Ended in a Bloody ShootoutDec 15, 2019
To get his URL, the founder of State Snaps turned to extreme measures
The Chinese Roots of Italy’s Far-Right RageDec 15, 2019
The country’s new politics are often attributed to anger over migrants. But the story begins decades ago, when China first targeted small textile towns.
The Absurd Story Behind China's Biggest Bank RobberyDec 15, 2019
Two lottery-crazed clerks robbed the Agricultural Bank of China in Handan, Hebei province of over US$ 6 million
How Renaissance’s Medallion Fund Became Finance’s Blackest BoxDec 15, 2019
The Medallion Fund, an employees-only offering for the quants at Renaissance Technologies, is the blackest box in all of finance.
Henry Lee Lucas Was Considered America's Most Prolific Serial Killer. But He Was Really a Serial Liar.Dec 15, 2019
Netflix's 'The Confession Killer' examines the true story of the man who said he killed nearly 600 people.
‘It appeared that we had time’: How the FAA missed a chance to save Jennifer RiordanDec 15, 2019
The mother of two with an “amazing spirit” died after being sucked halfway out a window on a Southwest plane.
A Powerful Statement of Resistance from a College Student on Trial in MoscoDec 14, 2019
Yegor Zhukov’s message about responsibility and love shows what political dissent can be and seems to describe American reality as accurately as the Russian one.
Longreads Best of 2019: Crime ReportingDec 14, 2019
We asked writers and editors to choose some of their favorite stories of the year. Here is the best in crime reporting.
All Hail the Rat King - LongreadsDec 14, 2019
From Martin Luther to The Nutcracker, Germany's original national nightmare was a tangled knot of writhing rats.
They Were the Renaissance Men of Roman Antiquity - The New York TimesDec 13, 2019
Daisy Dunn’s “The Shadow of Vesuvius” is a lively dual biography of the polymath Pliny the Elder and his nephew (and adopted son), Pliny the Younger.
The Mystical, Mind-Sharing Lives of TulpamancersDec 12, 2019
Drawing on ancient Tibetan practices and a very human need for companionship, these people believe they have figured out how to create sentient beings within their own bodies.
Coach O & The Cajun PeopleDec 12, 2019
An exile from French Louisiana realizes that Ed Orgeron is her very own
The Startling Secret of an Invincible VirusDec 11, 2019
A phage that resists all forms of the antiviral defense known as CRISPR has an unusual means of survival.
The Resurrection of the Greatest Sci-Fi Writer You’ve Never ReadDec 11, 2019
He was beloved by Neil Gaiman and Robert Jordan, and so good that he won a World Fantasy Award for a Christmas card. How did John M. Ford disappear?
Anyone’s SonDec 10, 2019
Cody Dalton Eyre, a 20-year-old Alaskan Native, was having a mental health crisis on Christmas Eve, 2017 when his mother called 911 for help. So why did police officers end up shooting and killing him?
The Hummingbird WhispererDec 9, 2019
They’re tiny and they hover, and they’re one of only three groups of birds that are vocal learners. They sing with their mouths andtheir feathers. No wonder UC Riverside researcher Chris Clark is obsessed with hummingbirds.
Kitchen Rhythm: A Year in a Parisian Pâtisserie - LongreadsDec 2, 2019
An Oxford grad learns to navigate boiling sugar, sleep deprivation, and exacting pastry chefs with whom she can barely communicate.
A ‘Thrilling’ Mission to Get the Swedish to Change OvernightNov 28, 2019
How a whole country of drivers all switched lanes at the same time.
Crossed StitchesNov 28, 2019
Beverly Pennington was a Pinterest-perfect entrepreneur whose patchwork quilts—made from people’s most treasured T-shirts—found thousands of devotees all over the country. But when the quilts stopped coming, leaving the shirts in limbo, her customers pieced together a plan to fight back.
The First Family of Counterfeit HuntingNov 27, 2019
Robert Holmes taught his sons everything he knew about exposing black-market knockoffs. Now they take down the world’s biggest scammers while dodging threats from the mob.
Lessons From a ‘Local Food’ Scam ArtistNov 27, 2019
Working summers at an authentically quaint roadside produce stand, a teenage salesperson is schooled in the not-so-subtle art of how to con a foodie from the big city.
The Real-Life Hollywood Hoax That Turned a Fake Bradley Cooper Epic Into a $14 Million ScamNov 27, 2019
Adam Joiner’s silver-screen dreams were finally coming true. He had a deal with Netflix, a superstar lead and even interest from Spielberg. There was only one problem: His entire story was a lie
Snow’s QueenNov 27, 2019
On Saturdays Tootsie Tomanetz cooks barbecue the old-fashioned way for legions of loyal fans. That doesn’t mean she’ll ever give up her day job.
Inside the Secret World of Global Food SpiesNov 26, 2019
Retail giants turn to bitcoin technology to combat food-fraud that costs the global food industry up to $40 billion every year.
The last of the great explorersNov 26, 2019
The ocean floor is the Earth’s last great uncharted region. Oliver Franklin-Wallis joins the man descending to the bottom of the deepest trenches on the planet
In Search of Life’s Smoking GunNov 26, 2019
A journey to the underwater volcanoes where life may have erupted.
The wild story behind the NBA's most unlikely heistNov 24, 2019
How did an executive in one of the league's smallest markets steal millions of dollars -- and get away with it for years?
A Very Old Man for a WolfNov 20, 2019
He was the alpha male of the first pack to live in Oregon since 1947. For years, a state biologist tracked him, collared him, counted his pups, weighed him, photographed him, and protected him. But then the animal known as OR4 broke one too many rules.
The Innocent Pleasure of TrespassingNov 19, 2019
Liberating ourselves by treating the world as a free place to roam.
The transhumanists who want to live foreverNov 19, 2019
For a core of longevity true believers, the time to intervene is now.
The Final Days Of Japan's Most Incredible ArcadeNov 19, 2019
Japan is known for its video arcades, from the tiniest little collections of claw games in basements to entire high-rise buildings packed with floor after floor of video amusements. On Sunday, November 17, perhaps the most elaborately themed arcade in the country, Anata no Warehouse in Kawasaki, will shut down for…
How Turkish coffee destroyed an empireNov 18, 2019
Kahve was a favourite drink of the Ottoman Empire’s ruling class. Little did they know it would one day hasten the empire’s demise
Into the abyss: The story of the MV Lyubov OrlovaNov 14, 2019
What really happened to the MV Lyubov Orlova, a Russian cruise liner that was abandoned in St. John's Harbour nine years ago and eventually drifted out to sea as a rat-infested ghost ship? To find the answers, reporter Randi Beers delves into some Soviet history, the secretive world of offshore financial schemes, and the checkered histories of two men named Oleg.
Life, in Dog YearsNov 14, 2019
My father always pampered his pets. So when he fell ill and moved in with us, it was no surprise that his corgi came to rule our home. What I didn’t expect was for Trilby to care for me after Dad was gone.
Yes, You Can Catch InsanityNov 13, 2019
A controversial disease revives the debate about the immune system and mental illness.
Trigger: The Life of Willie Nelson’s GuitarNov 13, 2019
Most guitars don’t have names. This one has a voice and a personality, and bears a striking resemblance to his owner.
LimeWire: The Oral History of the App That Changed Music ForeverNov 11, 2019
In 2001, the internet’s premier file-sharing service Napster was shut down after just two years, leaving a giant vacuum in the ever-expanding peer-to-peer file-sharing space....
In Kansas, girls didn’t have a wrestling championship of their own. Mya Kretzer changed that.Nov 10, 2019
For many female wrestlers, the toughest challenge is finding opponents.
Undercover in the Orthodox UnderworldNov 9, 2019
Chained wives, violent rabbis, and one woman’s mission to infiltrate an Orthodox crime ring
Inside Shenzhen’s race to outdo Silicon ValleyNov 8, 2019
Shenzhen flooded the world with cheap gadgets. Can it now become what Silicon Valley never did—a global hub of innovation, entrepreneurship, and manufacturing?
O Sister, Where Art Thou?Nov 8, 2019
History makes no mention of what was one of the most popular all-female country acts ever. Yet the story of the Goree Girls—inmates who banded together in the forties at Texas’ sole penitentiary for women—is worth a listen.
The Minor Regional NovelistNov 7, 2019
Texas may have inspired Larry McMurtry to become a writer, but there is no writer who has inspired an understanding of Texas quite like Larry McMurtry. At age eighty, our most iconic author still has work to do.
Leonard Cohen and the Divine VoiceNov 7, 2019
A new short film captures some of Cohen’s reflections on creativity and spirituality, and on preparing for the end of life.
On a Remote Siberian Island Asking, Was It Just a Dream?Nov 5, 2019
The island, in Siberia’s Lake Baikal, has no paved roads, herds of wild horses and a shamanistic religion. The 52 Places Traveler found his spirit animal there.
The Wrong GoodbyeNov 3, 2019
A wrenching decision to end life support, and the unthinkable mistake that devastated not one but two families.
Of Meat and MenNov 3, 2019
John Mueller was the heir to one of the great Texas barbecue dynasties. Aaron Franklin was an unknown kid from College Station who worked his counter. John had it all and then threw it all away. Aaron came out of nowhere to create the state’s most coveted brisket. Then John rose from the ashes.
The story of Tunnel 29Nov 2, 2019
In 1961, Joachim Rudolph escaped from one of the world’s most brutal dictatorships. A few months later, he began tunnelling his way back in. Why?
The Agony and the Ecstasy of the State Fair Food FinalistsOct 31, 2019
The grim traveler sampled the offerings with a heavy heart.
Bank of the Underworld - The AtlanticOct 29, 2019
Liberty Reserve was like PayPal for the unbanked. Was it also a global money-laundering operation?
In Afghanistan’s War and Peace, WhatsApp Delivers the Message (Published 2019)Oct 28, 2019
WhatsApp has proliferated in the highest echelons of the Afghan government — as well as among the Taliban.
The buyers and sellers of Khorgos, a special trade zone on the Kazakhstan-COct 26, 2019
The town hasn't yet become the promised global-trade nexus. Nonetheless the shopping zone has lured entrepreneurs hoping to get rich and shoppers trying to get a bargain.
I Now Suspect the Vagus Nerve Is the Key to Well-beingOct 26, 2019
“Stimulating” it leads to calmness, but how and why?
The Planet Hunting MachineOct 25, 2019
Caltech professor Gregg Hallinan and his team are scanning the universe for possible Earths with cheap antennae built from parts found online, cake pans, and, yes, chicken wire—taking the lonely search for habitable planets and automating it.
Outfoxed and Outgunned: How China Routed the U.S. in a U.N. AgencyOct 25, 2019
Clumsy diplomacy, allegations of bribery, a stinging U.S. diplomatic loss, and China's ascension in the United Nations.
Flea Had a Wild Life. Then He Joined Red Hot Chili Peppers. (Published 2019)Oct 24, 2019
In a new memoir, the bassist describes how he expanded his consciousness, found his muse and landed in a storied rock band.
»I have no desire to open up this man’s skull. I do it because I have to«Oct 24, 2019
Forensic scientists, the police and crime scene investigators master horror with a steady hand. This article gives a rare insight into the post-mortem examination of a homicide.
The Symbolic Seashell | Hakai MagazineOct 23, 2019
Collecting seashells is as old as humanity. What we do with them can reveal who we are, where we’re from, and what we believe.
One Family Built Forever 21, and Fueled Its CollapseOct 23, 2019
The retailer’s bankruptcy filing, and interviews with former employees, give a rare glimpse into a family controlled, intensely secretive operation.
Man on FireOct 23, 2019
The Reverend Charles Moore ardently dedicated his life to the service of God and his fellow man. But when he couldn’t shake the thought that he hadn’t done enough, he drove to a desolate parking lot in his hometown of Grand Saline for one final act of faith.
Inside Olympic Destroyer, the Most Deceptive Hack in HistoryOct 22, 2019
The untold story of how digital detectives unraveled the mystery of Olympic Destroyer—and why the next big cyberattack will be even harder to crack.
Honor Thy FatherOct 22, 2019
In suburban Fort Worth the frail psyche of a football prodigy collided with the crazed ambition of his dad, who himself had been a high school football star way back when. The consequences were deadly.
Unholy ActOct 21, 2019
No one in McAllen saw Irene Garza leave Sacred Heart that night in 1960. The next morning, her car was still parked down the street from the church. She never came home.
Inside the Members-Only Eating Clubs of San SebastiánOct 21, 2019
Step into the private kitchens of Basque country’s sociedades gastronómicas, where everything revolves around food
When 'Angels in America' Came to East Texas – Texas MonthlyOct 17, 2019
Twenty years ago my hometown made national headlines when the local college staged an internationally acclaimed play about gay men and the AIDS crisis. The people I grew up with are still feeling the aftershocks.
A Lone Postman Delivers the Mail to the Far Reaches of the Big BendOct 16, 2019
Not many people will drive the mail to places the U.S. Postal Service won’t. Seventy-one-year-old Gilbert Lujan is one of them.
Old Dudes On SkateboardsOct 16, 2019
The death of his life-long skateboarding friend prompts Aaron Gilbreath to get back on his board — at 44, with his toddler daughter in tow.
The Acid Farmers - Mike JayOct 16, 2019
How Sandoz Pharmaceuticals produced the LSD that turned on the world
The Epic Hunt for a Lost World War II Aircraft Carrier (Published 2019)Oct 14, 2019
In 1942, a volley of torpedoes sent the U.S.S. Wasp to the bottom of the Pacific. For decades, the families of the dead wondered where in the lightless depths of the ocean the ship could possibly be. Earlier this year, a team of wreck hunters set out to find it.
The fast track to a life well lived is feeling gratefulOct 9, 2019
Being ‘good’ need not take years of ethical analysis: just a few moments of gratitude can set you on the path to virtue
Shackleton’s Medical KitOct 9, 2019
‘Each box was like the distillation of all that we have learned as a species about our bodies and their infirmities, a time capsule of medicine.’
Still LifeOct 9, 2019
Covering Texas news, politics, food, history, travel, crime, music, and everything in between for fifty years.
I Worked at Capital One for Five Years. This Is How We Justified Piling Debt on Poor Customers.Oct 9, 2019
The subprime lending giant is a textbook case in creating a corporate culture of denial.
My fancy smartphone could never give me what the landline gave my grandmotherOct 5, 2019
Company in old age versus the pressure of conversation.
A terrible crime, a patient waiting for a transplant: The tragic, redemptive journey of one heart.Oct 3, 2019
Three decades ago, a young man murdered his girlfriend and killed himself. What happened next to his heart was extraordinary.
The Diver Who Brings Up the BodiesOct 3, 2019
So many Indian farmers are killing themselves that bodies pile up at the end of one long canal. Gurbaksh Singh helps their families find closure.
You Can Do More Good Than You ThinkOct 3, 2019
All you need is compassion and the courage to open your mouth
A Hole in the Head: A History of Trepanation | The MIT Press ReaderOct 1, 2019
A survey of trepanation, or trephination, the oldest surgical procedure known to humanity.
The Octopus: An Alien Among UsSep 30, 2019
Self-replicating, bacterial life first appeared on Earth about 4 billion years ago. For most of Earth’s history, life remained at the single-celled level, and nothing like a nervous system existed …
LSep 21, 2019
Wind Power: How the 19th-Century’s Greatest Shipbuilder Opened the PacificSep 21, 2019
[caption id="attachment_80535" align="aligncenter" width="576"] The Tahiti, seen here sailing on San Francisco Bay, was a 124-foot brigantine built by Tur...
SFO: The typo that almost crashed a plane - SFChronicle.comSep 17, 2019
The FAA conducted a safety review on the airport and found that pilots were mixing up two...
Ship of horrors: life and death on the lawless high seasSep 17, 2019
The long read: From bullying and sexual assault to squalid living conditions and forced labour, working at sea can be a grim business – and one deep-sea fishing fleet is particularly notorious
Something Special Is Happening in Rural AmericaSep 17, 2019
There is a “brain gain” afoot that suggests a national homecoming to less bustling spaces.
Dead Reckoning • Damn InterestingSep 17, 2019
The 18th century misadventures of HMS Wager and her reluctant crew
StarshiftSep 16, 2019
In an era of climate change, everything feels strange. Even the places we call home.
How Kentucky Gambled for Hundreds of Millions of Dollars From a Broadband Program It Didn’t Qualify forSep 15, 2019
Former Gov. Steve Beshear’s administration was warned multiple times that its rural broadband bet wouldn’t get certain federal funds. Meet the officials and conflicted consultants who didn’t listen and doomed the plan.
Solving Wildlife's Strangest MysteriesSep 15, 2019
When a creature mysteriously turns up dead in Alaska—be it a sea otter, polar bear, or humpback whale—veterinary pathologist Kathy Burek gets the call. Her necropsies reveal cause of death and causes for concern as climate change frees up new pathogens and other dangers in a vast, thawing north.
On the Hunt for the World’s Rarest PastaSep 10, 2019
Delicate and impossible to replicate, su filindeu (or the “threads of God”) is a pasta made of hundreds of tiny strands by a single woman in a hillside town in Sardinia. She’ll make it for you too—if you’re willing to walk 20 miles overnight
Everything We Do Not KnowSep 4, 2019
Environmental and personal fallout from the Fukushima disaster continues nearly a decade later.
Inside the elite, detail-obsessed world of the people who judge the Oscars of classic carsSep 3, 2019
Behind the scenes at this year's Pebble Beach Concours d’Elegance, the most prestigious car show in the world.
Paul Clarke Wants to LiveSep 3, 2019
When a promising student left a neighborhood full of heroin for the University of Pennsylvania, it should have been a moving story. But what does an at-risk student actually need to thrive — or even just to survive?
Masterpiece TheaterAug 31, 2019
A Dutch gallerist made thousands of forgeries and passed them off as the work of real artists. When he was caught, a new con began.
Palaces for the People - 99% InvisibleAug 30, 2019
Eric Klinenberg is the author of a book called Palaces for the People: How Social Infrastructure Can Help Fight Inequality, Polarization, and the Decline of Civic Life. The phrase “palaces for the people” actually comes from Andrew Carnegie who was known as a titan of the Gilded Age and one of the wealthiest people in
Confessions of a Professional Fake ShopperAug 30, 2019
When desperate storeowners want to convince passersby to stop in, they hire fun, happy people to pose as shoppers. They’re actually out-of-work actors, retirees, and me.
The High-Stakes World of High-End Yo YosAug 29, 2019
The modern version of the toy is practically unrecognizable, an Object Lesson.
Column One: 'Blink once if you can hear me’ — a brain-injured man's remarkable awakeningAug 29, 2019
Omar Salgado defied the odds in Room 20. But his is not a story about a miracle — it’s a story about medicine’s inability to accurately diagnose consciousness.
The Death of Alexander the Great: One of History’s Great Unsolved MysteriesAug 29, 2019
Alexander the Great’s death is an unsolved mystery. Was he a victim of natural causes, felled by some kind of fever, or did his marshals assassinate him, angered by his tyrannical ways? An autopsy…
A Lawyer, 40 Dead Americans, and a Billion Gallons of Coal SludgeAug 29, 2019
In 2008, a federally owned power plant spewed coal sludge over 300 acres in Tennessee. Now, 40 people who helped clean up the mess are dead and 300 ill.
The Golden Bough | The New YorkerAug 29, 2019
Grant Hadwin got a chainsaw and did something terrible.
Inside the Twisted, Worldwide Hunt for a $7 Million Stolen CarAug 26, 2019
Joe Ford, car detective, searches the world for stolen rare automobiles on the black market. The case he’s on now could set him up for life—if he’s not outsmarted by a skilled network of criminals and cheats.
How Graffiti Became GentrifiedAug 24, 2019
Two decades after Rudy Giuliani tried to rid New York City of graffiti, the art form is flourishing—with unexpected consequences.
Buy Low-Tops, Sell High-Tops: A Sneaker Exchange Is Worth $1 BillionAug 24, 2019
StockX is one of several online marketplaces that have turned resales of shoes into a big — and highly valued — business.
The Disappearing Physicist and His Elusive Particle - Issue 74: Networks -Aug 24, 2019
He ushered symmetry into theoretical physics, then vanished without a trace.
The Curse of Playing the Wicked Witch of the WestAug 22, 2019
After nearly dying while filming “The Wizard of Oz,” Margaret Hamilton spent the rest of her career trying to escape her evil character’s long shadow.
The Mystery of ‘Skeleton Lake’ Gets DeeperAug 20, 2019
Hundreds of skeletons are scattered around a site high in the Himalayas, and a new study overturns a leading theory about how they got there.
To date a dinosaurAug 17, 2019
Stegosaur expert Susie Maidment is laying crucial groundwork for assigning ages to fossils from North America’s most dinosaur-rich rocks. More precise timings promise to reveal plenty about how the beasts lived and evolved through time.
Sahara Desert Libraries Are Home to Thousands of Ancient TextsAug 17, 2019
These desert libraries have been around for centuries and they hold sacred texts from ancient times.
Feral Horses, Fierce Controversy - Features - Jason G. Goldman - Alta OnlinAug 15, 2019
Wild mustang populations are out of control, competing with cattle and native wildlife for resources. If the federal government doesn’t rein them in, ranchers may take matters into their own hands.
The British Once Built a 1,100-Mile Hedge Through the Middle of IndiaAug 15, 2019
This quixotic colonial barrier was meant to enforce taxes.
Finding Amelia Earhart’s Plane Seemed Impossible. Then Came a Startling CluAug 12, 2019
Robert Ballard has found the Titanic and other famous shipwrecks. This month his crew started trying to solve one of the 20th century’s greatest mysteries.
Is It Possible to Stop a Mass Shooting Before It Happens?Aug 9, 2019
You’ve never heard of her, but somewhere in America, a top-secret investigator known as the Savant is infiltrating online hate groups to take down the most violent men in the country.
This Is Why It's Nearly Impossible to Study PainAug 5, 2019
A fundamental understanding of what pain is continues to evade scientists.
The Admiral of the String Theory WarsAug 5, 2019
After a decade, Peter Woit still thinks string theory is a gory mess.
Brain Damage Saved His MusicAug 5, 2019
After a chunk of his brain was removed, guitarist Pat Martino got his groove back.
How to Save a LoggerheadAug 5, 2019
Go behind the scenes at the South Carolina Aquarium's Sea Turtle Care Center during a nearly yearlong journey to get a massive injured loggerhead back home
He'd been kept alive with tubes for nearly 17 years. Who is he, and is it possible he’s conscious?Aug 4, 2019
Finding out his name turned out to be the easy part. The tough part was navigating the blurred lines that separate consciousness from unconsciousness — and figuring out whether his smile was really a smile.
Why Not The Worst?Aug 1, 2019
In Search of Alaska’s Deadliest Catch: The Sea CucumberJul 31, 2019
As a cuke deckhand, your job first and foremost consists of making sure your diver survives
The King of Adventure Stares Down DeathJul 31, 2019
A rodeo cowboy, skydiver, firefighter, ultramarathoner and motorcycle racer, Coach Stroud is a 71-year-old badass. And he’s determined to die on his own terms.
On Hitler’s Last Desperate Plan to Destroy ParisJul 30, 2019
On August 23rd, the day after Dietrich von Choltitz dispatched Rolf Nordling to contact the Allies, Hitler sent a message to Field Marshal Walther Model and von Choltitz demanding that Paris be hel…
The Murders That Shook a Mountain TownJul 30, 2019
Last winter, Moroccan officials found two hikers dead on the trail to the highest peak in the Atlas Mountains. The international investigation that followed revealed the fragility of the adventure travel economy, as well as what happens when a small tourist hub is suddenly made strange by violence.
Restaurant Secrets From Nobu: Reservations, Unruly Celebs, SushiJul 27, 2019
From celebrity seating warfare to dogs sipping Champagne, there’s never a dull moment at America’s most famous sushi joint.
Dr. John: The Joy and Mystery of a New Orleans SaintJul 27, 2019
Few embodied the spirit of New Orleans, or helped take its music to strange new places, the way the man born Mac Rebennack did.
Wanderland: a journey through Iran’s wild westJul 27, 2019
Nomads have been central to the country’s history for centuries. Anthony Sattin joins the roaming empire
Losing the NewsJul 27, 2019
The Charleston Gazette-Mail, known for its dogged accountability journalism, survived a merger and bankruptcy. Will it survive a new owner with ties to the very industries its reporters have been watchdogging?
Stan Smith: The Man Who Became A ShoeJul 26, 2019
How Stan Smith went from a "decent" tennis player to the most popular trainer on the planet
The Comedians, The Mob and the American Supperclub by Kliph NesteroffJul 26, 2019
"The Mob was an integral part of everything." - Comedian Jackie Curtiss "I worked for a lot of gentlemen of that persuasion over the years. I learned a long time ago when I worked for Frank Costello in New York...
Inside a Top-Secret Factory Where Scent Is MadeJul 25, 2019
A peek at the scientists who chemically engineer the scents behind numerous commercial products.
UT Southwestern’s Cutting-Edge Battle Against Rare, Fatal Childhood DiseaseJul 25, 2019
With a new gene therapy center almost completed, the medical center is providing hope for families who previously had little.
To avoid moral failure, don’t see people as Sherlock does | Aeon IdeasJul 25, 2019
Elementary, my dear Sherlock: it’s moral failure to see people as objects to be studied or as evidence to be interpreted
Archaeology of the 99%Jul 25, 2019
The vast majority of people in antiquity were too poor to leave many artifacts behind. But archaeologists have learned how to look beyond the temples and palaces.
The Bizarre Tale of a Cursed Russian Ghost ShipJul 24, 2019
The Russian ship called the Ivan Vassili began its life in St. Petersburg in 1897, where it was built as a civilian steam
Why Arabic Is Terrific (Idle Words)Jul 22, 2019
The Oyster Poachers of Connemara - Saveur - PocketJul 21, 2019
In Ireland, few things are black and white, especially the law—and the tales of men who break it to dive for treasure under cover of darkness
Searching for Keith | Hakai MagazineJul 15, 2019
A detective’s quest reveals how one idealistic fisheries observer may have collided with criminals and desperate migrants—and paid for it with his life.
Ricky Jay’s Magical SecretsJul 10, 2019
From 1993: The magician’s deft illusions flout reality, and he rejects the notion that magic is a suitable entertainment for children.
Is it possible to disrupt a cow?Jul 9, 2019
Technology can displace the cow and save the climate. But we will need to think beyond the bun
A Casino Card Shark’s First Time Getting CaughtJul 4, 2019
As a struggling grad student, I happened upon a lucrative side hustle with an elite team of card-counters—and found the community I'd been looking for.
The High Priest of Heavy MetalJul 4, 2019
First he found God. Then he found death metal. But Father Robert Culat believes there’s no reason the two can’t co-exist.
King of the Snitches: The Fashion Photographer Who Duped Drug Lords and theJul 1, 2019
Baruch Vega ran a scheme that ensnared Colombian cocaine kingpins and gave him a life of luxury. Then one put a price on his head.
Why plants don’t die from cancerJul 1, 2019
Humans and other mammals and birds would have been killed many times over by Chernobyl's radiation that plants in the most contaminated areas received. So why is plant life so resilient to radiation and nuclear disaster?
The Sibling Rivalry Burning Up an $800 Million Oil DynastyJun 29, 2019
A story of lifelong grudges, frame-ups, greed, drugs, and an incompetent conspiracy of off-duty cops.
The StormJun 24, 2019
Six young men set out on a dead-calm sea to seek their fortunes. Suddenly they were hit by the worst gale in a century, and there wasn’t even time to shout. The article that eventually became The Perfect Storm.
Speed KillsJun 20, 2019
Development of hypersonics is moving so quickly that it threatens to outpace any real discussion about the potential perils of such weapons, including how they may disrupt efforts to avoid accidental conflict, especially during crises.
Narratively | SubstackJun 19, 2019
Discover extraordinary true stories celebrating the diversity of humanity. Click to read Narratively, a Substack publication with tens of thousands of subscribers.
Do You Trust Your People?Jun 17, 2019
Leadership Now is a leading source for leadership development and analysis. We believe that anyone can make a difference by leading from where they are.
The real Goldfinger: the London banker who broke the worldJun 16, 2019
The true story of how the City of London invented offshore banking – and set the rich free
Someone Donated His Frostbitten Toe to a Canadian BarJun 16, 2019
The legend of the Sourtoe Cocktail continues.
The Illuminating Geometry of Viruses | Quanta MagazineJun 16, 2019
Mathematical insights into how RNA helps viruses pull together their protein shells could guide future studies of viral behavior and function.
The Curse of the Ship of GoldJun 14, 2019
How a brilliant scientist went from discovering a mother lode of treasure at the bottom of the sea to fleeing from authorities with suitcases full of cash.
Sky HISTORY TV ChannelJun 9, 2019
Find out more about the shows on Sky HISTORY's TV channel, with plenty to read and watch on your favourite historical topics.
How Legalization Changed Humboldt County MarijuanaJun 9, 2019
In an isolated Northern California community, the last remnants of the counterculture are confronting the future of cannabis.
Meet the Product Designer Who Made Mid-Century America Look Clean and StyliJun 8, 2019
From refrigerators to cars to Air Force One, Raymond Loewy's distinctive "cleanlining" sold products
Why I Traveled the World Hunting for Mutant Bugs - Issue 73: PlayJun 7, 2019
A researcher who works through painting tells her story.
Meet the Carousing Texan Who Won a Nobel PrizeJun 1, 2019
Jim Allison is an iconoclastic scientist who toiled in obscurity for years. Then he helped crack a mystery that may save millions of lives: Why doesn’t the immune system attack cancer?
Why Would Anyone Choose to Run 100 Miles Through the Desert?May 31, 2019
The Oman Desert Marathon was my first ultra marathon. It was just over 100 miles (165km) across the baking sand. I didn’t really want to do it. It only came up as an idea when an editor from The Fi…
The Secret Oral History of Bennington: The 1980s' Most Decadent CollegeMay 31, 2019
Bennington College in the 1980s was a hothouse of sex, drugs, and future literary stars--among them, Donna Tartt, Bret Easton Ellis, and Jonathan Lethem. Return to a campus and an era like no other.
Outlaw Country — The Atavist MagazineMay 31, 2019
Klamath County, Oregon, is the perfect place to go if you don't want to be found—and the worst place to be if someone threatens your life.
A student in Boston wrote ‘I am from Hong Kong.’ An onslaught of Chinese anger followed.May 29, 2019
As China tightens its hold on Hong Kong, battles flare over identity and the special status of the former British colony.
Antonio Salieri’s RevengeMay 29, 2019
He was falsely cast as Mozart’s murderer and music’s sorest loser. Now he’s getting a fresh hearing.
Thai cave rescue: Inside the near-impossible mission to save the 12 trapped boysMay 29, 2019
The inside story of an improbable team of divers, a near-impossible plan and the rescue of a Thai junior football team from a cave in Thailand
The Undercover FascistMay 28, 2019
A young Englishman got mixed up in a white-supremacist movement. Then he learned of a plot to kill a politician.
The Wealth Detective Who Finds the Hidden Money of the Super Rich - BloombeMay 24, 2019
Thirty-two-year-old French economist Gabriel Zucman scours spreadsheets to find secret offshore accounts.
30 Days Timelapse at Sea | 4K | Through Thunderstorms, Torrential Rain & Busy TrafficMay 21, 2019
Follow my adventures on Instagram! http://instagram.com/Jeffrey.hk
Dropped new timelapse! https://www.youtube.com/watch?v=9JBMpzW_B58
Hi all, i built a 24K resolution 360 camera specifically for upcoming 360 timelapse project. Check it out: https://www.youtube.com/watch?v=fseH9Kd5ooM
If you'd like to support my camera work so I can continue timelapse (this piece used up more than half of my D750 Shutter Life. Rain and camera also don't get along) please check out my patreon:
https://www.patreon.com/YTJeffHK
30 Days of Timelapse, about 80,000 photos combined. 1500GB of Project files. Sailing in the open ocean is a unique feeling and experience.I hope to capture and share it for everyone to see.
Support my photo/videography by buying through my affiliate links!
Best Value Fullframe for timelapse https://amzn.to/2MYk2vX
Fisheye lens used in 30 days timelapse https://amzn.to/30uE4Aw
360 camera I use https://amzn.to/2Qfgcku
Drone https://amzn.to/2Qhxk98
BIG JUICE powerbank for everything https://amzn.to/304fKJq
Gaffer Tape (no residue) https://amzn.to/2LCRLYq
Silica Gel Packs https://amzn.to/2N083xJ
Good intervalometer https://amzn.to/2N1ETOS
Good Entry Tripod https://amzn.to/2ZWp8e7
Pro Tripod https://amzn.to/2NYSlCH
Budget Time lapse Motion Control https://amzn.to/2A4H7Vd
Advance time lapse Motion control https://amzn.to/2PQ5ctn
Route was from Red Sea -- Gulf of Aden -- Indian Ocean -- Colombo -- Malacca Strait -- Singapore -- South East China Sea -- Hong Kong
Camera used: D750, Rokinon 12mm f/2.8
0:32 Milky Way
0:53 Sirius Star (I think) Correction: Jupiter the planet according to some viewers
1:17 Approaching Port of Colombo
1:45 Cargo Operation
2:08 Departure Colombo with Rainstorm
2:29 Beautiful Sunrise
3:13 Lightning Storm at Malacca Strait and Singapore Strait
3:29 Clear night sky Milky Way with lightning storm
4:01 Camera getting soaked
5:09 Arrival Singapore
5:56 Departure Singapore
6:20 Moon-lit night sky
6:48 Another Sunrise
8:30 Headed due north and you can see Ursa Major rotating neatly around Polaris.
8:36 Squid Boats
8:54 Chaotic Traffic
9:15 Arrival Hong Kong
Music:
Philip G Anderson - Winter (from 0:00 to 4:37 and 8:00 to 10:00)
Buy Winter here:
https://philipganderson.bandcamp.com/album/winter
Stellardrone - Billions And Billions (from 4:37 to 8:00)
=====10 Reasons Why Maritime is AWESOME =====
https://www.youtube.com/watch?v=0U18AHZbS_M
=====10 Reasons Why Maritime SUCKS =====
https://www.youtube.com/watch?v=tdMYEKwxTyo
=====How To Anchor a Mega-Ship =====
https://www.youtube.com/watch?v=62O7KYfb4GA
=====Where did I go last 2 months?? Cancun Adventure======
https://www.youtube.com/watch?v=nsizwRUXoa0
=====Navigation Bridge of a Mega Ship=====
https://www.youtube.com/watch?v=Bj3_peT4u9M
=====A Tour of Mega Ship's Engine Room=====
https://www.youtube.com/watch?v=s7BhBsVigZw
=====HEAVY SEAS! Bad Weather in Atlantic Ocean=====
https://www.youtube.com/watch?v=OZA6gNeZ5G4
=====Cargo Operations on Ship=====
https://www.youtube.com/watch?v=kj7ixi2lqF4
=====Top 6 Questions about Merchant Marine=====
https://www.youtube.com/watch?v=wBpQ9Y4jEfg
I Played Meat Bingo at a Century-Old Oregon Dive BarMay 21, 2019
Founded in 1926 by Russian socialists, Workers Tavern is the perfect place to win bratwursts and talk to whiskey-swilling grandmas.
World's Oldest Terrarium / Sealed Bottle Ecosystem by David LatimerMay 20, 2019
Checkout one of the oldest terrarium gardens in the world! Read the story of David Latimer's sealed bottle ecosystem from the 1960's.
Nothing But Solitude | Lapham’s QuarterlyMay 16, 2019
When Renaissance explorers went north, they found a lunar landscape here on earth.
The Chinese village that kept a courtesan’s secret for centuriesMay 16, 2019
One of China’s great beauties, Chen Yuanyuan was born to a peasant family, orphaned and sold as a prostitute, later becoming the consort of general and despised traitor, Wu Sangui. What eventually became of her was never known, until now.
I Entered the World’s Longest, Loneliest Horse Race on a Whim, and I WonMay 15, 2019
Somehow, implausibly, against all the odds, I became the youngest person and first woman ever to win the Mongol Derby. What made me so sure I was ready, when I was totally unprepared?
Adventures in the Ransom TradeMay 15, 2019
On the revolutionaries, highly-paid negotiators, former spies, foreign businessmen and their families, who all played roles in the massive Colombian kidnap and ransom industry during its 1990s heyday.
How the Hell Has Danielle Steel Managed to Write 179 Books?May 12, 2019
The author works a 20-hour shift, loves chocolate, and writes best in her cashmere nightgown.
During the Cold War, the CIA Secretly Plucked a Soviet Submarine From the Ocean Floor Using a Giant ClawMay 12, 2019
The International Spy Museum details the audacious plan that involved a reclusive billionaire, a 618-foot-long ship, and a great deal of stealth
Hundreds of Bodies, One Nurse: German Serial Killer Leaves as Many QuestionMay 10, 2019
A nurse, Niels Högel, admitted to dozens of murders but might have killed as many as 300 patients. So what prevented colleagues from stopping one of the world’s deadliest serial killers?
China’s rust belt cities shrouded in uncertainty as exhausted natural resouMay 9, 2019
As the natural resources that gave rise to heavy industries in China’s northeast run dry, the cities that developed around coal mines are struggling to modernise.
Twenty-Eight Days on the John Muir TrailMay 9, 2019
During a month hiking Muir's "Range of Light," three young women traversed snowy mountain passes, ran out of food, confronted a gendered wilderness, and learned to deal with each other.
An Airplane’s Extraordinary Story Recalls Bygone U.S.-Russian AmityMay 9, 2019
Abandoned in the Arctic for seven decades, the last remaining Lend-Lease Douglas airplane in Russia is museum-bound, at a time of tensions with the United States.
The Mystery of the Millionaire HermitMay 8, 2019
He spent years scrimping and saving. But without a will, where’s his money going?
The Mysterious Disappearance of Sam SayersMay 7, 2019
They've spent 8,000 hours searching for Sam Sayers.
How America’s Oldest Gun Maker Went Bankrupt: A Financial Engineering Mystery (Published 2019)May 4, 2019
When a secretive private equity firm bought Remington, sales were strong and the future bright. A decade later, the company couldn’t escape its debts.
Giannis Antetokounmpo Is the Pride of a Greece That Shunned Him (Published 2019)May 4, 2019
As the son of African immigrants, Antetokounmpo was unwelcome in Athens. Then he showed promise as a basketball star.
She Hunted History’s Worst Arms Dealers. Now She’s Taking on Rhino PoachersMay 2, 2019
Kathi Lynn Austin is on a global chase to stop the flow of guns threatening to wipe the rhinoceros off the face of the Earth.
The Raisin Situation (Published 2019)Apr 27, 2019
One man wanted to change the raisin industry for the better. He got more than he bargained for.
Why are so many people getting rare cancers in this small Georgia town?Apr 27, 2019
After multiple rare cancers have been diagnosed in Waycross, Georgia, the city grapples with a profound question: What if the industries that gave us life are killing us?
Just a Spoonful of SiouxsieApr 26, 2019
Surviving seventh grade with a practically perfect punk nanny.
A Dispatch From the Fast-Paced, Makeshift World of High-End CateringApr 25, 2019
The unsung heroes of the food world battle against time and chaos, cooking haute cuisine over lit cans of Sterno in the gloomy back hallways of New York's civic landmarks.
The Wild Carnival at the Heart of Skiing’s Most Dangerous RaceApr 24, 2019
The punishing Hahnenkamm downhill brings street-party revelry to a medieval town in the Tyrolean Alps, Nick Paumgarten writes.
The Best 'I Don't Know the Answer' Jeopardy! AnswersApr 23, 2019
A photo essay of delight and despair
The Curious Tale of the Salish Sea FeetApr 21, 2019
To date, 21 disembodied feet have washed up on the shores of Seattle's Salish Sea. What at first looked like the work of a serial killer turned out to be something even more unsettling: A message from the ocean about who we are.
The amazing rise — and shocking fall — of Indiana's caviar kingApr 21, 2019
An Ohio River sting sends Indiana's caviar king to prison, as wildlife officials crack down on greed to save one of North America's oldest species.
From the archives: Inside the exclusive team dinners that have built the Spurs' dynastyApr 21, 2019
Over the past 20 years, Gregg Popovich has sliced an exclusive culinary trail across America -- all for a singular purpose. This is the story of his legendary team dinners, and how they have served as a pillar of the Spurs' decadeslong dynasty.
Where Grizzly Bears and Hobby Farmers Come Face to FaceApr 18, 2019
Human hunters moved north into what would become Montana on the heels of the receding ice, coming into the Mission Valley when the land was yet raw and studded with erratics. Only the first scrim o…
“The Big Error Was That She Was Caught”: The Untold Story Behind the Mysterious Disappearance of Fan Bingbing, the World’s Biggest Movie StarApr 17, 2019
She vanished without a trace last year. But it was what happened next that sent a shudder through the Chinese film industry.
Dog rescued after it's found swimming 135 MILES out at seaApr 16, 2019
The female brown Aspin was found drifting in the Gulf of Thailand on Friday. It is unknown whether the dog swam the astonishing distance from the shore, or jumped off a boat at sea.
Q: Why was it so hard to take a picture of a black hole? What are we even looking at?Apr 16, 2019
Physicist: Black holes and space are both black, so there’s that. But while black holes tend to be very small, space is bonkers big and filled with just enough stuff to give astronomers thin…
The Astronaut Who Might Actually Get Us to Mars – Texas MonthlyApr 13, 2019
As an eighteen-year-old immigrant to the U.S., Franklin Chang Díaz dreamed of becoming an astronaut. Now, decades after tying the record for most spaceflights, he might be the best bet to get us to Mars.
How Rupert Murdoch’s Empire of Influence Remade the World (Published 2019)Apr 10, 2019
Murdoch and his children have toppled governments on two continents and destabilized the most important democracy on Earth. What do they want?
Part 2: Inside the Succession Battle for the Murdoch Empire - The New YorkApr 10, 2019
President Trump’s election made the Murdoch family more powerful than ever. But the bitter struggle between James and Lachlan threatened to tear the company apart.
Part 3: The Future of Fox: An Even More Powerful Political Weapon (Published 2019)Apr 10, 2019
The Disney deal left the Murdochs with a media empire stripped to its essence: a hard-core right-wing news machine — with Lachlan in charge.
The dogs that protect little penguinsApr 9, 2019
When foxes nearly wiped out a colony of little penguins, a sheepdog saved the day.
She falsely accused a stranger of trying to abduct her child, police say. SApr 8, 2019
Mohamed Fathy Hussein Zayan, an engineer from Egypt who was visiting West Virginia for work, was arrested on felony attempted abduction charges before Santana Renee Adams recanted her story.
One night of telescope time rules out black hole/dark matter ideaApr 8, 2019
Black holes formed right after the Big Bang aren’t common enough to be dark matter.
Abigail Disney Has More Money Than She’ll Ever SpendApr 3, 2019
Abigail Disney, heiress to the Disney fortune, on being raised with wealth.
My dispiriting, infuriating – and illuminating – time as a political telemaApr 3, 2019
The long read: What I learned about politics while phone-banking for the Democrats
A Drug Shows an Astonishing Ability to Regenerate Damaged Hearts and Other Body PartsApr 3, 2019
A once abandoned drug compound shows an ability to rebuild organs damaged by illness and injury
Every Living Creature – Truly*Adventurous – MediumApr 2, 2019
When a massive Caribbean volcano erupts, the island’s residents flee, leaving their beloved animals behind. As pets and livestock are…
How Anna Delvey Tricked New York’s Party PeopleApr 2, 2019
Somebody had to foot the bill for Anna Delvey’s fabulous new life. The city was full of marks.
The Day the Dinosaurs DiedApr 2, 2019
A young paleontologist may have discovered a record of the most significant event in the history of life on Earth.
This woman quit her job to live on the road. Now capturing life on the roadApr 2, 2019
From artists to advocates, a new book highlights women in the outdoors.
The Underground Railroad of North Korea - GQApr 2, 2019
The story of a desperate North Korean woman who risked her life to reach freedom, and of the complicated man who led the way.
Casting Curses and Love Spells with the Most Powerful Witches in RomaniaApr 2, 2019
Witchcraft is very much alive in Romania, and even politicians fear its power. We join the country’s most famous witch dynasty and partake in their yearly rituals.
The Brain That Remade ItselfApr 1, 2019
Doctors removed one-sixth of this boy’s brain — and what was left did something incredible
‘In Afghanistan, We Laugh Differently’Apr 1, 2019
For a handful of teenage girls, robotics offered a reprieve from their violent, patriarchal country. Now they are back home, with the Taliban poised to gain power.
The Last Ride of Cowboy BobApr 1, 2019
The feds knew him as a prolific bank robber. But the bearded man who eluded them for so long was not who they imagined him to be. And absolutely no one expected the story to end the way it did.
Heaven Can Wait: The Hidden Genius of Elaine May - The RingerMar 28, 2019
Improvising legend. Filmmaking maverick. Comedy savant. Screenwriting secret weapon. Elaine May is one of the most important people in American pop cultural history. Why isn’t she more celebrated? That’s exactly how she wants it.
A US$28 million Picasso masterpiece was missing for 20 years, until the artMar 28, 2019
Art historian Arthur Brand managed to track down the 1983 painting Buste de Femme (Dora Maar), which went missing from a Saudi prince’s boat in 1999.
I wrote a story that became a legend. Then I discovered it wasn’t true. - CMar 25, 2019
In 2003, with what felt like an angel on my shoulder, I wrote a story that became a myth. It was a once-in-a-lifetime piece. An emblem for human courage in the face of adversity, and an inspiration for motorcyclists like me, that swept the world in its small way. It would have been the story […]
How the music of 1950’s Cuba revolutionized the sound of young SenegalMar 25, 2019
“Dakar was where everyone came to make music.”
Who Still Buys Wite-Out, and Why?Mar 25, 2019
Correction fluids have improbably outlasted the typewriter and survived the rise of the digital office.
Boy, 12, said to have created nuclear reaction in playroom labMar 25, 2019
Hobbyists say Jackson Oswalt of Tennessee is youngest person to achieve fusion
The Quest to Acquire the Oldest, Most Expensive Book on the Planet | LiteraMar 25, 2019
A wooden box containing one of the most valuable books in the world arrives in Los Angeles on October 14, 1950, with little more fanfare—or security—than a Sears catalog. Code-named “the commode,” …
Buc-ee’s: The Path to World DominationMar 25, 2019
Beaver Aplin built the quirky convenience chain into a Texas empire. Will his tactics translate outside the state?
A journey to the Disappointment IslandsMar 22, 2019
In 1765, an English explorer gave two islands a rather unfortunate name that has sheltered them from the world and preserved one of Earth’s last paradises.
100-Year-Old Negatives Discovered in Block of Ice in AntarcticaMar 21, 2019
For the past 100 years, a box of never-before-seen negatives has been preserved in a block of ice in Antarctica. Recently, Conservators of the New Zealand
The Dark Romance and Grim Reality of Life in the French Foreign Legion | VaMar 21, 2019
Legionnaires need war, and Afghanistan is winding down. But there's always the hopeless battle against rogue gold miners in French Guiana . . .
What a beautiful tiny house in rural Japan can teach us about the health ofMar 20, 2019
Guests are transforming the sleepy town into a major destination for tourists seeking the "real Japan."
How Turkish coffee destroyed an empireMar 16, 2019
Kahve was a favourite drink of the Ottoman Empire’s ruling class. Little did they know it would one day hasten the empire’s demise
The Home Of SXSW Is So Much More Than That: How Austin Got Weird : NPRMar 15, 2019
A new book, Austin to ATX, explains the creative, contrarian history of the Texas capital. As South By Southwest ravages a large swath of the city, let's take a look back.
The Believer — The California Sunday MagazineMar 15, 2019
Why the world was wrong about the "worst Olympian ever."
The History of the Color Blue: From Ancient Egypt to the Latest Scientific DiscoveriesMar 14, 2019
Some scientists believe that the earliest humans were actually colorblind, and had no concept of the color blue.
Is This the Greatest Photo in Jazz History?Mar 12, 2019
A quiet Sunday night in 1953. The Dodgers had just won the pennant. J.F.K. and Jacqueline Bouvier had just married. And four titans of bebop came together in a dive bar for a rare jam session.
The Prized Pepper That Comes From a Single New Mexican TownMar 9, 2019
But can it be grown anywhere else?
The Female Chef Making Japan’s Most Elaborate Cuisine Her OwnMar 6, 2019
From 2019: How Niki Nakayama’s kaiseki restaurant became a highly coveted reservation in L.A.
The Exile of Rick PitinoMar 6, 2019
In 2017, the Hall of Fame Louisville coach’s career collapsed under a string of scandals, leading to his firing from the school he had coached for 16 years. Now, Pitino is finding himself in Greece, coaching Panathinaikos, working for a self-styled Bond
‘The Island Always Brings You Back’: Finding a Caribbean Home (Published 2019)Mar 5, 2019
A writer never knew her family’s house on St. Thomas, in the U.S. Virgin Islands, but discovering it, and her history, became an obsession.
Texas Monthly Recommends: Soaking Up the Sounds on Saturday Night with JoeMar 3, 2019
Plus, explosive photography from Austin, instrumentals from Billy Preston, and a podcast investigation of Anna Nicole Smith.
Culture Shock for French in Quebec: ‘We Smoke Cigarettes, They Smoke Pot’ (Published 2019)Feb 28, 2019
Thousands of French people are coming to live in Quebec and discovering that a common language doesn’t necessarily mean a common culture.
This Picture Has No Red Pixels—So Why Do the Strawberries Still Look Red? -Feb 27, 2019
Color constancy continues to confound us.
Syria's wall of impunity begins to crackFeb 22, 2019
by Pauline Brosch (Le Monde diplomatique - English edition, February 2019)
“She Never Looks Back”: Inside Elizabeth Holmes’s Final Months at TheranosFeb 21, 2019
At the end, Theranos was overrun by a dog defecating in the boardroom, nearly a dozen law firms on retainer, and a C.E.O. grinning through her teeth about an implausible turnaround.
Who Killed Tulum?Feb 20, 2019
Greed, gringos, diesel, drugs, shamans, seaweed, and a disco ball in the jungle.
The hunt to catch the fish piratesFeb 19, 2019
For 10 years, a rogue fishing vessel and its crew plundered the world’s oceans, escaping repeated attempts of capture. Then a dramatic pursuit finally netted the one that got away.
The Caviar Con - LongreadsFeb 17, 2019
When caviar-crazed Eastern Europeans flocked to Warsaw, Missouri to poach eggs from a vulnerable species of fish, federal agents went undercover and spent two years to build a case against them.
The Battle for the Soul of America in Garden City, KansasFeb 17, 2019
The Somali refugees living in a small small meatpacking town in Kansas loved America. But so did the locals who tried to kill them.
This Yacht Influencer Has the Perfect Life. Don't You Feel Sorry for Him?Feb 15, 2019
Seated at a table on the rear deck with Lindsay Lohan and her entourage, I spotted Alex Jimenez — a professional yacht influencer.
OTL: The inside story of how Bob Costas got yanked from the Super BowlFeb 12, 2019
Conversations with Bob Costas reveal for the first time how the broadcasting icon went from fronting America's most popular sport to being excised from last year's Super Bowl and, ultimately, ending his nearly 40-year career with NBC.
Abuse of FaithFeb 11, 2019
Since 1998, roughly 380 Southern Baptist church leaders and volunteers have faced allegations of sexual misconduct. They left behind more than 700 victims.
Lost in the Valley of DeathFeb 10, 2019
Justin Alexander went searching for higher meaning. No one expected the quest to end in a search for his body.
A Surgeon Reflects On Death, Life And The 'Incredible Gift' Of Organ TranspFeb 10, 2019
Joshua Mezrich has performed hundreds of kidney, liver and pancreas transplants. He shares stories from the operating room in his book, When Death Becomes Life.
The Nazi Interrogator Who Revealed the Value of KindnessFeb 10, 2019
Thanks in part to the work of Hanns Scharff and a slew of studies on interrogation techniques, we know it's best to be genuinely friendly no matter who you're trying to get information out of.
An Interview With the Realtor Selling the Suburban House With the Sex RoomFeb 9, 2019
An interview, interrupted by angry neighbors.
A Short History of Punk: From Late 50s Rockabilly and Garage Rock to The RaFeb 7, 2019
Seems there was a time when the dominant story of punk was the story of British punk. If you knew nothing else, you knew the name Sid Vicious, and that seemed to sum it up.
Death and Valor on an American Warship Doomed by its Own NavyFeb 7, 2019
Investigation finds officials ignored warnings for years before one of the deadliest crashes in decades.
How a Freak Accident HappensFeb 3, 2019
Over two years after 10-year-old Caleb Schwab lost his life on the tallest waterslide in the world, the amusement park industry has yet to fully reckon with the tragedy.
A Guide to the Resplendent Riads of MarrakechFeb 2, 2019
An insider's guide to the riads of Morocco—and whether they're right for you.
The Deported AmericansFeb 2, 2019
Forced to live in an unfamiliar country, the U.S.-born children of deportees are a generation left in between.
The Desperado - The Atavist MagazineFeb 2, 2019
In April 2018, a blind man with one foot robbed a bank in Austin, Texas. This is a heist story—but unlike any you’ve ever read.
(29) Harry Patch: The Last Tommy - YouTubeJan 31, 2019
This truly wonderful film, first broadcast in 2009, examines the life and times of a truly wonderful old gentleman, Britain's last fighting survivor of the Great War, Harry Patch. Harry died in 2009 at the age of 111 years, one month, one week and one day. See the excellent Wikipedia article on him and 'Veterans of the Great War', also on my channel. Uploaded for educational purposes only.
How an Olympic Hopeful Robbed 26 Banks on His BikeJan 30, 2019
Tom Justice was once a cyclist chasing gold. Then he began using his wheels for a much different purpose: stickups.
The Secret Sushi Bar on the 10th FloorJan 28, 2019
A controversial chef has created a sort of sushi speakeasy in a hotel room. It’s not easy to get a reservation. For one thing, there are only four seats at the bar.
The Plot to Kill George WashingtonJan 26, 2019
In The First Conspiracy, thriller writer Brad Meltzer uncovers a real-life story too good to turn into fiction
The Tech RevoltJan 26, 2019
A conversation with the engineers, designers, and research scientists pushing for a more ethical Silicon Valley.
The Mysterious Life (and Death) of Africa’s Oldest TreesJan 18, 2019
On the plight of the baobab tree.
How a Stroke Turned a 63-Year-Old Into a Rap LegendJan 18, 2019
The story of Dr. Sherman Hershfield, who became Dr. Rapp.
Well, That Was One Hell of a Ride | By Richard JeffersonJan 16, 2019
Any idiot can get married. Any idiot can be a father. An NBA title? That’s work. That’s worth crying over.
Arborists Are Bringing the 'Dinosaur of Trees' Back To LifeJan 14, 2019
Arborists are cloning saplings from the stumps of the world's largest, strongest, and longest-lived trees -- felled for timber more than a century ago -- to create redwood "super groves" that can help fight climate change. "Using saplings made from the basal sprouts of these super trees to plant new...
Science’s pirate queenJan 13, 2019
Alexandra Elbakyan runs Sci-Hub, a website with over 64 million academic papers available for free to anybody in the world.
Underrated | By Stephen CurryJan 13, 2019
You didn’t think this was one of those fairytales where the kid gets some pep talk, and everything changes right? It REALLY isn’t that.
"Leave No Soldier Behind"Jan 11, 2019
The unsolved mystery of the soldier who died in the watchtower.
The Strange and Mysterious Death of Mrs. Jerry Lee Lewis – Rolling StoneJan 11, 2019
Was Jerry Lee Lewis' fourth wife murdered, and did the man known as "the Killer" do it?
Beautiful But Deadly: The Creepiest Devices From Medicine’s Grisly, Leech-FJan 10, 2019
[caption id="attachment_78739" align="aligncenter" width="483"] Close-up of an Auzoux anatomic male manikin, made of hand-painted papier mâché, circa 18...
The castaway tribal woman who spent 18 years alone on an island…Jan 10, 2019
Image credit: Babbage CC BY-SA 3.0If you are fond of castaway tales, the story of a Juana Maria may not only fascinate you immensely but might also break your heart.The tribal woman was part of Nicoleño, an Aborigines tribe who used to inhabit the Channel Islands, 61 miles off the coast of California. This woman solely survived on her island for 18 years before she was rescued in 1853 by Captain George Nidever, a fur trapper and sailor by trade.So how did she end up at this deserted island? For c...
Pickup™ turns romance into a commodity for male consumption | Aeon EssaysJan 10, 2019
The pickup industry mates market logic with the arts of seduction – turning human intimacy into hard labour
On the Trail of the World's Most Daring Egg SmugglerJan 9, 2019
For decades Jeffrey Lendrum helicoptered up and rappelled down to aeries on cliff faces from Patagonia to Quebec, snatching unhatched raptors and selling them, investigators believe, to wealthy Middle Eastern falconers. This week in London, one of the most bizarre criminals in modern history goes on trial for the fourth time. Here is his story.
The blind spot of science is the neglect of lived experience | Aeon EssaysJan 9, 2019
It’s tempting to think science gives a God’s-eye view of reality. But we forget the place of human experience at our peril
Brannock Device History: A Machine That Measures FeetJan 9, 2019
How the Brannock Device, a measuring tool you’ve definitely seen but don’t know the name of, made it a lot easier to figure out our shoe size.
How a soccer agent and Chinese billionaire aimed to trade in playersJan 7, 2019
The Portuguese super-agent Jorge Mendes joined forces with investors from Shanghai and planned to cash in on buying and selling athletes, documents show.
The Story of Dyngo, a War Dog Brought Home From CombatJan 7, 2019
I brought a seasoned veteran of the conflict in Afghanistan into my home—and then things got wild
The French Burglar Who Pulled Off His Generation’s Biggest Art HeistJan 7, 2019
A profile of the climber and thief Vjeran Tomic, dubbed Spider-Man by the French press, who describes robbery as an act of imagination.
The French Burglar Who Pulled Off His Generation’s Biggest Art HeistJan 7, 2019
The skilled climber and thief Vjeran Tomic, whom the French press referred to as Spider-Man, has described robbery as an act of imagination.
The King of Adventure Stares Down DeathJan 3, 2019
A rodeo cowboy, skydiver, firefighter, ultramarathoner and motorcycle racer, Coach Stroud is a 71-year-old badass. And he’s determined to die on his own terms.
Deal-Master Debbane: Meet The Secretive Lebanese Immigrant Behind Oprah’s WJan 1, 2019
With eye-popping gains in everything from gourmet dog food to graham crackers and diet plans, Invus’ Raymond Debbane is rewriting the rules of private equity.
How a Real-Estate Scuffle Turned into a True Tale of Miami ViceDec 31, 2018
They’re known as the Jills. They’re two of America’s top realtors, selling the glitziest mansions in Miami. Then a place went missing—and everyday greed blossomed into full-blown extortion.
The unbelievable tale of a fake hitman, a kill list, a darknet vigilante...Dec 26, 2018
Hitman-for-hire darknet sites are all scams. But some people turn up dead nonetheless
The game of their lives was 25 years ago. They’re still replaying it in theDec 24, 2018
The exploits of a high school football team can become small-town legend. For the Prestonsburg Blackcats of Eastern Kentucky, the 1993 season “was like something out of a movie, if you’ve ever seen ‘Hoosiers,’ ” one coach said. Reality, however, left more complicated memories.
Max Cooper - EmergenceDec 24, 2018
Emergence is the story of natural laws and processes, their inherent beauty, and their action to yield the universe, us and the world we live in.
Was History Fair to the Triangle Shirtwaist Factory Owners? | At the SmithsDec 21, 2018
Charged with manslaughter, the owners were acquitted in December 1911. A Smithsonian curator reexamines the labor and business practices of the era
An Elephant Crackup? - The New York TimesDec 21, 2018
Attacks by elephants on villages, people and other animals are on the rise. Some researchers are pointing to a species-wide trauma and the fraying of the fabric of pachyderm society.
The Secret Baby Catchers of AlabamaDec 21, 2018
They work in hotel rooms, Airbnbs and used RVs just over the state line, so women can give birth on their own terms.
The Yoda of Silicon Valley (Published 2018)Dec 17, 2018
Donald Knuth, master of algorithms, reflects on 50 years of his opus-in-progress, “The Art of Computer Programming.”
My Dad's Friendship With Charles BarkleyDec 16, 2018
How a cat litter scientist from Iowa ended up in an NBA star’s inner circle.
The Bleeding Edge: a terrifying, enraging look at the corrupt, deadly worldDec 16, 2018
Prior to 1976, the FDA did not regulate medical implants, and so shoddy and even deadly devices proliferated, inserted into Americans' body. When the FDA finally decided to regulate implants,…
A Professional Safecracker Reveals His Craft - The AtlanticDec 16, 2018
Charlie Santore sees Los Angeles from the inside, by breaking into safes whose owners can no longer unlock them.
Ruth Bader Ginsburg on the power of ‘difficult women’Dec 16, 2018
The Notorious R.B.G.'s influence on American politics and modern culture has been an inspiration for women in the United States and throughout the world.
Tarrare: The Medical Marvel Who Could Eat Anything — And DidDec 16, 2018
"The dogs and cats fled in terror at his aspect, as if they had anticipated the kind of fate he was preparing for them."
In praise of parasitesDec 16, 2018
They worm into snails and infect the brains of fish. They’ve also found their way into Kevin Lafferty’s heart. He sees them as beautiful examples of sophisticated evolution, and as keys to ecosystem balance.
“Looking for Elvis”: An Oral History of Saddam Hussein's CaptureDec 14, 2018
In early 2003, long on confidence and short on foresight, the United States invaded Iraq and sent its despot into hiding. Fifteen years ago this month, we found him. (And that’s when our real challenges began.) Here, the harrowing story of Saddam Hussein’s capture, as told by those who pulled it off.
Brittney Griner and Diana Taurasi opted to play in Russia both for money anDec 10, 2018
Unlikely comrades Diana Taurasi and Brittney Griner play overseas for the money. As it turns out, they also simplify their lives.
An Archive of 800 Imaginative Propaganda Maps Designed to Shape Opinions &Dec 10, 2018
We tend to take a very special interest in archives and maps on this site—and especially in archives of maps. Yet it is rare, if not unheard of, to discover a map archive in which every single entry repays attention.
Syria’s Last Bastion of FreedomDec 10, 2018
Amid the brutal civil war, a town fought off the regime and the fundamentalists—and dared to hold an election. Can its experiment in democracy survive?
https://www.rbth.com/longreads/jackals/Dec 10, 2018
Mr WuDec 7, 2018
‘A middle-aged woman in teddy bear-spangled pajamas came hurtling down on a flatbed tricycle.’ Pallavi Aiyar returns to China.
The Woman Who Outruns the Men, 200 Miles at a TimeDec 6, 2018
Courtney Dauwalter specializes in extremely long races. But her success in winning them has opened a debate about how men’s innate strength advantages apply to endurance sports.
Ansel Adams’ pictures of Los Angeles recall an era of war factories and 10-cent hot dogsDec 3, 2018
We’ve all seen Ansel Adams’ luscious black-and-white images of Yosemite. Lesser known are his pictures of life in World War II-era Los…
“I Don’t Want to Shoot You, Brother”Nov 30, 2018
In 2016, a West Virginia police officer came upon a young man in distress who asked the officer to shoot him. The officer didn’t. A few minutes, another officer did. Only one of them lost their job.
The Expectations and Realities of Six-Man Football in Small-Town TexasNov 29, 2018
On the football field, one team went from six to eleven. Another went from eleven to six. And both faced challenges they didn’t expect.
Looking Inside My Heart - LongreadsNov 28, 2018
Jen Hyde discovered that her heart valve was made by women working in a factory near her childhood home. Getting to know them brought her closer to her own mother.
The Triple Jeopardy of a Chinese Math ProdigyNov 26, 2018
A secretive hedge fund used the British court system to punish an IP thief‚ even though he was already in jail.
The Fire and Everything AfterNov 22, 2018
After flames engulfed an Atlanta highway last year, police arrested Basil Eleby for arson. The fire could have destroyed his life. Instead, it may have saved it.
Predatory Lending Practices: Business Borrowers Hurt By ’Confession of JudgNov 21, 2018
How an obscure legal document turned New York’s court system into a debt-collection juggernaut.
Tossing a Bird That Does Not Fly Out of a PlaneNov 21, 2018
A Thanksgiving story about the limits of human empathy.
The amazing craft of samurai swordsNov 20, 2018
The ancient traditions reveal an astonishing understanding of chemistry.
A day in the life of Lloyd Squires, Vermont's 'best' bagel makerNov 20, 2018
Some consider him a master. That takes work.
The Captivating Story Behind the Making of Ansel Adams’ Most Famous PhotogrNov 19, 2018
Ansel Adams captured many an American landscape as no photographer had before or has since, but in his large catalog you'll find few pictures as immediately striking as — and none more famous than — Moonrise, Hernandez, New Mexico.
An Oral History of Laurel Canyon, the Sixties and Seventies Music MeccaNov 18, 2018
They made music together, took drugs, and slept together. But none of the legends of Laurel Canyon, including Joni Mitchell and David Crosby, remember it the same way.
Built to Burn - 99% InvisibleNov 17, 2018
The Santa Ana winds of Southern California are sometimes called the “Devil Winds.” They pick up in the late summer and early fall, sweeping down from the mountains and across the coast. They’re hot and dry, and known for creating dangerous fire conditions. In late November of 1980 — as the Santa Anas blew in
Will Stanich's Ever Reopen? Why America's Best Burger Spot Closed Down - ThNov 17, 2018
If you love a burger...
Crossing the Sahara in the Fourteenth Century | François-Xavier FauvelleNov 16, 2018
How to make the trip from Sijilmasa to Oualata, circa 1352.
A new wave of grain - Boulder WeeklyNov 16, 2018
When it comes to grain, the future looks like the past. Go back a half-century in Boulder County, and there’s Old Man Webber coming into town with his portable combine. Word gets passed around and Webber goes to every farm, home and plot growing wheat and chops it. Then Beth near Valmont gets her seed […]
Secret Life of a Psych Ward Security GuardNov 11, 2018
My brute strength and wrestling skills made me a natural fit to maintain order. But what I really wanted to do was help people.
The Stranger in the ShelterNov 10, 2018
Two people went for a hike on the Appalachian Trail. Only one made it out.
Moonshine and the Mountaineers: West Virginia's tailgate traditionNov 8, 2018
The potent homemade whiskey is a hand-me-down through generations and a favorite of visiting fans. It's also illegal -- not that anyone cares.
The Florida Man Can’t | Nathan Taylor PembertonNov 7, 2018
The Florida of the abstract joke is a worthy cipher for America’s signature blend of incompetent savagery.
A Debaculous FiascoNov 7, 2018
The most expensive, bizarre, and obscure work ever created by Dr. Seuss.
The Lessons Of Dien Bien Phu | Hoover InstitutionNov 7, 2018
The most consequential military engagement in Southeast Asia in the 20th century is the 1954 Battle of Dien Bien Phu. It was fought ostensibly between the French and the communist-led Vietmin at Dien Bien Phu, an obscure valley bordering China, in the remote northwestern part of what was then French Indochina. The battle ended with a humiliating defeat for the French, which brought down the French government, ended French colonial rule in Asia, ushered in America’s epic military involvement in the region for decades to come, and fundamentally changed the global geostrategic landscape.
War of the WorldsNov 3, 2018
For the 80th anniversary of Orson Welles' 1938 radio play "The War of the Worlds," we take a deep dive into one of the most controversial moments in broadcasting history.
Is Agnes Gund the Last Good Rich Person?Nov 3, 2018
Ms. Gund is a wealthy white woman who spent a lifetime fighting for racial justice. At 80, she’s the homecoming queen of the philanthropy world. She’s also running out of cash.
The ShipbreakersOct 31, 2018
On a desolate, six-mile stretch of Indian beachfront, the bulk of the world’s big ships are dismantled for scrap. Though a ship is usually worth over $1 million in steel, the margins are low, the leftovers are toxic, and the labor—which employs huge
A Cardiologist’s 9/11 Story - Issue 64: The UnseenOct 28, 2018
From trauma to arrhythmia, and back again.
The Halfway HouseOct 28, 2018
This man, Tom Goodnough, looked guilty as he slunk along, but that was how he always looked even when he'd done nothing wro
From Lithuania, with loveOct 28, 2018
In February 2015, a cryptic email reached former NPR correspondent Ann Cooper from around the globe and across 28 years. It would pull her back into one of the most extraordinary reporting jobs in her career.
What the Hell Happened to Darius Miles? | By Darius MilesOct 28, 2018
Dudes like me ain’t supposed to talk about this type of stuff. I’m about to tell you some real shit. Things I haven’t told anybody.
Buying My First Gun in the Dark Heart of AmericaOct 25, 2018
At first I wondered why we needed to go to a gun show to buy a gun. After all, Charles lives about three miles from a store called Frank’s Gun & Repair. It’s at the corner of Highway 51 and 121…
The Unsolved Murder of an Unusual BillionaireOct 25, 2018
Last December, a Canadian pharmaceuticals executive and his wife were found strangled in their home. No one knows who did it or why, but everyone has a theory.
Sword Swallowers and Shrunken Heads: An Ode to Johnny Fox and His FreakatorOct 25, 2018
[caption id="attachment_78396" align="alignnone" width="600"] This huge '60s sideshow banner—roughly 8 by 9.5 feet—was painted by esteemed circus arti...
The elephant as a personOct 24, 2018
Elephants might have the necessary capacities for personhood – we just need to help them acquire the cognitive scaffolding
The man who has eaten at more than 7,300 Chinese restaurants, but can’t useOct 23, 2018
David R. Chan’s love of lists and determination never to eat at the same place twice has seen him become an accidental expert on Chinese-American history. Just don’t call him a foodie
Hemingway, a Lost Suitcase, and the Recipe for StupidityOct 22, 2018
No matter how good our intentions, sometimes we do incredibly stupid things, like lose a suitcase full of priceless writings. In this article, learn how to recognize the potential for stupidity before it happens.
How a Gang of Hedge Funders Strip-Mined Kentucky’s Public PensionsOct 22, 2018
Kentucky’s willingness to gamble massively on high-risk alternative investments for its pensions has made the state an easy mark for Wall Street hucksters.
How Being a Line Cook Ruined MeOct 21, 2018
When you exist outside of regular society, when the nine-to-five gig is as foreign to you as going somewhere hot for a vacation, it makes it easier to indulge in the wilder, untamed side of things.
How the Finnish survive without small talkOct 20, 2018
Their desire for avoidance is a predisposition so common that it’s become hard-baked into Finnish culture.
For Want of a NailOct 20, 2018
Without a good shoeing, a horse can indeed be lost. Enter the farrier.
Dandelion seeds fly using ‘impossible’ method never before seen in natureOct 18, 2018
Nature - The seeds contain a lot of open space, which seems to be the key to sustaining flight.
The Love Story that Upended the Texas Prison System – Texas MonthlyOct 12, 2018
In 1967, a 56-year-old lawyer met a young inmate with a brilliant mind and horrifying stories about life inside. Their complicated alliance—and even more complicated romance—would shed light on a nationwide scandal, disrupt a system of abuse and virtual slavery across the state, and change incarceration in Texas forever.
Proof of life: how would we recognise an alien if we saw one?Oct 11, 2018
Proof of life: what evidence would it take to convince you that alien intelligence had been found?
Small-Town InjusticeOct 11, 2018
The shooting of a civilian exposes the underbelly of a small town police department.
West Virginia’s Small-Town RevivalOct 10, 2018
Remote as they seem, communities just three hours from Washington, D.C., are more than a jumping-off point for world-class outdoor adventures.
My Bodyguard, My SelfOct 8, 2018
The author spent a day with three men in a high-end security detail to find out how it feels to be safe.
Death at Delta Sig: Heiress Wages a Million-Dollar War on FratsOct 7, 2018
A grieving mother fights for a new investigation into what happened to her son.
Meet the Undercover Crime Unit Battling Miami's Black Market of BirdsOct 7, 2018
Multimillion-dollar sales of songbirds heap pressure on species already in decline. We go inside the covert investigation to capture traffickers.
The Loneliest Democrat in AmericaOct 7, 2018
On the campaign trail in the most Republican congressional district in America.
The Missing Parents and the Melting GlacierOct 7, 2018
What happens when climate changes quickly in a previously frozen place? The ice gives up the bodies—and the secrets—of the past.
Narratively | SubstackOct 6, 2018
Discover extraordinary true stories celebrating the diversity of humanity. Click to read Narratively, a Substack publication with tens of thousands of subscribers.
Encounters: Afternoon Beers With a Former Sex PistolSep 29, 2018
John Lydon, the 62-year-old punk legend, was in New York for a new documentary about Public Image Ltd. But first, he wanted to shop and smoke in a bar.
My career as an international blood smugglerSep 28, 2018
For years, Kathleen McLaughlin smuggled American plasma every time she entered China, home to the world’s largest and deadliest blood debacle. She had no other choice
Dial-a-RideSep 25, 2018
Laughs, heartache and the winding road: life stories aboard a community bus in rural Wales
The Brilliant, Playful, Bloodthirsty RavenSep 21, 2018
A new book from Christopher Skaife is a beguiling, fascinating, and highly amusing account of the strangely magical birds.
The Best Life Ever Lived? | Current AffairsSep 15, 2018
Stan Brock was an adventurer and healthcare provider whose life combined excitement and compassion…
The mind of an anthillSep 15, 2018
Can we use the tools of psychology to understand how colonies of social insects make decisions?
Inside the Mind of a Bodega Signmaker - CityLabSep 15, 2018
How these curbside canvases came to be, according to the men who make them.
He Was a First-Round Draft Pick in the NBA. 14 Years Later, He Was Found DeSep 15, 2018
A long-dormant police investigation gives the case new life.
What Happened at the LakeSep 15, 2018
A father took his 10-year-old fishing. She fell in the water and drowned. It was a tragic accident—then he was charged with murder.
The frozen bodies of AntarcticaSep 14, 2018
Beneath layers of snow and ice on the world’s coldest continent, there may be hundreds of people buried forever. Martha Henriques investigates their stories.
Blood and OilSep 9, 2018
Mexico’s drug cartels are moving into the gasoline industry—infiltrating the national oil company, selling stolen fuel on the black market and engaging in open war with the military.
A Turbulent MindSep 9, 2018
Andrew Goldstein’s crime set in motion a dramatic shift in how we care for the violent mentally ill. Including for himself—when he’s released this month.
The enormous lakes in the airSep 7, 2018
Attempts to conjure water ‘from thin air’ might offer relief for drought-ridden regions – and it could even help the rest of us go off-grid.
Losers' Lunch - LongreadsSep 5, 2018
Dining out with courtsiders, a rogue, impish species in the tennis ecosystem.
Riding With the Diplomatic Couriers Who Deliver America's Secret MailSep 5, 2018
The little-known Diplomatic Courier Service works like your interoffice mail system, but on a planetary scale, with complex protocols to ensure the safe transport of sensitive material by land, air, and sea.
Meet the table busser who’s worked at the same Wilmette pancake house for 5Sep 4, 2018
An earlier version of this story and headline incorrectly characterized Othea Loggan’s base salary as minimum wage. After 54 years, he makes $2.75 more than the minimum wage before tips. R…
Rare Condition Means Blind Woman Can Only See Moving ObjectsAug 31, 2018
After suffering a stroke, a woman was left blinded, only able to see movement.
The Mauritania Railway: backbone of the SaharaAug 31, 2018
Careening through the desert, a massive railway sustains life in northwest Africa
Mystery of the cargo ships that sink when their cargo suddenly liquefiesAug 31, 2018
We know how to stop solid minerals converting to a liquid state mid voyage – so why does it still happen?
How a Brutal Mafia Enforcer Became a Deadly Serious MarathonerAug 31, 2018
Discover extraordinary true stories celebrating the diversity of humanity. Click to read Narratively, a Substack publication with tens of thousands of subscribers.
How to be human: the man who was raised by wolvesAug 29, 2018
The long read: Abandoned as a child, Marcos Rodríguez Pantoja survived alone in the wild for 15 years. But living with people proved to be even more difficult
It Came From the ’70s: The Story of Your Grandma’s Weird CouchAug 28, 2018
Futzing around on social media, as one does, I recently stumbled upon a meme that hit close to home. Over a picture-patterned sofa in an autumnal-colored ...
The Man Who Walked BackwardAug 28, 2018
When the Great Depression put Plennie Wingo’s bustling Abilene cafe out of business, he tried to find fame, fortune, and a sense of meaning the only way he knew how: by embarking on an audacious trip around the world on foot. In reverse.
How a hacker network turned stolen press releases into $100 million - The VAug 24, 2018
International hackers based in Ukraine stole unpublished press releases and passed them to stock traders to reap tremendous profits.
The Strange Life and Mysterious Death of a Panther-Trapping, Gator-WrestlinAug 22, 2018
Discover extraordinary true stories celebrating the diversity of humanity. Click to read Narratively, a Substack publication with tens of thousands of subscribers.
Narratively | SubstackAug 20, 2018
Discover extraordinary true stories celebrating the diversity of humanity. Click to read Narratively, a Substack publication with tens of thousands of subscribers.
The Super Bowl of BeekeepingAug 20, 2018
Almond growing in California is a $7.6 billion industry that wouldn’t be possible without the 30 billion bees (and hundreds of human beekeepers) who keep the trees pollinated — and whose very existence is in peril.
The Great Chinese Art HeistAug 18, 2018
Is the Chinese government behind one of the boldest art-crime waves in history?
SnowboundAug 18, 2018
Pinned down in deep snow and running out of food, veteran thru-hiker Stephen “Otter” Olshansky scraped his way to a campground latrine, holed up inside, and prayed for help to arrive.
The High-Stakes Race to Create the World's First Artificial Heart – Texas MAug 17, 2018
In this exclusive excerpt from 'Ticker: The Quest to Create an Artificial Heart,' world-renowned Houston surgeon Bud Frazier races to help an ailing patient by implanting a revolutionary device that may one day save millions of lives.
How a Transplanted Face Transformed a Young Woman’s LifeAug 16, 2018
At 18, Katie Stubblefield lost her face. At 21, she became the youngest person in the U.S. to undergo the still experimental surgery. Follow her incredible story.
What It Takes to Hold Your Breath for 24 Minutes (Yeah, It’s a Thing) | WIRAug 15, 2018
The world record stands at 24 minutes 3 seconds. How much can it improve?
Into the Cave of Chile’s WitchesAug 15, 2018
Did members of a powerful society of warlocks actually murder their enemies and kidnap children?
The Spy Who Drove MeAug 15, 2018
Last week, as America’s top national security experts convened in Aspen, a strangely inquisitive Uber driver showed up, too.
Predators, Prey, and Vodka - Issue 63: HorizonsAug 9, 2018
Surveying muskoxen in the Russian far north.
Why I Ripped The Same CD 300 TimesAug 5, 2018
The pilots who risk their lives flying tiny planes over the AtlanticAug 4, 2018
Ferry flying is a lucrative but high-risk industry. Elite pilots deliver small planes across oceans and continents - distances these aircraft were not designed to fly.
Meet the Anarchists Making Their Own MedicineJul 30, 2018
The Four Thieves Vinegar Collective is a network of tech-fueled anarchists taking on Big Pharma with DIY medicines.
The Vineyard Where Retired French Soldiers Make WineJul 7, 2018
In Provence, Foreign Legion veterans report for duty among the vines.
Feature: Who’s Afraid of the Big Bad Wolf Scientist?Jul 6, 2018
Rob Wielgus was one of America’s pre-eminent experts on large carnivores. Then he ran afoul of the enemies of the wolf.
Death and Dying in the Canadian ArcticJul 2, 2018
The following is from Nowhere Magazine’s 2016 print annual. * The flight to Cape Dorset, an Inuit community on a small island in the Canadian Arctic, was due to depart in minutes, but Inuit e…
An Ohio Startup Rebuilds Lives One Piece of Fried Chicken at a Time - POLITJul 2, 2018
A millennial entrepreneur hires from inmates and homeless people who struggle to find work even in a strong economy.
Inside the 20-year decline of Toys R UsJul 1, 2018
Cost cuts, stressed employees, intercompany rivalries, dirty floors, dusty rafters, glitchy IT, fudged metrics: The people who ran the failed toy retailer's stores know what went wrong.
The Counterfeit Queen of Soul | Arts & Culture | SmithsonianJul 1, 2018
A strange and bittersweet ballad of kidnapping, stolen identity and unlikely stardom
What a Russian Smile Means - Issue 61: CoordinatesJun 25, 2018
How culture and history make American and Russian smiles different.
The Left Side of Steve Kerr’s BrainJun 8, 2018
Sammy Gelfand is the numbers guy behind the Golden State Warriors’ success. Some pretty good players help, too.
The All-American Bank HeistMay 20, 2018
Having fallen on hard times, a former football star and the pride of his small town decides to rob the local bank. His weapons of choice: Craigslist, bear mace, and an inner tube.
Jeff Pike, Texas’s Own Tony SopranoMay 19, 2018
Earlier this spring, Jeff Pike, the head of the infamous Texas-based Bandidos motorcycle club, went on trial in federal court for racketeering. Prosecutors called him a ruthless killer, the man behind one of the deadliest biker shoot-outs in American history, at the Twin Peaks restaurant in Waco. Pike, however, said he was just a good family man. On Thursday, jurors announced their verdict.
Inside the Final Days of Robin WilliamsMay 13, 2018
New York Times reporter Dave Itzkoff details the beloved star’s heartbreaking decline in this exclusive excerpt from Robin, his new biography.
The Most Unlikely D.A. In America - POLITICO MagazineMay 9, 2018
He’s a biker attorney who specialized in getting small-time defendants off. He’s considered a gang member by Texas police. And now he’s the county’s chief prosecutor. Can Mark Gonzalez change the system?
The Great Unsolved Mystery of Missing Marjorie WestMay 8, 2018
Discover extraordinary true stories celebrating the diversity of humanity. Click to read Narratively, a Substack publication with tens of thousands of subscribers.
Little Sunfish: The Robot That Could - LongreadsMay 7, 2018
How the best robot, "Little Sunfish," helped Japanese scientists understand the scope of the damage at the Fukushima Daiichi nuclear power plant.
The Great High School Impostor | GQMay 6, 2018
What Artur Samarin pulled off at a school in small-town Pennsylvania is one of the boldest hoaxes of our time.
Murder at the Alcatraz of the RockiesMay 1, 2018
The inside story of the first homicide in America’s most secure prison.
Murder at the Alcatraz of the Rockies — The Atavist MagazineMay 1, 2018
The inside story of the first homicide in America’s most secure prison.
Monsieur Bébé: The Brief, Strange Life of Raymond RadiguetApr 13, 2018
The seventeen-year-old took Paris by storm with his racy, amoral first novel. Shortly thereafter, a séance predicted his untimely death.
“The Clock Is Ticking”: Inside the Worst U.S. Maritime Disaster in DecadesApr 8, 2018
A recording salvaged from three miles deep tells the story of the doomed “El Faro,” a cargo ship engulfed by a hurricane.
What the Arlee Warriors Were Playing ForApr 8, 2018
On Montana’s Flathead Indian Reservation, basketball is about much more than winning.
Pretending to Be OkayMar 30, 2018
A profile of UConn basketball coach Geno Auriemma, who has not found peace despite unprecedented success.
Traffic: How Air Traffic Control Works | GQMar 30, 2018
At any given moment there are roughly 6,000 planes on their way to somewhere over American airspace. Getting them safely down to the ground will depend upon the efforts of a small group of controllers who, nearly without fail, get the job done despite long hours, grim working conditions, and ancient technology. Jeanne Marie Laskas journeys to the tower at LaGuardia Airport in New York City to find out how it all happens.
Coronado High - The Atavist MagazineMar 29, 2018
How a group of high school kids from a sleepy beach town in California became criminal masterminds.
Gangster’s paradise: how organised crime took over RussiaMar 24, 2018
The long read: Under Vladmir Putin, gangsterism on the streets has given way to kleptocracy in the state
Ball BreakersMar 12, 2018
“The reason women-only billiards tournaments exist is not because the players can’t beat men. It’s because they can.”
The Story of Dave and His Killer BreadMar 7, 2018
Dave’s Killer Bread has become a cult favorite across the nation, drawing in both health-conscious consumers and those who root for an unlikely success story. But you won’t find the full story on the bread packaging.
The Amazing Story of the Russian Defector Who Changed his MindFeb 24, 2018
The home phone of FBI special agent Michael Rochford rang in the middle of the night on August 2, 1985. He grabbed it and heard the voice of his FBI supervisor. “There’s a plane coming in, a high-level defector.” The day before, a Soviet man had walked into the US consulate in Rome. He had
The Tiger Balm story: how ointment for every ailment was created, fell outFeb 20, 2018
Analgesic balm in a hexagonal jar, launched in Rangoon by the Aw brothers in 1924, was a staple of Chinese families’ medicine cabinets for a generation. Today, Tiger Balm products have fans around the world, including Lady Gaga
The Daring Plan to Save a Religious Minority from ISIS | The New YorkerFeb 20, 2018
When the terrorist group attacked the Yazidis, a small group of American immigrants knew they could do something.
How New Zealand made Edmund Hillary, the man who conquered Everest - SBNatiFeb 12, 2018
AUCKLAND, NEW ZEALAND: WHERE THE WRITER FINDS A LOVELY CITY BUILT ON VOLCANOES, PUBLICLY LISTED PHONE NUMBERS, AND MANY SIGNS...
Meet the last practitioners of sfyria, Greece's whistling language | The OuFeb 12, 2018
On a small Greek island, practitioners of an ancient whistling language are holding onto their culture as it slowly dies out.
The Conqueror Who Longed for Melons - Gastro ObscuraFeb 12, 2018
Many Indian dishes can be traced back, indirectly, to a 16th-century, food-obsessed ruler named Babur.
An abandoned lifeboat at world’s endFeb 1, 2018
Breaking news: a credible solution to the Bouvet Island lifeboat mystery has been found. See comments for 22-27 May 2011, 12 November 2011, 17-20 March & 9 April 2016, and 28 December 2023. The…
What to Do When Your Brain Insists You’re Always on a Boat - Facts So RomanJan 30, 2018
Zvonimir Orec via Shutterstock Nautilus Members enjoy an ad-free experience. Log in or Join now . Last July, Chris Perry went on an Alaskan cruise with her family to celebrate her parents’ 50th wedding anniversary. When she boarded the massive Norwegian Sun cruise ship, she felt “a little woozy and weird” from the boat’s […]
The Noose Beneath the WavesJan 28, 2018
Fishing gear can pose a deadly threat to whales—and to those who try to save them.
The Long Fall of iHeart, Once the Most Powerful and Feared Player in RadioJan 24, 2018
Launched by two of the biggest names in Texas business, Clear Channel was once the most powerful—and feared—player in radio. Now rebranded as iHeartMedia, it’s on the brink of bankruptcy.
The Encyclopedia of the MissingJan 14, 2018
She keeps watch over one of the largest databases of missing persons in the country. For Meaghan Good, the disappeared are still out here, you just have to know where to look.
Twilight Of The Yellowstone WinterkeepersJan 10, 2018
With 50 years of solitude, Steven Fuller is a living legend in Yellowstone and an endangered 21st-century icon
Doctors: Christmas in the I.C.U.Dec 24, 2017
There’s an illusion that if you want something enough, even something as fantastical as avoiding death, you might just get it.
Explorer: In the California Desert: Vast Darkness, Vibrant Music, an OasisDec 22, 2017
In Wonder Valley, the silence makes its own kind of noise. And Twentynine Palms makes its own kind of music.
Revealed: The Secrets Of One Of The World's Dirtiest Banks And Its PowerfulDec 15, 2017
Blatant forgery. Snarling guard dogs. Shredded evidence. An incendiary cache of leaked documents reveals the farcical scramble inside one of the world’s dirtiest banks to conceal incriminating information from US government investigators – while some of the most prestigious accountants and lawyers on the planet used all their power to keep the bank in business.
A Lonely DeathDec 1, 2017
In postwar Japan, a single-minded focus on rapid economic growth helped erode family ties. Now, a generation of elderly Japanese is dying alone.
Baseball, BBQ, and Dead Ponies—A History of Fat Men’s Clubs in TexasNov 24, 2017
A peek inside the revelry and rivalry of Texas's fat men's clubs.
How an unpaid UK researcher saved the Japanese seaweed industryNov 21, 2017
After crops failed, botanist Kathleen Drew-Baker realized that nori wasn’t what it seemed.
Rough, smooth or deep: why the sound of a voice is multisensoryNov 16, 2017
Take the rough with the smooth: how the sound of a voice is multisensory, and creates interior meaning through metaphor
In the Land of Vendettas That Go On ForeverNov 10, 2017
In Northern Albania, vengeance is as likely a form of restitution as anything the criminal-justice system can offer.
‘Tiny House Hunters’ and the shrinking American dreamOct 27, 2017
Roxane Gay: "It is painfully transparent that people with tiny house budgets often have McMansion dreams"
The scientists persuading terrorists to spill their secretsOct 13, 2017
The long read: Expert interrogators know torture doesn’t work – but until now, nobody could prove it. By analysing hundreds of top-secret interviews with terror suspects, two British scientists have revolutionised the art of extracting the truth
Did Frank Sinatra Really Perform at My Grandma's High School?Sep 24, 2017
Because sometimes you have to fact-check your grandmother
Just Listen to This Extremely Remote Canadian Mechanic Talk About His Work TruckSep 24, 2012
After this walkaround, you'll love the rig, too.
The Nazi of Oak ParkSep 24, 2011
It was a stunning revelation: A respected high school custodian had been a concentration camp guard. This excerpt of a new book examines how the disclosure of a dark secret in the early ’80s divided a suburb.
Home - Works in ProgressAug 24, 2011
Works in Progress is an online magazine dedicated to sharing new and underrated ideas to improve the world, and features original writing from some of the most interesting thinkers in the world.
Was doomed US submarine caught by a monster whirlpool in the South China Sea?Oct 24, 2010
Newly released data from a giant whirlpool near the Paracel Islands could give fresh clues about a major US Navy incident.
Emma Carey: The skydiver who survived a 14000-foot fallAug 24, 2010
In 2013, Emma Carey went skydiving for the first time and experienced an absolute nightmare. This is why she refuses to let the accident define her.
Russia’s Espionage War in the ArcticSep 24, 2009
For years, Russia has been using the Norwegian town of Kirkenes, which borders its nuclear stronghold, as a laboratory, testing intelligence operations there before replicating them across Europe.
Troy Aikman ‘never lost at anything.’ He’s just now starting to enjoy it.Sep 24, 2009
'God's Quarterback' was the archetype American success story, but the triumphs everyone saw masked the inner turmoil no one knew about.
A Strange Encounter With A StrangerSep 24, 2002
We all need picked up out of a roadside ditch now and then
google-cloud
Deploying an Infrastructure as Code Project in GCP Using Terraform.Dec 28, 2022
The creation of resources in the cloud and the management of the lifecycle of these resources can be...
Cloud Computing Services | Google CloudDec 12, 2021
Meet your business challenges head on with cloud computing services from Google, including data management, hybrid & multi-cloud, and AI & ML.
Google Cloud Free ProgramFeb 2, 2021
Discover the free cloud features that come with the Google Cloud trial offer and more information on how to upgrade your account.
google-docs
14 Google Drive Add-Ons That Will Save Your Time Every DayAug 27, 2023
Quick Drive If you use Google Drive, you've probably encountered a situation when you need to quickly look something up in one of your documents or sheets. If you have many files, bookmarking may be challenging. Quick Drive is the permanent answer to this issue. With this Google Drive extension, you can search without opening the app. To use Quick Drive, click its icon in Chrome's toolbar. A panel will then display where you can type your search terms and quickly access the desired file or folder. This extension provides easy access to recently used and favored files and the
0x6b/libgsqliteMar 21, 2023
A SQLite extension which loads a Google Sheet as a virtual table. - 0x6b/libgsqlite
Using LLMs for Automated Data Categorization in Google SheetsSep 24, 2012
This post unveils a well-kept secret unknown to many: using externally hosted Large Language Models (LLMs) in Google Sheets to perform NLP tasks on text
gossip
Gossip and competitive altruism support cooperation in a Public Good gameSep 24, 2007
When there is an opportunity to gain a positive reputation, individuals are more willing to sacrifice their immediate self-interest. Partner choice creates opportunities for competitive altruism, i.e. individuals compete to be regarded as more generous ...
The Surprising Benefits of GossipSep 24, 2007
Social scientists are uncovering the intricate group dynamics of gossip
gpt
ChatGPT Containers can now run bash, pip/npm install packages, and download filesJan 26, 2026
One of my favourite features of ChatGPT is its ability to write and execute code in a container. This feature launched as ChatGPT Code Interpreter nearly three years ago, was …
GPT-5-CodexSep 24, 2025
OpenAI half-relased this model earlier this month, adding it to their Codex CLI tool but not their API. Today they've fixed that - the new model can now be accessed …
GPT-5: Key characteristics, pricing and model cardAug 7, 2025
I’ve had preview access to the new GPT-5 model family for the past two weeks, and have been using GPT-5 as my daily-driver. It’s my new favorite model. It’s still …
I sent ChatGPT Agent out to shop for meJul 19, 2025
We tested OpenAI’s ChatGPT Agent, currently only available via its $200-per-month Pro subscription.
ChatGPT agent System Card | OpenAIJul 19, 2025
ChatGPT agent System Card: OpenAI’s agentic model unites research, browser automation, and code tools with safeguards under the Preparedness Framework.
Can You Use ChatGPT To Learn a New Language?May 12, 2025
Can't find a human to practice a language with? I've been there. Here's why most of my interaction with ChatGPT is in other languages.
ChatGPT Operator system promptJan 26, 2025
Johann Rehberger snagged a copy of the [ChatGPT Operator](https://simonwillison.net/2025/Jan/23/introducing-operator/) system prompt. As usual, the system prompt doubles as better written documentation than any of the official sources. It asks users …
ChatGPT search vs. Google: A deep dive analysis of 62 queriesDec 26, 2024
A detailed analysis of ChatGPT search and Google's performance across 62 queries, with scoring metrics and practical examples.
Why Anthropic’s Claude Is a Hit with Tech InsidersDec 13, 2024
A.I. insiders are falling for Claude, a chatbot from Anthropic. Is it a passing fad, or a preview of artificial relationships to come?
ChatGPT Doesn’t Have to Ruin CollegeNov 10, 2024
The power of a robust honor code—and abundant institutional resources
OpenAI Adds Search Engine to ChatGPTOct 31, 2024
The popular online chatbot can now access and deliver information from across the internet in real time, including news, stock prices and sports scores.
Explore GPTsJul 26, 2024
Discover and create custom versions of ChatGPT that combine instructions, extra knowledge, and any combination of skills.
Introducing ‘Mark’, a Markdown CLI tool for GPT4o | Ryan ElstonJul 9, 2024
Introduction In this post, I want to introduce Mark, a simple CLI tool that uses Markdown and its syntax to interact naturally with the GPT4-vision/GPT4o models.
OranLooney.comJul 8, 2024
A Comprehensive Overview of Prompt Engineering for ChatGPTJun 30, 2024
Prompt engineering is crucial to leveraging ChatGPT's capabilities, enabling users to elicit relevant, accurate, high-quality responses from the model. As language models like ChatGPT become more sophisticated, mastering the art of crafting effective prompts has become essential. This comprehensive overview delves into prompt engineering principles, techniques, and best practices, providing a detailed understanding drawn from multiple authoritative sources. Understanding Prompt Engineering Prompt engineering involves the deliberate design and refinement of input prompts to influence the output of a language model like ChatGPT. The efficacy of a prompt directly impacts the relevance and coherence of the AI's responses. Effective prompt engineering
ChatGPT Prompt for an Evidence-Based Narrative | by Brad Porter | Jun, 2024Jun 30, 2024
Amazon trained me to write evidence-based narratives. I love the format. It’s a clear and compelling way to present information to drive…
The Great AI Chatbot Challenge: ChatGPT vs. Gemini vs. Copilot vs. PerplexiMay 28, 2024
We tested OpenAI’s ChatGPT against Microsoft’s Copilot and Google’s Gemini, along with Perplexity and Anthropic’s Claude. Here’s how they ranked.
OpenAI’s ChatGPT-powered search engine to be introduced next weekMay 11, 2024
The search engine war is heating up. ChatGPT may introduce its search engine, which will rival Google, on Monday. Although
Custom GPTs: How to create a GPT for your SaaS in less than 20 minutesApr 18, 2024
Making your custom GPTs is just one of the ways to leverage your content strategy and use ChatGPT...
Claude vs ChatGPT: A Comparison of AI ChatbotsApr 11, 2024
Claude and ChatGPT are two compelling options in AI chatbots, each with unique features and capabilities. To discern their strengths and suitability for various applications, let's compare these two AI chatbots comprehensively. What is Claude? Claude is an AI chatbot developed by an Anthropic AI renowned for its ability to simulate human-like conversations. Built on sophisticated NLP algorithms, Claude excels in engaging users in meaningful dialogues across a spectrum of topics. What sets Claude apart is its emphasis on understanding the user's persona and tailoring responses to match individual preferences and communication styles. This personalised touch enhances user experience, fostering
Let's build GPT: from scratch, in code, spelled out. - YouTubeApr 9, 2024
We build a Generatively Pretrained Transformer (GPT), following the paper "Attention is All You Need" and OpenAI's GPT-2 / GPT-3. We talk about connections to ChatGPT, which has taken the world by storm. We watch GitHub Copilot, itself a GPT, help us write a GPT (meta :D!) . I recommend people watch the earlier makemore videos to get comfortable with the autoregressive language modeling framework and basics of tensors and PyTorch nn, which we take for granted in this video.
Links:
- Google colab for the video: https://colab.research.google.com/drive/1JMLa53HDuA-i7ZBmqV7ZnA3c_fvtXnx-?usp=sharing
- GitHub repo for the video: https://github.com/karpathy/ng-video-lecture
- Playlist of the whole Zero to Hero series so far: https://www.youtube.com/watch?v=VMj-3S1tku0&list=PLAqhIrjkxbuWI23v9cThsA9GvCAUhRvKZ
- nanoGPT repo: https://github.com/karpathy/nanoGPT
- my website: https://karpathy.ai
- my twitter: https://twitter.com/karpathy
- our Discord channel: https://discord.gg/3zy8kqD9Cp
Supplementary links:
- Attention is All You Need paper: https://arxiv.org/abs/1706.03762
- OpenAI GPT-3 paper: https://arxiv.org/abs/2005.14165
- OpenAI ChatGPT blog post: https://openai.com/blog/chatgpt/
- The GPU I'm training the model on is from Lambda GPU Cloud, I think the best and easiest way to spin up an on-demand GPU instance in the cloud that you can ssh to: https://lambdalabs.com . If you prefer to work in notebooks, I think the easiest path today is Google Colab.
Suggested exercises:
- EX1: The n-dimensional tensor mastery challenge: Combine the `Head` and `MultiHeadAttention` into one class that processes all the heads in parallel, treating the heads as another batch dimension (answer is in nanoGPT).
- EX2: Train the GPT on your own dataset of choice! What other data could be fun to blabber on about? (A fun advanced suggestion if you like: train a GPT to do addition of two numbers, i.e. a+b=c. You may find it helpful to predict the digits of c in reverse order, as the typical addition algorithm (that you're hoping it learns) would proceed right to left too. You may want to modify the data loader to simply serve random problems and skip the generation of train.bin, val.bin. You may want to mask out the loss at the input positions of a+b that just specify the problem using y=-1 in the targets (see CrossEntropyLoss ignore_index). Does your Transformer learn to add? Once you have this, swole doge project: build a calculator clone in GPT, for all of +-*/. Not an easy problem. You may need Chain of Thought traces.)
- EX3: Find a dataset that is very large, so large that you can't see a gap between train and val loss. Pretrain the transformer on this data, then initialize with that model and finetune it on tiny shakespeare with a smaller number of steps and lower learning rate. Can you obtain a lower validation loss by the use of pretraining?
- EX4: Read some transformer papers and implement one additional feature or change that people seem to use. Does it improve the performance of your GPT?
Chapters:
00:00:00 intro: ChatGPT, Transformers, nanoGPT, Shakespeare
baseline language modeling, code setup
00:07:52 reading and exploring the data
00:09:28 tokenization, train/val split
00:14:27 data loader: batches of chunks of data
00:22:11 simplest baseline: bigram language model, loss, generation
00:34:53 training the bigram model
00:38:00 port our code to a script
Building the "self-attention"
00:42:13 version 1: averaging past context with for loops, the weakest form of aggregation
00:47:11 the trick in self-attention: matrix multiply as weighted aggregation
00:51:54 version 2: using matrix multiply
00:54:42 version 3: adding softmax
00:58:26 minor code cleanup
01:00:18 positional encoding
01:02:00 THE CRUX OF THE VIDEO: version 4: self-attention
01:11:38 note 1: attention as communication
01:12:46 note 2: attention has no notion of space, operates over sets
01:13:40 note 3: there is no communication across batch dimension
01:14:14 note 4: encoder blocks vs. decoder blocks
01:15:39 note 5: attention vs. self-attention vs. cross-attention
01:16:56 note 6: "scaled" self-attention. why divide by sqrt(head_size)
Building the Transformer
01:19:11 inserting a single self-attention block to our network
01:21:59 multi-headed self-attention
01:24:25 feedforward layers of transformer block
01:26:48 residual connections
01:32:51 layernorm (and its relationship to our previous batchnorm)
01:37:49 scaling up the model! creating a few variables. adding dropout
Notes on Transformer
01:42:39 encoder vs. decoder vs. both (?) Transformers
01:46:22 super quick walkthrough of nanoGPT, batched multi-headed self-attention
01:48:53 back to ChatGPT, GPT-3, pretraining vs. finetuning, RLHF
01:54:32 conclusions
Corrections:
00:57:00 Oops "tokens from the _future_ cannot communicate", not "past". Sorry! :)
01:20:05 Oops I should be using the head_size for the normalization, not C
DALL-E now lets you edit images in ChatGPTApr 9, 2024
More AI image generation tools at your fingertips.
ChatGPT vs Perplexity AI: AI App ComparisonApr 1, 2024
What is ChatGPT? ChatGPT, developed by OpenAI, is an AI platform renowned for its conversational AI capabilities. Leveraging the power of the Generative Pre-trained Transformer models, ChatGPT generates human-like text responses across various topics, from casual conversations to complex, technical discussions. Its ability to engage users with coherent, contextually relevant dialogues stands out, making it highly versatile for various applications, including content creation, education, customer service, and more. Its integration with tools like DALL-E for image generation from textual descriptions and its continual updates for enhanced performance showcase its commitment to providing an engaging and innovative user experience. ChatGPT Key
Happy New Year: GPT in 500 lines of SQLMar 5, 2024
A complete GPT2 implementation as a single SQL query in PostgreSQL.
OpenAI's ChatGPT may have its first true rival in Anthropic's new chatbotMar 5, 2024
The Amazon-backed AI startup said its "most intelligent model" outperformed OpenAI's powerful GPT-4
WTF are OpenAI’s custom GPTs?Mar 5, 2024
OpenAI's custom GPTs and GPT Store could proffer a potential new platform for publishers to drive referral traffic.
17 Tips to Take Your ChatGPT Prompts to the Next LevelFeb 28, 2024
Sure, anyone can use OpenAI’s chatbot. But with smart engineering, you can get way more interesting results.
Innovative three-year-olds expose the limits of AI chatbotsFeb 10, 2024
New experiments show that very young children are better at solving creative puzzles than ChatGPT and other AI models
Title:BloombergGPT: A Large Language Model for FinanceFeb 4, 2024
The use of NLP in the realm of financial technology is broad and complex, with applications ranging from sentiment analysis and named entity recognition to question answering. Large Language...
ChatGPT Prompts for Customer PersonasJan 23, 2024
Identify and target personas of keywords, competitors, Reddit discussions, and more.
ChatGPT Vision is insanely good, here is what it can and can’t doOct 5, 2023
OpenAI's ChatGPT Vision is making waves in the world of artificial intelligence, but what exactly is it, and how can
A Prompt Pattern CatalogOct 3, 2023
BardOct 3, 2023
Bard is now Gemini. Get help with writing, planning, learning, and more from Google AI.
10 ChatGPT Projects Cheat SheetSep 25, 2023
KDnuggets' latest cheat sheet covers 10 curated hands-on projects to boost data science workflows with ChatGPT across ML, NLP, and full stack dev, including links to full project details.
ChatGPT Noteable (Jupyter) = Mind-blowing! - YouTubeSep 25, 2023
Do you use Python, Pandas, and Seaborn to collect, analyze, and plot data? Then you'll be amazed by what ChatGPT can do, when using ChatGPT+, GPT-4 model, and the plugin for Noteable's version of Jupyter notebooks.
[UPDATE/NOTE: This was my first summary of Noteable and ChatGPT. I have done more experiments, which you can see here: https://www.youtube.com/watch?v=2WUZ0b-hUDU]
In this video, I show you how I got things set up for using Noteable (and world headlines), then put together a query, You'll see how it goes well, where it goes wrong, and what sort of code I can create using just English-language descriptions of my plans. And I show you what's happening behind the scenes, as we see the JSON being written.
This is all brand new and exciting, and I hope that you'll post suggestions and ideas in the comments for how we can take this even further!
And if you're interested in analyzing data with Pandas, check out Bamboo Weekly at https://www.BambooWeekly.com/, where I look at current events through the eyes of data analysis.
ChatGPT: How to automate Google Sheets in under 2 minutes (with R)Sep 25, 2023
Hey guys, welcome back to my R-tips newsletter. In today’s R-tip, I’m sharing a super common data science task (one that saved me 20 hours per week)… You’re getting the cheat code to automating Google Sheets. Plus, I’m sharing exactly how I made this a...
Your Own Personal ChatGPTSep 25, 2023
How you can fine-tune OpenAI’s GPT-3.5 Turbo model to perform new tasks using your custom data
How to use LLMs for PDF parsingAug 6, 2023
Using ChatGPT & OpenAI's GPT API, this code tutorial teaches how to chat with PDFs, automate PDF tasks, and build PDF chatbots.
Is Anthropic's Claude 2 model ready to take down GPT-4? We put them to theJul 28, 2023
Anthropic released Claude 2, a new iteration of its AI model, to take on ChatGPT and Google Bard...
📝 Guest Post: How to Customize Auto-GPT for Your Unique Use Case: A Comprehensive Guide*Jul 24, 2023
An Introduction to Auto-GPT
Use LangChain’s Output Parser with ChatGPT for Structured OutputsJul 24, 2023
Explained with an example use case.
Understanding GPT tokenizersJul 24, 2023
Large language models such as GPT-3/4, LLaMA and PaLM work in terms of tokens. They take text, convert it into tokens (integers), then predict which tokens should come next. Playing …
How GPT works: A Metaphoric Explanation of Key, Value, Query in Attention,Jul 24, 2023
GPT, explained simply, in a metaphor of potion.
KDnuggets News, June 28: 10 ChatGPT Plugins for Data Science Cheat Sheet •Jul 23, 2023
10 ChatGPT Plugins for Data Science Cheat Sheet • Noteable Plugin: The ChatGPT Plugin That Automates Data Analysis • 3 Ways to Access Claude AI for Free • What are Vector Databases and Why Are They Important for LLMs? • A Data Scientist’s Essential Guide to Exploratory Data Analysis
I Used ChatGPT (Every Day) for 5 Months. Here Are Some Hidden Gems That WilJul 23, 2023
Transform your life with these ChatGPT’s hidden gems.
10 Tools for ChatGPT Prompt Ideas - Practical EcommerceJul 12, 2023
An effective prompt is the first step in benefitting from ChatGPT. That's the challenge — an effective prompt.
ChatGPT Prompts: A Guide for Developers ??Jul 10, 2023
In this article, we will demonstrate how to use different prompts to ask ChatGPT for help and make...
ChatGPT Prompts for Text AnalysisMay 28, 2023
ChatGPT can generate usable content. But it can also analyze existing content — articles, descriptions — and suggest improvements for SEO and social media.
The Art of Prompt Design: Prompt Boundaries and Token HealingMay 28, 2023
Learn how standard greedy tokenization introduces a subtle and powerful bias that can have all kinds of unintended consequences.
ChatGPT Is Already ObsoleteMay 19, 2023
The next generation of AI is leaving behind the viral chatbot.
I asked ChatGPT to contest my parking ticket. What followed was a thing ofMay 19, 2023
On Tuesday, the result arrived via email: “NOT GUILTY.”
Edge 291: Reinforcement Learning with Human FeedbackMay 18, 2023
1) Reinforcement Learning with Human Feedback(RLHF) 2) The RLHF paper, 3) The transformer reinforcement learning framework.
Google’s ChatGPT-killer is now open to everyone, packing new featuresMay 12, 2023
More languages, image inputs, and extension support among Bard features at I/O ’23.
How to Use the ChatGPT APIApr 29, 2023
Use the power of ChatGPT from within your own apps using OpenAI’s API and this guide.
ChatPDF – Chat with Any PDF | Hacker NewsApr 29, 2023
How to improve your ChatGPT prompts and responsesApr 25, 2023
It's like learning a new language - kind of.
The LLama Effect: How an Accidental Leak Sparked a Series of Impressive OpeApr 21, 2023
Sundays, The Sequence Scope brings a summary of the most important research papers, technology releases and VC funding deals in the artificial intelligence space.
Ultimate ChatGPT cheatsheet for UX and UI designersApr 17, 2023
Exploring why AI won’t replace designers, but rather enhance their work.
karpathy/nanoGPT: The simplest, fastest repository for training/finetuningApr 17, 2023
The simplest, fastest repository for training/finetuning medium-sized GPTs. - karpathy/nanoGPT
“A really big deal”—Dolly is a free, open source, ChatGPT-style AI modelApr 16, 2023
Dolly 2.0 could spark a new wave of fully open source LLMs similar to ChatGPT.
35 Ways Real People Are Using A.I. Right NowApr 16, 2023
Artificial intelligence models have found their way into many people’s lives, for work and for fun.
When do you need Chain-of-Thought Prompting for ChatGPT?Apr 15, 2023
Chain-of-Thought (CoT) prompting can effectively elicit complex multi-step reasoning from Large Language Models~(LLMs). For example, by simply adding CoT instruction ``Let's think step-by-step''...
How to Talk to a PDF using LangChain and ChatGPTApr 14, 2023
#langchain #chatgpt #gpt4 #artificialintelligence #automation #python #notion #productivity #datascience #pdf #machinelearning
In this tutorial, learn how to easily extract information from a PDF document using LangChain and ChatGPT. I'll walk you through installing dependencies, loading and processing a PDF file, creating embeddings, and querying the PDF with natural language questions.
00:00 - Introduction
00:21 - Downloading a sample PDF
00:49 - Importing required modules
01:21 - Setting up the PDF path and loading the PDF
01:38 - Printing the first page of the PDF
01:53 - Creating embeddings and setting up the Vector database
02:24 - Creating a chat database chain
02:49 - Querying the PDF with a question
03:27 - Understanding the query results
04:00 - Conclusion
Remember to like and subscribe for more tutorials on learning, research and AI!
- Source code: https://github.com/EnkrateiaLucca/talk_pdf
- Link to the medium article: https://medium.com/p/e723337f26a6
- Subscribe!: https://www.youtube.com/channel/UCu8WF59Scx9f3H1N_FgZUwQ
- Join Medium: https://lucas-soares.medium.com/membership
- Tiktok: https://www.tiktok.com/@enkrateialucca?lang=en
- Twitter: https://twitter.com/LucasEnkrateia
- LinkedIn: https://www.linkedin.com/in/lucas-soares-969044167/
Music from [www.epidemicsound.com](http://www.epidemicsound.com/)
Understanding ChatGPTMar 26, 2023
ChatGPT is a deep-learning model created by OpenAI whose ability to generate human-like prose has made AI a topic of conversation. Learn more
Superhuman: What can AI do in 30 minutes?Mar 26, 2023
AI multiplies your efforts. I found out by how much...
OpenAI turns ChatGPT into a platform overnight with addition of pluginsMar 24, 2023
OpenAI today announced its support of new third-party plugins for ChatGPT, and it already has Twitter buzzing about the company's potential platform play.
🤖 50+ Product Management Prompts for ChatGPT-4Mar 20, 2023
Quote "ChatGPT is like a genie in a bottle, but instead of granting you three wishes, it gives you endless responses until you realize you've been chatting with a machine for hours." 😂
Must read: the 100 most cited AI papers in 2022Mar 20, 2023
Who Is publishing the most Impactful AI research right now? With the breakneck pace of innovation in AI, it is crucial to pick up some signal as soon as possible. No one has the time to read everything, but these 100 papers are sure to bend the road as to where our AI technology is going. The real test of impact of R&D teams is of course how the technology appears in products, and OpenAI shook the world by releasing ChatGPT at the end of November 2022, following fast on their March 2022 paper “T
ChatPDF - Chat with any PDF!Mar 15, 2023
ChatPDF is the fast and easy way to chat with any PDF, free and without sign-in. Talk to books, research papers, manuals, essays, legal contracts, whatever you have! The intelligence revolution is here, ChatGPT was just the beginning!
I’m an ER doctor: Here’s what I found when I asked ChatGPT to diagnose my pMar 14, 2023
ChatGPT recently passed the U.S. Medical Licensing Exam, but using it for a real-world medical diagnosis would quickly turn deadly.
ChatGPT invented a puzzle game that already exists | Digital TrendsMar 12, 2023
ChatGPT invented a hit puzzle game called Sumplete that could rival Wordle. There's just one problem: It already exists.
Call ChatGPT (or really any other API) from RMar 4, 2023
It’s March 2023 and right now ChatGPT, the amazing AI chatbot tool from OpenAI, is all the rage. But when OpenAI released their public web API for ChatGPT on the 1st of March you might have been a bit disappointed. If you’re an R user, that is. Because, when scrolling through the release announcement you find that there is a python package to use this new API, but no R package. I’m here to say: Don’t be disappointed! As long as there is a web API for a service then it’s going to be easy to use this service from R, no specialized package needed. So here’s an example of how to use the new (as of March 2023) ChatGPT API from R. But know that when the next AI API hotness comes out (likely April 2023, or so) then it’s going to be easy to interface with that from R, as well. Calling the ChatGPT web API from R To use the ChatGPT API in any way you first need to sign up and get an API key: The “password” you need to access the web API. It could look something like "sk-5xWWxmbnJvbWU4-M212Z2g5dzlu-MzhucmI5Yj-l4c2RkdmZ26". Of course, that’s not my real API key because that’s something you should keep secret! With an API key at hand you now look up the documentation and learn that this is how you would send a request to the API from the terminal: curl https://api.openai.com/v1/chat/completions \ -H "Authorization: Bearer $OPENAI_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "model": "gpt-3.5-turbo", "messages": [{"role": "user", "content": "What is a banana?"}] }' But how do we send a request to the API using R? What we can do is to “replicate” this call using httr: a popular R package to send HTTP requests. Here’s how this request would be made using httr (with the curl lines as comments above the corresponding httr code) library(httr) api_key
Meta unveils a new large language model that can run on a single GPUFeb 25, 2023
LLaMA-13B reportedly outperforms ChatGPT-like tech despite being 10x smaller.
ChatGPT Is a Blurry JPEG of the WebFeb 10, 2023
OpenAI’s chatbot offers paraphrases, whereas Google offers quotes. Which do we prefer?
openai-to-sqlite - a tool for DatasetteFeb 9, 2023
Integrating Ruby with OpenAI: A Beginner’s GuideFeb 4, 2023
As a Ruby developer, you can immediately incorporate AI into your applications through the use of the OpenAI API. Our beginners guide will take you through step by step.
Empathy’s new tool uses AI to generate obituaries, and it’s not half badFeb 2, 2023
Startup Empathy has launched a new tool that uses AI to generate obituaries. It might sound callous, but the results aren't terrible, surprisingly.
ChatGPT is not all you need. A State of the Art Review of large...Jan 24, 2023
During the last two years there has been a plethora of large generative models such as ChatGPT or Stable Diffusion that have been published. Concretely, these models are able to perform tasks such...
Creating a website aggregator with ChatGPT, React, and Node.js 🚀Jan 18, 2023
A website aggregator is a website that collects data from other websites across the internet and puts...
How to Generate GPT Output in JSON Format for Ruby developersJan 14, 2023
I was playing around with OpenAI (GPT-3) today, building a reasonably complicated email parser for a...
A New Chat Bot Is a ‘Code Red’ for Google’s Search Business (Published 2022)Dec 22, 2022
A new wave of chat bots like ChatGPT use artificial intelligence that could reinvent or even replace the traditional internet search engine.
ChatGPT and the Imagenet moment — Benedict EvansDec 16, 2022
The wave of enthusiasm around generative networks feels like another Imagenet moment - a step change in what ‘AI’ can do that could generalise far beyond the cool demos. What can it create, and where are the humans in the loop?
2212.03551.pdfDec 11, 2022
OpenAI ChatGPT is an anthropomorphic AI chatbot with a memory, and people aDec 8, 2022
The OpenAI ChatGPT chatbot was just released and is already quite popular. Say hello to the newest chatbot with one
AI Homework – Stratechery by Ben ThompsonDec 7, 2022
The first obvious casualty of large language models is homework: the real training for everyone, though, and the best way to leverage AI, will be in verifying and editing information.
Language models like GPT-3 could herald a new type of search engineMay 18, 2021
The way we search online hasn’t changed in decades. A new idea from Google researchers could make it more like talking to a human expert
SearchGPT: What you need to know about OpenAI’s search engineSep 24, 2012
Unpack the key features and marketing insights of SearchGPT, OpenAI’s innovative search tool and its potential to rival Google’s dominance.
A Word Please: Coffee-shop prompt stirs ChatGPT to brew up bland copySep 24, 2009
A comparison between a report written by a human and one composed by AI reveals the weaknesses of the latter when it comes to journalism.
Building a RAG Chatbot GUI with the ChatGPT API and PyMuPDFSep 24, 2009
The Artifex blog covers the latest news and updates regarding Ghostscript, MuPDF, and SmartOffice. Subjects cover PDF and Postscript, open source, office productivity, new releases, and upcoming events.
gpus
Taalas is replacing programmable GPUs with hardwired AI chips to achieve 17,000 tokens per second for ubiquitous inference - MarkTechPostFeb 23, 2026
Taalas is replacing programmable GPUs with hardwired AI chips to achieve 17,000 tokens per second for ubiquitous inference
Why GPU Useful Life Is the Most Misunderstood Variable in AI EconomicsFeb 23, 2026
Amazon shortened GPU depreciation while Meta extended it—same month, same technology. The $3.6B divergence exposes the accounting discretion behind AI infrastructure economics.
nvidia's B200 does 1,760 TFLOPS on a square GEMM and 4 TFLOPS on a skinny one. the shape of your matmul is the single biggest variable in GPU performance. but why? same hardware, same operation… | Emilio AndereFeb 23, 2026
nvidia's B200 does 1,760 TFLOPS on a square GEMM and 4 TFLOPS on a skinny one.
NVIDIA Rubin Is The Most Advanced AI Platform On The Planet: Up To 50 PFLOPs With HBM4, Vera CPU With 88 Olympus Cores, And Delivers 5x Uplift Vs BlackwellJan 5, 2026
NVIDIA is formally announcing its Rubin AI platform today which will be the heart of next-gen Data Centers, with a 5x upgrade over Blackwell.
Solving The Problems of HBM-on-LogicDec 18, 2025
Future AI Accelerators Might Need To Be Slower To Be Faster
How Google’s TPUs are reshaping the economics of large-scale AIDec 10, 2025
TPUv7 offers a viable alternative to the GPU-centric AI stack has already arrived — one with real implications for the economics and architecture of frontier-scale training.
README | GPU GlossaryNov 11, 2025
Another Giant Leap: The Rubin CPX Specialized Accelerator & RackSep 15, 2025
Nvidia announced the Rubin CPX, a solution that is specifically designed to be optimized for the prefill phase, with the single-die Rubin CPX heavily emphasizing compute FLOPS over memory bandwidth…
NVIDIA Unveils Its Newest ‘Rubin CPX’ AI GPUs, Featuring 128 GB GDDR7 Memory & Targeted …Sep 10, 2025
NVIDIA has surprisingly unveiled a rather 'new class' of AI GPUs, featuring the Rubin CPX AI chip that offers immense inferencing power.
Tensordyne Claims 8x AI Efficiency Boost Over NVIDIA Using Logarithmic MathSep 8, 2025
The idea isn't novel, but presents major challenges. Tensordyne thinks it has solved them, and promises massive speed and efficiency gains as a result.
NVIDIA Blackwell Ultra “GB300” GPU, The Fastest AI Chip, Detailed: Dual Reticle GPU With Ove…Aug 25, 2025
NVIDIA has provided an in-depth look at its fastest chip for AI, the Blackwell GB300, which is 50% faster than GB200 & packs 288 GB memory.
Writing Your First GPU Kernel in Python with Numba and CUDA - KDnuggetsAug 18, 2025
80x Faster Python? Discover How One Line Turns Your Code Into a GPU Beast!
RDNA 4's "Out-of-Order" Memory AccessesAug 11, 2025
Examining RDNA 4's out-of-order memory accesses in detail, and investigating with testing
Understanding the Landscape of Ampere GPU Memory ErrorsAug 11, 2025
Graphics Processing Units (GPUs) have become a de facto solution for accelerating high-performance computing (HPC) applications. Understanding their memory error behavior is an essential step toward achieving efficient and reliable HPC systems. In this work, we present a large-scale cross-supercomputer study to characterize GPU memory reliability, covering three supercomputers - Delta, Polaris, and Perlmutter - all equipped with NVIDIA A100 GPUs. We examine error logs spanning 67.77 million GPU device-hours across 10,693 GPUs. We compare error rates and mean-time-between-errors (MTBE) and highlight both shared and distinct error characteristics among these three systems. Based on these observations and analyses, we discuss the implications and lessons learned, focusing on the reliable operation of supercomputers, the choice of checkpointing interval, and the comparison of reliability characteristics with those of previous-generation GPUs. Our characterization study provides valuable insights into fault-tolerant HPC system design and operation, enabling more efficient execution of HPC applications.
Demystifying GPUs: From Core Architecture to Scalable SystemsJul 20, 2025
Table of Contents Motivation Optimization goal of GPUs Key concepts of GPUs - software and...
Demystifying NCCL: An In-depth Analysis of GPU Communication Protocols and AlgorithmsJul 13, 2025
The NVIDIA Collective Communication Library (NCCL) is a critical software layer enabling high-performance collectives on large-scale GPU clusters. Despite being open source with a documented API, i…
Performance, efficiency, and cost analysis of wafer-scale AI accelerators vs. single-chip GPUsJun 24, 2025
This review compares wafer-scale AI accelerators and single-chip GPUs in terms of
performance, energy efficiency, and cost for high-performance AI applications. It
highlights enabling technologies, such as CoWoS, and explores future directions including
3D integration, photonic chips, and emerging semiconductor materials.
Got juice? Future AI processors said to drink up to 15,360 watts of power — titanic requirements demand exotic immersion and embedded coolingJun 18, 2025
It is going to get hot.
The new AI calculus: Google’s 80% cost edge vs. OpenAI’s ecosystemApr 25, 2025
Explore the Google vs OpenAI AI ecosystem battle post-o3. Deep dive into Google's huge cost advantage (TPU vs GPU), agent strategies & model risks for enterprise
The Future of AI Accelerators: A Roadmap of Industry Leaders The AI… | Nader EL-MasriMar 26, 2025
The Future of AI Accelerators: A Roadmap of Industry Leaders
The AI hardware race is heating up, with major players like NVIDIA, AMD, Intel, Google, Amazon, and more unveiling their upcoming AI accelerators. Here’s a quick breakdown of the latest trends:
Key Takeaways:
NVIDIA Dominance: NVIDIA continues to lead with a robust roadmap, extending from H100 to future Rubin and Rubin Ultra chips with HBM4 memory by 2026-2027.
AMD’s Competitive Push: AMD’s MI300 series is already competing, with MI350 and future MI400 models on the horizon.
Intel’s AI Ambitions: Gaudi accelerators are growing, with Falcon Shores on track for a major memory upgrade.
Google & Amazon’s Custom Chips: Google’s TPU lineup expands rapidly, while Amazon’s Trainium & Inferentia gain traction.
Microsoft & Meta’s AI Expansion: Both companies are pushing their AI chip strategies with Maia and MTIA projects, respectively.
Broadcom & ByteDance Join the Race: New challengers are emerging, signaling increased competition in AI hardware.
What This Means:
With the growing demand for AI and LLMs, companies are racing to deliver high-performance AI accelerators with advanced HBM (High Bandwidth Memory) configurations. The next few years will be crucial in shaping the AI infrastructure landscape.
$NVDA $AMD $INTC $GOOGL $AMZN $META $AVGO $ASML $BESI
Understanding PTX, the Assembly Language of CUDA GPU Computing | NVIDIA Technical BlogMar 12, 2025
Parallel thread execution (PTX) is a virtual machine instruction set architecture that has been part of CUDA from its beginning. You can think of PTX as the…
Inside the AMD Radeon Instinct MI300A's Giant Memory SubsystemJan 18, 2025
AMD acquired ATI in 2006, hoping ATI's GPU expertise would combine with AMD's CPU know-how to create integrated solutions worth more than the sum of their parts.
Apple-Nvidia collaboration speeds up AI model productionDec 20, 2024
Apple's latest machine learning research could make creating models for Apple Intelligence faster, by coming up with a technique to almost triple the rate of generating tokens when using Nvidia GPUs.
Intel Arc B580 "Battlemage" GPU Leak Confirms 12 GB Memory, Custom Models With Standard Power Connectors, Up To 2.8 GHz ClocksNov 23, 2024
Intel's first Arc B580 GPUs based on the Xe2 "Battlemage" architecture have been leaked & they look quite compelling.
HPC Gets A Reconfigurable Dataflow Engine To Take On CPUs And GPUsOct 29, 2024
No matter how elegant and clever the design is for a compute engine, the difficulty and cost of moving existing – and sometimes very old – code from the
NVIDIA To Ship 150K-200K Blackwell GB200 AI Servers In Q4 2024 Alone & 500-550K Units In Q1 2025, Microsoft Being The Leading BuyerOct 18, 2024
NVIDIA's Blackwell AI servers to witness a massive shipment volume in Q4 2024, with Microsoft being the most "aggressive" acquirer.
Meet Warp: A Python Framework for Writing High-Performance Simulation and GJul 17, 2024
Speed and efficiency are crucial in computer graphics and simulation. It can be challenging to create high-performance simulations that can run smoothly on various hardware setups. Traditional methods can be slow and may not fully utilize the power of modern graphics processing units (GPUs). This creates a bottleneck for real-time or near-real-time feedback applications, such as video games, virtual reality environments, and scientific simulations. Existing solutions for this problem include using general-purpose computing on graphics processing units (GPGPU) frameworks like CUDA and OpenCL. These frameworks allow developers to write programs that can run on GPUs, but they often require a
FlashAttention-3: Fast and Accurate Attention with Asynchrony and Low-preciJul 14, 2024
Attention, as a core layer of the ubiquitous Transformer architecture, is a bottleneck for large language models and long-context applications. FlashAttention (and FlashAttention-2) pioneered an approach to speed up attention on GPUs by minimizing memory reads/writes, and is now used by most libraries to accelerate Transformer training and inference. This has contributed to a massive increase in LLM context length in the last two years, from 2-4K (GPT-3, OPT) to 128K (GPT-4), or even 1M (Llama 3). However, despite its success, FlashAttention has yet to take advantage of new capabilities in modern hardware, with FlashAttention-2 achieving only 35% utilization of theoretical max FLOPs on the H100 GPU. In this blogpost, we describe three main techniques to speed up attention on Hopper GPUs: exploiting asynchrony of the Tensor Cores and TMA to (1) overlap overall computation and data movement via warp-specialization and (2) interleave block-wise matmul and softmax operations, and (3) incoherent processing that leverages hardware support for FP8 low-precision.
AMD’s Instinct MI300X AI Throughput Performance & Latency Improved By 7x WiJul 3, 2024
Nscale has tested AMD's flagship Instinct MI300X AI accelerator utilizing the GEMM tuning framework, achieving 7x faster performance.
Nvidia Conquers Latest AI TestsJun 13, 2024
GPU maker tops new MLPerf benchmarks on graph neural nets and LLM fine-tuning
How To Make More Money Renting A GPU Than Nvidia Makes Selling ItMay 4, 2024
It is not a coincidence that the companies that got the most “Hopper” H100 allocations from Nvidia in 2023 were also the hyperscalers and cloud builders,
Biden has brought the ban hammer down on US export of AI chips to ChinaApr 17, 2024
Datacenter GPUs and some consumer cards now exceed performance limits
Intel preps export-friendly lower-power Gaudi 3 AI chips made for ChinaApr 17, 2024
Beijing will be thrilled by this nerfed silicon
Los Alamos Pushes The Memory Wall With “Venado” SupercomputerApr 15, 2024
Today is the ribbon-cutting ceremony for the “Venado” supercomputer, which was hinted at back in April 2021 when Nvidia announced its plans for its first
Intel’s “Gaudi 3” AI accelerator chip may give Nvidia’s H100 a run for itsApr 14, 2024
Intel claims 50% more speed when running AI language models vs. the market leader.
Nvidia Blackwell Perf TCO Analysis - B100 vs B200 vs GB200NVL72Apr 12, 2024
GPT-4 Profitability, Cost, Inference Simulator, Parallelism Explained, Performance TCO Modeling In Large & Small Model Inference and Training
How To Build A Better “Blackwell” GPU Than Nvidia DidApr 5, 2024
While a lot of people focus on the floating point and integer processing architectures of various kinds of compute engines, we are spending more and more
AMD ROCm Going Open-Source: Will Include Software Stack & Hardware DocumentApr 4, 2024
AMD plans to open-source portions of its ROCm software stack and hardware documentation in a future update to refine its ecosystem.
Lenovo Shows Huge Optimism Towards AMD’s Instinct MI300X AI AcceleratorsMar 29, 2024
Lenovo, the firm emerging as a driving force behind AI computing, has expressed tremendous optimism about AMD's Instinct MI300X accelerator.
How Nvidia Blackwell Systems Attack 1 Trillion Parameter AI ModelsMar 29, 2024
We like datacenter compute engines here at The Next Platform, but as the name implies, what we really like are platforms – how compute, storage,
AMD Quietly Funded A Drop-In CUDA Implementation Built On ROCm: It's Now OpFeb 13, 2024
While there have been efforts by AMD over the years to make it easier to port codebases targeting NVIDIA's CUDA API to run atop HIP/ROCm, it still requires work on the part of developers.
Nvidia’s Big Tech Rivals Put Their Own A.I. Chips on the Table - The New YoFeb 7, 2024
Chafing at their dependence, Amazon, Google, Meta and Microsoft are racing to cut into Nvidia’s dominant share of the market.
How AMD May Get Across the CUDA MoatOct 7, 2023
When discussing GenAI, the term "GPU" almost always enters the conversation and the topic often moves toward performance and access. Interestingly, the word "GPU" is assumed to mean "Nvidia" products. (As an aside, the popular Nvidia hardware used in GenAI are not technically...
AMD’s Radeon Instinct MI210: GCN Lives OnJul 28, 2023
AMD, Nvidia, and Intel have all diverged their GPU architectures to separately optimize for compute and graphics.
Installation — Triton documentationJul 27, 2023
Introducing Triton: Open-source GPU programming for neural networksJul 27, 2023
We’re releasing Triton 1.0, an open-source Python-like programming language which enables researchers with no CUDA experience to write highly efficient GPU code—most of the time on par with what an expert would be able to produce.
Calculate Computational Efficiency of Deep Learning Models with FLOPs and MJul 24, 2023
In this article we will learn about its definition, differences and how to calculate FLOPs and MACs using Python packages.
AI Capacity Constraints - CoWoS and HBM Supply ChainJul 9, 2023
Quarterly Ramp for Nvidia, Broadcom, Google, AMD, AMD Embedded (Xilinx), Amazon, Marvell, Microsoft, Alchip, Alibaba T-Head, ZTE Sanechips, Samsung, Micron, and SK Hynix
Micron Announces GDDR7 for GPUs Coming in First Half of 2024Jun 30, 2023
Though it'll arrive just in time for mid-cycle refresh from AMD, Nvidia, and Intel, it's unclear if there will be any takers just yet.
The Third Time Charm Of AMD’s Instinct GPUJun 14, 2023
The great thing about the Cambrian explosion in compute that has been forced by the end of Dennard scaling of clock frequencies and Moore’s Law lowering
AMD’s RX 7600: Small RDNA 3 AppearsJun 5, 2023
Editor’s Note (6/14/2023): We have a new article that reevaluates the cache latency of Navi 31, so please refer to that article for some new latency data.
The Case for Running AI on CPUs Isn’t Dead YetJun 2, 2023
GPUs may dominate, but CPUs could be perfect for smaller AI models
Google dives into the ‘supercomputer’ game by knitting together purpose-buiMay 12, 2023
Google's new machines combine Nvidia H100 GPUs with Google’s high-speed interconnections for AI tasks like training very large language models.
Wtf is a kdf? | blog.datapartyApr 26, 2023
Earlier this week a letter from an activist imprisoned in France was posted to the internet. Contained within Ivan Alococo’s dispatch from the Villepinte prison
Nvidia Tackles Chipmaking Process, Claims 40X Speed Up with cuLithoMar 21, 2023
Faster masks, less power.
Towards a Benchmarking Suite for Kernel TunersMar 19, 2023
As computing system become more complex, it is becoming harder for programmers to keep their codes optimized as the hardware gets updated. Autotuners try to alleviate this by hiding as many archite…
Meet the $10,000 Nvidia chip powering the race for A.I.Feb 25, 2023
The $10,000 Nvidia A100has become one of the most critical tools in the artificial intelligence industry,
Hacker NewsJan 20, 2023
Here, I provide an in-depth analysis of GPUs for deep learning/machine learning and explain what is the best GPU for your use-case and budget.
CUDA Toolkit 12.0 Released for General AvailabilityDec 13, 2022
NVIDIA announces the newest CUDA Toolkit software release, 12.0. This release is the first major release in many years and it focuses on new programming models and CUDA application acceleration…
How to Accelerate your PyTorch GPU Training with XLAOct 20, 2022
The Power of PyTorch/XLA and how Amazon SageMaker Training Compiler Simplifies its use
New Video Gives Us One More Reason to Never Buy a Used Mining GPUSep 27, 2022
A new video making the rounds purports to show Vietnamese crypto miners preparing used GPUs for resale by blasting them with a pressure washer.
Nvidia Research Plots A Course To Multiple Multichip GPU EnginesJan 6, 2022
There are two types of packaging that represent the future of computing, and both will have validity in certain domains: Wafer scale integration and
GPUCC - An Open-Source GPGPU CompilerDec 11, 2021
3D Stacking Could Boost GPU Machine LearningDec 8, 2021
Nvidia has staked its growth in the datacenter on machine learning. Over the past few years, the company has rolled out features in its GPUs aimed neural
How FPGAs Can Take On GPUs And Knights LandingDec 8, 2021
Nallatech doesn't make FPGAs, but it does have several decades of experience turning FPGAs into devices and systems that companies can deploy to solve
Analysis and Comparison of Performance and Power Consumption of Neural NetwDec 8, 2021
In this work, we analyze the performance of neural networks on a variety of heterogenous platforms. We strive to find the best platform in terms of raw benchmark performance, performance per watt a…
NVLink Takes GPU Acceleration To The Next LevelDec 7, 2021
One of the breakthrough moments in computing, which was compelled by necessity, was the advent of symmetric multiprocessor, or SMP, clustering to make two
Stacking Up AMD MI200 Versus Nvidia A100 Compute EnginesDec 7, 2021
The modern GPU compute engine is a microcosm of the high performance computing datacenter at large. At every level of HPC – across systems in the
Survey paper on Deep Learning on GPUsDec 4, 2021
The rise of deep-learning (DL) has been fuelled by the improvements in accelerators. GPU continues to remain the most widely used accelerator for DL applications. We present a survey of architectur…
Fast Multi-GPU collectives with NCCL | NVIDIA Technical BlogDec 4, 2021
Today many servers contain 8 or more GPUs. In principle then, scaling an application from one to many GPUs should provide a tremendous performance boost. But in practice, this benefit can be difficult…
A Graph-based Model for GPU Caching ProblemsDec 3, 2021
Modeling data sharing in GPU programs is a challenging task because of the massive parallelism and complex data sharing patterns provided by GPU architectures. Better GPU caching efficiency can be...
https://blog.riseml.com/comparing-google-tpuv2-against-nvidia-v100-on-resnet-50-c2bbb6a51e5eDec 2, 2021
1804Dec 2, 2021
Beyond GPU Memory Limits with Unified Memory on Pascal | NVIDIA Technical BlogDec 1, 2021
Unified Memory on NVIDIA Pascal GPUs enables applications to run out-of-the-box with larger memory footprints and achieve great baseline performance.
A Look at Baidu’s Industrial-Scale GPU Training ArchitectureJun 26, 2021
Like its U.S. counterpart, Google, Baidu has made significant investments to build robust, large-scale systems to support global advertising programs. As
Mythic Resizes its AI ChipJun 26, 2021
Its second analog AI chip is optimized for different card sizes, but still aimed at computer vision workloads at the edge.
What Happens When Multipliers No Longer Define AI Accelerators?Jun 24, 2021
Current custom AI hardware devices are built around super-efficient, high performance matrix multiplication. This category of accelerators includes the
How to Accelerate Signal Processing in PythonApr 9, 2021
This post is the seventh installment of the series of articles on the RAPIDS ecosystem. The series explores and discusses various aspects of RAPIDS that allow its users solve ETL (Extract, Transform…
CPU-based algorithm trains deep neural nets up to 15 times faster than topApr 9, 2021
Rice University computer scientists have demonstrated artificial intelligence (AI) software that runs on commodity processors and trains deep neural networks 15 times faster than platforms based on graphics ...
State of the art NLP at scale with RAPIDS, HuggingFace and DaskApr 4, 2021
See how to build end-to-end NLP pipelines in a fast and scalable way on GPUs — from feature engineering to inference.
GPU Nomenclature History: No Shortage of GPUs HereMar 30, 2021
What makes a GPU a GPU, and when did we start calling it that? Turns out that’s a more complicated question than it sounds.
The Rise, Fall and Revival of AMD (2020)Mar 19, 2021
AMD is one of the oldest designers of large scale microprocessors and has been the subject of polarizing debate among technology enthusiasts for nearly 50 years. Its...
Can Graviton Win A Three-Way Compute Race At AWS?Mar 18, 2021
One of the main tenets of the hyperscalers and cloud builders is that they buy what they can and they only build what they must. And if they are building
Welcome to AMD ROCm Platform — ROCm Documentation 1.0.0 documentationMar 15, 2021
AMD ROCm documentation
Using RAPIDS with PyTorchMar 15, 2021
In this post we take a look at how to use cuDF, the RAPIDS dataframe library, to do some of the preprocessing steps required to get the mortgage data in a format that PyTorch can process so that we…
Beginner’s Guide to Querying Data Using SQL on GPUs in PythonMar 15, 2021
Historically speaking, processing large amounts of structured data has been the domain of relational databases. Databases, consisting of tables that can be joined together or aggregated…
Python Pandas Tutorial – Beginner’s Guide to GPU Accelerated DataFrames forMar 12, 2021
This series on the RAPIDS ecosystem explores the various aspects that enable you to solve extract, transform, load (ETL) problems, build machine learning (ML) and deep learning (DL) models…
Speculation Grows As AMD Files Patent for GPU DesignJan 4, 2021
Long-time Slashdot reader UnknowingFool writes: AMD filed a patent on using chiplets for a GPU with hints on why it has waited this long to extend their CPU strategy to GPUs. The latency between chiplets poses more of a performance problem for GPUs, and AMD is attempting to solve the problem with a ...
Install the Latest Nvidia Linux Driver - LinuxConfig.orgDec 12, 2020
Most of the modern Linux Desktop systems come with Nvidia driver pre-installed in a form of the Nouveau open-source graphics device driver for Nvidia video cards. Hence depending on your needs and in…
How to Install Nvidia Driver on Ubuntu 20.04Dec 11, 2020
Which GPUs to get for deep learningNov 3, 2020
Here, I provide an in-depth analysis of GPUs for deep learning/machine learning and explain what is the best GPU for your use-case and budget.
Nvidia Ampere GA102 GPU Architecture [pdf]Oct 20, 2020
How Micron’s GDDR6X memory is the secret to unlocking 4K on Nvidia’s RTX 30Sep 16, 2020
Micron's GDDR6X is one of the star components in Nvidia's RTX 3070, 3080, and 3080 video cards. It's so fast it should boost gaming past the 4K barrier.
Diving Deep Into The Nvidia Ampere GPU ArchitectureJun 1, 2020
When you have 54.2 billion transistors to play with, you can pack a lot of different functionality into a computing device, and this is precisely what
CUDA 11 Features Revealed | NVIDIA Developer BlogMay 14, 2020
The new NVIDIA A100 GPU based on the NVIDIA Ampere GPU architecture delivers the greatest generational leap in accelerated computing. The A100 GPU has revolutionary hardware capabilities and we’re…
Getting started with the NVIDIA Jetson Nano - PyImageSearchMar 11, 2020
In this tutorial, you will learn how to get started with your NVIDIA Jetson Nano, including installing Keras + TensorFlow, accessing the camera, and performing image classification and object detection.
Part 1 - An Overview of AMD's GPU ArchitecturesDec 23, 2019
363 votes, 25 comments. This post has been split into a two-part series to work around Reddit’s per-post character limit. Please find Part 2 in the…
The economics of GPUs: How to train your AI model without going brokeAug 24, 2017
AI won't replace you, but someone using AI will — so it’s time to embrace AI, and it’s possible to do so even on a low budget.
(9) How many servers does a typical data center house? - QuoraNov 10, 2016
Answer (1 of 7): Lots. Definitions of the term "data centre" tend to vary. Some would label a small machine room with 2 or 3 racks a data centre, but that is not really a large facility by any stretch of the imagination. Most such installations are never going to hit the usual problems which dat...
Semiconductor Engineering .:. Making Waves In Deep LearningOct 12, 2016
Making Waves in Deep Learning How deep learning applications will map onto a chip.
Memory is the Next PlatformOct 10, 2016
A new crop of applications is driving the market along some unexpected routes, in some cases bypassing the processor as the landmark for performance and
$2 H100s: How the GPU Bubble Burst - by Eugene CheahOct 24, 2012
H100s used to be $8/hr if you could get them. Now there's 7 different places sometimes selling them under $2. What happened?
NVIDIA "Blackwell" GPUs are Sold Out for 12 Months Customers Ordering in 100K GPU QuantitiesOct 24, 2011
NVIDIA's "Blackwell" series of GPUs, including B100, B200, and GB200, are reportedly sold out for 12 months or an entire year. This directly means that if a new customer is willing to order a new Blackwell GPU now, there is a 12-month waitlist to get that GPU. Analyst from Morgan Stanley Joe Moore c...
Why GPU Utilization Falls Short: Understanding Streaming Multiprocessor (SM) Efficiency for Better LSep 24, 2003
Large Language Models (LLMs) have gained significant prominence in recent years, driving the need for efficient GPU utilization in machine learning tasks. However, researchers face a critical challenge in accurately assessing GPU performance. The commonly used metric, GPU Utilization, accessed through nvidia-smi or integrated observability tools, has proven to be an unreliable indicator of actual computational efficiency. Surprisingly, 100% GPU utilization can be achieved merely by reading and writing to memory without performing any computations. This revelation has sparked a reevaluation of performance metrics and methodologies in the field of machine learning, prompting researchers to seek more accurate ways to
gradients
Simplest backpropagation explainer without chain ruleApr 30, 2025
Neural Networks learn to predict by backpropagation. This article aims to help you, build a solid intuition about the concept using a simple example. The ideas we learn here can be expanded for bigger nerual network. I assume that you already know how feed forward neural network works.
Before reading the article further, take a pen and paper. The calculation used in this article can be done in the head. But I still want you to do by hand.
A Gentle Introduction to Exploding Gradients in Neural NetworksDec 18, 2017
Exploding gradients are a problem where large error gradients accumulate and result in very large updates to neural network model weights during training. This has the effect of your model being unstable and unable to learn from your training data. In this post, you will discover the problem of exploding gradients with deep artificial neural networks. After completing this post,…
gradio
Supercharge Your Machine Learning Experiments with PyCaret and Gradio - KDnuggetsMay 31, 2021
A step-by-step tutorial to develop and interact with machine learning pipelines rapidly.
graphql
GraphQL: the enterprise honeymoon is overDec 15, 2025
A production-tested take on GraphQL in enterprise systems, why the honeymoon phase fades, and when its complexity outweighs the benefits.
REST Still Outshines GraphQL for Many API Use CasesOct 16, 2024
Even now in 2024, there are still fundamental issues with GraphQL.
Why, after 6 years, I’m over GraphQLMay 31, 2024
GraphQL is an incredible piece of technology that has captured a lot of mindshare since I first started slinging it in production in 2018. You won’t have to ...
An Introduction to AbsintheMay 16, 2023
In the first part of this Absinthe for Elixir series, let's explore some of the basics of Absinthe and GraphQL.
When to use gRPC vs GraphQL - Stack OverflowDec 10, 2022
GraphQL kinda sucks | Hacker NewsAug 8, 2022
GraphQL: Core Features, Architecture, Pros and Cons | AltexSJan 12, 2022
GraphQL Pros and Cons: advantages and disadvantages compared to REST, architecture, core features, tools, and ecosystem.
Graphql best practicesJan 12, 2022
Getting started with React GraphQLDec 16, 2021
Read a GraphQL Editor blogpost titled : 'Getting started with React GraphQL'. Originally contributed by Tomek on 1/15/2019.
GraphQL concepts I wish someone explained to me a year agoDec 16, 2021
Part 7: Subscriptions (client implementation)
Building Backend | Node, Postgres, GraphQLJun 12, 2021
Hi there 👋 Every application, you'll agree, needs a back-end. And there are many languages and tools...
Getting started with React GraphQLAug 30, 2019
426K subscribers in the reactjs community. A community for discussing anything related to the React UI framework and its ecosystem. Join the…
GraphQL Basics: Part 3 - GraphQL ServerAug 30, 2019
Alright, it's been a bit longer than I was hoping since the latest entry in my ...
A Beginner’s Guide to GraphQLJan 10, 2019
In this article, you're going to learn how GraphQL works. I'm going to show you how to create a very well-designed, efficient, powerful API using GraphQL.
GraphQL - WelcomeAug 31, 2018
GraphQL | A query language for your APIJul 5, 2018
graphs
Network Clustering and Triadic Closure: Revealing Relationship Patterns with PythonJan 13, 2026
Learn how to measure network clustering and triadic closure in Python to identify tightly-knit groups and bridge nodes.
AI’s trillion-dollar opportunity: Context graphs - Foundation CapitalJan 3, 2026
AI’s trillion-dollar opportunity: Context graphs The last generation of enterprise software created a trillion-dollar ecosystem by becoming systems of record. Salesforce for…
Comparing Memory Systems for LLM Agents: Vector, Graph, and Event LogsNov 10, 2025
Learn how different memory systems affect multi-agent planning. Comparing Memory Systems for LLM Agents highlights key performance metrics.
Reference — NetworkX 3.5 documentationOct 23, 2025
Community Detection in Networks: Finding Hidden Groups with PythonOct 7, 2025
Discover hidden group structures in networks using Python's NetworkX library with Louvain and Girvan-Newman algorithms.
5 Cutting-Edge Natural Language Processing Trends Shaping 2026Sep 24, 2025
In this article, we discuss five cutting-edge NLP trends that will shape 2026.
Getting Started with Neo4j: Installation and Setup Guide - KDnuggetsAug 12, 2025
Learn how to install and set up Neo4j. This article will help you start using Neo4j to explore connected data.
A Gentle Introduction to Graph Neural NetworksApr 30, 2025
What components are needed for building learning algorithms that leverage the structure and properties of graphs?
Common Crawl Web Graph StatisticsDec 18, 2024
Visualisations and metrics from the Common Crawl Web Graph dataset
PacktPublishing/Modern-Graph-Theory-Algorithms-with-PythonAug 2, 2024
Modern Graph Theory Algorithms with Python, published by Packt - PacktPublishing/Modern-Graph-Theory-Algorithms-with-Python
How the Seven Bridges of Königsberg Spawned New MathMar 11, 2024
Are you smarter than an 18th-century Prussian?
[2304.05055] A Comprehensive Survey on Deep Graph Representation LearningMar 5, 2024
Graph representation learning aims to effectively encode high-dimensional sparse graph-structured data into low-dimensional dense vectors, which is a fundamental task that has been widely studied...
Graph Representation Learning BookMar 5, 2024
Google AI Releases TensorFlow GNN 1.0 (TF-GNN): A Production-Tested LibraryFeb 16, 2024
Graph Neural Networks (GNNs) are deep learning methods that operate on graphs and are used to perform inference on data described by graphs. Graphs have been used in mathematics and computer science for a long time and give solutions to complex problems by forming a network of nodes connected by edges in various irregular ways. Traditional ML algorithms allow only regular and uniform relations between input objects, struggle to handle complex relationships, and fail to understand objects and their connections which is crucial for many real-world data. Google researchers added a new library in TensorFlow, called TensorFlow GNN 1.0 (TF-GNN)
Meet PyGraft: An Open-Sourced Python-Based AI Tool that Generates Highly CuSep 25, 2023
An increasingly popular method for representing data in a graph structure is the usage of knowledge graphs (KGs). A KG is a group of triples (s, p, o), where s (subject) and o (object) are two graph nodes, and p is a predicate that describes the type of connection that exists between them. KGs are often supported by a schema (such as an ontology) that outlines the key ideas and relationships in a field of study and the constraints that govern how these ideas and relationships can interact. Many of the activities for which KGs are employed have a small
Graph Embeddings 101: Key Terms Concepts and AI ApplicationsSep 24, 2023
Research shows knowledge graphs and graph embeddings improve the quality and accuracy of Gen AI responses. Here’s how to get started.
Plotting Network Graphs using PythonMar 7, 2023
Learn how to use the NetworkX package to visualize complex networks
PageRank Algorithm for Graph DatabasesJan 30, 2023
What is PageRank algorithm? How can it be used in various graph database use cases? How to use it in Memgraph? If these questions are keeping you up at night, here is a blog post that will finally put your mind at ease.
Data on correlated products and sellers helps improve demand forecasting -Dec 28, 2022
Graph-based models capture correlations efficiently enough to enable machine learning at scale.
19 Graph Algorithms You Can Use Right NowDec 16, 2022
The fastest to run any graph algorithm on your data is by using Memgraph and MAGE. It’s super easy....
When to use gRPC vs GraphQL - Stack OverflowDec 10, 2022
An Introduction to Graph Partitioning Algorithms and Community DetectionAug 4, 2022
Graph partitioning has been a long-lasting problem and has a wide range of applications. This post shares the methodology for graph…
Stream Graphs Basics with Python's MatplotlibJul 26, 2022
The good-looking cousin of stacked area charts
Welcome | Handbook of Graphs and Networks in People AnalyticsJul 20, 2022
A technical manual of graphs, networks and their applications in the people and social sciences
The Top 10 Algorithms Every Programmer Should Know In Graph Data Structure!Mar 26, 2022
Why to learn these graph algorithms? Graph algorithms are a set of instructions that...
Bipartite — NetworkX 2.6.2 documentationFeb 20, 2022
Data Scientists, The 5 Graph Algorithms that you should knowFeb 2, 2022
Because Graph Analytics is the future
Generative Graph Models with NetworkXFeb 10, 2021
A comprehensive guide on standard generative graph approaches with implementation in NetworkX
What is a graph database?Feb 8, 2021
The graph database is popular with social networks, but there's no reason to limit it to tracking people and their friendships.
rgl | RubyGems.org | your community gem hostFeb 3, 2021
Decades-Old Graph Problem Yields to Amateur MathematicianJan 27, 2021
By making the first progress on the “chromatic number of the plane” problem in over 60 years, an anti-aging pundit has achieved mathematical immortality.
Link Prediction and Information Theory: A TutorialJan 17, 2021
Using Mutual Information to measure the likelihood of candidate links in a graph.
Practical Graph Theory in RubyDec 26, 2020
This is the next installment in the "Practical Computer Science" series, where you will learn how to apply classic computer science concepts to solve real problems using Ruby. Today we are going to talk about Graph
Matching of Bipartite Graphs using NetworkXDec 18, 2020
A simple introduction to matching in bipartite graphs with Python code examples
10 Graph Algorithms Visually ExplainedNov 29, 2020
A quick introduction to 10 basic graph algorithms with examples and visualisations
Peregrine: A Pattern-Aware Graph Mining SystemNov 24, 2020
Peregrine: A Pattern-Aware Graph Mining System.
MLWhiz: Helping You Learn Data Science!Nov 9, 2020
In this post, I am going to be talking about some of the most important graph algorithms you should know and how to implement them using Python.
Graph Theory | BFS Shortest Path Problem on a GridJun 1, 2020
Hi all, welcome back to another post of my brand new series on Graph Theory named Graph Theory: Go Hero. I undoubtedly recommend the…
An Intro to Graph Theory, Centrality Measurements, and NetworkXMay 15, 2020
Graph Theory is the study of graphs which are mathematical structures used to model pairwise relations between objects. These graphs are…
Limitations of Graph Neural NetworksApr 1, 2020
Reading between the lines of the latest advancements in GML.
Data Science Graphs (without the code!) - DataScienceCentral.comFeb 19, 2020
If you read my blog then you’ll probably realize there are a few data related topics that I could talk about for days. This blog dives into a tool called RAW Graphs, which solves for two of them, outlined below. We need to enable subject matter experts (SMES) to provide data-driven A subject matter expert is someone… Read More »Data Science Graphs (without the code!)
Ryanair, Hamiltonian Cycles, and using graph theory to find cheap flights (Feb 19, 2020
Ryanair is a wonderful example of two extremes - it’s one of the worst possible airlines that nickel and dimes you for everything, it’s not a great employer, and it is rated the...
Playing with model trains and calling it graph theoryMay 4, 2019
You’ve probably played with model trains, for instance with something like the Brio set shown below.1 And if you’ve built a layout with a model train set, yo...
Expero | Graph Data & VisualizationsJun 8, 2018
Expero's cross-functional teams offer deep expertise in custom software development, product design and technology to solve complex issues and drive innovation.
Graphiti: A Python Library for Building Temporal Knowledge Graphs Using LLMsSep 24, 2014
The challenge of managing and recalling facts from complex, evolving conversations is a key problem for many AI-driven applications. As information grows and changes over time, maintaining accurate context becomes increasingly difficult. Current systems often struggle to handle the evolving nature of relationships and facts, leading to incomplete or irrelevant results when retrieving information. This can affect the effectiveness of AI agents, especially when dealing with user memories and context in real-time applications. Some existing solutions have attempted to address this problem. One common approach is using a Retrieval-Augmented Generation (RAG) pipeline, which involves storing extracted facts and using techniques
gratitude
The Power of Affirmation at WorkDec 19, 2025
How leaders can build a culture where employees feel valued.
How Small, Easy Acts of Joy Improve Happiness and Well-BeingSep 5, 2025
A community science project finds that modest reminders to find joy in the day can have benefits that are on par with those of more ambitious well-being interventions
Putting the “You” in “Thank You”: Examining Other-Praising Behavior as the Active Relational Ingredient in Expressed GratitudeJul 2, 2025
Although positive emotions as a class can build interpersonal resources, recent evidence suggests a unique and direct role for gratitude. In the current research, we shine the spotlight on what happens between a grateful person and the benefactor to ...
The small exercise that's a powerful mood boosterDec 20, 2024
Counting our blessings is an age-old piece of advice – but it turns out that writing lists of good things that happen to us actually does help improve our mood.
When Expressing Gratitude to Employees, Timing MattersNov 29, 2024
Extensive research has indicated the benefits of showing gratitude to those around you, including your colleagues or employees. However, a new study suggests that the timing of these expressions can make a big difference. Through two experiments and an analysis of a top hospital’s intensive care units, researchers found that when you express gratitude to others before they engage in a distressing task it helps counteract some of the negative emotions associated with the task. Expressing gratitude early also makes employees more likely to persist through difficulty and bounce back and be resilient following failure. The authors suggests ways to show gratitude meaningfully and create a culture where your employees feel their work is seen, supported, and valued.
Thank you notesSep 9, 2018
grep
Regex Cheatsheet: Essentials You Must KnowJul 23, 2025
Struggling with regex? This simple cheatsheet breaks down common patterns, symbols, and examples you can use right away.
Introduction to Using Grep With Regular Expressions via WarpDec 12, 2024
After mastering regex, tools like grep become much more useful.
pdfgrep: Use Grep Like Search on PDF Files in Linux Command LineMar 26, 2023
Even if you use the Linux command line moderately, you must have come across the grep command. Grep is used to search for a pattern in a text file. It can do crazy powerful things, like search for new lines, search for lines where there are no uppercase characters, search
Mastering the awk command in LinuxMar 4, 2023
Introduction Hey there! As a Linux user, you might have heard about the powerful AWK...
Linux/BSD Command Line wizardry: Learn to think in sed, awk, and grepSep 1, 2021
“Do people really write these long, convoluted commands?” In a word: yes.
Grep cheatsheetApr 28, 2021
The grep utility searches any given input files, selecting lines that match one or more patterns. By...
grit-hustle-perseverance
What It's Like to Be...a Baker - By Dan Heath - Behavioral ScientistFeb 15, 2026
Tinkering with the recipe for gingerbread cake until it's right, adjusting to the variability of local grains, and cherishing the quiet mornings when the sun fills the bakery windows with Sophie Williams, a baker in Bellingham, Washington.
Train Your Brain to Handle Hard Things Without Wanting to QuitJan 25, 2026
A Harvard doctor filmed an entire video without leaving plank position. The neuroscience behind it will change how you think about discomfort.
I’ve been cut seven times in the NFL. Here is what those experiences taught meSep 12, 2025
Ben DiNucci's post went viral after he was cut for the seventh time. He explains lessons he learned about leadership and rejection.
How People Learn to Become ResilientAug 1, 2025
Maria Konnikova writes about resilience and the skills that researches say can be learned to acquire it.
Resilience is a practiceJul 21, 2025
It’s easy to imagine that we should do our work and then, when it doesn’t work as we hope, improvise to fix it. But perhaps our work is to show up ready and willing to deal with a futur…
Roger Federer’s commencement speech wasn’t just a viral moment. It was masterfulJun 10, 2025
Around the one-year anniversary of Roger Federer's viral commencement speech, The Athletic tried to find out why the speech was resonated.
I’ve trained Shai Gilgeous-Alexander for years. Here are 5 things you can learn from himJun 3, 2025
Dwayne Washington was a teacher at St. Thomas More Catholic Secondary School, where Gilgeous-Alexander attended, and also his club coach.
Things that arent progressApr 22, 2025
A few months ago, I wrote about things that look like work, but aren't. As I paid more attention to founders doing these things, I started thinking about why they were happening. I realized that...
Useful and Overlooked SkillsJun 16, 2024
On his way to be sworn in as the most powerful man in the world, Franklin Delano Roosevelt had to…
What Makes a Society More Resilient? Frequent Hardship.May 1, 2024
Comparing 30,000 years of human history, researchers found that surviving famine, war or climate change helps groups recover more quickly from future shocks.
The Two Ways of DoingFeb 1, 2024
Imagine two friends, Steve and Fred, chatting at a New Year’s party. Both of them resolve to abstain from alcohol for January, and attend the gym regularly. They shake on it. They don’t want to let each other down, and they both fulfill their commitments. Afterward, Steve keeps up his routine, and Fred soon drifts back to too much beer
What I learned from 100 days of rejection | Jia Jiang | TEDJan 16, 2024
Jia Jiang adventures boldly into a territory so many of us fear: rejection. By seeking out rejection for 100 days -- from asking a stranger to borrow $100 to requesting a "burger refill" at a restaurant -- Jiang desensitized himself to the pain and shame that rejection often brings and, in the process, discovered that simply asking for what you want can open up possibilities where you expect to find dead ends.
TEDTalks is a daily video podcast of the best talks and performances from the TED Conference, where the world's leading thinkers and doers give the talk of their lives in 18 minutes (or less). Look for talks on Technology, Entertainment and Design -- plus science, business, global issues, the arts and much more.
Find closed captions and translated subtitles in many languages at http://www.ted.com/translate
Follow TED news on Twitter: http://www.twitter.com/tednews
Like TED on Facebook: https://www.facebook.com/TED
Subscribe to our channel: http://www.youtube.com/user/TEDtalksDirector
The World Is Full of Sleeping BeautiesJul 28, 2023
Success in nature and culture depends just as much on timing as it does on brilliance.
Success 2.0: Taking the Leap | Hidden Brain MediaMay 4, 2023
American culture celebrates those who persevere in the face of adversity. So how do we know when to walk away from something that’s not working? Today, we kick off our new “Success 2.0” series with economist John List. He says in every domain of our lives, it’s important to know when to pivot to something new.
ShoshikantetsuMar 16, 2023
Hacker NewsFeb 8, 2023
If you want to get anything done, there are two basic ways to get yourself to do it. The first, more popular and devastatingly wrong option is to try to motivate yourself. The second, somewhat unpo…
UserTesting BlogJul 18, 2022
Get the best insights into the latest trends and all things human insight, CX, UX , product, marketing and research on our blog.
A Navy SEAL Explains 8 Secrets To Grit And Resilience - Barking Up The Wrong TreeJul 18, 2022
Navy SEAL platoon leader James Waters explains what keeps elite operators going and how you can apply this type of grit to your own challenges.
Cavemen, Samurais and Fight Club on breaking through failure | Spikelab.org - Mentoring social entrepreneurs for impactJul 18, 2022
There's an increasing amount of talk around failure and the fear of it, but it's largely missing the point. Here's why
How to Fail at Almost Everything and Still Win BigJul 18, 2022
Don't set goals. Passion is bullshit. Mediocre skills are valuable. These are just a few of the unexpected truths you'll discover in Scott Adams' new book. Here are 10 more takeaways.
How to do hard thingsJul 18, 2022
The Invention of Sliced Bread - PriceonomicsJul 18, 2022
Sliced bread: the greatest thing since...sliced bread.
A Dozen Lessons about Business from Anthony BourdainJul 18, 2022
“The absolute certainty that nobody was going to care about, read or buy Kitchen Confidential was what allowed me to write it. I didn’t have to think about what people expected. I didn’t car…
Your idea sucks, now go do it anywayJul 18, 2022
Constructive Pessimism - SKMurphy, Inc.Jul 17, 2022
Many entrepreneurs are naturally optimistic and discouraging pessimistic thinking, but the clever use of constructive pessimism is key to success
How to Be ConsistentJul 9, 2022
Five principles on consistency and sustainable progress, all backed by research and practice.
Failing wellJun 28, 2022
Failure sucks. Nobody wants to fail. But in the start-up world, most people are doing just that. I'm not sure I've read much about "how" to fail, since failure is so depressing and negative. But I'm...
The Hustler’s MBAJun 25, 2022
How to Be a StoicJun 25, 2022
Born nearly two thousand years before Darwin and Freud, Epictetus seems to have anticipated a way out of their prisons.
Fail Faster at Habits - zen habitsJun 23, 2022
By Leo Babauta There are two extremely common obstacles that get in the way of people succeeding at habit change: Messing up on the habit and then quitting. Not starting because the habit change seems to hard or daunting. Have you faced these problems? The answer is almost certainly yes, because pretty much all of […]
The Dark Art of Pretending You Are FineJun 13, 2022
I landed on a documentary about a guy who had a headache for years and never had a check-up. They found out later he had a brain tumor.
How to perform well under pressure | Psyche GuidesJan 17, 2022
Ditch the tough talk, it won’t help. Instead cultivate your mental flexibility so you can handle whatever comes your way
The unreasonable effectiveness of just showing up everyday | TypesenseJul 17, 2021
When I first started working on Typesense six years ago, I set myself a simple rule: I shall write some code everyday before or after work. That’s it. No deadlines, no quarterly goals, no milestones. I did not have a choice really — I was about to get married and was already working full-time in a demanding role. As you can imagine, building a search engine from scratch is not a trivial undertaking, so that was my way of not having to deal with additional stress.
On Hustles - The Paris ReviewFeb 12, 2021
For all of its other moving parts, ‘White Men Can’t Jump’ relies on teasing out the part of a hustle that I am most fascinated by in real life.
The 6 Types of Grit (And How to Develop Them)Feb 3, 2021
We all want to be better than we are today. And that often requires pushing yourself beyond your comfort zone, even when you don’t feel like it. It requires getting back up and trying again and again when you fail. It requires sticking with a path long enough to see it through. In short, becoming […]
Army Ranger School Is a Laboratory of Human EnduranceApr 23, 2020
The military's toughest training challenges have a lot in common with outdoor sufferfests like the Barkley Marathons and the Leadville Trail 100: you have to be fit and motivated to make the starting line, but your mind and spirit are what carry you to the end. A Ranger graduate breaks down an ordeal that shapes some of the nation's finest soldiers.
Tails, You Win · Collaborative FundDec 23, 2019
Steamboat Willie put Walt Disney on the map as an animator.
How to Cultivate Mental Stamina - Scott H YoungFeb 17, 2019
Being able to sustain focus is a key to success in work and study. Here's how you can increase your mental stamina with these five strategies.
5 Things I Learned as a Door-to-Door SalespersonJan 31, 2019
The experience was surreal and taught me a lot about the world, in the way that only personal experience in a difficult task can.
Underrated | By Stephen CurryJan 13, 2019
You didn’t think this was one of those fairytales where the kid gets some pep talk, and everything changes right? It REALLY isn’t that.
30 Behaviors That Will Make You Unstoppable In 2019Dec 14, 2018
“Anyone who lives within their means suffers from a lack of imagination.” — Oscar Wilde
Objections Are GoalsOct 10, 2018
After I published test && commit || revert, I got a variety of responses on Twitter and on Hacker News. The Twitter comments were mostly…
How to teach yourself hard thingsSep 5, 2018
grocery
Why Have Gourmet Grocers Become Social Clubs?Feb 20, 2026
Gourmet grocers are leaning into the experience.
The End of the ‘Generic’ Grocery-Store BrandOct 30, 2025
They’re no longer terrible—in fact, they’re often the draw.
Can Sprouts Reach 1,400 US Stores While 'Ignoring' a Huge Cohort of Grocery Shoppers? - RetailWireOct 1, 2025
Sprouts CEO Jack Sinclair elucidated a goal of 1,400 U.S. stores for the grocer. But, can it get there while focusing on a smaller niche of broader shoppers?
What Your Favorite Grocery Store Says About YouJul 10, 2025
Once a place of utility, the supermarket is now an object of obsession.
How Protein Mania Took Over the Grocery StoreFeb 22, 2025
Americans can’t get enough of its favorite macronutrient. Big Food is heeding the call.
The Great Grocery SqueezeDec 7, 2024
How a federal policy change in the 1980s created the modern food desert
Erewhon’s SecretsJun 16, 2024
Japanese utopians. Corporate glow-ups. $400 smoothies. The strange history of the world’s most cultish grocery store.
The Bizarre Story of Piggly Wiggly, the First Self-Service Grocery StoreJun 16, 2024
What's in a name?
Florida’s favorite grocery store seeks to be uncomplicated in a complicatedJun 16, 2024
Could you build a company like Publix today?
The Man Who’s Going to Save Your Neighborhood Grocery StoreJun 16, 2024
American food supplies are increasingly channeled through a handful of big companies: Amazon, Walmart, FreshDirect, Blue Apron. What do we lose when local supermarkets go under? A lot -- and Kevin Kelley wants to stop that.
The Utopian Promises and Novelty Cheese of a Discount Grocery StoreJun 16, 2024
The future of grocery shopping might just be a 100-year-old grocery chain with a cult following.
We Need to Talk About Trader Joe’sApr 5, 2024
Behind the bubbly cashiers in Hawaiian shirts, craveable snacks, and bargain-basement prices are questionable business practices that have many food brands crying foul at the company’s blatant and aggressive copycat culture.
Consumers are increasingly pushing back against price increases — and winniFeb 29, 2024
Inflation has changed the way many Americans shop. Now, those changes in consumer habits are helping bring down inflation.
Trader Joe's: The Anti-GrocerAug 20, 2023
The grocer created a cult brand with sales of $16B+ a year by doing the opposite of industry best-practices (from wages to product to ads).
Saraga Is the International Grocery Store of My DreamsAug 5, 2023
In a former Toys “R” Us, you can buy Nepali dumplings, get your eyebrows threaded, and pick up merguez sausages.
How Sight—Not Taste, Smell, or Touch—Became the Sense of the Supermarket -May 9, 2023
When it comes to buying food, sight has usurped all other senses. What are the consequences of relegating smell, taste, and touch to the sidelines?
Why so many top restaurants are launching grocery store product linesMay 5, 2023
A bunch of razor-thin restaurant margins doesn’t make a fortune so much as a bed of razors.
Should Print Circulars Stay or Go?May 5, 2023
Kroger is following in the footsteps of Giant Eagle, attempting to phase out its print inserts in newspapers and mailed to homes in favor of digital alternatives.
As Dollar Stores Proliferate, Some Communities Say NoMar 1, 2023
More than 70 proposed dollar stores have been rejected since 2019, a report shows. It’s a small number compared with those that opened but evidence of opposition to the industry.
Forget Milk and Eggs: Supermarkets Are Having a Fire Sale on Data About You – The MarkupFeb 22, 2023
When you use supermarket discount cards, you are sharing much more than what is in your cart—and grocery chains like Kroger are reaping huge profits selling this data to brands and advertisers
Salvage stores achieve sales growth by selling ‘unsellable’ goodsAug 24, 2022
In an inflationary era when customers are increasingly strapped for cash and hunting for discounts, a category of ultra-low-priced grocers that sell the unsellable is growing in popularity. Do you expect mainstream grocers to change their protocols for "unsellable" CPG items if inflation persists?
The hidden makers of Costco’s Kirkland Signature and Trader Joe’s O’s | CNN BusinessAug 14, 2022
Store brands are shrouded in secrecy. Who makes them?
Can a grocery store teach its customers to love to cook?Aug 12, 2022
A grocer in Utah is opening a store that aspires to focus on meal prep instead of just selling groceries, guiding customers to cook creatively with a limited number of locally produced ingredients. Will a grocer with a stripped-down inventory, dedicated to helping customers with meal prep, succeed in the long run?
The Case for the Supermarket SupershopperJul 5, 2022
Some shoppers find joy in daily trips to the grocery store simply for the community, let alone the miracle of abundance.
Why people hated shopping carts when they first came out | CNN BusinessMay 19, 2022
We live in a world shaped by shopping carts. The ubiquitous, unloved contraptions are a key feature of US economy. (Yes, really.)
The Algorithms That Make Instacart RollMar 5, 2021
Instacart crunches petabytes daily to predict what will be on grocery shelves and even how long it will take to find parking
Instacart Survived Covid Chaos — But Can It Keep Delivering After The Pandemic?Jan 30, 2021
Apoorva Mehta’s grocery delivery app is now an essential—and booming—business. Now the 34-year-old billionaire has to show he can outfox Bezos, dodge an avalanche of new competitors and calm his rebellious workers and restless partners.
Business school grads and quants are winning the battle to create the nextSep 14, 2018
These days my Instagram feed feels more like QVC than a social network. And many of these companies are enjoying tremendous success pitching natural deodorants, unique underwear, creative candles, glam glasses, stunning shoes -- all manner of well-crafted microbrands. We’re witnessing a cambrian explosion of new consumer startups.
Why U.S. Grocery Chains Need More (and Better) Store-Brand ProductsSep 9, 2018
The U.S. grocery industry has reached an uncertain crossroads, facing competition from many sources, but especially German discount stores ALDI and LIDL, who are aggressively expanding across the United States. Whether U.S. retailers will maintain their market share hinges on how they use private-label products (also called white-label goods or store brands) to fight back. In France, grocers were able to repel ALDI and LIDL by offering private-label goods that were both affordable and high quality, but in the UK, retailers chose to offer super-budget private-label items. They might have been cheap, but they were very low-quality, and consumers punished them. The U.S. doesn’t have a lot of experience with private-label goods, so American retailers will have to come up to speed quickly if they hope to maintain their advantage.
https://thinkinginpublic.org/story/why-on-earth-is-stubbs-bbq-sauce-for-sale-in-a-prague-grocery-store/Aug 28, 2018
How your supermarket manipulates youJan 27, 2018
Supermarkets have always played tricks on your mind. Can they help you to eat better?
groupthink
10th Person - Blain SmithFeb 13, 2026
Winning with misinformation: New research identifies link between endorsing easily disproven claims and prioritizing symbolic strengthOct 15, 2025
Conversations around misinformation that assume everyone cares about literal truth may be missing the point.
When Values Eat Their Young: How Ideal-Driven Groups Drift into Their Own ShadowSep 17, 2025
Picture this: A Slack channel for an open-source project that prominently displays "Be excellent to each other" in its community guidelines. Six month
Why Good Ideas Die Quietly and Bad Ideas Go ViralMay 28, 2025
Gideon Lewis-Kraus reviews “Antimemetics,” a new book which argues that notions get taken up not because of their virtue but because of their catchiness.
Psychology’s Groupthink Helps Explain the Signal Chat FiascoApr 2, 2025
At the heart of the Trump administration’s Signal scandal lies the familiar psychological pitfall of groupthink
Columbia's Last FlightMay 22, 2024
The inside story of the investigation—and the catastrophe it laid bare
What Makes Group Decisions Go Wrong. And Right.Jan 7, 2022
Why intellectual laziness doesn’t have to lead to groupthink.
growth-hacks
Do Things that Don't ScaleAug 15, 2025
The Cold Email HandbookDec 13, 2024
Learn how to master cold email outreach from $0 to $1M ARR. A comprehensive playbook on infrastructure, copywriting, and AI-powered personalization at scale.
Why The Haters are Wrong About Growth HackingJul 19, 2022
There’s an article making the rounds in tech circles titled “Growth Hacking is Bull” written by Muhammad Saleem. I’d like to make the case that the article is wrong. I’d strongly encourage you to…
Neil Patel's Digital Marketing BlogJul 19, 2022
Your #1 resource for digital marketing tips, trends, and strategy to help you build a successful online business.
The Greatest Word of Mouth Follow-up Question... Ever!Jul 19, 2022
Word of mouth is powerful... but this follow-up question allows you to harness that power to supercharge your marketing. Use it wisely and carefully.
A Meditation on Word of Mouth Marketing and Growth HackingJul 19, 2022
Orchestrating Offline Conversations in an Always-Online World
twoodo.com - This website is for sale! - twoodo Resources and Information.Jul 18, 2022
This website is for sale! twoodo.com is your first and best source for all of the information you’re looking for. From general topics to more of what you would expect to find here, twoodo.com has it all. We hope you find what you are searching for!
Product Leaders: User Acquisition SeriesJul 18, 2022
I can be pedantic about user acquisition. The truth is that consumer web and mobile applications are under increasing pressure to demonstrate explosive exponential traction. Building a great prod…
How Pinterest drives sustainable growthJul 18, 2022
Marc Andreessen famously said that for startups, “the only thing that matters is getting to product/market fit.” Product/market fit means providing enough value to enough people that the startup can…
22 Ways to Reduce SaaS Churn with Growth HackingJul 18, 2022
Ever wonder how to apply Growth Hacking thinking to reducing churn and increasing retention? Here are 22 ways to make that happen.
A Recipe for Growth: Adding Layers to the Cake | Andreessen HorowitzJul 18, 2022
Adding new layers of complementary businesses on top of your core product can fight the “gravity effect” of scaling and boost long-term growth.
Top Hacks from a PM Behind Two of Tech's Hottest ProductsJul 18, 2022
Todd Jackson has experience managing products at Google, Facebook and his own startup. Here's what he learned.
‘Give Away Your Legos’ and Other Commandments for Scaling StartupsJul 18, 2022
Molly Graham helped forge a work culture at Facebook that's withstood huge amounts of growth. Today, she's something of a rapid scaling expert. Here's the key to doing it right, she says.
Neil Patel's Digital Marketing BlogJul 18, 2022
Your #1 resource for digital marketing tips, trends, and strategy to help you build a successful online business.
Twilio Segment BlogJul 18, 2022
TOP 10 proven growth hacks for 2019 [examples, case studies]Jul 18, 2022
These easy growth hacking tactics increased conversions, opt-ins, sales by up to 1,900%. Put them into practice in 2019.
9 Ways to Build Virality into your ProductJul 18, 2022
If your startup is building a consumer product, your product has to be viral. For consumer products, the average revenue per user tends to…
Growth Hacking: 100 Hacks, Strategies & Techniques - Wishpond BlogJul 18, 2022
Try these 100 growth hacking strategies and techniques to grow your business with minimal investment or effort.
Traction PDF Summary - Gabriel Weinberg & Justin Mares | 12min BlogJul 17, 2022
Traction PDF Summary by Gabriel Weinberg & Justin Mares pinpoints how startups can climb the ladder at lightning speed and learn how to expand your company.
User Acquisition: Viral Factor BasicsJul 5, 2022
This is the second post in a three post series on user acquisition. In the first post in this series, we covered the basics of the five sources of traffic to a web-based product. This next post co…
Batman Is A Growth HackerJul 5, 2022
B.J. Mendelson breaks down how Batman is a growth hacker, and what we can learn about the field from him.
A Dozen Attributes of a Scalable BusinessJul 5, 2022
“A startup is a company designed to grow fast. Being newly founded does not in itself make a company a startup. Nor is it necessary for a startup to work on technology, or take venture fundin…
28 Clever Under the Radar Growth Hack ExamplesJul 5, 2022
We all know about the Paypal, Hotmail, and Airbnb growth hacks. Here are 28 new growth hack examples to help you market your web and mobile
Growth Hacking ChecklistJun 28, 2022
“My biggest surprise was when we launched the Facebook app and it didn’t go viral” -Startup CEO quote “The month after we ...
What Makes Content Spread: Anatomy of a Post With 500,000+ LikesJun 25, 2022
How can I make my content go viral? I sat down with the viral marketing geniuses Marc and Angel to discuss content marketing and other key tips.
RapGenius Growth Hack ExposedJun 24, 2022
Yesterday RapGenius posted the following announcement on their Facebook page: As a contributor to various blogs and an endearing fan of RapGenius, I took
9 Ways To Make Your Startup Grow VirallyJun 24, 2022
Liquidity hacking: Solving the chicken-egg dilemma with marketplace startupsJun 24, 2022
Guest How to get a two-sided marketplace startup like Airbnb, Exec, or eBay up and running -- the painless way.
35 Growth Hacking Tools for Marketers Who Don’t CodeJun 24, 2022
So here it is: your epic list of tools for marketers with a technical mindset but limited coding chops
Reddit Was Built On Legions of Fake Accounts | The Mary SueJun 24, 2022
Reddit has never been a place where you could necessarily connect one user with one account. Parody accounts are commonplace -- to a fault if you ask some -- and there have been more than one fiasco involving users who pretend to be different people with different accounts; it's crazy. It's also extremely fitting. Why? Because when Reddit was first started, it was populated almost entirely with content submitted by fake users.
When Growth Hacking Goes Bad | TechCrunchJun 14, 2022
Andreessen Horowitz-backed music lyrics and annotations Rap Genius was the latest to stray over to the darker side of so-called "growth hacking," with its spammy SEO tactics disguised as an affiliate program. Called out, exposed and now punished by Google, the site's traffic has tanked. But Rap Genius, thanks in part to that $15 million investment, will probably recover. They'll clean up their links, make amends, and maybe even get back into Google's good graces. End users will once again land on Rap Genius's pages, many of them none the wiser for the time the site spent in the penalty box. Other startups may not be as lucky.
Defining A Growth Hacker: Growth Is Not A Marketing Strategy | TechCrunchJun 13, 2022
“Viral marketing is not a marketing strategy,” Andrew Chen wrote back in 2007. “Successful viral products don’t have viral marketing bolted on once the product has been developed. It’s not a marketing strategy. Instead, it’s designed into the product from the very beginning as part of the fundamental architecture of the experience.”
9 Qualities of World Class Growth Hacking TeamsJun 2, 2022
Here's our guide for assembling a growth team who strive for constant improvement, with a commitment to understanding why experiments succeed or fail.
23 Tactical Company Building Lessons, Learned From Scaling Stripe & NotionMar 23, 2022
From Stripe to Notion, Cristina Cordova has worked on some of the biggest products in tech. She shares tactical tidbits on what she’s learned about about scaling companies and shaping your career.
The Ultimate Product Led Growth Resources GuideAug 29, 2019
OpenView's Kyle Poyar presents an inclusive guide featuring the best resources available to help you execute a successful product-led growth strategy.
Why Adding More Products Isn’t Always the Best Way to GrowAug 28, 2018
Product expansion is often used as a path to growth, but it can have unintended consequences for other aspects of the business — including the customer experience central to the company’s value proposition. Indeed, current trends are moving away from broad offerings in many industries. A recent poll had 64% of consumers saying they would pay more for a simpler, more convenient experience. The trick is, growth strategies have to fit the company’s current context, especially its brand promise and its target market. Once the company has a strategy to fit the context, it can sequence out the various steps to implement it. For example, McDonald’s had known for years that customers wanted all-day breakfast, but to be able to offer it, it first had to streamline and revamp its kitchens.
51 Examples of Growth Hacking Strategies & Techniques From The World’s MostJun 4, 2018
Learn how the world's fastest growing companies have hacked their way to success with innovative products, viral promotions and ingenious marketing campaigns. [6500 words]
Indie Hackers: Work Together to Build Profitable Online BusinessesMay 7, 2018
Connect with developers sharing the strategies and revenue numbers behind their companies and side projects.
How we grew from 0 to 4 million women on our fashion app, with a vertical machine learning approachApr 10, 2018
My name is Gabi (my bio), and I’m the CEO and co-founder of Chicisimo. We launched three years ago, our goal was to offer automated outfit…
How we grew from 0 to 4 million women on our fashion app, with a vertical mMar 1, 2018
Three years ago we launched Chicisimo, our goal was to offer automated outfit advice. Today, with over 4 million women on the app, we want to share how our data and machine learning approach helped us grow. It’s been chaotic but it is now under control.
gsi
Characterizing and Optimizing Realistic Workloads on a Commercial...Oct 4, 2025
Compute-in-SRAM architectures offer a promising approach to achieving higher performance and energy efficiency across a range of data-intensive applications. However, prior evaluations have largely relied on simulators or small prototypes, limiting the understanding of their real-world potential. In this work, we present a comprehensive performance and energy characterization of a commercial compute-in-SRAM device, the GSI APU, under realistic workloads. We compare the GSI APU against established architectures, including CPUs and GPUs, to quantify its energy efficiency and performance potential. We introduce an analytical framework for general-purpose compute-in-SRAM devices that reveals fundamental optimization principles by modeling performance trade-offs, thereby guiding program optimizations.
Exploiting the fine-grained parallelism of tightly integrated memory-compute architectures requires careful data management. We address this by proposing three optimizations: communication-aware reduction mapping, coalesced DMA, and broadcast-friendly data layouts. When applied to retrieval-augmented generation (RAG) over large corpora (10GB--200GB), these optimizations enable our compute-in-SRAM system to accelerate retrieval by 4.8$\times$--6.6$\times$ over an optimized CPU baseline, improving end-to-end RAG latency by 1.1$\times$--1.8$\times$. The shared off-chip memory bandwidth is modeled using a simulated HBM, while all other components are measured on the real compute-in-SRAM device. Critically, this system matches the performance of an NVIDIA A6000 GPU for RAG while being significantly more energy-efficient (54.4$\times$-117.9$\times$ reduction). These findings validate the viability of compute-in-SRAM for complex, real-world applications and provide guidance for advancing the technology.
Multilingual and Multimodal Vector Search with Hardware AccelerationMay 2, 2022
Authors: Dmitry Kan, Aarne Talman
NeurIPS 2021 Announcement: The Billion-Scale Approximate Nearest Neighbor Search ChallengeMay 28, 2021
We are excited to announce that this year’s NeurIPS 2021 Conference will host a first-of-its-kind competition in large scale approximate…
High-Performance, Billion-Scale Similarity Search | by Pat Lasserre | GSI TNov 3, 2020
In Part 1 of this series, we introduced the concept of embedding vectors. In Part 2, we discussed how embedding vectors can be used in…
guilt
The Psychological Value of RepentanceSep 22, 2025
Every major world religion has a process for moral accounting. That’s something we rarely talk about in secular society.
You want people to do the right thing? Save them the guilt trip | Psyche IdeasJul 18, 2022
If you want to inspire people to do the right thing, don’t guilt-trip them. Positive emotions are a more powerful motivator
habits
Why your brain needs everyday ritualsJan 3, 2026
Rituals serve psychological functions that go far beyond mere habit or tradition.
Designing with Psychology to Make Products StickOct 9, 2025
Product design has a lot to do with psychology. It’s less about how people should behave and more about how they actually do. In this piece, we’re sharing some principles that can be useful to keep in mind. The names might sound quite technical at first, but once you see the examples from everyday products, you’ll realise they’re just simple patterns of human nature, and when applied well, they can help your product do good.
Five small habits sports psychologists wish everyone didMay 16, 2025
Sports psychologists work with athletes to get their best performance on the field or court, but these tools are ones anyone can try.
Habit Stacking: 17 Small Productivity HabitsApr 22, 2025
Learn the secret behind how we can use tiny habits and habit stacking to build new habits that actually stick and are more than the sum of their parts.
To Make Your Product a Habit, Start With These Powerful TriggersMar 25, 2024
Learn how to create customer habits using powerful triggers like time, mood, location, and social influences. Discover techniques to boost product usage.
Getting Your Product Into the Habit ZoneJul 19, 2022
Companies utilize the Habit Zone to create user habits and influence user behavior. By creating habits, products become a part of users’ lives and minds.
Mistakes Managers Should AvoidJul 18, 2022
Some managers keep diaries of their on-the-job mistakes, partly to avoid repeating errors, and partly to make employees comfortable with failure. At least one added cartoons.
Made to Stick: Summary & Examples + PDF | The Power MovesJul 18, 2022
In This Made To Stick summary you will learn exactly how to make your ideas persuade people and "stick" into their minds.
How to Create a Chain Reaction of Good HabitsJul 18, 2022
One thing leads to another and before you know it, you've got a routine.
How two companies hooked customers on rarely used productsJul 18, 2022
Larry Page, CEO of Alphabet (the company formerly known as Google), has a quirky way of deciding which companies he likes. It’s called “The Toothbrush Test.” According to the New York Times, when Page looks at a potential company to acquire
Habits Are The New Viral: Why Startups Must Be Behavior Experts | TechCrunchJul 18, 2022
Face it; you’re hooked. It’s your uncontrollable urge to check for email notifications on your phone. It’s your compulsion to visit Facebook or Twitter for just a few minutes, but somehow find yourself still scrolling after an hour. It’s the fact that if I recommended a book to purchase, your mind would flash “Amazon” like a gaudy neon sign. If habits are defined as repeated and automatic behaviors, then technology has wired your brain so you behave exactly the way it wants you to. In an online world of ever-increasing distractions, habits matter. In fact, the economic value of web businesses increasingly depends on the strength of the habitual behavior of their users. These habits ultimately will be a deciding factor in what separates startup winners and losers.
How to Make Your Product Scientifically Irresistible | Gainsight SoftwareJul 18, 2022
Your product can’t suck. That’s a given. But it’s also not enough to be a good product that doesn’t hook your customer and connect to their pain points.
https://betterhumans.coach.me/this-is-the-fastest-way-to-improve-your-life-f3ee2f7215ed%23.8wy0ducppJul 18, 2022
Habits, Obstacles, and Media Manipulation with Ryan HolidayJul 18, 2022
This week I chat with Ryan Holiday, an author and hacker, about habits, obstacles, and media manipulation.
This Is How To Stop Checking Your Phone: 5 Secrets From Research - Barking Up The Wrong TreeJul 18, 2022
You want the good things technology brings. You also want to know how to stop checking your phone so much. Here's what a behavior expert says is the answer.
BehanceJul 18, 2022
How to Build a New Habit: This is Your Strategy GuideJul 18, 2022
Understanding how to build new habits is essential for making progress. Read this guide right now to learn 5 easy, powerful strategies for changing habits.
How to Be ConsistentJul 9, 2022
Five principles on consistency and sustainable progress, all backed by research and practice.
19 Tactics to Solve the Chicken-or-Egg Problem and Grow Your MarketplaceJun 23, 2022
An inside look at 19 tactics top marketplaces have used to solve the chicken-or-egg problem and kickstart growth.
Fail Faster at Habits - zen habitsJun 23, 2022
By Leo Babauta There are two extremely common obstacles that get in the way of people succeeding at habit change: Messing up on the habit and then quitting. Not starting because the habit change seems to hard or daunting. Have you faced these problems? The answer is almost certainly yes, because pretty much all of […]
Eight Habits of Expert Software Designers: An Illustrated GuideJan 16, 2022
The best designers employ specific habits, learned practices, and observed principles when they work. Here are a few of them.
The Thinner Book: Atomic Habits by James ClearJan 6, 2022
A summary of the best ideas from Atomic Habits by James Clear
The 6 Types of Grit (And How to Develop Them)Feb 3, 2021
We all want to be better than we are today. And that often requires pushing yourself beyond your comfort zone, even when you don’t feel like it. It requires getting back up and trying again and again when you fail. It requires sticking with a path long enough to see it through. In short, becoming […]
The Behavioral Economics Diet: The Science of Killing a Bad HabitMar 9, 2020
What really motivates you more, the promise of a reward if you succeed or a debt if you don’t?
This researcher studied 400,000 knitters and discovered what turns a hobbyAug 31, 2019
An MIT Sloan Ph.D. candidate discovered what turned skilled hobbyists into entrepreneurs.
Deliberate Practice: A Mindful & Methodical Way to Master Any SkillAug 26, 2019
Each and every day we eat, we sleep, we read, we brush our teeth. So why haven't we all become world-class masters of eating, sleeping, reading, and teeth-brushing?
Speed as a HabitJan 13, 2019
All things being equal, speed will determine whether your company succeeds or not. Here's how to make it core to your culture.
hacking
We hid backdoors in ~40MB binaries and asked AI + Ghidra to find them - Quesma BlogFeb 22, 2026
BinaryAudit benchmarks AI agents using Ghidra to find backdoors in compiled binaries of real open-source servers, proxies, and network infrastructure.
Hackers made death threats against this security researcher. Big mistake.Feb 16, 2026
Allison Nixon had helped arrest dozens of members of The Com — a loose affiliation of online groups responsible for violence and hacking campaigns. Then she became a target.
How SSL Misconfigurations Impact Your Attack SurfaceApr 2, 2025
53.5% of websites have weak SSL setups—leaving attack surfaces exposed and increasing breach risk.
Default Passwords Jeopardize Water InfrastructureMay 22, 2024
Recent cyberattacks reveal soft targets and harder problems
The xz Hack Revealed a Looming $8.8 Trillion Infrastructure DisasterMay 11, 2024
Just like our roads, bridges, electrical grid and airports will deteriorate without public investment, so will our software infrastructure without action.
A Vigilante Hacker Took Down North Korea’s Internet. Now He’s Taking Off HiApr 5, 2024
As “P4x,” Alejandro Caceres single-handedly disrupted the internet of an entire country. Then he tried to show the US military how it can—and should—adopt his methods.
Hackers Found a Way to Open Any of 3 Million Hotel Keycard Locks in SecondsMar 23, 2024
The company behind the Saflok-brand door locks is offering a fix, but it may take months or years to reach some hotels.
Digital Havoc: A Reading List About HackingMar 13, 2024
Behind the 1s and 0s, hackers are still people—and their motivations are more nuanced than you might think.
The Untold Story of the Boldest Supply-Chain Hack EverMay 6, 2023
The attackers were in thousands of corporate and government networks. They might still be there now. Behind the scenes of the SolarWinds investigation.
The HackerApr 21, 2023
Runa Sandvik has made it her life’s work to protect journalists against cyberattacks. Authoritarian regimes are keeping her in business.
how to completely own an airline in 3 easy stepsJan 22, 2023
and grab the TSA nofly list along the way
Intelligent System SecurityFeb 12, 2022
We present a novel approach to infiltrate data to air-gapped systems without any additional hardware on-site.
How China turned a prize-winning iPhone hack against the UyghursDec 31, 2021
An attack that targeted Apple devices was used to spy on China’s Muslim minority—and US officials claim it was developed at the country’s top hacking competition.
Companies Linked to Russian Ransomware Hide in Plain SightDec 6, 2021
Cybersecurity experts tracing money paid by American businesses to Russian ransomware gangs found it led to one of Moscow’s most prestigious addresses.
Top 10 Web Hacking Techniques of 2017 | BlogOct 12, 2018
The verdict is in! Following 37 nominations whittled down to a shortlist of 15 by a community vote, our panel of experts has conferred and selected the top 10 web hacking techniques of 2017 (and 2016)
How a hacker network turned stolen press releases into $100 million - The VAug 24, 2018
International hackers based in Ukraine stole unpublished press releases and passed them to stock traders to reap tremendous profits.
happiness
Hanging on to Your Inner Child Might Be the Secret to Health and HappinessFeb 22, 2026
New evidence suggests that adults never outgrow the need for play, but we definitely do forget how to make room for it.
Appreciation as a daily practiceNov 26, 2025
Timm Chiusano was having one of the worst days of his career when he found himself inexplicably fascinated by a mundane part of the world on his walk home. That moment sparked a life-changing realization: he was addicted to appreciation, and it was actually his superpower. He shares a disarmingly simple practice that will make you happier, more present and better equipped to navigate your most challenging days.
Ancient Taoism Quietly Answers the Chaos of Modern Life | TheCollectorOct 23, 2025
The timeless wisdom of Taoism provides enduring guidance for modern individuals seeking ways to live without stress, stay healthy, and achieve happiness.
How Small, Easy Acts of Joy Improve Happiness and Well-BeingSep 5, 2025
A community science project finds that modest reminders to find joy in the day can have benefits that are on par with those of more ambitious well-being interventions
For some people, music doesn’t connect with any of the brain’s reward circuitsAug 22, 2025
Neuroscientists find people who don’t enjoy music, study their brain activity.
At the heart of surfing is the pursuit of moments so pure they clean you out | Aeon EssaysAug 11, 2025
At the heart of surfing, whether you’re a kook or a famous charger, is the pursuit of moments so pure they clean you out
How to Be More Charismatic, but Not Too Much MoreJul 17, 2025
It turns out that being charming has a happy mean.
The small exercise that's a powerful mood boosterDec 20, 2024
Counting our blessings is an age-old piece of advice – but it turns out that writing lists of good things that happen to us actually does help improve our mood.
Stuck in a rut? How to appreciate your life again, according to scienceJun 27, 2024
After a while, even the most exciting relationships, jobs and environments lose their spark. But cognitive neuroscientist Tali Sharot says it's possible to fall back in love with life's small joys.
This former Google X exec reverse engineered happiness — here's what he foundFeb 29, 2024
Mo Gawdat says it took him much longer to find happiness than it did for him to find success, so he hacked it for everyone else.
THE 9 DOMAINS OF GNH – GNH Centre BhutanJan 27, 2024
7 Things A Happiness Scientist Taught Me About Finding More JoyJan 22, 2024
“Without unhappiness, you wouldn’t survive, learn, or come up with a good idea,” points out Harvard professor Arthur C Brooks.
Can You Overdose on Happiness? - NautilusSep 24, 2022
The science and philosophy of deep brain stimulation.
Give Your Money. Give Your Time. Don’t Tell Anyone.Jan 6, 2022
You can find deep, lasting happiness in a good deed that no one knows you did.
The fast track to a life well lived is feeling gratefulOct 9, 2019
Being ‘good’ need not take years of ethical analysis: just a few moments of gratitude can set you on the path to virtue
100,000 happy momentsFeb 20, 2018
What makes people happy? A huge database is making it possible to discern the answer at last.
The Misery Bomb—AsteriskSep 24, 2002
Children across the Western world are getting less happy. If we can’t find a way to reverse the trend, it might have an outsized impact on their future.
hashing
Undergraduate Upends a 40-Year-Old Data Science Conjecture | Quanta MagazineFeb 11, 2025
A young computer scientist and two colleagues show that searches within data structures called hash tables can be much faster than previously deemed possible.
Hashing in Modern Recommender Systems: A PrimerMar 29, 2023
Understanding the most underrated trick in applied Machine Learning
Introduction to Locality-Sensitive HashingJun 24, 2021
An Introduction to Hashing in the Era of Machine LearningApr 26, 2018
In December 2017, researchers at Google and MIT published a provocative research paper about their efforts into “learned index structures”…
hashtags
12 Tools for Generating HashtagsMay 28, 2024
Need more from social media campaigns? Try high-performing hashtags.
This New Tool Lets You Analyse TikTok HashtagsMay 12, 2022
TikTok has come to play a crucial role for open source researchers. By analysing how hashtags are used, this tool lets you dig even deeper.
Twitter analysis: identifying a propaganda bot networkDec 23, 2019
Conducting a Twitter network analysis uncovers a widespread bot network targeting West Papua with pro-Indonesian Government content on major social platforms.
hbm
Solving The Problems of HBM-on-LogicDec 18, 2025
Future AI Accelerators Might Need To Be Slower To Be Faster
Interconnect Innovations In High Bandwidth Memory: Part 2Oct 14, 2025
Bump technologies are being pushed beyond what was thought to be their physical and performance limits.
Another Giant Leap: The Rubin CPX Specialized Accelerator & RackSep 15, 2025
Nvidia announced the Rubin CPX, a solution that is specifically designed to be optimized for the prefill phase, with the single-die Rubin CPX heavily emphasizing compute FLOPS over memory bandwidth…
The Demise Of Static Timing Verification?Sep 11, 2025
Timing is increasingly dependent on vectors. Can static techniques continue to deliver the necessary results? Maybe.
NVIDIA Unveils Its Newest ‘Rubin CPX’ AI GPUs, Featuring 128 GB GDDR7 Memory & Targeted …Sep 10, 2025
NVIDIA has surprisingly unveiled a rather 'new class' of AI GPUs, featuring the Rubin CPX AI chip that offers immense inferencing power.
3D-Stacked HBM Architecture Susceptibility To Thermal Attacks (NC A&T State, New Mexico State)Sep 10, 2025
A new technical paper titled “On the Thermal Vulnerability of 3D-Stacked High-Bandwidth Memory Architectures” was published by researchers at North Carolina A&T State University and New Mexico State University. Abstract “3D-stacked High Bandwidth Memory (HBM) architectures provide high-performance memory interactions to address the well-known performance challenge, namely the memory wall. However, these architectures are susceptible... » read more
The Future of Memory: Limits and OpportunitiesSep 5, 2025
Memory latency, bandwidth, capacity, and energy increasingly limit performance. In this paper, we reconsider proposed system architectures that consist of huge (many-terabyte to petabyte scale) memories shared among large numbers of CPUs. We argue two practical engineering challenges, scaling and signaling, limit such designs. We propose the opposite approach. Rather than create large, shared, homogenous memories, systems explicitly break memory up into smaller slices more tightly coupled with compute elements. Leveraging advances in 2.5D/3D integration, this compute-memory node provisions private local memory, enabling accesses of node-exclusive data through micrometer-scale distances, and dramatically reduced access cost. In-package memory elements support shared state within a processor, providing far better bandwidth and energy-efficiency than DRAM, which is used as main memory for large working sets and cold data. Hardware making memory capacities and distances explicit allows software to efficiently compose this hierarchy, managing data placement and movement.
Backside Power Delivery (BSPD) WikiAug 31, 2025
Backside Power Delivery (BSPD), also called Backside Power Delivery Network (BSPDN) or backside power via (BPV) technology, is a semiconductor manufacturing innovation in which the chip’s primary power distribution network … Continue reading "Backside Power Delivery (BSPD) Wiki"
NVIDIA Blackwell Ultra “GB300” GPU, The Fastest AI Chip, Detailed: Dual Reticle GPU With Ove…Aug 25, 2025
NVIDIA has provided an in-depth look at its fastest chip for AI, the Blackwell GB300, which is 50% faster than GB200 & packs 288 GB memory.
Skimpy HBM Memory Opens Up The Way For AI Inference Memory GodboxJul 29, 2025
Generative AI is arguably the most complex application that humankind has ever created, and the math behind it is incredibly complex even if the results
Physics Limits Interposer Line LengthsJul 3, 2025
Thin lines and limited ground planes keep RDL interconnects short.
Four more HBM generations to arrive – Blocks and FilesJun 26, 2025
Four more HBM generations have been outlined by KAIST and its Terabyte Interconnection and Package Laboratory research group.
Got juice? Future AI processors said to drink up to 15,360 watts of power — titanic requirements demand exotic immersion and embedded coolingJun 18, 2025
It is going to get hot.
HBM roadmapJun 17, 2025
A slide deck revealing the plans (and expectations) for next-generation High Bandwidth Memory (HBM) technology was published by Korea Advanced Institute of Science and Technology and TERA (Terabyte Interconnection and Package Laboratory).
Starting with HBM4. This will be the go-to standard for next-gen data centers and AI GPUs that are launching in 2026. Both AMD and NVIDIA have confirmed the use of HBM for their MI400 and Rubin offerings.
Next-gen memory will continue to scale in stacked layers, but each layer will become thinner. HBM thickness is expected not to exceed 720 micrometers, with HBM5 targeting 36µm per DRAM die.
Given the increase in power consumption, KAIST and TERA expect that HBM5 (100W) and HBM6 (120W) will already require immersion cooling, while HBM7 (160W) and HBM8 (180W) could feature embedded cooling solutions.
With the arrival of glass-based silicon interposers, the research firm highlights the use of embedded cooling as the standard approach, which will go through the interposer and offer direct-cooling to the HBM, HBF, and GPU IPs.
Read more by Wccftech: https://lnkd.in/d--5qUwx
#HBM #HighBandwidthMemory #Semiconductors #AdvancedPackaging #MemoryTechnology #AIHardware #GPU #ChipDesign #ImmersionCooling #ThermalManagement #TechInnovation #FutureOfComputing #NVIDIA #AMD #HighPerformanceComputing #DeepTech #DataCenterTechnology #KAIST #KoreaTech #TERA | 15 comments on LinkedIn
Die-to-die Interconnect Standards In FluxMay 15, 2025
Many features of UCIe 2.0 seen as “heavy” are optional, causing confusion.
TSMC’s Cutting-Edge SoW-X Packaging Set For Mass Production By 2027; Delivering 40x Higher Computi…Apr 24, 2025
TSMC also revealed developments in advanced packaging technologies at the NA Technology Symposium, and they look interesting.
AI xPUs to be Cooled by HBMApr 2, 2025
High-end xPUs (GPUs, TPUs, and other AI processors) use HBM memories to get the absolute highest memory bandwidth for training the Large Language Models (LLMs) used in today's generative AI systems. These processors, used in the thousands by hyperscale datacenters, can consume a kilowatt each. As a result, they must dissipate a phenomenal quantity of
The Future of AI Accelerators: A Roadmap of Industry Leaders The AI… | Nader EL-MasriMar 26, 2025
The Future of AI Accelerators: A Roadmap of Industry Leaders
The AI hardware race is heating up, with major players like NVIDIA, AMD, Intel, Google, Amazon, and more unveiling their upcoming AI accelerators. Here’s a quick breakdown of the latest trends:
Key Takeaways:
NVIDIA Dominance: NVIDIA continues to lead with a robust roadmap, extending from H100 to future Rubin and Rubin Ultra chips with HBM4 memory by 2026-2027.
AMD’s Competitive Push: AMD’s MI300 series is already competing, with MI350 and future MI400 models on the horizon.
Intel’s AI Ambitions: Gaudi accelerators are growing, with Falcon Shores on track for a major memory upgrade.
Google & Amazon’s Custom Chips: Google’s TPU lineup expands rapidly, while Amazon’s Trainium & Inferentia gain traction.
Microsoft & Meta’s AI Expansion: Both companies are pushing their AI chip strategies with Maia and MTIA projects, respectively.
Broadcom & ByteDance Join the Race: New challengers are emerging, signaling increased competition in AI hardware.
What This Means:
With the growing demand for AI and LLMs, companies are racing to deliver high-performance AI accelerators with advanced HBM (High Bandwidth Memory) configurations. The next few years will be crucial in shaping the AI infrastructure landscape.
$NVDA $AMD $INTC $GOOGL $AMZN $META $AVGO $ASML $BESI
The Road Ahead For Datacenter Compute Engines: The CPUsJan 30, 2025
It is often said that companies – particularly large companies with enormous IT budgets – do not buy products, they buy roadmaps. No one wants to go to
Can We Build a Five Gigawatt Data Center?—AsteriskJan 29, 2025
By 2030, leading AI labs will need data centers so massive they will require the power equivalent of some of America’s largest cities. Will they be able to find it?
Inside the AMD Radeon Instinct MI300A's Giant Memory SubsystemJan 18, 2025
AMD acquired ATI in 2006, hoping ATI's GPU expertise would combine with AMD's CPU know-how to create integrated solutions worth more than the sum of their parts.
Revolutionizing Memory: The Design Scheme Behind HBM3E’s Success - EE TimesDec 23, 2024
Discover how SK hynix’s switch to the advanced 6-phase RDQS scheme helped create the world’s best-performing HBM3E with enhanced capacity and reliability.
Lumai Tackles Photonic’s Issues with Free Space OpticsDec 12, 2024
Lumai's breakthrough in AI acceleration with free-space optics promises energy cuts and faster processing.
Is In-Memory Compute Still Alive?Dec 12, 2024
It hasn’t achieved commercial success, but there is still plenty of development happening; analog IMC is getting a second chance.
HPC Gets A Reconfigurable Dataflow Engine To Take On CPUs And GPUsOct 29, 2024
No matter how elegant and clever the design is for a compute engine, the difficulty and cost of moving existing – and sometimes very old – code from the
One Laser To Pump Up AI Interconnect Bandwidth By 10XOct 27, 2024
According to rumors, Nvidia is not expected to deliver optical interconnects for its GPU memory-lashing NVLink protocol until the “Rubin Ultra” GPU
Gate-All-Around (GAA): The Ultimate Solution to Reduce Leakage - EE TimesOct 25, 2024
As awareness of environmental, social, and governance (ESG) issues grows, companies are adopting strategies for sustainable operations.
One Laser To Pump Up AI Interconnect Bandwidth By 10XOct 17, 2024
According to rumors, Nvidia is not expected to deliver optical interconnects for its GPU memory-lashing NVLink protocol until the “Rubin Ultra” GPU
Intel Vs. Samsung Vs. TSMCJul 27, 2024
Foundry competition heats up in three dimensions and with novel technologies as planar scaling benefits diminish.
FlashAttention-3: Fast and Accurate Attention with Asynchrony and Low-preciJul 14, 2024
Attention, as a core layer of the ubiquitous Transformer architecture, is a bottleneck for large language models and long-context applications. FlashAttention (and FlashAttention-2) pioneered an approach to speed up attention on GPUs by minimizing memory reads/writes, and is now used by most libraries to accelerate Transformer training and inference. This has contributed to a massive increase in LLM context length in the last two years, from 2-4K (GPT-3, OPT) to 128K (GPT-4), or even 1M (Llama 3). However, despite its success, FlashAttention has yet to take advantage of new capabilities in modern hardware, with FlashAttention-2 achieving only 35% utilization of theoretical max FLOPs on the H100 GPU. In this blogpost, we describe three main techniques to speed up attention on Hopper GPUs: exploiting asynchrony of the Tensor Cores and TMA to (1) overlap overall computation and data movement via warp-specialization and (2) interleave block-wise matmul and softmax operations, and (3) incoherent processing that leverages hardware support for FP8 low-precision.
JEDEC Finalizes HBM4 Spec With A Key Upgrade For Memory ManufacturersJul 13, 2024
HBM4 is going to double the bandwidth of HBM3, but not through the usual increase in clock rate.
Controlling Warpage In Advanced PackagesJun 25, 2024
Mechanical stresses increase with larger sizes and heterogeneous materials.
DRAM: an industry in full flightJun 17, 2024
Generative AI and High Bandwidth Memory (HBM) fuel DRAM market growth. OUTLINE The HBM market has the potential to grow to US$14 billion in 2024. Yole Group expects HBM revenue growth to continue with a CAGR23-29 of ~38%, reaching about US$37.7 billion in 2029. 4F2 cell designs, hybrid bonding, and monolithic 3D DRAM will enable […]
Hybrid Bonding Plays Starring Role in 3D ChipsJun 7, 2024
Tech makes millions of connections in a square millimeter of silicon
AI memory emerges as new battleground for SK Hynix, Samsung and othersMay 11, 2024
Demand for high-bandwidth memory is driving competition -- and prices -- higher
Rambus Unveils GDDR7 Memory Controller IP: PAM3 Signaling, Up To 48 Gbps DaApr 23, 2024
Rambus has unveiled its next-gen GDDR7 memory controller IP, featuring PAM3 Signaling, and up to 48 Gbps transfer speeds.
How To Build A Better “Blackwell” GPU Than Nvidia DidApr 5, 2024
While a lot of people focus on the floating point and integer processing architectures of various kinds of compute engines, we are spending more and more
Accelerator Industry ModelMar 14, 2024
The SemiAnalysis AI accelerator model is used to gauge historical and future accelerator production by company and type.
HBM3E And GDDR6: Memory Solutions For AIMar 12, 2024
Explore HBM3E and GDDR6 memory capabilities, including the benefits and design considerations for each
Grokking Groq’s GroqnessFeb 22, 2024
Startup Groq has developed an machine learning processor that it claims blows GPUs away in large language model workloads – 10x faster than an Nvidia GPU at 10 percent of the cost, and needing a tenth of the electricity. Update: Groq model compilation time and time from access to getting it up and running clarified. […]
3 Reasons to Learn CaretFeb 22, 2024
Machine learning is the study and application of algorithms that learn from and make predictions on data. From search results to self-driving cars, it has manifested itself in all areas of our lives and is one of the most exciting and fast-growing fields of research in the world of data science. The caret package, maintained by Max Kuhn, is the go-to package in the R community for predictive modeling and supervised learning. This widely used package provides a consistent interface to all of R's most powerful machine learning facilities. Need some more convincing? In this post, we explore 3 reasons why you should learn the caret package. Afterward, you can take DataCamp's Machine Learning Toolbox course taught by Zachary Deane-Mayer & Max Kuhn, co-authors of the caret package! 1. It can help you get a data science job Ever read through data science job postings and see words like "predictive modeling", "classification", "regression," or "machine learning"? Chances are if you are seeking a data science position, you will be expected to have experience and knowledge about all of these topics. Luckily, the caret package has you covered. The caret package is known as the "Swiss Army Knife" for machine learning with R; capable of performing many tasks with an intuitive, consistent format. Check out these recent data scientist job postings from Kaggle which are all seeking candidates with knowledge of R and machine learning: Data Scientist Analytics at Booking.com Data Scientist at Amazon.com Data Scientist at CVS Health 2. It's one of the most popular R packages The caret package receives over 38,000 direct downloads monthly making it one of the most popular packages in the R community. With that comes significant benefits including an abundant amount of documentation and helpful tutorials. You can install the Rdocumentation package to access helpful documentation and community examples directly in your R console. Simply copy and paste the following code: # Install and load RDocumentation for comprehensive help with R packages and functions install.packages("RDocumentation") library("RDocumentation") Of course, another benefit of learning a widely used package is that your colleagues are also likely using caret in their work - meaning you can collaborate on projects more easily. Additionally, caret is a dependent package for a large amount of additional machine learning and modeling packages as well. Understanding how caret works will make it easier and more fluid to learn even more helpful R packages. 3. It's easy to learn, but very powerful If you are a beginner R user, the caret package provides an easy interface for performing complex tasks. For example, you can train multiple different types of models with one easy, convenient format. You can also monitor various combinations of parameters and evaluate performance to understand their impact on the model you are trying to build. Additionally, the caret package helps you decide the most suitable model by comparing their accuracy and performance for a specific problem. Complete the code challenge below to see just how easy it is to to build models and predict values with caret. We've already gone ahead and split the mtcars dataset into a training set, train, and a test set,test. Both of these objects are available in the console. Your goal is to predict the miles per gallon of each car in the test dataset based on their weight. See for yourself how the caret package can handle this task with just two lines of code! eyJsYW5ndWFnZSI6InIiLCJwcmVfZXhlcmNpc2VfY29kZSI6IiAgICAgICAgIyBMb2FkIGNhcmV0IHBhY2thZ2VcbiAgICAgICAgICBsaWJyYXJ5KGNhcmV0KVxuICAgICAgICAjIHNldCBzZWVkIGZvciByZXByb2R1Y2libGUgcmVzdWx0c1xuICAgICAgICAgIHNldC5zZWVkKDExKVxuICAgICAgICAjIERldGVybWluZSByb3cgdG8gc3BsaXQgb246IHNwbGl0XG4gICAgICAgICAgc3BsaXQgPC0gcm91bmQobnJvdyhtdGNhcnMpICogLjgwKVxuXG4gICAgICAgICMgQ3JlYXRlIHRyYWluXG4gICAgICAgICAgdHJhaW4gPC0gbXRjYXJzWzE6c3BsaXQsIF1cblxuICAgICAgICAjIENyZWF0ZSB0ZXN0XG4gICAgICAgICAgdGVzdCA8LSBtdGNhcnNbKHNwbGl0ICsgMSk6bnJvdyhtdGNhcnMpLCBdIiwic2FtcGxlIjoiIyBGaW5pc2ggdGhlIG1vZGVsIGJ5IHJlcGxhY2luZyB0aGUgYmxhbmsgd2l0aCB0aGUgYHRyYWluYCBvYmplY3Rcbm10Y2Fyc19tb2RlbCA8LSB0cmFpbihtcGcgfiB3dCwgZGF0YSA9IF9fXywgbWV0aG9kID0gXCJsbVwiKVxuXG4jIFByZWRpY3QgdGhlIG1wZyBvZiBlYWNoIGNhciBieSByZXBsYWNpbmcgdGhlIGJsYW5rIHdpdGggdGhlIGB0ZXN0YCBvYmplY3RcbnJlc3VsdHMgPC0gcHJlZGljdChtdGNhcnNfbW9kZWwsIG5ld2RhdGEgPSBfX18pXG4gICAgICAgXG4jIFByaW50IHRoZSBgcmVzdWx0c2Agb2JqZWN0XG5yZXN1bHRzIiwic29sdXRpb24iOiIjIEZpbmlzaCB0aGUgbW9kZWwgYnkgcmVwbGFjaW5nIHRoZSBibGFuayB3aXRoIHRoZSBgdHJhaW5gIG9iamVjdFxubXRjYXJzX21vZGVsIDwtIHRyYWluKG1wZyB+IHd0LCBkYXRhID0gdHJhaW4sIG1ldGhvZCA9IFwibG1cIilcblxuIyBQcmVkaWN0IHRoZSBtcGcgb2YgZWFjaCBjYXIgYnkgcmVwbGFjaW5nIHRoZSBibGFuayB3aXRoIHRoZSBgdGVzdGAgb2JqZWN0XG5yZXN1bHRzIDwtIHByZWRpY3QobXRjYXJzX21vZGVsLCBuZXdkYXRhID0gdGVzdClcbiAgICAgICBcbiMgUHJpbnQgdGhlIGByZXN1bHRzYCBvYmplY3RcbnJlc3VsdHMiLCJzY3QiOiJ0ZXN0X2V4cHJlc3Npb25fb3V0cHV0KFwibXRjYXJzX21vZGVsXCIsIGluY29ycmVjdF9tc2cgPSBcIlRoZXJlJ3Mgc29tZXRoaW5nIHdyb25nIHdpdGggYG10Y2Fyc19tb2RlbGAuIEhhdmUgeW91IHNwZWNpZmllZCB0aGUgcmlnaHQgZm9ybXVsYSB1c2luZyB0aGUgYHRyYWluYCBkYXRhc2V0P1wiKVxuXG50ZXN0X2V4cHJlc3Npb25fb3V0cHV0KFwicmVzdWx0c1wiLCBpbmNvcnJlY3RfbXNnID0gXCJUaGVyZSdzIHNvbWV0aGluZyB3cm9uZyB3aXRoIGByZXN1bHRzYC4gSGF2ZSB5b3Ugc3BlY2lmaWVkIHRoZSByaWdodCBmb3JtdWxhIHVzaW5nIHRoZSBgcHJlZGljdCgpYCBmdW5jdGlvbiBhbmQgdGhlIGB0ZXN0YCBkYXRhc2V0P1wiKVxuXG5zdWNjZXNzX21zZyhcIkNvcnJlY3Q6IFNlZSBob3cgZWFzeSB0aGUgY2FyZXQgcGFja2FnZSBjYW4gYmU/XCIpIn0= Want to learn it for yourself? You're in luck! DataCamp just released a brand new Machine Learning Toolbox course. The course is taught by co-authors of the caret package, Max Kuhn and Zachary Deane-Mayer. You'll be learning directly from the people who wrote the package through 24 videos and 88 interactive exercises. The course also includes a customer churn case study that let's you put your caret skills to the test and gain practical machine learning experience. What are you waiting for? Take the course now!
Groq Inference Tokenomics: Speed, But At What Cost?Feb 22, 2024
Faster than Nvidia? Dissecting the economics
The Seven Pillars Of IC Package Physical DesignFeb 17, 2024
Embracing emerging approaches is essential for crafting packages that address the evolving demands of sustainability, technology, and consumer preferences.
Samsung GDDR7 Memory Is Coming With A Huge Bandwidth Lift For Next-Gen GPUsFeb 1, 2024
A conference schedule has revealed that Samsung's next-gen graphics memory is bonkers fast.
Wafer Wars: Deciphering Latest Restrictions On AI And Semiconductor ManufacturingOct 30, 2023
China's Countermove: How Beijing is Dodging New Semiconductor Restrictions
Samsung Unveils Shinebolt HBM3E Memory At Nearly 10Gbps And Blistering 32GbOct 21, 2023
We're getting a first glimpses of Samsung's next-generation HBM3E and GDDR7 memory chips.
ELI5: FlashAttentionJul 24, 2023
Step by step explanation of how one of the most important MLSys breakthroughs work — in gory detail.
The Secret Sauce behind 100K context window in LLMs: all tricks in one placJul 23, 2023
tldr; techniques to speed up training and inference of LLMs to use large context window up to 100K input tokens during training and…
Training LLMs with AMD MI250 GPUs and MosaicMLJul 23, 2023
With the release of PyTorch 2.0 and ROCm 5.4, we are excited to announce that LLM training works out of the box on AMD MI250 accelerators with zero code changes and at high performance!
Researchers devise even faster 3D DRAMJul 13, 2023
Tokyo Institute of Technology scientists have devised a 3D DRAM stack topped by a processor to provide four times more bandwidth than HBM.
AI Capacity Constraints - CoWoS and HBM Supply ChainJul 9, 2023
Quarterly Ramp for Nvidia, Broadcom, Google, AMD, AMD Embedded (Xilinx), Amazon, Marvell, Microsoft, Alchip, Alibaba T-Head, ZTE Sanechips, Samsung, Micron, and SK Hynix
3D DRAM could be revolutionary – if it worksMay 5, 2023
We asked memory semiconductor industry analyst Jim Handy of Objective Analysis how he views 3D DRAM technology.
Interconnect Under the Spotlight as Core Counts Accelerate - SemiWikiApr 6, 2023
In the march to more capable, faster, smaller, and lower…
True 3D Is Much Tougher Than 2.5DApr 5, 2023
While terms often are used interchangeably, they are very different technologies with different challenges.
Choosing The Correct High-Bandwidth MemoryJan 25, 2023
New applications require a deep understanding of the tradeoffs for different types of DRAM.
aolofsson/awesome-opensource-hardware: List of awesome open source hardware tools, generators, and reusable designsDec 22, 2022
List of awesome open source hardware tools, generators, and reusable designs - aolofsson/awesome-opensource-hardware
How Memory Design Optimizes System PerformanceSep 26, 2022
Changes are steady in the memory hierarchy, but how and where that memory is accessed is having a big impact.
SK Hynix Is Developing Next-Gen HBM With 30x Performance UpliftAug 24, 2022
It's not clear when this mysterious memory will arrive, but SK Hynix is certainly talking a big game.
DRAM Thermal Issues Reach Crisis PointJul 18, 2022
Increased transistor density and utilization are creating memory performance issues.
CXL: Protocol for Heterogenous DatacentersJul 8, 2022
Let's learn more about the world's most important manufactured product. Meaningful insight, timely analysis, and an occasional investment idea.
Nvidia Research Plots A Course To Multiple Multichip GPU EnginesJan 6, 2022
There are two types of packaging that represent the future of computing, and both will have validity in certain domains: Wafer scale integration and
Tearing Apart Google’s TPU 3.0 AI CoprocessorDec 7, 2021
Google did its best to impress this week at its annual IO conference. While Google rolled out a bunch of benchmarks that were run on its current Cloud TPU
Synopsys Blog | Latest Insights on EDA, IP & Systems DesignDec 4, 2021
Explore Synopsys Blog for the latest insights and trends in EDA, IP, and Systems Design. Stay updated with expert articles and industry news.
List of interface bit ratesDec 4, 2021
This is a list of interface bit rates, is a measure of information transfer rates, or digital bandwidth capacity, at which digital interfaces in a computer or network can communicate over various kinds of buses and channels. The distinction can be arbitrary between a computer bus, often closer in space, and larger telecommunications networks. Many device interfaces or protocols (e.g., SATA, USB, SAS, PCIe) are used both inside many-device boxes, such as a PC, and one-device-boxes, such as a hard drive enclosure. Accordingly, this page lists both the internal ribbon and external communications cable standards together in one sortable table.
DRAM Tradeoffs: Speed Vs. EnergyDec 3, 2021
Experts at the Table: Which type of DRAM is best for different applications, and why performance and power can vary so much.
Memory at the Core of New Deep Learning Research ChipDec 1, 2021
Over the last two years, there has been a push for novel architectures to feed the needs of machine learning and more specifically, deep neural networks.
A Look at Baidu’s Industrial-Scale GPU Training ArchitectureJun 26, 2021
Like its U.S. counterpart, Google, Baidu has made significant investments to build robust, large-scale systems to support global advertising programs. As
Bumps Vs. Hybrid Bonding For Advanced PackagingJun 23, 2021
New interconnects offer speed improvements, but tradeoffs include higher cost, complexity, and new manufacturing challenges.
Sapphire Rapids CPU Leak: Up to 56 Cores, 64GB of Onboard HBM2Apr 9, 2021
Sapphire Rapids, Intel's next server architecture, looks like a large leap over the just-launched Ice Lake SP.
What Chip Startups Can Learn from Google’s TPU Design TeamFeb 17, 2021
The inception of Google’s effort to build its own AI chips is quite well known by now but in the interests of review, we’ll note that as early 2013 the
10 basic advanced IC packaging terms to knowDec 29, 2020
Engineers must keep pace with advanced IC packaging technology as it evolves rapidly, starting with understanding the basic terms.
CXMT scaling up 19nm DRAM output with better yield ratesAug 25, 2020
China-based DRAM chipmaker ChangXin Memory Technologies (CXMT) is scaling up its 19nm chip output with better yield rates, with the monthly production likely to top 70,000 wafers by the end of 2020, according to industry sources.
TSMC Details 5 nmMar 23, 2020
TSMC details its 5-nanometer node for mobile and HPC applications. The process features the industry's highest density transistors with a high-mobility channel and highest-density SRAM cells.
What’s The Best Advanced Packaging Option?Oct 31, 2019
A dizzying array of choices and options pave the way for the next phase of scaling.
New chips for machine intelligenceOct 7, 2019
Why Chips DieNov 26, 2018
Why Chips Die Semiconductor devices face many hazards before and after manufacturing that can cause them to fail prematurely.
Processing In MemorySep 6, 2018
Processing In Memory Growing volume of data and limited improvements in performance create new opportunities for approaches that never got off the ground.
Tearing Apart Google’s TPU 3.0 AI CoprocessorMay 12, 2018
Google did its best to impress this week at its annual IO conference. While Google rolled out a bunch of benchmarks that were run on its current Cloud TPU
Memory Fundamentals For EngineersSep 24, 2017
eBook: Nearly everything you need to know about memory, including detailed explanations of the different types of memory; how and where these are used today; what's changing, which memories are successful and which ones might be in the future; and the limitations of each memory type.
Memory is the Next PlatformOct 10, 2016
A new crop of applications is driving the market along some unexpected routes, in some cases bypassing the processor as the landmark for performance and
hdmi
Next-Gen HDMI Specifications to Be Announced in January Before CES 2025Dec 13, 2024
The HDMI Forum confirmed the development of the next-generation HDMI standard with increased bandwidth. According to various media reports, including Videocardz and Dday, the press release from HDMI Forum indicates the possibility of new cables or refinement of existing specifications. Moreover, it ...
headphones
Meet the mad scientist of headphones, whose wild designs electrify RedditDec 29, 2024
Philip Kaplan started experimenting with headphone design this year. Now, he’s pushing the boundaries of what’s possible for our ears.
Bose QuietComfort 35 Headphones Ear Cushion Kit | Bose Headphones Accessories | BoseJan 26, 2023
Replace lost or damaged earcup cushions for your QuietComfort 35 headphones. Sold as a pair.
How Headphones Are Changing the Sound of MusicOct 5, 2022
One important impact appears to be on vocals.
health-medicine
Hanging on to Your Inner Child Might Be the Secret to Health and HappinessFeb 22, 2026
New evidence suggests that adults never outgrow the need for play, but we definitely do forget how to make room for it.
This Kevlar Medical Brace Folds Flat Like Origami and Might Finally Kill the Plaster Cast - Yanko DesignJan 23, 2026
What do Swiss timepieces and sailing rigging systems have in common with orthopedic braces? More than you might think. The engineers at Osteoid drew inspiration from these precision mechanical systems to create Bracesys, a revolutionary approach to fracture immobilization that challenges everything we thought we knew about medical casts. Traditional plaster casts have remained largely
Stop, Shop, and ScrollJan 6, 2026
Behind every influencer is an army of the influenced, many adrift in debt and mass-produced clutter. These are the stories of credit card debt and piles of mass-produced clutter.
The complicated truth about urinary tract infections in the elderlyDec 30, 2025
Recently, a former patient contacted me about his wife. “She had a recent stroke which has caused cognitive decline along with slow-growing dementia,” he told me via text. “Never, ever had a urinary tract infection in her life, she has now had four in the last three months. We have seen a urologist and of course, our primary and I would like to get your opinion on what we can do preventively.”
Swearing Actually Seems To Make Humans Physically Stronger - SlashdotDec 19, 2025
alternative_right shares a report from ScienceAlert: A new study adds to the growing body of evidence that swearing can help us unleash our inner strength, improving physical performance, it seems, by helping people break through certain psychological barriers. [...] [Psychology researcher Richard ...
Comedy on 'prescription': Why performing stand-up is good for your healthDec 14, 2025
In the UK, new schemes to support mental health are introducing to people an unexpected skill: stand-up comedy.
The Rarest of All Diseases Are Becoming TreatableDec 8, 2025
This year, gene-editing technology was customized to fix mutations in a single patient’s genes for the first time.
A fentanyl vaccine is about to get its first major testDec 4, 2025
Vaccine trial in the Netherlands hopes to protect against fentanyl-related overdose and death.
Personalized mRNA Vaccines Will Revolutionize Cancer Treatment—If Federal Funding Cuts Don’t Doom ThemNov 18, 2025
Vaccines based on mRNA can be tailored to target a cancer patient’s unique tumor mutations. But crumbling support for cancer and mRNA vaccine research has endangered this promising therapy
Can a 'molecular crowbar' fight pancreatic cancer? - FuturityNov 13, 2025
Can a ‘molecular crowbar’ fight pancreatic cancer?
How a Rare Brain Mutation Spread Across AmericaOct 19, 2025
The Bowlin family knew they had a history of malformations in the brain. But they had no idea how far back it went.
Can We Build a Pancreas? These Bioengineers Think We’re Almost ThereOct 14, 2025
How a father’s love, entrepreneurship and tech advances could lead to a working artificial pancreas
He Was Expected to Get Alzheimer’s 25 Years Ago. Why Hasn’t He?Oct 7, 2025
Scientists are searching for the secret in Doug Whitney’s biology that has protected him from dementia, hoping it could lead to ways to treat or prevent Alzheimer’s for many other people.
The World’s Most Common SurgerySep 30, 2025
In 4,000 years, cataract surgery went from a crude procedure involving thorn instruments to a 20-minute operation with a 95 percent clinical success rate. The next step is broadening access.
Woman hospitalized with pain and vomiting—diet soda cured herSep 27, 2025
Doctor’s dissolve mass in woman’s stomach by getting her to chug soda.
The Spinal Surgeries That Didn’t Need to HappenSep 26, 2025
As much as half of all spinal fusions don’t alleviate pain — why do doctors perform so many?
The rare disease that stops us feeling fearSep 25, 2025
Feeling fear is an evolutionary survival tactic. A small number of people have a rare condition that means they're not scared of anything. How do they live a life without fear?
The death rays that guard lifeSep 18, 2025
We disinfect water before we drink it. Why don’t we disinfect the air before we breathe it?
AI Spots Hidden Signs of Consciousness in Comatose Patients before Doctors DoAug 31, 2025
A machine-learning algorithm spotted signs of “covert consciousness” in coma patients—in some cases, days before doctors could do so
Two men fell gravely ill last year; their infections link to deaths in the ’80sAug 23, 2025
The bacterium is known to live in Mississippi, but the new cases may expand its range.
Aging Can Spread Through Your Body Via a Single Protein, Study Finds - SlashdotAug 16, 2025
alternative_right shares a report from Phys.org: Take note of the name: ReHMGB1. A new study pinpoints this protein as being able to spread the wear and tear that comes with time as it quietly travels through the bloodstream. This adds significantly to our understanding of aging. The researchers wer...
New treatment eliminates bladder cancer in 82% of patientsAug 13, 2025
LOS ANGELES — A new drug-releasing system, TAR-200, eliminated tumors in 82% of patients in a phase 2 clinical trial for individuals with high-risk non-muscle-invasive bladder cancer whose cancer had previously resisted treatment. In the majority of cases, the cancer disappeared after only three months of treatment, and almost half the patien...
One-size-fits-all pancreatic cancer vaccine showed promise in early trialAug 11, 2025
The vaccine doesn't prevent cancer from happening in the first place, but an early-phase trial found it could reduce the odds of recurrence.
The Quest to Cure Progeria Is a Quest to Slow AgingAug 11, 2025
One of the world’s rarest diseases makes people grow old prematurely. Scientists think that gene-editing can stop it, Dhruv Khullar writes.
Dental Floss Could Be the Future of VaccinesJul 26, 2025
The world of dental floss is undergoing some radical technological advancements. And vaccines could be next.
Mary Had Schizophrenia—Then Suddenly She Didn’tJul 21, 2025
Some psychiatric patients may actually have treatable autoimmune conditions. But what happens to the newly sane? Rachel Aviv reports.
Can A.I. Find Cures for Untreatable Diseases—Using Drugs We Already Have?Jul 16, 2025
For many medical conditions, lifesaving treatments may be hiding in plain sight.
Heart attacks aren’t as fatal as they used to beJul 5, 2025
The proportion of deaths from heart attacks dropped nearly 90 percent through smoking reduction, statin drugs, CPR training, and advanced cardiac care.
The Wyoming Hospital Upending the Logic of Private EquityJun 11, 2025
Instead of cutting services to cut costs, one rural hospital plans to thrive by offering more.
Why UTIs Are Getting So Much Harder to TreatJun 6, 2025
It’s not just you — the infections are becoming more common. The way we treat them may be contributing to the problem.
Reservoirs of ResistanceMay 22, 2025
By studying the millennia-old arms race between soil-dwelling microbes, scientists can pre-empt antibiotic resistance before it emerges in people.
There's a secret superfood in white rice and pasta: Here's how to unlock itMay 12, 2025
When it comes to rice and pasta, dieticians recommend eating brown or whole grain because they're more nutritious. But you can create a super nutrient in white rice and white pasta. Here's the trick.
A 105-Year-Old Japanese Doctor Reveals How to Reverse Aging and Stay 30 Years YoungerApr 28, 2025
Imagine feeling 30 years younger even when you’re 100. Sounds impossible, right? Dr. Hinohara proved otherwise. Meet Dr. Shigeaki Hinohara who was one of Japan’s most respected doctors and a global…
How a Forgotten Battle Created a More Peaceful WorldApr 17, 2025
The legacy of Solferino is in more danger than ever
Having epileptic seizures gave me newfound respect for the brainApr 5, 2025
Seizures are often described as both terrifying and enthralling. Mine gave me a wondrous new take on consciousness and agency
The Origins of AdjuvantsApr 4, 2025
More than a century after the invention of vaccines, a veterinarian stumbled across a technique to boost their efficacy in an unlikely way — by observing wounded horses.
Johannes Enevoldsen - Excitable cellsApr 1, 2025
A demonstration of how reentry tachyarrhythmias can develop in a system of excitable cells.
The Mysterious Flow of Fluid in the Brain | Quanta MagazineMar 26, 2025
A popular hypothesis for how the brain clears molecular waste, which may help explain why sleep feels refreshing, is a subject of debate.
Healing My Family’s FutureMar 26, 2025
How genetics and IVF empowered a family to leave cancer behind.
Was a Mushroom Behind an ALS Outbreak in the Alps?Mar 23, 2025
In one tiny town, more than a dozen people were diagnosed with the rare neurodegenerative disease ALS. Why?
Why Elephants Rarely Get Cancer - NautilusMar 12, 2025
What snakes, ferrets, and elephants are revealing about cancer resistance
The Long Quest for Artificial BloodFeb 6, 2025
One of the most valuable substances in the world has never been replicated. Are we close?
The ultra-fast cancer treatments which could replace conventional radiotherapyJan 22, 2025
A pioneering new treatment promises to tackle a wider range of cancers, with fewer side-effects than conventional radiotherapy. It also takes less than a second.
Why it’s so hard to use AI to diagnose cancerJan 21, 2025
The latest effort, from the Mayo Clinic, holds some clues.
35 Simple Health Tips Experts Swear ByJan 18, 2025
They’re surprising, and surprisingly effective. And they’ll help you feel better every single day.
The squat secret: why this simple move is the key to long-term health – and how to improve yoursJan 12, 2025
Whether you want to lift weights in the gym or just get yourself on and off a chair, a good solid squat makes life so much easier. What can you do if yours needs work?
Podcast #1,048: The Swiss Army Knife of Fitness — How to Get Lean, Strong, and Flexible With Kettlebells AloneDec 18, 2024
What if there was one piece of fitness equipment that was affordable, didn’t take up much space, could get you both strong and flexible, and was fun to use? While that might sound too good to be true, my guest, Pat Flynn, would say you can find all those benefits in the old-school kettlebell. Pat, […]
Animals as chemical factories - Works in ProgressDec 6, 2024
Horses bled for antivenom, crabs drained for endotoxin tests, and silkworms boiled for silk. Science can now replace these practices with synthetic alternatives — but we need to find ways to scale them up.
The Staggering Success of VaccinesOct 28, 2024
Vaccines are the first step toward health equity in many parts of the world.
The Forgotten PandemicOct 27, 2024
Humans have suffered from tuberculosis for thousands of years and, even today, the disease kills more than 1 million people each year. Yet diagnosing cases remains a challenge. Why?
A 20-Minute Workout to Keep Your Body LimberOct 25, 2024
Throwing your back out is often caused by stiffness in the upper spine. Here’s how to prevent future pain.
The drug pilots take to stay awakeJul 31, 2024
Pilot fatigue is in the spotlight this week, with the news that one Indonesian flight had two sleeping pilots at its helm. But the military have a surprising solution.
A protein called Reelin keeps popping up in brains that resist aging and AlJul 30, 2024
Early in life, the protein Reelin helps assemble the brain. Later on, it appears to protect the organ from Alzheimer’s and other threats to memory and thinking.
First Robot-Assisted Dual Kidney Transplant in the US Deemed a SuccessJul 30, 2024
The robot adds flexibility, visibility, and post-surgical comfort to what is otherwise considered a major procedure.
My New Favorite SquatJul 13, 2024
Looking for a new squat variation? Learn about the Hatfield squat and how it can help you build lower-body strength and overcome pain or discomfort.
Your coverage options | MedicareMay 21, 2024
Once you’ve signed up for Part A and Part B, you can choose between Original Medicare and Medicare Advantage.
Lifting Weights? Your Fat Cells Would Like to Have a Word.Apr 21, 2024
A cellular chat after your workout may explain in part why weight training burns fat.
Insatiable: A Life Without EatingApr 18, 2024
When my Crohn's disease took away food, it took what it means to be human.
How to Do the World's Greatest StretchApr 18, 2024
Dr. Aaron Horschig, DPT, of Squat University explains the intricacies of this widely-renowned mobility move.
Peter Attia’s Quest to Live Long and ProsperApr 15, 2024
The average American celebrates just one healthy birthday after the age of sixty-five. Peter Attia argues that it doesn’t have to be this way.
How to Stop Losing 17,500 Kidneys - by Santi RuizApr 15, 2024
"Someone left a human liver at the wrong hospital’s cargo bay in 90 degree heat, and no one noticed for an hour and a half."
Measles Is Back, and That’s ScaryApr 13, 2024
The deadly virus was practically eliminated in the U.S., but now it’s infecting more people.
Texas Surgeon Is Accused of Secretly Denying Liver TransplantsApr 12, 2024
A Houston hospital is investigating whether a doctor altered a transplant list to make his patients ineligible for care. A disproportionate number of them have died while waiting for new organs.
The Mystery of 4,400 Preserved Brains—And One Scientist’s Quest to Solve ItApr 7, 2024
The former undertaker collects human brains, talks to them, and hopes they won’t haunt her.
Groundbreaking Trial To Grow 'Mini Liver' From Patient's Own Lymph NodeApr 4, 2024
An anonymous reader quotes a report from InterestingEngineering: A Pittsburgh-based biotech company has started a one-of-a-kind trial in a patient with a failing liver. Their goal is to grow a functional second liver within the patient's body -- something never achieved before. If effective, it migh...
The US doesn’t have universal health care — but these states (almost) doApr 1, 2024
Ten states have uninsured rates below 5 percent. What are they doing right?
ARPA-H Awards Columbia Researchers Nearly $39M to Develop a Living Knee RepMar 28, 2024
Columbia biomedical engineers are collaborating with orthopedic surgeons to build a living replacement knee to be tested in clinical trials within five years.
After Appalachian Hospitals Merged Into a Monopoly, Their ERs Slowed to a CMar 27, 2024
Ballad Health was granted the nation’s largest state-sanctioned hospital monopoly in 2018. Since then, its emergency rooms have become more than three times as slow.
The Race to Reinvent CPRMar 27, 2024
A new, high-tech approach called ECPR can restart more hearts and save more lives. Why aren’t more hospitals embracing it?
Why 18-year-old Canadian Emily Nash is sharing her unique brain with sciencMar 25, 2024
CTV W5 puts the spotlight on 18-year-old Emily Nash, who appears to be the first Canadian, and among the youngest people in the world, to have a rare but extraordinary super memory.
How scientists traced a mysterious covid case back to six toiletsMar 24, 2024
When wastewater surveillance turns into a hunt for a single infected individual, the ethics get tricky.
How to Survive 75 Hours Alone in the OceanMar 12, 2024
A case study digs into the medical records of a lost diver’s incredible survival story.
The Cystic-Fibrosis Breakthrough That Changed EverythingMar 10, 2024
The disease once guaranteed an early death—but a new treatment has given many patients a chance to live decades longer than expected. What do they do now?
How a walk in nature restores attentionFeb 29, 2024
New research from University of Utah psychology researchers is helping prove what American authors John Muir and Henry David Thoreau tried to teach more than 150 years ago: Time spent in nature is good ...
A guide to health care providers, from doctors to nurse practitionersFeb 29, 2024
You’re likelier than ever to get care from a physician assistant or nurse practitioner. Here’s what you need to know.
A Doctor’s Lifelong Quest to Solve One of Pediatric Medicine’s Greatest MysFeb 27, 2024
For 40 years, Dr. Jane Burns has been working to find the cause of Kawasaki disease, an illness that can lead to aneurysms and heart attacks. Her work has brought together a most unlikely team.
Millions of women are 'under-muscled.' These foods help build strengthFeb 22, 2024
We start to lose muscle in our 30s, and the loss accelerates with age, putting us at risk of frailty later in life. But what you eat — specifically how much protein — is a big part of the solution.
Stopping the Latest Outbreak Threat: Chronic Wasting DiseaseFeb 15, 2024
A spillover of the neurological disease to humans from deer, elk, and other animals could be devastating
How a company cut health spending by nearly halfFeb 11, 2024
It's a potent example of how employers could cut workers' health costs, but also underscores just how hard that can be.
DAREBEE - Fitness On Your Terms.Feb 10, 2024
2300+ FREE workouts, fitness programs, monthly challenges and training guides.
Exercise vs. Training: The Difference, and Why It MattersJan 31, 2024
Get on track to achieve your fitness goals by understanding the difference between exercise and training and why it matters.
Scientists tame chaotic protein fueling 75% of cancersJan 23, 2024
MYC is the shapeless protein responsible for making the majority of human cancer cases worse. UC Riverside researchers have found a way to rein it in, offering hope for a new era of treatments.
A 4-Year-Old Trapped in a Teenager’s BodyJan 15, 2024
“I was all of the things people are when they’re 14 or 15” — except a decade younger.
How unearthing diseases' ancient origins could help produce modern curesOct 16, 2023
The DNA of bacteria and viruses that infected humans thousands of years ago is still trapped in their skeletal remains. Scientists are finding out what we can learn from them.
The Faulty Weathermen of the MindSep 25, 2023
Could a theory from the science of perception help crack the mysteries of psychosis?
World’s first self-stabilising walking exoskeleton enters stroke rehab triaSep 25, 2023
Wandercraft's pioneering exoskeleton, the Atlante X, has entered a rehabilitation trial in Germany.
The mystery of what causes ALSAug 27, 2023
Scientists are racing to find out what causes this progressive disease. And they're starting to make some headway.
A New Doorway to the BrainAug 16, 2023
Neuroscientists can now explore the “wild west” in our heads in incredible detail—a boon to medicine and understanding what makes us tick.
The Pandemic Your Grandparents Forgot - NautilusAug 11, 2023
Sixty years later, will anybody have heard of COVID-19?
BILLY eats your medical billsAug 10, 2023
What Happens When Private Equity Buys Your Doctor's Office?Aug 5, 2023
A new study on the costs of private equity buyouts makes a case for ownership transparency across health care
How John Fetterman Came Out of the DarknessJul 25, 2023
In a series of emotional interviews, the unconventional senator opens up about his battle with depression.
How Psychedelics Can Heal a Broken MindJul 13, 2023
Mind-altering drugs could open the brain to a state of childlike learning, aiding recovery from psychological trauma, brain injury, or paralysis.
Surgical patch seals wounds and warns of leaksJun 21, 2023
A new surgical patch can seal wounds in the abdomen and send warning of potential leaks.
Huntington's spreads like 'fire in the brain.' Scientists say they've foundJun 19, 2023
Diseases like Alzheimer's and Parkinson's spread through the brain like a forest fire. A new study suggests how the fire starts.
A catatonic woman awakened after 20 years. Her story may change psychiatry.Jun 4, 2023
New research suggests that a subset of patients with psychiatric conditions like schizophrenia may actually have autoimmune disease that attacks the brain.
Hacker NewsMay 14, 2023
Ribonucleic acids (RNAs) are single-stranded molecules that play an essential role in the cells of all living organisms. As "transcripts" of our genes, mRNAs, for example, are involved in the translation ...
Patient M: The man who started seeing the world backwards after being shot in the headMay 14, 2023
A study returns to the case of a soldier injured during the Spanish Civil War who inspired doctor Justo Gonzalo’s theory of the human brain
What Feeling Stuck Does to Your BodyMay 5, 2023
Mental stillness creates tension, proving it's essential that we include movement in our lives.
Why Americans Feel More PainMay 4, 2023
Chronic pain is not just a result of car accidents and workplace injuries but is also linked to troubled childhoods, loneliness, job insecurity and a hundred other pressures on working families.
The nightmares that paralyse youApr 25, 2023
Sleep paralysis has inspired paintings and horror stories. Now scientists are starting to understand why people wake from dreams unable to move.
Amyloidosis: Beyond Alzheimer’s and Parkinson’sApr 7, 2023
Amyloid plaque can build up in body organs other than the brain. The resulting diseases — AL amyloidosis, ATTR amyloidosis and more — cause much suffering.
Tattoos do odd things to the immune system - The AtlanticMar 22, 2023
When you stick ink-filled needles into your skin, your body’s defenders respond accordingly. Scientists aren’t sure if that’s good or bad for you.
This No-Equipment Upper-Body Workout Is Crazy Easy to Do At HomeMar 20, 2023
Upper body strength is almost as important as powerful legs when it comes to cycling.
How to Exercise More Day to Day: 7 Tips That Actually WorkMar 17, 2023
Try these easy ways to sneak exercise into your daily routine and improve your everyday health.
Saliva: The next frontier in cancer detectionMar 15, 2023
Scientists are finding tumor signals in spit that could be key to developing diagnostic tests for various types of cancer
The people who feel they are shrinkingMar 14, 2023
A surprising number of people experience symptoms of this curious condition, which is named after Lewis Carroll's heroine, who changed size after eating and drinking.
Dinner with Proust: how Alzheimer’s caregivers are pulled into their patients’ worldsMar 3, 2023
The long read: What do you say to someone whose wife prefers photographs of deceased authors to him?
Mayfield Brain & SpineFeb 25, 2023
Explore the intricate anatomy of the human brain with detailed illustrations and comprehensive references.
Why the human genome was never completedFeb 24, 2023
No human genome has ever been read in its entirety before. This year, scientists expect to pass that milestone for the first time.
‘One billionaire at a time’: inside the Swiss clinics where the super-richFeb 24, 2023
The long read: For the ultra-wealthy and the super-famous, regular therapy won’t do
The long search for artificial heartsFeb 18, 2023
Humanity's engineering achievements have been extraordinary, so why has building an artificial heart has proved to be more challenging than expected.
US cancer patient developed 'uncontrollable' Irish accent - BBC NewsFeb 17, 2023
Despite never having been to Ireland, the North Carolina man spoke with a "brogue" until his death, say researchers.
The Laundress Was Supposed to Be the Nice DetergentFeb 7, 2023
Until people started breaking out into hideous rashes.
The Life-Changing Magic of a UrologistJan 31, 2023
Here are three issues you may want to address with a professional.
The five-minute fix: how to improve your fitness, strength and posture at super-quick speedJan 29, 2023
In the time it takes to make a cup of tea, you can build your core muscles, increase hip flexibility and stave off the effects of sitting at your desk all day
Amazon launches a $5 monthly subscription for prescription drugs - The VergJan 25, 2023
The flat monthly fee allows for unlimited eligible prescriptions.
Ultrasound ‘tornado’ breaks up brain blood clotsJan 24, 2023
A new tool uses "vortex ultrasound"—a sort of ultrasonic tornado—to break down blood clots in the brain more quickly than existing methods.
Where does your sense of self come from? A scientific look | Anil AnanthaswJan 22, 2023
Our memories and bodies give us clues about who we are, but what happens when this guidance shifts? In this mind-bending talk, science writer Anil Ananthaswamy shares how the experiences of "altered selves" -- resulting from schizophrenia, Alzheimer's, foreign limb syndrome or other conditions -- shed light on the constructed nature of identity. He breaks down where our sense of self comes from and invites us to challenge our assumptions about who we are, with the aim of building a better you and a better world.
‘I’m a 68-Year-Old Trainer, and This Is My Go-To Core Exercise To Ease Back Pain and Improve Balance’Jan 15, 2023
A standing abs routine that anyone can do.
The Power and Peril of the ICU | Adam GaffneyDec 31, 2022
Covid-19 showed us what the ICU was made to do—but we must grapple with the reality that it has a dark side too.
This Is What Happens to Your Body on a Thru-Hike - Outside OnlineDec 21, 2022
The secret to ultimate fitness isn't all that complicated—just spend a month outside, hiking eight hours per day. Kyle Boelte breaks down how his body evolved into an efficient, fat-burning, testosterone-fueled machine over 29 days on the Colorado Trail.
The 9-Minute Strength Workout - Well Guides - The New York TimesDec 21, 2022
Strength training is the key to flexibility, mobility, improved performance and lower injury risk.
The Planks You Should Be Doing (But Probably Aren't)Dec 21, 2022
As one-minute planks gave way to three-minute planks, and three-minute planks evolved into ten-minute planks, marathon plank-holding has become a calling card of sorts. " Being able to hold a traditional plank for 10 minutes isn't very functional for anything except just that," says Tier 4 trainer Josh Stolz. "Even Stuart McGill (a top authority and researcher of low back pain and function) recommends holding a plank for 10 seconds, tops, followed by a brief, 1-to-2 seconds-long relaxation of the muscles.
Periodic Table of Bodyweight ExercisesDec 21, 2022
Strength Stack 52 Bodyweight Exercises Games make exercising fun. Play dozens of different fitness games with your friends.
Strengthen your heart, bones – and maybe even your brain: a beginner’s guidDec 20, 2022
A resistance workout is not just about adding muscle: it can bring a host of other proven benefits as well. So what is stopping you?
This Mistake Could Make Your Medicare Premiums Even Higher. How to Avoid It.Dec 18, 2022
Follow Barron's in Apple News
Base editing: Revolutionary therapy clears girl's incurable cancer - BBC NeDec 11, 2022
New way of altering DNA is used to engineer an "exciting", experimental therapy for a 13-year-old girl.
How Hospice Became a For-Profit HustleNov 28, 2022
It began as a visionary notion—that patients could die with dignity at home. Now it’s a twenty-two-billion-dollar industry plagued by exploitation.
Aerobic Activity can Reduce Risk of Metastatic Cancer by 72%Nov 18, 2022
Tel Aviv University researchers find that exercise defeats cancer by increasing glucose consumption
Why the C-17 is the military’s flying hospital of choiceNov 8, 2022
"We bring the full hospital to the patient.”
COVID-19 Origins: Investigating a “Complex and Grave Situation” Inside a Wuhan LabOct 30, 2022
The Wuhan lab at the center of suspicions about the pandemic’s onset was far more troubled than known, documents unearthed by a Senate team reveal. Tracing the evidence, Vanity Fair and ProPublica give the clearest view yet of a biocomplex in crisis.
The debate over whether aging is a disease rages onOct 25, 2022
In its latest catalogue of health conditions, the World Health Organization almost equated old age with disease. Then it backed off.
Startup Insider: How A Molecule Becomes A Drug - Crunchbase NewsOct 24, 2022
Comprehensive up-to-date news coverage, aggregated from sources all over the world by Google News.
Searching For The Secrets To Life Everlasting | NOEMAOct 24, 2022
For millennia, scientists and technologists have been scouring the natural world for clues on how to live longer. But is anyone any closer to finally defeating aging?
An Undiscovered Coronavirus? The Mystery of the ‘Russian Flu’ - The New YorOct 21, 2022
Scientists are grasping for any example that could help anticipate the future of Covid, even a mysterious respiratory pandemic that spread in the late 19th century.
A New, Transparent AI Tool May Help Detect Blood PoisoningOct 16, 2022
The algorithm scans electronic records and may reduce sepsis deaths, but widespread adoption could be a challenge.
A Universal Cancer Treatment?Oct 7, 2022
A medicine that disrupts the DNA replication of cancer cells may be within reach.
Scientists Have Discovered a New Set of Blood GroupsOct 6, 2022
The ‘Er’ grouping could help doctors identify and treat some rare cases of blood incompatibility, including between pregnant mothers and fetuses.
Cats Give the Laws of Physics a Biiiiig StretchOct 2, 2022
They can fall from potentially infinite heights and survive. They can pivot off of nothing to land on their feet. Scientists still can’t fully explain why.
Drinking Ginger Water Can Actually Help With PMS, Research SaysSep 29, 2022
Its anti-inflammatory properties are no joke.
How Much Water Do You Actually Need? (Published 2021)Sep 24, 2022
Here’s how to know when you truly need to hydrate.
When a face means nothing: What prosopagnosia looks likeSep 22, 2022
It can be difficult for people with prosopagnosia to get a diagnosis.
Scientists Have Long Dreamed of a Memory Prosthesis. The First Human Trials Look PromisingSep 22, 2022
The central idea is simple: replicate the hippocampus’ signals with a digital replacement. It’s no easy task.
A Rural Doctor Gave Her All. Then Her Heart Broke. (Published 2022)Sep 20, 2022
Physicians suffer one of the highest burnout rates among professionals. Dr. Kimberly Becher, one of two family practitioners in Clay County, West Virginia, learned the hard way.
Study: More Than 335,000 Lives Could Have Been Saved During Pandemic if U.S. Had Universal Health CareSep 18, 2022
If the U.S. had had a single-payer universal health care system in 2020, nearly 212,000 American lives would have been saved that year, according to a new study
Targeting Cancer’s Achilles HeelSep 13, 2022
Biden’s Cancer Moonshot aims to cut annual deaths in half. Scientists have the goal in their sights.
40,000 Recipes for MurderSep 10, 2022
Two scientists inadvertently open the Pandora’s Box of WMDs. What now?
The Curious Hole in My Head (Published 2022)Sep 5, 2022
Born without my left temporal lobe, a brain region thought to be critical for language, I’ve been a research subject for much of my life.
How to Perform 4 Kettlebell Exercises: An Illustrated GuideAug 22, 2022
Kettlebell exercises for beginners that will work your entire body and help with your regular strength training.
My Mother’s 13 Unbeatable Tips to Staying YouthfulAug 16, 2022
It’s time to ditch the biological clock, run to the nearest fair and jump back on that metaphoric roller-coaster known as your life
Everything You Never Wanted to Know About HemorrhoidsAug 12, 2022
It’s often left out of polite ‘cocktail conversation,’ however this painful inflammation affects many people. Here are some ways to prevent and treat it.
MIT engineers develop stickers that can see inside the body | MIT News | MaJul 31, 2022
MIT engineers designed an adhesive patch that produces ultrasound images of the body. The stamp-sized device sticks to skin and can provide continuous ultrasound imaging of internal organs for 48 hours.
Under Anesthesia, Where Do Our Minds Go?Jul 27, 2022
To better understand our brains and design safer anesthesia, scientists are turning to EEG.
3 Robust Bodyweight Exercises to Train Every Muscle Fibre in Your BodyJul 18, 2022
Smash a full-body workout from the comfort of your home
3 Marvellous Full-Body Exercises I Wish I Had Started Way EarlierJul 5, 2022
Level up your strength, muscle mass, endurance, and functional fitness
The Many Uses of CRISPR: Scientists Tell All (Published 2022)Jul 5, 2022
What do infectious diseases, T-cells, tomatoes, heart failure, sickle cell anemia and sorghum harvests have in common?
What the Anthropology of Smell Reveals About HumanityJul 5, 2022
Millions of people have lost their sense of smell to COVID-19. Anthropologists are investigating the significance of this underrated sense.
A Hole in the Head: A History of TrepanationJul 4, 2022
A survey of trepanation, or trephination, the oldest surgical procedure known to humanity.
Hacker NewsJul 4, 2022
Researchers at MIT are investigating the brain of a woman, known by her initials EG, with a missing temporal lobe.
This Old ManMay 28, 2022
“I know how lucky I am, and secretly tap wood, greet the day, and grab a sneaky pleasure from my survival at long odds.”
Does turmeric’s reputation translate into real health benefits?May 27, 2022
Clinical trials show that curcumin, present in the spice, may help fight osteoarthritis and other diseases, but there’s a catch – bioavailability, or how to get it into the blood
Watch a robotic shoulder practice twisting and stretching human cellsMay 26, 2022
Humanoid robots can encourage human tendon cells to grow by stretching them in the same way people do when moving.
3D-printed acoustic holograms against Alzheimer's or Parkinson'sMay 18, 2022
The holograms designed by the team of researchers from UPV and CSIC allow the opening of the blood brain barrier selectively, efficiently and in a highly focused manner, facilitating the administration of therapeutic drugs to treat pathologies that affect the central nervous system.
The Only 3 Bodyweight Exercises You Need to Build an Incredible PhysiqueMay 13, 2022
Working out regularly can be hard.
What’s the Point of a Primary Care Doctor?May 5, 2022
They seem to exist entirely to funnel patients to more expensive specialists—but it may be the consumer, not the healthcare industry, who’s really to blame for this, and we’re suffering as a result.
The Air-Ambulance VulturesApr 29, 2022
The search for why my emergency flight cost $86,184 led me to a hidden culprit: private equity.
Lower Back Pain: The Best Mobility Exercises to Stretch and Strengthen a Sore BackMar 17, 2022
Lower back pain from sitting at your desk for too long? Try these simple mobility moves.
This guy's workout routineMar 16, 2022
2.7K votes, 342 comments. 8.3M subscribers in the BeAmazed community. I bet you will /r/BeAmazed! A place to find and share amazing things
The Best Quadratus Lumborum Stretch For Back Pain | Muscle & FitnessMar 14, 2022
Dr. Mike Wasilisin of MoveU shows you the best way to decompress your back and relieve lower back pain with this quadratus lumborum stretch.
The Medical Miracle of a Pig’s Heart in a Human BodyFeb 21, 2022
The first successful transplantation may solve a donor shortage, but this major scientific advancement is not without challenges.
What Internet Search Patterns Can Teach Us About CopingJan 25, 2022
I analyzed thousands of searches by people who were diagnosed with cancer. Their queries offer valuable lessons that could improve the way doctors treat patients.
Medications Details | Mark Cuban Cost Plus Drug CompanyJan 24, 2022
Find your medications details online.
4 Glute Stretches You Should Do Every Day to Run Faster and Avoid InjuryJan 7, 2022
Your glutes are your primary source of power on the run. Show them a little love with these moves.
The World’s Deadliest Thing — Anthony WarnerNov 23, 2021
It is deadly, invisible and shapes much of the food we eat. A teaspoon of it could kill millions of people, and it is probably the most expensive material on earth. Yet you probably have some stuck to the bottom of you shoe.
Brain Damage Saved His Music - Issue 20: Creativity - NautilusNov 8, 2021
After a chunk of his brain was removed, guitarist Pat Martino got his groove back.
The last great mystery of the mind: meet the people who have unusual – or non-existent – inner voicesOct 28, 2021
Does your internal monologue play out on a television, in an attic, as a bickering Italian couple – or is it entirely, blissfully silent?
DeepMind says it will release the structure of every protein known to scienceOct 15, 2021
The company has already used its protein-folding AI, AlphaFold, to generate structures for the human proteome, as well as yeast, fruit flies, mice, and more.
A Three-Part Stretch Your Hips Will LoveOct 10, 2021
Sometimes known as the “world’s greatest stretch,” this move gives tight hips relief
The Elliptical vs. the Treadmill: Which Is Better for You?Oct 8, 2021
Each cardio machine offers a little something different when it comes to toning and strengthening.
10 Best Stretches to Ease Your Lower Back Pain, According to TrainersSep 20, 2021
These exercises will bring you the relief you’ve been craving.
Florida nurses feel helpless as so many people die of COVIDSep 10, 2021
On this ward at Morton Plant Hospital, nurses are overwhelmed by the number of new, desperate cases.
How to Get Stronger Without Lifting HeavierSep 5, 2021
Research suggests utilizing a newer—and less intimidating—method to hitting the weights at the gym.
The miracle molecule that could treat brain injuries and boost your fading memorySep 4, 2021
Discovered more than a decade ago, a remarkable compound shows promise in treating everything from Alzheimer’s to brain injuries—and it just might improve your cognitive abilities.
A Chest-Opening Stretch That Feels AmazingAug 30, 2021
Your pectoral muscles will thank you for this reset that brings relief from the 21st century lifestyle
This 10-Minute, At-Home Ab Workout Will Fire Up Your Entire CoreAug 30, 2021
All you need is an exercise mat to get started.
“I understand what joy is now”: An MDMA trial participant tells his storyAug 26, 2021
One patient in a pioneering trial describes his “life-changing” experience with the psychoactive drug.
Are Squats Bad For Your Knees?Aug 25, 2021
Taking a look at the effects of compression, knees over toes, and deep squatting
At 71, She’s Never Felt Pain or Anxiety. Now Scientists Know Why. (Published 2019)Aug 15, 2021
Scientists discovered a previously unidentified genetic mutation in a Scottish woman. They hope it could lead to the development of new pain treatment.
6 Upright Abs Exercises That Will Absolutely Crush Your CoreAug 1, 2021
Get off the mat to give your abs a whole different type of challenge.
Over 60? Here Are 8 of the Best Exercises You Can DoJul 3, 2021
Fitness experts break down eight of the absolute best exercises to do if you're over 60 to maintain your independence and strength.
Tomorrow Edition - The Agony and the Ecstasy of Deep Brain Stimulation SurgJun 22, 2021
What deep brain stimulation surgery feels like.
A boy, his brain, and a decades-long medical controversyJun 17, 2021
No one could deny that Timothy was sick. But when doctors can’t agree on the cause of an illness, what happens to the patients trapped in limbo?
The 6 Daily Habits That Help Me Maintain a Visible Six-Pack Year RoundJun 16, 2021
My maintenance habits keep me fit WITHOUT dieting, cardio, or ab exercises
It’s All in Your Head review – enduring mystery of psychosomatic illness |Jun 5, 2021
Suzanne O’Sullivan’s excellent book reveals that medicine remains as much an art as a science
An Old Effort To Stop The Smallpox Virus Has Lessons For COVID-19 Today : SJun 4, 2021
In 1721, London was in the grips of a deadly smallpox epidemic. One woman learned how to stop it, but her solution sowed political division.
The Death of Hahnemann HospitalMay 31, 2021
When a private-equity firm bought a Philadelphia institution, the most vulnerable patients bore the cost.
The 60-Year-Old Scientific Screwup That Helped Covid KillMay 18, 2021
All pandemic long, scientists brawled over how the virus spreads. Droplets! No, aerosols! At the heart of the fight was a teensy error with huge consequences.
'The Clouds Cleared': What Terminal Lucidity Teaches Us About Life, Death and DementiaApr 28, 2021
Just before Alex Godfrey’s grandmother died from dementia, she snapped back to lucidity and regaled him with stories of her youth. Could moments like this teach us more about the human brain?
In the Tales Told by Sewage, Public Health and Privacy CollideApr 26, 2021
Sewage epidemiology has been embraced in other countries for decades, but not in the U.S. Will Covid change that?
This 5-Move, No-Gym Workout Got Matt Damon Fighting Fit in His FortiesApr 20, 2021
Hollywood PT Jason Walsh reveals the back-to-basics workout that healed Jason Bourne's battered body
Why it’s so hard for a hospital in Tanzania to fix broken incubatorsApr 6, 2021
Medical device companies have used a range of tactics that have made independent repairs harder, with devastating consequences.
Did the Black Death Rampage Across the World a Century Earlier Than Previously Thought?Mar 27, 2021
Scholar Monica Green combined the science of genetics with the study of old texts to reach a new hypothesis about the plague
How To Use HIIT To Increase Your Fitness Level — From a Personal TrainerMar 18, 2021
High-intensity interval training is a simple way to get fit with short workouts and minimal equipment. Here are 3 workouts to try.
What I Learned from Doing 100 Wheelies a DayMar 16, 2021
In her quest to master a quintessential cool-kid trick, Outside contributor Kim Cross found the sweet spot at the crossroads of work and play
How to Build an Artificial HeartMar 5, 2021
Millions of hearts fail each year. Why can’t we replace them?
Your Guide To Building a Stronger Body — From a Personal TrainerFeb 26, 2021
Tested and proven exercise routines you can use to build your own strength
The next act for messenger RNA could be bigger than covid vaccinesFeb 9, 2021
New messenger RNA vaccines to fight the coronavirus are based on a technology that could transform medicine. Next up: sickle cell and HIV.
Hacker NewsJan 30, 2021
Mark Cuban Cost Plus Drug homepage. Provides safe, affordable medicine or medication with transparent low prices.
There’s an “Inverse Piano” in Your HeadJan 25, 2021
A Kavli Prize–winning scientist details the magic of transforming vibrations into sound in the inner ear.
UMLS Metathesaurus BrowserJan 14, 2021
This is an interface for searching and browsing the UMLS Metathesaurus data. Our goal here is to present the UMLS Metathesaurus data in a useful way.
The 432-year-old manual on social distancingJan 14, 2021
In this spookily prescient booklet, people are advised to keep six feet apart, avoid shaking hands and only send one person per household out to do the shopping.
Dr. Death: The Shocking Story of Christopher Duntsch, a Madman with a ScalpJan 2, 2021
Plano surgeon Christopher Duntsch left a trail of bodies. The shocking story of a madman with a scalpel.
How I Lost 65 Pounds In 18 Months Without Any Fad Diets or GimmicksJan 1, 2021
I’ve been reluctant to write this blog post because historically I don’t like talking about weight. But I’ve been promising to publish how…
The Plague Year | The New YorkerDec 29, 2020
The mistakes and the struggles behind America’s coronavirus tragedy.
The World’s Cheapest Hospital Has to Get Even Cheaper - BloombergDec 26, 2020
Cancer surgery for $700, a heart bypass for $2,000. Pretty good, but under India’s new health-care system, it’s not good enough.
How SoulCycle lost its soulDec 26, 2020
The boutique fitness phenomenon sold exclusivity with a smile, until a toxic atmosphere and a push for growth brought the whole thing down.
The Secret to Ultimate Fitness? Thru-Hiking.Dec 25, 2020
The secret to ultimate fitness isn't all that complicated—just spend a month outside, hiking eight hours per day. Kyle Boelte breaks down how his body evolved into an efficient, fat-burning, testosterone-fueled machine over 29 days on the Colorado Trail.
The Planks You Should Be Doing (But Probably Aren't)Dec 25, 2020
As one-minute planks gave way to three-minute planks, and three-minute planks evolved into ten-minute planks, marathon plank-holding has become a calling card of sorts. " Being able to hold a traditional plank for 10 minutes isn't very functional for anything except just that," says Tier 4 trainer Josh Stolz. "Even Stuart McGill (a top authority and researcher of low back pain and function) recommends holding a plank for 10 seconds, tops, followed by a brief, 1-to-2 seconds-long relaxation of the muscles.
The Minimalist’s Strength WorkoutDec 25, 2020
Five exercises that will guarantee you have the strength to adventure all weekend, well into your eighties.
Freestanding Handstand Push-Up Tutorial - YouTubeDec 25, 2020
Hey guys, after working for 3 months on this I can finally release it! I tried to make this tutorial as detailed as possible and keep it entertaining at the same time! I hope I've succeeded at doing this and wish everyone a lot of luck with their journey. Please thumbs up, subscribe and share it if you thought it was useful!
Special thanks to:
Joshua Naterman - https://www.youtube.com/user/slizzardman
Antranik - https://www.youtube.com/user/AntranikDotOrg
jokester (mmmr)
And all the people who reviewed it!
Check out https://www.reddit.com/r/bodyweightfitness/
Wrist warm-up: https://www.youtube.com/watch?v=mSZWSQSSEjE
**STAGES**
Stage 1:
Declined pike push-ups (strength work) 06:30
Frogstand (prior to strength work) 08:10
Yaad lean (skill work) 08:50
Ready for stage 2 when you can do:
Frogstand 30s
Tucked Yaad hold 2s
Stage 2:
Declined pike push-ups (strength work) 06:30
Tucked Yaad hold (skill work) 09:39
Ready for stage 3 when you can do:
Tucked Yaad hold 10s
Full Yaad hold 2s
Stage 3:
Declined pike push-ups (strength work) 06:30
Full Yaad hold (skill work) 10:16
Ready for stage 4 when you can do:
Full Yaad hold 10s
Stage 4:
Declined pike push-ups (strength work) 06:30
Full Yaad hold (skill work) 10:16
HeSPU negatives (skill work) 10:45
Ready for stage 5 when you can do:
Stable HeSPU negatives
Stage 5:
Declined pike push-ups (strength work) 06:30
Full Yaad hold (skill work) 10:16
HeSPU negatives (skill work) 10:45
Frogstand to HS (prior to strength work) 11:00
Ready for stage 6 when you can do:
Stable frogstand to HS
Stage 6:
Declined pike push-ups (strength work) 06:30
Full Yaad hold (skill work) 10:16
HeSPU negatives (skill work) 10:45
Full Yaad hold to HS (prior to strength work) 11:34
Ready for stage 7 when you can do:
Stable full Yaad hold to HS
Stage 7:
Freestanding handstand push-up
Chisel Your Core With This Glute And Hamstring WorkoutDec 25, 2020
If you want shredded abs, you can't overlook your hips and glutes
Incorporate Strength ExercisesDec 25, 2020
You don't need a gym membership to be ready for race season
Health Insurance Marketplace Calculator | KFFNov 29, 2020
The Health Insurance Marketplace Calculator, updated with 2024 premium data, provides estimates of health insurance premiums and subsidies for people purchasing insurance on their own in health insurance exchanges (or “Marketplaces”) created by the Affordable Care Act (ACA).
A curated list of open source healthcare software, tools and resourcesNov 19, 2020
Curated list of awesome open source healthcare software, libraries, tools and resources. - kakoni/awesome-healthcare
https://www.dosome.yoga/Aug 10, 2020
Types of Knee Replacement OptionsJul 30, 2020
Learn about the different surgical options for knee replacement, approaches, and recovery periods to help you make an informed decision.
‘Amazing, Isn’t It?’ Long Sought Blood Test for Alzheimer’s in ReachJul 29, 2020
Scientists say such tests could be available in a few years, speeding research for treatments and providing a diagnosis for dementia patients who want to know if they have Alzheimer’s disease.
Get Ripped with This No-Equipment 6-Move WorkoutJul 26, 2020
Use tempo and isometrics to improve your bodyweight routine
How viruses evolveJul 22, 2020
Pathogens that switch to a new host species have some adapting to do. How does that affect the course of a pandemic like Covid-19?
A Mathematician’s Guide to How Contagion SpreadsJul 10, 2020
Adam Kucharski wrote The Rules of Contagion before Covid-19. He talks about misinformation, bank failures, and coming up with hypotheses during a crisis.
What we can learn from 'untranslatable' illnessesJun 16, 2020
From an enigmatic rage disorder to a sickness of overthinking, there are some mental illnesses you only get in certain cultures. Why? And what can they teach us?
How Treadmill Running Differs from Running OutsideJun 1, 2020
Yes, the physiology and biomechanics of treadmill running are a little different. But how you feel about it is probably more important.
🔥 His work out routine is truly amazing.May 21, 2020
70K votes, 4.3K comments. 9M subscribers in the nextfuckinglevel community.
From Depression to Dementia, Inflammation Is Medicine’s New FrontierMay 14, 2020
The barrier between mind and body appears to be crumbling. Clinical practice and public perception need to catch up.
The Amish Health Care SystemApr 24, 2020
I. Amish people spend only a fifth as much as you do on health care, and their health is fine. What can we learn from them? A reminder: the Amish are a German religious sect who immigrated to colon…
How to Quit Using a Barbell Pad for SquatsMar 9, 2020
At most gyms, there’s a cylindrical pad on the floor somewhere near the squat rack. (If it’s not there, check the Smith machine.) When I first started squatting, I needed that pad on the bar—or thought I did. How else would I protect my bony neck? But the truth is, you don’t need that pad. And if you’re planning to lift more and more over the years (which you will, you beast, you), you’ll have to ditch it.
How I completely transformed my body in one year.Feb 19, 2020
And if I can do it, you definitely can.
How To Deadlift: The Complete Guide to Perfect FormFeb 19, 2020
The deadlift is the most satisfying of barbell lifts. Here's your complete, easy to understand guide to how to deadlift perfectly. Everytime.
How to Jump Rope Like a BoxerFeb 19, 2020
With our archives now 3,500+ articles deep, we’ve decided to republish a classic piece each Sunday to help our newer readers discover some of the best, evergreen gems from the past. This article was originally published in January 2019. When you think about boxers’ workouts — when you mentally run through all the real life […]
Biomedical Data Science Textbook AvailableFeb 19, 2020
By Bob Hoyt & Bob Muenchen Data science is being used in many ways to improve healthcare and reduce costs. We have written a textbook, Introduction to Biomedical Data Science, to help healthcare professionals understand the topic and to work … Continue reading →
How to Get a Stronger Support Grip for Deadlifts and HangsFeb 9, 2020
When you first start doing deadlifts, you’re probably thinking about how hard they are for your back, your butt, your legs. But once the motion is sec
The Activation Drill You Need to Try Before Upper Body WorkoutsFeb 9, 2020
You won't be able to use much weight at all, but you'll still feel like Superman.
This Split Squat Hellset Blasts Every Single Leg Muscle In MinutesJan 29, 2020
Blend three kinds of Bulgarian split squats into one monstrous set for glute, quad, and hamstring gains.
Inside the Effort to Print Lungs and Breathe Life Into Them With Stem CellsJan 28, 2020
Martine Rothblatt wants to end transplant shortages with 3-D-printed lungs.
On Creating A Health Care Website Used In 190 CountriesJan 12, 2020
Hi! My name is Gerald Diaz. I’m a physician and co-founder of GrepMed.com. GrepMed is an image-based medical reference platform that leverages images as an alternative to traditional text-based medical resources. We’re trying to make it easier for doctors and other clinicians to fi...
The Polio DilemmaJan 10, 2020
In 1988 there were 350,000 cases of polio worldwide. Polio is a virus that attacks the nervous system and can cause paralysis. Effective vaccines had already significantly reduced polio cases in developed nations, but it was still a scourge in poor countries. The World Health Organization (WHO) and others formed the Global Polio Eradication Initiative
One Brain, Two Bionic ArmsDec 30, 2019
This man is learning to move two prosthetic arms directly, by thought alone
10 Morning Exercises You Should Do When You Wake Up - Men's JournalDec 23, 2019
You don't need to bang out a whole morning workout, but morning exercises can increase blood flow and give you the boost you need to start the day.
The Invisible Boy Who Became Mr. InvincibleDec 23, 2019
One man's unlikely journey from servant and prisoner of war to bodybuilding champion—with an epic, trans-continental love story along the way.
A Doctor’s Diary: The Overnight Shift in the E.R. (Published 2019)Dec 22, 2019
In the typical emergency room, demand far outpaces the care that workers can provide. Can the E.R. be fixed?
Imaging technique spots colorectal tumors with 100% accuracyDec 14, 2019
A new method that provides accurate, real-time, computer-aided diagnosis of colorectal cancer identified tumors with 100% accuracy in a new pilot study.
The Startling Secret of an Invincible VirusDec 11, 2019
A phage that resists all forms of the antiviral defense known as CRISPR has an unusual means of survival.
The Zen of Weight LiftingNov 26, 2019
Chop wood, carry water and other lessons that apply far beyond the gym.
The most remote emergency room: Life and death in rural America - The WashiNov 19, 2019
If anything defines the growing health gap between rural and urban America, it’s the rise of emergency telemedicine in the poorest, sickest, and most remote parts of the country, where the choice is increasingly to have a doctor on screen or no doctor at all. These physicians, often hundreds of miles away, work out of cubicles instead of exam rooms and never directly see or touch their patients.
Yes, You Can Catch InsanityNov 13, 2019
A controversial disease revives the debate about the immune system and mental illness.
Measuring surgical qualityOct 25, 2019
Not all surgeons are equally skilled with a scalpel. Doctors are developing new ways to test — and improve — operating room performance.
»I have no desire to open up this man’s skull. I do it because I have to«Oct 24, 2019
Forensic scientists, the police and crime scene investigators master horror with a steady hand. This article gives a rare insight into the post-mortem examination of a homicide.
Shackleton’s Medical KitOct 9, 2019
‘Each box was like the distillation of all that we have learned as a species about our bodies and their infirmities, a time capsule of medicine.’
A terrible crime, a patient waiting for a transplant: The tragic, redemptive journey of one heart.Oct 3, 2019
Three decades ago, a young man murdered his girlfriend and killed himself. What happened next to his heart was extraordinary.
A Hole in the Head: A History of Trepanation | The MIT Press ReaderOct 1, 2019
A survey of trepanation, or trephination, the oldest surgical procedure known to humanity.
Paul Clarke Wants to LiveSep 3, 2019
When a promising student left a neighborhood full of heroin for the University of Pennsylvania, it should have been a moving story. But what does an at-risk student actually need to thrive — or even just to survive?
Column One: 'Blink once if you can hear me’ — a brain-injured man's remarkable awakeningAug 29, 2019
Omar Salgado defied the odds in Room 20. But his is not a story about a miracle — it’s a story about medicine’s inability to accurately diagnose consciousness.
How a 6,000-Year-Old Dog Cancer Spread Around the WorldAug 4, 2019
A massive collection of dog tumor samples is revealing the secrets of a contagious, parasite-like cancer that could help explain human cancers too.
He'd been kept alive with tubes for nearly 17 years. Who is he, and is it possible he’s conscious?Aug 4, 2019
Finding out his name turned out to be the easy part. The tough part was navigating the blurred lines that separate consciousness from unconsciousness — and figuring out whether his smile was really a smile.
What exactly is a disease?Jul 30, 2019
There is an ongoing debate about whether or not obesity is a disease. The debate raises other questions, such as, who gets to decide what is a disease and what isn't.
UT Southwestern’s Cutting-Edge Battle Against Rare, Fatal Childhood DiseaseJul 25, 2019
With a new gene therapy center almost completed, the medical center is providing hope for families who previously had little.
Why plants don’t die from cancerJul 1, 2019
Humans and other mammals and birds would have been killed many times over by Chernobyl's radiation that plants in the most contaminated areas received. So why is plant life so resilient to radiation and nuclear disaster?
Pitt and CMU To Create Autonomous Robotic Trauma Care SystemJun 16, 2019
CMU and the University of Pittsburgh School of Medicine have received funding from the U.S. Department of Defense to create an autonomous trauma care system that fits in a backpack — or, as shown here, a folded stretcher.
The Illuminating Geometry of Viruses | Quanta MagazineJun 16, 2019
Mathematical insights into how RNA helps viruses pull together their protein shells could guide future studies of viral behavior and function.
Meet the Carousing Texan Who Won a Nobel PrizeJun 1, 2019
Jim Allison is an iconoclastic scientist who toiled in obscurity for years. Then he helped crack a mystery that may save millions of lives: Why doesn’t the immune system attack cancer?
Why Would Anyone Choose to Run 100 Miles Through the Desert?May 31, 2019
The Oman Desert Marathon was my first ultra marathon. It was just over 100 miles (165km) across the baking sand. I didn’t really want to do it. It only came up as an idea when an editor from The Fi…
This Is What Happens to Your Body on a Thru-HikeMay 7, 2019
The secret to ultimate fitness isn't all that complicated—just spend a month outside, hiking eight hours per day.
Why are so many people getting rare cancers in this small Georgia town?Apr 27, 2019
After multiple rare cancers have been diagnosed in Waycross, Georgia, the city grapples with a profound question: What if the industries that gave us life are killing us?
Opting Out of Vaccines Should Opt You Out of American SocietyApr 9, 2019
People who are able to take vaccines but refuse to do so are the moral equivalent of drunk drivers
A Drug Shows an Astonishing Ability to Regenerate Damaged Hearts and Other Body PartsApr 3, 2019
A once abandoned drug compound shows an ability to rebuild organs damaged by illness and injury
The Brain That Remade ItselfApr 1, 2019
Doctors removed one-sixth of this boy’s brain — and what was left did something incredible
T Nation ContentFeb 21, 2019
Discover a more intelligent approach for getting bigger, stronger, and leaner.
A Surgeon Reflects On Death, Life And The 'Incredible Gift' Of Organ TranspFeb 10, 2019
Joshua Mezrich has performed hundreds of kidney, liver and pancreas transplants. He shares stories from the operating room in his book, When Death Becomes Life.
Beautiful But Deadly: The Creepiest Devices From Medicine’s Grisly, Leech-FJan 10, 2019
[caption id="attachment_78739" align="aligncenter" width="483"] Close-up of an Auzoux anatomic male manikin, made of hand-painted papier mâché, circa 18...
I read 1,182 emergency room bills this year. Here’s what I learned.Dec 18, 2018
A $5,571 bill to sit in a waiting room, $238 eyedrops, and a $60 ibuprofen tell the story of how emergency room visits are squeezing patients.
The Bleeding Edge: a terrifying, enraging look at the corrupt, deadly worldDec 16, 2018
Prior to 1976, the FDA did not regulate medical implants, and so shoddy and even deadly devices proliferated, inserted into Americans' body. When the FDA finally decided to regulate implants,…
How One Hospital Improved Patient Safety in 10 Minutes a DayOct 31, 2018
Clinical and nonclinical staff at the Rotterdam Eye Hospital have improved patient care and raised staff morale at a very modest cost: 10 minutes a day and a special deck of cards. At the start of every shift, the team members get together for a brief “team-start.” Each team member rates his or her own mood as green (I’m good), orange (I’m okay but I have a few things I’m concerned about) or red (I’m under stress). The rest of the team doesn’t need to know that you’re under stress because you’re having a dispute with your landlord or you are worried about your ill toddler. How you feel, however, is important because it affects how you should be treated. Next, the team leader asks if there is anything in particular the team needs to know to work more effectively together that shift: For example, “Is there a delay in public transport so we can expect patients to be late for their appointments?,” or “Is there a patient with some kind of special need coming in?” Sharing the answers or results generated by the card questions and activities with the group ensures that the insights stick.
A Cardiologist’s 9/11 Story - Issue 64: The UnseenOct 28, 2018
From trauma to arrhythmia, and back again.
Truly, neurally, deeplyOct 28, 2018
Scientists are developing AI systems called deep neural nets that can read medical images and detect disease — with astonishing efficiency
Why Doctors Reject Tools That Make Their Jobs EasierOct 17, 2018
From the thermometer’s invention onward, physicians have feared—incorrectly—that new technology would make their jobs obsolete
A long-overlooked brain region may be key to complex thoughtOct 6, 2018
The thalamus has traditionally been viewed just as the brain’s sensory relay station. But it may also play an important role in higher-level cognition, MIT’s Michael Halassa explains in a Q&A.
A college cross-country team needed runners. It recruited three moms over 4Sep 21, 2018
The NJCAA does not have an age limit, so Daytona State College recruited three "non-traditional" students to its cross-country team.
Rare Condition Means Blind Woman Can Only See Moving ObjectsAug 31, 2018
After suffering a stroke, a woman was left blinded, only able to see movement.
The High-Stakes Race to Create the World's First Artificial Heart – Texas MAug 17, 2018
In this exclusive excerpt from 'Ticker: The Quest to Create an Artificial Heart,' world-renowned Houston surgeon Bud Frazier races to help an ailing patient by implanting a revolutionary device that may one day save millions of lives.
How a Transplanted Face Transformed a Young Woman’s LifeAug 16, 2018
At 18, Katie Stubblefield lost her face. At 21, she became the youngest person in the U.S. to undergo the still experimental surgery. Follow her incredible story.
An Unprecedented Look at a Young Woman’s Face TransplantAug 16, 2018
Are we our faces? This poignant story explores that question.
What It Takes to Hold Your Breath for 24 Minutes (Yeah, It’s a Thing) | WIRAug 15, 2018
The world record stands at 24 minutes 3 seconds. How much can it improve?
A Cast That Doesn’t Suck as MuchAug 13, 2018
If you've ever broken a bone, chances are you remember just how inconvenient it was to have a heavy, itchy, not-so-hygienic cast. It's almost as bad as the broken bone itself! Tung-Jun Yang's proposal, called Cocoon, is an all-new type of cast that aims to be lighter, more breathable, more durable, and quicker-to-set than the
Meet the Anarchists Making Their Own MedicineJul 30, 2018
The Four Thieves Vinegar Collective is a network of tech-fueled anarchists taking on Big Pharma with DIY medicines.
the healing edge: Dying Organs Restored to Life in Novel ExperimentsJul 17, 2018
An unusual transplant may revive tissues thought to be hopelessly damaged, including the heart and brain.
Inside the effort to print lungs and breathe life into them with stem cellsJul 6, 2018
Martine Rothblatt wants to end transplant shortages with 3-D-printed lungs.
The hearts coming back from the deadMar 9, 2018
Cardiac arrest kills off parts of the heart. Once dead, the cells don’t recover. But scientists may have come up with a way to reverse this – and potentially save thousands of people.
'Heroin(e)': The Women Fighting Addiction In Appalachia : NPRMar 8, 2018
An Oscar-nominated documentary short explores the country's opioid crisis through the heroism of women in Huntington, W.Va. — women like fire chief Jan Rader and drug court judge Patricia Keller.
The Tiger Balm story: how ointment for every ailment was created, fell outFeb 20, 2018
Analgesic balm in a hexagonal jar, launched in Rangoon by the Aw brothers in 1924, was a staple of Chinese families’ medicine cabinets for a generation. Today, Tiger Balm products have fans around the world, including Lady Gaga
What Does It Mean to Die?Jan 29, 2018
When Jahi McMath was declared brain-dead by the hospital, her family disagreed. Her case challenges the very nature of existence.
The ‘Frequent Flier’ Program That Grounded a Hospital’s Soaring Costs - POLJan 25, 2018
In Dallas, Parkland Hospital created an information-sharing network that gets the city’s most vulnerable citizens the care they need—before they show up in the emergency room.
Gavin Francis · The Untreatable: The Spanish FluJan 21, 2018
The pandemic had some influence on the lives of everyone alive today. Donald Trump’s grandfather Friedrich died from...
When personalities go from bad to goodJan 11, 2018
Brain injury does not always result in an undesirable personality change, finds Christian Jarrett.
Doctors: Christmas in the I.C.U.Dec 24, 2017
There’s an illusion that if you want something enough, even something as fantastical as avoiding death, you might just get it.
The Veterinarians Preventing the Next PandemicAug 24, 2015
Most new diseases have their origins in animals. So why aren’t we paying more attention to their health?
A Rodeo Doctor Fixes Much More Than Broken BonesOct 24, 2012
A fixture in bull riding events around the country, Dallas surgeon Tandy Freeman tends to much more than just concussions and broken bones.
How Apple Watch sleep apnea detection works and why it matters | Empirical HealthSep 24, 2010
80% of sleep apnea cases are undiagnosed, and undiagnosed sleep apnea causes $150B of wasted medical spend every year.
To Be Born in a BagOct 24, 2007
Despite recent progress, artificial wombs still face technical challenges. De-extinction efforts, of all things, are driving it forward. Just how much is anyone’s guess.
The pathogens that could spark the next pandemicAug 24, 2006
Nature - The World Health Organization has updated its list of most dangerous viruses and bacteria.
heroku
Practical Steps to Reduce Heroku CostsJan 27, 2025
Heroku can quickly get expensive. Dig into this article to learn some concrete strategies to reduce your Heroku bill!
Pricing | HerokuApr 16, 2024
Heroku offers simple, flexible pricing to meet the needs of every app and every organization. Add data stores, cloud services, support, and more.
Heroku alternatives for Rails projects: Deploying my shit to fly.ioOct 23, 2022
I like to develop production projects and side projects as deployment-driven as possible. Over the years I had tons of projects on Heroku and I'm grateful for the experience 🙏 But if tons of projects are to come again, I don't see a point in paying 7$ bucks per side-project. Luckily
Render: Awesome alternative for HerokuSep 22, 2022
Heroku will stop offering its free tiers this November, leaving developers to choose other...
Heroku no longer offers free service, what's the best alternative now?Aug 30, 2022
Heroku was such a simple and free experience to host side project and start developing. What is the...
Heroku no longer offers free service, what's the best alternative now?Aug 30, 2022
Heroku was such a simple and free experience to host side project and start developing. What is the...
Free Alternatives to HerokuAug 30, 2022
Given the recent news about Heroku bringing an end to free dynos and PostgreSQL databases, what other...
Scheduling Jobs on HerokuJun 13, 2022
Heroku Scheduler is a free Heroku add-on that runs any command that can be run in your application at...
SQLite on Heroku | Heroku Dev CenterMay 29, 2022
A guide to SQLite on Heroku - explaining why using SQLite on Heroku's ephemeral file system is a bad fit, and looking at alternatives.
Getting Started on Heroku with Node.js | Heroku Dev CenterJan 4, 2022
A step-by-step guide for deploying your first Node app and mastering the basics of Heroku
Deploying Jekyll to HerokuDec 26, 2021
So you have a static site in Jekyll that you want to deploy toHeroku. Lucky for you, this is a relatively easy task and does notrequire anything as complex a...
The Heroku CLI | Heroku Dev CenterDec 14, 2021
How to download, install, and start using the Heroku CLI. The Heroku CLI used to be part of the Heroku Toolbelt.
How To Deploy a Full-Stack MERN App with Heroku/NetlifyDec 12, 2021
This post is intended to be a guide for those that want to deploy a full-stack MERN app. It will be v...
Cloud Application Platform | HerokuDec 12, 2021
Heroku is a platform as a service (PaaS) that enables developers to build, run, and operate applications entirely in the cloud.
How to deploy streamlit app to HerokuOct 1, 2021
Hello everyone, This is a step by step tutorial about how to deploy your Streamlit app to Heroku. ...
Create a Web App in Under Thirty Minutes with Streamlit, MongoDB and HerokuOct 1, 2021
An aspiring Full Stack Developer’s guide to quickly developing and deploying scalable web applications
Deploy an NLP pipeline. Flask Heroku Bert.May 1, 2021
A simple quick solution for deploying an NLP project and challenges you may faced during the process.
Deploying a basic Streamlit app to HerokuApr 7, 2021
This article demonstrates the deployment of a basic Streamlit app (that simulates the Central Limit Theorem) to Heroku.
Buildpacks vs DockerfilesFeb 10, 2021
Read more on the Doximity Technology Blog about how our engineers and data scientists are building the largest online network for clinicians.
Best alternatives to hosting on Heroku?Jan 27, 2021
33 votes, 56 comments. Heroku is easy to use and has a good marketplace. They make it really easy to deploy and to purchase additional resources. I…
How to Deploy your Custom ML Model with Streamlit and HerokuDec 18, 2020
A Step-by-Step Guide to Host your Models!
Create and Deploy your First Flask App using Python and HerokuNov 3, 2020
Flask is a straightforward and lightweight web application framework for Python applications. This guide walks you through how to write an application using Flask with a deployment on Heroku.
Heroku Dynos: Sizes, Types, and How Many You NeedAug 19, 2020
The ultimate guide to dynos on Heroku. If you’ve ever asked "how many dynos do I need?" or "which dyno type is right for my app?", this is the guide for you.
Active Storage on Heroku | Heroku Dev CenterMar 14, 2020
Rails [5.2 introduced Active Storage](https://guides.rubyonrails.org/active_storage_overview.html) as a way of managing attaching and saving files to Active Record models. This guide will cover how to use Active Storage on Heroku.
Getting Started on Heroku with Python | Heroku Dev CenterJan 2, 2018
A step-by-step guide for deploying your first Python app and mastering the basics of Heroku
hiking
The Backcountry Rescue Squad at America’s Busiest National ParkJan 15, 2026
In the Great Smoky Mountains, an auxiliary team of élite outdoorsmen answers the call when park-goers’ hikes, climbs, and rafting adventures go wrong, Paige Williams writes.
The 'cool Camino': Why hikers are heading northOct 15, 2025
Every summer, Spain's iconic Camino bakes under extreme heat, but Norway's St Olav Ways offer pilgrims a quieter, cooler path to redemption.
She Vanished on a Colorado Mountain. 19 Years Later, a Mysterious Dream Helped Rescuers Find Her.Sep 3, 2025
Michelle Vanek disappeared on Mt. of the Holy Cross in 2005, setting off the largest search for a missing hiker in state history. The trail went cold—until an all-women team reopened the case.
Hiking North Carolina's Linville Gorge Wilderness areaJun 15, 2024
NPR's Brian Mann explored one of the easy trails in the Linville Gorge Wilderness in North Carolina.
12 Of The Most Beautiful Hiking Trails In 2024Apr 1, 2023
Discover some of the most beautiful hiking in the world on these bucket list hikes, from the Dolomite High Route to Everest Base Camp and many more.
Hexatrek : The long distance thru hike in FranceApr 1, 2023
A long distance european hiking trail of 3034 km. The longest trek in France in the heart of the most beautiful national parks. Thru-hike the french mountains and hike through Vosges, Jura, Alps, Ecrins, Vercors, Ardèche, Cevennes, Languedoc and the Pyrenees.
This Is What Happens to Your Body on a Thru-Hike - Outside OnlineDec 21, 2022
The secret to ultimate fitness isn't all that complicated—just spend a month outside, hiking eight hours per day. Kyle Boelte breaks down how his body evolved into an efficient, fat-burning, testosterone-fueled machine over 29 days on the Colorado Trail.
23 of the world’s greatest hiking trails | CNNSep 22, 2022
From multiday treks tracing the routes of a Japanese poet to classic climbs in Argentina’s Lake District, here are the 23 best hiking trails in the world.
This Stunning Mountain Destination Is an Outdoor Adventurer's Paradise — With Epic Hikes, Scenic Campgrounds, and Waterfall ViewsJun 1, 2022
Your guide to the dreamy Blue Ridge Mountains, including excellent hikes, beautiful drives, and the best hotels and campgrounds.
Walks of a Lifetime: Six Epic Mountain Hikes Across EuropeMay 30, 2022
From a sandstone labyrinth to bears and marmots, Europe’s hills and mountains offer exhilarating long-distance walks. Just don’t forget your poles and harness.
8 Rails-to-Trails Adventures in the U.S. (Published 2022)May 25, 2022
Tens of thousands of miles of abandoned railroad tracks have been developed into recreational paths since the 1960s. Here are scenic pathways through deserts, valleys, mountain passages and more.
They set out to hike three of America's longest trails in less than a year. What could go wrong?Nov 24, 2021
Jackson Parell and Sammy Potter hatched an ambitious plan during the height of the COVID-19 pandemic: to hike three of the nation’s most arduous trails — the Appalachian, Pacific Crest and Continental Divide — in a single year.
Hiking the Mountain Trails Less Traveled in Colorado – Texas MonthlyApr 16, 2021
The hills are alive with socially distant adventures.
Inside the Thrilling, Slightly Terrifying World of Austrian Hut-to-Hut HikingApr 16, 2021
Up, up, and away!
The Accident on the Pacific Crest TrailFeb 7, 2021
The Pacific Crest Trail is as dangerous as it is beautiful. This is the story of one young hiker who never made it home.
Tackling the 7,000-Mile Great Western LoopOct 17, 2018
The route patches together portions of five other thru-hikes and includes sections of trail-less meandering through the Sonoran and Mojave deserts. It's no wonder that only one person has ever completed it—yet.
Camp your way | Discover the best camping near youSep 3, 2018
From seaside campsites to luxury treehouses, we're the most comprehensive guide to camping and glamping across the UK. Camp on farms, beaches and country estates.
SnowboundAug 18, 2018
Pinned down in deep snow and running out of food, veteran thru-hiker Stephen “Otter” Olshansky scraped his way to a campground latrine, holed up inside, and prayed for help to arrive.
Life Below The Rim Of The Grand Canyon At Phantom RanchMay 27, 2018
Employees and guests alike will tell you that it's impossible to explain the feeling at Phantom Ranch, a bunkhouse and restaurant on the canyon's floor. It's a vibe you have to experience to get.
How the Japanese Practice of “Forest Bathing”—Or Just Hanging Out in the WoDec 20, 2017
When the U.S. media began reporting on the phenomenon of “forest bathing” as a therapy for mental and physical health, the online commentariat—as it will—mocked the concept relentlessly as yet another pretentious, bourgeois repackaging of something thoroughly mundane.
history
The Greatest Double Agent Ever: How a Spanish Chicken Farmer Became the Most Important Double Agent in WWIIMar 2, 2026
Juan Pujol García was one of the rare individuals whose participation in World War II made him a Member of the Order of the British Empire and earned him the Iron Cross. He gained that unlikely distinction in perhaps the riskiest of all roles in espionage, that of a double agent.
The Machine That Made China RichFeb 24, 2026
Thanks to Storyblocks for sponsoring this video! Download unlimited stock media at one set price with Storyblocks: https://storyblocks.com/PrimalSpaceDid you...
Vigilantes at Dawn - LongreadsFeb 19, 2026
A forgotten deportation, a family archive, and the cost of belonging.
How Queen Nzinga Outsmarted the Portuguese Empire With a Human Throne | TheCollectorFeb 17, 2026
Learn about Queen Nzingha’s fierce leadership, her resistance against Portuguese colonization, and her legacy in African history.
Hawaiian Pidgin: The History of a Creole Language | TheCollectorJan 22, 2026
The grammatical features of the Creole language known as Hawaiian Pidgin tell us of a society built on the efforts of its multicultural workforce.
What We Get Wrong About TechnologyJan 16, 2026
Blade Runner (1982) is a magnificent film, but there’s something odd about it. The heroine, Rachael, seems to be a beautiful young woman. In reality, she’s a piece of technology — an organic robot …
The Birth of Espresso: The Story Behind the Coffee Shots That Fuel Modern LifeJan 2, 2026
Espresso is neither bean nor roast.
It is a method of pressurized coffee brewing that ensures speedy delivery, and it has birthed a whole culture.
Swaziland: The Last Autocratic Monarchy in the World | TheCollectorJan 1, 2026
With a history of expansion, struggle, and scandal, Eswatini’s monarchy continues to make headlines.
How Did the CIA Lose a Nuclear Device? - SlashdotDec 15, 2025
Sixty years after a team of American and Indian climbers abandoned a plutonium-powered generator on the slopes of Nanda Devi, one of the world's most forbidding Himalayan peaks, the U.S. government still refuses to acknowledge that the mission ever happened. The device, a SNAP-19C portable generator...
How Did These 5 Ancient Languages Have Such a Historical Impact?Dec 4, 2025
According to scientists, written languages appeared some 5,500 years ago. And from these myriads of ancient tongues, these five produced the biggest impact.
Strap RailNov 6, 2025
The early history of the United States runs along with the first years of the railroad.
The 5 Most Significant Non-Abrahamic World Religions and Philosophies | TheCollectorNov 2, 2025
Read on and discover five non-Abrahamic World Religions to better understand yourself and the world you live in.
The Strange History of Why North Is Always Up | TheCollectorOct 27, 2025
South-up maps are challenging traditional views of the Earth—and the political and cultural beliefs that go with them.
Why Real Biblical Angels Are Creepy, Beastly, and Hardly AngelicOct 15, 2025
Nearly 70 percent of Americans believe in angels, at least according to a statistic often cited in recent years. But what, exactly, comes to their minds — or those of any other believers around the world — when they imagine one?
Miller–Urey experiment - WikipediaOct 13, 2025
The "Critical Minerals" Crisis of 100 Years AgoOct 2, 2025
I review a fascinating dissertation on interwar metals trading and the "Age of Alloy Steel"
How the Spice Trade Redrew the World Map | TheCollectorSep 26, 2025
In the 15th and 16th centuries, the desire to expand and control the spice trade was one of the driving forces behind the Age of Exploration.
How Underwater Shells Became the First Global Money | TheCollectorSep 26, 2025
How did underwater shells from the Maldives become an instrumental form of currency in the Transatlantic Slave Trade?
The thousand-year story of how the fork crossed Europe, and onto your plate todaySep 24, 2025
From scandal to staple: how the fork travelled from Byzantium to Lithuania, helped by Queen Bona Sforza and centuries of changing table manners.
‘Resistance is when I put an end to what I don’t like’: The rise and fall of the Baader-Meinhof gangSep 18, 2025
In the 1970s, the radical leftwing German terrorist organisation may have spread fear through public acts of violence – but its inner workings were characterised by vanity and incompetence
How Byzantium Beat the Vandals at the Battle of Ad DecimumSep 11, 2025
The Battle of Ad Decimum in 533 CE marked Byzantium’s victorious return to Africa, defeating the Vandals and restoring Roman rule in Carthage.
Why Is Moscow So Weird?Sep 7, 2025
Why so far north? So cold? Why not on a big river or a coast? Why the biggest city in Europe? Why the capital of the biggest country on Earth?
The Colorful, Scandalous, True History of the Machine That Created American PopSep 5, 2025
The jukebox got its start earlier than you might think, but it truly became iconic when rock 'n' roll took over in the 1950s
Liberté, égalité, radioactivitéSep 4, 2025
France built forty nuclear reactors in a decade. Here's what the world can learn from it.
Features - How to Build a Medieval Castle - Archaeology Magazine - September/October 2025Aug 19, 2025
Why are archaeologists constructing a thirteenth-century fortress in the forests of France?
Why Knights Fought Snails in Medieval Illuminated ManuscriptsAug 18, 2025
The snail may leave a trail of slime behind him, but a little slime will do a man no harm... whilst if you dance with dragons, you must expect to burn.
- George R. R. Martin, The Mystery Knight
As any Game of Thrones fan knows, being a knight has its downsides.
What Happened When Hitler Took On Germany’s Central BankerAug 17, 2025
Hans Luther was the principled and respected president of the Reichsbank—but he wouldn’t accede to Hitler’s demands.
TheCollectorAug 15, 2025
The Mongols are known for their brutality when it came to warfare. But just how brutal were they?
Order of Operations in a Regime ChangeAug 15, 2025
A review of Collapse: The Fall of the Soviet Union, by Vladislav Zubok
The Iranian Revolution Almost Didn’t HappenAug 11, 2025
From a dying adviser to a clumsy editorial, the Revolution was a cascade of accidents and oversights.
The Epic Story of El Cid (Rodrigo Díaz de Vivar)Jul 31, 2025
Read on to learn all about El Cid, one of the most revered figures in European history.
7 Unusual Saints of the Middle AgesJul 31, 2025
During the Middle Ages, Christian saints with unusual backstories gained large followings. Their appeal can help us understand medieval culture, values, and beliefs.
Medieval Battles Where Archers Ruled the Field | TheCollectorJul 24, 2025
Cavalry, armored and using superior mobility, dominated the medieval battlefield. That is, until archers with powerful bows and better military tactics won key battles, demonstrating otherwise.
The Real Story of the Legendary Ninja Hattori Hanzo | TheCollectorJul 20, 2025
The shinobi are legendary in Japanese history for their skills in subterfuge and stealth; one name, in particular, rings out when discussing ninjas: Hattori Hanzo.
7 Medieval Weapons & Armor | TheCollectorJul 6, 2025
The Medieval period was a time of constant innovation, with a wide array of weapons and armor developed to give warriors an edge on the battlefield.
Age of Invention: All Fired UpJul 5, 2025
The mystifying, centuries-long failure of the coal briquette
How the Hittites Used Fear & Strategy to Create a Bronze Age Empire | TheCollectorJul 5, 2025
The Hittites built a successful empire in the ancient Near East. Their military success was based on their religion, technology, and military tactics.
Knights Templar & the Creation of Modern Banking | TheCollectorJul 5, 2025
The foundations of our modern banking system owe much to the Knights Templar. How did they go from protecting pilgrims to brokering land purchases for kings?
The Siege Warfare That Shaped Ancient Greece & Rome | TheCollectorJul 5, 2025
While battles got the most attention, sieges were an important warfare tactic in ancient Greece and Rome. It took time and ingenuity to breach city walls.
Firewood in the American Economy: 1700 to 2010 - Marginal REVOLUTIONJul 1, 2025
Despite the central role of firewood in the development of the early American economy, prices for this energy fuel are absent from official government statistics and the scholarly literature. This paper presents the most comprehensive dataset of firewood prices in the United States compiled to date, encompassing over 6,000 price quotes from 1700 to 2010. […]
Hannibal’s Master Class in Ambush Tactics at the Battle of Trasimene | TheCollectorJun 30, 2025
On June 21, 217 BCE, an entire Roman army marched into an ambush set by the Carthaginian general Hannibal Barca.
The First Crusade: Pope Urban II and the War for the Holy Land | TheCollectorMay 20, 2025
The First Crusade was a pivotal event with lasting consequences on the political and religious relations of the medieval world.
Collections: Why Archers Didn’t Volley FireMay 5, 2025
This week we’re looking at a specific visual motif common in TV and film: the arrow volley. You know the scene: the general readies his archers, he orders them to ‘draw!’ and then…
Lost and Found: The Unexpected Journey of the MingKwai Typewriter | Made in China JournalMay 4, 2025
It began as an innocuous inquiry on Facebook. Nelson Felix, a resident of New York State, posted in the group ‘What’s My Typewriter Worth?’ about a curious find he made while clearing out the basement of his wife’s grandfather. He shared a few photos. The keys on the typewriter are all in Chinese, Felix noted, […]
What Are the Lost Libraries of Timbuktu?Apr 27, 2025
The Lost Libraries of Timbuktu. are a collection of books numbering in the hundreds of thousands that were lost following the decline of Timbuktu in the 19th century.
How a Forgotten Battle Created a More Peaceful WorldApr 17, 2025
The legacy of Solferino is in more danger than ever
Acids to Ashes: The crash of Pan Am flight 160 - Admiral Cloudberg - MediumApr 5, 2025
On the 3rd of November 1973, the crew of a Pan Am cargo plane lined up to land at Boston’s Logan International Airport, struggling desperately to reach the runway as a fire raged in the cargo deck…
The Origins of AdjuvantsApr 4, 2025
More than a century after the invention of vaccines, a veterinarian stumbled across a technique to boost their efficacy in an unlikely way — by observing wounded horses.
The Secret History of America’s Involvement in the Ukraine WarMar 30, 2025
This is the untold story of America’s hidden role in Ukrainian military operations against Russia’s invading armies.
The Chinese Communist Party’s Ultimate TabooMar 27, 2025
Fang Fang’s newly translated novel uncovers the brutal, buried history of land reform in China.
The Dingo’s FateMar 27, 2025
The convoluted story of how a species of dog first arrived in Australia and subsequently took over the Outback challenges fundamental notions about what it means to be “native.”
North America’s First and Only da Vinci Museum is Coming to COMar 27, 2025
Coming to Pueblo, CO, this fall, the Leonardo da Vinci Museum of North America will be the first and only museum of its kind in the continent.
Opinion | He Cut a Secret Deal That Cemented U.S. Economic Power — And He Has a Lesson for Donald TrumpMar 24, 2025
A forgotten Nixon-era negotiation offers urgent lessons for our new age of economic
warfare.
Excalibur: The Legendary Sword of King ArthurMar 14, 2025
Excalibur was the legendary sword of King Arthur. But what do we know about this sword, and how did the legend evolve over the years?
Steam networks - Works in ProgressMar 13, 2025
New York's skyscrapers soar above a century-old steam network that still warms the city. While the rest of the world moved to hot water, Manhattanites still buy steam by the megapound.
The Uneasy Origins of CasteFeb 17, 2025
An Unpleasant Story Triangulated from Scripture, Genetics, and Archeology
WWII Bombers: The Aircraft That Shaped the WarFeb 17, 2025
World War II is when the bomber came of age, and such aircraft could impact the course of war. All the powers would field planes whose names would become synonymous with this conflict.
The Mystery of the World's Oldest Writing System Remained Unsolved Until Four Competitive Scholars Raced to Decipher ItFeb 11, 2025
In the 1850s, cuneiform was just a series of baffling scratches on clay, waiting to spill the secrets of the ancient civilizations of Mesopotamia
When Louis Armstrong Conquered ChicagoFeb 8, 2025
Grammy-winner Ricky Riccardi tells the story of a milestone moment in American music in this extract from his new book
My Quest to Find the Owner of a Mysterious WWII Japanese SwordFeb 7, 2025
When I was a kid, I was fascinated by a traditional katana my grandfather had brought home from Japan in 1945. Years later, I decided it was time to find the heirloom’s rightful owner.
Signs Of Life In A Desert Of Death | NOEMAJan 30, 2025
In the dry and fiery deserts of Central Asia, among the mythical sites of both the first human and the end of all days, I found evidence that life restores itself even on the bleakest edge of ecological apocalypse.
Jump, Jive and Fail: The ’90s Swing CrazeJan 29, 2025
How did retro sounds, dance moves, and vintage suits come to dominate before suddenly disappearing?
The Harpies: Beasts of Vengeance in Greek MythologyJan 22, 2025
The Harpies appear throughout Greek mythology as part-human and part-bird mythological beasts that conjure feelings of dread and disgust in their victims.
A Spy Satellite You’ve Never Heard of Helped Win the Cold WarJan 21, 2025
Engineers at the Naval Research Lab launched a spy satellite program called Parcae and revolutionized signals intelligence at the height of the Cold War. The program relied on computers to sift through intelligence data, providing a technological edge at a pivotal moment in the Cold War.
Song Hunter: The Life of Alan LomaxJan 21, 2025
Alan Lomax was a legendary collector of folk music, author, broadcaster, oral historian, musicologist, and filmmaker who raised the profile of folk music worldwide.
The Derelict • Damn InterestingJan 19, 2025
A series of accidents and errors amass into disaster at sea. But that's not the end of the story.
How Jukeboxes Made Memphis MusicJan 19, 2025
Nashville is where you go to make a hit that sounds like everyone else. Memphis is where you make a …
The Skeleton Dance, Voted the 18th Best Cartoon of All Time, Is Now in the Public Domain (1929)Jan 6, 2025
The final lines of this strong recommendation add that 'all takes place in a graveyard.
How to Stage a CoupDec 15, 2024
"I'm now going to offer you a megalomaniac explanation of the course of events"
The secret reason the USA beat the USSR to the MoonDec 12, 2024
Sixty years ago, the Soviet Union was way ahead of the USA in the space race. Then one critical event changed everything.
Inside the Vatican’s secret saint-making processDec 4, 2024
The long read: Canonisation has long been a way for the Catholic church to shape its image. The Vatican is preparing to anoint its first millennial saint, but how does it decide who is worthy?
The Smartphone of the Middle AgesDec 4, 2024
An accident of lighting uncovers Jewish, European, and Islamic origins.
Can a stuffed bird solve a 150-year-old Arctic murder mystery?Nov 25, 2024
The Polaris explorer Charles Francis Hall has long been rumoured to have been poisoned in 1872. A preserved snow bunting might be crucial evidence for the theory
Evidence of oldest known alphabetic writing unearthed in ancient Syrian cityNov 24, 2024
Findings suggest alphabetic writing may be some 500 years older than other discoveries
The Influence of Bell LabsNov 15, 2024
We’ve talked previously about Bell Labs’ long, storied history as an innovation engine and a generator of new technology.
An uncivil civil warNov 8, 2024
Civil war is in the air. Why not revisit one that has already taken place?
Meet the Italian 'Fruit Detective' Who Investigates Centuries-Old Paintings for Clues About Produce That Has Disappeared From the Kitchen TableOct 30, 2024
Renaissance paintings, medieval archives, cloistered orchards—how one Italian scientist is uncovering secrets that could help combat a growing agricultural crisis
The Forgotten PandemicOct 27, 2024
Humans have suffered from tuberculosis for thousands of years and, even today, the disease kills more than 1 million people each year. Yet diagnosing cases remains a challenge. Why?
Iconic Bird of American Horror Stories Faces Its Own Terrifying FateOct 25, 2024
The Whip-Poor-Will’s shrill, death-proclaiming song populates the works of Stephen King and H.P. Lovecraft. But the bird itself has fallen on hard times. Could it become a ghost of Halloweens past?
The Rise and Fall of Matchbox's Toy-Car Empire - Hagerty MediaOct 17, 2024
John Cena's not a small guy, but he—and Mattel's movie—have some big shoes to fill if they're telling the origin story of Matchbox.
Book Review: Refrigeration and the Many Virtues of the Cold ChainJul 13, 2024
Nicola Twilley’s "Frostbite" explores how refrigeration has shaped everything over time from our guts to economies.
Brutal birthJun 29, 2024
Indonesia’s emergence was both more violent and more pioneering than commonly imagined
“The Woman Who Came From the Sky” — Meet Valérie André, the World’s First FJun 16, 2024
“As a doctor, she had already faced misogyny in the French medical corps. But she persevered. It would be no different for her as a rescue pilot.” By Charles Morgan Evans AT A remote French...
Records of Pompeii’s survivors have been found – and archaeologists are staJun 11, 2024
The story of the eruption of Mount Vesuvius is no longer one of annihilation; it also includes the people who managed to escape the city.
For the First French Town Liberated on D-Day, History Is PersonalJun 7, 2024
Some aging residents of Ste.-Mère-Église in Normandy can still recall the American paratroopers who dropped into their backyard. It’s been a love affair ever since.
Why Leopold and Loeb Committed Cold-Blooded Murder in the 'Crime of the Century'May 21, 2024
A century ago, two Chicago teenagers killed an acquaintance named Bobby Franks for the thrill of it. The case captivated the nation and continues to fascinate the public today
A ‘plague’ comes before the fall: lessons from Roman historyMay 16, 2024
Just 50 years after the Roman Empire grew to its largest size, a mysterious and crippling pandemic known as the Antonine plague brought it to its knees. Research on climate change and in other areas is shedding light into how the plague, which preceded centuries of decline, emerged to pack such a devastating punch.
The Country Bumpkins who gave us Parisian Café CultureMay 5, 2024
The Country Bumpkins who gave us Parisian Café Culture - Editor's Picks - Messy Nessy Chic
You Can Still Die From World War I Dangers in France's Red ZonesApr 28, 2024
The Great War never ended in some old battlegrounds.
Searching for the Cause of a Catastrophic Plane Crash | The New YorkerMar 29, 2024
On a calm, clear day, USAir Flight 427 suddenly nosedived and smashed into the earth, killing everyone on board. A team of investigators quickly assembled to sift through the rubble.
The Ruthless Rise and Fall of Paramount Pictures During Hollywood’s GoldenMar 6, 2024
The venerable movie studio, now up for grabs, once defined the industry's zeal for consolidation, pioneering vertical integration and serving as the model for each of its major rivals.
Alderney Is a Small Island With a Dark HistoryMar 2, 2024
It’s 10 miles from France, but Alderney feels like a windswept remote haven. During World War II, Nazi atrocities happened on its soil.
Manhattan or Pulau Rhun? In 1667, Nutmeg Made the Choice a No-Brainer.Feb 29, 2024
Growing a spice once worth its weight in gold, a tiny isle in Indonesia was so coveted that the Dutch traded Manhattan for it. Some 350 years later, life on the two islands couldn’t be more different.
In Ancient Bones, a Reminder that Northern Ireland’s Ghosts Are Never FarFeb 29, 2024
When skeletal remains surfaced in Northern Ireland last year, the discovery was shaded with a discomforting question: Was this an archaeological site, or a crime scene?
In Defense of the RatFeb 3, 2024
Rats are less pestilent and more lovable than we think. Can we learn to live with them?
Has Amelia Earhart’s plane really been found?Feb 1, 2024
Claims that a recent undersea discovery may be Amelia Earhart’s long-lost aeroplane raise questions. Experts weigh in on the mystery that continues to captivate us.
Ada Blackjack Kept Going After Everyone Else on Wrangel Island DiedJan 19, 2024
Ada Blackjack was an Iñupiaq woman who married at 16 and had three children before her husband abandoned her. Only one child survived infancy, and he suffered from tuberculosis. Blackjack walked 40 miles to Nome, Alaska, carrying her son Bennett in order to place him in an orphanage, because she couldn't afford his medical treatment. She desperately wanted him back, and that's why she signed on to the doomed 1921 expedition that Vilhjalmur Stefansson organized to explore the possibility of a colon...
What Happened to the US Machine Tool Industry?Jan 19, 2024
Machine tools – machines that cut or form metal – are the heart of industrial civilization.
The IBM mainframe: How it runs and why it survivesJan 13, 2024
In this deep-dive explainer, we look at a big-business mainstay.
How unearthing diseases' ancient origins could help produce modern curesOct 16, 2023
The DNA of bacteria and viruses that infected humans thousands of years ago is still trapped in their skeletal remains. Scientists are finding out what we can learn from them.
The Race to Catch the Last Nazis | GQSep 29, 2023
A lifetime after the Holocaust, a few of its perpetrators remain at large. German detectives are making a final push to hunt them down.
Lost Languages Discovered in One of the World’s Oldest Continuously Run LibSep 24, 2023
The centuries-old texts were erased, and then written over, by monks at Saint Catherine’s Monastery in Egypt
RoundtableAug 27, 2023
The Pandemic Your Grandparents Forgot - NautilusAug 11, 2023
Sixty years later, will anybody have heard of COVID-19?
MiscellaniesAug 6, 2023
The Elusive, Maddening Mystery of the Bell Witch - Atlas ObscuraAug 5, 2023
A classic ghost story has something to say about America—200 years ago, 100 years ago, and today.
With the help of new archaeological approaches, our picture of young livesAug 1, 2023
With the help of new archaeological approaches, our picture of young lives in the Palaeolithic is now marvellously vivid
Demon Core: The Strange Death of Louis Slotin - The New Yorker | The New YoMay 23, 2023
There was a flash of blue and a surge of radioactive heat. Nine days later, Louis Slotin was dead.
One Of Rome’s Most Devastating Military Defeats Was Masterminded From WithiMay 12, 2023
Having served in the Roman army under a risky conscription scheme, Arminius's ambush in Teutoburg Forest inflicted massive damage to the Empire.
Why the concept of invisibility so captivates the imagination | Psyche IdeasMay 7, 2023
From ancient fables to the latest science theory, invisibility represents some of humankind’s deepest fears and desires
The Titanic of the Pacific - The Atavist MagazineMay 3, 2023
A tale of disaster, survival, and ghosts.
The stories of oral societies aren’t myths, they’re records | Aeon EssaysApr 16, 2023
The stories of oral societies, passed from generation to generation, are more than they seem. They are scientific records
How America's Beloved Meyer Lemon Caused a Mid-Century Citrus PanicApr 13, 2023
The fragrant fruit hid a dark secret.
The Astounding Origins of Chaco Canyon TimberApr 13, 2023
Chaco Canyon Great Houses have timber of more than 200,000 massive log beams. Where Ancestral Puebloans got the wood is no longer a mystery.
Retail and Shopping: Vintage Photos Show How People Shopped in the 1960s anApr 8, 2023
The 1960s and 1970s were a time of significant change in the world, and the shopping and retail culture of these decades reflected this social transformation.
50 Ways the World is Getting BetterApr 8, 2023
The world is getting better (even if you can't see it on a daily basis).
What Really Happened After the Mutiny on the Bounty?Apr 2, 2023
On November 28, 1787, His Majesty’s Armed Vessel Bounty set sail from England with 46 men aboard, bound for the island of Tahiti in the South Pacific. Commanded by Lieutenant William Bligh, her mission was to collect and deliver breadfruit plants to the West Indies, where they would serve as cheap food for slaves on British plantations. After a long [...]
Crime of the CenturiesMar 19, 2023
Tomb raiders, crooked art dealers, and museum curators fed billionaire Michael Steinhardt’s addiction to antiquities. Many also happened to be stolen.
Beyond Borders: Adolfo Kaminsky’s ForgeriesMar 19, 2023
Kaminsky bought chemistry books from bouquinistes along the Seine and taught himself to make explosives. But when a man...
The brief but shining life of Paul Laurence Dunbar, a poet who gave dignity to the Black experienceMar 17, 2023
Paul Laurence Dunbar became the first Black writer to earn international acclaim through his poetry, essays and musical lyrics.
Meet the Man Collecting Fading Place NamesMar 13, 2023
What do we lose when we forget about locations like "Troll's Cave" and "Window Claw"?
Why don't humans have fur?Mar 11, 2023
Most mammals, including our closest living relatives, have fur. So why did we lose ours?
The Military Adventures of Alexander the Great: An Animated Documentary ShoMar 5, 2023
To learn about history is to learn about war, or so it can feel when you go far back enough in time. And in any era of antiquity, few could have matched Alexander the Great's mastery of that art.
The Tunguska Mystery--100 Years LaterMar 5, 2023
Finding a piece of the elusive cosmic body that devastated a Siberian forest a century ago could help save Earth in the centuries to come
The Grammarphobia Blog: Why the ‘w’ is called a ‘double u’Feb 25, 2023
The 23rd letter of the English alphabet is called a “double u” because it was originally written that way in Old English.
The blast furnace - 800 years of technology improvementFeb 25, 2023
The modern world uses shocking amounts of steel.
Why are flood myths so common in stories from ancient cultures around the world?Feb 10, 2023
Could the prevalence of flood myths around the world tell us something about early human migration or even the way our brains work?
Faxes From the Far Side • Damn InterestingFeb 5, 2023
The 1950s-era Soviet mission to first photograph the far side of the moon.
The National Interest: BlogFeb 5, 2023
Who Sets the Prices?Jan 26, 2023
The legal decision that fostered the idea of the manufacturer’s suggested retail price, and why it still sticks around even though that decision was overturned.
The Alchemy of Air: A Jewish Genius, a Doomed Tycoon, and the Scientific Discovery That Fed the World but Fueled the Rise of Hitler: Hager, Thomas: 9780307351791: Amazon.com: BooksJan 22, 2023
The Alchemy of Air: A Jewish Genius, a Doomed Tycoon, and the Scientific Discovery That Fed the World but Fueled the Rise of Hitler [Hager, Thomas] on Amazon.com. *FREE* shipping on qualifying offers. The Alchemy of Air: A Jewish Genius, a Doomed Tycoon, and the Scientific Discovery That Fed the World but Fueled the Rise of Hitler
The True Story of Lawrence of ArabiaDec 16, 2022
His daring raids in World War I made him a legend. But in the Middle East today, the desert warrior’s legacy is written in sand
Pakistan's lost city of 40,000 peopleNov 22, 2022
In the dusty plains of present-day Sindh in southern Pakistan lie the remains of one of the world's most impressive ancient cities that most people have never heard of.
Inside the Great Pyramid | Giza ProjectOct 29, 2022
The Great Pyramid, or the Pyramid of Khufu, has fascinated scholars and tourists alike for centuries. Located on the Giza Plateau near Cairo, Egypt, it is the largest of the three pyramids that form the Giza Pyramid Complex. Built during the Fourth Dynasty of the Old Kingdom of Egypt, around 2580–2560 BC, it is one of the oldest and most intact structures from ancient Egypt, and it is the only one of the Seven Wonders of the Ancient World still in existence. Credits: This tour was created on-site by the following people: Doctor Wael Fathy, Ministry of Tourism and Antiquities Inspector Ezzat Salama, Ministry of Tourism and Antiquities Luke Hollis, Mused Script is by Luke Hollis. Victoria Almansa-Villatoro provided the …
An Undiscovered Coronavirus? The Mystery of the ‘Russian Flu’ - The New YorOct 21, 2022
Scientists are grasping for any example that could help anticipate the future of Covid, even a mysterious respiratory pandemic that spread in the late 19th century.
The Richest Athlete of All Time Did Nothing With His Wealth and Vanished Into HistoryOct 16, 2022
Over the course of his chariot racing career, Gaius Appuleius Diocles won almost 60,000 lbs of gold. What did he do with it? Who knows.
No, the 'Epic of Gilgamesh' Is Not the Oldest Surviving Work of Literature - Tales of Times ForgottenSep 29, 2022
If you think you know one thing about the ancient Mesopotamian Epic of Gilgamesh, then, chances are, you probably think that the epic is the oldest surviving work of literature in the whole world. This claim pervades basically all non-academic discussion of the epic. I was taught it in my history and literature classes all … Continue reading "No, the ‘Epic of Gilgamesh’ Is Not the Oldest Surviving Work of Literature"
The Real Warriors Behind 'The Woman King'Sep 17, 2022
A new film stars Viola Davis as the leader of the Agojie, the all-woman army of the African kingdom of Dahomey
10 of the most legendary rulers from ancient historySep 14, 2022
Some early rulers were so iconic that their names and works passed into legend and influenced others for centuries.
The Missing Chinese Machine RevolutionSep 5, 2022
Before the industrial revolution, there had been a significant increase in machinery use in Europe. Why not in China?
How Ships and Forts Created Western DominanceSep 5, 2022
How could tiny nations such as Portugal and the Netherlands challenge vast empires like China and India in the age of sail?
What Happened to Anne Boleyn’s Heart?Sep 5, 2022
If YOU ASKED PEOPLE WHAT body part you would associate with Anne Boleyn, most would probably say her head. Logical, of course. It was the part famously detached from the rest of her body on May 19,…
Was King Arthur a Real Person?Sep 5, 2022
The story of Camelot and the Knights of the Round Table has captivated us for a thousand years. But is there any truth behind the tales?
Why Was Western Printing Superior to Asian Printing?Sep 4, 2022
Movable type was not invented by Gutenberg but in China and later advanced in Korea, so why didn't Asia have a printing revolution?
Five Lessons from HistoryAug 27, 2022
The most important lessons from history are the takeaways that are so broad they can apply to other fields, other…
The messages that survived civilisation's collapse - BBC FutureAug 22, 2022
The Sumerians, Maya and other ancient cultures created texts that have lasted hundreds and even thousands of years. Here's what they can teach us about crafting an immortal message.
The mystery of the world's oldest toysAug 17, 2022
The world's oldest toys date back thousands of years – but determining whether ancient children played with them, and how, remains a mystery archaeologists are piecing together.
The Tip-Off From a Nazi That Saved My GrandparentsAug 14, 2022
It has often been described as a “miracle” that most of Denmark’s Jews escaped the Holocaust. Now it seems that the country’s Nazi rulers deliberately sabotaged their own operation.
The 1600s Were a Watershed for Swear WordsAug 13, 2022
When Coal First Arrived, Americans Said 'No Thanks'Aug 9, 2022
Back in the 19th century, coal was the nation's newfangled fuel source—and it faced the same resistance as wind and solar today
From whistling arrows and trumpeting elephants to battle cries and eerie horns, ancient soldiers used sound to frighten and confuse their enemiesAug 5, 2022
Since antiquity people have harnessed sound as a weapon, and the practice continues – in new high-tech ways – today.
Have Scholars Finally Deciphered Linear Elamite, a Mysterious Ancient ScripAug 2, 2022
Linear Elamite, a writing system used in what is now Iran, may reveal the secrets of a little-known kingdom bordering Sumer
The Night That Grasshoppers Killed Texas League BaseballJul 30, 2022
Fifty years ago, a minor league game in Midland was postponed for the rarest of reasons—a swarm of grasshoppers biblical in its proportions.
A collection of bad album covers that are both hilarious and awkward, 1960s-1980s - Rare Historical PhotosJul 30, 2022
In this collection, you can see some of the worst album covers of all time. Everything from rock, metal bands, country, gospel comedy, jazz, etc.
Overexposed: A History of FotomatJul 28, 2022
The tiny photo processing kiosks could be found everywhere in the 1970s and 1980s. And that was the problem.
When Did Shaking Hands Become a Standard Way of Greeting Someone?Jul 24, 2022
There’s ancient evidence for the custom of shaking hands, but did it mean the same thing then as it does today?
A Traveling Jewish Deli Exhibit Tells an American Tale in Pickles and PastrJul 23, 2022
“I’ll Have What She’s Having,” a traveling exhibit on the Jewish delicatessen, looks back at a vibrant institution fueled by immigration and irresistible food.
Winamp’s woes: How the greatest MP3 player undid itselfJul 18, 2022
15 years on, Winamp “still lives”—but mismanagement blunted its llama-whipping.
Everything We Know About Platforms We Learned from Medieval FranceJul 18, 2022
Raise a glass of bubbly to the count of Champagne.
The American Amusement Park's Wild RideJul 16, 2022
From the trolley parks of the early 20th century to the theme parks of today, these spaces of shared pleasure have been both a reflection of urban life, and an escape from it.
The Sanaa Palimpsest: A truly fascinating Quranic manuscriptJul 14, 2022
The Sanaa Palimpsest has a number of unique characteristics, not least as an enduring artefact of Quranic scribal methods and of Islamic heritage within Yemen. Yet deciphering the text poses theological quandaries surrounding Quranic tradition.
A Glimpse Inside a Florentine Silk-Weaving WorkshopJul 11, 2022
The Antico Setificio Fiorentino, which relies on looms from the 18th and 19th centuries, has been producing precious textiles since 1786.
Hacker NewsJul 11, 2022
From a salt substitute in China’s impoverished southwest to a fixture on tables nationwide, chili peppers have come a long way over the past 400 years.
Voynich ManuscriptJul 10, 2022
How Dardistan became one of the most multilingual places on Earth | Aeon EssaysJul 7, 2022
At the crossroads of south and central Asia lies one of the world’s most multilingual places, with songs and poetry to match
The History of the Singular 'They'Jul 5, 2022
The singular form of 'they' has been endorsed by writers like Jane Austen and William Shakespeare.
Hacker NewsJul 5, 2022
1980 Sears Spring Summer Catalog, Page 729 - Catalogs & WishbooksJul 4, 2022
1980 Sears Spring Summer Catalog, Page 729
Lost Languages Discovered in One of the World's Oldest Continuously Run LibrariesJul 3, 2022
The centuries-old texts were erased, and then written over, by monks at Saint Catherine’s Monastery in Egypt
A Mystery That Took 13,200 Years to CrackJun 30, 2022
Hidden in the tusk of a 34-year-old mastodon was a record of time and space that helped explain his violent death.
Thirty-Six StratagemsJun 28, 2022
The Thirty-Six Stratagems is a Chinese essay used to illustrate a series of stratagems used in politics, war, and civil interaction.
The ghostly radio station that no one claims to runJun 22, 2022
“MDZhB” has been broadcasting since 1982. No one knows why.
Hong Kong’s Floating Restaurant Sinks at Sea, Laden With Memories (Published 2022)Jun 21, 2022
Jumbo Floating Restaurant, which closed in 2020, capsized in the South China Sea after being towed from the city. The sinking triggered nostalgia for a happier period of Hong Kong history.
A History of Rock Music in 500 SongsJun 21, 2022
How the Ballpoint Pen Killed CursiveJun 19, 2022
Thicker ink meant it didn't smudge as easily as its predecessor, the fountain pen—but it also made writing by hand more physically demanding.
Visiting Vladimir Putin’s Lost RussiaJun 18, 2022
An ex-Soviet state’s national myths—as well as the forces of nationalism, economics, culture, and religion—all pull it away from Moscow. Can Russia really compete?
How Cup Noodles Became One of the Biggest Transpacific Business Success Stories of All TimeJun 13, 2022
There was a time when eating out of Cup Noodle’s iconic packaging exuded cosmopolitanism.
How a Saxophonist Tricked the KGB by Encrypting Secrets in MusicJun 11, 2022
Using a custom encryption scheme within music notation, Merryl Goldberg and three other US musicians slipped information to Soviet performers and activists known as the Phantom Orchestra.
Why is English so weirdly different from other languages? | Aeon EssaysJun 8, 2022
No, English isn’t uniquely vibrant or mighty or adaptable. But it really is weirder than pretty much every other language
List of mythological objectsJun 3, 2022
Mythological objects encompass a variety of items found in mythology, legend, folklore, tall tale, fable, religion, spirituality, superstition, paranormal, and pseudoscience from across the world. This list is organized according to the category of object.
So You Want to Be a Bootlegger | The Saturday Evening PostMay 30, 2022
In a 1922 Post article, an ex-bootlegger offers advice for how to break into the business.
Here’s How to Make Olive Oil Like an Ancient EgyptianMay 18, 2022
An archaeologist pieces together a recipe for olive oil crafted in ancient Egypt. It’s easy for you to try at home.
‘People took so many drugs, they forgot they played on it’ – stars on Exile on Main St, the Rolling Stones’ sprawling masterpieceMay 12, 2022
Recorded during several hedonistic months in a fabulous Cote d’Azur villa, Exile on Main St is seen as the Stones’ epic, creative peak. As the classic album turns 50, stars tell us how it got their rocks off
The Untold Story of the White House’s Weirdly Hip Record CollectionMay 10, 2022
Jimmy Carter’s grandson, John Chuldenko, is unlocking White House mysteries. The record collection is an archive of the nation's music taste back in the 70's.
Handy Mnemonics: The Five-Fingered Memory MachineApr 28, 2022
Before humans stored memories as zeroes and ones, we turned to digital devices of another kind — preserving knowledge on the surface of fingers and palms. Kensy Cooperrider leads us through a millennium of “hand mnemonics” and the variety of techniques practised by Buddhist monks, Latin linguists, and Renaissance musicians for remembering what might otherwise elude the mind.
The world's oldest dessert?Apr 10, 2022
Although chickpeas and beans don't usually belong in a pudding, they are core ingredients in one of the oldest – and, some say, one of the most delicious – desserts in the world.
The Cult of Adam ToozeMar 31, 2022
How the impeccably credentialed, improbably charming economic historian supplanted the dirtbag left.
The mountain stronghold that has kept Georgia’s medieval art safe for centuMar 18, 2022
The Svaneti Museum of History and Ethnography in Georgia is home to one of the world’s great collections of medieval Christian art, writes William Dunbar
How national identities are inventedMar 17, 2022
A strong national identity is essential for any country's survival – and the easiest route to acquiring one is to unite behind a common enemy.
How The Inca Used Knots To Tell StoriesMar 14, 2022
The Inca are most often remembered not for what they had but for what they didn’t have: the wheel, iron, a written language. This third lack has given rise to a paradox, the Inca paradox. Could it …
Wonders and warnings from the ancient world | Daisy Dunn | The Critic MagazMar 14, 2022
This article is taken from the March 2022 issue of The Critic. To get the full magazine why not subscribe? Right now we’re offering five issue for just £10. If you’ve ever wondered how letters were…
Feeding the Bear: A Closer Look at Russian Army Logistics and the Fait Accompli - War on the RocksMar 10, 2022
Editor's note: Don't miss our comprehensive guide to Russia's war against Ukraine. Russia’s military buildup along the border with Ukraine has
The Hidden Story of the North’s Victory in the Civil WarMar 8, 2022
Roger Lowenstein’s “Ways and Means” offers a fresh perspective on the Civil War by explaining the importance of financing.
A Quest to Return the Banjo to Its African RootsFeb 20, 2022
The Black Banjo Reclamation Project aims to put banjos into the hands of everyday people.
Heart of MoldFeb 9, 2022
Why we’re obsessed with heart-shaped foods around Valentine’s Day—especially the suddenly ubiquitous heart-shaped pizza.
A very short introduction to the undeciphered Aegean writing systemsFeb 1, 2022
Every so often a news article will make the rounds of the internet – or, for that matter, a paper will be published in an academic journal – presenting a new ‘decipherment’ …
Finding the world’s deepest shipwreckJan 25, 2022
In 1944, the USS Johnston sank after a battle against the world's largest battleship. More than 75 years later, her wreck was finally located, 6km (3.7 miles) below the waves.
Divine Comedy - WikipediaJan 23, 2022
The Divine Comedy is an Italian narrative poem by Dante Alighieri, begun c. 1308 and completed around 1321, shortly before the author's death. It is widely considered the pre-eminent work in Italian literature and one of the greatest works of Western literature. The poem's imaginative vision of the afterlife is representative of the medieval worldview as it existed in the Western Church by the 14th century. It helped establish the Tuscan language, in which it is written, as the standardized Italian language. It is divided into three parts: Inferno, Purgatorio, and Paradiso.
Dun, Dun Duuun! Where did pop culture’s most dramatic sound come from?Jan 21, 2022
Did the iconic three-note sequence come from Stravinsky, the Muppets or somewhere else? Our writer set out to – dun, dun duuuun! – reveal the mystery
What Lies BeneathJan 21, 2022
In 1708, the Spanish galleon San José sank in a deadly battle against English warships, taking with it billions in treasure. Centuries passed until a secretive archaeologist found the wreck, but now nations are again warring over who may claim the gold and glory.
Book Summary: The Lessons of History by Will and Ariel DurantJan 16, 2022
This is a book summary of The Lessons of History by Will and Ariel Durant. Read this The Lessons of History summary to review ideas and lessons.
The forgotten medieval habit of 'two sleeps'Jan 12, 2022
For millennia, people slept in two shifts – once in the evening, and once in the morning. But why? And how did the habit disappear?
Still She Rises — THE BITTER SOUTHERNERJan 7, 2022
Biscuit-whisperer Erika Council honors the women who taught her to bake a perfect biscuit.
Ninety-Nine Fascinating Finds Revealed in 2021Jan 6, 2022
The year's most exciting discoveries include a Viking "piggy bank," a lost Native American settlement and a secret passageway hidden behind a bookshelf
Why Arabs Lose Wars :: Middle East QuarterlyDec 27, 2021
Arabic-speaking armies have been generally ineffective in the modern era. Egyptian regular forces did poorly against Yemeni irregulars in the 1960s.1 Syrians could only impose their will in Lebanon during the mid-1970s by the use of overwhelming
The Story of Carolina Gold, the Best Rice You've Never TastedDec 12, 2021
Due in large part to Glenn Roberts of Anson Mills, a Georgia optometrist, and several members of what's known as the Carolina Gold Rice Foundation (yes, that exists), Carolina Gold rice is back, allowing a new generation of home cooks to experience what real Lowcountry cooking was meant to taste like.
The Invention of Chinese | History TodayDec 12, 2021
The Story of Catherine the GreatDec 11, 2021
Hulu’s “The Great” offers an irreverent, ahistorical take on the Russian empress’ life. This is the real history behind the period comedy.
How an American in Paris won the rarest of French honorsNov 29, 2021
Josephine Baker next week will become the first Black woman and first American to be honored with enshrinement in Paris' Pantheon.
The Tomb Raiders of the Upper East SideNov 23, 2021
Inside the Manhattan DA’s Antiquities Trafficking Unit
How Fish and Chips Migrated to Great BritainNov 22, 2021
The fried fish was introduced by Jews fleeing religious persecution.
"A Great Day In Harlem": Remembering the iconic 1958 photo of legendary musiciansNov 4, 2021
58 musicians showed up for a picture that captured the giants of jazz
How 12th-century Genoese merchants invented the idea of risk | Psyche IdeasNov 3, 2021
From the docks of 12th-century Genoa to the gambling tables of today, risk is a story that we tell ourselves about the future
The Daring Diplomat Who Proved One Person Can Thwart an EmpireOct 15, 2021
A whistleblower puts his life on the line to defy Soviet aggression. Over sixty years later, this forgotten story of subterfuge, smears and suspicious death has never felt more timely.
When Nazis tried to trace Aryan race myth in TibetSep 19, 2021
Heinrich Himmler sent a team of five Germans to Tibet in 1938 to pursue the Aryan race myth.
How Singer Won the Sewing Machine WarSep 14, 2021
The Singer Sewing Machine changed the way America manufactured textiles, but the invention itself was less important than the company’s innovative business
The Kingpin of ShanghaiAug 26, 2021
From the depths of poverty, Du Yuesheng rose through Shanghai’s underworld to become one of the most influential, and overlooked, figures in modern China.
Why Spanish colonial officials feared the power of clothing | Psyche IdeasAug 19, 2021
Colonial society depends on a clear distinction between the rulers and the ruled. Clothing could create problems
What Did Ancient Languages Sound Like?Jul 11, 2021
NICHOLAS SWIFT Can we really hear the ancients speak?
Minik and the MeteorJul 3, 2021
Behind the American Museum of Natural History’s most venerable artifact is the shameful tale of a relentless explorer and a young boy’s torturous journey from Greenland to New York.
Africa’s ancient scripts counter European ideas of literacy | Aeon EssaysJun 21, 2021
European ideas of African illiteracy are persistent, prejudiced and, as the story of Libyc script shows, entirely wrong
An Old Effort To Stop The Smallpox Virus Has Lessons For COVID-19 Today : SJun 4, 2021
In 1721, London was in the grips of a deadly smallpox epidemic. One woman learned how to stop it, but her solution sowed political division.
Meet the Appalachian Apple Hunter Who Rescued 1,000 'Lost' VarietiesJun 4, 2021
Tom Brown's retirement hobby is a godsend for chefs, conservationists, and cider.
Ho Chi Bear and the RavensJun 4, 2021
Dubbed the Ravens, misfit American pilots in Vietnam learned they could fly, fight, and drink as they pleased in a CIA-sponsored secret war. Just one catch: They answered to General Vang Pao.
The Most Honored Photograph | PetaPixelMay 12, 2021
Doesn’t look like much, does it? But, depending upon your definition, this photograph, a team effort by 9 men, is the most honored picture in U. S.
'He knew something': The Bay Area flight of Rangers that vanishedMay 12, 2021
The mission, still a secret to this day, was so dangerous many men bid emotional goodbyes...
‘I’d Never Been Involved in Anything as Secret as This’May 7, 2021
The plan to kill Osama bin Laden—from the spycraft to the assault to its bizarre political backdrop—as told by the people in the room.
The girl in the Kent State photo and the lifelong burden of being a national symbolApr 24, 2021
In 1970, an image of a dead protester at Kent State became iconic. But what happened to the 14-year-old kneeling next to him?
The Real Book - 99% InvisibleApr 12, 2021
Since the mid-1970s, almost every jazz musician has owned a copy of the same book. It has a peach-colored cover, a chunky, 1970s-style logo, and a black plastic binding. It’s delightfully homemade-looking—like it was printed by a bunch of teenagers at a Kinkos. And inside is the sheet music for hundreds of common jazz tunes—also
Did the Black Death Rampage Across the World a Century Earlier Than Previously Thought?Mar 27, 2021
Scholar Monica Green combined the science of genetics with the study of old texts to reach a new hypothesis about the plague
The 25 Greatest Art Heists of All TimeMar 3, 2021
What are the greatest art heists of all time? See a list of the 25 most memorable thefts from museums.
The Once-Classified Tale of Juanita Moody: The Woman Who Helped Avert a Nuclear WarFeb 28, 2021
America’s bold response to the Soviet Union depended on an unknown spy agency operative whose story can at last be told
Letter from Chihuahua - Cliff Dwellers of the Sierra Madre - Archaeology Magazine - March/April 2021Feb 13, 2021
A recurring design motif found in northern Mexico’s ancient mountain villages reflects complex cultural ties between distant peoples
The Original KarenFeb 9, 2021
After Kenya declared independence from British rule in 1963, there came a flood of renamings. Schools, suburbs, and roads were rechristened in ways that spoke to a new idea of what it meant to be…
A Massacre in a Forest Becomes a Test of Poland’s Pushback on Wartime BlameFeb 9, 2021
Two researchers are on trial for writing that a Polish mayor was complicit in a massacre. Critics say the government is trying to emphasize Polish suffering in World War II and downplay complicity in Nazi crimes.
The 432-year-old manual on social distancingJan 14, 2021
In this spookily prescient booklet, people are advised to keep six feet apart, avoid shaking hands and only send one person per household out to do the shopping.
Raiders of the lost steelDec 29, 2020
The skills behind the legendary sharpness of wootz steel were once forgotten, but Andy Extance talks to the researchers unsheathing its secrets
Three Big Things: The Most Important Forces Shaping the World · CollaboratiDec 23, 2019
An irony of studying history is that we often know exactly how a story ends, but have no idea where…
Wind Power: How the 19th-Century’s Greatest Shipbuilder Opened the PacificSep 21, 2019
[caption id="attachment_80535" align="aligncenter" width="576"] The Tahiti, seen here sailing on San Francisco Bay, was a 124-foot brigantine built by Tur...
The Silk Road: the route for technological exchange that shaped the modernSep 2, 2019
The latest banks and financial services company and industry news with expert analysis from the BBVA, Banco Bilbao Vizcaya Argentaria.
The Death of Alexander the Great: One of History’s Great Unsolved MysteriesAug 29, 2019
Alexander the Great’s death is an unsolved mystery. Was he a victim of natural causes, felled by some kind of fever, or did his marshals assassinate him, angered by his tyrannical ways? An autopsy…
The British Once Built a 1,100-Mile Hedge Through the Middle of IndiaAug 15, 2019
This quixotic colonial barrier was meant to enforce taxes.
Finding Amelia Earhart’s Plane Seemed Impossible. Then Came a Startling CluAug 12, 2019
Robert Ballard has found the Titanic and other famous shipwrecks. This month his crew started trying to solve one of the 20th century’s greatest mysteries.
The secret seat of the Knights TemplarJul 31, 2019
Under the cobblestoned streets of Paris’s chicest district lie the remnants of the mysterious Knights Templar’s mightiest stronghold.
On Hitler’s Last Desperate Plan to Destroy ParisJul 30, 2019
On August 23rd, the day after Dietrich von Choltitz dispatched Rolf Nordling to contact the Allies, Hitler sent a message to Field Marshal Walther Model and von Choltitz demanding that Paris be hel…
Where the Bodies Are BuriedJul 18, 2019
In 1910, East Texas saw one of America’s deadliest post-Reconstruction racial purges. One survivor’s descendants have waged an uphill battle for generations to unearth that violent past.
During the Cold War, the CIA Secretly Plucked a Soviet Submarine From the Ocean Floor Using a Giant ClawMay 12, 2019
The International Spy Museum details the audacious plan that involved a reclusive billionaire, a 618-foot-long ship, and a great deal of stealth
How Turkish coffee destroyed an empireMar 16, 2019
Kahve was a favourite drink of the Ottoman Empire’s ruling class. Little did they know it would one day hasten the empire’s demise
The Nazi Interrogator Who Revealed the Value of KindnessFeb 10, 2019
Thanks in part to the work of Hanns Scharff and a slew of studies on interrogation techniques, we know it's best to be genuinely friendly no matter who you're trying to get information out of.
The Plot to Kill George WashingtonJan 26, 2019
In The First Conspiracy, thriller writer Brad Meltzer uncovers a real-life story too good to turn into fiction
Was History Fair to the Triangle Shirtwaist Factory Owners? | At the SmithsDec 21, 2018
Charged with manslaughter, the owners were acquitted in December 1911. A Smithsonian curator reexamines the labor and business practices of the era
Tarrare: The Medical Marvel Who Could Eat Anything — And DidDec 16, 2018
"The dogs and cats fled in terror at his aspect, as if they had anticipated the kind of fate he was preparing for them."
Ansel Adams’ pictures of Los Angeles recall an era of war factories and 10-cent hot dogsDec 3, 2018
We’ve all seen Ansel Adams’ luscious black-and-white images of Yosemite. Lesser known are his pictures of life in World War II-era Los…
Crossing the Sahara in the Fourteenth Century | François-Xavier FauvelleNov 16, 2018
How to make the trip from Sijilmasa to Oualata, circa 1352.
The Lessons Of Dien Bien Phu | Hoover InstitutionNov 7, 2018
The most consequential military engagement in Southeast Asia in the 20th century is the 1954 Battle of Dien Bien Phu. It was fought ostensibly between the French and the communist-led Vietmin at Dien Bien Phu, an obscure valley bordering China, in the remote northwestern part of what was then French Indochina. The battle ended with a humiliating defeat for the French, which brought down the French government, ended French colonial rule in Asia, ushered in America’s epic military involvement in the region for decades to come, and fundamentally changed the global geostrategic landscape.
Why big companies squander brilliant ideasOct 8, 2018
J F C Fuller did not invent the tank. That distinction should probably fall to E L de Mole, an Australian who approached the British war office in 1912 with a
The Man Who Walked BackwardAug 28, 2018
When the Great Depression put Plennie Wingo’s bustling Abilene cafe out of business, he tried to find fame, fortune, and a sense of meaning the only way he knew how: by embarking on an audacious trip around the world on foot. In reverse.
When Local Roller Rinks Had Their Own Collectible StickersAug 24, 2018
Distinctive designs from the "Golden Age" of roller-skating.
Into the Cave of Chile’s WitchesAug 15, 2018
Did members of a powerful society of warlocks actually murder their enemies and kidnap children?
Inside the 20-year decline of Toys R UsJul 1, 2018
Cost cuts, stressed employees, intercompany rivalries, dirty floors, dusty rafters, glitchy IT, fudged metrics: The people who ran the failed toy retailer's stores know what went wrong.
The Counterfeit Queen of Soul | Arts & Culture | SmithsonianJul 1, 2018
A strange and bittersweet ballad of kidnapping, stolen identity and unlikely stardom
Optical Scanning Technology Lets Researchers Recover Lost Indigenous Languages from Old Wax Cylinder RecordingsJun 13, 2018
He did not, visionary though he was, conceive of one extraordinary use to which wax cylinders might be put—the recovery or reconstruction of extinct and endangered indigenous languages and cultures in California.
A Brief History of America's Appetite for Macaroni and CheeseJun 3, 2018
Popularized by Thomas Jefferson, this versatile dish fulfills our nation's quest for the 'cheapest protein possible'
The Two-Napkin ProtocolJun 3, 2018
In 1989, Kirk Lougheed of Cisco and Yakov Rekhter of IBM were having lunch in a meeting hall cafeteria at an Internet Engineering Task Force (IETF) conference. They wrote a new routing protocol that became RFC (Request for Comment) 1105, the Border Gateway Protocol (BGP), known to many as the “Two Napkin Protocol” — in reference to the napkins they used to capture their thoughts.
A lost vision of West Virginia – Explore Parts UnknownApr 30, 2018
Famous photos of Appalachia in the Depression tell only part of the story.
A Digital Archive of Heavy Metal, the Influential “Adult Fantasy Magazine”Mar 8, 2018
In making a time capsule of the late 20th century, one would be remiss if they did not include at least an issue or two of Heavy Metal magazine. Yes, it specialized in unapologetically turning women in metal bras into sex objects.
The Conqueror Who Longed for Melons - Gastro ObscuraFeb 12, 2018
Many Indian dishes can be traced back, indirectly, to a 16th-century, food-obsessed ruler named Babur.
Gavin Francis · The Untreatable: The Spanish FluJan 21, 2018
The pandemic had some influence on the lives of everyone alive today. Donald Trump’s grandfather Friedrich died from...
Baseball, BBQ, and Dead Ponies—A History of Fat Men’s Clubs in TexasNov 24, 2017
A peek inside the revelry and rivalry of Texas's fat men's clubs.
Brooklyn Academy of Music Puts Online 70,000 Objects Documenting the HistorOct 21, 2017
Yesterday the sad news broke that The Village Voice will discontinue its print edition.
Did Frank Sinatra Really Perform at My Grandma's High School?Sep 24, 2017
Because sometimes you have to fact-check your grandmother
The Puzzling History of China’s Most Controversial FlavoringOct 24, 2014
Monosodium glutamate, better known as MSG, is a Japanese import that became as Chinese as Kung Pao chicken. But its spread was more historical accident than foreordained.
hobbies
Why do people collect stuff?Aug 28, 2025
From vinyl albums to items in video games, humans love to collect. But what we're really craving goes beyond stuff itself, research finds.
The Queen's Doll's HouseJul 3, 2024
On the freaky model world of the Dollomites; plus—more lucid dreaming and a roundup of recent favorites.
Write more "useless" software | nicole@webOct 20, 2023
Inside the heartwarming world of Hot Wheels collectingNov 7, 2022
What seems like a simple hobby can take you across the world.
Do You Even Need a Hobby?Sep 20, 2022
An essential reading list for breaking down the merits of introducing structured leisure into your life. Plus, how to find a pastime if you’re lacking inspiration.
honesty
This Is How You Can Spot a Fake SmileJun 3, 2025
Simply put, the Duchenne smile is genuine. But fake smiles are all around, and this is how you can tell the difference.
ChatGPT Doesn’t Have to Ruin CollegeNov 10, 2024
The power of a robust honor code—and abundant institutional resources
Why Japan is so successful at returning lost propertyJul 18, 2022
Cultural norms, complex religious influences and friendly police officers make losing something no big deal. But does this tell the whole story about Japan’s relationship with honesty?
How to Negotiate with a LiarJul 18, 2022
People, including negotiators, lie every day, so when you’re trying to make a deal, it’s important to defend against deception. The best strategy, says the author, is to focus not on detecting lies but on preventing them. She outlines five tactics that research has shown to be effective: Encourage reciprocity. You can build trust and prompt other parties to disclose strategic information by sharing information yourself. Ask the right questions. Negotiators often lie by omission, keeping mum about relevant facts, but if directly asked, they are more likely to respond honestly. Watch for dodging. Don’t let your counterparts sidestep your questions—write them down in advance, take notes on the answers, and make sure you get the information you’re seeking. Don’t dwell on confidentiality. Studies show that the more you reassure others that you’ll protect their privacy, the more guarded and apt to lie they become. So be nonchalant when discussing sensitive topics. Cultivate leaks. People often reveal information unwittingly, so listen carefully for any slips and try indirect approaches to gaining information.
How Asian dating sites cracked your biggest complaint—everyone lies onlineJun 25, 2022
Online dating site OKCupid has found an inexplicable number of men happen to be exactly six feet tall and there are four times as many people who claim to earn $100,000 per year as there should be. False advertising, or misrepresentation, is standard in any marketplace; the dating market is no different.
The Truth about Lying - JSTOR DailyMay 30, 2021
You can’t spot a liar just by looking, but psychologists are zeroing in on methods that might actually work.
The truth about lyingMar 30, 2021
You can’t spot a liar just by looking — but psychologists are zeroing in on methods that might actually work
How can you tell if someone is lying?Mar 30, 2021
The conventional wisdom about how to spot a liar is all wrong.
houses
A Decade of Camping Led to This 747-Square-Foot Cozy River RetreatDec 14, 2025
Dan Wheeler spent ten years sleeping in tents on his riverfront property before building anything permanent. The software engineer bought the land along Washington's Wenatchee River in 2010, drawn by years of rafting trips with friends through the area's rushing waters. Every camping trip reinforced what he already knew: this spot needed something, but only
Global Style Creates California Cool in This San Francisco HomeMay 4, 2024
This San Francisco residence by SkB Architects stitches global inspirations into a storied structure with a through-line of California cool.
A Couple Revives a Scottish Villa After Accidentally Buying ItOct 3, 2023
After becoming the inadvertent owners of a crumbling building in rural Scotland, a couple spent five years reviving it. With a little help.
Heat pump online trainingFeb 11, 2023
Heat pump online training let you know the main types of pump in order to explain the thermal balance in housings and heating installations.
This Maine home can stay 70 degrees without a furnace, even when it's freezing outsideJan 30, 2023
With extra insulation and lots of sun, a passive house in the town of Hope is able to maintain an indoor temperature of around 70 degrees without the use of a furnace.
Pretty Good HouseJan 18, 2023
The Pretty Good House approach to home building and renovating details a pathway to building better than code minimum which describes the worst house you can legally build. The info is vetted by leading experts in the field of fine homebuilding, high performance and green building and the profession
138 Whispering Woods Rd, Charleston, WV 25304 | ZillowJan 9, 2023
138 Whispering Woods Rd, Charleston WV, is a Single Family home that contains 3472 sq ft and was built in 1990.It contains 3 bedrooms and 4 bathrooms.This home last sold for $580,000 in February 2023. The Zestimate for this Single Family is $604,100, which has increased by $719 in the last 30 days.The Rent Zestimate for this Single Family is $2,973/mo, which has increased by $2,973/mo in the last 30 days.
Heirloom-Quality Lighting, Hardware & More | RejuvenationApr 23, 2021
Rejuvenation was founded in 1977 in Portland, Oregon as an architectural salvage, lighting, and hardware restoration shop. Today, we're the premier provider of customizable lighting, cabinet hardware, furniture, and more - timeless designs for all areas of your home and for every home improvement project. Crafted to last a lifetime - and beyond.
Ventana Asheville - NC Real Estate | Asheville North CarolinaFeb 22, 2021
Discover the natural beauty that Ventana Asheville has to offer. This luxurious mountain real estate community is located in Western North Carolina and has
Moroccan-inspired Santa Fe house asks $950KOct 11, 2019
The intricate front door signals what’s to come inside: 1,800 square feet of craftsmanship and detailing that even the staunchest minimalist could respect.
Calculators for Contractors, Builders, Remodelers, Carpenters, WoodworkersAug 24, 2019
Calculator apps for DIY home improvement remodeling construction and renovation with detailed scaled diagrams for all construction tasks + woodwork metal work and craft
This Is Possibly the Most Beautiful Off-Grid Passive House — House CallJan 13, 2019
The inside is sleek, minimal, and modern.
A couple embraces nature with a minimalist house in North CarolinaNov 26, 2018
"We tried to create something that felt very sculptural and responded to the scale of the property," says one of the architects of the house.
It Came From the ’70s: The Story of Your Grandma’s Weird CouchAug 28, 2018
Futzing around on social media, as one does, I recently stumbled upon a meme that hit close to home. Over a picture-patterned sofa in an autumnal-colored ...
Camp CallawayDec 6, 2017
‘Tiny House Hunters’ and the shrinking American dreamOct 27, 2017
Roxane Gay: "It is painfully transparent that people with tiny house budgets often have McMansion dreams"
hpc
Oak Ridge National Laboratory deploys diamond-based quantum compute cluster in TennesseeSep 3, 2025
The Quantum Brilliance system will be housed at the lab’s Oak Ridge Leadership Computing Facility
Demystifying NCCL: An In-depth Analysis of GPU Communication Protocols and AlgorithmsJul 13, 2025
The NVIDIA Collective Communication Library (NCCL) is a critical software layer enabling high-performance collectives on large-scale GPU clusters. Despite being open source with a documented API, i…
How to Build a Quantum SupercomputerNov 19, 2024
In the span of four decades, quantum computation has evolved from an intellectual curiosity to a potentially realizable technology. Today, small-scale demonstrations have become possible for...
HPC Gets A Reconfigurable Dataflow Engine To Take On CPUs And GPUsOct 29, 2024
No matter how elegant and clever the design is for a compute engine, the difficulty and cost of moving existing – and sometimes very old – code from the
Companies Need On-Premise HPC – And For More Than AI, TooMay 21, 2024
Generative AI and the various capacity and latency needs it has for compute and storage is muscling out almost every other topic when conversations turn
One Cerebras Wafer Beats An Exascale Super At Molecular DynamicsMay 16, 2024
We think that waferscale computing is an interesting and even an inevitable concept for certain kinds of compute and memory. But inevitably, the work you
Los Alamos Pushes The Memory Wall With “Venado” SupercomputerApr 15, 2024
Today is the ribbon-cutting ceremony for the “Venado” supercomputer, which was hinted at back in April 2021 when Nvidia announced its plans for its first
Why You Should Consider Using Fortran As A Data ScientistMay 18, 2023
An exploration of the benefits that Fortran can bring to Data Science and Machine Learning
The Skills Gap For Fortran Looms Large In HPCMay 2, 2023
Back in the dawn of time, which is four decades ago in computer science and which was before technical computing went mainstream with the advent of Unix
Is This The End Of The Line For NEC Vector Supercomputers?Mar 23, 2023
Updated: There is some chatter – some might call it well-informed speculation – going on out there on the Intertubes that Japanese system maker NEC is
Statistical Computing With Graphics Processing UnitsMar 19, 2023
This thesis consists of two main projects and a third project which is provided in the appendix. The contribution of the first project, is a tool set for parallel random number gen- eration on GPUs…
Towards a Benchmarking Suite for Kernel TunersMar 19, 2023
As computing system become more complex, it is becoming harder for programmers to keep their codes optimized as the hardware gets updated. Autotuners try to alleviate this by hiding as many archite…
More CPU Cores Isn’t Always Better, Especially In HPCJan 20, 2023
If a few cores are good, then a lot of cores ought to be better. But when it comes to HPC this isn’t always the case, despite what the Top500 ranking –
Cerebras Reveals Andromeda, a 13.5 Million Core AI SupercomputerNov 15, 2022
The world's largest chip scales to new heights.
Fujitsu Begins Shipping Supercomputer Fugaku - Fujitsu GlobalMay 14, 2020
Fujitsu Limited today announced that it began shipping the supercomputer Fugaku, which is jointly developed with RIKEN and promoted by the Ministry of Education, Culture, Sports, Science and Technology with the aim of starting general operation between 2021 and 2022. The first machine to be shipped this time is one of the computer units of Fugaku, a supercomputer system comprised of over 150,000 high-performance CPUs connected together. Fujitsu will continue to deliver the units to RIKEN Center for Computational Science in Kobe, Japan, for installation and tuning.
html
Getting Started With The Popover APIMar 2, 2026
What happens if you rebuild a single tooltip using the browser’s native model without the aid of a library? The Popover API turns tooltips from something you simulate into something the browser actually understands. Opening and closing, keyboard interaction, Escape handling, and much of the accessibility now come from the platform itself, not from ad-hoc JavaScript.
You can make up HTML tags: (Maurycy's blog)Dec 29, 2025
What I learnt about making websites by reading two thousand web pagesDec 7, 2025
How to write thoughtful HTML, new-to-me features of CSS, and some quirks and relics I found while building my personal web archive.
Masonry: Things You Won’t Need A Library For AnymoreDec 2, 2025
CSS Masonry is almost here! Patrick Brosset takes a deep dive into what this long-awaited feature means for web developers and how you could make use of it in your own work.
A Few Things About the Anchor Element’s href You Might Not Have KnownAug 15, 2025
Writing about the big beautiful mess that is making things for the world wide web.
Color Names — HTML Color CodesJul 6, 2025
HTML color names rule. Modern browsers support 140 HTML color names which we've listed here along with their Hex color codes and RGB values.
Lesser Known Uses Of Better Known Attributes — Smashing MagazineJan 8, 2025
HTML attributes are like little instructions that we add to the markup of elements to make them do certain things or behave in certain ways. For example, most of us know that the `target` attribute with a value of `_blank` opens the link in a new tab or window. But did you know that you can use it on the `form` element, too? John Rhea presents several lesser-known uses for common HTML attributes.
HTML Over The WireJun 4, 2024
Hotwire is an alternative approach to building modern web applications without using much JavaScript by sending HTML instead of JSON over the wire.
Image Effects With HTML CanvasMay 7, 2024
HTML Canvas is an element I don't see very often in the wild, but when I do, there's always something...
Y2Z/monolithApr 16, 2024
⬛️ CLI tool for saving complete web pages as a single HTML file - Y2Z/monolith
Semantic HTML cheat sheetMar 24, 2024
There are hundreds of semantic tags available to help describe the meaning of your HTML documents....
I keep making things out of checkboxesFeb 29, 2024
Something happened earlier this year where I got on a run making checkbox animations and just couldn’t stop.
Converting an Image into ASCII Art MasterpieceFeb 29, 2024
While browsing Stack Overflow, I generally browse one or two links from the sidebar 'Hot Network Questions'. It brings me to several interesting topics, not necessarily related to development. And this time, I found an interesting post: how do ASCII art image conversion algorithms work?
Please Make Your Table Headings StickyFeb 25, 2024
Hotwire Modals in Ruby on Rails with Stimulus and Turbo FramesFeb 23, 2024
In the first part of our series, we'll explore two Hotwire methods to make modals accessible in your Rails application.
How to Draw with JavaScript on an HTML Canvas Element – Beginner's GuideFeb 14, 2024
There are many ways to code graphics for the web. You can create art with CSS. You can code an SVG image as part of an HTML file. Or you can generate graphics from JavaScript using the Canvas API. In this article, we'll explore how to use JavaScript ...
HTML CheatSheet: Master the Most Commonly Used HTML TagsJan 27, 2024
Master the most commonly used HTML tags with this comprehensive cheatsheet. This comprehensive HTML cheatsheet covers the most commonly used HTML tags you need to know, from structural tags to text formatting tags to image and link tags. It's the perfect resource for web developers and beginners alike.
The Path To Awesome CSS Easing With The linear() FunctionSep 24, 2023
With the new CSS `linear()` easing function on the horizon, the possibilities of what we can do to create natural-feeling animations and transitions in the future are greatly expanded. Jhey Tompkins looks at the current state of CSS easing in this article and demonstrates what we can expect from `linear()`, including handy tools to get your hands on it today.
CSS | Trigonometry CircleSep 21, 2023
Hello Frondend developers, today i will show you how to create a circular element layout with css...
7 Advanced CSS Selectors You Should KnowSep 19, 2023
CSS is indispensable when we talk about web design and development. Basic selectors like classes (.)...
How to do stunning 3D with pure HTML/CSSSep 9, 2023
HTML and CSS may be the bedrock of 2D web design, but hidden within their virtual toolbox are the...
What is a Tooltip? Definition, Types, and Best PracticesAug 22, 2023
Time to define tooltips and share best practices. Explore tooltip types and its examples in our blog post coming from a prototyping tool.
I'm betting on HTMLAug 5, 2023
AI Use Disclaimer: I wrote this post and then GPT-4 fixed my grammer and spelling
10 Cool CodePen Demos (July 2023)Aug 3, 2023
A collection of 10 cool and exciting front-end demos shared on CodePen during July 2023
How to Create a Beautiful Particle Animation with HTML CanvasJul 24, 2023
Live Demo / Download -- In this tutorial, we will utilize the power of HTML canvas to...
Design of complex tablesJul 22, 2023
Instant colour fill with HTML Canvas – SOSMay 24, 2023
TLDR: Demo is at , code is at . The Problem When building a website or app using HTML Canvas, it’s often a requirement to support a flood fill. That is, when the user chooses a colour and cli…
10 HTML Attributes that Make Things a Lot EasierApr 28, 2023
With over a 100 HTML attributes available, it's almost impossible to remember them all. While we are...
Custom Data Attributes in HTML: A Guide to `data-*`Apr 16, 2023
Custom Data Attributes in HTML: A Guide to data-* When developing web applications,...
The importance of rel=canonical for content writersApr 13, 2023
The subject of canonical reference has been touched thousand times. But since some content writers...
A Comprehensive Guide to CSS Shorthand PropertiesApr 4, 2023
CSS shorthand is a group of CSS properties that allow you to write multiple CSS properties in a...
Mastering Semantic HTML: A Guide to Using All 16 Semantic Tags with ExampleMar 2, 2023
Semantic HTML refers to the use of HTML elements that convey meaning beyond just the presentation of...
Using the HTML Geolocation API to display a users location on a mapFeb 22, 2023
In this tutorial we’ll be using the HTML Geolocation API to display the current location of a user on...
Articles — Smashing MagazineFeb 22, 2023
Smashing Magazine — front-end, UX and design for front-end engineers and designers
Putting Gears In Motion: Animating Cars With HTML And SVGFeb 17, 2023
SVG `` provides a way to define how an element moves along a motion path. In this article, Paul Scanlon shares an idea of how to use it by animating race cars in an infinite loop as easy as one-two-three!
Google's John Mueller: Move JavaScript Below The Head ElementJan 16, 2023
John Mueller from Google advises placing JavaScript code underneath the HTML element to ensure that search engines can clearly understand your website.
An Ultimate Guide On Sizing, Spacing, Grids And Layout In Web And UI/UX DesDec 30, 2022
A grid is like invisible glue that holds a design together. Even when elements are physically separated from each other, something invisible connects them together. Grids help designers to build better products by tying different design elements together to achieve effective hierarchy, alignment and consistency, with little effort. If executed properly, your designs will appear thoughtful and organized. In this article Nick Babich aims to give you a good understanding of grid systems, what they are, and how they can be applied to your design process. Understanding how to use grids will come from practical experience.
InnerHTML vs. InnerText vs. TextContent: A Guide | Built InDec 23, 2022
InnerHTML, innerText and textContent can each help to manipulate JavaScript code, but they contain subtle differences. Here’s what to know
UTM Parameters Best Practices & Intro | RafflecopterDec 21, 2022
Do you know where your site traffic comes from? Which of your campaigns drives the most traffic? Let's investigate UTM parameters best practices.
6 alternatives for div tag you need to know and useDec 13, 2022
Using more specific HTML elements instead of the tag can help improve the readability,...
Hacker NewsNov 13, 2022
Command-line XML and HTML beautifier and content extractor - sibprogrammer/xq
6 Cool Things Boring Old HTML Can Do ?Oct 16, 2022
Ever wondered does HTML always have to be boring? No way! Here are 6 cool things you can do with HTML...
7 Cool HTML Elements Nobody UsesOct 4, 2022
Were you left in tears while searching for cool HTML elements? Don’t worry! This article contains 7 elements to up your Coolness…
GIFs Without the .gif: The Most Performant Image and Video Options Right NoSep 30, 2022
So you want an auto-playing looping video without sound? In popular vernacular this is the very meaning of the word GIF. The word has stuck around but the
What Are Canonical Tags?Sep 10, 2022
What are canonical tags and why are they important? Read our simple guide to learn how to apply rel=canonical to your pages.
TIL: You Can Access A User's Camera with Just HTMLSep 8, 2022
The HTML capture attribute is interesting because it allows you to activate a user's camera with just HTML. This article covers it in more depth.
Kits | Foundation 6Aug 5, 2022
vs. : How To Choose The Right One — Smashing MagazineJul 29, 2022
In this article, Olushuyi explores a mental model that helps you decide between the `` and `` elements when writing documents. You will explore how grouping content affects accessibility and how you can make it all count for users.
The Magical Use of Uncommon Labels Fieldset and LegendJul 26, 2022
How to use Fieldset and Legend to create an amazing border effect.
Perfect CTA Placement: Above-The-Fold Vs. Below-The-FoldJun 21, 2022
Should You Place a CTA Above the Fold? Experts in the design and digital marketing world have frequently claimed that if you want to get the best results with a CTA , you need to place it above the fold. Just look at this landing page from Lyft, for instance, you immediately see what you need to do…
The importance of Headings element for an accessible pageJun 21, 2022
The use of correct headings within your HTML pages is vital for visually impaired users. This article explains how to use them correctly.
Write HTML RightJun 11, 2022
Even with a lot of help from a good text editor, writing HTML can be a drag. Nice documents end up as tag-swamps with little bits of content perched atop hills of tabs. Editing them becomes a test of patience and we get sick at the thought of having to look at our once-loved text. It doesn't have to be like this! There's a lightweight, easygoing way to write HTML that's been around since the beginning of the web.
Amazing Resources for Web DevelopersMar 22, 2022
Found amazing resources which will save you tons of time as a web developer👇 1. 10015...
html-css-google-keep-complete - CodeSandboxFeb 20, 2022
html-css-google-keep-complete by akhilboddu using parcel-bundler
Smashing NewsletterFeb 13, 2022
Why Japanese Web Design Is So… DifferentJan 29, 2022
Responsive Images - A Reference Guide from A to ZJan 29, 2022
Chapter 1 - What is responsive images? In this guide, we will learn everything related to...
Front-End Performance Checklist 2021 (PDF, Apple Pages, MS Word) — Smashing MagazineJan 17, 2022
Let’s make 2021... fast! An annual front-end performance checklist, with everything you need to know to create fast experiences on the web today, from metrics to tooling and CSS/JavaScript techniques.
Better Link Labels: 4Ss for Encouraging ClicksJan 17, 2022
Specific link text sets sincere expectations and fulfills them, and is substantial enough to stand alone while remaining succinct.
Front-End Performance Checklist 2021 (PDF, Apple Pages, MS Word) — Smashing MagazineJan 17, 2022
Let’s make 2021... fast! An annual front-end performance checklist, with everything you need to know to create fast experiences on the web today, from metrics to tooling and CSS/JavaScript techniques.
Front-end Developer Handbook 2019 - Learn the entire JavaScript, CSS and HTML development practice!Jan 16, 2022
A guide for front-end developers to equip themselves with latest learning resources and development tools in front-end engineering.
Front-End Developer Handbook 2018 - Learn the entire JavaScript, CSS and HTML development practice!Jan 16, 2022
A guide for front-end developers to equip themselves with latest learning resources and development tools in front-end engineering.
HTML StandardJan 16, 2022
Images in HTML - Learn web development | MDNJan 16, 2022
That's all for now. We have covered images and captions in detail. In the next article, we'll move it up a gear, looking at how to use HTML to embed video and audio content in web pages.
HTML5 Periodical TableJan 16, 2022
HTML StandardJan 16, 2022
Structuring the web with HTML - Learn web development | MDNJan 13, 2022
To build websites, you should know about HTML — the fundamental technology used to define the structure of a webpage. HTML is used to specify whether your web content should be recognized as a paragraph, list, heading, link, image, multimedia player, form, or one of many other available elements or even a new element that you define.
BEM Naming Cheat Sheet by 9elementsJan 2, 2022
A visual tool that provides naming-suggestions for CSS classes using BEM naming convention.
The HTML5 test - How well does your browser support HTML5?Jan 2, 2022
The HTML5 test score is an indication of how well your browser supports the upcoming HTML5 standard and related specifications. How well does your browser support HTML5?
DOM Enlightenment - Exploring the relationship between JavaScript and the modern HTML DOMDec 17, 2021
Exploring the relationship between JavaScript and the modern HTML DOM
HTML5 Security CheatsheetDec 17, 2021
The Web Platform: Browser technologiesDec 17, 2021
1000+ Free HTML Website Templates (2024) - HTML TemplatesDec 15, 2021
The ultimate showcase of the best high-quality free HTML website templates on the internet. Free Download without registration!
Sticky Footer — Solved by Flexbox — Cleaner, hack-free CSSDec 14, 2021
A showcase of problems once hard or impossible to solve with CSS alone, now made trivially easy with Flexbox.
HTTP headers for the responsible developerDec 13, 2021
Guide to using HTTP headers for a better web. Learn about HTTPS, HSTS, CSP, Cacheable, immutable resources, serving WebP images, Feature-Policy and more.
Hacking Your Webpage's Head Tags for Speed and ProfitDec 13, 2021
One of the most important parts of any webpage's performance is the content and organization of the head element. We'll take a deep dive on some easy optimiz...
What is Semantic HTML and Why Should We Care?Dec 12, 2021
HTML tags tell the browser how to structure, and display the content for the web pages. Semantic HTML...
HTML attribute reference - HTML: HyperText Markup Language | MDNDec 11, 2021
Elements in HTML have attributes; these are additional values that configure the elements or adjust their behavior in various ways to meet the criteria the users want.
The Complete CSS Tags Reference - CSS CheatsheetNov 9, 2021
If you are using CSS for frontend web development, you may be interested in this article. The gist of...
Sticky Definition ListsOct 28, 2021
I ran across this 30 seconds of code website the other day, and they have a CSS section which is really good! The first example snippet I looked at was this
HTML Data List element - HTML: HyperText Markup Language | MDNJun 23, 2021
The HTML element contains a set of elements that represent the permissible or recommended options available to choose from within other controls.
Details & Summary tags: HTML's best kept secretJun 9, 2021
and tags are among of the most useful tags that HTML gives us. I'm...
Details on - Google SlidesMay 1, 2021
Using for Menus and Dialogs is an Interesting Idea | CSS-TricksMay 1, 2021
Using for a menu may be an interesting idea, but perhaps not something to actually ship in production. See "More Details on "
My current HTML boilerplate - Manuel MatuzovićApr 30, 2021
Every element I use for the basic structure of a HTML document, with explanations why.
Online HTML To YAML ConverterJan 30, 2021
This free online tool lets you convert a HTML file into a YAML file. No need to download or install any software. Click to convert your file now.
How HTML gives us tooltips for free!Dec 25, 2020
Create a tooltip, with zero dependencies, great browser support and in less than 10 charaters to impliment!
Can I use... Support tables for HTML5, CSS3, etcDec 10, 2020
"Can I use" provides up-to-date browser support tables for support of front-end web technologies on desktop and mobile web browsers.
How to Use the Details and Summary Elements in HTML5 | Treehouse BlogDec 10, 2020
Learn how to use the details and summary elements of HTML5 to create collapsable user interface widgets for your web applications.
Beyond Media Queries: Using Newer HTML & CSS Features for Responsive DesignNov 3, 2020
Beyond using media queries and modern CSS layouts, like flexbox and grid, to create responsive websites, there are certain overlooked things we can do well to
htmx - high power tools for htmlJun 1, 2020
htmx gives you access to AJAX, CSS Transitions, WebSockets and Server Sent Events directly in HTML, using attributes, so you can build modern user interfaces with the simplicity and power of hypertext htmx is small (~14k min.gz’d), dependency-free, extendable, IE11 compatible & has reduced code base sizes by 67% when compared with react
Using CSS to Set Text Inside a CircleApr 19, 2020
You want to set some text inside the shape of a circle with HTML and CSS? That’s crazy talk, right?
Front-end technologiesDec 31, 2019
The front-end is everything involved with what the user sees, including design and some languages like HTML and CSS.
HTML Parser: How to scrap HTML content | Python CentralDec 23, 2019
A tutorial about a HTML parser for Python 3. Learn about the basic of a library for easily parsing web pages and extracting useful information.
Browsers are pretty good at loading pages, it turns out | Carter SandeAug 12, 2019
Client-side navigation is supposed to make your pages load faster. But when I tried it, it was actually slower! Why?
10 Awesome Sass Libraries You Should Know AboutJul 5, 2018
We share with you a collection of interesting Sass libraries that you should check out.
htmx
http
Google Brings Quantum-Hardened HTTPS To Chrome In Major Security UpgradeFeb 28, 2026
The changes are aimed at improving the resilience of web security against quantum attacks without burdening performance.
A Detailed Guide on httpxOct 14, 2025
Fast and practical guide to using the httpx tool for web reconnaissance, probing, filtering, and fuzzing with real-world examples.
The ultimate guide to HTTP headers for SEOOct 20, 2024
Learn what HTTP headers are, how they influence website performance and security and best practices for optimization.
HTTP Status Codes: An In-Depth Explanation with Ruby ExamplesOct 14, 2023
HTTP (Hypertext Transfer Protocol) is the foundation of data communication on the World Wide Web....
New talk: Making Hard Things EasyOct 8, 2023
Beej's Guide to Network ProgrammingMay 27, 2023
Using HTTP cookies - HTTP | MDNMar 31, 2023
A cookie (also known as a web cookie or browser cookie) is a small piece of data a server sends to a user's web browser. The browser may store cookies, create new cookies, modify existing ones, and send them back to the same server with later requests. Cookies enable web applications to store limited amounts of data and remember state information; by default the HTTP protocol is stateless.
UTM Parameters Best Practices & Intro | RafflecopterDec 21, 2022
Do you know where your site traffic comes from? Which of your campaigns drives the most traffic? Let's investigate UTM parameters best practices.
The HTTP crash course nobody asked forOct 21, 2022
HTTP does a pretty good job staying out of everyone's way. If you're reading this article, there's a solid chance it was delivered to you over HTTP. Even if you're reading this from an RSS reader o...
10 Surprising Things You Didn't Know About HTTP | Web Dev GuildJun 11, 2022
HTTP is a staple of the web, but that doesn't mean it doesn't have some secrets.
gRPC vs. REST: Getting Started With the Best API Protocol | ToptalJun 11, 2022
Discover gRPC's fresh, new approach to web communication.
The Best Ruby HTTP clients for 2021 | ScrapingBeeFeb 18, 2022
This article will discuss the best HTTP clients in Ruby. Faraday, HTTParty, Rest-client...it can be hard to choose the best one.
HTTP Status Codes GlossaryJan 13, 2022
Wondering what an HTTP status code means? Browse this list of HTTP status codes for definitions and code references.
Using Rel="preconnect" To Establish Network Connections Early And Increase Performance | CSS-TricksDec 26, 2021
Milica Mihajlija:
HTTP ToolkitDec 23, 2021
Beautiful, cross-platform & open-source tools for debugging, testing and building with HTTP(S), on Windows, Linux & Mac.
HTTP/3 is Fast | HTTP/3 is here, and it’s a big deal for web performance. SDec 16, 2021
HTTP/3 is here, and it’s a big deal for web performance. See just how much faster it makes websites!
HTTP Security Headers - A Complete GuideDec 15, 2021
A description of each security header, why it is important, and how to configure your website in a secure way.
HTTP headers for the responsible developerDec 13, 2021
Guide to using HTTP headers for a better web. Learn about HTTPS, HSTS, CSP, Cacheable, immutable resources, serving WebP images, Feature-Policy and more.
the most important HTTP request headersOct 2, 2021
HTTP/3 From A To Z: Core Concepts (Part 1)Aug 14, 2021
What exactly is HTTP/3? Why was it needed so soon after HTTP/2 (which was only finalized in 2015)? How can or should you use it? And especially, how does this improve web performance? Let’s find out.
Bizcoder - Optimizing for the Speed of LightDec 29, 2019
You might be wondering what on earth I am talking about but this is something I see API developers getting confused about regularly.
Here’s why the internet will always have enough space for all our devicesDec 23, 2019
It seems that every five years, news emerges that the digital sky is falling in. Back in 2010 and 2015, rumors spread that the internet would soon run out of IP addresses. Now, the regulator of Europe’s internet domains has predicted that t
httpx
A Detailed Guide on httpxOct 14, 2025
Fast and practical guide to using the httpx tool for web reconnaissance, probing, filtering, and fuzzing with real-world examples.
hugging-face
The Complete Hugging Face Primer for 2026Feb 17, 2026
A practical 2026 guide to Hugging Face. Explore transformers, datasets, sentiment analysis, APIs, fine-tuning, and deployment with Python.
A Coding Guide to Build an Autonomous Agentic AI for Time Series Forecasting with Darts and Hugging FaceOct 4, 2025
A Coding Guide to Build an Autonomous Agentic AI for Time Series Forecasting with Darts and Hugging Face. A Step by step guide
Qwen3 TTS Demo - a Hugging Face Space by QwenSep 22, 2025
Enter text and choose a voice and language to generate speech. The app will output the generated audio.
10 Python One-Liners to Optimize Your Hugging Face Transformers Pipelines - KDnuggetsSep 22, 2025
In this article, we present 10 powerful Python one-liners that will help you optimize your Hugging Face pipeline() workflows.
Hugging Face Releases Sentence Transformers v3.3.0: A Major Leap for NLP EfficiencyNov 11, 2024
Natural Language Processing (NLP) has rapidly evolved in the last few years, with transformers emerging as a game-changing innovation. Yet, there are still notable challenges when using NLP tools to develop applications for tasks like semantic search, question answering, or document embedding. One key issue has been the need for models that not only perform well but also work efficiently on a range of devices, especially those with limited computational resources, such as CPUs. Models tend to require substantial processing power to yield high accuracy, and this trade-off often leaves developers choosing between performance and practicality. Additionally, deploying large models
Choosing and Implementing Hugging Face ModelsNov 1, 2024
Pulling pre-trained models out of the box for your use case
An Overview of Hugging Face DiffusersMay 21, 2024
Getting Started with HuggingFace Diffusers: A Beginner's Journey into the World of Generative Images
Hugging Face - DocumentationMay 5, 2024
We’re on a journey to advance and democratize artificial intelligence through open source and open science.
I accidentally built a meme search engine | Harper Reed's BlogApr 16, 2024
I built a magical meme search engine using siglip/CLIP and vector encoding images. It was a fun way to learn about this powerful technology. I'm sharing the code so you can build your own and discover forgotten gems in your photo library. Let's unleash the power of AI on our images!
hugo
Start a blog in 30 minutes with Hugo, a static site generator written in GoOct 1, 2021
Get your new site up and running quickly with Hugo.
humility
Four Ways to Cool Down Your DefensivenessSep 13, 2022
Our brains make us naturally defensive, but there are steps we can take to cultivate more humility.
MediumJul 19, 2022
Mistakes Managers Should AvoidJul 18, 2022
Some managers keep diaries of their on-the-job mistakes, partly to avoid repeating errors, and partly to make employees comfortable with failure. At least one added cartoons.
Fixing the Smartest Person in the Room IssueJul 18, 2022
The “Smartest Person in the Room” Issue, Its Importance in Business & Especially in Startups As a startup founder or company CEO, you hear all the time, “You want to hire people ‘smarter than you’”, and you also hear, “Don’t be the smartest person in the room.” But what does this really mean and why
How Do You Know if You’re Actually Humble?Jul 16, 2022
There are ways to figure out how aware you are of your own limitations—and to cultivate intellectual humility.
hunger
Insatiable: A Life Without EatingApr 18, 2024
When my Crohn's disease took away food, it took what it means to be human.
hyperparameters
A Complete End-to-End Coding Guide to MLflow Experiment Tracking, Hyperparameter Optimization, Model Evaluation, and Live Model Deployment - MarkTechPostMar 1, 2026
A Complete End-to-End Coding Guide to MLflow Experiment Tracking, Hyperparameter Optimization, Model Evaluation, and Live Model Deployment
A Coding Guide to Implement Advanced Hyperparameter Optimization with Optuna using Pruning Multi-Objective Search, Early Stopping, and Deep Visual Analysis - MarkTechPostNov 17, 2025
A Coding Guide to Implement Advanced Hyperparameter Optimization with Optuna using Pruning Multi-Objective Search, Early Stopping, and Deep Visual Analysis
Meet Optuna: An Automatic Hyperparameter Optimization Software Framework DeFeb 25, 2024
In machine learning, finding the perfect settings for a model to work at its best can be like looking for a needle in a haystack. This process, known as hyperparameter optimization, involves tweaking the settings that govern how the model learns. It's crucial because the right combination can significantly improve a model's accuracy and efficiency. However, this process can be time-consuming and complex, requiring extensive trial and error. Traditionally, researchers and developers have resorted to manual tuning or using grid search and random search methods to find the best hyperparameters. These methods do work to some extent but could be
Towards a Benchmarking Suite for Kernel TunersMar 19, 2023
As computing system become more complex, it is becoming harder for programmers to keep their codes optimized as the hardware gets updated. Autotuners try to alleviate this by hiding as many archite…
2003.05689.pdfMar 16, 2023
Hyperparameter Optimization: 10 Top Python LibrariesJan 27, 2023
Become familiar with some of the most popular Python libraries available for hyperparameter optimization.
5–10x Faster Hyperparameter Tuning with HalvingGridSearchMar 17, 2022
How to optimize the hyperparameters of a machine learning model and how to speed up the process
The Kaggle Way to Tune Hyperparameters with OptunaJan 16, 2022
Easily and efficiently optimize your model’s hyperparameters with Optuna with a mini project
Automate Hyperparameter Tuning for Multiple Models with HyperoptsMay 1, 2021
Automate your hyperparameter tuning with Sklearn Pipelines and Hyperopts for multiple models in a single python call. Let's dig into the process...
icons
20 Free Ecommerce Icon SetsFeb 22, 2023
Professional icons can engage shoppers and assist in navigation, checkout, and more. Here's our all-new update of ecommerce icons for most every need.
Link, streamline iconFeb 9, 2020
Download this link icon in outline style from the iOS optimized category. Available in PNG and SVG formats. No signup required.
ideas
This Kevlar Medical Brace Folds Flat Like Origami and Might Finally Kill the Plaster Cast - Yanko DesignJan 23, 2026
What do Swiss timepieces and sailing rigging systems have in common with orthopedic braces? More than you might think. The engineers at Osteoid drew inspiration from these precision mechanical systems to create Bracesys, a revolutionary approach to fracture immobilization that challenges everything we thought we knew about medical casts. Traditional plaster casts have remained largely
What We Get Wrong About TechnologyJan 16, 2026
Blade Runner (1982) is a magnificent film, but there’s something odd about it. The heroine, Rachael, seems to be a beautiful young woman. In reality, she’s a piece of technology — an organic robot …
52 Things I Learned in 2025Jan 4, 2026
Here are some of the most interesting things I learned this year.
Meshtastic: A Comprehensive Guide to Off-Grid CommunicationJan 4, 2026
The Power of Decentralized, Long-Range Networks for Adventure, Emergency, and Preparedness
AI’s trillion-dollar opportunity: Context graphs - Foundation CapitalJan 3, 2026
AI’s trillion-dollar opportunity: Context graphs The last generation of enterprise software created a trillion-dollar ecosystem by becoming systems of record. Salesforce for…
Tokyo startup envisions a world where nothing stays lostDec 9, 2025
Find Inc. is a Tokyo-based startup that provides a cloud service dedicated to lost items.
Stickerbox: Kids Say an Idea, AI Prints It as a Sticker in Seconds - Yanko DesignDec 5, 2025
https://www.youtube.com/watch?v=WxN-MqM_RKI Smart speakers for kids feel like a gamble most parents would rather skip. The promise is educational content and hands-free help, but the reality often involves screens lighting up at bedtime, algorithms deciding what comes next, and a lingering suspicion that someone is cataloging every question your child shouts into the room. The tension
Rubber CMOS Brings Stretchable ‘Sensory Skin’ Closer to RealityNov 25, 2025
A new “rubbery CMOS” platform combines fully stretchable p- and n-type transistors, enabling skin-like logic circuits and a tactile “sensory skin” for wearables, implants, and soft robotics.
Open Printer Gives Makers a Fully Open Flexible Inkjet PlatformOct 2, 2025
https://player.vimeo.com/video/1117858411 Traditional inkjet printers have become increasingly frustrating for anyone who values flexibility, repairability, or creative experimentation. Locked-down firmware prevents modifications, expensive proprietary cartridges drain budgets, and when something breaks, you're often better off buying a new printer than attempting repairs. This throwaway culture feels particularly wasteful when you consider how much useful technology gets
A shape-changing antenna for more versatile sensing and communicationAug 18, 2025
MIT researchers developed a method to design and fabricate reconfigurable antennas with adjustable frequency ranges. Users can adjust the frequency by squeezing, bending, or stretching the material, making the antenna more versatile for sensing and communication than traditional static antennas.
The Rise of Shippable MicrofactoriesJul 26, 2025
Can microfactories solve prefab's economic problem by inverting the factory model?
The 2020 Commencement Speech You’ll Never HearMay 31, 2025
The 2020 commencement speech you’ll never hear
Powering Planes With Microwaves Is Not the Craziest IdeaMay 21, 2025
If you don’t mind massive ground antennas and fried birds, that is
Prototype Computer Uses Noise to Its AdvantageMay 19, 2025
Thermodynamic computing isn't just a rebrand of probabilistic computing
InventWood is about to mass produce wood that’s stronger than steelMay 12, 2025
The material has 50% more tensile strength than steel with a strength-to-weight ratio that’s ten-times better.
The Creativity Hack No One Told You About: Read the ObitsApr 28, 2025
Reading obituaries can boost creativity by exposing you to distant ideas, fueling the associations that lead to unexpected breakthroughs.
ClevercoloringbookApr 26, 2025
ICEBREAKERS, via The Art of Noticing by Rob WalkerMar 31, 2025
“Icebreaker of the Week” is a recurring feature of the newsletter The Art of Noticing (robwalker.substack.com). Some are icebreakers I made up or experienced or found somewhere; many are submitted by TAoN readers. After many requests, I am collecting & sharing all the icebreakers here. If you ...
I Can’t Stop Thinking About Lenovo’s Brilliant Modular Mouse Concept at CES 2025 - Yanko DesignJan 12, 2025
You go to a tech expo like CES expecting to be absolutely wowed by phones, laptops, GPUs, cars, and all sorts of prominent product categories. I went to CES 2025 and was wowed by a mouse... yes, a wireless mouse that connects to your computer. Designed by the folks at Lenovo, the AdaptX Mouse easily
MomBoard: E-ink display for a parent with amnesiaNov 15, 2024
Today marks two years since I first set up an e-ink display in my mom’s apartment to help her live on her own with amnesia.
If you want luxury furniture for less, trek to a hidden Bay Area warehouseNov 11, 2024
“They just kicked everybody out.”
Never Missing the Train Again, Thanks to RustOct 25, 2024
How I built a transit dashboard with Rust, Skia, and an old Kindle
Can We Create a Pattern Language for Behavioral Design? - by Piyush TantiaAug 4, 2024
Psychologies, especially as represented in lists of biases, point out problems. Developing a pattern language would point us to solutions.
The Wild Rise of Zillow Gone WildJul 21, 2024
Samir Mezrahi blasted the first outrageous house of Zillow Gone Wild out to the internet four years ago. Now he has 4 million followers and an HGTV show.
These Old Texas Post Offices Sat Empty. Now They’re Thriving Cafes, Stores,Jun 22, 2024
These six restored historic buildings are sending us.
‘Self-Cleaning’ Paint Could Break Down Pollutants on Surfaces and from theMay 21, 2024
Recycled materials contribute to a pollutant-neutralizing paint
Will Stone Replace Steel and Concrete?May 13, 2024
A recent viral tweet by Micah Springut, founder of stone-carving startup Monumental Labs, argued that it will be cheaper to build buildings with stone than with steel or concrete within the next 10 years.
The hot business of cold storageMay 12, 2024
Diets, demographics, desertification: what trends aren’t growing the global cold chain?...
Got an Idea for a Toy? Toymakers Want to Hear From You.May 4, 2024
Companies like Lego and Mattel have divisions that seek out design concepts directly from collectors and other highly dedicated fan bases.
The marketplace of good and bad ideasApr 2, 2024
On why the free exchange of ideas is a complex breeding ground for truth, appealing falsehoods, and self-serving rationalisations.
Why I spent 3 years working on a coat hangerFeb 29, 2024
The Coat Hinger is available for 30 days on Kickstarter! Go go go!! https://kickstarter.com/projects/simonegiertz/coat-hingers-foldable-coat-hangers
Thank you so much for supporting my creative whims throughout the years. Can you believe it's been almost a decade?!
Moving Data May Become Software's Best Feature - Practical EcommerceFeb 22, 2024
The commerce technology stack is changing. And the ability to move information from one system or platform to another is, perhaps, the essential feature mid-sized or enterprise businesses should look for in software providers.
Business models based on the compiled list at http://news.ycombinator.com/item?id=4924647. I find the link very hard to browse, so I made a simple version in Markdown instead.Feb 14, 2024
Business models based on the compiled list at http://news.ycombinator.com/item?id=4924647. I find the link very hard to browse, so I made a simple version in Markdown instead. · GitHub
Tools for better thinking | UntoolsFeb 10, 2024
Collection of thinking tools and frameworks to help you solve problems, make decisions and understand systems.
Turning abandoned mines into batteries | IIASAFeb 6, 2024
A novel technique called Underground Gravity Energy Storage turns decommissioned mines into long-term energy storage solutions, thereby supporting the sustainable energy transition.
How an Ugly Single-Page Website Makes $5,000 a Month with Affiliate MarketiJan 23, 2024
No need to create a fancy and modern website with hundreds of pages to make money online.
The SaaS Opportunity Of Unbundling ExcelOct 16, 2023
The unbundling of Excel is just as important as the unbundling of Craigslist. Here's what you need to know about the Excel Economy and how SaaS companies can take advantage of different verticals and use cases that Excel has dominated.
SaaS Competitive Advantage Through Elegant LLM Feedback MechanismsOct 4, 2023
Eliciting product feedback elegantly is a competitive advantage for LLM-software. Over the weekend, I queried Google’s Bard, & noticed the elegant feedback loop the product team has incorporated into their product. I asked Bard to compare the 3rd-row leg room of the leading 7-passenger SUVs. At the bottom of the post is a little G button, which double-checks the response using Google searches. I decided to click it. This is what I would be doing in any case ; spot-checking some of the results.
When ideas have sexJul 29, 2023
At TEDGlobal 2010, author Matt Ridley shows how, throughout history, the engine of human progress has been the meeting and mating of ideas to make new ideas. It's not important how clever individuals are, he says; what really matters is how smart the collective brain is.
The World Is Full of Sleeping BeautiesJul 28, 2023
Success in nature and culture depends just as much on timing as it does on brilliance.
Scientists Made An Artificial "Cloud" That Pulls Electricity From AirJul 24, 2023
A new prototype compatible with a wide range of materials could grab a continuous supply of renewable energy from the air.
‘It was an accident’: the scientists who have turned humid air into renewabJul 24, 2023
Tesla speculated electricity from thin air was possible – now the question is whether it will be possible to harness it on the scale needed to power our homes
Think Like Feynman: Why You Should Have 12 Favorite ProblemsMay 2, 2023
Discover the practice of Nobel Prize-winning scientist Richard Feynman that has changed lives, including a method to find serendipitous answers to questions.
35 Ways Real People Are Using A.I. Right NowApr 16, 2023
Artificial intelligence models have found their way into many people’s lives, for work and for fun.
Women’s Basketball Continues SlumpApr 8, 2023
SB Loses Shootout to Manhattan On Nov. 24 Stony Brook’s Women’s Basketball team faced the Manhattan Jasper’s. In a high scoring affair, Stony Brook lost by a final score of 74-68. The Jasper’s held the lead most of the game, including a game high 12 point lead at half (44-32).
You can probably manufacture closer to home than you thinkMar 19, 2023
Let's take a closer look at how nonprofit FORGE helps founders manufacture on the other side of town instead of the other side of the world.
WTF is Marketplace Liquidity?Mar 12, 2023
Methodologies for understanding and measuring marketplace liquidity
The Original King of Crypto Is BackMar 4, 2023
Arthur Hayes rubbed success in the Feds’ face and got busted. Now he’s returning to a shell-shocked industry.
Share Files With a Fist Bump: Wi-R Confines Signal to a User’s BodyFeb 15, 2023
The latest wireless protocol ditches radiation and focuses on a new medium: your body.
How New Ideas Arise | The MIT Press ReaderFeb 7, 2023
Architect and poet Paolo Belardi traces the many conditions and situations that have inspired extraordinary ideas across the arts and sciences.
This personal whiteboard has everything you need to take notes anywhere, anFeb 1, 2023
https://youtu.be/txci5QkpSWc Writing things by hand has become fashionable again despite the prevalence of computers and smartphones. In fact, some have embraced this "analog" system of note-taking exactly as a reaction to the dominant reliance on technology. Whatever the reason, this resurgence in demand for paper products might also have negative effects on the environment when
How to draw ideas - Ralph AmmerJan 15, 2023
Four ways how to use drawing to get more ideas: Study, Explore, Develop, and Show. They will boost your creativity.
Smash hits: How viral memes conquered piñata designJan 13, 2023
Forget tradition. Social media trends are now driving piñata sales in Mexico.
This 28-year-old built a side hustle that brings in $30,000/month: 'I onlyDec 17, 2022
During the pandemic, Quinn Miller quit his sales job to start a vending machine side hustle. Today, his business brings in $30,000 a month, and he only has to work six hours a week on it. He shares how he got started.
ChatGPT and the Imagenet moment — Benedict EvansDec 16, 2022
The wave of enthusiasm around generative networks feels like another Imagenet moment - a step change in what ‘AI’ can do that could generalise far beyond the cool demos. What can it create, and where are the humans in the loop?
Branding With Bonobos? A Conservation Fee Might Help Save Them.Dec 11, 2022
Data suggests brands can blunt public awareness of species loss when they use at-risk animals in ads. Should they pay?
Hacker NewsDec 2, 2022
What would be possible if hand-drawn sketches were programmable like spreadsheets?
Show HN: Trading cards made with e-ink displays | Hacker NewsDec 2, 2022
Right now, each card costs me about $20 each, but with only a bit more scale, I think I can get that down to $10.
Introducing Wyldcard — WyldcardDec 2, 2022
Introducing Wyldcard, a new paradigm for tabletop gaming, trading cards which can magically change as you play.
Should You Invest in Disruptive Materials?Nov 23, 2022
Twenty QuestionsNov 21, 2022
Let’s play a game. I’m thinking of a number from 1 to 100. You guess, and I tell you whether my number is higher or lower.
A "psychological vaccine": Why prebunking is the best way to fight misinformationNov 21, 2022
By exposing people to small doses of misinformation and encouraging them to develop resistance strategies, "prebunking" can fight fake news.
How a five-star prospect from Georgia ended up homeless, ineligible and 2,000 miles awayNov 21, 2022
Junior defensive lineman T.A. Cunningham has turned to the courts after his cross-country move to pursue NIL opportunities went awry.
T-Mobile dominates 2.5 GHz spectrum auction to fill in network gaps acrossOct 14, 2022
T-Mobile spends $304 million to win over 90% of available 2.5 GHz licenses.
The family that built a ballpark nachos monopolySep 18, 2022
Anytime you order nachos at a sporting event, there’s a good chance they came from a molten-cheese empire in San Antonio, Texas.
YaCy – your own search engine | Hacker NewsSep 18, 2022
NakedPack uses edible, soluble food packaging to give you a complete mealSep 14, 2022
https://vimeo.com/721917759?embedded=true&source=vimeo_logo&owner=125548125 One of the most wasteful and mostly non-biodegradable things we have lying around is food packaging. But if you buy your food or ingredients in "traditional" supermarkets or from the usual brands, you know that sustainable packaging is not their utmost priority. There are product designers and creators out there that are concerned about
Targeting Cancer’s Achilles HeelSep 13, 2022
Biden’s Cancer Moonshot aims to cut annual deaths in half. Scientists have the goal in their sights.
Super Hot Sand Could Help Us Store Renewable EnergySep 9, 2022
It’d be much cheaper than lithium battery storage.
Every Complex Idea Has a Million Stupid CousinsAug 30, 2022
Chances are, you've met far more stupid cousins than you realize
The Guilt-Free Pleasure of Airplane MoviesAug 27, 2022
Amid the endless tiny indignities of air travel, only one true retreat remains.
How 10 Classic Toys Were InventedAug 27, 2022
Ever wonder how Lincoln Logs or Sea Monkeys found their way into 20th-century toy stores? Here are the little-known origins of 10 classic toys.
The Key to Successful Innovation? Progress Over ProductAug 14, 2022
Tap into people's unspoken needs to create breakthrough innovations.
Semis for Everyone?Aug 1, 2022
Google is promoting the growth of open source tools for designing semis. The science fiction version of this story leads to everyone designing chips, the reality is going to be much narrower, but s…
MIT engineers develop stickers that can see inside the body | MIT News | MaJul 31, 2022
MIT engineers designed an adhesive patch that produces ultrasound images of the body. The stamp-sized device sticks to skin and can provide continuous ultrasound imaging of internal organs for 48 hours.
Understanding idea adoption (you’re not a slot, you choose a slot)Jul 19, 2022
In the last year, millions of people have bought a copy of 50 Shades. Here's the thing: they didn't all do it at the same time. Some people bought it when it was a self-published ebook. O…
3 Strategies To Building a Marketplace Startup | SaaS AcademyJul 18, 2022
Building a two-sided market is probably the hardest thing you can build as an entrepreneur. It's so hard that a few weeks ago, I organized a Marketplace
A Look Back at the Package Under the Golden ArchesJul 18, 2022
Early Happy Meals promoted the McDonaldland characters, which were introduced in 1971.
http://platformed.info/how-to-get-startup-ideas/Jul 18, 2022
23 Ways to Generate Startup IdeasJul 18, 2022
“Writing is Thinking”—an annotated twitter threadJul 18, 2022
“Writing is thinking” is my favorite expression for how to work in a company. This annotated thread explores the value of writing.
Spreading Slow IdeasJul 17, 2022
We yearn for frictionless technological solutions. But people talking to people is still the way that norms and standards change.
Popsockets growthJul 12, 2022
Repair Café - Fix Your Broken ItemsJul 5, 2022
Repair Café is here to help you fix your broken items. Join our community of skilled volunteers and get your belongings repaired in a sustainable way.
The Tool that Will Help You Choose Better Product Ideas | HackerNoonJun 23, 2022
Let’s say you manage a product that helps small businesses support their customers. You’re looking to improve customers’ engagement and retention levels. There are two ideas are on the table:
87 Service Business Ideas to Start TodayJun 23, 2022
With this many ideas to choose from, you have no excuse not to get started today with your own service business.
Airliners Could Soon Fly in Formation, Just Like a Flock of BirdsJun 19, 2022
This makes too much sense not to try.
Where Do New Ideas Come From?Jun 14, 2022
With close study, the genealogies of even the most original ideas can be traced
Opportunity CanvasJun 13, 2022
Reselling Software: Don’t Start a SaaS — White Label Someone Else’sJun 12, 2022
Reselling software can mean recurring revenue and great profit margins. But how do you choose a niche and find your first customers?
The secret of my success as an entrepreneur: I’m 60May 11, 2022
“ By the law of averages, if you reach four decades of work experience, then you know what it was like to be disrupted both personally and as a business.”
These are the storytelling lessons I learned from Steve Jobs - Fast CompanyMay 8, 2022
'We were telling the story of a phone that would change everything. So that’s what we had to build.'
It’s Still Stupidly, Ridiculously Difficult To Buy A ‘Dumb’ TVApr 15, 2022
Historically, “smart” TVs aren’t always particularly smart. They’ve routinely been shown to have lax security and privacy standards. They also routinely feature embedded OS …
Zapier: The $5B unbundling opportunityApr 15, 2022
Zapier has 3M+ users and generates $125M in ARR. At a $5B valuation, its fast-growing horizontal platform is unable to meet the demands of all of its customers. The increase of underserved Zapier customers presents an opportunity.
The Economics of Data BusinessesMar 10, 2022
How data businesses start, and how they keep going, and growing, and growing.
The Accidental Invention of Bubble WrapFeb 10, 2022
Two inventors turned a failed experiment into an irresistibly poppable product that revolutionized the shipping industry
How to explain an idea: a mega postFeb 1, 2022
What's an idea? What sorts of ideas are there? And how to explain them once you have them?
The Experience EconomyJan 29, 2022
SAP’s acquisition of Qualtrics shows how the shift in technology has changed business; it is a perfect example of using the Internet to one’s advantage.
Can Freight Train Cars Go Electric—and Self-Driving?Jan 19, 2022
Decentralizing freight transport and distribution can provide flexibility and increased efficiency, getting cargo closer to where it needs to go in a more timely manner while taking stress off of overloaded ports.
The Stories Behind 20 Inventions That Changed the WorldSep 29, 2021
From blood banks and barcodes to the Super Soaker and the pizza box, here are the fascinating stories behind inventions that changed the world.
The thriving business of ‘Ikea hacking’Jun 25, 2021
A growing number of companies are offering design tweaks for old Ikea furniture — and business is booming.
Juxting – A Fountain of IdeasMar 16, 2021
This is an article about juxting — coming up with ideas by randomly juxtaposing two things and seeing the ways they could relate to each…
Enterprise Gateway Marketplaces Will Turn Large Organizations Inside-OutMar 2, 2021
The marketplace revolution is still just beginning and the enterprise gateway is the newest type of marketplace.
Ten Ideas That Have Shaped My Life - Scott H YoungJan 30, 2021
The ideas that influence us aren't always obvious. Here are ten that have shaped my life, that may have the power to change yours.
What Bill Gurley Saw - Commonplace - The Commoncog BlogJan 14, 2021
Some careers can be made on the back of a single, wonderful idea. We take a look at what that looks like, through Bill Gurley's VC career.
Talking out loud to yourself is a technology for thinking | Psyche IdeasDec 29, 2020
Talking out loud to oneself is a technology for thinking that allows us to clarify and sharpen our approach to a problem
The Hidden Habits of GeniusDec 18, 2020
Leadership Now is a leading source for leadership development and analysis. We believe that anyone can make a difference by leading from where they are.
Checking out and building Chromium on LinuxNov 29, 2020
A curated list of open source healthcare software, tools and resourcesNov 19, 2020
Curated list of awesome open source healthcare software, libraries, tools and resources. - kakoni/awesome-healthcare
Forming Experimental Product Hypotheses | by Chris Compston | Agile InsiderNov 3, 2020
An introduction to forming hypothesis statements for product experimentation.
Million-Dollar, One-Person BusinessesNov 3, 2020
How are individual entrepreneurs (solopreneurs) building multi-million dollar companies? What can we learn from their stories? Read this report to find out.
From inspiration to idea sex: how to generate ideas on demandNov 3, 2020
How do creators find ideas to write about? Poets, artists, and authors alike have been wondering about the source of our inspiration for millennia. But what's the difference between inspiration and idea sex?
Lists of radio stations in the United States - WikipediaAug 10, 2020
Radio stations in United States have evolved since their early twentieth-century origins. In 1920 8MK started operations in Detroit; after it, thousands of private and public radio have operated in the United States. The lists of radio stations in the US are organized in a number of ways; some of them are the following:
The power of dopey ideas – Tech ReflectAug 10, 2020
Additive Manufacturing Movement | 2020 Trends ReportJul 15, 2020
Meet the manufacturers capitalizing on 3D printing today, and find out how they are transforming their design and production workflows with additive.
Eigenquestions: The Art of Framing ProblemsJul 13, 2020
A handbook for how to become an expert at framing problems.
Why clothes are so hard to recycleJul 13, 2020
Fast fashion is leading to a mountain of clothing being thrown away each year and has a huge impact on the environment, so can we turn our unwanted garments into something useful?
50 Ideas That Changed My Life — David PerellJun 8, 2020
David shares 50 ideas that changed his life. Read here.
Idea GenerationJun 1, 2020
The most common question prospective startup founders ask is how to get ideas for startups. The second most common question is if you have any ideas for their startup. But giving founders an idea...
Mental models for designers | Dropbox DesignJun 1, 2020
Curious about product design at Dropbox? Here’s a look at tools we use for solving problems, making decisions, and communicating ideas.
Patio11’s LawMay 14, 2020
@mmcgrana: Patio11’s Law: The software economy is bigger than you think, even when you take into account Patio11’s Law.1 A few years ago, I woke up in Sunriver, OR, and went to make coffee. The house had one of those bed-and-breakfast-type coffee trays. Drip machine. A stack
This 3-Minute Exercise Will Change the Way You Solve ProblemsMay 8, 2020
‘Structured thinking’ is about building a big answer by asking many small questions
To Come Up with a Good Idea, Start by Imagining the Worst Idea PossibleMay 3, 2020
Working backwards and breaking free from the norm exposes new and unique opportunities you probably haven’t considered.
Black Swan EventsApr 16, 2020
So: To be clear, I don’t think we can really call COVID-19 itself a Black Swan event. Plenty of people saw it coming, in some form or another, and said so. If you asked people last year, “what will…
Cold-Case Cure: Inside New Era of Hunting Serial KillersMar 27, 2020
New advances in DNA technology — and new databases allowing law-enforcement searches — means more unsolved murder cases are being closed.
Peeking Into the World of Rare BooksMar 9, 2020
The new documentary “The Booksellers” looks at the esoteric world of the antiquarian trade, and the passionate, eclectic and endangered characters who make it hum.
How to brainstorm great business ideasMar 9, 2020
It's been said that ideas don't matter, and that only execution does. I wholeheartedly disagree. You need both to succeed, but you can only get so good...
100 Little Ideas · Collaborative FundFeb 24, 2020
A list of ideas, in no particular order and from different fields, that help explain how the world works…
Radical hydrogen-boron reactor leapfrogs current nuclear fusion techFeb 22, 2020
"We are sidestepping all of the scientific challenges that have held fusion energy back for more than half a century," says the director of an Australian company that claims its hydrogen-boron fusion technology is already working a billion times better than expected.
A startup built around building materials: Yesler marketplace is like ExpedFeb 3, 2020
Matt Meyers spent two decades at Weyerhaeuser dealing with product engineering, manufacturing, software engineering, product development, sales and
A Material That Throws Heat into Space Could Soon Reinvent Air-ConditioningFeb 2, 2020
A radiative cooling technology could help cut energy consumption in new buildings by nearly 70 percent—and significantly shave demand in existing structures, too.
TasksDec 23, 2019
How Our Sustainable Corporate Merchandising Became a $40K/Month BusinessOct 31, 2019
Hello! Who are you and what business did you start?My name is Gonzalo and with my partner Gala, we run a business called Sheedo. Our main product is a paper made out of waste cotton from the clothing industry, so we don’t cut trees or use toxic chemicals in our production line. But what...
This researcher studied 400,000 knitters and discovered what turns a hobbyAug 31, 2019
An MIT Sloan Ph.D. candidate discovered what turned skilled hobbyists into entrepreneurs.
The Hidden Patterns of Great Startup IdeasAug 1, 2019
5 frameworks to help Founders coming up with a new startup idea that is the most likely to lead to a transformative company.
Meet a scientist with a most delightful job: He studies baby laughterJul 24, 2019
Babies start laughing before they can speak, and this delicious sound just may serve as a powerful source of human communication and connection, says psychology researcher Caspar Addyman.
That Time a Guy Cornered the Liquid Soap Market by Sneakily Buying Nearly Every Hand Soap Pump Available in the WorldJul 4, 2019
Robert R. Taylor is a name you’ve probably never heard before. But this serial entrepreneur made his mark on the world of business by coming up with several products you are almost certainly very familiar with. Today we’re going to talk about, on the surface, the most boring of those- liquid hand soap. Something you can thank Mr. Taylor and [...]
Startup idea checklist | defmacroJun 24, 2019
I’ve been tinkering with different startup ideas and needed a good checklist to think through them. There are great templates for this already: The YC application, Amazon’s internal press release, and Sequoia’s Writing a Business Plan. I found myself mixing and tweaking these templates because they don’t exactly match my model of the world, so I wrote up my own list.
The Camera as the App LayerMay 12, 2019
Your phone increasingly knows what you’re taking a picture of. And which apps you have installed. So…
Ideas are Easy, Sorting them is HardMar 5, 2019
Why we should ask people to submit problems, not ideas
I make up to $6,000 a day writing quotes on Instagram — here's howOct 11, 2018
Insider gathered advice from successful entrepreneurs on turning passions into profitable businesses.
Project Repat: $10MM Business Making Quilts From Old T-ShirtsOct 7, 2018
Hello! Who are you and what are you working on?My name is Ross Lohr, and I’m a co-founder of Project Repat. We make it easy and affordable for customers to turn their memorable t-shirts into a one of a kind, custom t-shirt quilt backed with cozy fleece. People buy quilts from Project Re...
How Much Energy Can You Store in a Stack of Cement Blocks?Sep 12, 2018
It's not a trick question: You can make a battery out of concrete by storing gravitational potential energy.
The founder of Pinboard on why understanding fandom is good for business -Sep 9, 2018
Maciej Cegłowski found fans where they were, and won their hearts
Service as a SKU | Andreessen HorowitzAug 21, 2018
Editor’s note: This article by now-a16z general partner Alex Rampell was originally published in 2012 in TechCrunch. The biggest ecommerce opportunity today involves taking offline services and offering them for sale online (O2O commerce). The first generation of O2O commerce was driven by discounting, push-based engagements, and artificial scarcity. The still-unfulfilled opportunity in O2O today is tantamount to...
Starting An Amazon FBA Business - Starter StoryAug 13, 2018
Hello! Who are you and what are you working on?My name is Raymond Furgason, and I am the Creator and Founder of Carbage Can. The Carbage Can is a car trash can. It’s so easy to gather common trash in your vehicle - tissues, food wrappers, receipts, coffee cups… the list is endless. We’r...
The Infinite MemoJul 31, 2018
From the makers of this incredibly clever wearable memo, the Wemo is back with an entirely new look. The Wemo 2 takes on a flat form that you can stick on any surface, transforming it into a doodle or memo pad in seconds. Slap it on your laptop to take notes during meets or on
This technology could fundamentally change our relationship to electricityJul 26, 2018
An “operating system” for power could double the efficiency of the grid.
codecrafters-io/build-your-own-x: Master programming by recreating your favorite technologies from scratch.Jun 8, 2018
Master programming by recreating your favorite technologies from scratch. - codecrafters-io/build-your-own-x
How To Tell If Someone Is Truly Smart Or Just AverageNov 12, 2017
Author’s Note: This article was written over 60 hours with love and care using the blockbuster mental model. If you like my writing style…
Steven Johnson: Where good ideas come from | TED Talk | TED.comNov 6, 2017
People often credit their ideas to individual "Eureka!" moments. But Steven Johnson shows how history tells a different story. His fascinating tour takes us from the "liquid networks" of London's coffee houses to Charles Darwin's long, slow hunch to today's high-velocity web.
How to Make Almost AnythingDec 26, 2016
This course provides a hands-on introduction to the resources for designing and fabricating smart systems, including CAD/CAM/CAE; NC machining, 3-D printing, injection molding, laser cutting; PCB layout and fabrication; sensors and actuators; analog instrumentation; embedded digital processing; wired and wireless communications. This course also puts emphasis on learning how to use the tools as well as understand how they work.
The $1000 Wheelchair - New MobilityOct 24, 2002
What do you get when you add YouTube seed money, state-of-the-art manufacturing techniques and a consumer-first sales model? A wheelchair that could upend the mobility equipment industry.
Bop SpotterOct 24, 2002
San Francisco’s new cage-free dog shelter is a colorful utopia for older dogsOct 24, 2002
The new Muttville shelter is a high-design open-concept space, making the rescue experience more approachable and fun for both dogs and humans.
ideas-commish
Northwestern's Tiny Football Stadium Is Making Big MoneyDec 31, 2024
Despite hosting games in a temporary stadium with 35,000 fewer seats, Northwestern football is bringing in more revenue with premium packages.
List of U.S. stadiums by capacityAug 2, 2024
The following is a list of stadiums in the United States. They are ranked by capacity, which is the maximum number of spectators the stadium can normally accommodate. All U.S. stadiums with a current capacity of 10,000 or more are included in the list. The majority of these stadiums are used for American football, either in college football or the NFL. Most of the others are Major League Baseball ballparks or Major League Soccer stadiums.Rows shaded in yellow indicates stadium is home to an NFL, MLB, MLS, or NWSL franchise.
DMA® Regions | NielsenJun 22, 2024
DMA (Designated Market Area) regions are the geographic areas and zip codes in the U.S. in which local television viewing is measured by Nielsen.
Sporticast 345: Empty Seats, NFL Sales, Tennis Pay, Other Fun Biz StatsMay 14, 2024
Sports business trivia abounds in this episode. Lev Akabas join the Sporticast sports podcast to talk Oakland A's, soccer valuations, and NFL sales.
ideas-semex
Engineering Challenges Grow With Crystalline DefectsJan 28, 2026
Tighter process control and yield optimization still cannot mitigate crystalline defects.
How next-gen data analytics is changing American footballApr 24, 2024
At the NFL’s Big Data Bowl, scientists compete to develop new stats that better capture player performance
World Fab Forecast | SEMIJan 7, 2024
Category:Semiconductor companies of the United States - WikipediaJan 7, 2024
This category has the following 11 subcategories, out of 11 total.
Growth of 300mm fab capacity picks up pace again - Bits&ChipsApr 5, 2023
After dipping this year, the growth of 300mm semiconductor manufacturing capacity is set to gain momentum.
ideation
How to Do Great WorkJan 10, 2026
How Your Brain Creates ‘Aha’ Moments and Why They Stick | Quanta MagazineNov 5, 2025
A sudden flash of insight is a product of your brain. Neuroscientists track the neural activity underlying an “aha” and how it might boost memory.
Is Your Startup Idea Any Good? Borrow These Validation Tactics from the Founders of Linear, Mercury and MoreSep 9, 2025
Founders share the unconventional ways they found conviction in their startup ideas.
Proof That Constraints Can Actually Make You More CreativeAug 22, 2025
Brainstorming, thinking outside the box, working with free reign on a project--they're old creativity maxims, but how well do they really work?
The Creativity Hack No One Told You About: Read the ObitsApr 28, 2025
Reading obituaries can boost creativity by exposing you to distant ideas, fueling the associations that lead to unexpected breakthroughs.
‘Intrinsic Joy’ Sparks Ideas Better than CashFeb 29, 2024
Can financial incentives turn innovation into a chore? A study of GitHub's efforts to sponsor software coders by Maria Roche and colleagues explores the interplay between motivation and creativity.
Scrintal is a great new tool for brainstorming ideas and projectsApr 5, 2023
Organizing multistep projects can be challenging. Scrintal lets you easily focus on one element at a time.
How New Ideas Arise | The MIT Press ReaderFeb 7, 2023
Architect and poet Paolo Belardi traces the many conditions and situations that have inspired extraordinary ideas across the arts and sciences.
Obsidian Canvas - ObsidianDec 22, 2022
Obsidian Canvas gives you infinite space to research, brainstorm, diagram, and lay out your ideas.
HomeJul 18, 2022
http://platformed.info/how-to-get-startup-ideas/Jul 18, 2022
23 Ways to Generate Startup IdeasJul 18, 2022
Creativity: 14 Ways To Find Inspiration And Originality - PsyBlogJul 18, 2022
Creativity research in psychology reveals 14 ways to increase imaginative and creativity thinking, discover new ideas and solve problems.
How to Get Startup IdeasJul 11, 2022
Six Principles for Making New ThingsJul 5, 2022
Where Do Eureka Moments Come From?Jun 28, 2022
Sometimes the search for creative insight requires us to focus, and sometimes it requires us to look away.
13 tips for generating new ideas | CanvaJun 28, 2022
Feeling uninspired? Learn how to stay creative and keep on generating new ideas with these 13 simple yet effective tips.
The bingo methodJun 28, 2022
You might need help to turn an idea into a project. Most of the time, though, project developers walk up to those that might help and say, “I have a glimmer of an idea, will you help me?̶…
Picking a MarketJun 28, 2022
In the Creative Founder, students are paired semi-randomly, and then spend a semester trying to get to product-market fit. I always start them with market selection. A market has three key elements…
The Psychology of Limitation: How Constraints Make Us More CreativeJun 25, 2022
If you've ever stared at a blank page, you know the importance of creative constraints. Learn how to harness limitations for more and better ideas.
Ideation Sprints for New Products & ServicesJun 24, 2022
Part Two of the Needfinding/Ideation/MVP Creation Charette This is the second part of a three part essay on rapid MVP creation to start testing assumptions. Part One is here. It was written for my …
The Tool that Will Help You Choose Better Product Ideas | HackerNoonJun 23, 2022
Let’s say you manage a product that helps small businesses support their customers. You’re looking to improve customers’ engagement and retention levels. There are two ideas are on the table:
Where Do New Ideas Come From?Jun 14, 2022
With close study, the genealogies of even the most original ideas can be traced
Opportunity CanvasJun 13, 2022
Instagram Co-Founder Mike Krieger's 8 Principles For Building Products People Want | TechCrunchJun 11, 2022
Mike Krieger, Instagram's founder thinks you can build apps that fit the real world by watching what people want, not guessing. He presented his eight core product design insights today at 500 Startups' Warm Gun conference. Here's the cheat sheet to his talk.
The Accidental Invention of Bubble WrapFeb 10, 2022
Two inventors turned a failed experiment into an irresistibly poppable product that revolutionized the shipping industry
How to explain an idea: a mega postFeb 1, 2022
What's an idea? What sorts of ideas are there? And how to explain them once you have them?
Juxting – A Fountain of IdeasMar 16, 2021
This is an article about juxting — coming up with ideas by randomly juxtaposing two things and seeing the ways they could relate to each…
Ten Ideas That Have Shaped My Life - Scott H YoungJan 30, 2021
The ideas that influence us aren't always obvious. Here are ten that have shaped my life, that may have the power to change yours.
Startup Idea Validation ToolsDec 18, 2020
Forming Experimental Product Hypotheses | by Chris Compston | Agile InsiderNov 3, 2020
An introduction to forming hypothesis statements for product experimentation.
The amazing value of early and cheap product experiments | by Caroline ParnNov 3, 2020
It’s so important to test your new product idea long before you feel ready.
Heuristics to Generate Startup Ideas – Avichal GargNov 3, 2020
I regularly help pre-seed entrepreneurs identify and evaluate potential startup opportunities. The following is a set of heuristics I’ve developed and collected over the years that might of u…
Good Synthesis is the Start of Good SensemakingJun 1, 2020
When you're faced with uncertainty, the best thing you can do is analyse your inputs, synthesise a new model, and then destroy it to start over again.
Idea GenerationJun 1, 2020
The most common question prospective startup founders ask is how to get ideas for startups. The second most common question is if you have any ideas for their startup. But giving founders an idea...
To Come Up with a Good Idea, Start by Imagining the Worst Idea PossibleMay 3, 2020
Working backwards and breaking free from the norm exposes new and unique opportunities you probably haven’t considered.
How to brainstorm great business ideasMar 9, 2020
It's been said that ideas don't matter, and that only execution does. I wholeheartedly disagree. You need both to succeed, but you can only get so good...
TasksDec 23, 2019
Why Crowdsourcing Often Leads to Bad IdeasDec 13, 2019
Most crowdsourcing initiatives end up with an overwhelming amount of useless ideas. Dealing with a full submission box is not only extremely time consuming and costly, it also biases how ideas are selected: When firms receive too many ideas, they tend to focus on ideas that are already familiar to them, defeating the entire purpose of crowdsourcing, which is to surface new thinking. Why do many crowdsourced ideas turn out so bad, and what can firms do about it? Recent research finds that it comes down to understanding the motivations of crowd members.
The Bus Ticket Theory of GeniusNov 23, 2019
Harnessing the Power of Shower ThoughtsNov 18, 2019
One of the best ways to learn and come up with new ideas is to focus intensely on a problem, then let your mind wander. I’ve enjoyed doing this when problem solving and learning, and recently I’ve been thinking about how weird it is to build trust in your unconscious to do the work for you, especially when it comes to technical work. Letting your mind focus and letting your mind wander The first recommendation I have for anyone taking a meta look at learning is Barbara Oakley’s Learning How To Learn.
Remote Ideation: Synchronous vs. AsynchronousAug 20, 2019
Asynchronous remote ideation allows people to contribute ideas whenever it’s convenient to do so, but synchronous sessions lead to faster results and more team building.
The Hidden Patterns of Great Startup IdeasAug 1, 2019
5 frameworks to help Founders coming up with a new startup idea that is the most likely to lead to a transformative company.
Second-Order Thinking: What Smart People Use to OutperformApr 5, 2019
Second-order thinking is a mental model that smart people like Warren Buffett & Howard Marks use to avoid problems. Read this article to learn how it works.
The Surprising Value of Obvious InsightsFeb 21, 2019
Confirming what people already believe can sometimes help organizations overcome barriers to change.
Evidence scores — the acid test of your ideasFeb 6, 2019
Finding and building the next big idea is the holy grail of any tech company. Unfortunately the statistics are against us: when subjected…
image-augmentation
Image Data Preprocessing Techniques You Should KnowJun 5, 2024
In this article, I'll take you through the essential image data preprocessing techniques you should know with implementation using Python.
A Comprehensive Guide to Image Augmentation using PytorchMay 28, 2022
A way to increase the amount of data and make the model more robust
A Beginner’s Guide to Image Augmentations in Machine LearningMar 28, 2021
Data Augmentation is one of the most important yet underrated aspects of a machine learning system …
image-classification
Why it’s so hard to use AI to diagnose cancerJan 21, 2025
The latest effort, from the Mayo Clinic, holds some clues.
How to Build an Image-Captioning Model in PytorchJun 23, 2022
A detailed step-by-step explanation of how to build an image-captioning model in Pytorch
Real-time SKU detection in the browser using TensorFlow.jsJun 7, 2022
Realtime and offline SKU detection in the browser using Tensorflow.js
Browse the State-of-the-Art in Machine Learning | Papers With CodeDec 21, 2020
**Image Classification** is a fundamental task in vision recognition that aims to understand and categorize an image as a whole under a specific label. Unlike [object detection](/task/object-detection), which involves classification and location of multiple objects within an image, image classification typically pertains to single-object images. When the classification becomes highly detailed or reaches instance-level, it is often referred to as [image retrieval](/task/image-retrieval), which also involves finding similar images in a large database. Source: [Metamorphic Testing for Object Detection Systems ](https://arxiv.org/abs/1912.12162)
Learning the Differences between Softmax and Sigmoid for Image ClassificatiAug 30, 2019
Week Two - 100 Days of Code Challenge
Multi-label classification with Keras - PyImageSearchMay 12, 2018
In this tutorial you will learn how to perform multi-label classification using Keras, Python, and deep learning.
image-compression
If you thought text-to-image AI was unbelievable, wait until you see how itOct 8, 2022
If you thought text-to-image AI was unbelievable, wait until you see how it compresses images.
AI-Based Image Compression: The State of the ArtNov 29, 2021
An overview of some of the leading libraries and frameworks out there
AI-Based Image Compression: The State of the ArtNov 28, 2021
An overview of some of the leading libraries and frameworks out there
image-generation
Nano Banana: AI Image Editor with Gemini 2.5 Flash ImageJan 7, 2026
Ultra-fast AI editing with precise local control and multi-image fusion on Nano Banana, powered by Gemini 2.5 Flash Image. Start free.
Nano Banana Pro is the best AI image generator, with caveatsJan 3, 2026
The problem with Nano Banana Pro is that it’s too good.
Nano Banana can be prompt engineered for extremely nuanced AI image generationJan 3, 2026
Nano Banana allows 32,768 input tokens and I’m going to try to use them all dammit.
GenAI Image Editing ShowdownOct 27, 2025
Useful collection of examples by Shaun Pedicini who tested Seedream 4, Gemini 2.5 Flash, Qwen-Image-Edit, FLUX.1 Kontext [dev], FLUX.1 Kontext [max], OmniGen2, and OpenAI gpt-image-1 across 12 image editing prompts. …
Introducing 4o Image GenerationMar 25, 2025
At OpenAI, we have long believed image generation should be a primary capability of our language models. That’s why we’ve built our most advanced image generator yet into GPT‑4o. The result—image generation that is not only beautiful, but useful.
5 AI Image Generators You Can Use NowJan 18, 2025
AI art generation has entered an era of evolution over revolution
Google Whisk lets you turn any image into a plushie or stickerDec 17, 2024
Google has launched a new AI image generation tool called Whisk, which allows users to create visual outputs from existing
Create Your Own AI Image Generator App With JavaScript and DALL-E 3May 28, 2024
In this tutorial, we’ll build an AI image-generation app with JavaScript. Users will enter text describing the image they want, then behind the scenes we’ll call the DALL-E 3 API to generate it!
The Basics of AI Image Generation: How to create your own AI-generated imagFeb 29, 2024
This article was co-authored by @makkukuma Introduction The proliferation of Artificial...
OpenAI Unveils DALL·E 3: A Revolutionary Leap in Text-to-Image GenerationSep 24, 2023
In a significant technological leap, OpenAI has announced the launch of DALL·E 3, the latest iteration in their groundbreaking text-to-image generation technology. With an unprecedented capacity to understand nuanced and detailed descriptions, DALL·E 3 promises to revolutionize the creative landscape by allowing users to translate their textual ideas into astonishingly accurate images effortlessly. DALL·E 3 is currently in research preview, offering a tantalizing glimpse into its capabilities. However, the broader availability of this cutting-edge technology is set for early October, when it will be accessible to ChatGPT Plus and Enterprise customers through the API and Labs later in the fall.
Comparison: DALL-E 3 vs MidjourneySep 24, 2023
DALL-E 3, the latest version of OpenAI's ground-breaking generative AI visual art platform, was just announced with groundbreaking features, including
10 AI Deepfake Generators for Photo and Video in 2023Sep 17, 2023
Video and audio recordings of people saying or doing things they never said or did can be created using AI deepfake generators and software tools that use artificial intelligence to make convincing fakes. A neural network is trained using a massive collection of authentic media featuring the target individual to accomplish this. The web is trained to recognize individuals and imitate their appearance, speech, and behavior. There is a wide range of potential good and bad uses for AI deepfake generators. You can use them to make comedic videos or instructional materials. Here are some AI deepfake generators for photos
Midjourney pricing plans and free alternatives to tryJul 28, 2023
Navigating the maze of pricing plans for digital services can sometimes be a daunting task. Today, we are unveiling Midjourney
Meta reveals new AI image generation model CM3leon, touting greater efficieJul 23, 2023
Looking at the sample sets of generated images that Meta has shared in its blog post about CM3leon, the results are impressive.
The ultimate Midjourney video generation guideJul 18, 2023
Midjourney now offers the ability to manifest the evolution of your AI-generated images into a concise Midjourney video. This captivating
Where to look for the best Midjourney images?Jul 18, 2023
Do you want to generate Midjourney images, but don't you know what to do and what you can do exactly
There’s a new version of Stable Diffusion, and it’s truly amazingApr 19, 2023
We found the best new creative tools using generative AI, so you don't have to. This week's big news? The new Stable Diffusion XL is now available.
How to use Midjourney to generate AI images | Digital TrendsApr 9, 2023
AI-generated images have never been more popular, and Midjourney is one of the best tools. Here's how to access the AI and what to know about using it.
Midjourney Quick Start GuideApr 9, 2023
Learn how to use the text-to-image service, Midjourney on Discord or the web to create custom images from simple text prompts.
The Company Behind Stable Diffusion Appears to Be At Risk of Going UnderApr 8, 2023
Stability AI, a startup that helped develop popular open-source image generator Stable Diffusion, is in serious trouble, Semafor reports.
Hands-on Generative AI with GANs using Python: Image GenerationMar 31, 2023
Learn how to implement GANs with PyTorch to generate synthetic images
What Are Latent Diffusion Models? How Founders Should Think ... - CrunchbasFeb 17, 2023
Generative AI is a hot topic in the tech startup world, and the ongoing advancement of latent diffusion models only expands its use cases.
Paper Review: A Deep Dive into ImagenFeb 3, 2023
A critical analysis of Google’s impressive new text-to-image generation tool
AI Spits Out Exact Copies of Training Images, Real People, Logos, ResearcheFeb 3, 2023
The regurgitation of training data exposes image diffusion models to a number of privacy and copyright risks.
AI image generation tech can now create life-wrecking deepfakes with easeDec 10, 2022
AI tech makes it trivial to generate harmful fake photos from a few social media pictures.
Deep Convolutional GAN — How to Use a DCGAN to Generate Images in PythonJul 14, 2022
An overview of DCGAN architecture with a step-by-step guide to building it yourself
Face to Face With Dall-E, The AI Artist That Might Change The WorldJun 4, 2022
Dall-E can illustrate just about anything using a short text prompt. Should it?
NVIDIA NeRF AI Renders Amazingly Realistic 3D Scenes From 2D Photos In JustMar 26, 2022
It takes a human being around 0.1 to 0.4 seconds to blink. In even less time, an AI-based inverse rendering process developed by NVIDIA can generate a 3D scene from 2D photos.
A Guide to Genetic ‘Learning’ Algorithms for OptimizationJun 23, 2021
Reconstructing Images using Reinforcement Learning and Genetic Algorithms
State-of-the-Art Image Generation ModelsMar 5, 2021
I have aggregated some of the SotA image generative models released recently, with short summaries, visualizations and comments. The overall development is summarized, and the future trends are spe…
Browse the State-of-the-Art in Machine Learning | Papers With CodeDec 21, 2020
**Image Generation** (synthesis) is the task of generating new images from an existing dataset. - **Unconditional generation** refers to generating samples unconditionally from the dataset, i.e. $p(y)$ - **[Conditional image generation](/task/conditional-image-generation)** (subtask) refers to generating samples conditionally from the dataset, based on a label, i.e. $p(y|x)$. In this section, you can find state-of-the-art leaderboards for **unconditional generation**. For conditional generation, and other types of image generations, refer to the subtasks. ( Image credit: [StyleGAN](https://github.com/NVlabs/stylegan) )
Nvidia’s GauGAN has been used to create 500,000 imagesAug 5, 2019
Nvidia's GauGAN tool has been used to create more than 500,000 images, the company announced at the SIGGRAPH 2019 conference in Los Angeles.
Learning to write programs that generate imagesJun 8, 2018
Through a human’s eyes, the world is much more than just the images reflected in our corneas. For example, when we look at a building and admire the intricacies of its design, we can appreciate...
image-segmentation
Image Segmentation: An In-Depth GuideOct 19, 2023
How can you get a computer to distinguish between different types of objects in an image? A step-by-step guide.
Image Processing with Python — Using RG ChromaticityFeb 1, 2021
How to use the Gaussian Distribution for Image Segmentation
image-to-text
Comparing 4 Image-to-text AI ToolsOct 13, 2023
Drop a photo into an AI vision technology tool and receive product descriptions, social media captions, and more. We test four leading providers.
6 Image-to-text Tools, AI-poweredJul 24, 2023
Generating text from images accelerates accessibility, SEO, social media captions, language translation, and more.
images
An unprocessed imageJan 1, 2026
The Hidden Psychology of Netflix ThumbnailsNov 27, 2025
AddText — Captions for your photos, quick and easyNov 6, 2025
Easy-to-use tool for adding text and captions to your photos. Create memes, posters, photo captions and much more!
Image Dithering: Eleven Algorithms and Source CodeOct 24, 2025
Dithering is still a surprisingly applicable technique, not just for practical reasons (such as preparing a full-color image for output on a non-color printer), but for artistic reasons as well. Dithering also has applications in web design, where it is a useful technique for reducing images with high color counts to lower color counts, reducing file size (and bandwidth) without harming quality. It also has uses when reducing 48 or 64bpp RAW-format digital photos to 24bpp RGB for editing.
User:Birdman86 - Wikimedia CommonsOct 22, 2025
Markdown Image Uploads with EasyMDE and Active Storage - AvoApr 29, 2025
Learn how to add image uploads to a markdown field using the EasyMDE editor, Rails and Active Storage.
What is Fréchet inception distance (FID)? - DataconomyApr 17, 2025
Fréchet Inception Distance (FID) is a metric that quantifies the quality and diversity of images generated by GANs by comparing feature representations.
Are Product Images Vital for Brick-and-Mortar Stores?Apr 2, 2025
Regarding marketing and selling products to consumers, product imagery is unquestionably one of the most important selling points. When considering the prevalence and dominance of e-commerce and digital shopping channels, traditional brick-and-mortar retail stores may question where this leaves them. There is an argument to be made regarding the benefits of seeing physical products up […]
Image Processing With the Python Pillow Library – Real PythonJan 8, 2025
In this step-by-step tutorial, you'll learn how to use the Python Pillow library to deal with images and perform image processing. You'll also explore using NumPy for further processing, including to create animations.
Shutterstock pioneers ‘research license’ model with Lightricks, lowering barriers to AI training dataDec 13, 2024
Shutterstock launches innovative "research license" model with Lightricks, making ethical AI training data more accessible for startups while ensuring fair compensation for creators.
GIMP 3.0 - a Milestone For Open-Source Image Editing - SlashdotNov 29, 2024
LWN: The long-awaited release of the GNU Image Manipulation Program (GIMP) 3.0 is on the way, marking the first major update since version 2.10 was released in April 2018. It now features a GTK 3 user interface and GIMP 3.0 introduces significant changes to the core platform and plugins. This releas...
How to Reverse Image Search With Google ImagesOct 27, 2024
You can use images to do Google Searches too.
OranLooney.comJul 8, 2024
Carabiner CollectionJun 20, 2024
“The” Midjourney model personalization guideJun 12, 2024
Midjourney model personalization is now live, offering you a more tailored image generation experience by teaching the AI your preferences.
Background Enhancement Tool Turns Any Photo Into a Studio-Quality Product IJun 5, 2024
eBay’s new AI-powered feature makes it simple for sellers to create beautiful listings that reflect their brand and help grow their business.
Image Data Preprocessing Techniques You Should KnowJun 5, 2024
In this article, I'll take you through the essential image data preprocessing techniques you should know with implementation using Python.
Image Effects With HTML CanvasMay 7, 2024
HTML Canvas is an element I don't see very often in the wild, but when I do, there's always something...
7 Tips for Memorable and Easy-to-Understand ImageryMay 4, 2024
A few relevant, high-quality visuals placed next to associated text can boost users’ comprehension of your content and its memorability.
Responsive Images – The Definitive GuideApr 11, 2024
A practical guide to responsive image best practices. By a responsive designer with 20+ years web experience.
Implementing Bloom Effect with Mapbox and Three.jsApr 9, 2024
Bloom effects are typically used to enhance the brightness and lighting effects of images or scenes,...
Stunning Photos from Dick Smith’s Do-It-Yourself Monster Make-Up Handbook PApr 1, 2024
"I wrote this book originally in 1965 to show young people how to have fun doing simple monster make-ups. It was published as a 60s magazine and was sold for many years as a back issue. I’ve been a professional makeup artist now for forty years but I still remember the thrill I had making myself
Midjourney now has the feature that everyone wantsMar 15, 2024
Keeping characters looking the same across different scenes and styles has always been tricky. But now, with the new Midjourney
How to spot a manipulated imageMar 11, 2024
Here are some clues that can help you identify if an image has been altered or faked.
The Ultimate Guide to Free SVG GeneratorsMar 11, 2024
SVG (Scalable Vector Graphics) stand out for their crispness and scalability, making them...
Luster LostMar 3, 2024
Pondering the way that physical objects, like newspapers and photos, degrade over time, and why digital objects won’t fade in exactly the same way.
Converting an Image into ASCII Art MasterpieceFeb 29, 2024
While browsing Stack Overflow, I generally browse one or two links from the sidebar 'Hot Network Questions'. It brings me to several interesting topics, not necessarily related to development. And this time, I found an interesting post: how do ASCII art image conversion algorithms work?
How to Draw with JavaScript on an HTML Canvas Element – Beginner's GuideFeb 14, 2024
There are many ways to code graphics for the web. You can create art with CSS. You can code an SVG image as part of an HTML file. Or you can generate graphics from JavaScript using the Canvas API. In this article, we'll explore how to use JavaScript ...
Beautiful Free Images & Pictures | UnsplashFeb 10, 2024
Beautiful, free images and photos that you can download and use for any project. Better than any royalty free or stock photos.
Advanced image SEO: A secret manualFeb 7, 2023
Learn how search engines process images and key image SEO tactics to implement from this comprehensive overview.
Transparent Pricing for Commercial Earth Observation Imagery | SkyFiJan 22, 2023
SkyFi offers straightforward pricing with small area of interest flexibility. Our web and mobile app also has transparent dynamic pricing – no email required.
[1702.04680v1] Visual Discovery at PinterestDec 21, 2022
Over the past three years Pinterest has experimented with several visual search and recommendation services, including Related Pins (2014), Similar Looks (2015), Flashlight (2016) and Lens (2017)....
GIFs Without the .gif: The Most Performant Image and Video Options Right NoSep 30, 2022
So you want an auto-playing looping video without sound? In popular vernacular this is the very meaning of the word GIF. The word has stuck around but the
Finding an Image on a Web Page | TestComplete DocumentationSep 20, 2022
Create and run automated tests for desktop, web and mobile (Android and iOS) applications (.NET, C#, Visual Basic .NET, C++, Java, Delphi, C++Builder, Intel C++ and many others).
Placeholder.com: Placeholder.com – The Free Image Placeholder Service FavouSep 16, 2022
One place to search and find your next commercial real estate rental. List your property on Placeholder and get get access to our wide distribution channel network.
How a Preview Image Increased a Landing Page's Conversion Rate by 359% - Search Engine WatchJul 18, 2022
Using Google’s new “Google Experiments” for A/B testing confirmed a hypothesis that a landing page with a preview image will have a higher conversion rate than a landing page without the preview image. Here’s how you can conduct your own test.
15 Tools to Optimize Ecommerce ImagesJul 18, 2022
Does your website have an acceptable load time? Images usually account for most of the downloadable bytes on a page. Optimizing your images can yield a
How Imagen Actually WorksJul 5, 2022
Learn how Imagen generates photorealistic images given only a text description.
Neil Patel's Digital Marketing BlogJun 29, 2022
Your #1 resource for digital marketing tips, trends, and strategy to help you build a successful online business.
Similarity-Based Image Search for Visual ArtMay 28, 2022
Evaluating similarity of visual art from both human perceptual & quantitative judgments
The Craft of Artisanal Computer ManufacturingFeb 25, 2022
Stefany Allaire has carved a niche in small-batch, retro-inspired computers
Visual Tools To Aid Your Daily Inspirational ProcessFeb 20, 2022
Today we have gathered together a small but interesting toolkit which is going to help you find and harness the inspiration you need on a daily basis. The creative process for web designers is unrelenting,...
How to Film and Photograph for Usability: UX Details for Videos and ImagesJan 17, 2022
Consider how your audience will be using the visuals to determine the optimal camera angle, set the right tone, choose the right props, and maintain attention.
Responsive images - Learn web development | MDNDec 26, 2021
That's a wrap for responsive images — we hope you enjoyed playing with these new techniques. As a recap, there are two distinct problems we've been discussing here:
Image Kernels explained visuallyDec 8, 2021
Camera sensor size: Why does it matter and exactly how big are they?Dec 7, 2021
The megapixel myth has treated camera manufacturers well over the years, those ever increasing, and often meaningless, numbers have sold millions of cameras. But consumers are getting wise to it. We've all seen dodgy images from high megapixel cameras and know that after a point, megapixels don't matter for most people – a 16 MP compact isn't ever going to be as good as a 12 MP Full Frame DSLR. What does matter is sensor size!
Frequencies%20 presentationDec 6, 2021
Product Photography, Part 14: Optimizing for Speed, SearchNov 29, 2021
The final step in product photography is optimizing the images for search engines and page speed. This is the 14th installment in my series on helping ecommerce merchants create better product images. In this post, I'll address making your photos faster to download and more visible in Google's image search.
Converting and Optimizing Images From the Command Line | CSS-TricksNov 29, 2021
Images take up to 50% of the total size of an average web page. And if images are not optimized, users end up downloading extra bytes. And if they’re
How Pinterest utterly ruined photo search on the internetNov 9, 2021
The social media site is the bane of non-users’ lives, hijacking image search results with a pushy sign-up screen. It needs to stop.
A True Story About Bogus Photos of People Making Fake NewsOct 18, 2021
A photographer set out to capture the misinformation producers in a small town in Macedonia. He wound up revealing uncomfortable truths about his own profession.
art - Google SearchMay 28, 2021
Image codecsFeb 25, 2021
5.5M subscribers in the coolguides community. Picture based reference guides for anything and everything. If it seems like something someone might…
SVG Repo - Free SVG Vectors and IconsFeb 12, 2021
Free Vectors and Icons in SVG format. ✅ Download free mono or multi color vectors for commercial use. Search in 500.000+ Free SVG Vectors and Icons.
Image Processing with Python — Template Matching with Scikit-ImageJan 30, 2021
How to identify similar objects in your image
Image Processing with Python — Blob Detection using Scikit-ImageJan 28, 2021
How to identify and segregate specific blobs in your image
10 fabulous free apps for working with audio, video, and imagesJan 25, 2021
Whether you just need to crop a photo or are ready to edit an ambitious video, you can get the job done without paying a dime.
Image Processing with Python — Blurring and Sharpening for BeginnersJan 2, 2021
How do you apply convolution kernels to colored images?
Introduction to Image Processing with Python — Dilation and Erosion for BegDec 29, 2020
A deeper look into the fundamentals of image dilation and erosion with the use of kernels.
16 Tools to Sell Products on PinterestDec 25, 2020
Pinterest provides tools to help merchants promote and sell products. Here is a list of tools for creating shops, product catalogs, ad campaigns, live events, and more.
How to make an animated GIF map in Python using Folium and ImageioDec 18, 2020
A visual analysis of Brazilian Higher Education history
Gifsicle: Command-Line Animated GIFsJul 30, 2020
Gifsicle is a powerful, simple command line tool for creating, editing, and optimizing animated GIFs.
Image Segmentation With 5 Lines 0f CodeJun 1, 2020
Computer vision is evolving on a daily basis. Popular computer vision techniques such as image classification and object detection have been used extensively to solve a lot of computer vision…
Ultra-High Resolution Image Analysis with Mesh-TensorFlowMar 9, 2020
Posted by Le Hou and Youlong Cheng, Software Engineers, Google Research Deep neural network models form the backbone of most state-of-the-art ima...
Easy Image Dataset Augmentation with TensorFlow - KDnuggetsMar 9, 2020
What can we do when we don't have a substantial amount of varied training data? This is a quick intro to using data augmentation in TensorFlow to perform in-memory image transformations during model training to help overcome this data impediment.
Guide To Using Reverse Image Search For InvestigationsFeb 19, 2020
Reverse image search is one of the most well-known and easiest digital investigative techniques, with two-click functionality of choosing “Search Google for image” in many web browsers. This method has also seen widespread use in popular culture, perhaps most notably in the MTV show Catfish, which exposes people in online relationships who use stolen photographs […]
TinyPNG – Your account dashboardFeb 19, 2020
ImageOptim — better Save for WebFeb 19, 2020
A free app that makes images load faster and take less disk space, without sacrificing quality. Removes private EXIF data from photos and improves compression.
The Hidden Signs That Can Reveal a Fake PhotoFeb 9, 2020
A picture may say a thousand words, but what if the photograph has been fabricated? There are ways to spot a fake – you just have to look closely enough.
[D] Tools/Techniques for Efficiently Sorting Image DataDec 14, 2019
I'm planning on sorting ~100,000 images to use as data for a computer vision application. With this much data, shaving a little time off of each…
LAug 29, 2019
Non-standard Product Images Can Spur SalesAug 23, 2019
Quality product photos are crucial to selling online. Since they cannot physically touch an item, shoppers need to see all the core details. To maximize sales of a product, though, you need multiple types of images — beyond studio shots. Here are three types of non-standard photos that encourage sales.
The Camera as the App LayerMay 12, 2019
Your phone increasingly knows what you’re taking a picture of. And which apps you have installed. So…
The Case for Optimizing Image PerformanceApr 16, 2019
For ecommerce, pictures can showcase products, inspire customers, and boost conversion rates. For web performance, however, pictures can hurt page load
Is it a Duck or a Rabbit? For Google Cloud Vision, it depends how the image is rotated. [OC]Mar 10, 2019
27K votes, 533 comments. 21M subscribers in the dataisbeautiful community. DataIsBeautiful is for visualizations that effectively convey information…
Remove Background from Image for Free – remove.bgDec 23, 2018
Remove image backgrounds automatically in 5 seconds with just one click. Don't spend hours manually picking pixels. Upload your photo now & see the magic.
Spotting AI-generated facesDec 22, 2018
Computers can generate faces that look real. What a time to be alive. As it becomes easier to do so, you can bet that the software will be used at some point for less innocent reasons. You should p…
The Art Institute of Chicago Has Put 50,000 High-Res Images from Their Collection OnlineNov 16, 2018
The Art Institute of Chicago recently unveiled a new website design. As part of their first design upgrade in 6 years, they have placed more than 52,000 high-resolution images from their collection online, available to all comers without restr
10 photos that blew the competition away at the Siena International Photo Awards.Oct 17, 2018
These images captures something astounding, magical, true, or important about the world.
Sorting Visualizations - Album on ImgurJun 8, 2018
Discover topics like sorting, visualization, rainbow, algorithms, satisfying, and the magic of the internet at Imgur, a community powered entertainment destination. Lift your spirits with funny jokes, trending memes, entertaining gifs, inspiring stories, viral videos, and so much more from users like FishyMcFishFace.
Building an image search with Algolia & Google’s Vision APIJun 8, 2018
Build an 'auto-tagging' image search service using Algolia and Google Cloud's Vision API
Understanding resolution and MTFJun 8, 2018
A visual approach to understanding resolution based on MTF (modulation transfer function) curves.
Multi-label classification with Keras - PyImageSearchMay 12, 2018
In this tutorial you will learn how to perform multi-label classification using Keras, Python, and deep learning.
TinEye Reverse Image SearchMar 16, 2018
Best Social Media Image Size Chart 2018Dec 28, 2017
It's impossible to remember the required size of images uploaded to Facebook, Twitter and other social media sites. To end your confusion, we offer the Best Social Media Size Chart. Continue reading
Image Convolution in R using MagickDec 27, 2017
Release 1.4 of the magick package introduces a new feature called image convolution that was requested by Thomas L. Pedersen. In this post we explain what this is all about. Kernel Matrix The new image_convolve() function applies a kernel over the image. Kernel convolution means that each pixel value is recalculated using the weighted neighborhood sum defined in the kernel matrix. For example lets look at this simple kernel: library(magick) kern % image_negate() As with the blurring, the original image can be blended in with the transformed one, effectively sharpening the image along edges. img %>% image_convolve('DoG:0,0,2', scaling = '100, 100%') The ImageMagick documentation has more examples of convolve with various avaiable kernels.
Image Processing and Manipulation with magick in RDec 27, 2017
‘ImageMagick’ is one of the famous open source libraries available for editing and manipulating Images of different types (Raster & Vector Images). magick is an R-package binding to ‘ImageMagick’ for Advanced Image-Processing in R, authored by Jeroen Ooms. magick supports many common image formats like png, jpeg, tiff and manipulations like rotate, scale, crop, trim, […] Related Post Analyzing the Bible and the Quran using Spark Predict Customer Churn – Logistic Regression, Decision Tree and Random Forest Find Your Best Customers with Customer Segmentation in Python Principal Component Analysis – Unsupervised Learning ARIMA models and Intervention Analysis
Japanese Vending Machines at Night Juxtaposed with a Wintry Hokkaido LandscOct 6, 2017
“In Hokkaido where I live, winters are harsh and snows are deep,” says photographer Eiji Ohashi. “Every day can become rather inconvenient” due to the constant snowfall. But heavy snows also bring wintry wonderlands and the discovery of small pleasures. One snowy night. Ohashi was walking
imagination
The Running Conversation in Your HeadMar 29, 2023
What a close study of “inner speech” reveals about why humans talk to themselves.
Why Your Brain Isn't Into the Future - NautilusNov 5, 2022
What you can’t imagine clearly, you value less.
How Do You Make the Perfect Toy? | The WalrusSep 29, 2022
Fads come and go, but how to create a toy that stands the test of time is the billion-dollar question
imposter-syndrome
Reverse impostor syndromeOct 1, 2025
Imposter syndrome is other people thinking you’re good, but you don’t believe it yourself. Reverse imposter syndrome is knowing you are good, but others don’t see it from the outside.
Why Everyone Feels Like They’re Faking ItFeb 10, 2023
The concept of Impostor Syndrome has become ubiquitous. Critics, and even the idea’s originators, question its value.
MediumJan 17, 2022
MediumJan 30, 2021
india
Payday lenders are using illegal apps on Google Play to harass and publicly shame borrowers in IndiaFeb 3, 2021
Since November 2020, at least 11 Indians have died by suicide after being targeted by illegal payday lenders.
Walking the Path of the Buddha in a Neglected Corner of IndiaAug 17, 2019
One man’s dream of bringing enlightenment back to its forgotten birthplace.
inference
Taalas is replacing programmable GPUs with hardwired AI chips to achieve 17,000 tokens per second for ubiquitous inference - MarkTechPostFeb 23, 2026
Taalas is replacing programmable GPUs with hardwired AI chips to achieve 17,000 tokens per second for ubiquitous inference
Impact Of On-Chip SRAM Size And Frequency On Energy Efficiency And Performance of LLM Inference (Uppsala Univ.)Jan 4, 2026
A new technical paper titled “Prefill vs. Decode Bottlenecks: SRAM-Frequency Tradeoffs and the Memory-Bandwidth Ceiling” was published by researchers at Uppsala University. Abstract “Energy consumption dictates the cost and environmental impact of deploying Large Language Models. This paper investigates the impact of on-chip SRAM size and operating frequency on the energy efficiency and performance of... » read more
What is AI Inference? A Technical Deep Dive and Top 9 AI Inference Providers (2025 Edition)Aug 18, 2025
What is Artificial Intelligence AI Inference? A Technical Deep Dive and Top 9 AI Inference Providers (2025 Edition)
Grokking Groq’s GroqnessFeb 22, 2024
Startup Groq has developed an machine learning processor that it claims blows GPUs away in large language model workloads – 10x faster than an Nvidia GPU at 10 percent of the cost, and needing a tenth of the electricity. Update: Groq model compilation time and time from access to getting it up and running clarified. […]
Groq Inference Tokenomics: Speed, But At What Cost?Feb 22, 2024
Faster than Nvidia? Dissecting the economics
Resource Round-Up: Causal Inference | Emily RiedererMar 14, 2021
Free books, lectures, blogs, papers, and more for a causal inference crash course
ML beyond Curve Fitting: An Intro to Causal Inference and do-CalculusJun 8, 2018
Since writing this post back in 2018, I have extended this to a 4-part series on causal inference: * ➡️️ Part 1: Intro to causal inference and do-calculus [https://www.inference.vc/untitled] * Part 2: Illustrating Interventions with a Toy Example [https://www.inference.vc/causal-inference-2-illustrating-interventions-in-a-toy-example/] * Part 3: Counterfactuals [https://www.inference.
influence-persuasion
The stranger secret: how to talk to anyone – and why you shouldMar 2, 2026
Forget fear of public speaking. A lot of people now shy away completely from speaking to anyone in public. But if we learn to do this it’s enriching, for ourselves and society
Sarcasm self-defeatsFeb 23, 2026
Sarcasm is an easy way to amplify feedback. It has two hidden costs: It reveals low status. People with power don’t need to use sarcasm to make a point. If you want to lead with status, using…
Question behind the questionFeb 18, 2026
Your ability to answer questions is a competitive advantage. Here’s how to uncover the deeper underlying question.
How to coach your team (without making them defensive)Feb 4, 2026
When I give honest feedback, I don’t want people to argue with me. Here's a simple technique I use so my direct reports are more likely to listen with an open mind.
The Approval EconomyJan 14, 2026
Why every purchase is a performance “I am not who you think I am; I am not who I think I am; I am who I think you think I am.” — Thomas Cooley About a month ago, I published what has become my mo…
‘If you don’t like dark roast, this isn’t the coffee for you’: How exclusionary ads can win over the right customersJan 13, 2026
By openly saying, ‘This isn’t for you,’ brands signal focus and specificity. That helps the right customers feel a stronger connection.
The Hidden Psychology of Netflix ThumbnailsNov 27, 2025
The art of reading mindsOct 24, 2025
Have you ever wanted to read someone's mind? Mentalist Oz Pearlman is billed as one of the world's greatest mind readers ... and yet, he says he doesn't have any special powers. In this spectacular talk meets psychic-inspired magic show, he demonstrates his skills on a live audience in the theater — and shows how anyone can learn the principles of mentalism.
Winning with misinformation: New research identifies link between endorsing easily disproven claims and prioritizing symbolic strengthOct 15, 2025
Conversations around misinformation that assume everyone cares about literal truth may be missing the point.
21 Facts About Throwing Good PartiesOct 2, 2025
Parties are a public service; here's how to throw them.
The Only Right Way to Ask for an Intro (Everything Else Is Wrong)Sep 15, 2025
intro requests that don’t suck
These Dance Moves Can Make You More AttractiveSep 3, 2025
In two studies, Northumbria University set out to identify which dance moves heterosexual men and women find the most attractive.
Can We Fix Social Media? Testing Prosocial Interventions using Generative Social SimulationAug 14, 2025
Why Smart People Fall for False Information and What to do About ItAug 5, 2025
UCSF’s Joseph Pierre, MD, unveils why even bright minds embrace false information. His new book, "False," dissects cognitive biases and our digital world’s role, offering a powerful three-step approach to navigate the post-truth era and rediscover common ground.
He Claims He’s the ‘Sports Betting King.’ What Are the Odds?Jul 19, 2025
Mazi VS has become a major influencer by flaunting his expensive lifestyle and his big-winning wagers. Other gamblers say he can’t be what he seems.
You are wasting your warm introsApr 23, 2025
Your note sucks because you don't sound sincere. Do these 6 things to make your note more persuasive before you hit send.
12 tactic to become more leaderlike influential and charismaticApr 22, 2025
An in-depth breakdown of charismatic leadership tactics and how to tap into your own charisma when speaking in public.
How to Stage a CoupDec 15, 2024
"I'm now going to offer you a megalomaniac explanation of the course of events"
How to give a senior leader feedback (without getting fired)Nov 24, 2024
There’s a right and wrong way to proceed. Here’s how to increase the chances your leader listens and takes action--while reducing the chance they feel threatened.
How Snake Oil Became a Symbol of Fraud and DeceptionOct 25, 2024
The terms “snake oil” and “snake-oil salesperson” are part of the vernacular thanks to Clark Stanley, a quack doctor who marketed a product for joint pain in the late 19th century
Influence: The unseen key behind powerful persuasionOct 19, 2024
Forty years ago, Bob Cialdini published a groundbreaking book on the power of influence. In our digital age, these rules may have become even more powerful.
Chapter Two - Construal of power as opportunity or responsibilityMay 21, 2024
Powerholders make decisions that impact not only their own situation, but also the outcomes of those who depend on them. The implications of being in …
The Diminishing Returns of Having Good TasteMay 5, 2024
The internet makes most information instantly available. What if that’s why mass culture is so boring?
The art of persuasive storytelling | Kelly D. ParkerApr 26, 2024
"Storytelling is one of the most powerful marketing and leadership tools there is," says communications expert Kelly D. Parker. She explains how stories make proposals of all kinds more memorable — and shows how you can craft a compelling narrative to connect, persuade and drive meaningful action.
The Dictator’s Handbook: 3 Steps to Being a DictatorApr 16, 2024
If you are looking for The Dictator's Handbook, this post provides you a summary, overview and criticism of one of the best works of political analysis
The Laws of Human Nature by Robert Greene - Summary & NotesApr 16, 2024
Detailed notes and summary for The Laws of Human Nature by Robert Greene. Another in-depth book with timeless principles to better understand and navigate life.
How great leaders inspire action | Simon Sinek | TEDMar 24, 2024
Visit http://TED.com to get our entire library of TED Talks, transcripts, translations, personalized talk recommendations and more.
Simon Sinek presents a simple but powerful model for how leaders inspire action, starting with a golden circle and the question "Why?" His examples include Apple, Martin Luther King, and the Wright brothers -- and as a counterpoint Tivo, which (until a recent court victory that tripled its stock price) appeared to be struggling.
The TED Talks channel features the best talks and performances from the TED Conference, where the world's leading thinkers and doers give the talk of their lives in 18 minutes (or less). Look for talks on Technology, Entertainment and Design -- plus science, business, global issues, the arts and more. You're welcome to link to or embed these videos, forward them to others and share these ideas with people you know.
Follow TED on Twitter: http://twitter.com/TEDTalks
Like TED on Facebook: http://facebook.com/TED
Subscribe to our channel: http://youtube.com/TED
TED's videos may be used for non-commercial purposes under a Creative Commons License, Attribution–Non Commercial–No Derivatives (or the CC BY – NC – ND 4.0 International) and in accordance with our TED Talks Usage Policy (https://www.ted.com/about/our-organization/our-policies-terms/ted-talks-usage-policy). For more information on using TED for commercial purposes (e.g. employee learning, in a film or online course), please submit a Media Request at https://media-requests.ted.com
Hiding the ‘aha’Mar 11, 2024
The most effective persuasion happens when we persuade ourselves. The purpose of the memo or the table or the graph or the presentation is to create the conditions for someone to make up their own …
How to Tackle Truth DecayMar 5, 2024
The social contract of trust between experts and society is in danger of dissolving. We need to start putting it back together.
Why Do East Asian Firms Value Drinking? - by Alice EvansMar 4, 2024
East Asian businesses often go out drinking.
Storytelling as a Craft: Advice from 5 Experts on How to Tell a CompellingMar 3, 2024
Every startup leader should practice flexing their storytelling muscles. To help warm these muscles up, we’ve rounded up some of our best advice about storytelling in business that’s been featured in the Review.
Ancient Greek antilogic is the craft of suspending judgmentMar 2, 2024
Sophists like Protagoras used the rhetoric of antilogic to escape from the illusion of truth and make room for uncertainty
Can these seven tips help you become a ‘supercommunicator’?Feb 27, 2024
What I learned after embarking on a week-long experiment using Charles Duhigg’s zippy psychology cum self-help book Supercommunicators to improve my conversational skills
Using this 1 word more often can make you 50% more influential, says HarvarFeb 22, 2024
A nearly 50-year-old Harvard University study found that the word "because" helps people make more persuasive requests. Here's why, says a Wharton professor.
Beyond dogwhistles – racists have a new rhetorical trickFeb 17, 2024
How are so many politicians today able to get away with overtly racist utterances? By using rhetorical ‘figleaves’
15 Quotes on the Unparalleled Power of ExampleFeb 5, 2024
Discover the power of examples in shaping our lives. Explore quotes on example and how they inspire us to reach new heights.
streisand effectFeb 3, 2024
Back in December, we wrote about Appin. We were not writing about the reports (of which there have been many) that the organization that started as a sort of cybersecurity training school, but morp…
How to give a eulogyJan 31, 2024
Here's how to give a eulogy, and other difficult speeches, according to a Stanford business school lecturer.
51 Propaganda Techniques Explained in 11 Minutes: From Cognitive DissonanceJan 10, 2024
The concept of propaganda has a great deal of power to fascinate. So does the very word propaganda, which to most of us today sounds faintly exotic, as if it referred mainly to phenomena from distant places and times.
The Sociological Eye: FIVE KINDS OF FRIENDSOct 6, 2023
The word “friends” has at least five different meanings: Allies Backstage intimates Fun friends Mutual interests friends Soc...
Currencies (On Motivating Different People) (Ed Batista)Oct 1, 2023
A theme in my practice is the leader who's seeking to increase employee motivation. In this context it's important to bear in mind the work of Frederick Herzberg, a 20th century psychologist who had a profound influence on our understanding...
8 Techniques in Persuasion from AntiquityOct 1, 2023
Persuasive rhetorical techniques from the speeches of Demosthenes in Classical Athens to Cicero in the Late Roman Republic.
The secret to successfully pitching an idea | Mar HershensonSep 25, 2023
Have a great idea but sure how to sell it? Investor and teacher Mar Hershenson has you covered. Whether it's sharing a new product with a client or vying for a promotion, these three steps will help you tell an irresistible story and get the "yes" you're looking for.
Talking About a Difficult Decision — When You Can’t Share All the DetailsAug 12, 2023
When you have to communicate a difficult organizational decision to employees, it’s hard to know how much information to provide when you can’t be fully transparent yet. Saying nothing can undermine people’s trust in your motives and compassion, whereas saying too much can leave people feeling overwhelmed and vulnerable as they struggle to process the information and implications. Striking the right balance between these two extremes is a tricky exercise for leaders. The author presents five strategies to help you figure out what to say and do when you can’t yet be fully transparent with your employees.
Mastering the Art of the RequestAug 6, 2023
Even the most effective leaders recognize how much is outside of their control, but one thing we all have agency over is how we communicate with others. Clearly articulated requests, the kinds that elicit real responses, don’t come naturally to most of us. As it turns out, there’s an art to the request — whether it’s directed at an employee who’s producing subpar deliverables or a colleague from a different department who hasn’t been pulling their weight on a collaborative project. Here’s why requests are so hard to make, what so many leaders are still getting wrong, and a handful of strategies for issuing requests that elicit concrete, actionable responses.
Networking is overrated and probably not worth doing … for most peopleAug 5, 2023
What-You-Knows are now more important than Who-You-Knows
How to (Actually) Change Someone’s MindJul 24, 2023
How do you convince someone who, for one reason or another, doesn’t see eye-to-eye with you?
The Secret History And Strange Future Of CharismaJul 24, 2023
How our culture, politics and technology became infused with a mysterious social phenomenon that everyone can feel but nobody can explain.
People Can Be Convinced They Committed a Crime That Never HappenedJun 18, 2023
Lab-based research shows that adults can be convinced, over the course of a few hours, that as teens they perpetrated crimes that never actually occurred.
Inside 4chan’s top-secret moderation machineJun 10, 2023
Internal company documents reveal how the imageboard’s chaotic moderation allowed racism and violence to take over.
What working as a military psychologist taught me about coaching peopleMay 31, 2023
3 tips for coaching people, from a former military psychologist
Watch Marjoe (1973) Full Movie Free Online - PlexMay 30, 2023
Plex has free movies and TV shows available with no sign up required.
6 Phrases Good Negotiators Use To Get Whatever They WantMay 19, 2023
Negotiation is tough. While no words work all the time, the following phrases can help keep you on track and serve notice to the other side.
How Your Body Posture Communicates Feelings to OthersMay 6, 2023
New research suggests that body postures can reveal our emotions to other people—and maybe even change how we feel inside.
The Magic of Knowing When to Use Concrete vs. Abstract Language - By Jonah Berger - Behavioral ScientistApr 25, 2023
When trying to make language either more concrete or more abstract, one helpful approach is to focus on either the how or the why.
Carl Braun on Communicating Like a Grown-UpMar 30, 2023
Industrial genius Carl Braun believed that clear thinking and clear communication go hand in hand. Here the guide on writing productively to get things done.
Why can’t Americans agree on, well, nearly anything? Philosophy has some answersMar 20, 2023
Two concepts can help explain why society seems increasingly unable to agree on basic facts.
3 Rhetorical Techniques to Increase Your ImpactMar 19, 2023
Technological advances in natural language processing, computational linguistics, and machine learning, combined with the digitization of everything from cover letters to conversations, have revolutionized our ability to analyze language, yielding unprecedented insights. Think of it as a new science of language. Many of the findings suggest that small changes in the words we use can increase our ability to persuade and influence others.
The best way to introduce yourselfMar 19, 2023
Following a simple, three-part framework can make your introductions smoother, easier, and more memorable.
Stand Out by Giving Feedback the Right WayMar 15, 2023
Most managers suck at giving feedback — it’s too infrequent and not actionable enough.
Bonhoeffer's "theory of stupidity": We have more to fear from stupid people than evil onesFeb 3, 2023
Bonhoeffer's "theory of stupidity" posits that we have more to fear from stupidity than evil. The latter is easier to defeat than the former.
How To Get An MBA From EminemJan 18, 2023
In 2002 I was driving to a hedge fund manager's house to hopefully raise money from him. I was two hours late. This was pre-GPS and I had no cell phone. I was totally lost. I kept playing over and over again "Lose Yourself" by Eminem. I was afraid this was my one shot and I was blowing it. I was even crying in my car. I was going broke and I felt this was my one chance. What a loser.
Conversation Skills Essentials – Tynan.comJan 3, 2023
The rules of improv can make you funnier. They can also make you more confident. : Life KitDec 8, 2022
Improv comedy is about more than making people laugh. It can help performers be more creative and self-assured — and combat anxiety, both on and off stage.
How Great Leaders CommunicateNov 23, 2022
Transformational leaders are exceptional communicators. In this piece, the author outlines four communication strategies to help motivate and inspire your team: 1) Use short words to talk about hard things. 2) Choose sticky metaphors to reinforce key concepts. 3) Humanize data to create value. 4). Make mission your mantra to align teams.
The Secret To Talking To Someone Who Always Gets DefensiveNov 22, 2022
Talking to someone who gets defensive can be frustrating. So, what can you do? Here's how to sidestep someone's personal fortifications.
A "psychological vaccine": Why prebunking is the best way to fight misinformationNov 21, 2022
By exposing people to small doses of misinformation and encouraging them to develop resistance strategies, "prebunking" can fight fake news.
'Persuasion Fatigue' Is a Unique Form of Social FrustrationNov 18, 2022
When people argue, a kind of frustration called persuasion fatigue can cloud their judgment and harm relationships
Hidden ways people drain another's energyNov 8, 2022
Examples of hidden ways people drain one other’s energy in social interaction—and what to do about it
The Psychologist | BPSOct 30, 2022
The magazine of the British Psychological Society - in print and online.
How to have better arguments | Psyche GuidesOct 1, 2022
Arguing well isn’t just about winning. A philosophical approach will help you and the other person get much more out of it
How to Figure Out the Power Dynamics in a New JobSep 1, 2022
When you join a new organization, it’s important to understand who holds the power because they directly impact how work gets done, but it’s not always perfectly clear. In this piece, the author offers strategies to better identify where the true power exists. “At first glance across your company, it’s natural to assume that those who have ‘chief’ or ‘senior’ in their titles are the ones that dominate the power landscape,” the author writes. “But this isn’t always the case.”
How I Learned to Talk to Aggressive People | by Savannah Carreno | Aug, 202Aug 31, 2022
As someone who researches American religion, I find myself in impassioned conversations quite often. Religion is a beautiful element that…
4 Ways to Communicate with More EmpathyAug 30, 2022
The pandemic and other stressful events over the past few years have only made empathic communications even more desirable and necessary, especially as those expressions have become more virtual — including videos, social media posts, and emails. But just as each of us has varying levels of empathy, not every leader is equally empathic. So is a lack of natural empathy a showstopper when it comes to expressing and benefitting from empathic communications? No. The good news is that all leaders (even those who are not naturally empathic) can communicate messages of empathy as powerfully as they convey messages of unity and accountability. During challenging times, the most effective leadership communications are ones that deliver attention, acknowledge distress, demonstrate care, and — not necessarily at first, but eventually — take appropriate action to mitigate the situation or at least provide comfort. This article offers four touchpoints to focus on in your communications.
Learnings of a CEO: Wade Foster, Zapier | Y CombinatorAug 17, 2022
Today, Zapier automates work by connecting with over 5,000 apps. The company has been profitable since 2014 and is valued at $5B – with 700 employees working remotely. Wade, Zapier CEO, shared his learnings growing into the role of a growth-stage CEO.
All time best interviews with accused fraudstersAug 14, 2022
One of my pastimes is listening to interviews with accused corporate fraudsters before and after they got caught.
What Keeps a Crowd from Becoming a Mob?Jul 29, 2022
Amid COVID, studies in Denmark suggest that crowds do not always engage in bad behavior—and that mass-gatherings sometimes offer meaningful connection
Be the Most Persuasive Person in the Room: 9 Things Highly Influential People Always Do, According to ScienceJul 19, 2022
Sometimes facts, logic, and reasoning aren't enough. Here's how the most persuasive people make a great argument even more convincing.
MediumJul 19, 2022
A Checklist of eCommerce TacticsJul 19, 2022
Free Online Guide - What drives online purchases? And how can you apply this information to boost conversions?
Tribal Leadership: The Key To Building Great TeamsJul 19, 2022
Have you ever wondered about internal organization dynamics and why some groups of people (who aren’t on the same team) are more successful than others? Why different “tribes” inside the organization seem to be at war with one another lowering performance in increasing politics? Why certain groups of people never seem to do anything? Or why …
The Nine Primary Tactics Used to Influence OthersJul 19, 2022
The Primary Tactics Used to Influence Others —The number one thing to understand about influence is that people make decisions for their reasons, not yours.
MediumJul 19, 2022
Use the "But You Are Free" Technique to Persuade AnyoneJul 19, 2022
There are lots of techniques for becoming more persuasive , but perhaps the simplest, most practical technique is the But You Are Free me
How Package Designers Use Science to Influence Your Subconscious MindJul 19, 2022
How do you sell shoppers on duck, a product that’s served in many restaurants but that many people do not feel comfortable cooking at home?
42 Rules to Lead by from the Man Who Defined Google's Product StrategyJul 19, 2022
Former Google SVP of Products Jonathan Rosenberg on the quintessential lessons every leader needs to learn.
Stop Overcomplicating It: The Simple Guidebook to Upping Your Management GameJul 18, 2022
Russ Laraway wades through all of the competing opinions, complex frameworks and advice out there on how to be a better manager, creating a simple, data-backed leadership toolkit.
How to sell to the 42 different archetypesJul 18, 2022
SummaryJul 18, 2022
21 Fascinating Persuasion Techniques That Boost Website ConversionsJul 18, 2022
Powerful communicators employ these persuasion techniques when designing online experiences that convert visitors into leads and sales.
The Best Management Memo … Ever! - DesignObserverJul 18, 2022
Owen Edwards on the most effective eight words he's ever read.
Managing Two People Who Hate Each OtherJul 18, 2022
How to minimize the drama and keep your team on track.
50+ examples of Robert Cialdini's 6 Principles Of Influence in marketingJul 18, 2022
76 votes, 15 comments. Some context: At marketing meetups, we've always heard people namedropping Dr. Robert Cialdini's 6 Principles Of Influence…
8 common traits of uncommon product leadersJul 18, 2022
I’ve found the following to be common (and not easily taught) in people whose product skills I admire.
Take Your Team From Worst To First: Leadership Lessons From The Boston Red SoxJul 18, 2022
John Farrell took his team from the bottom of their division last year to the 2013 World Series with a set of tactics every manager should learn.
A Story from Google Shows You Don’t Need Power to Drive StrategyJul 18, 2022
Five things you need instead.
You’re Already More Persuasive than You ThinkJul 18, 2022
Simple, direct requests get better results.
21st-Century Propaganda: A Guide to Interpreting and Confronting the Dark Arts of PersuasionJul 18, 2022
In the West, “rational propaganda” has become the primary form of political discourse.
Mentors Are The Secret Weapons Of Successful Startups | TechCrunchJul 18, 2022
“I’ve probably revised this investor pitch deck 200 times,” a founder told me recently. She’d met with more than 50 potential investors before closing a seed round last month. This might sound excessive to some, but her experience is not unusual. Entrepreneurs often spend hundreds of hours raising funds from angel and venture capital investors. While these activities are clearly important, analysis of new data on startups suggests that founders should also dedicate significant time to something that many people overlook: recruiting great mentors. This simple strategy can increase a company’s odds of success more than almost anything else.
To Fight Polarization, Ask, “How Does That Policy Work?” - Behavioral ScientistJul 18, 2022
When people discover that they don’t know as much as they thought they did, something interesting happens: their political attitudes become less extreme.
8 body-language tricks that are hard to master but will pay off foreverJul 18, 2022
Good body language is a crucial part of making an excellent first impression.
LappleApple/awesome-leading-and-managing: Awesome List of resources on leading people and being a manager. Geared toward tech, but potentially useful to anyone.Jul 18, 2022
Awesome List of resources on leading people and being a manager. Geared toward tech, but potentially useful to anyone. - LappleApple/awesome-leading-and-managing
4 Leadership Types That Can Destroy a Perfectly Good StrategyJul 18, 2022
The home of Process Excellence covers topics from Business Process Management (BPM) to Robotic Process Automation (RPA), AI, Lean Six Sigma and more. Latest news, freshest insight and upcoming events and webinars.
Real Leaders Don’t Do Focus GroupsJul 18, 2022
Apple is famous for not engaging in the focus-grouping that defines most business product and marketing strategy. Which is partly why Apples products and advertising are so insanely great. They have the courage of their own convictions, instead of the opinions of everyone else’s whims. On the subject, Steve Jobs loves to quote Henry Ford […]
14 Persuasive Writing Techniques That Trigger A ResponseJul 18, 2022
Here are 14 persuasive writing techniques that will make your website appeal to visitors and increase your conversion rates.
Moving Your Agenda | The Leading Blog: A Leadership BlogJul 18, 2022
Leadership Now is a leading source for leadership development and analysis. We believe that anyone can make a difference by leading from where they are.
How An Ancient Chinese War General Would Run Your Startup Better - MattermarkJul 18, 2022
"The success of your startup is determined before you ship a single line of code." Okay, you’re right, Sun Tzu, the ancient Chinese war general and author
Why Should Anyone Be Led by You?Jul 18, 2022
We all know that leaders need vision and energy, but after an exhaustive review of the most influential theories on leadership–as well as workshops with thousands of leaders and aspiring leaders–the authors learned that great leaders also share four unexpected qualities. The first quality of exceptional leaders is that they selectively reveal their weaknesses (weaknesses, not fatal flaws). Doing so lets employees see that they are approachable. It builds an atmosphere of trust and helps galvanize commitment. The second quality of inspirational leaders is their heavy reliance on intuition to gauge the appropriate timing and course of their actions. Such leaders are good “situation sensors”–they can sense what’s going on without having things spelled out for them. Managing employees with “tough empathy” is the third quality of exceptional leadership. Tough empathy means giving people what they need, not what they want. Leaders must empathize passionately and realistically with employees, care intensely about the work they do, and be straightforward with them. The fourth quality of top-notch leaders is that they capitalize on their differences. They use what’s unique about themselves to create a social distance and to signal separateness, which in turn motivates employees to perform better. All four qualities are necessary for inspirational leadership, but they cannot be used mechanically; they must be mixed and matched to meet the demands of particular situations. Most important, however, is that the qualities encourage authenticity among leaders. To be a true leader, the authors advise, “Be yourself–more–with skill.”
Consumers Are Becoming Wise to Your Nudge - Behavioral ScientistJul 18, 2022
New research indicates that consumers are catching on and may be annoyed by certain nudges, potentially limiting their effectiveness.
How to Make Your Product Scientifically Irresistible | Gainsight SoftwareJul 18, 2022
Your product can’t suck. That’s a given. But it’s also not enough to be a good product that doesn’t hook your customer and connect to their pain points.
The Tipping Point SummaryJul 18, 2022
The Tipping Point summary shows you why ideas spread like viruses, which 3 kinds of people are responsible for it & why no bad idea will ever spread.
Neil Patel's Digital Marketing BlogJul 18, 2022
Your #1 resource for digital marketing tips, trends, and strategy to help you build a successful online business.
Google’s Quest to Build a Better Boss (Published 2011)Jul 18, 2022
A company study found that a manager’s technical skills were far less valued by employees than people skills.
Why People Buy Perception And Not RealityJul 18, 2022
“Reality is merely an illusion, albeit a very persistent one.” ~ Albert Einstein It was well past 5pm and we were still at the office debating about how we should inspire our customers. We were debating the strategy to ‘be like Mike‘ or to ‘be like Joe.’ To be like Mike, meant we would only …
Lincoln on LeadershipJul 18, 2022
Fight the Good Fight The probability that we may fall in the struggle ought not to deter us from the support of a cause we believe to be just. Try Honey Before Vinegar If you would win a man to your cause, first convince him that you are his sincere friend. On the contrary … …
The Top 10 Psychology Books You Should ReadJul 18, 2022
The Nine Primary Tactics Used to Influence OthersJul 18, 2022
The Primary Tactics Used to Influence Others —The number one thing to understand about influence is that people make decisions for their reasons, not yours.
https://www.fastcompany.com/3016115/leadership-now/7-tough-leadership-lessons-from-a-navy-seal-commanderJul 18, 2022
“Get them to say no”: Expert lessons in influence from the most persuasive professions on earthJul 18, 2022
The job of a good storyteller, marketer, or writer is to pull one over on you. To make you believe what they’re saying, no matter how farfetched it might be.
Persuasion Triggers In Web Design — Smashing MagazineJul 18, 2022
How do you make decisions? If you're like most people, you'll probably answer that you pride yourself on weighing the pros and cons of a situation carefully and then make a decision based on logic. You know that other people have weak personalities and are easily swayed by their emotions, but this rarely happens to you. You've just experienced the [fundamental attribution error](https://en.wikipedia.org/wiki/Fundamental_attribution_error) — the tendency to believe that other people's behaviour is due to their personality (“Josh is late because he's a disorganised person”) whereas our behaviour is due to external circumstances (“I'm late because the directions were useless”). Cognitive biases like these play a significant role in the way we make decisions so it's not surprising that people are now examining these biases **to see how to exploit them in the design of web sites**. I'm going to use the term ‘persuasion architects' to describe designers who knowingly use these techniques to influence the behaviour of users. (Many skilled designers already use some of these psychological techniques intuitively — but they wouldn't be able to articulate why they have made a particular design choice. The difference between these designers and persuasion architects is that persuasion architects use these techniques intentionally).
7 Persuasion Tips For More Influence and Better Engagement - The Secret Product Manager HandbookJul 18, 2022
Use these 7 persuasion tips to instantly make your presentations, roadmaps, marketing and sales materials more compelling, engaging, and influential.
How to Get an MBA from Eminem? - James AltucherJul 18, 2022
In 2002 I was driving to a hedge fund manager’s house to hopefully raise money from him. I was two hours late. This was pre-GPS and I had no cell phone. I was totally lost. If you’ve never driven around Connecticut you need to know one thing: all the roads are parallel and they […]
Tap into the power to persuade by using these 6 techniques of clear and compelling speechJul 18, 2022
Politicians and other public figures deploy particular rhetorical devices to communicate their ideas and to convince people, and it’s time that we all learned how to use them, says speechwriter Sim…
How to Persuade Anyone of Anything in Ten Seconds - James AltucherJul 18, 2022
You’re on the most important elevator ride of your life. You have ten seconds to pitch- the classic “elevator pitch”. Love or Hate. Money or Despair. And you may never get this chance again. As PM Dawn says, “I feel for you. I really do.” There are books about this. But don’t waste your time. […]
The Ultimate Guide to Conversion Rate OptimizationJul 18, 2022
Follow this guide for everything you need to know about conversion rate optimization, how it works, and how to use it.
The Ten Golden Rules of Leadership: Classical Wisdom for Modern LeadersJul 18, 2022
The Ten Golden Rules of Leadership explores the classical figures to determine the ten crucial axioms of leadership. Rule 1. Know Theyself. Rule 2 ...
Beginner's Guide to Arguing ConstructivelyJul 18, 2022
How to turn arguments from vicious battles into productive dialogues.
Cultural Coaching: Knowing When to Shut UpJul 18, 2022
The American tendency to fill up quiet space is not a good strategy with the Chinese.
5 Non-Evil Ways To Get People To Do What You Want, From Dan Pink - Barking Up The Wrong TreeJul 18, 2022
Science has some answers about how to deal with difficult people. Here NYT bestselling author Dan Pink breaks down how to make people behave better.
How to Get Busy People to Take Action When You Send an EmailJul 18, 2022
We all get a lot of email. And we send off scores of them, too. For important emails we hope for replies or action. If you do the math on the number of inbound emails you get multiplied by the time…
What Marissa Mayer Brought to Yahoo That Can’t Be Bought or Sold | HackerNoonJul 5, 2022
In the least surprising news of 2016, Yahoo is selling its core business to Verizon for a sad $5 billion. Everyone knew this was coming — but for some reason, the headlines keep blaming Marissa.
The Science of Asking What People WantJul 5, 2022
Market research can extract plenty of data, but its greatest value is in evoking reactions
Howard Suber Of UCLA Film School Explains How To Tell A Story - Barking Up The Wrong TreeJul 5, 2022
Everything you need to know about Howard Suber Of UCLA Film School Explains How To Tell A Story
Neuro-Menus and Restaurant PsychologyJun 28, 2022
Restaurants are great test labs for testing neuromarketing techniques. It's easy to change offerings, menus, and pricing, and one gets immediate feedback on what's working and what's not. Today, many eateries are employing sophisticated menu psychology to maximize sales and profits.
One Big IdeaJun 28, 2022
I was enjoying a sazerac with a old friend of mine at a local watering hole. And by watering hole, I mean incredibly hip farm-to-table restaurant full of young techies because we were in Mountain V…
Sunday Firesides: If You See Something, Say SomethingJun 26, 2022
In a classic experiment conducted by the psychologist Solomon Asch, participants were placed in a group, shown a “target” line alongside a set of comparison lines of varying lengths, and asked which was closest in length to the target. The answer was always obvious, but unbeknownst to the study’s actual participants, they had been placed […]
Ultimate TermsJun 25, 2022
There are words which have special meaning within each culture and carry power where they are used.
6 Hostage Negotiation Techniques That Will Get You What You WantJun 25, 2022
How does hostage negotiation get people to change their minds? The Behavioral Change Stairway Model was developed by the FBI’s hostage negotiation unit, and it...
Want to Win Someone Over? Talk Like They Do.Jun 25, 2022
What does it take to become a more convincing communicator? New research suggests that linguistic mirroring — that is, adjusting your communication style to match that of your audience — is an effective tool to increase your ability to influence others. In this piece, the authors describe four key dimensions of linguistic mirroring, as well as several tactical strategies for leaders looking to win over a client, judge, or other important evaluator. Ultimately, they argue that building genuine relationships with key evaluators is the best way to gain insight into their linguistic preferences — but it’s up to all of us to make sure that we use the power of linguistic mirroring for good.
How to Ask for a Raise, According to a Hostage NegotiatorJun 23, 2022
It's possible to get a higher salary without taking anyone captive.
Small Actions Make Great LeadersJun 22, 2022
Leadership has traditionally been taught as a set of larger actions, such as having a difficult conversation or coaching someone. In reality, leading well is an integrated activity, in which one is doing many things simultaneously. One way to learn to do this better is to think about leadership as a series of small actions that are practiced, then carefully sequenced and interwoven during interactions. For instance, instead of thinking of something as a “difficult conversation,” a leader might aim to disarm, then show appreciation, then appeal to values. Research identifies 25 such actions, and learning to implement them in the right circumstances can help one become a better leader.
A history of the smile through art, culture and etiquette | Aeon EssaysJun 15, 2022
How our toothy modern smile was invented by a confluence of French dentistry and Parisian portrait-painting in the 1780s
Luck Surface Area: How to Get Lucky In Life - FronteraJun 15, 2022
You can't force luck. But you can increase your chances (by a lot) to get lucky. Here's how to do it with luck surface area.
Negotiate Like A Car Salesman: 5 Tactics To Help You Win Every Time - Fast CompanyJun 12, 2022
Whether you want a raise, different responsibilities, or more resources, knowing how to negotiate is vital. Here are 5 (non-sleazy, promise!) tricks straight from the car lot that will help you get what you want at work.
The Greatest Privilege We Hardly Talk About: BeautyJun 11, 2022
The advantages of being attractive are exorbitant. Beauty might be the single greatest physical advantage you can have in life. And yet…
Leading Cross-Functional TeamsJun 7, 2022
This is the legendary presentation about cross-functional teams from Ken Norton that made donuts and product management synonymous.
The Surprising Way to Be More Effective at StorytellingJun 7, 2022
To engage leaders, colleagues, and clients, use this simple technique
The Engineering of the Chain Restaurant MenuJun 7, 2022
At IHOP and Applebee's, menus are sales documents. And navigational guides. And explainers.
How to harness employees’ emotional energyJun 7, 2022
Fuel success by linking a company’s strategic goals to the reasons people are proud to work there.
What’s Your Listening Style?Jun 3, 2022
We may have learned that we need to let people speak without interrupting but taking turns talking does not truly denote listening. And unintentionally hijacking conversations to advise, inject humor, empathize, prioritize efficiency, or insert ourselves into the speaker’s narrative is often done with good intentions, but may instead disrupt the human connection we think we’re forging. Recognizing when to shift out of our habitual styles and consciously apply alternative styles of listening and responding may allow for more effective and meaningful interactions.
The Technium: 103 Bits of Advice I Wish I Had KnownMay 30, 2022
UPDATE Several years ago on my 68th birthday I wrote up 68 bits of advice for my adult children, and posted them here. The bits were extremely popular, and they were widely shared by others. I was encouraged to write … Continue reading →
Learn Street Epistemology To Deal With Difficult People at Work | Code CapsuleMay 28, 2022
Learn the street epistemology conversation technique and how you can apply it at work.
What It Really Means to Be Successful: Our Favorite ReadsMay 19, 2022
There’s no “right way” to do it.
The Endgames of Bad Faith CommunicationApr 13, 2022
UX Crash Course: User PsychologyJan 29, 2022
My mission for 2014 was to get more people started in User Experience (UX) Design. In January, hundreds of thousands of people did the original UX Crash Course and it was translated into Spanish, Portuguese and Korean by amazing volunteers. In May we continued with a User Psychology lesson every day.
The Secret Ingredient of Thriving Companies? Human Magic.Jan 15, 2022
The traditional corporate approach to motivating people has been a combination of carrots and sticks: a system of financial incentives designed to mobilize everyone around a plan designed by a few smart people at the top. Multiple studies have confirmed that, for any work involving cognitive or creative skills, financial rewards do not drive motivation and performance. So, what does? According to former Best Buy CEO Hubert Joly, it takes several mutually reinforcing elements to create an environment that unleashes the kind of human magic necessary for a company purpose to take root and flourish. He presents six ingredients to create your company’s unique recipe for human magic.
My Favorite LiarJan 13, 2022
“It's my intention to work into each lecture one lie...” Remembering a favourite teacher whose unorthodox methods got his students' attention
The Dirty Work of Cleaning Online Reputations | The WalrusJan 9, 2022
For a fee, companies will tackle damaging search results. But is the new economy of digital makeovers making things worse?
The Four Desires Driving All Human Behavior: Bertrand Russell’s MagnificentDec 27, 2021
“Nothing in the world is more exciting than a moment of sudden discovery or invention, and many more people are capable of experiencing such moments than is sometimes thought.”
Most Read Articles of 2021Dec 23, 2021
Take a moment to dive into the pieces your fellow behavioral science enthusiasts read most this year.
The Power of Audience-Centered Storytelling | Bill Carmody | TEDxFergusonLibraryDec 15, 2021
Bill Carmody is a twenty-five year global keynote speaker. He’s had the incredible privilege to present in Brazil with Sir Richard Branson and in India with executives from Fortune 100 companies. Recently he had the distinct privilege to teach several of the UK Brexit government officials how to become more powerful public speakers.
Bill Carmody is a twenty-five year global keynote speaker. He’s had the incredible privilege to present in Brazil with Sir Richard Branson and in India with executives from Fortune 100 companies. Recently he had the distinct privilege to teach several of the UK Brexit government officials how to become more powerful public speakers. This talk was given at a TEDx event using the TED conference format but independently organized by a local community. Learn more at https://www.ted.com/tedx
How to Give the Gift of Generative ThinkingDec 13, 2021
If you want to help people, don’t give them advice. Do this instead.
Brainwashing has a grim history that we shouldn’t dismiss | Psyche IdeasNov 29, 2021
Scientific research and historical accounts can help us identify and dissect the threat of ‘coercive persuasion’
How to Ask for FeedbackNov 23, 2021
Asking for feedback is often fruitless. Why is that? In this article, we look at why most requests for feedback fail and how to effectively ask for feedback to improve.
The Founder’s Guide to Discipline: Lessons from Front’s Mathilde CollinOct 29, 2021
Front's CEO and co-founder Mathilde Collin shares why a founder’s discipline matters more than vision, unveiling her own best practices and templates for communication, time management, fundraising and team building.
‘Give away your Legos’ and other commandments for scaling startupsOct 16, 2021
Molly Graham helped forge a work culture at Facebook that's withstood huge amounts of growth. Today, she's something of a rapid scaling expert. Here's the key to doing it right, she says.
How to Get Someone to Tell You Their Secrets, According to an Investigative JournalistOct 8, 2021
And once you do get them to open up, don’t betray their trust.
The Skill of Org DesignOct 8, 2021
Building effective organisations is a remarkably useful, if rare, skill. This is what it looks like, what it consists of, and how to tell if someone has it.
The Ultimate Guide to Running Executive Meetings — 25 Tips from Top StartupOct 1, 2021
Frustrated with your Executive team meetings? We tapped 25 top leaders from the startup C-Suite to share their tested tips, from getting started with an executive team to crafting the agenda and tracking success. Whether you're a first-time CEO or seasoned startup leader, there are plenty of new ideas to try from folks at Superhuman, Lattice, Asana and more.
How to Deliver Constructive Feedback in Difficult SituationsAug 22, 2021
“We are dangerous when we are not conscious of our responsibility for how we behave, think, and feel.”―Marshall Rosenberg, As a founder, my biggest regrets revolve around not having difficu…
How to Change Anyone’s Mind in Business Without Persuading ThemAug 17, 2021
Effective persuaders don’t tell people what to do. They encourage people to persuade themselves
Assertiveness is a virtue that anyone can develop with practice | Psyche IdJul 17, 2021
You can’t stop people making demands on your time and energy, but you can develop assertiveness skills to protect yourself
How to Become a Master at Talking to StrangersJul 17, 2021
Entrepreneurs must become experts at connecting with anyone-and with a few simple strategies, you can. Here's what happened when I tried them myself.
The 10 Must-Read Psychology Books Every Human Being Should Read | DurmonskiJul 13, 2021
Regardless of where you are in the pathway of understanding how the human psyche works, this list of must-read psychology books will upgrade your personal library.
Why People Fall For Conspiracy TheoriesJun 17, 2021
You might not believe in QAnon, but you could still fall down the rabbit hole.
Dunning-Kruger meets fake news | Ars TechnicaJun 5, 2021
People who overrate their media savviness share more misleading material.
One simple way to build someone’s confidence: Ask for their adviceMay 31, 2021
When we want people to change, we typically tell them what to do. But what if we flipped the script and asked them for their wisdom instead? Behavioral scientist Katy Milkman PhD explains the power…
How to Quietly Get People’s Attention in a Noisy WorldMay 27, 2021
Being a calming influence when things go south is a seriously attractive quality
Fierce NerdsMay 18, 2021
Bullshit and IntelligenceMay 18, 2021
The term "bullshitting" (in addition to its colloquial use) is a technical psychological term that means, "communication characterised by an intent to be convincing or impressive without concern for truth." This is not the same as lying, in which one knows what they are saying is false. Bullshitters simply are indifferent to whether or not
How to sound more attractiveApr 30, 2021
Many nationalities recognise that there is a tone of voice that is instantly alluring, but do some speakers have an unfair advantage?
The Six Keys to Positive CommunicationApr 30, 2021
Communicating better can help you achieve your goals and deepen your relationships.
How to | How to write cold emails to investors – lessons from 30 VCsApr 30, 2021
Want to get your cold email to investors opened and read? Learn from the tips of some of the top VC investors.
These 7 phrases can help you sound more powerful at work - Fast CompanyApr 18, 2021
Sometimes, it really is what you say that makes a difference.
Find the Right Words to Inspire Your TeamApr 18, 2021
It’s important to understand that when you, as a leader, communicate with your team, using weaker words weakens your message and blunts your ability to inspire people. It’s not enough to just throw thoughts out there and hope for the best. You need to actively recommend ideas and assert their worthiness in all of your communications. For example, consider these “power words”: “I’m proposing (not “sharing”) an idea that will make our process more efficient.” “I’m suggesting (not “sharing”) a new logo that better conveys our brand message.” “I’m recommending (not “sharing”) a campaign to make our workplace more diverse.” Ultimately, audiences respond more actively to big points than to small words, but thoughtful leaders need to assess both, knowing that the more powerfully they come across — even in small ways — the greater impact they have on the people they hope to inspire.
A Simple Tip for Staying Assertive in Emotional ConversationsApr 2, 2021
Assertive communication is about compromise.
What You’re Saying When You Give Someone the Silent Treatment - ostracismMar 29, 2021
Social ostracism has been a common punishment for millennia. But freezing someone out harms both the victim and the perpetrator.
5 phrases to use to improve your emotional intelligence and relationships at workMar 21, 2021
Using responses like "tell me more" and "thanks for understanding" helps shift the focus from yourself to others and leads to better conversations.
Persuading the UnpersuadableFeb 20, 2021
We live in an age of polarization. Many of us may be asking ourselves how, when people disagree with or discount us, we can persuade them to rethink their positions. The author, an organizational psychologist, has spent time with a number of people who succeeded in motivating the notoriously self-confident Steve Jobs to change his mind and has analyzed the science behind their techniques. Some leaders are so sure of themselves that they reject good opinions and ideas from others and refuse to abandon their own bad ones. But, he writes, “it is possible to get even the most overconfident, stubborn, narcissistic, and disagreeable people to open their minds.” He offers some approaches that can help you encourage a know-it-all to recognize when there’s something to be learned, a stubborn colleague to make a U-turn, a narcissist to show humility, and a disagreeable boss to agree with you.
Sarcasm Spurs Creative ThinkingFeb 18, 2021
Although snarky comments can cause conflict, a little verbal irony also stimulates new ideas.
The Science of Changing Someone's MindJan 31, 2021
Don’t try to change someone else’s mind. Instead, help them find their own motivation to change.
To Counteract Propaganda, We Should Look to Lessons from AdvertisingJan 31, 2021
The goal should not be conversion but doubt.
Carl Braun on Communicating Like a Grown-UpJan 30, 2021
Industrial genius Carl Braun believed that clear thinking and clear communication go hand in hand. Here the guide on writing productively to get things done.
How to Talk to People You Disagree WithJan 25, 2021
Bridge the divide with thoughtful conversation techniques, next-level listening, and a dip into the science of changing minds.
MemosNov 3, 2020
How to Win an Argument (at the U.S. Supreme Court, or Anywhere Else): A PriOct 20, 2020
Do you like being right? Of course, everyone does. Are you successful at convincing others? That’s a tougher one. We may politely disagree, avoid, or scream bloody murder at each other, but whatever our conflict style, no one is born, and few are raised, knowing how to persuade.
Ways to Get People to Do Things They Don’t Want to DoAug 10, 2020
Developing user habits is not the same as demanding compliance. But sometimes that’s the task at hand.
Opinion | Are You an Anti-Influencer? (Published 2020)Mar 9, 2020
Some people have a knack for buying products that flop, supporting political candidates who lose and moving to neighborhoods that fail to thrive.
What Big History Says About How Royal Women Exercise PowerJan 5, 2020
Queens in many societies heavily influenced the policies and governing behavior of their kings.
‘Would You Be Willing?’: Words to Turn a Conversation Around (and Those to Avoid)Dec 31, 2019
Choose your words carefully and you can get someone to change their mind, or see you in a new light.
The psychology of gift givingDec 23, 2019
The holiday season is around the corner. For most of us, it means we need to get gifts for our loved ones—our family, our friends, maybe even for people we don’t know all that well, such as clients and coworkers. The holiday season is notoriously stressful. Surveys show that nearly 7 people out of 10 ... Read More
delivery.phpDec 23, 2019
The Art of Persuasion Hasn’t Changed in 2,000 YearsDec 23, 2019
More than 2,000 years ago Aristotle outlined a formula on how to become a master of persuasion in his work Rhetoric . To successfully sell your next idea, try using these five rhetorical devices that he identified in your next speech or presentation: The first is egos or “character.” In order for your audience to trust you, start your talk by establishing your credibility. Then, make a logical appeal to reason, or “logos.” Use data, evidence, and facts to support your pitch. The third device, and perhaps the most important, is “pathos,” or emotion. People are moved to action by how a speaker makes them feel. Aristotle believed the best way to transfer emotion from one person to another is through storytelling. The more personal your content is the more your audience will feel connected to you and your idea.
The Surprising Psychology of Dieting and Plate DesignDec 15, 2019
New research is challenging long-held assumptions about how our eyes influence our stomachs.
Ethos, Pathos, Logos: how to persuade peopleDec 5, 2019
The three modes of persuasion — ethos, pathos, logos — are useful skills to master to persuade people and to understand how you’re being persuaded yourself.
It’s Not Enough to Be Right. You Also Have to Be Kind.Nov 10, 2019
Takedowns and clever quips are easy, but empathy and persuasion are better
Interested in improving your relationships? Try Nonviolent CommunicationOct 18, 2019
Nonviolent communication (NVC) is a popular method of conflict resolution that privileges unbiased evidence and specificity.
How to Get Ahead When Your Boss Doesn’t Have InfluenceSep 30, 2019
Some bosses lack the political aptitude or key competencies that would let them help you get ahead. When you realize that your manager is out of the loop and your opportunities for influence within the company are limited, focus on getting you more access to communications. Identify individuals who can connect you with important information, and then find a low-key way to meet. As you develop relationships with senior leaders, review who is successful at selling ideas or meeting goals. Use this information to fine-tune your interactions and approaches. And, identify where your talents would most benefit the company so that you can become a key contributor to the organization. Don’t rely on anyone else — including a manager with higher standing — to open doors for you.
Why influence is such a powerful persuaderSep 24, 2019
Forty years ago, Bob Cialdini published a groundbreaking book on the power of influence. In our digital age, these rules may have become even more powerful.
How to Introvert | Less PenguinyAug 30, 2019
Why some people are constantly approached by friendly nearbys whereas others might as well be invisible
7 Strategies for Establishing AuthorityAug 30, 2019
Remember that the essence of authority is that people willingly follow your lead. That is what the following strategies are designed to do.
How to Write Email with Military PrecisionAug 24, 2019
A few tips on how to quickly and clearly relay information and avoid miscommunication.
15 Steps to Understand & Influence User Behavior: A Deep DiveMar 22, 2019
Understanding user behavior is key to understanding how users interact with your product. Here are 15 steps to analyze & change their interactions to your benefit.
4-Part Nonviolent Communication (NVC) - PuddleDancer PressMar 12, 2019
Express and receive communication empathically using the four-part Nonviolent Communication process developed by Marshall B. Rosenberg, Ph.D.
Creating a useful specJan 11, 2019
If you want someone to help, you’ll do better with a spec. It lists just four things: What is the problem to be solved? How are we going to solve it? How can we test that the thing we built m…
How To Get Precisely What You WantJan 7, 2019
“Imagination is absolutely critical to the quality of our lives.
The life-changing art of asking instead of tellingNov 26, 2018
Open new routes to successful conversations with colleagues, friends, and family.
How your supermarket manipulates youJan 27, 2018
Supermarkets have always played tricks on your mind. Can they help you to eat better?
Gossip and competitive altruism support cooperation in a Public Good gameSep 24, 2007
When there is an opportunity to gain a positive reputation, individuals are more willing to sacrifice their immediate self-interest. Partner choice creates opportunities for competitive altruism, i.e. individuals compete to be regarded as more generous ...
The Surprising Benefits of GossipSep 24, 2007
Social scientists are uncovering the intricate group dynamics of gossip
influencers
Stop, Shop, and ScrollJan 6, 2026
Behind every influencer is an army of the influenced, many adrift in debt and mass-produced clutter. These are the stories of credit card debt and piles of mass-produced clutter.
Influencers take heat over lavish lifestylesApr 20, 2025
As consumer confidence plunges, cracks are showing: TikTok and Instagram users are pushing back against influencers in the comments.
Meet Shabnam Xai, Pakistan’s first ultra-realistic AI influencerJul 27, 2024
Shabnam Xai is making waves as Pakistan's first ultra-realistic AI influencer. She made her Instagram debut on July 16, 2024,
The Reddit pages that investigate influencersApr 8, 2024
In 2020, a young woman who asked to be called Anna decided to buy some hair supplements that she learned about from a social media influencer. The influencer, Danielle Bernstein, regularly posts about clothing and beauty on Instagram, and had claimed that the supplements transformed her brittle hair into thick, shiny brunette locks. Anna identified […]
Tarte Island: Bora Bora Influencer Campaign Met With Online BacklashMar 6, 2024
As part of a promotional campaign, the beauty brand Tarte flew 30 social media influencers on a private jet to paradise. Many observers were not amused.
Want to stop livestreaming? That’ll be $42,000Feb 29, 2024
Chinese livestream agencies promise influencers fame and money, but end up trapping them in multi-year contracts.
What Happens When TikTok Is Your Marketing DepartmentFeb 17, 2024
The Pink Stuff, a home cleaning paste, went from total obscurity to viral sensation — and Walmart staple — thanks to one “cleanfluencer” and her legion of fans.
9 Types of Influencer Marketing CampaignsFeb 8, 2022
How, exactly, should ecommerce marketers use influencers? Blog posts, social media, videos, other? We explain nine types of proven campaigns.
info-theory
Understanding Entropy in Statistics: A Simple GuideAug 25, 2025
Entropy quantifies uncertainty in data, forming the mathematical foundation for decision trees, feature selection, and information theory applications.
How to Understand and Use the Jensen-Shannon DivergenceMar 2, 2023
A primer on the math, logic, and pragmatic application of JS Divergence — including how it is best used in drift monitoring
Information Theory: A Gentle IntroductionJun 11, 2021
This is the first in a series of articles about Information Theory and its relationship to data driven enterprises and strategy. While…
Link Prediction and Information Theory: A TutorialJan 17, 2021
Using Mutual Information to measure the likelihood of candidate links in a graph.
Essential Math for Data Science: Information TheoryDec 18, 2020
Entropy, cross-entropy, log loss, and KL divergence
A Gentle Introduction to Information Entropy - MachineLearningMastery.comNov 3, 2020
Information theory is a subfield of mathematics concerned with transmitting data across a noisy channel. A cornerstone of information theory is the idea of quantifying how much information there is in a message. More generally, this can be used to quantify the information in an event and a random variable, called entropy, and is calculated using probability. Calculating information and…
A brief introduction to the beauty of Information TheoryMay 10, 2020
Lambdaclass's blog about distributed systems, machine learning, compilers, operating systems, security and cryptography.
Gini coefficientFeb 9, 2020
In economics, the Gini coefficient, also known as the Gini index or Gini ratio, is a measure of statistical dispersion intended to represent the income inequality, the wealth inequality, or the consumption inequality within a nation or a social group. It was developed by Italian statistician and sociologist Corrado Gini.
Understanding KL Divergence Entropy and Related ConceptsOct 24, 2008
Important concepts in information theory, machine learning, and statistics
instinct-intuition
For an anaesthesiologist, intuition stands between life and death | Aeon EssaysMar 3, 2025
For years, I practised medicine with cool certainty, comfortable with life-and-death decisions. Then, one day, I couldn’t
The data or the hunchJun 23, 2022
More and more decisions, from the music business to the sports field, are being delegated to data. But where does that leave our intuition?
We Are All Confident IdiotsDec 23, 2019
The trouble with ignorance is that it feels so much like expertise. A leading researcher on the psychology of human wrongness sets us straight.
To Persuade Someone, Look EmotionalSep 16, 2019
Look like you‘re trusting your gut and others will trust you.
Outline of The Elephant in the BrainMar 13, 2019
Entrepreneurial sixth sense: how intuition drives stronger decision makingOct 11, 2018
Adam Werbach was the Sierra Club’s golden boy.
insurance
Insuring an uninsurable world – the pricing actuary’s Mission Impossible?Jun 26, 2025
In InsuranceERM, David Walker published, yesterday Insuring an uninsurable world – the pricing actuary’s Mission Impossible? “Actuarially, it is entirely possible – and often documented – that the technical premium reflecting pure risk without political intervention, mutualisation or capping varies by a factor of 30 or more, depending on exposure to flood or forest fire … Continue reading Insuring an uninsurable world – the pricing actuary’s Mission Impossible? →
Your health insurance says, ‘Claim denied.’ How to fight backJan 21, 2022
If your claim is denied, you have a right to appeal and ask your health insurer to take another look.
What is a Health Savings Account (HSA)? And, Why It's a Great Retirement Savings OptionNov 26, 2021
What is a Health Savings Account? Explore 4 ways it saves you money and why you might want to use one for retirement savings.
intellectual-property
High Schools Walk Legal Tightrope Using Trademarked Pro LogosNov 27, 2025
Hundreds of schools across the country borrow pro and college teams’ marks. Some ask permission. Others take a risk.
Disney lost Roger RabbitNov 24, 2025
Pay-per-output? AI firms blindsided by beefed up robots.txt instructions.Sep 10, 2025
“Really Simple Licensing” makes it easier for creators to get paid for AI scraping.
Huawei patents ‘ternary logic’ to develop energy-efficient AI chipsApr 4, 2025
Huawei patented a new technology called "ternary logic" that can develop energy-efficient AI chips. The new patent confirms the company's effo
Judge allows authors' AI copyright lawsuit against Meta to move forward | TechCrunchMar 9, 2025
A federal judge is allowing an AI-related copyright lawsuit against Meta to move forward, although he dismissed part of the suit. In Kadrey vs. Meta,
Technology & Marketing Law BlogFeb 7, 2025
Eric teaches and publishes in the areas of Internet Law, Intellectual Property and Advertising & Marketing Law.
Shutterstock pioneers ‘research license’ model with Lightricks, lowering barriers to AI training dataDec 13, 2024
Shutterstock launches innovative "research license" model with Lightricks, making ethical AI training data more accessible for startups while ensuring fair compensation for creators.
A Patent Engineer’s Advice for First-time InventorsOct 22, 2024
Know the value of your intellectual property and don’t be afraid to file
The year of the music licensing legal warsOct 20, 2024
When the Supreme Court decided against Grokster in 2004, it changed the internet forever.
Five Decisions Illustrate How Section 230 Is Fading FastOct 18, 2024
Professor Eric Goldman continues to be the best at tracking any and all developments regarding internet regulations. He recently covered a series of cases in which the contours of Section 230’…
Author granted copyright over book with AI-generated text—with a twistApr 19, 2024
Elisa Shupe was initially rebuffed when she tried to copyright a book she wrote with help from ChatGPT. Now the US Copyright Office has changed course—but there’s a catch.
We Need to Talk About Trader Joe’sApr 5, 2024
Behind the bubbly cashiers in Hawaiian shirts, craveable snacks, and bargain-basement prices are questionable business practices that have many food brands crying foul at the company’s blatant and aggressive copycat culture.
Why Patents? The History and EvidenceJan 7, 2024
Comparisons with other historical incentives for innovation
Crayola Trademarks the Smell of Its CrayonsAug 24, 2023
An anonymous reader quotes a report from the Financial Post: You may find yourself smelling crayons in the aisles of stores soon -- if Crayola's chief executive Pete Ruggiero has his way. In July, the U.S. Patent and Trademark Office issued a trademark to the arts and crafts giant for the smell of i...
The Case for and Against Ed SheeranJun 12, 2023
The pop singer’s trial for copyright infringement of Marvin Gaye and Ed Townsend’s “Let’s Get It On” highlights how hard it is to draw the property lines of pop.
Smart TV industry rocked by alleged patent conspiracy from chip makerJun 11, 2023
Lawsuit: Patent trolls created “harmful illusion” of unstable TV-chip market.
Women’s Basketball Continues SlumpApr 8, 2023
SB Loses Shootout to Manhattan On Nov. 24 Stony Brook’s Women’s Basketball team faced the Manhattan Jasper’s. In a high scoring affair, Stony Brook lost by a final score of 74-68. The Jasper’s held the lead most of the game, including a game high 12 point lead at half (44-32).
You can’t copyright a cocktail, so what’s a creative bartender to do? | ArsSep 18, 2022
“A recipe is like a phone book in the eyes of the law—you can’t own something so factual.”…
Andreessen Horowitz Wants To Fix NFT Copyright With Its 'Can't Be Evil' LicSep 13, 2022
Venture capital firm Andreessen Horowitz (a16z) is trying to clean up the messy state of crypto copyright. From a report: Last week, the company introduced what it dubs "Can't Be Evil" licenses: a series of agreements that let creators grant non-fungible token owners partial or near-complete rights ...
United States Patent and Trademark OfficeJul 19, 2022
Home page of the United States Patent and Trademark Office's main web site.
Trademark Search, Free, for Millions of Registered Trademarks with USPTO | TrademarkiaJul 18, 2022
Trademarkia provides a free, fast, user friendly search of USPTO registered trademarks. Also, with trademark registration you can protect your brand in 180+ countries. Fast and easy. Starts at $99.
Starting a Physical Product Company? You’re Gonna Need a Lawyer.Jul 18, 2022
My name is Molson Hart. I’m the CEO of a consumer products company I founded 10 years ago, called Viahart. We design and distribute toys…
Can a corporation "own" a color?Jun 29, 2022
A handful of companies have pushed the boundaries of intellectual property law by laying claim to individual colors.
Metadata is the biggest little problem plaguing the music industryJun 26, 2022
It’s a crisis that has left, by some estimations, billions on the table unpaid to musicians
Trademarking color is absurd. But not for the reasons you think - Fast CompanyJun 23, 2022
Trying to crush other companies' use of color is not only petty; it completely misses the point of branding.
An Entrepreneur’s Guide To Patents: The Basics | TechCrunchMay 28, 2022
Editor's note: Brad Woodcox is a technical specialist focusing on startup development for Novak Druce + Quigg, an intellectual property super boutique law firm. Patents. A single word that incites a fervor in the online tech blogging realm, perhaps only behind the emotional responses with the iPhone vs. Android battle or TechCrunch using expletives in an article title.
The 4 Main Types of Intellectual Property and Related CostsFeb 10, 2022
There are four primary ways that businesses can protect their intellectual property (IP) assets: patents, trademarks, copyrights, and trade secrets.
Sweepstakes Law BasicsJan 12, 2022
D&R Silicon IP Catalog: Directory of Semiconductor IPDec 7, 2021
D&R provides the world's largest directory of Silicon IP (Intellectual Property), SoC Configurable Design Platforms and SOPC Products from 400 vendors
Semiconductor IP Vendors List | ChipEstimate.comDec 6, 2021
Explore semiconductor IP, white papers, news, technical articles and more from hundreds of top semiconductor IP vendors and foundries.
The 6 Common Open-Source Licenses and What They MeanJun 8, 2021
Open-source software is one of the most influential initiatives ever made in the history of computer science and programming. The phrase “open source” means something that’s open for people to use…
Why Don’t Some TV Shows Sound the Way They Used To? (Published 2021)Apr 28, 2021
Licensing issues have gutted the soundtracks of many beloved series on streaming services, resulting in bewildering music cues and missing theme songs.
Why I wouldn't invest in open-source companies, even though I ran one.Apr 4, 2021
After more than 12.000 Github stars, two successful open-source projects, a failed open-core company, and a successful prop-tech one*, I feel more than ever that giving your product away for free is just as bad a business strategy as it sounds.
Mass Hipgnosis | Rich WoodallMar 16, 2021
In an industry already powered by the repackaging of past hits, music funds like Hipgnosis want every tomorrow to sound more and more like yesterday.
With DocPro, you can create all your own legal documents for your businessNov 6, 2020
The most of us have come across a situation where we had to pay for not getting something down in writing. This platform solves just that.
Starting a Physical Product Company? You’re Gonna Need a Lawyer.Oct 20, 2020
My name is Molson Hart. I’m the CEO of a consumer products company I founded 10 years ago, called Viahart. We design and distribute toys…
What Can Small Tech Companies Do About Patent Trolls?Aug 10, 2020
Learn about three tips on how small tech companies and startups can fight off the patent trolls.
A Legal Deep Dive on Mexico’s Disastrous New Copyright Law | Electronic FroAug 1, 2020
Mexico has just adopted a terrible new copyright law, thanks to pressure from the United States (and specifically from the copyright maximalists that hold outsized influence on US foreign
Names, Legal Names, and Fractally Deferred ResponsibilityMay 12, 2020
Don't store legal names, at least not as the default. Here's why, and why it matters.
Likelihood of Confusion of Trademarks | TrademarkMar 4, 2020
When trademark infringement cases go to trial, the judge tries to determine the likelihood confusion taking place among consumers. Judges do not actually converse with consumers or take a poll among consumers, but they do use a set of criteria established by the Ninth Circuit Court of Appeals in the AMF, Inc v Sleekcraft Boats […]
Trademarking color is absurd. But not for the reasons you thinkFeb 19, 2020
Trying to crush other companies' use of color is not only petty; it completely misses the point of branding.
There are 665 open licences most are pretty rubbishSep 24, 2019
you are in a maze of twisty licences, all alike
How to File a Patent in 8 Easy StepsSep 3, 2018
Have you invented something so cool, useful and original that the rest of the world just shouldn’t be forced to live without it any longer…
interconnects
1,000 CFETs, SK Hynix Next-Gen NAND, Interconnects Beyond Copper, 2D Materials, and MoreJan 14, 2026
IEDM 2025 Round-Up
Co Packaged Optics (CPO) – Scaling with Light for the Next Wave of InterconnectJan 2, 2026
Co-Packaged Optics (CPO) has long promised to transform datacenter connectivity, but it has taken a long time for the technology to come to market, with tangible deployment-ready products only arriving in 2025.
Interconnect Innovations In High Bandwidth Memory: Part 2Oct 14, 2025
Bump technologies are being pushed beyond what was thought to be their physical and performance limits.
On-Die And In-Package InterconnectsJul 28, 2025
A 94-page research report on interconnect fundamentals for semiconductor engineers.
Demystifying NCCL: An In-depth Analysis of GPU Communication Protocols and AlgorithmsJul 13, 2025
The NVIDIA Collective Communication Library (NCCL) is a critical software layer enabling high-performance collectives on large-scale GPU clusters. Despite being open source with a documented API, i…
Physics Limits Interposer Line LengthsJul 3, 2025
Thin lines and limited ground planes keep RDL interconnects short.
How CXL 3.1 and PCIe 6.2 are Redefining Compute EfficiencyMay 16, 2025
CXL 3.1 and PCIe 6.2 are transforming AI with improved data transfer and memory pooling.
Die-to-die Interconnect Standards In FluxMay 15, 2025
Many features of UCIe 2.0 seen as “heavy” are optional, causing confusion.
Why 50 Ohms Became the RF StandardMay 14, 2025
The history, physics, and practical trade-offs behind a number every RF engineer knows.
A Crucial Optical Technology Has Finally ArrivedMar 25, 2025
Nvidia's endorsement of co-packaged optics means the time is right
Which Discontinuities are Small Enough to Ignore?Feb 20, 2025
Understanding and minimizing discontinuities is increasingly important as serial links become both shorter and faster. Applying the old edge rate to roundtrip relationship to the modern era, Donald Telian in this article offers a rule-of-thumb to help gauge which interconnect structures, and hence discontinuities, to care about – and to what degree.
One Laser To Pump Up AI Interconnect Bandwidth By 10XOct 27, 2024
According to rumors, Nvidia is not expected to deliver optical interconnects for its GPU memory-lashing NVLink protocol until the “Rubin Ultra” GPU
One Laser To Pump Up AI Interconnect Bandwidth By 10XOct 17, 2024
According to rumors, Nvidia is not expected to deliver optical interconnects for its GPU memory-lashing NVLink protocol until the “Rubin Ultra” GPU
Intel Vs. Samsung Vs. TSMCJul 27, 2024
Foundry competition heats up in three dimensions and with novel technologies as planar scaling benefits diminish.
Fan-Out Panel-Level Packaging (FO-PLP): Ultimate GuideJun 11, 2024
In this guide, we’ll elucidate the pivotal role of FO-PLP in advancing the semiconductor sector. Harnessing cost-effectiveness with enhanced functionality, FO-PLP beckons a new era of electronic sophistication. Let’s delve into the ultimate guide to Fan-Out Panel-Level Packaging and explore how it’s shaping the future. Overview of Fan-Out Panel-Level Packaging (FO-PLP) Fan-Out Panel-Level Packaging
How To Build A Better “Blackwell” GPU Than Nvidia DidApr 5, 2024
While a lot of people focus on the floating point and integer processing architectures of various kinds of compute engines, we are spending more and more
Synopsys Shepards Circuits Towards 1.6T EthernetMar 4, 2024
The Ethernet roadmap has had a few bumps and potholes in the four and a half decades since the 10M generation was first published in 1980. Remember the
Intel unveils glass substrates for chips to advance Moore’s LawSep 19, 2023
Join our daily and weekly newsletters for the latest updates and exclusive content on industry-leading AI coverage. Learn More Intel said it has made a significant breakthrough in the development of glass substrates for next-generation advanced packaging in an attempt to stay on the past of Moore’s Law. The big chip maker said this milestone […]
Panmnesia speeds up vector search with CXLJun 20, 2023
Panmnesia has devised CXL-based vector search methods that are much faster than Microsoft’s Bing and Outlook.
Google dives into the ‘supercomputer’ game by knitting together purpose-buiMay 12, 2023
Google's new machines combine Nvidia H100 GPUs with Google’s high-speed interconnections for AI tasks like training very large language models.
Samsung steps up fan-out wafer-level packaging deploymentApr 7, 2023
Samsung Electronics has stepped up its deployment in the fan-out (FO) wafer-level packaging segment with plans to set up related production lines in Japan, according to industry sources.
Interconnect Under the Spotlight as Core Counts Accelerate - SemiWikiApr 6, 2023
In the march to more capable, faster, smaller, and lower…
True 3D Is Much Tougher Than 2.5DApr 5, 2023
While terms often are used interchangeably, they are very different technologies with different challenges.
The Most Complex Chip Ever Made?Apr 5, 2023
Historically Intel put all its cumulative chip knowledge to work advancing Moore's Law and applying those learnings to its future CPUs. Today, some of
Video: Intel EMIB Technology ExplainedApr 5, 2023
Intel's multi-die interconnect bridge (EMIB) is an approach to in-package high-density interconnect of heterogeneous chips.
US Semiconductor Manufacturing | CHIPS and Science Act | Intel®Apr 5, 2023
Powered by the promises of the CHIPS Act, Intel is investing more than $100 billion to increase domestic chip manufacturing capacity and capabilities.
More CPU Cores Isn’t Always Better, Especially In HPCJan 20, 2023
If a few cores are good, then a lot of cores ought to be better. But when it comes to HPC this isn’t always the case, despite what the Top500 ranking –
Big Trouble in Little InterconnectsJan 2, 2023
Interconnects—those sometimes nanometers-wide metal wires that link transistors into circuits on an IC—are in need of a major overhaul. And as chip fabs march toward the outer reaches of Moore’s Law, interconnects are also becoming the industry’s choke point.
Kenneth Finnegan (@kwf@social.afront.org)Dec 13, 2022
Attached: 2 images One of my nice friends at Hurricane Electric gave me a dead 100G-LR4 optic to tear apart for your entertainment, so for the sake of your entertainment, lets dig into it! 🧵
Just How Bad Is CXL Memory Latency?Dec 6, 2022
Conventional wisdom says that trying to attach system memory to the PCI-Express bus is a bad idea if you care at all about latency. The further the memory
Cerebras Reveals Andromeda, a 13.5 Million Core AI SupercomputerNov 15, 2022
The world's largest chip scales to new heights.
CXL: Protocol for Heterogenous DatacentersJul 8, 2022
Let's learn more about the world's most important manufactured product. Meaningful insight, timely analysis, and an occasional investment idea.
PCI Express 7.0 standard provides eight times the bandwidth of today’s connJun 23, 2022
PCI-SIG has drafted the PCIe 7.0 spec and aims to finalize it in 2025.
Will optics replace copper interconnects? We asked Ayar LabsJun 21, 2022
Star Trek's glowing circuit boards may not be so crazy
3D Stacking Could Boost GPU Machine LearningDec 8, 2021
Nvidia has staked its growth in the datacenter on machine learning. Over the past few years, the company has rolled out features in its GPUs aimed neural
NVLink Takes GPU Acceleration To The Next LevelDec 7, 2021
One of the breakthrough moments in computing, which was compelled by necessity, was the advent of symmetric multiprocessor, or SMP, clustering to make two
The Gatekeeper of a Successful Design is the Interconnect - EE TimesDec 4, 2021
An effective interconnect makes delivering a complex SoC easier, more predictable, and less costly.
Fast Multi-GPU collectives with NCCL | NVIDIA Technical BlogDec 4, 2021
Today many servers contain 8 or more GPUs. In principle then, scaling an application from one to many GPUs should provide a tremendous performance boost. But in practice, this benefit can be difficult…
Does an AMD Chiplet Have a Core Count Limit?Sep 7, 2021
CXL: Sorting Out The Interconnect SoupFeb 11, 2021
How Compute Express Link provides a means of connecting a wide range of heterogeneous computing elements.
interrogations
Question behind the questionFeb 18, 2026
Your ability to answer questions is a competitive advantage. Here’s how to uncover the deeper underlying question.
Scientists have found a simple yet brilliant hack for spotting a liarMay 12, 2024
Scientists say there is evidence that lying is more cognitively demanding than telling the truth.
My Clients, The Liars — LessWrongMar 11, 2024
It’s not just that my clients lie to me a lot, which will only hurt them — it’s that they’re really, really bad at it. My job as a public defender pu…
People Can Be Convinced They Committed a Crime That Never HappenedJun 18, 2023
Lab-based research shows that adults can be convinced, over the course of a few hours, that as teens they perpetrated crimes that never actually occurred.
How to get useful answers to your questionsOct 24, 2021
How to Get Someone to Tell You Their Secrets, According to an Investigative JournalistOct 8, 2021
And once you do get them to open up, don’t betray their trust.
A guide to body language, from former FBI Special Agent Joe NavarroApr 23, 2021
Non-verbal communication is just as important as the words people say, and these subtle cues can reveal if someone is lying.
How to think like a detective | Psyche GuidesApr 22, 2021
The best detectives seem to have almost supernatural insight, but their cognitive toolkit is one that anybody can use
How can you tell if someone is lying?Mar 30, 2021
The conventional wisdom about how to spot a liar is all wrong.
How to figure out if someone is telling you the truthJan 8, 2021
"The home of our truth/lie detector resides in the area of our body that encapsulates the throat, heart, and gut."
The scientists persuading terrorists to spill their secretsOct 13, 2017
The long read: Expert interrogators know torture doesn’t work – but until now, nobody could prove it. By analysing hundreds of top-secret interviews with terror suspects, two British scientists have revolutionised the art of extracting the truth
interviewing
Question behind the questionFeb 18, 2026
Your ability to answer questions is a competitive advantage. Here’s how to uncover the deeper underlying question.
7 Cool Technical GenAI & LLM Job Interview QuestionsMay 4, 2024
Cool LLM and GenAI tech questions covering many modern concepts, including fast vector search, contextual tokens, and augmented structures
Hire Better Managers: 35 Interview Questions for Assessing a CandidateMar 1, 2024
We asked top hiring managers and startup leaders to share their favorite questions for interviewing management candidates.
Add More Rigor to Your Reference Calls With These 25 QuestionsFeb 18, 2024
When approached with craft and care, reference calls can be a massively influential piece of the hiring decision.
I've helped hundreds of people land 6-figure salaries. These 5 job intervieMar 20, 2023
To nail a job interview, you have to speak in a way that will get the interviewer to pay attention, says career coach Natalie Fisher. Here are the phrases she suggests to share concrete examples of your skills and accomplishments.
Archive - chiefofstuffDec 10, 2022
Most career advice on the internet is from people who had some sort of meteoric success.
How can you tell if the company you’re interviewing with is rotten on the inside?Dec 4, 2022
How can you tell the companies who are earnestly trying to improve apart from the ones who sound all polished and healthy from the outside, whilst rotting on the inside? This seems to be on a lot o…
The Anatomy of the Perfect Sales Hiring ProcessJul 18, 2022
Sales is a unique function to hire for, requiring different criteria and strategy. TalentBin Co-founder Peter Kazanjy has the process nailed. Here it is.
Hire a Top Performer Every Time with These Interview QuestionsJul 18, 2022
Koru CEO Kristen Hamilton helps hundreds of people hire and get hired every year. These are the traits she knows translate into excellent performance on the job.
20 Questions To Ask Before Joining A StartupJul 17, 2022
What to Look For When Hiring a Community ManagerJun 25, 2022
The One Conversational Tool That Will Make You Better At Absolutely Everything - Fast CompanyJun 23, 2022
Great insight moves your career, organization, or business forward. The problem? Most people are terrible at asking questions. Learn from the pros how to do it right.
40 Tips for B2B Customer Development Interviews - SKMurphy, Inc.Jun 12, 2022
This post on B2B customer development interviews offers my lessons learned from several thousand interviews over the last 16 years.
38 Smart Questions to Ask in a Job InterviewJun 1, 2022
The opportunity to ask questions at the end of a job interview is one you don’t want to waste. It’s both a chance to continue to prove yourself and to find out whether a position is the right fit for you. In this piece, the author lists sample questions recommended by two career experts and divides them up by category: from how to learn more about your potential boss to how to learn more about a company’s culture. Choose the ones that are more relevant to you, your interests, and the specific job ahead of time. Then write them down — either on a piece of paper or on your phone — and glance at them right before your interview so that they’re fresh in your mind. And, of course, be mindful of the interviewer’s time. If you were scheduled to talk for an hour and they turn to you with five minutes left, choose two or three questions that are most important to you. You will always have more time to ask questions once you have the job offer in hand.
How to Hire a Product ManagerMay 28, 2022
What makes a great product manager and how do you become one?
Hiring for Conscientiousness — HollowayJan 31, 2022
Why startups should hire conscientious people—and how to find them
5 Questions Every Manager Needs to Ask Their Direct ReportsJan 25, 2022
If you’re worried that your employees are eyeing the door, it’s time to start having some important career-defining conversations. In this piece, executive coach Susan Peppercorn outlines five questions to start asking your direct reports so that you can get a better sense of how they’re feeling about their positions: 1) How would you like to grow within this organization? 2) Do you feel a sense of purpose in your job? 3) What do you need from me to do your best work? 4) What are we currently not doing as a company that you feel we should do? 5) Do you have the opportunity to do what you do best every day? When managers make checking in with these five questions a regular part of how they interact with their employees, it helps ensure that people feel seen and valued. And when managers help individuals on their teams feel that way, they’re more likely to be rewarded by employees who become advocates for the department and organization, no matter how long they stay.
Deep Learning Interviews: Hundreds of fully solved job interview...Jan 16, 2022
The second edition of Deep Learning Interviews is home to hundreds of fully-solved problems, from a wide range of key topics in AI. It is designed to both rehearse interview or exam specific...
30 Probability and Statistics Interview Questions for Data ScientistsDec 9, 2021
Top 30 Probability and Statistics Interview Questions that can help you sharpen your skills to ace your data science interview
Why the 'stay interview' is the next big trend of the Great ResignationDec 8, 2021
Get clear about what will help your best employees stay, and what could make them quit.
How to Get Someone to Tell You Their Secrets, According to an Investigative JournalistOct 8, 2021
And once you do get them to open up, don’t betray their trust.
10 questions to ask in a job interview that will really expose a company's culture - Fast CompanyApr 10, 2021
Simple questions that can speak volumes about your prospective employer.
Factorio Is The Best Technical Interview We HaveMar 27, 2021
There’s been a lot of hand-wringing over The Technical Interview lately. Many people realize that inverting a binary tree on a whiteboard has basically zero correlation to whether or not someone is actually a good software developer. The most effective programming test anyone’s come up with is still Fizzbuzz. One consequence of this has been an increased emphasis on Open Source Contributions, but it turns out these aren’t a very good metric either, because most people don’t have that kind of time.
The 3 Minutes It Takes To Read This Will Improve Your Conversations ForeverMar 4, 2021
How to ask better questions.
How to figure out if someone is telling you the truthJan 8, 2021
"The home of our truth/lie detector resides in the area of our body that encapsulates the throat, heart, and gut."
Netflix Data Science Interview Practice ProblemsMay 15, 2020
A walkthrough of some of Netflix’s interview questions!
30 Data Science Interview Questions from FAANG Tech GiantsMay 14, 2020
In-depth Interview Q&A from Facebook, Amazon, Apple, Netflix, and Google
DataScienceCentral.com - Big Data News and AnalysisMay 11, 2020
New & Notable Top Webinar Recently Added New Videos
50 Deep Learning Interview QuestionsApr 1, 2020
Test Your Skills: 26 (More) Data Science Interview Questions & AnswersApr 1, 2020
Statistics, Algorithms, Deep Learning, NLP, & Data Organization
The Data Science Interview Study GuideFeb 19, 2020
Preparing for a job interview can be a full-time job, and Data Science interviews are no different. Here are 121 resources that can help you study and quiz your way to landing your dream data science job.
VGraupera/1on1-questions: Mega list of 1 on 1 meeting questions compiled frFeb 19, 2020
Mega list of 1 on 1 meeting questions compiled from a variety to sources - VGraupera/1on1-questions
What Great Listeners Actually DoDec 11, 2019
Good listening is much more than being silent while the other person talks.
How Lyft designs the Machine Learning Software Engineering interviewNov 4, 2019
Iterations on revealing recurring patterns of thought, feeling, and behavior
10 Impressive Questions to Ask in an Interview 2018Aug 30, 2019
To show employers you’re exceptional and to find out if it’s the right job for you.
The Science Behind “Blade Runner”’s Voight-Kampff Test - Facts So RomanticJul 25, 2019
Is Rick Deckard a replicant, an advanced bioengineered being? The jury concerning the character in 1982’s Blade Runner is still out. Harrison Ford, who plays Deckard in the film, thinks he’s human. Ridley Scott, the film’s director, is adamant that he’s not.* Hampton Fancher, the screenwriter for the original film and the sequel, Blade Runner […]
How to answer 14 common but tricky interview questionsFeb 3, 2019
Want to impress hiring managers at your next job interview? Here are 14 responses to common but tricky interview questions.
My Lessons from Interviewing 400 Engineers Over Three Startups | First RouJul 7, 2018
Engineering leader Marco Rogers (Lever, Yammer, Clover Health) debunks some of the most common recruiting tropes and walks through his four top interviewing practices for startups.
Top-100-Data-science-interview-questionsDec 27, 2017
Data science, also known as data-driven decision, is an interdisciplinery field about scientific methods, process and systems to extract knowledge from data in various forms, and take descision based on this knowledge. A data scientist should not only be evaluated only on his/her knowledge on machine learning, but he/she should also have good expertise on statistics. I will try to start from very basics of data science and then slowly move to expert level. So let’s get started.
introverts
The NocturnalsOct 15, 2025
While most people are fast asleep, some ultra-introverts are going about their lives, reveling in the quiet and solitude. They challenge a core assumption of psychology: that all humans need social connection.
A neuroscientist shares the 4 ‘highly coveted’ skills that set introverts apart: ‘Their brains work differently’Feb 15, 2023
Neuroscientist Friederike Fabritius has worked with companies like Google and Deloitte on how to retain top talent. While many leaders prefer to hire extroverts, she says introverts are often more successful at work.
9 Ways This Introvert Polished His Public Speaking SkillsJul 18, 2022
Not all introverts suffer from public speaking anxiety. But if you do, here are some ideas to eliminate it and become a strong communicator.
An Acting Coach Explains the Three Pillars of Charismatic ChemistrySep 24, 2020
The surprising vulnerability and mindfulness that makes people want to pay attention to you
How to Introvert | Less PenguinyAug 30, 2019
Why some people are constantly approached by friendly nearbys whereas others might as well be invisible
inventions-innovation
The Legibility ProblemMar 2, 2026
What happens in a world where AIs make scientific discoveries that humans cannot understand?
The Machine That Made China RichFeb 24, 2026
Thanks to Storyblocks for sponsoring this video! Download unlimited stock media at one set price with Storyblocks: https://storyblocks.com/PrimalSpaceDid you...
What We Get Wrong About TechnologyJan 16, 2026
Blade Runner (1982) is a magnificent film, but there’s something odd about it. The heroine, Rachael, seems to be a beautiful young woman. In reality, she’s a piece of technology — an organic robot …
The Rarest of All Diseases Are Becoming TreatableDec 8, 2025
This year, gene-editing technology was customized to fix mutations in a single patient’s genes for the first time.
Helion gives behind-the-scenes tour of secretive fusion prototypeOct 28, 2025
In the city of Everett, inside a vault built with thick concrete blocks is Polaris, a machine that could change the world.
Meet the man building a starter kit for civilizationOct 16, 2025
Marcin Jakubowski is compiling a DIY set of society’s essential machines and making it open-source.
How Common Is Accidental Invention?Sep 25, 2025
One of the most important inventions of the 19th century was mauve dye, the first synthetic aniline dye.
The death rays that guard lifeSep 18, 2025
We disinfect water before we drink it. Why don’t we disinfect the air before we breathe it?
This power source is 15,000 ft below the ground | Bill GatesSep 6, 2025
A company called Fervo Energy is hoping to supercharge geothermal power with an innovative new approach to turning the earth’s heat into power.
Ford and the Birth of the Model TAug 28, 2025
Ford’s status as a large-volume car producer began with the predecessor to the Model T: the Model N, a four-cylinder, two-seater car initially priced at $500. At the time, the average car in the US cost more than $2,000, and it seemed nearly unimaginable that a car with the capabilities of the Model N could cost so littl
‘Bubbles’ turn air into drinkable waterAug 26, 2025
An atmospheric water harvester based on an origami-inspired hydrogel works anywhere—even Death Valley.
Can Wood Replace Steel? Chemically Modified Superwood Makes a Bold CaseAug 8, 2025
InventWood just cracked the code on something that sounds like science fiction. They've figured out how to make wood stronger than steel by restructuring it at the molecular level. This isn't your typical engineered lumber story. We're talking about a material that delivers 50% more tensile strength than steel while weighing dramatically less. The Maryland
The Rise of Shippable MicrofactoriesJul 26, 2025
Can microfactories solve prefab's economic problem by inverting the factory model?
Age of Invention: All Fired UpJul 5, 2025
The mystifying, centuries-long failure of the coal briquette
Making the CentrifugeMay 5, 2025
The modern centrifuge was first designed for milkfat separation in the dairy industry. Today, it is ubiquitous in research laboratories. To whom do we owe its astonishing versatility?
Brian Potter on what he has learned writing Construction Phyics - Marginal REVOLUTIONApr 19, 2025
Individual construction tasks have, on average, not gotten cheaper since at least the 1950s. Bricks haven’t gotten cheaper since the mid-19th century, despite massive improvements in brickmaking technology. Construction has a reputation for being slow to innovate, but innovations seem to spread in construction at roughly similar rates to other industries, like car manufacturing or agriculture. Single family […]
Steam networks - Works in ProgressMar 13, 2025
New York's skyscrapers soar above a century-old steam network that still warms the city. While the rest of the world moved to hot water, Manhattanites still buy steam by the megapound.
Why it's so hard to build a jet engineMar 1, 2025
Civilization's toughest technical challenges are those that require extraordinary (and constantly improving) performance to be delivered at a low cost.
The Influence of Bell LabsNov 15, 2024
We’ve talked previously about Bell Labs’ long, storied history as an innovation engine and a generator of new technology.
The Long Strange History of Teflon the Indestructible Product Nothing SeeAug 24, 2024
Chemists accidentally discovered the material in 1938, and since then it has been used for everything from helping to create the first atomic bomb to keeping your eggs from sticking to your frying pan
Book Review: Refrigeration and the Many Virtues of the Cold ChainJul 13, 2024
Nicola Twilley’s "Frostbite" explores how refrigeration has shaped everything over time from our guts to economies.
Lessons from history’s greatest R&D labs – Answer.AIFeb 29, 2024
A historical analysis of what the earliest electrical and great applied R&D labs can teach Answer.AI, and potential pitfalls
What Happened to the US Machine Tool Industry?Jan 19, 2024
Machine tools – machines that cut or form metal – are the heart of industrial civilization.
This holographic camera turns any window into an invisible cameraJan 7, 2024
Zeiss' "Holocam" is a transparent camera powered by holography that turns glass windows into cameras
When ideas have sexJul 29, 2023
At TEDGlobal 2010, author Matt Ridley shows how, throughout history, the engine of human progress has been the meeting and mating of ideas to make new ideas. It's not important how clever individuals are, he says; what really matters is how smart the collective brain is.
Atomera Plans to Breathe New Life into Older Chip ManufacturingJul 28, 2023
Atom-thin layers of oxygen in a chip’s silicon can make devices speedier and more reliable
The World Is Full of Sleeping BeautiesJul 28, 2023
Success in nature and culture depends just as much on timing as it does on brilliance.
Magnetohydrodynamic Drive – Silent Water PropulsionJul 24, 2023
DARPA, the US Defense Advanced Research Projects Agency, is now working on developing a magnet-driven silent water propulsion system - the magnetohydrodynamic (MHD) drive. The primary reason is to develop silent military naval craft. Imagine a nuclear submarine with an MHD drive, without moving parts, that can slice through the water silently. No moving parts
The Story of Titanium - by Brian PotterJul 8, 2023
The earth contains a lot of titanium - it’s the ninth most abundant element in the earth’s crust.
Surgical patch seals wounds and warns of leaksJun 21, 2023
A new surgical patch can seal wounds in the abdomen and send warning of potential leaks.
Steve Jobs, Rick Rubin and "taste"May 28, 2023
The Apple co-founder and the super-producer share similar ideas regarding taste and creativity.
Watching Paint Dry - by Ed Conway - Material WorldMay 24, 2023
The unexpectedly interesting story of car coatings and what they tell us about the modern world
The Four-Horse Race to Decarbonize Steel: Strategies, InnovationsApr 14, 2023
Discover the 'four-horse race' among leading manufacturers to decarbonized steel their operations. Explore the strategies and technologies.
Women’s Basketball Continues SlumpApr 8, 2023
SB Loses Shootout to Manhattan On Nov. 24 Stony Brook’s Women’s Basketball team faced the Manhattan Jasper’s. In a high scoring affair, Stony Brook lost by a final score of 74-68. The Jasper’s held the lead most of the game, including a game high 12 point lead at half (44-32).
The blast furnace - 800 years of technology improvementFeb 25, 2023
The modern world uses shocking amounts of steel.
The Alchemy of Air: A Jewish Genius, a Doomed Tycoon, and the Scientific Discovery That Fed the World but Fueled the Rise of Hitler: Hager, Thomas: 9780307351791: Amazon.com: BooksJan 22, 2023
The Alchemy of Air: A Jewish Genius, a Doomed Tycoon, and the Scientific Discovery That Fed the World but Fueled the Rise of Hitler [Hager, Thomas] on Amazon.com. *FREE* shipping on qualifying offers. The Alchemy of Air: A Jewish Genius, a Doomed Tycoon, and the Scientific Discovery That Fed the World but Fueled the Rise of Hitler
Should You Invest in Disruptive Materials?Nov 23, 2022
Opportunities and Challenges for Carbon Nanotube TransistorsNov 23, 2022
A new technical review paper titled “Carbon nanotube transistors: Making electronics from molecules” was published by researchers at Duke University, Northwestern University, and Stanford University. “Between the opportunities in high-performance digital logic with the potential for 3D integration and the possibilities for printed and even recyclable thin-film electronics, CNT transistors warrant a renewed and even... » read more
When should we be surprised that an invention took “so long”?Nov 21, 2022
The question is only interesting if it took an abnormally long time. Here’s my model for this
Life in the Slow LaneNov 17, 2022
Olivia Potts | Longreads | November 2022 | 16 minutes (4,649 words) It’s six in the morning, and Robert Booth has already been on the road for three hours. Sitting alongside him in the cab of his lorry (the British term for a truck) is Louis, Robert’s small dog, a Jack Russell-chihuahua mix, and a washing-up bowl […]
Why Was Western Printing Superior to Asian Printing?Sep 4, 2022
Movable type was not invented by Gutenberg but in China and later advanced in Korea, so why didn't Asia have a printing revolution?
Every Complex Idea Has a Million Stupid CousinsAug 30, 2022
Chances are, you've met far more stupid cousins than you realize
The Key to Successful Innovation? Progress Over ProductAug 14, 2022
Tap into people's unspoken needs to create breakthrough innovations.
Making Uncommon Knowledge Common - kwokchainJul 5, 2022
The Rich Barton Playbook for winning markets through Data Content Loops Preface: This is part of a longer private memo analyzing Zillow and its recent shift towards Opendoor’s model. May publish rest of memo at some later point. But wanted to share first part, on Rich Barton and Zillow’s initial rise. Have had many recent … Continue reading Making Uncommon Knowledge Common →
Etsy's A/B Testing Culture Spurs Mobile Innovation | ApptimizeJul 5, 2022
We spoke with Etsy’s iOS Software Engineer, Lacy Rhoades, about their culture of continuous experimentation. Learn about their a/b testing culture
Where Do Eureka Moments Come From?Jun 28, 2022
Sometimes the search for creative insight requires us to focus, and sometimes it requires us to look away.
13 tips for generating new ideas | CanvaJun 28, 2022
Feeling uninspired? Learn how to stay creative and keep on generating new ideas with these 13 simple yet effective tips.
Steve Blank Fear of Failure and Lack of Speed In a Large CorporationJun 28, 2022
I just spent a day working with Bob, the Chief Innovation Officer of a very smart large company I’ll call Acme Widgets. Bob summarized Acme’s impediments to innovation. “At our company we have a cu…
The Hard Truth About Innovative CulturesJun 25, 2022
Innovative cultures are generally depicted as pretty fun. They’re characterized by a tolerance for failure and a willingness to experiment. They’re seen as being psychologically safe, highly collaborative, and nonhierarchical. And research suggests that these behaviors translate into better innovative performance. But despite the fact that innovative cultures are desirable, and that most leaders claim to understand what they entail, they are hard to create and sustain. That’s because the easy-to-like behaviors that get so much attention are only one side of the coin. They must be counterbalanced by some tougher and frankly less fun behaviors: an intolerance for incompetence, rigorous discipline, brutal candor, a high level of individual accountability, and strong leadership. Unless the tensions created by this paradox are carefully managed, attempts to create an innovative culture will fail.
Liquidity hacking: Solving the chicken-egg dilemma with marketplace startupsJun 24, 2022
Guest How to get a two-sided marketplace startup like Airbnb, Exec, or eBay up and running -- the painless way.
Repair is as important as innovationJun 23, 2022
Maintenance lacks the glamour of innovation—and is harder to measure
The Magnet That Made the Modern WorldJun 22, 2022
Masato Sagawa and John Croat explain how they invented the neodymium-iron-boron permanent magnet
How the Ballpoint Pen Killed CursiveJun 19, 2022
Thicker ink meant it didn't smudge as easily as its predecessor, the fountain pen—but it also made writing by hand more physically demanding.
Choose Boring TechnologyJun 1, 2022
Why people hated shopping carts when they first came out | CNN BusinessMay 19, 2022
We live in a world shaped by shopping carts. The ubiquitous, unloved contraptions are a key feature of US economy. (Yes, really.)
3D-printed acoustic holograms against Alzheimer's or Parkinson'sMay 18, 2022
The holograms designed by the team of researchers from UPV and CSIC allow the opening of the blood brain barrier selectively, efficiently and in a highly focused manner, facilitating the administration of therapeutic drugs to treat pathologies that affect the central nervous system.
How polyester bounced back - Works in ProgressApr 29, 2022
Polyester went from being the world’s most hated fabrics to one of its favorites. It's so successful that many people don’t even realize they’re wearing polyester today.
The complete guide to the battery revolutionDec 1, 2021
Whoever comes up with the next big battery technology could become the ExxonMobil or Shell of the 21st century.
The Incredible Tale of the Greatest Toy Man You've Never KnownNov 14, 2021
He brought Pokémon, Yu-Gi-Oh!, and Cabbage Patch Kids to our living rooms. He made and lost fortunes. Can Al Kahn stay in the game?
How factories were made safeOct 1, 2021
The fundamental cause was a wrong attitude towards the core question: who is responsible for safety?
The Stories Behind 20 Inventions That Changed the WorldSep 29, 2021
From blood banks and barcodes to the Super Soaker and the pizza box, here are the fascinating stories behind inventions that changed the world.
Eternally five years away? No, batteries are improving under your noseMay 31, 2021
Under the hood, lithium-ion batteries have gotten better in the last decade.
Keep On Connecting: 5 Connectors That Changed The World - OutfunnelMay 11, 2021
Connecting things physically, mechanically or digitally can have profound effects. Here’s a list of 5 connectors that changed the world.
How to Build an Invention Machine — 6 Lessons That Powered Amazon’s SuccessFeb 19, 2021
Former Amazon execs Colin Bryar and Bill Carr helped build the "invention machine" that enabled the company to successfully launch everything from AWS to the Kindle. Here, they share granular advice and concrete takeaways for startups looking to alter their own trajectories.
The Egghead Gap — The New AtlantisFeb 4, 2021
If America wants to keep China from setting the global course of science, we need a crash program to recruit international talent.
One of those boring yet fascinating innovation articlesDec 18, 2020
Physicians who also have extensive training in scientific methods, often a Ph.D., are ideally suited to learn from the unusual clinical manifestations of Covid-19, such as strokes in young adults and autoimmune Kawasaki syndrome in children. Physician-scientists, however, are becoming extinct in the United States, comprising only about 1% of all physicians today, and with few young clinician researchers joining […]
Cracks in the Great Stagnation?Nov 27, 2020
Why the Industrial Revolution didn’t happen in China - The Washington PostSep 3, 2020
What really sparked the world’s incredible revolution in wealth.
Mathematical Model Reveals the Patterns of How Innovations AriseDec 23, 2019
The work could lead to a new approach to the study of what is possible, and how it follows from what already exists.
The Bus Ticket Theory of GeniusNov 23, 2019
How Pizza Hut stopped innovating its pizza and fell behind Domino’sOct 26, 2019
Once an innovation powerhouse, with creations like Stuffed Crust and BigFoot, Pizza Hut has been forced to shift focus from food to technology.
Why did we wait so long for the bicycle?Jul 17, 2019
The bicycle, as we know it today, was not invented until the late 1800s. Here are some theories about why
The Future of Television | I, CringelyJul 15, 2019
I’ll be surprised if broadcast television in the U.S. survives another decade.
The case for general excellenceMay 15, 2019
In his new book, Range, David Epstein argues that although specialization has its virtues, businesses need people with wide horizons and ranges of interests in order to succeed.
Iterative Development: The Secret to Great Product Launches — MindKMar 5, 2019
Elon Musk’s SpaceX is winning the space race. His secret to success lay in the iterative development process, borrowed straight from the software industry.
Don’t Sell a Product, Sell a Whole New Way of ThinkingJan 11, 2019
Customers need the right mental model to understand why they need your product.
Why Doctors Reject Tools That Make Their Jobs EasierOct 17, 2018
From the thermometer’s invention onward, physicians have feared—incorrectly—that new technology would make their jobs obsolete
Why big companies squander brilliant ideasOct 8, 2018
J F C Fuller did not invent the tank. That distinction should probably fall to E L de Mole, an Australian who approached the British war office in 1912 with a
Research: 83% of Executives Say They Encourage Curiosity. Just 52% of EmploSep 21, 2018
Curiosity is incredibly important for organizations, yet leaders assume—mistakenly for the most part—that their employees feel empowered to be curious. They see few barriers themselves to asking questions and assume the same is true for their employees. But employees describe a very different reality. 83% of C-level or president-level executives say curiosity is encouraged “a great deal” or “a good amount” at their company. Just 52% of individual contributors say the same. This gap seems to be driven in part by perceptions of the value of curiosity. While about half (49%) of the C-level believes curiosity is rewarded by salary growth, only 16% of individual contributors agree. A staggering 81% of individual contributors are convinced curiosity makes no material difference in their compensation.
iot
Types Of Barcodes - 1D & 2D - Scanbot SDKAug 25, 2022
An essential overview on the most-used barcode types. 1D- and 2D-barcodes for retail, logistics, ticketing and more. ➜ Learn more now.
IoT Standards & Protocols Guide | 2019 Comparisons on Network, Wireless Comms, Security, IndustrialDec 1, 2021
Overviews of protocols involved in Internet of Things devices and applications. Help clarify with IoT layer technology stack graphics and head-to-head comparisons.
iphone
The most powerful MagSafe Battery Pack gives your iPhone an impressive 10,0Feb 17, 2024
https://youtu.be/ayZrrlo6M5w It's a good thing Apple discontinued its MagSafe Battery Pack, because frankly, it sucked. With an abysmal 1,460mAh capacity, it's really no match for the one from TORRAS. Armed with a whopping 10,000mAh internal battery that can wirelessly charge at speeds of 15W, the TORRAS MagSafe Battery Pack knocks pretty much any competition out
How China turned a prize-winning iPhone hack against the UyghursDec 31, 2021
An attack that targeted Apple devices was used to spy on China’s Muslim minority—and US officials claim it was developed at the country’s top hacking competition.
5 quick ways to boost your iPhone's signal strength from Kim Komando.Dec 8, 2020
No matter which iPhone you use, you’ll invariably deal with a bad or no signal at some point. Kim Komando offers 5 ways to boost signal strength.
ipod
Why people are buying iPods againFeb 21, 2026
Nostalgia and digital burnout are driving a new rush for Apple's retired iPods.
How Steve Jobs Fleeced Carly FiorinaOct 24, 2022
The former HP CEO boasted of her friendship with Apple’s leader — but he took her to the cleaners with the iPod
Classic iPod Hackers Say There’s No Better Way to Listen to MusicMar 18, 2020
Apple may have discontinued click-wheel iPods, but a community of iPod modders resurrects them for their sound and nostalgia
Rockbox Manual InstallMar 18, 2020
japan
Not a Diet: Why Japanese Meals WorkJan 11, 2026
The most useful meal framework in my kitchen has nothing to do with dieting.
Tokyo startup envisions a world where nothing stays lostDec 9, 2025
Find Inc. is a Tokyo-based startup that provides a cloud service dedicated to lost items.
How Japan Built a Rare-Earth Supply Chain Without ChinaDec 8, 2025
The 15-year effort by Japan is a model for countries now scrambling to reduce their dependence on Beijing’s critical metals.
Affordable Omakase Sushi Restaurants in TokyoSep 29, 2025
We introduce five recommended spots for omakase experiences that won’t break the bank, located across central Tokyo.
Anison 101: A Beginner’s Guide to Anime SongsJul 31, 2025
Many anime tracks become mainstream hits, performed at concerts and karaoke bars nationwide. Here's a guide to the world of anison.
Out of Eden Walk: Getting by on the generosity of strangers - The World from PRXJun 26, 2025
On a long trip away from home, some of the most memorable moments come from the hospitality of strangers. National Geographic Explorer Paul Salopek has come to rely on hospitality daily on his Out of Eden Walk, traversing the path of human migration. Host Marco Werman speaks to Paul about hospitality, starting in Japan with a recent stay in a traditional roadside inn.
Backyard Coffee And Jazz In Kyoto, JapanJun 24, 2025
A "magical" experience, and what we get when we let people pursue their passions
Kappabashi Neighborhood Guide: Tokyo's Kitchen Supply ParadiseMay 28, 2025
Kappabashi is a neighborhood best known for two things: kitchen supplies and a Japanese mythological being, the kappa.
The sushi cone that changed everythingMay 3, 2025
Inspired by ice cream cones, Tokyo’s “temaki-zushi” made sushi handheld, affordable — and a quietly radical moment in Japanese dining.
10 Untranslatable Japanese Words You Need To KnowMay 2, 2025
Explore the fascinating world of untranslatable Japanese that reveal unique aspects of Japanese culture and daily life.
Reclaiming Sanya, one meal at a timeApr 28, 2025
Since 2018, Sanya Cafe has been building community in one of Tokyo’s most colorful — and infamous — neighborhoods.
Hōshi: A Short Documentary on the 1300-Year-Old Hotel Run by the Same Japanese Family for 46 GenerationsApr 24, 2025
Hōshi, a traditional Japanese inn in Komatsu, Japan, holds the distinction of being the second oldest hotel in the world—and “the oldest still running family business in the world.” Built in 718 AD, Hōshi has been operated by the same family for 46 consecutive generations.
These Are the Best Small Towns in JapanApr 14, 2025
Visiting small towns is the best way to discover the real Japan. Here's how to visit small towns in Japan in 2025, 2026 and beyond.
The Golden Age of Japanese Pencils, 1952-1967Mar 5, 2025
It was the summer of 1952, and the executives of Tombow Pencil were about to revolutionize the Japanese pencil industry—or, possibly, fall flat on their faces. Hachiro Ogawa, the son of founder Harunosuke Ogawa, was Tombow's managing director, and he had just finished a years-long project, at enormous cost,
My Quest to Find the Owner of a Mysterious WWII Japanese SwordFeb 7, 2025
When I was a kid, I was fascinated by a traditional katana my grandfather had brought home from Japan in 1945. Years later, I decided it was time to find the heirloom’s rightful owner.
4 Can’t-Miss Towns in an Often Overlooked Corner of JapanOct 24, 2024
Kyushu, often passed over by international visitors, is rich in crafts, history and culture. Here are four destinations to consider.
How onigiri, not as famous as ramen or sushi, became Japan’s soul foodJun 23, 2024
The humble sticky-rice ball’s popularity has shot up because it’s simple to make, is gluten-free and is versatile.
How Japanese Companies Are Benefiting From the Chips BattleJun 9, 2024
With subsidies and a $6 billion acquisition, Tokyo wants to make its companies indispensable in the global supply chain.
On Himalayan Hillsides Grows Japan’s Cold, Hard Cash - The New York TimesApr 16, 2024
A shrub in impoverished Nepal now supplies the raw material for the bank notes used in Asia’s most sophisticated financial system.
The Unique History of Japanese Plastic Food SamplesFeb 29, 2024
Tokyo Weekender went to Yamato Samples in Toshima city to find out the ins and outs of Japan’s fascinating food sample culture.
Cassettes Are Back Again, But In A Big Way In JapanFeb 29, 2024
Cassettes are making a comeback yet again, but this time it's Japan that's leading the way.
Please sir, I want Sumo: How Sumo wrestlers fuel up for fightsJan 16, 2024
A look inside the sport’s nutrition — and one dish in particular — reveals athletes who are much healthier than many of us realize. | Sport
We are sakuracoOct 7, 2023
Explore new authentic Japanese snacks every month. Indulge in hand-selected seasonal sweets, snacks and tea made by local makers. Worldwide shipping.
A Japanese Island Where the Wild Things AreApr 16, 2023
In the pantheon of yokai, spooky beings of Japanese folklore embody anxieties ancient and modern. On Shodoshima, an art contest helps bring new ones to life.
From Prejudice to Pride | Hakai MagazineJan 14, 2022
In the 20th century, Japanese anthropologists and officials tried to hide the existence of the Indigenous Ainu. Then the Ainu fought back like their cousins, the bears.
Japanese vending machines: the cutting edge of merchandising … and on the bJul 10, 2021
Media reports focusing on Japan's quirky vending machine culture dive into what new items are on offer and the risk they face due to competition from convenience stores.
Japanese Vending Machines at Night Juxtaposed with a Wintry Hokkaido LandscOct 6, 2017
“In Hokkaido where I live, winters are harsh and snows are deep,” says photographer Eiji Ohashi. “Every day can become rather inconvenient” due to the constant snowfall. But heavy snows also bring wintry wonderlands and the discovery of small pleasures. One snowy night. Ohashi was walking
javascript
Quick Start | GatsbyNov 18, 2025
This quick start is intended for intermediate to advanced developers. For a gentler intro to Gatsby, head to our tutorial ! Getting started…
Apache EChartsApr 9, 2025
Apache ECharts, a powerful, interactive charting and visualization library for browser
Data Structures and Algorithms in JavaScriptApr 9, 2025
🥞Data Structures and Algorithms explained and implemented in JavaScript + eBook - amejiarosario/dsa.js-data-structures-algorithms-javascript
5 JavaScript Libraries You Should Say Goodbye to in 2025Dec 7, 2024
We highlight five JavaScript libraries that are likely to become obsolete in 2025 and why it's time to move on. Also: we list alternatives!
384,000 sites pull code from sketchy code library recently bought by ChinesJul 4, 2024
Many website admins, it seems, have yet to get memo to remove Polyfill[.]io links.
HTML Over The WireJun 4, 2024
Hotwire is an alternative approach to building modern web applications without using much JavaScript by sending HTML instead of JSON over the wire.
Conquering System Design Diagrams: My Shift to Mermaid.jsApr 9, 2024
Diagrams are the cornerstone of software development, illuminating complex systems and fostering...
Eloquent JavaScriptMar 7, 2024
Hotwire Modals in Ruby on Rails with Stimulus and Turbo FramesFeb 23, 2024
In the first part of our series, we'll explore two Hotwire methods to make modals accessible in your Rails application.
How to Draw with JavaScript on an HTML Canvas Element – Beginner's GuideFeb 14, 2024
There are many ways to code graphics for the web. You can create art with CSS. You can code an SVG image as part of an HTML file. Or you can generate graphics from JavaScript using the Canvas API. In this article, we'll explore how to use JavaScript ...
20 JavaScript One-Liners That’ll Make You Look Like a ProFeb 13, 2024
JavaScript keeps growing and growing, opening doors for new “to be tech geeks” in the market as it’s...
Why Should Lodash be Your JavaScript Project's Go-To Library?Feb 6, 2024
Check this post on my web notes. In almost every project we work on, we use extra tools to make...
Rails 7.0: Fulfilling a visionJul 24, 2023
This version of Rails has been years in the conceptual making. It’s the fulfillment of a vision to present a truly full-stack approach to web development that tackles both the front- and back-end challenges with equal vigor. An omakase menu that includes everything from the aperitif to the dessert.
How to draw any regular shape with just one JavaScript function | MDN BlogMay 30, 2023
Learn how to use JavaScript to draw any regular shape to a HTML canvas with a single function, and how to modify it to draw multiple shapes.
Package Managers: Understanding npm, npx and yarnMay 27, 2023
In the development scenario using JavaScript/TypeScript, it is unthinkable to build professional...
How to Build an Error Handling Layer in Node.jsMar 15, 2023
Discover how to put an error handling layer in place for your Node.js application using Express.
Using the HTML Geolocation API to display a users location on a mapFeb 22, 2023
In this tutorial we’ll be using the HTML Geolocation API to display the current location of a user on...
7 JavaScript Web APIs to build Futuristic Websites you didn't know?Feb 22, 2023
With the rapidly changing technologies, developers are being provided with incredible new tools and...
Mastering Nginx for Node.js: Best Practices and TipsFeb 19, 2023
Nginx is a popular web server that is widely used to serve static content, reverse proxy, and load...
kauffecup/react-bubble-chart: A React+D3 animated bubble chartFeb 11, 2023
A React+D3 animated bubble chart.
Npm vs Yarn: What Should you use for managing packages in React?Feb 11, 2023
Both npm (Node Package Manager) and Yarn are popular package managers for JavaScript projects,...
Babylon.js PlaygroundFeb 10, 2023
Babylon.js playground is a live editor for Babylon.js WebGL and WebGPU 3D scenes
Getting Started With SvelteKitJan 24, 2023
SvelteKit is the latest of what I'd call next-gen application frameworks. It, of course, scaffolds an application for you, with the file-based routing,
Google's John Mueller: Move JavaScript Below The Head ElementJan 16, 2023
John Mueller from Google advises placing JavaScript code underneath the HTML element to ensure that search engines can clearly understand your website.
Animation Techniques with anime.js: Timing, Easing, and KeyframesJan 1, 2023
Welcome to the second tutorial in this series on animating with anime.js! In the previous post,...
InnerHTML vs. InnerText vs. TextContent: A Guide | Built InDec 23, 2022
InnerHTML, innerText and textContent can each help to manipulate JavaScript code, but they contain subtle differences. Here’s what to know
The new wave of Javascript web frameworksSep 24, 2022
Make sense of the proliferation of new Javascript web frameworks. A deep dive into the problems at scale and the recent evolution of innovation.
Top 10 JavaScript Frameworks to Use in 2022Aug 29, 2022
Introduction Being a multi-paradigm language, JavaScript maintains programming styles...
10 ways to speed up JavaScript loadingAug 19, 2022
In many modern websites, there is a lot of JavaScript. In fact, according to the HTTP Archive, the...
Build Your Own Web Framework – VercelJul 30, 2022
Build your own web framework that deploys to edge and serverless infrastructure.
codecrafters-io/build-your-own-x: Master programming by recreating your favorite technologies from scratch.Jul 20, 2022
Master programming by recreating your favorite technologies from scratch. - codecrafters-io/build-your-own-x
An Introduction to Multithreading in Node.jsJul 20, 2022
Let's dive into multithreading and how to use worker threads in Node.
Starting Out in Software Engineering? Don’t Bother Learning React JS. | Built InJul 9, 2022
React JS has been an important framework in developers’ toolkits for a decade now. But if you’re just starting your career, you’re probably better off not spending time learning it.
Why Your Angular Bundle Is BloatedJun 30, 2022
A common reason why an Angular bundle is bloated is that it uses a library like MomentJS that isn't...
How to Save a File With JavaScriptJun 21, 2022
This tutorial will show you three different techniques of creating and saving files with JavaScript.
TypeScript Utility Types: The 6 Most UsefulJun 20, 2022
I have been working with typescript for almost a year now, and I have learned and implemented a lot...
Learn TypeScript — The Ultimate Beginners Guide : Built-in TypesJun 19, 2022
TypeScript Fundamentals in One Place 1. Introduction Programming...
Real-time SKU detection in the browser using TensorFlow.jsJun 7, 2022
Realtime and offline SKU detection in the browser using Tensorflow.js
16 Top NodeJS tools to make you a better developerMay 30, 2022
NodeJS is growing in popularity since its inception. 30 million websites use NodeJS Back in 2018,...
The Most Popular Node.js Frameworks (2023)Apr 29, 2022
This is a comprehensive overview for the most popular Node.js frameworks in the current year. Also covers up and rising stars to keep an eye out for.
Meteor Vue JS Storybook = A Complete Guide To Scalable UI SystemApr 14, 2022
It has been more than one year since we have introduced Vue Js in our Meteor Production App, and last month we have implemented the…
NPM vs Yarn: let's settle things out.Apr 13, 2022
Yarn and NPM are two of the most popular Node.js package managers. They allow downloading,...
Tao of Node - Design, Architecture & Best Practices | Alex Kondov - SoftwarMar 27, 2022
One of the main benefits of JavaScript is that it runs both in the browser and the server. As an engineer you need to master a single language and your skills…
8 CSS & JavaScript Snippets for Creating Cool Card UI Hover EffectsMar 23, 2022
From bold transformations to simple highlights, we share some fantastic CSS & JavaScript card UI hover effect snippets.
2013 04 12 package managers an introductoJan 23, 2022
Front-End Performance Checklist 2021 (PDF, Apple Pages, MS Word) — Smashing MagazineJan 17, 2022
Let’s make 2021... fast! An annual front-end performance checklist, with everything you need to know to create fast experiences on the web today, from metrics to tooling and CSS/JavaScript techniques.
Understanding Webpacker in Rails 6 | Road to Rails 6Jan 17, 2022
Starting with Rails 6, Webpacker is the default JavaScript compiler. It means that all the JavaScript code will be handled by Webpacker instead of the old assets pipeline aka Sprockets. Webpacker is different from asset pipeline in terms of philosophy as well as implementation. In this blog post, we will
Robust Client-Side JavaScript – A Developer’s GuideJan 16, 2022
Why do we need to talk about robust JavaScript and how do we achieve it?
Lodash DocumentationJan 16, 2022
mbeaudru/modern-js-cheatsheet: Cheatsheet for the JavaScript knowledge you will frequently encounter in modern projects.Jan 16, 2022
Cheatsheet for the JavaScript knowledge you will frequently encounter in modern projects. - mbeaudru/modern-js-cheatsheet
Front-end Developer Handbook 2019 - Learn the entire JavaScript, CSS and HTML development practice!Jan 16, 2022
A guide for front-end developers to equip themselves with latest learning resources and development tools in front-end engineering.
Front-End Developer Handbook 2018 - Learn the entire JavaScript, CSS and HTML development practice!Jan 16, 2022
A guide for front-end developers to equip themselves with latest learning resources and development tools in front-end engineering.
I Promise this is a practical guide to Async / AwaitJan 16, 2022
With ES8 we got another way to write code that is async in a more readable way then callback's its called Async / Await. With ES6 we already got Promises.
webpackJan 16, 2022
webpack is a module bundler. Its main purpose is to bundle JavaScript files for usage in a browser, yet it is also capable of transforming, bundling, or packaging just about any resource or asset.
How JavaScript works: inside the V8 engine + 5 tips on how to write optimized codeJan 16, 2022
Couple of weeks ago we started a series aimed at digging deeper into JavaScript and how it actually works: we thought that by knowing the…
elsewhencode/project-guidelines: A set of best practices for JavaScript projectsJan 16, 2022
A set of best practices for JavaScript projects.
trekhleb/javascript-algorithms: 📝 Algorithms and data structures implemented in JavaScript with explanations and links to further readingsJan 16, 2022
📝 Algorithms and data structures implemented in JavaScript with explanations and links to further readings - trekhleb/javascript-algorithms
16. ModulesJan 16, 2022
10 Best JavaScript Animation Libraries to Use in 2021Jan 16, 2022
This collection of the best JavaScript animation libraries will help you get a headstart in animating any element on your website.
JavaScript Standard StyleJan 13, 2022
Redux - A JS library for predictable and maintainable global state management | ReduxJan 13, 2022
A JS library for predictable and maintainable global state management
Give Grunt the Boot! A Guide to Using npm as a Build Tool — SitePointJan 13, 2022
Peter Dierx demonstrates how flexible and powerful npm can be when used as a build tool and suggests that you might not actually need Grunt, Gulp and co.
Writing javascript apisJan 12, 2022
React JS Introduction - React EnlightenmentJan 12, 2022
A JavaScript library for building user interfaces. React Enlightenment, the most famous guide to examine and understand the building blocks of React apps.
Getting Started with Express.jsJan 12, 2022
Express is a minimal web server built on Node.js that provides essential functionality for delivering web applications to the browser and mobile devices...
The Document Object Model :: Eloquent JavaScriptJan 12, 2022
Bower Beginner's GuideJan 12, 2022
A quick to tutorial that will get you started with Bower, an excellent front-end development package manager.
Tips and practices to optimize your AngularJS appJan 12, 2022
AngularJS is a magic framework. Using it well will drastically improve your productivity, code modularity and reusability. Using it badly…
TypeScript for Beginners, Part 1: Getting StartedJan 12, 2022
This tutorial will show you how to get started with TypeScript, including the installation process, writing some code, and compiling it to JavaScript.
sindresorhus/awesome-nodejs: :zap: Delightful Node.js packages and resourcesJan 12, 2022
:zap: Delightful Node.js packages and resources.
11 Tips to Improve AngularJS Performance - Tech TLDR;Jan 12, 2022
I am new to Angular (even though I am not new to the web development), so please take everything that I am about to say with a grain of salt. That being said, I watched a lot of talks and read a lot of articles relevant to Angular performance, and this post is the summary […]
The Hitchhiker’s Guide to d3.jsJan 12, 2022
The landscape for learning d3 is rich, vast and sometimes perilous. You may be intimidated by the long list of functions in d3’s API…
NativeScriptJan 12, 2022
Empower JavaScript with native APIs. Liberate your development by using Android, iOS, visionOS... APIs directly without leaving your love of JavaScript.
AngularJan 12, 2022
Angular is a platform for building mobile and desktop web applications. Join the community of millions of developers who build compelling user interfaces with Angular.
An introduction to how JavaScript package managers workJan 12, 2022
By Shubheksha Jalan Ashley Williams is one of the leaders of the Node.js community. She tweeted about a new package managers. I didn’t really understand what she meant, so I decided to dig in deeper and read about how package managers work. This was ...
http://meteortips.comJan 4, 2022
zodern/meteor-up: Production Quality Meteor Deployment to AnywhereJan 2, 2022
Production Quality Meteor Deployment to Anywhere.
Build A Real World Beautiful Web APP with Angular 8— The Ultimate Guide (2019) — PART IIDec 26, 2021
🕑 The Wait Is Over ❕
晋中瓮畔电子有限公司Dec 23, 2021
JS: The Right WayDec 20, 2021
A quick reference to best practices for writing JavaScript -- links to code patterns and tutorials from around the web
Gulp: A Web Developer's Secret Weapon for Maximizing Site Speed | Toptal®Dec 17, 2021
When dealing with web-based projects that run in the production environment, being able to build and deploy changes quickly is a top priority. However, repetitive processes such as building front-end assets, when not automated, can be prone to critical errors. In this article, Toptal Freelance Software Engineer A...
Ember.js - A framework for ambitious web developersDec 17, 2021
Ember.js helps developers be more productive out of the box. Designed with developer ergonomics in mind, its friendly APIs help you get your job done—fast.
DOM Enlightenment - Exploring the relationship between JavaScript and the modern HTML DOMDec 17, 2021
Exploring the relationship between JavaScript and the modern HTML DOM
The Modern JavaScript TutorialDec 17, 2021
Modern JavaScript Tutorial: simple, but detailed explanations with examples and tasks, including: closures, document and events, object oriented programming and more.
Express - Node.js web application frameworkDec 17, 2021
JavaScript VisualizerDec 16, 2021
A tool for visualizing Execution Context, Hoisting, Closures, and Scopes in JavaScript.
Modules [ES6]Dec 15, 2021
johnpapa/angular-styleguide: Angular Style Guide: A starting point for Angular development teams to provide consistency through good practices.Dec 15, 2021
Angular Style Guide: A starting point for Angular development teams to provide consistency through good practices. - johnpapa/angular-styleguide
Handlebars.js Tutorial: Learn Everything About Handlebars.js JavaScript TemplatingDec 14, 2021
(A Comprehensive Handlebars.js Tutorial) This is a complete tutorial, and indeed a reference, on Handlebars.js templating and, principally, JavaScript templating. Handlebars.js is a client-side (though it can be used...
8 Key React Component DecisionsDec 14, 2021
By Cory House Standardize your React development with these key decisions React was open-sourced in 2013. Since then, it has evolved. As you search the web, you’ll stumble across old posts with dated approaches. So, here are eight key decisions your ...
Vue.js And SEO: How To Optimize Reactive Websites For Search Engines And Bots — Smashing MagazineDec 14, 2021
Do websites created with reactive frameworks get indexed by Google and other search engines? Is it compulsory to set up pre-rendering, as your SEO consultants suggest? Or are they wrong? In this article, Paolo Mioni will talk mostly about Vue.js, since it is the framework he’s used most, and with which he has direct experiences in terms of indexing by the search engines on major projects, but most of what will be covered is valid for other frameworks, too.
max-mapper/art-of-node: :snowflake: a short introduction to node.jsDec 14, 2021
:snowflake: a short introduction to node.js.
vuejs/awesome-vue: 🎉 A curated list of awesome things related to Vue.jsDec 14, 2021
🎉 A curated list of awesome things related to Vue.js - vuejs/awesome-vue
How To Set Up An Express API Backend Project With PostgreSQL — Smashing MagazineDec 13, 2021
In this article, Chidi Orji will create a set of API endpoints using [Express](https://expressjs.com/) from scratch in ES6 syntax, and cover some development best practices. Find out how all the pieces work together as you create a small project using Continuous Integration and Test-Driven Development before deploying to Heroku.
Getting Acquainted With Svelte, The New Framework On The Block | CSS-TricksDec 13, 2021
For the last six years, Vue, Angular, and React have run the world of front-end component frameworks. Google and Facebook have their own sponsored frameworks,
leonardomso/33-js-concepts: 📜 33 JavaScript concepts every developer should know.Dec 13, 2021
📜 33 JavaScript concepts every developer should know. - leonardomso/33-js-concepts
How JavaScript works: memory management + how to handle 4 common memory leaksDec 13, 2021
A few weeks ago we started a series aimed at digging deeper into JavaScript and how it actually works: we thought that by knowing the…
Creating Graphics Using SVG and AngularJS | DotNetCurryDec 13, 2021
Learn to create interesting biological models and graphics using SVG and AngularJS
Installing Ember - Getting Started - Ember GuidesDec 13, 2021
Installing Ember is easy! And our new install process includes Ember CLI, Ember's build tool - State of the art asset management (including combining, minifying, and versioning) - Built-in generators can help you create components, routes, and more (and...
MeanDec 11, 2021
JavaScript Frameworks, Performance ComparisonDec 11, 2021
The ultimate performance battle between JavaScript frameworks
ES6 Modules in DepthDec 11, 2021
Welcome back to ES6 – “Oh, good. It’s not another article about Unicode” – in Depth series. If you’ve never been around here …
verekia/js-stack-from-scratch: 🛠️⚡ Step-by-step tutorial to build a modern JavaScript stack.Dec 11, 2021
🛠️⚡ Step-by-step tutorial to build a modern JavaScript stack. - verekia/js-stack-from-scratch
gulp/docs/getting-started.md at master · gulpjs/gulpDec 11, 2021
A toolkit to automate & enhance your workflow.
How To Design Better JavaScript APIs — Smashing MagazineDec 11, 2021
In this post, Rodney Rehm focuses on how to make your code accessible to other developers. Discover the most important things that you will need to consider before and while writing your own utilities and libraries.
Package Management Essentials: apt, yum, dnf, pkg | DigitalOceanDec 11, 2021
Most modern Unix-like operating system, rely on a centralized package management system for finding and installing software. This guide serves as a quick ref…
Building An Interactive Infographic With Vue.js — Smashing MagazineDec 11, 2021
Have you ever had a requirement in which you had to design and build an interactive web experience but the grid system fell short? Furthermore, the design elements turned into unusual shapes that just wouldn’t fit into the regular web layouts? In this article, Krutie Patel is going to build an interactive infographic using Vue.js, SVG and GreenSock by using dynamic data and unusual layout.
Getting Cozy With Underscore.jsDec 11, 2021
As JavaScript is slowly moving out of the browser, several tools have emerged that significantly improve JavaScript's robustness. One such tool is called Underscore.js and that's what we're going...
SolidJSNov 30, 2021
Solid is a purely reactive library. It was designed from the ground up with a reactive core. It's influenced by reactive principles developed by previous libraries.
NPM vs. YARN: Basic CommandsNov 28, 2021
Here is a quick reference guide for basic commands that we can use when dealing with Node and...
5 Useful and Interesting Web Animation LibrariesNov 28, 2021
Introduction Libraries help us to code faster through their predefined classes for...
Minification of CSS and JavaScriptNov 3, 2021
Minification is the process of deleting unneeded or redundant data from a resource without altering...
Modern web apps without JavaScript bundling or transpilingAug 20, 2021
I didn't much care for vanilla JavaScript prior to ES6. Through all of the 2000s, I chased different approaches to avoid writing too much of it. First there was RJS (Ruby-to-JavaScript). Then there was CoffeeScript. Both transpiling approaches that turned more enjoyable-to-write source code into the kind of JavaScript that browsers wou...
How real-time data works on Meteor — Know your pub/subsJul 27, 2021
Let's start with how publications and subscriptions work on Meteor, which are the "under the hood" of Meteor's real-time data model.
Meteor 2.3 has been released!Jul 13, 2021
Node 14, HMR improvements, removal of deprecated APIs and much more!
Getting Started with SvelteKit: 10 TipsJul 13, 2021
Getting started with SvelteKit: 10 tips I learned building fast Svelte sites from tooling to integrating SEO components and Netlify config
10 npm Commands that every developer must knowJun 21, 2021
NPM stands for Node Package Manager and it is the package manager for the Node JavaScript platform....
The Four Core Concepts of webpackJun 7, 2021
webpack is a famous static module bundler. Module bundlers are used to bundle Javascript modules into...
Improving The Performance Of An Online Store (Case Study)Jun 3, 2021
Getting a good performance score from Google is hard for any website — but doing so for an online store is even harder. We achieved green scores — even several for mobile. Here is how we did it.
React TutorialMay 31, 2021
React Tutorial - This React tutorial is intended to assist you in learning the fundamentals to advance of ReactJS. Learn all about ReactJS from basics to advanced concepts like Component, State, Props, Router, Fragmentation, Redux, etc.
Tree-Shaking: A Reference Guide — Smashing MagazineMay 26, 2021
“Tree-shaking” is a must-have performance optimization when bundling JavaScript. In this article, we dive deeper on how exactly it works and how specs and practice intertwine to make bundles leaner and more performant. Plus, you’ll get a tree-shaking checklist to use for your projects.
Rails with Webpacker : a full setupMay 18, 2021
Article was originally published here : https://bootrails.com/blog/rails-webpacker-full-setup Webpac...
Create a Next.js App | Learn Next.jsApr 3, 2021
Production grade React applications that scale. The world’s leading companies use Next.js by Vercel to build pre-rendered applications, static websites, and more.
React Tutorial From Scratch: A Step-by-Step Guide (2021 Update)Feb 11, 2021
Learn React and build this todos project with this course. Do you want to learn React and build...
A Practical Introduction To Dependency InjectionJan 2, 2021
This article is the first part of an upcoming series that provides a practical introduction to Dependency Injection in a manner that immediately permits you to realize its many benefits without being hampered down by theory.
Migrate to typescript - the advance guideDec 9, 2020
About a year ago I wrote a guide on how to migrate to typescript from javascript on node.js and it g...
No One Ever Got Fired for Choosing React — jake lazaroffDec 5, 2020
If you spend a lot of time on Hacker News, it’s easy to get taken by the allure of building a project without a framework.
How To Build A Blog With Next And MDXNov 3, 2020
In this guide, Ibrahima Ndaw will be looking at Next.js, a popular React framework that offers a great developer experience and ships with all of the features you need for production. We will also build a blog, step by step, using Next.js and MDX. Finally, we’ll cover why you would opt for Next.js instead of “vanilla” React and alternatives such as Gatsby.
Deploy Angular Apps to Firebase From GitHubNov 3, 2020
How to create simple CI/CD pipelines for automated deployments
Master TypeScript In 50 Short Lessons — Smashing MagazineNov 2, 2020
Meet our new book, “TypeScript in 50 Lessons”, a deep-dive to understand what TypeScript is, how it works, and how you can make it work for you. With code walkthroughs, hands-on examples and common gotchas. 464 pages. Jump to table of contents and get the book right away.
Top 15 Angular Projects for BeginnersSep 22, 2020
55K subscribers in the angularjs community. A community for the awesome MVC JS framework.
Angular v/s React v/s Vue: The Complete ComparisonAug 27, 2020
"Framework is heart of every technology." Whether you are a beginner, a senior developer, a freela...
Hyperapp • The tiny framework for building web interfacesJul 11, 2020
1kB-ish JavaScript framework for building hypertext applications - jorgebucaran/hyperapp
2020 Chrome Extension Performance Report | DebugBearJun 16, 2020
A look at how Chrome extensions affect CPU usage, page rendering, and browser memory consumption.
DenoMay 16, 2020
Deno features improved security, performance, and developer experience compared to its predecessor. It's a great time to upgrade your Node.js project to run on Deno.
Next.js 9.4 – Fast Refresh, Incremental Static RegenerationMay 15, 2020
Next.js 9.4 introduces React Fast Refresh, Incremental Static Regeneration, New Environment Support, Built-in Fetch, and more!
How To Install Node.js on Ubuntu 18.04 / 16.04 LTS - TecAdminMay 14, 2020
Installing latest node.js ubuntu. How do I Install stable node.js, npm on Ubuntu. Installing Node.js with apt-get package manager on Ubuntu
Why does Rails 6 include both Webpacker and Sprockets?May 14, 2020
A new Rails 6 application will install both Webpacker and Sprockets by default. Don't they solve the same problem? This article dives into why Sprockets lives on even though webpack has surpassed most of its features ...
The Comprehensive Guide to JavaScript Design Patterns | Toptal®May 14, 2020
Design patterns are reusable solutions to commonly occurring problems in software design. Let's take a look at how they work and explore some popular JavaScript design patterns.
The Cost of JavaScript FrameworksMay 10, 2020
The Svelte Compiler HandbookApr 5, 2020
The Svelte compilation process can be broken down into 4-steps, 1) parsing source code into AST, 2) tracking references and dependencies, 3) creating code blocks and fragments, and 4) generate code.
Login Form Using Semantic-UIMar 9, 2020
55K subscribers in the angularjs community. A community for the awesome MVC JS framework.
Build a real-time chat app using Socket.io and Angular.JSMar 9, 2020
55K subscribers in the angularjs community. A community for the awesome MVC JS framework.
Front-end technologiesDec 31, 2019
The front-end is everything involved with what the user sees, including design and some languages like HTML and CSS.
RxJS-Toolkit: Convenient everday RxJS utilities with pipeable operatorsDec 23, 2019
55K subscribers in the angularjs community. A community for the awesome MVC JS framework.
Getting Started with React (2019 Edition) ― Scotch.ioDec 14, 2019
See why React is the most popular JavaScript library for building frontends, and use it to build sites and apps.
Most Dangerous JavaScript Vulnerabilities To Watch For in 2025Sep 24, 2019
Hackers are continuously developing new ways to exploit JavaScript vulnerabilities. Here are the JS attack vectors developers should know about.
Next.js 8Aug 30, 2019
Next.js 8 introduces Serverless Mode, smaller bundles, performance improvements, and more.
Full series of 11 posts is out: Build an end-to-end Movie Store App with ReAug 30, 2019
426K subscribers in the reactjs community. A community for discussing anything related to the React UI framework and its ecosystem. Join the…
Zdog · Round, flat, designer-friendly pseudo-3D engine for canvas and SVGJun 2, 2019
Round, flat, designer-friendly pseudo-3D engine for canvas and SVG
Talking to Python from JavaScript (and Back Again!)Apr 17, 2019
Something a lot of beginners struggle with is the concept of passing data between different programmi...
The world beyond React, Vue & AngularFeb 3, 2019
React, Vue and Angular have been hot topics lately. Let's see if there are any other interesting tools and concepts out there.
10 Interesting JavaScript and CSS libraries for November 2018Nov 8, 2018
This November's collection is packed with some powerful CSS frameworks, awesome date and time library and JS tools.
How to stop using console.log() and start using your browser’s debuggerOct 25, 2018
Debug More Efficiently
EvergreenOct 17, 2018
Evergreen is a React UI Framework for building ambitious products on the web. Made by Segment in San Francisco, CA.
How JavaScript works: an overview of the engine, the runtime, and the callJan 23, 2018
As JavaScript is getting more and more popular, teams are leveraging its support on many levels in their stack - front-end, back-end…
Ten Things A Serious JavaScript Developer Should LearnDec 27, 2017
There’s been an interesting Reddit thread circling my corner of the internet for the last week or so. It started with a question: I’m inviting pure opinion here, but what’s your list of ten things that everyone looking for a good javascript role should know and understand. Personally, I’m in a role where what I know is adequate, but I want to be somewhere better; somewhere that has some flippin standards.
Data Structures With JavaScript: Singly-Linked List and Doubly-Linked ListOct 3, 2016
Two of the most commonly taught data structures in computer science are the singly-linked list and doubly-linked list.
jazz
The House That Dizzy Built—And the City That Kept It - KOLUMN MagazineFeb 2, 2026
Hidden behind Georgetown storefronts, a candlelit room has spent 60 years turning dinner service into American music history—and fighting to keep the lights on
Backyard Coffee And Jazz In Kyoto, JapanJun 24, 2025
A "magical" experience, and what we get when we let people pursue their passions
5 Minutes That Will Make You Love Ella FitzgeraldJun 4, 2025
Explore the catalog of “The First Lady of Song” with tracks chosen by Valerie June, Yaya Bey, Imani Perry and 13 more writers and musicians.
The Cleanest Recordings of 1920s Louis Armstrong Songs You Will Ever HearMay 14, 2025
On Youtube, jazz enthusiast Jonathan Holmes declares: 'I can guarantee this is the cleanest sounding Louis Armstrong record you'll ever hear! With the original transfer supplied by Nick Dellow, here is the mother record which was shipped by Okeh to Germany for their Odeon pressings.
Blue Note Collegiate Tee - Blue Note RecordsFeb 26, 2025
This tee is sure to bring those Good Friday Blues. Inspired by vintage campus designs, Return To Casual with this Blue Note Collegiate Tee. 6.1oz Jersey100% Ring-spun cottonRelaxed FitBlue Note Collegiate design printed on front Blue Note goes to college with our new fall collection featuring a number of ‘collegiate’
SeenFeb 17, 2025
Jazz recommendations : r/JazzFeb 15, 2025
When Louis Armstrong Conquered ChicagoFeb 8, 2025
Grammy-winner Ricky Riccardi tells the story of a milestone moment in American music in this extract from his new book
If I wanted to close my eyes and put on a live album that would whisk me away to New Orleans for a live concert of the finest jazz ever put to tape, what would that album be?Feb 3, 2025
I have a pretty killer audio setup that would require Porsche money to improve. I want to be transported to a jazz hall by a live album that is so…
Reply with a 10/10 albumJan 31, 2025
357 votes, 272 comments. 1.1M subscribers in the Jazz community. Reddit's home for all things related to Jazz. Currently private to protest reddit's…
The Grammy nominee you need to hear: Esperanza Spalding : It's Been a MinuteJan 29, 2025
How do you bring the African Diaspora to the Grammys?Esperanza Spalding and Milton Nascimento's contrasting tones make a perfect team on Milton + esperanza, a collection of covers, duets, and original songs that have earned the pair a Grammy nomination for Best Jazz Vocal Album. Today, Brittany and Esperanza get into the years-long intergenerational friendship behind the music, and the Brazilian influences on the album. Support public media and receive ad-free listening & bonus. Join NPR+ today.
David Leheny (@davidleheny.bsky.social)Jan 27, 2025
Jazz OTD: Two masterpieces for today's Jazz OTD. First, Joe Henderson recorded his landmark septet album "Mode For Joe" on January 27, 1966 with Lee Morgan, Curtis Fuller, Bobby Hutcherson, Cedar Walton, Ron Carter, and Joe Chambers. Perfect hard bop leaning ever so slightly outward. #jazzsky https://www.youtube.com/watch?v=PiX96WxbN9o
5 Minutes That Will Make You Love Jazz GuitarJan 8, 2025
The instrument hasn’t always been a central player in jazz, but the best guitarists have taken up the challenge of finding their own way. Fourteen musicians and writers share their favorites.
Blue Note 4000 series - jazz album coversNov 25, 2024
Album cover design and jazz photography on the Blue Note Records. Notes and
pictures from the Birka Jazz Archive
American Routes Shortcuts: Bessie SmithNov 25, 2024
Bessie Smith, Empress of the Blues, was the first African American superstar, an artist that mingled regal dignity with sensuality. We’ll sample her recorded legacy, talk with critics and hear memories of her contemporaries from the Jazz Age of the 1920s.
Excerpt: James Kaplan's '3 Shades of Blue' Chronicling Miles Davis's RecordMar 5, 2024
Kind of Blue is the best-selling jazz album of all time. Here's what it was like inside the studio with Miles Davis, John Coltrane, and Bill Evans on the day they laid down one of the record's iconic tracks.
Crime Jazz: How Miles Davis, Count Basie & Duke Ellington Created SoundtracAug 22, 2023
When we think of film noir, we tend to think of a mood best set by a look: shadow and light (mostly shadow), grim but visually rich weather, near-depopulated urban streets.
Newly unearthed 1974 session by Clifford Jordan is a striking, one-of-a-kinJul 22, 2023
The tenor sax player came up in Chicago and toured in the '60s with Charles Mingus, Max Roach and Randy Weston. Jordan's forgotten album, Drink Plenty Water, mixes singers with a small ensemble.
In a Baltimore basement, a jazz detective strikes goldMay 8, 2023
New recordings of old jazz performances at Baltimore's now-closed Famous Ballroom are being released for the first time.
Pianist Robert Glasper and Singer Samara Joy on Making Jazz NowApr 18, 2023
The musicians discuss their recent Grammy wins and why the true tradition of jazz is all about embracing freedom.
How a jazz legend's resting place was lost and found, 50 years after his trFeb 18, 2022
Though the trumpeter Lee Morgan was killed in 1972, his legacy was well maintained. At least it seemed so, until one fan discovered last year that Morgan's gravesite seemed to have vanished.
Did jazz forget about Oscar Peterson?Feb 18, 2022
The visionary pianist influenced everyone from Quincy Jones to Billy Joel, while flying under the fame radar himself. A new documentary tells the unsung hero’s story.
Best Jazz Albums of 2021Dec 9, 2021
In a year of continued uncertainty, musicians held their colleagues, and listeners, close.
"A Great Day In Harlem": Remembering the iconic 1958 photo of legendary musiciansNov 4, 2021
58 musicians showed up for a picture that captured the giants of jazz
The Impossibly Cool Album Covers of Blue Note Records: Meet the Creative TeMar 14, 2019
Blue Note release—whether or not you were a fan of jazz or had heard of the artist or even the label. “If you went to those record stores,” says Estelle Caswell in the Vox Earworm video above, “it probably wasn’t the sound of Blue Note that immediately caught your attention.
Is This the Greatest Photo in Jazz History?Mar 12, 2019
A quiet Sunday night in 1953. The Dodgers had just won the pennant. J.F.K. and Jacqueline Bouvier had just married. And four titans of bebop came together in a dive bar for a rare jam session.
After Six Decades in the Vault, 'Ella at Zardi's' Brings New Shine to EllaDec 27, 2017
Ella Fitzgerald was a big star on the cusp of something bigger when she began an engagement at Zardi’s Jazzland, in the heart of Hollywood, during the…
jekyll
Deploying a Jekyll site with KamalNov 5, 2024
Since Kamal 2 can host multiple sites on the same server, I am consolidating my apps into larger hosts so I have less servers to worry about. Most of my apps are Rails apps, but I have a few static jekyll sites like this blog and I decided to look into how could I move this site to a server I host other Rails apps on.
module Psych - Documentation for Ruby 3.4Apr 16, 2024
How to use URLs and links in Jekyll - Made MistakesMar 17, 2024
How Jekyll uses URLs and how to link posts, pages, assets, and other resources together.
Liquid Cheat Sheet - Fabrizio MusacchioMar 11, 2024
This Cheat Sheet gives an overview of Liquid syntax commands one might encounter while developing a Jekyll website.
Liquid cheatsheet | shortcode.devJan 17, 2024
Liquid cheatsheet, Comment, Escape liquid tags, Include, Size, Array, Dynamic collection navigation, Unless, Upcase, Current date, Capture, Remove-first, Cap...
jekyll/jekyll-gist: :page_with_curl: Liquid tag for displaying GitHub GistsJan 7, 2024
:page_with_curl: Liquid tag for displaying GitHub Gists in Jekyll sites. - jekyll/jekyll-gist
How to list your jekyll posts by tags - Joe Kampschmidt's CodeJul 12, 2023
How to list all your jekyll posts by tags using the liquid templating syntax and markdown
Customising the Excerpt Separators in JekyllMar 22, 2023
Introduction Jekyll offers a multitude of blog related functionality out-of-the-box, all which make creating a custom blog much easier. One of these features is excerpts, which allow you to display a subset of text from blog post – useful on a list page to give the reader a quick insight into what each post is about. When creating my blog, I found this feature useful, but it had one limitation which I needed to work around – configuring where the excerpt should start from.
Why YAML is better than JSON (read before screaming)Mar 20, 2023
You have probably seen or used the YAML format in configuration files. YAML (a recursive acronym for...
YAMLlint - The YAML ValidatorMar 13, 2023
Validate, Verify and Reformat your YAML documents, optimized for Ruby on Rails
Top ten popular static site generators (SSG) in 2023Feb 18, 2023
Static sites were previously composed of hard-coded files comprising HTML templates, and maintaining...
Jekyll Plugins | Planet JekyllJan 27, 2023
Jekyll Cheat Sheet | CloudCannonJan 22, 2023
Learn everything Jekyll is capable of from an exhaustive list of variables, tags, and filters.
VariablesOct 20, 2022
Jekyll traverses your site looking for files to process. Any files with front matter are subject to processing. For each of these files, Jekyll makes a variety of data available via Liquid. The following is a reference of the available data.
Introduction to Collections in Jekyll | DigitalOceanJun 11, 2022
A quick overview of using collections in Jekyll to create powerful taxonomies around your content.
Collections in JekyllJun 11, 2022
By Farrel Burns Brought to you by CloudCannon, the Git-based CMS for Jekyll. What you’ll...
mzrnsh › Starting a blank Jekyll site with Tailwind CSS in 2022Apr 30, 2022
Most websites I build start off as a blank Jekyll site with Tailwind CSS on top.
Linking a Series of Jekyll PostsJan 17, 2022
When we (the Engineering Blog committee here at C.H. Robinson) were working on the Mobile Apps Battery Management series, we were looking for a way to link a group of similar posts into a multi-post series. We wanted to show the post order, and be able to link between the parts, both holistically, and to the previous and next posts.
Lazy Loading your images in Jekyll blog Improving page speedJan 17, 2022
Lazy loading the images of the blog and improving your page speed giving better user experience. Defer Offscreen Images in a Jekyll blog.
3 Simple steps to setup Jekyll Categories and TagsJan 17, 2022
Why Jekyll Categories or Tags? Imagine you have a blog where you discuss very different things all together. Many bloggers post their personal experiences along with some professional posts. Curating information is very important to make users browse through your website with ease. What if New York Times had no categories like Politics, Business, Tech etc..? How hard would it be to track what happened to last night’s football game? There should be a Sports category to make readers’ life easy.
Forestry.io CMSJan 17, 2022
The Forestry.io team is now focused on building TinaCMS. If you wish to migrate your Forestry site to Tina, follow the guide below.
Data FilesJan 17, 2022
In addition to the built-in variables available from Jekyll, you can specify your own custom data that can be accessed via the Liquid templating system.
CardsJan 16, 2022
jekyll/jekyll-seo-tag: A Jekyll plugin to add metadata tags for search engines and social networks to better index and display your site's content.Jan 16, 2022
A Jekyll plugin to add metadata tags for search engines and social networks to better index and display your site's content. - jekyll/jekyll-seo-tag
Deploying Jekyll to HerokuDec 26, 2021
So you have a static site in Jekyll that you want to deploy toHeroku. Lucky for you, this is a relatively easy task and does notrequire anything as complex a...
Jekyll • Simple, blog-aware, static sitesDec 17, 2021
Transform your plain text into static websites and blogs
Adding Cloudant search to your static Jekyll blogDec 15, 2021
Making a static HTML website have dynamic search
jenofdoom/jekyll-bootstrap-4: A starter kit for jekyll + bootstrap 4Dec 15, 2021
A starter kit for jekyll + bootstrap 4.
A Guide to Creating and Hosting a Personal Website on GitHub | Jonathan McGlone | Librarian, Product Designer, User Researcher, Digital Publisher, Accessibility Specialist, Music Enthusiast, Web Noodler.Dec 15, 2021
A beginner's guide to creating a personal website and blog using Jekyll and hosting it for free using GitHub Pages.
7 Free Jekyll TemplatesDec 14, 2021
A guide for Jekyll freelancers to get the most out of CloudCannon with templates.
Jekyll Tags on Github Pages · Long QianNov 29, 2021
Github page does not allow customized plugins, and jekyll-tagging is not one of the supported GEMs of Github pages. It needs some effort to add tag support your Jekyll blog hosted by Github page. This blog shows you how to do this step by step.
Various ways to include comments on your static siteNov 18, 2021
Overview of different techniques to implement comments using a static site generator.
Conditional logic | Jekyll theme for documentationJul 13, 2021
You can implement advanced conditional logic that includes if statements, or statements, unless, and more. This conditional logic facilitates single sourcing...
Online HTML To YAML ConverterJan 30, 2021
This free online tool lets you convert a HTML file into a YAML file. No need to download or install any software. Click to convert your file now.
jekyll 3.8.3 | Error: uninitialized constant FFI::Platform::CPU · Issue #77Nov 22, 2020
My Environment Software Version(s) Operating System Ubuntu 19.10 jekyll Latest github-pages No Current Behavior I was trying to run sudo apt install jekyll jekyll new my-awesome-site cd my-awesome-...
jobdef
Peter Yang’s 10 rules for making products that customers loveFeb 19, 2024
Product lead Peter Yang taps into his decade-plus career to explain why staying focused on the craft is a product manager’s superpower.
Build Your Career on Dirty Work | Stay SaaSySep 12, 2022
The Dirty Work Theory: The lamentable work that many people avoid are great places to look for high impact, low hanging fruit.
Elided Branches: The Product Culture ShiftAug 22, 2022
Technology, startups, programming, technical management and software architecture
how-to-get-promoted-based-on-merit-rather-than-hubrisJul 19, 2022
This is how to compete and win on a biased playing field.
What It Takes to Become a Great Product ManagerJul 18, 2022
For an aspiring product manager (PM), there are three primary considerations when evaluating the role: core competencies, emotional intelligence (EQ), and company fit. The best PMs have mastered the core competencies, have a high EQ, and work for the right company for them. The last requires thinking about the level of technical skill the company requires, its philosophy of the PM role, the stage of the company, and the relationship you’ll have with senior management.
Learning to let go: Making better exit decisionsJul 18, 2022
Psychological biases can make it difficult to get out of an ailing business.
20 Questions To Ask Before Joining A StartupJul 17, 2022
How to Master The Discipline of Product Management (Not the job of Product Manager)Jul 5, 2022
The three skills that are necessary to craft a successful product, and how to create and perpetuate them throughout a company.
A Product Manager’s JobJun 28, 2022
Product management is one of the hardest jobs to define in any organization, partially because it’s different in every company. I’ve had several recent conversations about “what is a product…
Four types of product management skillsJun 13, 2022
In recent years, we’ve seen new definitions for old titles and many new titles being created. We’ve got product managers, product marketing managers, product owners, business analysts, product strategists, product line managers, and portfolio managers.
What is Negotiation for Product Managers? - The Product AngleJun 13, 2022
In this article, my goal is to show you what is negotiation for Product Managers and share 10 steps to influence without authority.
What is Revenue Operations? Your Guide to RevOps SuccessJul 3, 2021
Explore all you need know to make better decisions for your revenue operations team. Learn KPI's and key term that will drive success.
jobstobedone
The Jobs to be Done Framework (to Understand Demand)Jul 9, 2025
How and why the Jobs to be Done Framework can help you sell more, faster, and accelerate your understanding of demand.
The return of pneumatic tubesJun 20, 2024
Pneumatic tubes were supposed to revolutionize the world but have fallen by the wayside. Except in hospitals.
Customer experience and product are equally important: SaaS lessons learnedSep 10, 2022
CX trends will continue to influence B2B software as the importance of leading with experience and product becomes more critical for success.
Jobs To Be Done: A BoS Playlist – Business of SoftwareJul 19, 2022
Get 3 talks to help you understand how to use Jobs To Be Done in your business.
Clay Christensen’s Milkshake MarketingJul 18, 2022
Many new products fail because their creators use an ineffective market segmentation mechanism, according to HBS professor Clayton Christensen. It's time for companies to look at products the way customers do: as a way to get a job done.
The Jobs to be Done Data ModelMar 12, 2019
A way to communicate, quantify, validate, and design for a Job to be Done
journalism
A Non-Exhaustive List of Sources for When You Need Real Information, Not Just ContentFeb 9, 2026
How to find trustworthy sources for breaking news, health questions, financial decisions, and local elections.
Teaching when to trustDec 12, 2025
As fake news accelerates, we need to teach our children how to think critically. Finnish schools are leading the charge
In and Out at the FSB: A Window into the Moscow Life of Wirecard's Jan MarsalekSep 24, 2025
German police have been searching for years for Jan Marsalek, who is suspected of having embezzled billions of euros through Wirecard and thought to be working as an agent for the Russian intelligence agency FSB. DER SPIEGEL tracked him down in Moscow.
The SIFT methodSep 7, 2025
The SIFT method is "an evaluation strategy developed by digital literacy expert, Mike Caulfield, to help determine whether online content can be trusted for credible or reliable sources of information." …
The Open Source Tool That Has Preserved 150,000 Pieces of Online Evidence - bellingcatAug 13, 2025
Bellingcat’s Auto Archiver is a tool aimed at preserving online digital content before it can be modified, deleted or taken down
20 Helpful Verification Tools for Journalists | Beyond BylinesApr 27, 2025
As we near April Fool’s Day and its potential wave of misleading content, we're rounding up a few verification tools that journalists should bookmark.
September 1998: Buzz Bissinger on Stephen Glass's web of liesMar 8, 2025
At 25, Stephen Glass was the most sought-after young reporter in the nation's capital, producing knockout articles for magazines ranging from iThe New Republic/i to iRolling Stone./i Trouble was, he made things up—sources, quotes, whole stories—in a breathtaking web of deception that emerged as the most sustained fraud in modern journalism.
How Lawrence Abu Hamdan Hears the WorldJul 21, 2024
The artist and audio investigator, who calls himself a “private ear,” investigates crimes that are heard but not seen.
The Eagle Never SleepsJul 14, 2024
Why one tiny newspaper in Whitesburg, Kentucky still screams for press freedom despite arson, abuse from the public and financial challenges.
How to Lead an Army of Digital Sleuths in the Age of AI | WIREDJun 7, 2024
Bellingcat is the world’s biggest citizen-run intelligence agency, investigating everything from the 2014 shoot-down of MH17 to the various plots to kill Russian dissident Alexei Navalny. The person behind it all? Eliot Higgins.
Tips for Linking Shell Companies to their Secret OwnersApr 13, 2024
At a recent panel at the 2024 NICAR conference, Karrie Kehoe, deputy head of data and research at ICIJ, offered a series of tips for investigating the true owners of shell companies.
Home - OpenCorporatesApr 13, 2024
Researching Corporations and Their Owners – Global Investigative JournalismApr 13, 2024
This resource was last updated in 2023 by GIJN’s Toby McIntosh and Emily O’Sullivan. Investigative journalists play a crucial role in holding corporations to account, and have revealed labor abuses, environmental violations, corporate impunity and other instances of malpractice through deep-dives into companies and their owners. However, government records on corporations often reveal only the […]
Lachlan Cartwright: What I Saw at the National Enquirer During Trump’s RiseApr 3, 2024
Inside the notorious “catch and kill” campaign that now stands at the heart of the former president’s legal trial.
‘Very few have balls’: How American news lost its nerveMar 25, 2024
In 2024, it’s harder than ever to get a tough story out in the United States of America.
A Dylanesque Negotiating StrategyAug 3, 2023
One of the news industry’s longest-standing problems is that have failed to properly value the work they create. They should take a cue from the music industry.
Forbidden Stories - Keep stories aliveFeb 19, 2023
Forbidden Stories nomine Gaza Project Samer Abu Daqqa’s final reporting trip, amid the ruins of Khan Younis On December 15, 2023, journalist Samer Abu Daqqa was killed by an Israeli strike in Khan Younis. Through testimonies and an open-source investigation, we pieced together the events of his last day. nomine Gaza Project Wild Grass in […]
The Gravediggers: How Eliminalia, a Spanish reputation management firm, buries the truth - Forbidden StoriesFeb 18, 2023
Leaked documents reveal the inner world of Eliminalia, a Spanish reputation management company.
What the ephemerality of the Web means for your hyperlinksMay 22, 2021
Hyperlinks are a powerful tool for journalists and their readers. Diving deep into the context of an article is just a click away. But hyperlinks are a double-edged sword; for all of the internet’s boundlessness, what’s found on the Web can also be modified, moved, or entirely vanished. The fragility of the Web poses an […]
How Bellingcat uncovered Russia’s secret network of assassinsFeb 14, 2021
From Sergei Skripal to Alexei Navalny, Russia’s attempts to silence its enemies have been forensically exposed. At the centre of these revelations has been investigative unit Bellingcat
All Personal FeedsFeb 9, 2021
Multinationals, billionaires, artists, sportsmen, criminals : an investigation by Le Monde reveals for the first time exhaustively what the Grand Duchy’s financial centre conceals, thanks to its tax advantages.
Losing the NewsJul 27, 2019
The Charleston Gazette-Mail, known for its dogged accountability journalism, survived a merger and bankruptcy. Will it survive a new owner with ties to the very industries its reporters have been watchdogging?
The 'mind bombs' that changed the whaling industryOct 24, 2003
In the 1970s, a small group of Greenpeace activists had a unique idea for how they could put an end to commercial whaling.
json
How to Use the JQ Command to Speed Developer WorkflowsNov 29, 2024
The jq command provides a consistent way to manipulate JSON data without leaving the command line. Learn how it works by tinkering in a jq playground.
Converting JSON to YAML and Vice Versa in the Command Line | Baeldung on LiApr 14, 2024
Learn ways to convert from JSON to YAML and from YAML to JSON using the Linux command line.
Converting JSONs to Pandas DataFrames: Parsing Them the Right WayFeb 3, 2024
Navigating Complex Data Structures with Python's json_normalize.
Why YAML is better than JSON (read before screaming)Mar 20, 2023
You have probably seen or used the YAML format in configuration files. YAML (a recursive acronym for...
mikefarah/yq: yq is a portable command-line YAML, JSON, XML, CSV, TOML and properties processorFeb 7, 2023
yq is a portable command-line YAML, JSON, XML, CSV, TOML and properties processor - mikefarah/yq
How to convert JSON to CSV using Linux / Unix shell - nixCraftJul 22, 2022
This page explains how to convert JSON to CSV format using Linux, macOS, *BSD or Unix command-line utilities.
Faster and simpler with the command line: deep-comparing two 5GB JSON files 3X faster by ditching the codeJan 24, 2022
As part of our recently announced deal with Apple Music [https://genius.com/a/genius-gets-smart-with-apple-music], you can now view Genius lyrics for your favorite music within the Apple Music app. We deliver our lyrics to Apple via a nightly export of newline-delimited JSON objects. With millions of songs in our
ContentJan 16, 2022
wader/fq: jq for binary formatsDec 27, 2021
jq for binary formats - tool, language and decoders for working with binary and text formats - wader/fq
JSON Online Validator and Formatter - JSON LintDec 17, 2021
JSONLint is the free online validator, json formatter, and json beautifier tool for JSON, a lightweight data-interchange format. You can format json, validate json, with a quick and easy copy+paste.
JSONDec 17, 2021
https://www.json.com/Dec 15, 2021
How to use htmlq to extract content from HTML files on Linux, macOS or FreeSep 8, 2021
Most of us use love and use the jq command. It works on Linux or Unix-like systems to extract data from JSON documents. Recently I found htmlq, which is like jq and written in Rust lang. Imagine being able to sed or grep for HTML data. We can search, slice, and filter HTML data with htmlq. Let us see how to install and use this handy tool on Linux or Unix and play with HTML data.
How To Parse And Pretty Print JSON With Linux Commandline ToolsMar 5, 2020
This brief guide explains how to parse and pretty print JSON with a command line tool called jq in Linux operating systems.
JSON Formatter & ValidatorMar 5, 2020
Format and validate JSON data so that it can easily be read by human beings.
JSONLint - The JSON ValidatorMar 5, 2020
JSONLint is the free online validator, json formatter, and json beautifier tool for JSON, a lightweight data-interchange format. You can format json, validate json, with a quick and easy copy+paste.
Sheet BestDec 23, 2019
Turn your Google Sheets into a REST API. Build websites, widgets, apps, prototypes, and tons more. Leave the backend to us.
JSON on the Command Line with JqDec 23, 2019
A series of how to examples on using jq, a command-line JSON processor
PyPy's New JSON ParserOct 9, 2019
Introduction In the last year or two I have worked on and off on making PyPy's JSON faster, particularly when parsing large JSON files. I...
jupyter
JupyterLab 4.5 and Notebook 7.5 are available!Nov 24, 2025
JupyterLab 4.5 and Notebook 7.5 are available! JupyterLab 4.5 has been released! This new minor release of JupyterLab includes 51 new features and enhancements, 81 bug fixes, 44 maintenance tasks and …
Marktechpost/AI-Tutorial-Codes-Included: Codes/Notebooks for AI ProjectsOct 27, 2025
Codes/Notebooks for AI Projects. Contribute to Marktechpost/AI-Tutorial-Codes-Included development by creating an account on GitHub.
The 7 Most Useful Jupyter Notebook Extensions for Data Scientists - KDnuggetsJun 18, 2025
In this article, we will explore seven different Jupyter Notebook extensions that will improve your work.
JupyterLab 4.4 and Notebook 7.4 are available! - Jupyter BlogMay 21, 2025
JupyterLab 4.4 has been released! This new minor release of JupyterLab includes 28 new features and enhancements, 76 bug fixes, 63 maintenance tasks and 34 documentation improvements. There were 56…
From the Jupyter community on Reddit: Jupyter Notebook MCP: work as a professional data analystApr 6, 2025
Explore this post and more from the Jupyter community
From the JupyterNotebooks community on Reddit: Jupyter MCP.: AI to control Jupyter NotebooksApr 4, 2025
Posted by mehul_gupta1997 - 8 votes and 0 comments
odewahn/ipynb-examplesDec 20, 2024
5 Ways to Convert .ipynb Files to PDFDec 20, 2024
You cannot share Jupter Notebook's ipynb files with everyone. However, if you convert it to PDF, sharing becomes easier. Here's how to do it.
JupyterLab 4.3 and Notebook 7.3 are available!Dec 5, 2024
JupyterLab 4.3.0 and Notebook 7.3.0 have been released! These new minor releases include many enhancements and bug fixes.
Thread: A Jupyter Notebook that Combines the Experience of OpenAI’s Code InJun 17, 2024
The digital age demands for automation and efficiency in the domain of software and applications. Automating repetitive coding tasks and reducing debugging time frees up programmers' time for more strategic work. This can be especially beneficial for businesses and organizations that rely heavily on software development. The recently released AI-powered Python notebook Thread addresses the challenge of improving coding efficiency, reducing errors, and enhancing the overall coding experience for both beginners and experienced programmers. Traditional coding environments often require significant investment in writing boilerplate code, debugging, and understanding complex syntax, which can be daunting for beginners and time-consuming for experts.
JupyterLab 4.1 and Notebook 7.1 are hereFeb 29, 2024
JupyterLab 4.1 and Notebook 7.1 are now available! These releases include several new features, bug fixes, and enhancements for extension…
Understanding Deep LearningOct 20, 2023
python - Using virtualenv on Jupyter Notebook - Stack OverflowOct 15, 2023
I trying to use virtualenv on jupyter notebook, to use all packages installed in an environment, but inside jupyter they are not recognized.
Already tried:
pip install tornado==4.5.3
pip install
ChatGPT Noteable (Jupyter) = Mind-blowing! - YouTubeSep 25, 2023
Do you use Python, Pandas, and Seaborn to collect, analyze, and plot data? Then you'll be amazed by what ChatGPT can do, when using ChatGPT+, GPT-4 model, and the plugin for Noteable's version of Jupyter notebooks.
[UPDATE/NOTE: This was my first summary of Noteable and ChatGPT. I have done more experiments, which you can see here: https://www.youtube.com/watch?v=2WUZ0b-hUDU]
In this video, I show you how I got things set up for using Noteable (and world headlines), then put together a query, You'll see how it goes well, where it goes wrong, and what sort of code I can create using just English-language descriptions of my plans. And I show you what's happening behind the scenes, as we see the JSON being written.
This is all brand new and exciting, and I hope that you'll post suggestions and ideas in the comments for how we can take this even further!
And if you're interested in analyzing data with Pandas, check out Bamboo Weekly at https://www.BambooWeekly.com/, where I look at current events through the eyes of data analysis.
Generating a Requirements.txt File from a Jupyter NotebookAug 30, 2023
A much overlooked way to save some time.
10 Jupyter Notebook Tips and Tricks for Data ScientistsJun 5, 2023
Unlock the full potential of Jupyter Notebook with expert tips and techniques, including time-saving shortcuts, powerful magic functions, and advanced features, to boost your productivity.
Table of contents — voila 0.5.0a0 documentationMar 24, 2023
Using PyGWalker to Enhance Your Jupyter Notebook EDA ExperienceMar 3, 2023
An Introduction to the PyGWalker Library for Easy Data Visualisation
Introducing the new JupyterLab Desktop!Feb 9, 2023
We are pleased to announce a major update to JupyterLab Desktop which adds many new features with main focus on the user experience…
Deepnote - Data science notebook for teamsNov 23, 2022
Explore data with Python & SQL, work together with your team, and share insights that lead to action — all in one place with Deepnote.
How to setup MongoDB with Jupyter NotebookOct 19, 2022
I have to conclusion how to setup MongoDB (NoSQL) with Jupyter Notebook by summary step like...
Upgrading NbgraderSep 15, 2022
Project Jupyter provides a broad collection of open-source tools for interactive computing that has become ubiquitous in data science and…
nbdev – Create delightful software with Jupyter NotebooksJul 30, 2022
Write, test, document, and distribute software packages and technical articles — all in one place, your notebook.
The 8 surprising ways how to use Jupyter Notebook | MLJARJun 1, 2022
Explore the Jupyter Notebook beyond its traditional use. Discover 8 alternative ways to utilize this versatile tool, making it even more powerful for coding, experimentation, and collaboration.
Apt - PostgreSQL wikiMay 29, 2022
Jupyter Notebook as a Function — Create Reusable Notebooks with PapermillMar 23, 2022
How to create parameterized Jupyter Notebooks with Papermill
Enrich your Jupyter Notebook with these tipsJan 17, 2022
Practical tips to enhance your workflow documentation
3 Great Additions for your Jupyter Notebooks - MLWhizJan 16, 2022
I love Jupyter notebooks and the power they provide.They can be used to present findings as well as share code in the most effective manner which was not easy with the previous IDEs.Yet there is something still amiss.There are a few functionalities I aspire in my text editor which don’t come by default in Jupyter.But fret not. Just like everything in Python, Jupyter too has third-party extensions. This post is about some of the most useful extensions I found.
Release of IPython 8.0. IPython is a powerful Python REPL that… | by MatthiJan 12, 2022
IPython is a powerful Python REPL that gives you tab completion, better tracebacks, multiline editing, and several useful features on top…
Jupyter Lab: Evolution of the Jupyter NotebookDec 16, 2021
All good things (must) come to an end to make way for something better.
Advanced Jupyter Notebook Tutorial – DataquestDec 11, 2021
If you're doing data science in Python, notebooks are a powerful tool. This free Jupyter Notebooks tutorial has will help you get the best out of Jupyter.
12 Jupyter Notebook Extensions That Will Make Your Life EasierMay 12, 2021
Essential extensions that will boost your productivity in Jupyter Notebook.
nbterm: Jupyter Notebooks in the terminalApr 28, 2021
Jupyter notebooks are mostly known for their web-based user interface, such as JupyterLab or the Classic Notebook. They offer a great user…
nbviewerApr 23, 2021
Learn How to Write Markdown & LaTeX in The Jupyter Notebook | by Khelifi AhMar 22, 2021
Not only Jupyter, Google Colab, R Markdown, and much more.
Learnlatex.org: A place to learn LaTeX onlineMar 22, 2021
Jupyter: Get ready to ditch the IPython kernel | by Dimitris Poulopoulos |Mar 4, 2021
JupyterLab moves closer to becoming a full-fledged IDE with xeus-python.
Books with JupyterFeb 19, 2021
Robotic Process Automation with JupyterLabJan 19, 2021
Introducing a new Jupyter kernel for Robot Framework
The Missing List of JupyterLab Keyboard ShortcutsDec 18, 2020
Common keyboard shortcuts for notebooks
zmq: Can not launch jupyter notebook · Issue #3435 · jupyter/notebookDec 8, 2020
Hi, conda activate base jupyter notebook Gives me this message: Traceback (most recent call last): File "/home/ics_vr/anaconda3/bin/jupyter-notebook", line 7, in from noteb...
6 Magic Commands That Every Data Wizard Should KnowNov 29, 2020
Make your Jupyter Notebook more ‘magical’ with these magic commands
GitHub - SciRuby/iruby: Official gem repository: Ruby kernel for Jupyter/IPNov 29, 2020
Official gem repository: Ruby kernel for Jupyter/IPython Notebook - SciRuby/iruby
How to Install, Run, and Connect to Jupyter Notebook | DigitalOceanNov 14, 2020
Jupyter Notebook is an open-source web application that lets you create and share interactive code, visualizations, and more. This tool can be used with seve…
How to Share your Jupyter Notebook in 3 Lines of Code with NgrokMar 31, 2020
Imagine having your Friends Working with your Local Jupyter Notebook in a Remote Machine
Introducing fastpages: An easy to use blogging platform with extra featuresMar 9, 2020
This article introduces the easy to use blogging platform fastpages. fastpages relies on Github pages for hosting, and Github Actions to automate the creation of your blog, and contains extra features for Jupyter Notebooks.
Blogging with Jupyter NotebooksFeb 19, 2020
How to optimize your Jupyter NotebookFeb 19, 2020
By Pier Paolo Ippolito Introduction Jupyter Notebook is nowadays probably the most used environment for solving Machine Learning/Data Science tasks in Python. Jupyter Notebook is a client-server application used for running notebook documents in the...
Xeus is now a Jupyter subprojectFeb 5, 2020
The Xeus project has been incorporated as a Jupyter subproject.
Collection of Jupyter notebooks for quantitative financeDec 14, 2019
Collection of notebooks about quantitative finance, with interactive python code. - cantaro86/Financial-Models-Numerical-Methods
How to Install PySpark and Integrate It In Jupyter Notebooks: A TutorialDec 14, 2019
Here's how to install PySpark on your computer and get started working with large data sets using Python and PySpark in a Jupyter Notebook.
Video streaming and processing in the Jupyter NotebookDec 14, 2019
1.3M subscribers in the Python community. The official Python community for Reddit! Stay up to date with the latest news, packages, and meta…
How do I add python3 kernel to jupyter (IPython) - Stack OverflowOct 24, 2019
My Jupyter notebooks installed with python 2 kernel. I do not understand why. I might have messed something up when I did the install. I already have python 3 installed. How can I add it to Jupyter?
28 Jupyter Notebook Tips, Tricks, and Shortcuts for Data ScienceAug 23, 2019
Jupyter Notebook is a powerful tool for data analysis. Here are 28 tips, tricks and shortcuts to turn you into a Jupyter notebooks power user!
Introducing templates for Jupyter widget layoutsAug 23, 2019
Creating complex layouts of widgets (button, sliders, maps, graphs etc.) can be cumbersome. New layout templates make this task a breeze.
Announcing JupyterHub 1.0May 5, 2019
Today, we are pleased to announce the 1.0 release of JupyterHub. We’ve come a long way since our first release in March, 2015. There are…
Working efficiently with JupyterLab NotebooksMar 14, 2019
Being in the data science domain for quite some years, I have seen good Jupyter notebooks but also a lot of ugly. Notebooks can have the perfect balance between text, code and visualisations but how often do your notebooks rather get messy and incomprehensible after a while? Follow some simple best practices to work more efficiently with your notebooks.
Jupyter Notebook Tricks for Data Science that Enhance your efficiencyAug 24, 2018
Edited: Update on 2018-11-23 Added: Table of Content, %debug magic, nbdime for notebook diffing
Interactive Workflows for C with Jupyter – Jupyter BlogJun 8, 2018
Scientists, educators and engineers not only use programming languages to build software systems, but also in interactive workflows, using…
Interactive Go programming with JupyterJun 8, 2018
Introduction of a new feature-rich golang Jupyter kernel
Top 5 Best Jupyter Notebook ExtensionsMar 13, 2018
Check out these 5 Jupyter notebook extensions to help increase your productivity.
jupyter-widgets/ipywidgets: IPython widgets for the Jupyter NotebookOct 4, 2017
Interactive Widgets for the Jupyter Notebook.
Building Interactive Dashboards with JupyterOct 4, 2017
Looking to bring more features into your Jupyter Notebooks? Lean about the powerful features that can be added to enhance business intelligence.
kalman-filters
How to Use Kalman Filters for Time Series Analysis in PythonJun 10, 2025
The Kalman filter records the system's estimated state and the estimate's variance or uncertainty.
Addressing the Butterfly Effect: Data Assimilation Using Ensemble Kalman FilterDec 13, 2024
Learn how to implement the Ensemble Kalman Filter for data assimilation, with mathematical details step-by-step code.
Kalman Filter Explained Simply - The Kalman FilterFeb 12, 2024
Tired of equations and matrices? Ready to learn the easy way? This post explains the Kalman Filter simply with pictures and examples!
A non-mathematical introduction to Kalman Filters for programmersAug 3, 2023
Read my manifesto on Code as an alternative to Mathematics. Code for this article can be found on this Colab Notebook should you choose to follow along. Why Kalman Filters? Kalman filters are ingenius. If you have never heard of them, then a very intuitive (and arguably reductive) way to think about them is to
How a Kalman filter works, in pictures | BzargJan 12, 2022
kanban
What is Kanban? A Quick Guide to Visualized ImprovementJul 18, 2022
What is Kanban? Learn more about how the kanban methodology of visualizing work in progress can accelerate your team’s improvement efforts and minimize waste
KanbanJun 13, 2022
An introduction to kanban methodology for agile software development and its benefits for your agile team.
Kanban Project Management Software - KanboardApr 24, 2020
Wekan — Open-Source kanbanApr 24, 2020
Show HN: Clikan – a simple personal kanban board that runs in a CLIApr 21, 2020
clikan is a super simple personal kanban board that runs in a CLI - kitplummer/clikan
kernels
Bounded Kernel Density EstimationFeb 29, 2024
Learn how Kernel Density Estimation works and how you can adjust it to better handle bounded data, like age, height, or price
Apt - PostgreSQL wikiMay 29, 2022
python-data-science-handbook/scikit/SciKit-Kernel-Density-Estimation.ipynb at master · bjpcjp/python-data-science-handbookJan 17, 2022
Sourced from O'Reilly ebook of the same name.
Image Kernels explained visuallyDec 8, 2021
Kernel Methods: A Simple IntroductionOct 15, 2021
The basics of kernel methods and Radial Basis Functions
SVM Classifier and RBF Kernel — How to Make Better Models in PythonJan 19, 2021
A complete explanation of the inner workings of Support Vector Machines (SVM) and Radial Basis Function (RBF) kernel
The often-overlooked random forest kernel · RMarcusDec 9, 2017
Ryan Marcus, assistant professor at the University of Pennsylvania. Using machine learning to build the next generation of data systems.
keyboards
Retro mechanical keyboards offer a tactile experience to inspire creativityMar 5, 2024
https://vimeo.com/493918946 We've all been there, staring at a blank page at a complete loss on how to get started on a written project. The dreaded writer's block makes it feel like our brains are all dried up, but all it really needs is a little nudge to get the creative juices flowing again. That can
Mode DesignsSep 15, 2022
High-end custom mechanical keyboards designed for Mac and PC. Built with premium typing sound and feel for designers, programmers, gamers, and more.
keywords-ppc-seo
Google Ads Keyword Planner: What you need to knowMay 8, 2025
Learn how to use Google Ads Keyword Planner — from finding high-impact keywords to understanding search volumes and forecasts.
How to do PPC keyword gap analysisMar 9, 2025
Expand your PPC reach, uncover missing keywords and outsmart the competition with these tips and tools.
Branded search and SEO: What you need to knowMar 2, 2025
Branded search is more than just your company name on Google. Here's how to capture intent and rank for the queries that matter.
ChatGPT search vs. Google: A deep dive analysis of 62 queriesDec 26, 2024
A detailed analysis of ChatGPT search and Google's performance across 62 queries, with scoring metrics and practical examples.
Topic clustering for SEO: 5 mistakes to avoidDec 11, 2024
Identify and fix common topic clustering mistakes that prevent you from engaging users and building topical authority.
How Google Search and ranking works, according to Google’s Pandu NayakJan 12, 2024
Learn how indexing, algorithms, deep learning systems, human raters, click and query data, and more shape Google's Search results.
There are more than 4 types of search intentAug 18, 2023
Explore user motivations, intent categories, and tactics to create SEO content that resonates and converts.
11 free tools for PPC campaign managementAug 14, 2023
These tools can help you analyze PPC competitors, track search trends or design ad creative – all without spending a dime.
B2B keyword research: A comprehensive guideAug 6, 2023
Master a proven process for developing keyword targets that drive real leads, pipeline and revenue for any B2B website.
Reasons to Avoid Nofollow Link AttributesJun 11, 2023
Google in 2023 views nofollow link attributes as hints, not commands. Here's a rundown of common nofollow mistakes and the (limited) cases for using them.
ChatGPT Prompts for Text AnalysisMay 28, 2023
ChatGPT can generate usable content. But it can also analyze existing content — articles, descriptions — and suggest improvements for SEO and social media.
7 top enterprise SEO tools compared: A comprehensive evaluationMay 24, 2023
An in-depth look at seven tools used by enterprises for content optimization, technical SEO, and reporting and analytics.
10 SEO challenges faced by fast-growing SaaS companiesMay 18, 2023
When done right, SEO efforts can reduce SaaS customer acquisition costs and maximize marketing ROI dramatically.
The importance of rel=canonical for content writersApr 13, 2023
The subject of canonical reference has been touched thousand times. But since some content writers...
Entity SEO: The definitive guideApr 6, 2023
Here's everything you need to know about entities – what they are, why they matter in SEO, and how to use entities to rank content.
8 core elements of a winning inbound SEO programFeb 24, 2023
Inbound SEO is the process of optimizing your marketing content to rank higher in search results so your audience can find and engage with your content easily. Download this guide from Conductor to find out how inbound marketing and inbound SEO work together and learn the 8 core elements of a winning inbound SEO program.
PPC management checklist: Daily, weekly and monthly reviewsFeb 22, 2023
Paid search accounts can go sideways without regular monitoring. Here's a simplified PPC checklist for successful campaign management.
SEO: 3 Tools to Find Related KeywordsFeb 22, 2023
Google has long relied on semantic search — producing results based on the intent of the query. Optimizing content for many intent-based keywords can improve rankings.
Tools to Create, Optimize Meta DescriptionsFeb 16, 2023
Meta descriptions do not influence organic rankings. But the descriptions appear in search snippets more often than not and thus impact clicks on organic listings.
Advanced image SEO: A secret manualFeb 7, 2023
Learn how search engines process images and key image SEO tactics to implement from this comprehensive overview.
Yandex ‘leak’ reveals 1,922 search ranking factorsJan 27, 2023
SEOs have already started analyzing Yandex's search ranking factors, which include PageRank and several other link-related factors
Google ranking signals: A complete breakdown of all confirmed, rumored and false factorsJan 17, 2023
An easy-to-read, highly condensed analysis of all the known, confirmed, rumored, and absolute myth-level Google ranking factors.
Google's John Mueller: Move JavaScript Below The Head ElementJan 16, 2023
John Mueller from Google advises placing JavaScript code underneath the HTML element to ensure that search engines can clearly understand your website.
How to Use Web Crawlers for SEODec 22, 2022
Web crawler tools are essential for search engine optimization, but the info they provide can be overwhelming. Here's how to prioritize and cut through the clutter.
19 advanced Google search operators you need to knowOct 3, 2022
Gain powerful insights to inform your marketing efforts. Use the following advanced Google search operators and commands to your advantage.
What is semantic search: A deep dive into entity-based searchOct 1, 2022
Semantics = theory of meaning, yet most define semantic search with a focus on intent. “Meaning” is not the same as “intention.” Learn more.
Beginner's Guide to SEO (Search Engine Optimization)Sep 15, 2022
New to SEO? Looking for higher rankings and traffic through Search Engine Optimization? The Beginner's Guide to SEO has been read over 10 million times.
What Are Canonical Tags?Sep 10, 2022
What are canonical tags and why are they important? Read our simple guide to learn how to apply rel=canonical to your pages.
PPC management for e-commerce: 28 tools to exploreSep 10, 2022
Software and tools not only help you manage your time better but provide helpful insights that you wouldn't otherwise see in a Google or Facebook interface.
Infinite Scrolling: When to Use It, When to Avoid ItSep 5, 2022
Infinite scrolling minimizes interaction costs and increases user engagement, but it isn’t a good fit for every website. For some, pagination or a Load More button will be a better solution.
7 useful Excel formulas and functions for PPCAug 24, 2022
Use these tips to quickly analyze performance data and identify high-impact PPC optimizations that will move the needle.
SEO for Animated GIFsAug 15, 2022
Animated GIFs can provide unique, crawlable page content, boosting organic search rankings. But GIFs can also harm rankings if poorly executed. We explain.
Top technical SEO issues every webmaster should masterAug 9, 2022
How to improve your SEO ranking and generate a better user experience.
5 Amazon product listing optimization must-havesAug 5, 2022
Amazon will continue to be highly competitive. Want to be successful? Optimize your product listings to the fullest with these tips.
Site taxonomy for SEO: A straightforward guideAug 1, 2022
In this guide: learn why website taxonomy is fundamental to SEO success and how to optimize site taxonomies.
How Much Does Google Ads Cost? | 2022 Google Ads PricingJul 30, 2022
How much does Google Ads cost? Google Ads costs $100 - $10,000 per month with an average CPC of $0.11 - $0.50. Learn more about Google Ads pricing here!
7 Deadly Google Ads Mistakes That'll Make You Broke (And How to Fix Them)Jul 19, 2022
Here's some common AdWords mistakes that make affect your campaigns, as well as how to fix them.
Neil Patel's Digital Marketing BlogJul 19, 2022
Your #1 resource for digital marketing tips, trends, and strategy to help you build a successful online business.
http://www.practicalecommercecom/articles/135877-SEO-How-to-Part-10-Redesigns-Migrations-URL-ChangesJul 19, 2022
How to use 12 micro intents for SEO and content journey mappingJul 18, 2022
Analyzing the SERPs for these micro intents will help you create the right content that a searcher will want to find.
SEO How-to, Part 11: Mitigating RiskJul 18, 2022
The risk to organic search performance from altering a website usually comes from changes to content, linking structures, or underlying technology. With careful planning and execution, however, you can mitigate the risk from those changes and increase the likelihood of better rankings. This is the 11th installment in my "SEO How-to" series
SEO How-to, Part 6: Optimizing On-page ElementsJul 18, 2022
Keyword research can help improve your organic search performance. Search engines attempt to sync the words and intent of consumers' queries with web pages. Ecommerce merchants should therefore align their pages using the right keywords to convey the proper intent.
5 audiences you should exclude from your PPC campaignsJul 18, 2022
Negative audiences help reduce wasted spend and prevent shoppers from being retargeted with products too many times.
How to Build an Amazon Affiliate Website - 2024 Guide - Make A Website HubJul 18, 2022
When it comes to making money online you’re going to have a lot of options at your disposal. Frankly, it can be quite overwhelming just choosing an online
Your Traffic Sources Have a Half-Life - Rob Walling - Serial EntrepreneurJul 18, 2022
Rob Walling looks at how traffic sources have a half-life, and that recognizing this is a key to successful startup marketing.
Why Marketing Flywheels Work - SparkToroJul 18, 2022
The first few years of my career were awful. Drowning in debt, losing nine out of ten pitches for new business, failing to earn clients. It felt like
SEO How-to, Part 8: Architecture and Internal LinkingJul 18, 2022
The structure of your ecommerce site — categories, subcategories, attributes — heavily impacts search engine optimization. This is the eighth installment in my “SEO How-to” series.
Twilio Segment BlogJul 18, 2022
6 Non-SEO Tools You Should Be Using For SEOJul 18, 2022
You've read tons of reviews for the most common SEO tools, but what about other tools that can assist in your daily SEO efforts? Columnist Brian Patterson shares his favorites.
3 easy internal linking strategies for keywords with different search volumesJul 18, 2022
Contributor Aleh Barysevich breaks down three strategies you can use to boost the effectiveness of your internal link building campaigns to fulfill specific SEO-related goals.
Google Search Operators: The Complete List (44 Advanced Operators)Jul 18, 2022
They're super powerful.
SEO How-to, Part 7: Mapping Keywords to ContentJul 18, 2022
Keyword research is the process of identifying the words that consumers use to search for your products on Google and other search engines. Keyword mapping assigns those terms to pages on your site. This is the seventh installment in my "SEO How-to" series.
Brand Bidding Techniques: Smart Ways To Use Typos & URLs As KeywordsJul 18, 2022
Finding the right mix of keywords is as much science as it is good common sense. When it comes to your brand, there are typo and URL derivation techniques
SEO How-to, Part 2: Understanding Search EnginesJul 18, 2022
Nearly half of shoppers turn to Google before deciding what to buy and where to buy it. Understanding how Google and other search engines work can help you choose which optimization strategies to apply. This post is the second installment in my "SEO How-to" series.
Neil Patel's Digital Marketing BlogJul 6, 2022
Your #1 resource for digital marketing tips, trends, and strategy to help you build a successful online business.
Which PPC metrics matter? Lessons from half a million keywordsJul 5, 2022
Columnist Jacob Baadsgaard shares insights from a study looking into how various paid search metrics correlate with return on investment (ROI).
SEO Checklist 2015 - Elvin Web MarketingJul 5, 2022
Complete SEO Checklist to increase your website search rankings in 2015. Check off each item with the quick list or follow the comprehensive guide...
SEO How-to, Part 1: Why Do You Need It?Jul 5, 2022
Search engine optimization is part science and part art. But the foundational principles of SEO are straightforward. Still, before I can address how to practice SEO, I should explain what it is and why it’s important.
SEO How-to, Part 3: Strategy and PlanningJul 5, 2022
The planning phase of search engine optimization involves identifying a strategy and roadmap to reach your goals. The process can be daunting. This post is the third installment in my “SEO How-to” series.
SEO How-to, Part 12: Technical ToolsJul 5, 2022
Implementing a search engine optimization strategy typically requires tools that can be dangerous when mishandled. Knowing those tools — when to use them and how — can make all the difference. This is the 12th and last post in my “SEO How-to” series.
11 Google Sheets formulas SEOs should knowJul 5, 2022
Sometimes the best SEO tools are free. Learn how to use these formulas to save time and reduce manual errors.
7 Free Chrome Extensions for SEOJul 5, 2022
Chrome extensions can streamline keyword research, analytics tracking, competitor analysis, and more. Contributor Ann Smarty lists her seven favorite Chrome extensions for SEO.
Top 10 SEO Tools You Need in 2022Jul 4, 2022
If you are working in the field of SEO or if you are managing a content or Ecommerce website then you...
What is a Subdomain and How Does it Affect Your Site’s SEO?Jul 4, 2022
Subdomains are used to differentiate a page from the main website. They can have a positive impact on SEO—or a negative impact. Click to learn how to use them properly.
SEO How-to, Part 9: Diagnosing Crawler IssuesJun 28, 2022
Search engines must crawl and index your site before it can rank in organic search. Thus optimizing your content is pointless if search engines cannot access it. This is the ninth installment in my “SEO How-to” series.
SEO How-to, Part 5: Analyzing Keyword DataJun 28, 2022
Keyword research is a search engine optimization tactic to identify the words and phrases of consumers who are looking for the types of products and services that your company sells. In this post, I'll cover four steps: seeding keyword research, collecting the data, organizing it in my free keyword analysis template in Google Sheets, and analyzing it to understand intent and demand.
SEO Case Study (2020) - 7 Steps to 197,514 Monthly TrafficJun 28, 2022
Step-by-step SEO case study on how we grew a SaaS from 0 to 197,514 monthly organic traffic in less than 2 years. 7+ SEO secrets & tips covered.
Ahrefs—Marketing Intelligence Tools Powered by Big Data.Jun 28, 2022
Unlock data to make effective decisions across digital marketing. SEO, content marketing, PPC, digital PR, and more.
Infographic: 26 Ideas For Split Testing Your Search AdsJun 25, 2022
If you want to always be closing, then you need to always be testing, a long-standing mantra (and title of a popular book) in the search marketing space.
About Google Tag Manager | Google for DevelopersJun 25, 2022
Deploy and update measurement tags on your websites and mobile apps from a web interface, without major code changes or app releases.
3 pitfalls of PPC experimentsJun 25, 2022
Knowing what to test and how to interpret the results based on nuances and oddities of experiments is an important skill for people, not automations.
SEO How-to, Part 4: Keyword Research ConceptsJun 24, 2022
Keyword research is the process of analyzing the search-engine queries of real people. That data — a window into the desires of searchers — is a gold mine for search engine optimization.
RapGenius Growth Hack ExposedJun 24, 2022
Yesterday RapGenius posted the following announcement on their Facebook page: As a contributor to various blogs and an endearing fan of RapGenius, I took
8 Rules of A/B Testing – The Art in Marketing Science - Search Engine WatchJun 23, 2022
Data will tell you the right answer. If you can’t find data somewhere, you should run a test, collect the data, and let it tell you what’s right. A/B testing is one of the core marketing arts a marketer should master and practice.
Head vs. Long Tail Keywords Analyzed: Impressions, Clicks, Conversions & Profitability - Search Engine WatchJun 23, 2022
An analysis of about 1.5 million keywords over six months across multiple clients, campaigns, and verticals reveals how many impressions, clicks, and conversions head and long-tail keywords generate and which keywords are the most profitable.
Luxury marketing search strategy, Part 1: Consumer mindsetJun 23, 2022
Why do we buy luxury brands? A look into the psychology driving our purchase decisions -- and how search marketers should therefore think about strategy.
Grow your online visibilityJun 23, 2022
Free 7-day access to 55+ tools on SEO, content, competitive research, PPC and social media
A Developer’s Guide To SEOJun 23, 2022
Developers don’t do SEO. They make sure sites are SEO-ready. That means developers hold the key to SEO. It’s true. If you’re a developer and you’re r
Sankey Diagram: Transform Your Data Flows into InsightsJun 23, 2022
A Sankey diagram is a collection of nodes which are connected with each other to show data flow or hierarchical data connected from one to another.
180 Marketing Founder: 4 Buckets to SEOJun 21, 2022
Search engine optimization for ecommerce boils down to four buckets. That's according to Jeff Oxford, founder of 180 Marketing, an Oregon-based firm.
6 In-demand Marketing Skills for Your Design CVJun 21, 2022
In today’s tech-savvy world, being a great designer is not all about being a whiz at tools such as Adobe Photoshop and Adobe Illustrator. The job is
5 Rank Tracking Tools for Organic SearchJun 17, 2022
Monitoring rankings remains the best way to track organic search performance. In this piece, we list five helpful tools to track your site's positions and your competitors'.
Customer-Channel Fit: How to Identify the Right B2B SaaS Marketing ChannelsJun 14, 2022
A deep dive into our process for identifying the optimal B2B SaaS Marketing Channels for our clients, or Customer-Channel Fit.
Predicting Keyword Volume Before Data is in AdwordsJun 13, 2022
Being able to get in front of trending keywords can be a valuable but difficult task. In this week's Whiteboard Friday, we'll be talking about predicting keyword volume - before the data is even in adwords!
SEO for Engineers - Technical SEO Checklist & Fringe CasesJun 13, 2022
I like to joke that SEO stands for 'somebody else's obligation' because it’s easy to point a finger when something goes wrong.
Luxury marketing search strategy, Part 2: Strategies and tactics - Search Engine WatchJun 13, 2022
Marketing for luxury goods is a highly competitive space. Here's a full guide of how to craft SEO strategies and tactics to maximize those results.
4 Best SEO Tools for Web DesignersJun 13, 2022
There’s a lot of overlap between SEO tools, which is why it can be so difficult figuring out which is the best to use. To simplify things, I’ve selected the 4 SEO tools that will seamlessly integrate with your design workflow and won’t break your budget.
Find a good available .com domain | Derek SiversJun 13, 2022
How to Identify Keywords That Signal Shoppers’ IntentJun 12, 2022
Keyword phrases are the fuel that drives many online marketing efforts, including search engine optimization, paid search advertising, and even content ideas. If marketers do a better job in selecting keyword phrases, they may do a better job promoting their products and content.
AdWords: 3 Ways to Find Negative KeywordsJun 12, 2022
Inside every AdWords account there is a report that shows the exact words (a "query") that searchers typed into Google before clicking on a specific ad.
My 5 Favorite SEO NewslettersJun 11, 2022
Staying informed on the latest search engine optimization tactics doesn't have to take a lot of time. Here are five newsletters that will keep you updated quickly and succinctly.
Keyword Research 101: Everything You Need To KnowJun 7, 2022
Keyword research is a critical part of any SEO strategy. If you get it right, then you’ll bring high volumes of relevant traffic to your site. In this article, we are going to look at what keywords are, and why you need to research them.
Google AdWords: Successful Campaigns for Beginners - noupeJun 2, 2022
Google AdWords is a good opportunity to boost sales in a short period of time for both small and large businesses alike. Learn the basics here.
33 powerful tools to get the most out of your usersJun 2, 2022
Check this unique list of handy apps that can help you multiply your website’s visitor or paying customer count without bleeding too much cash.
4 technical SEO issues auditing tools won’t show youJun 1, 2022
Here are four of the top technical SEO issues that your auditing tools won't show you and how to find them.
Getting Started with Google Tag Manager, for EcommerceMay 28, 2022
Many websites lose reporting from one of their marketing or analytics platforms. The culprit is usually the removal of tags during updates to the sites. Tags are critical for ecommerce merchants. But they add clutter to websites. That's the purpose of Google Tag Manager — to manage tags and contain them in a single JavaScript snippet on all pages.
SEO: Product Descriptions Are a Blind Spot for Ecommerce MerchantsMay 28, 2022
Why does the ecommerce community have such a blind spot when it comes to unique product descriptions? Syndicated descriptions produce duplicate content. Why is duplicate product copy accepted so blindly? The answer depends on whether you’re the syndicator or the site using the syndicated content.
An SEO guide to audience research and content analysisMay 27, 2022
Target audience research is crucial for understanding the buying stages of your ideal customers. Here's how to do it.
13 marketing automation tools that can help you boost your salesMay 27, 2022
The way we live our lives has an impact on our work. Long lists of typical chores may turn your
When Keyword Poaching Pays OffMay 20, 2022
Competitive poaching refers to the practice of bidding on ads for a competitor’s search terms, in order to poach customers searching for that brand. It’s a common tactic in the world of digital ads — but is it effective? The author shares results from the first-ever empirical study of this practice, which found that poaching can work well for higher-end brands, but may backfire for lower-end or mass market offerings. Specifically, the study found that when an ad poached customers who searched for a high-end brand, users clicked on it more, but when an ad poached a low-end or mass market target, users were less likely to click. Of course, the author notes that clickthrough rate is just one metric, and there may be other ways in which a poaching campaign could be harmful or beneficial. But these findings can help marketers add a bit of science to the art that is digital advertising, helping them to optimize campaigns for their unique products and customers.
How Keyword Clustering Powers SEOMay 19, 2022
Keyword lists for SEO are often cluttered and seemingly endless. "Clustering" can help by grouping keywords by a common modifier.
The Future of Search Is Boutique | FutureMay 18, 2022
The way to improve search is not to mimic Google, but instead to build boutique search engines that index, curate, and organize things in new ways.
How to make a GA4 landing page report in 10 easy stepsMay 14, 2022
The Landing Page report. Universal Analytics has it. GA4 does not. But you can make it! This article will show you how.
This New Tool Lets You Analyse TikTok HashtagsMay 12, 2022
TikTok has come to play a crucial role for open source researchers. By analysing how hashtags are used, this tool lets you dig even deeper.
3 Keyword Tools for Search IntentMay 12, 2022
Optimizing content for organic rankings requires knowing how Google will interpret searchers' intent — informational, commercial, or navigational.
Reddit rolls out new search improvements, including the ability to search cMay 6, 2022
Reddit announced it's rolling out the ability to search comments, alongside a few other search-related features.
Keyword Research: How to Do It, Tips, Tools & ExamplesMay 5, 2022
This is an in-depth guide on how to conduct keyword research with tips, tricks and examples. At the end, you'll have mastered finding keyword ideas!
Free SEO Tools for Do-it-yourself AnalysisMay 5, 2022
The ability to fix basic SEO glitches can save time and money. Here are five free tools to help.
https://social.techcrunch.com/2022/04/23/seo-scammers-buy-expired-domains-vexing-google-trust/May 3, 2022
I stopped advertising everywhere and nothing happened.Apr 8, 2022
What happens when you turn off all of your Internet advertising? Apparently, nothing. This post explores how I came to the decision to turn off all ads, and what I found as a result.
Google brand SERPs: Why you must dominate People Also AskMar 19, 2022
It's time to optimize for People Also Asked questions asked around and about your brand in Google's SERPs. Here's why.
How One Website Exploited Amazon S3 to Outrank Everyone on GoogleMar 16, 2022
Quick Intro to the World of SEO, Affiliate Marketing, and Amazon S3
Complete SEO Checklist for 2024Feb 18, 2022
SEO Checklist has created and categorized all the tasks that you can need for your optimizing website. You just need to choose which categories to work on and invite your customers to the checklist to follow the process.
How to Find Seed Keywords and Explore Topic ClustersFeb 10, 2022
Creating a short list of seed keywords is fundamental to search engine optimization, content marketing, and pay-per-click advertising. But for some marketers, the task of identifying seed keywords isn't clear.
How to Build an Ecommerce Keyword ListFeb 10, 2022
Keywords are an important building block for ecommerce marketing. Developing and maintaining a keyword list may help an ecommerce business understand shoppers and do a better job of marketing to them. In the context of search engine optimization, searchers' words or phrases summarize their thoughts, questions, or needs. Those keywords represent the language people use to ask for help finding resources online.
Shopify SEO Guide: How to increase organic traffic to your storeFeb 6, 2022
Everything a merchant needs to know about optimizing their Shopify site, from basic SEO capabilities to apps, technical SEO challenges and beyond.
We Analyzed The Top 7,000 Websites in 22 Industries. Here’s What We LearnedJan 31, 2022
We analyzed 7,000+ websites with reviews of more than 4 stars on Trustpilot. Here are some SEO factors we noticed they had in common.
Three Key SERP Features: Featured Snippets, People Also Ask, and Knowledge PanelsJan 17, 2022
These elements of search-engine results pages can direct attention, help people reformulate their queries, and influence users’ information needs.
Keyword Tool ⚠️ Google Keyword Planner【Search FREE】Jan 16, 2022
Keyword Tool is #1 (FREE) alternative to Google Ads Keyword Planner for SEO & PPC keyword research ᐈ Generate 1,000s ✅ long-tail keywords in seconds!
Google Search Central (formerly Webmasters) | Web SEO Resources | Google for DevelopersDec 17, 2021
Google Search Central provides SEO resources to help you get your website on Google Search. Learn how to make your website more discoverable today.
41 Best SEO Tools in 2024 (Free & Paid)Dec 15, 2021
These tools have helped my site get 600k+ visits per month. (Most of which came from SEO) The best part? All of these tools work GREAT in 2024.
Vue.js And SEO: How To Optimize Reactive Websites For Search Engines And Bots — Smashing MagazineDec 14, 2021
Do websites created with reactive frameworks get indexed by Google and other search engines? Is it compulsory to set up pre-rendering, as your SEO consultants suggest? Or are they wrong? In this article, Paolo Mioni will talk mostly about Vue.js, since it is the framework he’s used most, and with which he has direct experiences in terms of indexing by the search engines on major projects, but most of what will be covered is valid for other frameworks, too.
The Ultimate Guide to SEO for E-commerce WebsitesSep 1, 2021
Learn how to use effective SEO strategies to improve your e-commerce website's organic search rankings and visibility.
13 eCommerce Site Search Strategies to Boost Revenue from Existing VisitorsMay 7, 2021
Let's be clear about something right at the start: If you're not optimizing your site search to convert more visitors into buyers, you're missing out on
Use Google like a pro - Marko Denic - Web DeveloperApr 24, 2021
Googling is one of the most important skills for every developer. Let me show you how to get better at Googling.
Evaluating Search AlgorithmsApr 2, 2021
The three-step framework Shopify's Data Science & Engineering team built for evaluating new search algorithms.
Building a full-text search engine in 150 lines of Python code · Bart de GoedeMar 28, 2021
Full-text search is everywhere. From finding a book on Scribd, a movie on Netflix, toilet paper on Amazon, or anything else on the web through Google (like [how to do your job as a software engineer](https://localghost.dev/2019/09/everything-i-googled-in-a-week-as-a-professional-software-engineer/)), you've searched vast amounts of unstructured data multiple times today. What's even more amazing, is that you've even though you searched millions (or [billions](https://www.worldwidewebsize.com/)) of records, you got a response in milliseconds. In this post, we are going to build a basic full-text search engine that can search across millions of documents and rank them according to their relevance to the query in milliseconds, in less than 150 lines of code!
Search engine startup from former Google Ads boss raises $40MMar 11, 2021
Neeva is currently in beta with several thousand users.
How to identify your products for GoogleFeb 27, 2021
Manufacturers, retailers and publishers should use structured data and provide an accurate GTIN whenever possible.
19 Advanced SEO Techniques to Double Your Search TrafficJan 16, 2021
The SERP landscape is ever-changing. By following these top 25 SEO strategies, you can dominate SEO and improve your website's organic traffic.
SEO horror stories: Here’s what not to doNov 29, 2020
These three real-life case studies are anonymized to share textbook examples of how not to approach search engine optimization.
SEO: 7 Ways to Optimize Category PagesNov 3, 2020
Category pages target the keywords that consumers search for most frequently. But optimizing category pages for organic search rankings can be difficult, as default category templates on ecommerce platforms tend to hold less text than other pages. What follows are seven category-page elements that improve rankings on highly competitive keywords.
My best SEO tactic so farAug 14, 2020
Over the years, I've worked on building search traffic for two kinds of sites. The first, was working for companies that already had hundreds of thousands or millions of monthly users and were trying ...
SEO Pack: 21 Worksheets, Templates, and Cheat SheetsAug 10, 2020
Looking to up your SEO game? These 19 SEO worksheets, templates, and spreadsheets will supercharge your SEO to increase your visibility and drive traffic.
SEO How-to, Part 10: Redesigns, Migrations, URL Changes | Practical EcommerAug 4, 2020
Changes in content, linking, and URL structure can dramatically impact organic search performance. Thus it's critical to understand the search engine risks and rewards from a new design before you start developing it. This is the 10th installment in my "SEO How-to" series.
SEO How-to, Part 7: Mapping Keywords to ContentJul 18, 2020
Keyword research is the process of identifying the words that consumers use to search for your products on Google and other search engines. Keyword mapping assigns those terms to pages on your site. This is the seventh installment in my "SEO How-to" series.
Want to build a side business? Just buy a great Domain Name | Deep South VeJul 11, 2020
[updated April, 2022] So you wanna start a side business while holding down a full-time job. Kool. Dang smart move – that’s the same route I took – ten years ago now. Self-funded, no VC to appease, no angel investor to update. Just you, and your sandbox of ambition. Hmm, but where to start? Which ... Read more
Top 5000 Most Common Domain Prefix/Suffix List - Courtesy LeanDomainSearch - https://leandomainsearch.com/top-domain-name-prefixes-and-suffixes/, Google Sheets version with changes to domain length - https://docs.google.com/spreadsheets/d/1BzZJ7BNek7ssUB2hWc6ChdF-mxN7QOE4U380Qx8uvR8/edit#gid=1626652908May 24, 2020
Top 5000 Most Common Domain Prefix/Suffix List - Courtesy LeanDomainSearch - https://leandomainsearch.com/top-domain-name-prefixes-and-suffixes/, Google Sheets version with changes to domain length - https://docs.google.com/spreadsheets/d/1BzZJ7BNek7ssUB2hWc6ChdF-mxN7QOE4U380Qx8uvR8/edit#gid=1626652908 · GitHub
SEO: Using Canonical Tags to Reduce Duplicate ContentMar 23, 2020
Canonical tags are an essential tool to prevent duplicate content in organic search results. "Canonical" in search engine parlance means the one true page out of potentially many duplicates.
The Ultimate List of Free SEO ToolsDec 23, 2019
Interested in seeing if your SEO efforts are paying off? We've curated a list of the best free SEO tools to help you determine where your site stands.
Back to basics: Understanding your paid search metricsDec 23, 2019
Learn how to interpret what’s happening in your paid search account with your traffic, conversions and sales data.
Search vs. Discovery: How Are They Different?Oct 24, 2019
Google, Microsoft, et al continue to perfect their search engines – but too often search is not enough. The watchword
SEO Checklist for Website Redesigns and ReplatformsAug 20, 2019
Major website redesigns and replatforms can kill organic search traffic. Use this checklist to minimize the impact.
8-step SEO Crawl Audit for EcommerceAug 20, 2019
Your site won’t rank if search engine bots can’t crawl it. And hidden doors that don’t impact human visitors can lock bots out. Use these eight steps to ensure search bots can access all of your ecommerce site.
Advanced Hack: How to Improve Your SEO in Less Than 30 MinutesAug 5, 2019
FAQpage schema can help your site rank higher in less than 30 minutes. Here's a step by step guide on how to use it.
TF-IDF: The best content optimization tool SEOs aren’t using - Search EnginJul 25, 2019
Term frequency–inverse document frequency uncovers the specific words that top-ranking pages use to give target keywords context.
5 tactics that encourage customer reviewsJul 25, 2019
Make sure your business pages are claimed and ready for reviews – then be ready with a strategy to respond to them.
SEO Trends in 2024 and How to AdaptApr 14, 2019
A complete guide to search engine optimization in 2024. Learn about SEO trends like voice search, AI, search intent, new on-page SEO techniques, and more.
$9 Marketing Stack: A Step-by-Step GuideMar 16, 2019
Update 2016-10-18: This tutorial has been updated to reflect the latest version of my stack (now with Drip!). I’ve also updated pricing info (it’s technically a $0 stack now) and screenshots. The original outdated article is archived here. “Just tell me what to do so I can stop
SEO: Tell Google Which Pages Not to CrawlMar 8, 2019
The typical goal of search engine optimization is to have your site's pages show up on a Google results page in answer to a query. But there are pages that should not be included in search results. Removing them from Google's index might actually increase search engine traffic.
Technical SEO: 15 Critical Areas That Impact PerformanceSep 30, 2018
The technical aspects of search engine optimization can seem mysterious, especially for content marketers. But it doesn't have to be that way. The 15
Indie Hackers: Work Together to Build Profitable Online BusinessesMay 7, 2018
Connect with developers sharing the strategies and revenue numbers behind their companies and side projects.
Google revamps its SEO Starter GuideDec 14, 2017
This is the first update of the SEO starter guide in several years.
kindness
How Small, Easy Acts of Joy Improve Happiness and Well-BeingSep 5, 2025
A community science project finds that modest reminders to find joy in the day can have benefits that are on par with those of more ambitious well-being interventions
How to Be More Charismatic, but Not Too Much MoreJul 17, 2025
It turns out that being charming has a happy mean.
In Times of Trouble, Seek Moral BeautyMay 22, 2025
The lovely paradox of doing good in the world is that it does you good too.
The small exercise that's a powerful mood boosterDec 20, 2024
Counting our blessings is an age-old piece of advice – but it turns out that writing lists of good things that happen to us actually does help improve our mood.
Make Yourself Happy: Be KindMay 3, 2023
How to break the negative feedback loop that can make us act mean
Small acts of kindness matter more than you thinkApr 12, 2023
Text a friend, write a thank-you note, compliment a stranger — people appreciate these gestures.
Kind Engineering: How To Engineer KindnessFeb 7, 2023
How do you avoid becoming a Brilliant Jerk? Read this article to learn practical tips on communication, honesty and psychological safety.
Kind gestures bring recipients more joy than we assumeAug 19, 2022
Our underestimation of how people feel receiving a small act of kindness can actual hinder us from extending those gestures, research finds.
Resonance: How to Open Doors For Other PeopleJul 18, 2022
Opening doors for other people is a critical concept to understand in life. Read this article to learn more about how to show people that you care.
Give Your Money. Give Your Time. Don’t Tell Anyone.Jan 6, 2022
You can find deep, lasting happiness in a good deed that no one knows you did.
Sunday Firesides: Don’t Confuse Niceness With KindnessJan 31, 2021
We often use the words “nice” and “kind” synonymously. But it can be helpful to distinguish between the two qualities, as Eric Kapitulik, Marine special operator and leadership coach, does. Being nice means making people feel good in the short-term. Behaving politely. Offering a smile and a pat on the back. Exchanging pleasantries. Avoiding arguments. […]
Three types of kindnessJan 18, 2021
There is the kindness of ‘please’ and ‘thank you.’ And the kindness of “I was wrong, I’m sorry.” The small kindnesses that smooth our interactions and help other people feel as th…
The fast track to a life well lived is feeling gratefulOct 9, 2019
Being ‘good’ need not take years of ethical analysis: just a few moments of gratitude can set you on the path to virtue
kitty
Punkbit | Kitty terminal tips and tricksNov 25, 2025
kitty.confJan 20, 2025
kitty is highly customizable, everything from keyboard shortcuts, to rendering frames-per-second. See below for an overview of all customization possibilities. You can open the config file within k...
The kitty command line interfaceDec 24, 2024
Run the kitty terminal emulator. You can also specify the program to run inside kitty as normal arguments following the options. For example: kitty --hold sh -c “echo hello, world” For comprehensiv...
knapsack
Combinatorial Optimization: The Knapsack ProblemMay 17, 2021
In this story, we are going to discuss an application of dynamic programming techniques to an optimization algorithm. Through the process of developing an optimal solution, we get to study a variety…
How the Mathematical Conundrum Called the 'Knapsack Problem' Is All Around UsMar 10, 2020
A litany of issues in business, finance, container ship loading and aircraft loading derive from this one simple dilemma
knots
What is Knot Theory? Solve These Puzzles to Find OutOct 4, 2025
Learn the fundamentals of the burgeoning field of knot theory while solving some puzzles along the way
Knotty Business: A Delightfully Tangled Reading List on Knots - LongreadsJan 7, 2025
Six stories on our fascination with knots.
Essential Knots: How to Tie the 20 Knots You Need to KnowApr 19, 2024
One of these knots could save your life one day.
7 Essential Knots Every Man Should Know: An Illustrated GuideJan 28, 2022
Beyond tying your shoes, it’s altogether possible the only knots you know are the ones you make up on the spot. To the uninformed, complex knots seem like magic tricks. But you don’t need to improvise the next time you lash something down. Practice this handy arsenal of essential knots instead. Square Knot. Also known […]
The tangled physics of knots, one of our simplest and oldest technologiesAug 3, 2021
Which knot is the strongest?
kubernetes
The Ultimate Kubectl Command Cheat SheetMar 4, 2025
Take a quick look at kubectl commands that are essential for managing your Kubernetes deployments.
Maybe You Don't Need KubernetesFeb 22, 2024
Kubernetes is the 800-pound gorilla of container orchestration. It powers some of the biggest deployments worldwide, but it comes with a price tag...
K3sFeb 22, 2024
eon01/kubernetes-workshop: ⚙️ A Gentle introduction to Kubernetes with more than just the basics. 🌟 Give it a star if you like it.Jan 16, 2022
⚙️ A Gentle introduction to Kubernetes with more than just the basics. 🌟 Give it a star if you like it. - eon01/kubernetes-workshop
minikube startJan 16, 2022
minikube is local Kubernetes, focusing on making it easy to learn and develop for Kubernetes. All you need is Docker (or similarly compatible) container or a Virtual Machine environment, and Kubernetes is a single command away: minikube start What you’ll need 2 CPUs or more 2GB of free memory 20GB of free disk space Internet connection Container or virtual machine manager, such as: Docker, QEMU, Hyperkit, Hyper-V, KVM, Parallels, Podman, VirtualBox, or VMware Fusion/Workstation 1Installation Click on the buttons that describe your target platform. For other architectures, see the release page for a complete list of minikube binaries.
Why Does Developing on Kubernetes Suck?Jan 16, 2022
Kubernetes has changed the way I operate software. Whole classes of production problems have disappeared–arguably to be replaced by others. But such is the way of the world. All told I’m happier operating a microservices app today than I was before I started using Kubernetes.
Koyeb - The true cost of Kubernetes: People, Time and ProductivityJan 1, 2022
While writing a comparison of Kubernetes and Koyeb, we tried to determine how much operating a Kubernetes cluster really costs. This section of our comparison took us hours to write and ended up being so long that we decided to write a dedicated post about it. Kubernetes is a proven technology, but the true cost is often underestimated: this post investigates the actual financial costs of using Kubernetes.
Kubernetes On Bare MetalDec 14, 2021
If you’ve been following kubernetes, you’ll understand theres a myriad of options available… I’ll cover a few of them briefly and why I didn’t choose them. Don’t know what Kubernetes is? Minikube is the best way to get going locally. This guide will take you from nothing to a 2 node cluster, automatic SSL for deployed apps, a custom PVC/PV storage class using NFS, and a private docker registry. Helpful tips and bugs I ran into are sprinkled throughout their respective sections.
MicroK8s - Zero-ops Kubernetes for developers, edge and IoT | MicroK8sDec 12, 2021
MicroK8s is the simplest production-grade conformant K8s. Lightweight and focused. Single command install on Linux, Windows and macOS. Made for devOps, great for edge, appliances and IoT. Full high availability Kubernetes with autonomous clusters and distributed storage.
Demystifying containers, Docker, and Kubernetes - Microsoft Open Source BlogDec 11, 2021
Modern application infrastructure is being transformed by containers. The question is: How do you get started?
Production-Grade Container OrchestrationDec 2, 2021
Kubernetes, also known as K8s, is an open source system for automating deployment, scaling, and management of containerized applications. It groups containers that make up an application into logical units for easy management and discovery. Kubernetes builds upon 15 years of experience of running production workloads at Google, combined with best-of-breed ideas and practices from the community. Planet Scale Designed on the same principles that allow Google to run billions of containers a week, Kubernetes can scale without increasing your operations team.
Do I Really Need Kubernetes?Dec 2, 2021
Kubernetes is powerful, but that does not mean it’s the right choice for every team and every app. It is made to solve a certain set of problems.
Learning Containers From The Bottom UpNov 15, 2021
What is a Container? Container vs. VM? Docker vs. Kubernetes. How to organize the learning efficiently?
No, we don’t use KubernetesJul 20, 2021
“No, we don’t use Kubernetes”. That always gets raised eyebrows... so we decided to write about our reasoning behind this cloud architecture decision.
Wait, Docker is deprecated in Kubernetes now? What do I do?Dec 10, 2020
This article explains why Docker is now deprecated in Kubernetes.
Kubernetes SLOs with Prometheus and LinkerdNov 3, 2020
SLOs are a lot easier with a service mesh in han. In this tutorial, you’ll learn how to easily create service health SLOs on Kubernetes with Prometheus, an open source time-series database, and Linkerd, an open source ultralight service mesh. You’ll see how using a service mesh can solve one of the...
docker | minikubeNov 3, 2020
Overview The Docker driver allows you to install Kubernetes into an existing Docker install. On Linux, this does not require virtualization to be enabled. Requirements Install Docker 18.09 or higher (20.10 or higher is recommended) amd64 or arm64 system. If using WSL complete these steps first Usage Start a cluster using the docker driver: minikube start --driver=docker To make docker the default driver: minikube config set driver docker Requirements Docker 20.10 or higher, see https://rootlesscontaine.rs/getting-started/docker/ Cgroup v2 delegation, see https://rootlesscontaine.rs/getting-started/common/cgroup2/ Kernel 5.11 or later (5.13 or later is recommended when SELinux is enabled), see https://rootlesscontaine.rs/how-it-works/overlayfs/ Usage Start a cluster using the rootless docker driver:
Kubeflow is More Accessible than Ever, with MiniKFNov 3, 2020
Get started with the best Machine Learning platform for Kubernetes in 10 minutes.
kubernetes-up-and-running/examples: Example code and files from "KubernetesNov 2, 2020
Example code and files from "Kubernetes: Up and Running" - kubernetes-up-and-running/examples
Getting started with Kubernetes: how to set up your first cluster | CircleCOct 27, 2020
Learn how to set up a real-world, production-ready Kubernetes cluster using Amazon Elastic Kubernetes Service (Amazon EKS) and Terraform.
An Introduction To KubernetesOct 21, 2020
Have you ever wondered how companies like Facebook are able to serve applications to Billions of...
How to Deploy your Machine Learning Models on KubernetesMay 15, 2020
Deploy, scale and manage your machine learning services with Kubernetes and Terraform on GCP.
Scaling Jupyter notebooks with Kubernetes and TensorflowAug 29, 2019
In this article, you will explore how you can leverage Kubernetes, Tensorflow and Kubeflow to scale your models without having to worry about scaling the infrastructure.
kubernetes/pkg/controller/volume/persistentvolume/pv_controller.go at ec2e767e59395376fa191d7c56a74f53936b7653 · kubernetes/kubernetesJan 3, 2019
Production-Grade Container Scheduling and Management - kubernetes/kubernetes
An Introduction to the KubernetesJan 3, 2019
In this article, my goal is to get purpose of Kubernetes, to understand philosophy.
labeling
From 100,000 to Under 500 Labels: How Google AI Cuts LLM Training Data by Orders of MagnitudeAug 10, 2025
Google’s active learning method fine-tunes LLMs with 10,000x less data using high-fidelity expert-labeled examples
Thinking about High-Quality Human Data | Lil'LogFeb 22, 2024
[Special thank you to Ian Kivlichan for many useful pointers (E.g. the 100+ year old Nature paper “Vox populi”) and nice feedback. 🙏 ] High-quality data is the fuel for modern data deep learning model training. Most of the task-specific labeled data comes from human annotation, such as classification task or RLHF labeling (which can be constructed as classification format) for LLM alignment training. Lots of ML techniques in the post can help with data quality, but fundamentally human data collection involves attention to details and careful execution.
pylabel-project/pylabel: Python library for computer vision labeling tasks. The core functionality is to translate bounding box annotations between different formats-for example, from coco to yolo.Dec 8, 2021
Python library for computer vision labeling tasks. The core functionality is to translate bounding box annotations between different formats-for example, from coco to yolo. - GitHub - pylabel-proj...
Why fast, effective data labeling has become a competitive advantage (VB LiNov 29, 2021
If an AI model can make decisions on the company’s behalf through products and services, that model is essentially their competitive edge.
Add Labels to a Dataset for Sentiment AnalysisNov 28, 2021
In this article, I will present a tutorial on how to add labels to a dataset for sentiment analysis using Python. Adding labels to a dataset.
Semi-Supervised Learning — How to Assign Labels with Label Propagation AlgoNov 14, 2021
How does Semi-Supervised Machine Learning work, and how to use it in Python?
A Free And Powerful Labelling Tool Every Data Scientist Should KnowOct 24, 2021
One of the best labelling tools I have ever used.
Image Data Labelling and Annotation — Everything you need to knowApr 1, 2020
Learn about different types of annotations, annotation formats and annotation tools
Using Snorkel For Multi-Label Annotation.Mar 18, 2020
How to use snorkel’s multi-class implementation to create multi-labels
How to Label 1M Data Points per WeekDec 14, 2019
[R] Announcing Confident Learning: Finding and Learning with Label Errors iDec 14, 2019
157 votes, 15 comments. Hi, Reddit. I'm excited to share confident learning for characterizing, finding, and learning with label errors in datasets…
lagrange
An Introduction to Lagrange MultipliersNov 23, 2021
Lagrange multipliers with visualizations and code | by Rohit Pandey | TowarDec 23, 2020
In this story, we’re going to take an aerial tour of optimization with Lagrange multipliers. When do we need them? Whenever we have an…
landing-pages
Pricing Pages — A Curated Gallery of Pricing Page DesignsAug 11, 2025
Discover handpicked pricing page examples from SaaS companies, ecommerce brands, and digital agencies. Find design inspiration for your next pricing page design
Best App Landing Page Examples and Why They WorkFeb 10, 2024
Discover best App Landing Page Examples and find out what makes them work. The tips include UI, UX, and copy advise to steal.
Beautiful Free Images & Pictures | UnsplashFeb 10, 2024
Beautiful, free images and photos that you can download and use for any project. Better than any royalty free or stock photos.
Unlocking User Engagement: 8 Strategies to Drive Conversions in Web and AppOct 24, 2023
Some apps or websites are beautiful, stylish, and well thought out in terms of UX, but have one problem: they are boring. These products can trigger both desire and resistance in the user at the same time. Here are a few tricks that will help solve this problem not from a rational, but from an
23 Tips on How to A/B Test Like a Badass - Search Engine WatchJul 18, 2022
A/B testing is hitting the mainstream because it is so effective. And with so many tools available it has become very easy and very inexpensive to run. Here are 23 helpful tips on how you can take your A/B tests from basic to the next level.
Scale campaigns and conversions with easeJun 25, 2022
Unbounce has everything you need to optimize for conversion.
ANALYZE YOUR A/B TEST RESULTSJun 23, 2022
The best way to determine what works best for your site is to carry out an A/B test for your landing pages. Check out this A/B significant test calculator.
The Best SaaS Landing page examples I’ve seen (+ their secrets for conversion)Jun 23, 2022
SaaS Landing page inspiration is usually "pretty" but not conversion/result driven so in this article, I compiled the best SaaS Landing pages examples I've seen and broke-down their secrets for conversions!
Library of design inspiration examples & user flows from web apps • NicelyFeb 12, 2022
Browse a curated design library of web app screens, UI components and User flows from top SaaS web apps, inspiring product teams from leading companies.
SaaS UX design | LyssnaJan 17, 2022
Unlock the growth potential of your SaaS UX design. From reducing churn rates to boosting customer engagement, discover the benefits of great UX design for SaaS. Get inspired by real-life examples and learn best practices from experienced UX practitioners.
Landing Pages: The Complete Guide to Effective UX DesignJan 17, 2022
A guide for helping designers and developers build landing pages that convert visitors to customers and customers to brand advocates.
Web UI Best Practices: UI Design from the ExpertsOct 11, 2021
Learn techniques from visual design, interface design, and UX design. Web UI is analyzed from over 33 companies.
The 9 best landing page builders in 2020 | ZapierAug 18, 2020
With a great landing page builder, you can get results. We tested dozens of apps, and here are our picks for the 7 best.
Writing copy for landing pagesDec 21, 2018
Write copy that delights visitors, persuades prospects, and wins customers.
langchain
Building a Custom PDF Parser with PyPDF and LangChain - KDnuggetsJun 12, 2025
PDFs look simple — until you try to parse one. Here’s how to build your own parser.
LangChain vs OpenAI API: When Simplicity Meets Scalability | Aditya Bhattacharya | Blogs WebsiteDec 13, 2024
This blog explores a detailed comparison between the OpenAI API and LangChain, highlighting key differences in performance and developer experience and the low level code for why these differences exist.
How to Summarize Large Documents with LangChain and OpenAIMay 11, 2024
There are still some limitations when summarizing very large documents. Here are some ways to mitigate these effects.
ImportError: cannot import name 'InvalidToolCall' from 'langchain_core.messMay 8, 2024
Checked other resources I added a very descriptive title to this issue. I searched the LangChain documentation with the integrated search. I used the GitHub search to find a similar question and di...
A Beginner’s Guide to Building LLM-Powered Applications with LangChain!Sep 12, 2023
If you're a developer or simply someone passionate about technology, you've likely encountered AI...
Transforming AI with LangChain: A Text Data Game ChangerAug 6, 2023
Learn how to unleash this Python library to enhance our AI usage.
LangChain 101: Build Your Own GPT-Powered ApplicationsAug 2, 2023
LangChain is a Python library that helps you build GPT-powered applications in minutes. Get started with LangChain by building a simple question-answering app.
Build a Transparent Question-Answering Bot for Your Documents with LangChaiJul 24, 2023
Guide to developing an informative QA bot with displayed sources used
Use LangChain’s Output Parser with ChatGPT for Structured OutputsJul 24, 2023
Explained with an example use case.
Re-implementing LangChain in 100 lines of codeMay 31, 2023
LangChain has become a tremendously popular toolkit for building a wide range of LLM-powered applications, including chat, Q&A and document search. In this blogpost I re-implement some of the novel LangChain functionality as a learning exercise, looking at the low-level prompts it uses to create these higher level capabilities.
Sonali Pattnaik on LinkedIn: #generativeai #ai | 45 commentsMay 21, 2023
AI companies are using LangChain to supercharge their LLM apps. Here is a comprehensive guide of resources to build your LangChain + LLM journey. 🔗 What is… | 45 comments on LinkedIn
LangChain AI HandbookMay 19, 2023
The handbook to the LangChain library for building applications around generative AI and large language models (LLMs).
Getting Started with LangChain: A Beginner’s Guide to Building LLM-PoweredApr 25, 2023
A LangChain tutorial to build anything with large language models in Python
Baby AGI: The Birth of a Fully Autonomous AIApr 19, 2023
Introducing the new fully autonomous task manager that can create, track and prioritize your company's projects using artificial intelligence.
📝 Guest Post: How to Enhance the Usefulness of Large Language Models*Apr 17, 2023
In this guest post, Filip Haltmayer, a Software Engineer at Zilliz, explains how LangChain and Milvus can enhance the usefulness of Large Language Models (LLMs) by allowing for the storage and retrieval of relevant documents. By integrating Milvus, a vector database, with LangChain, LLMs can process more tokens and improve their conversational abilities.
How to Talk to a PDF using LangChain and ChatGPTApr 14, 2023
#langchain #chatgpt #gpt4 #artificialintelligence #automation #python #notion #productivity #datascience #pdf #machinelearning
In this tutorial, learn how to easily extract information from a PDF document using LangChain and ChatGPT. I'll walk you through installing dependencies, loading and processing a PDF file, creating embeddings, and querying the PDF with natural language questions.
00:00 - Introduction
00:21 - Downloading a sample PDF
00:49 - Importing required modules
01:21 - Setting up the PDF path and loading the PDF
01:38 - Printing the first page of the PDF
01:53 - Creating embeddings and setting up the Vector database
02:24 - Creating a chat database chain
02:49 - Querying the PDF with a question
03:27 - Understanding the query results
04:00 - Conclusion
Remember to like and subscribe for more tutorials on learning, research and AI!
- Source code: https://github.com/EnkrateiaLucca/talk_pdf
- Link to the medium article: https://medium.com/p/e723337f26a6
- Subscribe!: https://www.youtube.com/channel/UCu8WF59Scx9f3H1N_FgZUwQ
- Join Medium: https://lucas-soares.medium.com/membership
- Tiktok: https://www.tiktok.com/@enkrateialucca?lang=en
- Twitter: https://twitter.com/LucasEnkrateia
- LinkedIn: https://www.linkedin.com/in/lucas-soares-969044167/
Music from [www.epidemicsound.com](http://www.epidemicsound.com/)
4 Ways to Do Question Answering in LangChainApr 14, 2023
Chat with your long PDF docs: load_qa_chain, RetrievalQA, VectorstoreIndexCreator, ConversationalRetrievalChain
langgraph
LangGraph Explained from Scratch | Aman KharwalDec 23, 2025
In this article, I’ll walk you through a complete guide to LangGraph from the ground up. LangGraph Explained from Scratch.
5 AI Agent Frameworks Compared - KDnuggetsFeb 3, 2025
Check out this comparison of 5 AI frameworks to determine which you should choose.
Creating an AI Agent-Based System with LangGraph: Adding Persistence and Streaming (Step by Step Guide)Feb 2, 2025
In our previous tutorial, we built an AI agent capable of answering queries by surfing the web. However, when building agents for longer-running tasks, two critical concepts come into play: persistence and streaming. Persistence allows you to save the state of an agent at any given point, enabling you to resume from that state in future interactions. This is crucial for long-running applications. On the other hand, streaming lets you emit real-time signals about what the agent is doing at any moment, providing transparency and control over its actions. In this tutorial, we’ll enhance our agent by adding these powerful
language-linguistics
The Hidden Bias in Language That Turned Left-Handedness Into a Bad ThingFeb 15, 2026
While the days of forcing left-handed children to use their right hands are mostly over, the bias against lefties continues in most languages around the world.
The crayola-fication of the world: How we gave colors names, and it messed with our brains (part I)Feb 7, 2026
“Who in the rainbow can draw the line where the violet tint ends and the orange tint begins? Distinctly we see the difference of the colors, but where exactly does the one first blendingly enter in…
Hawaiian Pidgin: The History of a Creole Language | TheCollectorJan 22, 2026
The grammatical features of the Creole language known as Hawaiian Pidgin tell us of a society built on the efforts of its multicultural workforce.
'Hullo, hillo, holla': The 600-year-old origins of the word 'hello'Jan 18, 2026
It's 200 years since the word "hello" was first used in print - though its roots date back to the 15th Century. How has the language of greetings evolved - and what does it tell us?
Dictionary of the Oldest Written Language--It Took 90 Years to Complete, and It's Now Free OnlineJan 7, 2026
It took 90 years to complete. But, in 2011, scholars at the University of Chicago finally published a 21-volume dictionary of Akkadian, the language used in ancient Mesopotamia.
The triumph of logical English - Works in Progress MagazineJan 4, 2026
English prose has become much easier to read. But shorter sentences had little to do with it.
Swearing Actually Seems To Make Humans Physically Stronger - SlashdotDec 19, 2025
alternative_right shares a report from ScienceAlert: A new study adds to the growing body of evidence that swearing can help us unleash our inner strength, improving physical performance, it seems, by helping people break through certain psychological barriers. [...] [Psychology researcher Richard ...
Words That Don't Sound Nice Are Harder to Remember, Study SaysDec 13, 2025
A new study suggests our brains welcome gibberish words that sound gentle and kind with open arms while rejecting the harsh ones.
How Did These 5 Ancient Languages Have Such a Historical Impact?Dec 4, 2025
According to scientists, written languages appeared some 5,500 years ago. And from these myriads of ancient tongues, these five produced the biggest impact.
In a First, AI Models Analyze Language As Well As a Human Expert | Quanta MagazineNov 3, 2025
If language is what makes us human, what does it mean now that large language models have gained “metalinguistic” abilities?
15 English Words With Interesting Origins | TheCollectorOct 27, 2025
From Greek constellations to Gaelic spirits, these 15 English word origins reveal how a Germanic language evolved into a global vocabulary.
Pidgin vs. Creole: What’s the Difference? | TheCollectorOct 13, 2025
Pidgin and creole languages share a common origin, arising from interactions between groups lacking a common language. However, they also differ in significant ways.
The 3,000-year-old story hidden in the @ signSep 24, 2025
In Taiwan they call @ "little mouse". It's "strudel" in Hebrew, "dog" in Russian and "monkey's tail" in Dutch. The @ sign is a mirror, and its story goes back thousands of years.
This Mind-Bending Phenomenon Is Basically Déjà Vu in ReverseSep 14, 2025
Most people have felt déjà vu at least once. Jamais vu is the flip side. It’s rarer, harder to describe, and somehow more off-putting.
Why do so many football coaches emphasize Southern accents? Linguistics experts explainSep 9, 2025
LSU coach Brian Kelly went viral for his attempt at a southern accent. But experts say there's a reason leaders lean into regional dialects.
Stuttering Has Deep Genetic Roots and May Affect Your Ability to Clap to a BeatAug 15, 2025
A massive genetic study found that stuttering is not just about nurture and may link to processing rhythm itself.
Why the origin of the word 'dog' remains a mysteryAug 13, 2025
Although "dog" is ubiquitous today to describe man's best friend, it remains a mystery where the word originally came from.
What Is the ‘Dolly Parton Effect’ and Does It Actually Work?Aug 3, 2025
If the great Dolly Parton ever shouted directions at you in a hurricane, chances are you’d understand every word...
Leopard Seals Sing Songs That Resemble Human Nursery Rhymes—Here’s WhyAug 3, 2025
Every night, a male leopard seal slips off the ice and sings underwater for hours. It sounds structurally like a human nursery rhyme...
Dogwhistles and Figleaves. How Manipulative Language Spreads Racism and Falsehood, by Saul JenniferJul 24, 2025
Language serves many purposes. It can propel us forward, both individually and collectively, but it can also plunge us into misery. The latter is the focus
Inside India’s scramble for AI independenceJul 8, 2025
Structural challenges and the nation’s many languages have made it tough to develop foundational AI models. But the government is keen not to be left behind.
Beyond words: The 200-year-old hidden languages of datingJul 6, 2025
From Regency-era "fan flirting" to online dating, we decipher the timeless looks, signs and gifts that signal secret love.
Frontiers | Swearing as a Response to Pain: Assessing Hypoalgesic Effects of Novel “Swear” WordsJul 2, 2025
Previous research showing swearing alleviates pain is extended by addressing emotion arousal and distraction as possible mechanisms. We assessed the effects ...
why AI language models like chatGPT can’t understand flowersJun 30, 2025
a study by ohio state university investigates whether large language models can represent human concepts without physically experiencing them.
Did Baby Talk Give Rise to Language?Jun 25, 2025
The way that human adults talk to young children is unique among primates, a new study found. That might be one secret to our species’ grasp of language.
Can You Use ChatGPT To Learn a New Language?May 12, 2025
Can't find a human to practice a language with? I've been there. Here's why most of my interaction with ChatGPT is in other languages.
Why alien languages could be far stranger than we imagine | Aeon EssaysMay 9, 2025
Imagining how aliens might communicate prepares us for first contact and illuminates the nature of our own languages
Lost and Found: The Unexpected Journey of the MingKwai Typewriter | Made in China JournalMay 4, 2025
It began as an innocuous inquiry on Facebook. Nelson Felix, a resident of New York State, posted in the group ‘What’s My Typewriter Worth?’ about a curious find he made while clearing out the basement of his wife’s grandfather. He shared a few photos. The keys on the typewriter are all in Chinese, Felix noted, […]
10 Untranslatable Japanese Words You Need To KnowMay 2, 2025
Explore the fascinating world of untranslatable Japanese that reveal unique aspects of Japanese culture and daily life.
Do-All-Human-Languages-Have-Basic-Grammar-Rules/Apr 27, 2025
Huh? The valuable role of interjectionsApr 22, 2025
Utterances like um, wow and mm-hmm aren’t garbage — they keep conversations flowing
To Make Language Models Work Better, Researchers Sidestep Language | Quanta MagazineApr 20, 2025
We insist that large language models repeatedly translate their mathematical processes into words. There may be a better way.
Why Most Ancient Civilizations Had No Word for the Color BlueApr 16, 2025
In an old Zen story, two monks argue over whether a flag is waving or whether it’s the wind that waves.
How Chinese Characters Work: The Evolution of a Three-Millennia-Old Writing SystemApr 11, 2025
Contrary to somewhat popular belief, Chinese characters aren't just little pictures. In fact, most of them aren't pictures at all.
Where Does Meaning Live in a Sentence? Math Might Tell Us. | Quanta MagazineApr 9, 2025
The mathematician Tai-Danae Bradley is using category theory to try to understand both human and AI-generated language.
Bonobos May Combine Words In Ways Previously Thought Unique To Humans - SlashdotApr 5, 2025
A new study shows bonobos can combine vocal calls in ways that mirror human language, producing phrases with meanings beyond the sum of individual sounds. "Human language is not as unique as we thought," said Dr Melissa Berthet, the first author of the research from the University of Zurich. Another...
Bonobos’ calls may be the closest thing to animal language we’ve seenApr 3, 2025
300 aspects of each call were cataloged, letting researchers estimate meaning.
Xenolinguistics—the Study of Alien Languages—Helps to Reveal Why All Beings CommunicateApr 3, 2025
Studying how extraterrestrials might communicate could help prepare for first contact and also hint at the point of language itself
What is METEOR score? - DataconomyApr 2, 2025
METEOR Score is a metric used to evaluate the quality of machine translation based on precision, recall, word alignment, and linguistic flexibility.
What is stemming? - DataconomyMar 13, 2025
Stemming is the linguistic process of reducing words to their base form, ignoring prefixes and suffixes, to enhance clarity and information retrieval.
The Mystery of the World's Oldest Writing System Remained Unsolved Until Four Competitive Scholars Raced to Decipher ItFeb 11, 2025
In the 1850s, cuneiform was just a series of baffling scratches on clay, waiting to spill the secrets of the ancient civilizations of Mesopotamia
The Strange Power of LaughterJan 21, 2025
An anthropologist explores laughter as a far more complex phenomenon than simple delight—reflecting on its surprising power to disturb and disrupt.
Linguists Point to Expressions of Pain as a Possible Universal LanguageJan 18, 2025
Linguists think that the words that we use to express pain might tell us something about our shared biology and the commonality of language.
Ten Thousand Years - 99% InvisibleDec 21, 2024
In 1990, the federal government invited a group of geologists, linguists, astrophysicists, architects, artists, and writers to the New Mexico desert, to visit the Waste Isolation Pilot Plant. They would be there on assignment. The Waste Isolation Pilot Plant (WIPP) is the nation’s only permanent underground repository for nuclear waste. Radioactive byproducts from nuclear weapons manufacturing and nuclear power plants. WIPP was
Can a Comma Solve a Crime? — The DialDec 6, 2024
How forensic linguists use grammar, syntax and vocabulary to help crack cold cases.
Evidence of oldest known alphabetic writing unearthed in ancient Syrian cityNov 24, 2024
Findings suggest alphabetic writing may be some 500 years older than other discoveries
Sentence structure for writers: understanding weight and clarity [extract]Nov 19, 2024
Some sentences just sound awkward. In order to ensure clarity, writers need to consider more than just grammar: weight is equally important. In the following extract from Making Sense, acclaimed linguist David Crystal shows how sentence length (and weight) affects writing quality.
Tackling the Impossibility—and Necessity—of Counting the World’s LanguagesOct 31, 2024
A language scientist delves into historic and current efforts to catalog the planet’s 7,000-plus languages, uncovering colorful tales.
'It's a unique language spoken by two people': The twins who created their own languageOct 30, 2024
Up to 50% of twins develop their own communication pattern with one another. Most lose it over time, but for the Youlden twins it has become a normal way of communicating.
Why do we say “like,” like, all the time?Oct 19, 2024
In defense of the supremely useful and unfairly maligned word.
You Don’t Need Words to ThinkOct 19, 2024
Brain studies show that language is not essential for the cognitive processes that underlie thought
Hidden Patterns in Folk Songs Reveal How Music EvolvedOct 15, 2024
Songs and speech across cultures suggest music developed similar features around the world
The Birth of CoolAug 4, 2024
Being cool is hard. Staying cool is harder. It’s an elusive quality, in part because it’s an elusive word with layers of nuanced meaning that peel off...
Book Review: You Talking to Me? How Human Language EvolvedAug 2, 2024
Prehistory professor Steven Mithen’s “The Language Puzzle” explores the mysteries of when and how we began to speak.
What a Linguist Hears When Biden SpeaksJul 13, 2024
Don’t fixate on a few shaggy phrases. There’s something bigger going on.
Wild elephants may have names that other elephants use to call themJun 11, 2024
Research on the rumbles of wild elephants suggest that these animals address each other with unique, name-like vocalizations. (Story aired on All Things Considered on June 10, 2024.)
The 7-38-55 rule: Debunking the golden ratio of conversationJun 10, 2024
The 7-38-55 rule claims that the majority of a conversation’s meaning is found in tone and body language. The truth is much more complicated.
The Long Linguistic Journey to ‘Dagnabbit’May 30, 2024
This piece of pseudo-profanity is what’s known as a taboo deformation—a word we say when we don’t want to say the word.
15 Fascinating Linguistics Terms You Didn’t Learn in SchoolMay 15, 2024
Your sixth-grade language arts class probably didn't cover kangaroo words and snowclones.
The Unusual Language That Linguists Thought Couldn’t ExistMay 4, 2024
A new sign language is developing in the Negev desert and it’s catching linguists off-guard.
Green’s Dictionary of SlangApr 14, 2024
My Synesthesia Transforms Speech into Text I ‘See’ in My HeadApr 9, 2024
From the time I learned to read, I have experienced a form of mental closed-captioning called ticker-tape synesthesia
14 Secret Code Words You Might Want to KnowApr 5, 2024
Some words, when used in specific situations, have deeper meanings than you realize: They’re codes to alert those in the know while keeping others in the dark.
Speech and Language ProcessingMar 12, 2024
“Dune” and the Delicate Art of Making Fictional LanguagesMar 9, 2024
The alien language spoken in Frank Herbert’s novels carries traces of Arabic. Why has that influence been scrubbed from the films?
How Being Bilingual Helps Your Brain (Even If You Learn a New Language in AFeb 29, 2024
There was a time in America, not so very long ago, when conventional wisdom discouraged immigrants from speaking the language of the old country at home. In fact, 'it used to be thought that being bilingual was a bad thing, that it would confuse or hold people back, especially children.
How First Contact With Whale Civilization Could UnfoldFeb 25, 2024
If we can learn to speak their language, what should we say?
Beyond dogwhistles – racists have a new rhetorical trickFeb 17, 2024
How are so many politicians today able to get away with overtly racist utterances? By using rhetorical ‘figleaves’
A new look at our linguistic rootsFeb 15, 2024
Linguists and archaeologists have argued for decades about where, and when, the first Indo-European languages were spoken, and what kind of lives those first speakers led. A controversial new analytic technique offers a fresh answer.
People Have Very Different Understandings of Even the Simplest WordsFeb 5, 2024
Distinctive meanings for a word like “risk” can have a big impact on public messaging, especially when it comes to issues like climate change
HistoryFeb 3, 2024
People Who Speak Backward Reveal the Brain’s Endless Ability to Play with LOct 16, 2023
Argentine researchers studied a regional slang that reverses the order of word syllables or letters. Their findings give insight into our natural ability to engage in wordplay
Lost Languages Discovered in One of the World’s Oldest Continuously Run LibSep 24, 2023
The centuries-old texts were erased, and then written over, by monks at Saint Catherine’s Monastery in Egypt
The fascinating evolution of typing Chinese charactersAug 27, 2023
From Wubi to Zhineng ABC, here are the different ways Chinese people have typed their language over the years.
Hacker NewsAug 22, 2023
Just a few days ago I saw an amazing video about Kurt Quinn, a man who can talk backwards. When I say backwards, I don’t mean that he reverses the order of the words in a sentence, but he act…
mi kama sona e toki pona or somethingAug 14, 2023
So I stumbled a few weeks ago on this video [https://www.youtube.com/watch?v=E4y7tf3VJAM] about the world's smallest conlang and I've been thinking about it ever since. [https://staging.cohostcdn.org/attachment/91c54129-9425-4695-bd68-6f65d83ae793/maxresdefault.jpeg] [https://www.youtube.com/watch?v=E4y7tf3VJAM] (You will probably have the idea more than fully by the ten minute mark.) This fascinated me. I think languages are really interesting but I'm also really bad at them. I cannot hack the memorization. I've mostly avoided conlangs (that's Constructed Languages, like Esperanto or Klingon) because like, oh no, now there's even more languages for me to fail at memorizing. So like, a language so minimal you can almost learn it by accident, suddenly my ears perk up. Toki pona is really interesting, on a lot of different axes. It's a thought experiment in Taoist philosophy that turns out to be actually, practically useful. It's Esperanto But It Might Actually Work This Time¹. It has NLP implications— it's a human language which feels natural to speak yet has such a deeply logical structure it seems nearly custom-designed for simple computer programs to read and write it². Beyond all this it's simply beautiful as an intellectual object— nearly every decision it makes feels deeply right. It solves a seemingly insoluble problem³ and does it with a sense of effortlessness and an implied "LOL" [https://staging.cohostcdn.org/attachment/747b4517-a3cf-438b-a6a0-07ad9e6883fd/Toki_pona.svg.png] at every step. So what toki pona is. Toki pona is a language designed around the idea of being as simple as it is possible for a language to be. It has 120 words in its original form (now, at the twenty year mark, up to 123), but you can form a lot of interesting sentences with only around twenty or thirty (I know this because this is roughly the size of my current tok vocabulary). The whole tok->en dictionary fits on seventeen printed pages [https://devurandom.xyz/tokipona/dictionary.html]⁴. There are no conjugations or tenses to memorize. There are no parts of speech, generally: almost every single word can be used as almost any part of speech, drop a pronoun or a preposition⁵ in the right place and it becomes a verb, drop a verb in the right place and it becomes an adjective. There are almost no ambiguities in sentence structure; I've only found one significant one so far (using "of" [pi] twice in the same clause) and the community deals with this by just agreeing not to do that. There's in one sense quite a lot of ambiguity in the vocabulary but in another sense there's none; for example nena is listed in the dictionary as meaning hill, mountain, button, bump, nose, but the official ideology of Toki Pona is that this is not a word with five definitions, it is a word with exactly one definition, that being the concept encompassing all five of hills, mountains, buttons, bumps, and noses. Toki pona words are not ambiguous, they're just broad. I will now teach you enough toki pona to understand most sentences (assuming you consult the dictionary [https://devurandom.xyz/tokipona/dictionary.html] as you go) in a paragraph shorter than this one: Every sentence has an "verb" or action clause. Most sentences also have a subject clause, which goes before the verb separated by "li". Some sentences also have an "object" or target clause, which goes after the verb clause separated by "e". So "[subject] li [verb] e [object]". All three clauses are any number of words, the first word is the noun (or verb) and the rest are adjectives (or adverbs). If the first word in a sentence is mi or sina you can omit the li in that case only. There is no "is", a sentence like "a flower is red" is just "[a plant] li [red]" because there are no parts of speech and adjectives are verbs. Pronounce everything the way you would in English except "j" sounds like "y". If you see "tawa", "lon", "tan" or "kepeken" in adjective/adverb position that's a preposition, so treat whatever comes after it as a fourth clause. "a" and "n" are interjections and can go anywhere in a sentence. If you see "o", "pi", "la", "taso, "anu" or "en", then you've found one of the few special words (particles) and you should probably either read the book [https://www.amazon.com/dp/B012M1RLXS/] or watch the jan Misali instructional videos [https://www.youtube.com/playlist?list=PLLIjft6ja7DM70MkOMu56c4Grku7LXR61] on YouTube. That's like… almost it!⁶ Watch one youtube video, or read a half page of grammar summary and keep the dictionary open on your phone, and you're basically ready to jump into conversations. (You'll need those last six particles to make nuanced sentences, but sentences do not have to be nuanced.) In my own case I watched the Langfocus video linked at the top and then lazily over the next week watched the jan Misali overview [https://www.youtube.com/watch?v=eLn6LC1RpAo] and two of their instructional videos then read a few chapters of the book, and was already able to construct a full paragraph and be understood by another person: > o! mi sona e toki pona. mi lukin sona e toki mute... taso mi toki ike e toki ale. toki mute li jo e nimi mute. nimi mute li pona ala tawa mi. toki pona li pona e mi tan ni. toki pona li jo nimi lili. nimi lili li pona e me :) (Translation: Hello! I am learning toki pona. I've tried to learn many languages… but I speak all of the[m] badly. Most languages have a lot of words. Lots of words is not good for me. Toki pona is good for me because of this. Toki pona has few words. Few words is good for me :)⁷) So that's week one. By the end of week three (that'll be this past Sunday) I had hit three milestones: * I was able to make a joke in toki pona. Not a good one. * When the joke misfired, I was able to successfully toss off an entire complex paragraph rapidly without really thinking about it. * Probably a sign I Am Getting It more significant than anything else: I realized that talking on the Discord I was dropping toki pona words into my English sentences solely because the toki pona word seemed to me to communicate a concept I wanted to communicate more precisely than any particular English word. (That last one actually kind of excited me when I realized, after the fact, that it had been happening for several days before I noticed it.) All of the above happened on the toki pona Discord, which seems to be the largest and healthiest outpost of toki pona community online⁸ and, I assume therefore, the world. Here's my toki pona joke; you'll notice that I begin by preemptively apologizing for it, but by the end it becomes clear I was, at that moment anyway, apparently completely on the Discord's level:⁹ [https://staging.cohostcdn.org/attachment/d5366ff6-ae17-4c70-a900-a02ac307f108/tokipona_conversation.png] ---------------------------------------- Footnotes ¹ Esperanto was meant to be an auxillary language simple enough the entire world could learn it as a second language. But it does not seem to me to be actually all that simple to learn (the verb tenses may be free of exceptions, but there are still like six of them) and it seems hard to convince myself to study it when I could put that effort toward a more widespread language. Toki Pona on the other hand is a language simple enough the entire world actually could learn it, had it reason to, and the buy-in cost in time is a lot lower. Meanwhile Toki Pona just seems to get certain international-accessibility things right, probably due to the advantage of having over a century of conlang practice largely inspired by Esperanto to draw from. The difference that's most interesting to me, but which I'm also least qualified to evaluate, is that the Toki Pona author had some basic familiarity with, and gave Toki Pona input from, east Asian languages. Both Toki Pona and Esperanto draw roots from a variety of languages but in Esperanto's case this winds up being mostly European languages, mostly Italian, whereas Toki Pona has Mandarin and Cantonese in its mix. Both languages were intended to have a minimal, universal phonology but Esperanto's is not very universal at all and has some consonant sounds that are going to be be totally unfamiliar unless you speak Polish or a language related to Polish. Toki Pona's phonology is actually minimal-- it has the letters in the sentence "mi jan pi ko suwi lete" and nothing else and the legal syllabary is basically hiragana without the combination syllables. Now, what I don't know is whether any of this actually helps speakers of Asian languages in practice or if it just makes surface choices that make it seem that way to a westerner like me. In practice if you find a toki pona speaker their native language is almost certainly English, so there doesn't seem to have been a great deal of testing as to how learnable it is to people from varied regions. ² I kept imagining toki pona as being like LLVM IR for human languages or something. ³ Designing an actually learnable, universal(?) international auxillary language. ⁴ By which I mean if you print the unofficial web version it's 17 pages long. But you can fit it in sixteen if you remove the web-specific introductory paragraph, the "joke word" kijetesantakalu, and the web footer with the "trans rights now!" banner in it. ⁵ There's an awkward nuance in the specific case of prepositions: if you drop a preposition into verb position it still winds up "behaving like" a preposition, it's just that the preposition describes an action. It's probably more accurate to say that the preposition phrase becomes a verb rather than the preposition itself. So for example "mi tawa kalama" means "I went toward the sound" [kamala is a noun and the object of the preposition] not "I went loudly" [as it would be if kamala were an adverb modifying tawa as a verb]. Going into detail on this because I don't want to mislead anyone but "you can form a sentence using an unmodified preposition as a verb" is such a fun fact I...
What is the secret to an evocative smell description?Aug 7, 2023
Many languages have very few odour-related words, so conveying what a scent is like requires knowing your audience
Can You Decode an Alien Message?Aug 5, 2023
An artist, a programmer and a scientist have created a simulation of extraterrestrial communication to test Earthlings’ ability to understand it
5 Linguistic Illusions That Will Make You Go “Wait, What?”Jul 27, 2023
Optical illusions have long captured our imagination, but what about linguistic illusions? A linguistic illusion is a phenomenon in which your judgment or under
Chinese Tech Terms Explained In English | 16x EngineerJul 13, 2023
Learn about five Chinese tech terms: Huidu, Lunzi, Chendian, Dapan, and Maidian, frequently used in companies like Tencent and ByteDance.
WhatsApp voice notes are revolutionizing farming in SenegalJul 6, 2023
For farmers in Senegal who struggle to read or write, sending voice notes has unlocked a new world of collaboration across the industry.
The Rarest Sounds Across All Human Languages: Learn What They Are, and HowJul 2, 2023
When first we start learning a new foreign language, any number of its elements rise up to frustrate us, even to dissuade us from going any further: the mountain of vocabulary to be acquired, the grammar in which to orient ourselves, the details of pronunciation to get our mouths around.
Why are some sounds funny?Jun 30, 2023
To English speakers, the word, “peanut” isn’t especially funny. But “peanut” in Serbian, “kikiriki” is widely considered by Serbs to be the funniest word in their language. This raises the question of why people laugh at some words (“poop”) but not at others (“treadmill”). Does it come down to their meanings? Or are people responding to their sounds? Psycholinguist Chris Westbury set out to discover the answer.
The unsolved mystery of Europe’s oldest languageJun 18, 2023
For linguists, the uniqueness of the Basque language is an unsolved mystery. For native speakers, long oppressed, it's a source of pride.
How our brains cope with speaking more than one languageJun 13, 2023
Speaking a second or even a third language can bring obvious advantages, but occasionally the words, grammar and even accents can get mixed up.
Why French Sounds So Unlike Spanish, Italian & Other Romance Languages, EveMay 30, 2023
French is known as the language of romance, a reputation that, whatever cultural support it enjoys, would be difficult to defend on purely linguistic grounds.
Why Do We Gesture When We Talk?May 27, 2023
We all know people who talk with their hands. Turns out there’s quite a bit of research around the relationship between language and gestures.
What the Heck is Cuneiform, Anyway?May 14, 2023
The writing system is 6,000 years old, but its influence is still felt today
The Interesting Etymologies of 71 Everyday WordsMay 7, 2023
Here’s (at least) one interesting way station each of these common words made on its journey to the present day.
People Differ Widely in Their Understanding of Even a Simple Concept Such as the Word 'Penguin'May 5, 2023
We think about what a penguin is like in dozens of different ways—one reason why we often talk past each other
The Magic of Knowing When to Use Concrete vs. Abstract Language - By Jonah Berger - Behavioral ScientistApr 25, 2023
When trying to make language either more concrete or more abstract, one helpful approach is to focus on either the how or the why.
New Mexico Is Losing a Form of Spanish Spoken Nowhere Else on EarthApr 9, 2023
A dialect from the state’s earliest Spanish-speaking settlers has endured for over 400 years in the state’s remote mountain villages. But its time may be running out.
Ten Words That Describe Human Emotions That We Might Have Difficulty ExpresApr 5, 2023
Sometimes, we feel things that we can’t put into words. We can certainly describe things through paragraphs, but finding the exact word to describe our emotions can be limited. It turns out that aside from the common words we used to talk about how we feel, there are other phrases and nouns in English that can describe more complicated human emotions.
Gaslighting, Narcissist, and More Psychology Terms You're MisusingMar 24, 2023
Mental-health experts say we often use psychology terms incorrectly—and that's a problem
3 Rhetorical Techniques to Increase Your ImpactMar 19, 2023
Technological advances in natural language processing, computational linguistics, and machine learning, combined with the digitization of everything from cover letters to conversations, have revolutionized our ability to analyze language, yielding unprecedented insights. Think of it as a new science of language. Many of the findings suggest that small changes in the words we use can increase our ability to persuade and influence others.
Meet the Man Collecting Fading Place NamesMar 13, 2023
What do we lose when we forget about locations like "Troll's Cave" and "Window Claw"?
The Surprising Reason Europe Came Together Against PutinMar 4, 2023
A major advance in translation technology means that Ukrainians can inform and debunk in real time. The world hasn’t seen a weapon quite like it before.
The Grammarphobia Blog: Why the ‘w’ is called a ‘double u’Feb 25, 2023
The 23rd letter of the English alphabet is called a “double u” because it was originally written that way in Old English.
US cancer patient developed 'uncontrollable' Irish accent - BBC NewsFeb 17, 2023
Despite never having been to Ireland, the North Carolina man spoke with a "brogue" until his death, say researchers.
Madeline Kripke Owned 20,000 Books, Some of Them Very BawdyFeb 11, 2023
She had perhaps the largest personal dictionary collection in the world. It is certainly the most titillating.
9 viral phrases that explain China’s work cultureFeb 11, 2023
From “lie flat” to “let it rot,” common terms have taken on new meaning in recent years.
Foreign languages: How to memorise vocabularyFeb 5, 2023
When trying to learn a foreign language, most of us have the same complaint:
Symbols lost from our alphabet over timeJan 31, 2023
17K votes, 728 comments. 5.5M subscribers in the coolguides community. Picture based reference guides for anything and everything. If it seems like…
Dialect detective: Chinese woman helps find hundreds of missing people natiJan 31, 2023
Hundreds of mainland Chinese families have been reunited with missing relatives thanks to the help of a Chinese woman who has taught herself more than 10 of the country’s myriad of dialects.
The All-Too Complicated History of Simplified ChineseJan 16, 2023
Often portrayed as the result of a revolutionary pro-literacy movement, many “simplified” characters have existed for hundreds of years.
The Linguistics of Swearing Explain Why We Substitute Darn for DamnDec 13, 2022
Languages from Hindi to Korean tone down swear words by inserting gentler consonants into speech. Here’s how “Let’s go Brandon” got started
What Humans Can Learn From The Language Of HoneybeesDec 8, 2022
Advanced technologies like A.I. are enabling scientists to learn that the world is full of intelligent creatures with sophisticated languages, like honeybees. What might they tell us?
AI Homework – Stratechery by Ben ThompsonDec 7, 2022
The first obvious casualty of large language models is homework: the real training for everyone, though, and the best way to leverage AI, will be in verifying and editing information.
NeurolinguisticsDec 7, 2022
An accessible introduction to the study of language in the brain, covering language processing, language acquisition, literacy, and language disorders.Neurol...
'Arrival' Is a Timely Film About Aliens and EmpathyDec 4, 2022
The movie's screenwriter talks about the creation of the story's extraterrestrial language and the importance of communication.
5 Linguistics Courses for NLP PractitionersNov 21, 2022
This collection of 5 courses is intended to help NLP practitioners or hopefuls acquire some of their lacking linguistics knowledge.
Everybody in Almost Every Language Says “Huh”? HUH?!Nov 20, 2022
What makes this utterance the “universal word”?
The weird way language affects our sense of time and spaceNov 6, 2022
The languages we speak can have a surprising impact on the way we think about the world and even how we move through it.
How brands get their names, explained by a professional namerOct 30, 2022
A professional explains why brand names have gotten weirder.
Interview: Why Mastering Language Is So Difficult for AIOct 17, 2022
Scientist Gary Marcus argues that “deep learning” is not the only path to true artificial intelligence.
The surprising power of memesOct 1, 2022
The science of these viral mash-ups reveals why they are so effective at spreading ideas and beliefs.
34 Great Apps and Resources to Help You Learn a LanguageSep 26, 2022
Learning a language is challenging but extremely rewarding. Try one of these excellent apps to help you get started.
The Enduring Mystery of 'Jawn,' Philadelphia's All-Purpose NounSep 16, 2022
According to experts, it's unlike any word, in any language.
The Hidden History of “Hand Talk,” the Native American Sign Language That PSep 13, 2022
No one person can take credit for the invention of American Sign Language. Its history reaches back to the early 19th century, when forms of sign developed among Deaf communities in New England.
The Animal TranslatorsAug 30, 2022
Scientists are using machine learning to eavesdrop on naked mole rats, fruit bats, crows and whales — and to communicate back.
The messages that survived civilisation's collapse - BBC FutureAug 22, 2022
The Sumerians, Maya and other ancient cultures created texts that have lasted hundreds and even thousands of years. Here's what they can teach us about crafting an immortal message.
The art of effective trollingAug 19, 2022
Sometimes you can say more with humor than with a polished speech or marketing spot.
The 1600s Were a Watershed for Swear WordsAug 13, 2022
The language that doesn't use 'no'Aug 11, 2022
The Kusunda language has no known origin and a number of quirks, like no words for "yes" or "no". It also has only one fluent speaker left, something linguists are racing to change.
The Fine Art of Italian Hand Gestures: A Vintage Visual Dictionary by Bruno MunariAug 7, 2022
A pocket guide to Neapolitan nonverbal communication.
Have Scholars Finally Deciphered Linear Elamite, a Mysterious Ancient ScripAug 2, 2022
Linear Elamite, a writing system used in what is now Iran, may reveal the secrets of a little-known kingdom bordering Sumer
How the Brain Links Gestures, Perception and MeaningAug 1, 2022
Neuroscience has found that gestures are not merely important as tools of expression but as guides of cognition and perception.
The Language You Speak Influences Where Your Attention GoesAug 1, 2022
It’s all because of the similarities between words.
How the Brain Allows the Deaf to Experience MusicJul 26, 2022
Our sensory systems for hearing and touch overlap to stir a wealth of emotions.
When Did Shaking Hands Become a Standard Way of Greeting Someone?Jul 24, 2022
There’s ancient evidence for the custom of shaking hands, but did it mean the same thing then as it does today?
What’s So Funny? The Science of Why We LaughJul 19, 2022
Psychologists, neuroscientists and philosophers are trying to understand humor.
Why the French love to say noJul 18, 2022
Although the default answer to almost every question, request or suggestion is a disheartening ‘non’, a ‘oui’ is often hiding in the context of what is being said.
The Sanaa Palimpsest: A truly fascinating Quranic manuscriptJul 14, 2022
The Sanaa Palimpsest has a number of unique characteristics, not least as an enduring artefact of Quranic scribal methods and of Islamic heritage within Yemen. Yet deciphering the text poses theological quandaries surrounding Quranic tradition.
Voynich ManuscriptJul 10, 2022
How Dardistan became one of the most multilingual places on Earth | Aeon EssaysJul 7, 2022
At the crossroads of south and central Asia lies one of the world’s most multilingual places, with songs and poetry to match
Is Music Universal?Jul 5, 2022
From a neurological and evolutionary perspective, music is fascinating. There seems to be a deeply rooted biological appreciation for tonality, rhythm, and melody. Not only can people find certain sequences of sounds to be pleasurable, they can powerfully evoke emotions. Music can be happy, sad, peaceful, foreboding, energetic or comical. Why is this? Music is
The History of the Singular 'They'Jul 5, 2022
The singular form of 'they' has been endorsed by writers like Jane Austen and William Shakespeare.
Hacker NewsJul 4, 2022
Researchers at MIT are investigating the brain of a woman, known by her initials EG, with a missing temporal lobe.
Lost Languages Discovered in One of the World's Oldest Continuously Run LibrariesJul 3, 2022
The centuries-old texts were erased, and then written over, by monks at Saint Catherine’s Monastery in Egypt
Ultimate TermsJun 25, 2022
There are words which have special meaning within each culture and carry power where they are used.
T-LEAF: Taxonomy Learning and EvaluAtion FrameworkJun 24, 2022
How we applied qualitative learning, human labeling and machine learning to iteratively develop Airbnb’s Community Support Taxonomy.
What Klingon and Other Constructed Languages RevealJun 22, 2022
Christine Schreyer is a linguistic anthropologist who researches the people who invent new tongues and seek to sustain ancient ones.
I Learned to Speak Four Languages in a Few Years: Here's HowJun 22, 2022
Lifehacker reader Gabriel Wyner was tasked with learning four languages in the past few years for his career as an opera singer, and in the process la
Mapping How to Laugh Online in Different LanguagesJun 22, 2022
In this map of laughter around the world you will be able to see how haha is written in different countries depending on their languages.
The Strange and Secret Ways That Animals Perceive the WorldJun 11, 2022
Nonhuman creatures have senses that we’re just beginning to fathom. What would they tell us if we could only understand them?
Lakota elders helped a white man preserve their language. Then he tried to sell it back to them.Jun 10, 2022
“No matter how it was collected, where it was collected, when it was collected, our language belongs to us," said Ray Taken Alive, a Lakota teacher.
Why is English so weirdly different from other languages? | Aeon EssaysJun 8, 2022
No, English isn’t uniquely vibrant or mighty or adaptable. But it really is weirder than pretty much every other language
With ‘The Far Side,’ Gary Larson Pioneered the Art of the MemeJun 5, 2022
There couldn’t be a ‘Is This a Pigeon?’ without a ‘Beware of Doug’.
The Mind-Expanding Ideas of Andy ClarkMay 30, 2022
The tools we use to help us think—from language to smartphones—may be part of thought itself.
What's the funniest name you've heard someone call an object when they couldn't remember its actual name?May 28, 2022
24K votes, 10K comments. 49M subscribers in the AskReddit community. r/AskReddit is the place to ask and answer thought-provoking questions.
"Close Enough" Words for Things You Can't RememberMay 28, 2022
Have you ever had a brain fart and couldn't remember some common word or term that you needed to use? You can often get the point across by using whatever words might be close. That's how a peacock becomes a "disco chicken," or a cow can be called a "moo beast." In an AskReddit thread, people tell funny stories of folks communicating the best they can when the exact word escapes them. Couldn't remember groomsmen, went with dudesmaids instead.I forgot the word for ‘exterminator’ so I used...
Handy Mnemonics: The Five-Fingered Memory MachineApr 28, 2022
Before humans stored memories as zeroes and ones, we turned to digital devices of another kind — preserving knowledge on the surface of fingers and palms. Kensy Cooperrider leads us through a millennium of “hand mnemonics” and the variety of techniques practised by Buddhist monks, Latin linguists, and Renaissance musicians for remembering what might otherwise elude the mind.
The Endgames of Bad Faith CommunicationApr 13, 2022
MIT scans brain of hyperpolyglot Vaughn Smith, who speaks 24 languages - WaApr 6, 2022
In a city where diplomats and embassies abound, where interpreters can command six-figure salaries, where language proficiency is résumé rocket fuel, Vaughn Smith was a savant with a secret.
Is Geometry a Language That Only Humans Know? (Published 2022)Apr 3, 2022
Neuroscientists are exploring whether shapes like squares and rectangles — and our ability to recognize them — are part of what makes our species special.
Why People Hate or Love the Sound of Certain WordsMar 19, 2022
Is there a connection between sound and meaning?
https://www.dataisnature.com/?p=596Mar 16, 2022
How The Inca Used Knots To Tell StoriesMar 14, 2022
The Inca are most often remembered not for what they had but for what they didn’t have: the wheel, iron, a written language. This third lack has given rise to a paradox, the Inca paradox. Could it …
What Makes a Great Opening Line?Mar 14, 2022
Maybe it has happened to you: a stranger catches your eye while you peruse the plant identification section of the library, or wander a mossy hillock speckled with Amanita bisporigera, or shuffle a…
5 Languages on the Brink of Extinction That You Can Learn OnlineMar 14, 2022
5 endangered languages you can learn via Duolingo, Memrise, and online platforms like Hawaiian, Yiddish, Cornish, Greenlandic, and Navajo.
Why Are Letters Shaped the Way They Are?Feb 20, 2022
Linguistic games and research are revealing a hidden connection between what words look and sound like, and what they mean.
The Unusual Language That Linguists Thought Couldn’t ExistFeb 20, 2022
In most languages, sounds can be re-arranged into any number of combinations. Not so in Al-Sayyid Bedouin Sign Language.Brian Goodman via Shutterstock Languages, like human bodies, come in a variety of shapes—but only to a point. Just as people don’t sprout multiple heads, languages tend to veer away from certain forms that might spring from […]
In the beginning was the word, and the word was embodied | Aeon EssaysFeb 20, 2022
A special class of vivid, textural words defies linguistic theory: could ‘ideophones’ unlock the secrets of humans’ first utterances?
Some Rules of Language are Wired in the BrainFeb 20, 2022
In fascinating study involving synesthesia, people make good guesses at meanings of foreign words
An ancient language has defied decryption for 100 years. Can AI crack the cFeb 13, 2022
Machine learning can translate between two known languages, but could it ever decipher those that remain a mystery to us?
IndusFeb 11, 2022
(PDF) Text is not the enemy: How illiterates' use their mobile phonesFeb 10, 2022
PDF | Despite 800 million illiterate people worldwide little research has aimed at understanding how they use and appropriate mobile phones. We... | Find, read and cite all the research you need on ResearchGate
A very short introduction to the undeciphered Aegean writing systemsFeb 1, 2022
Every so often a news article will make the rounds of the internet – or, for that matter, a paper will be published in an academic journal – presenting a new ‘decipherment’ …
The language rules we know – but don’t know we knowJan 31, 2022
Mark Forsyth tasted internet fame this week when a passage from a book he wrote went viral. He explains more language secrets that native speakers know without knowing.
Why Japanese Web Design Is So… DifferentJan 29, 2022
When 0748 Means “Go Die": The Secret Messages Inside Chinese URLsJan 17, 2022
URLs like 4008-517-517.com mean a lot more than they appear.
10 Tips for Building a Visual LanguageJan 17, 2022
A visual language is just like any other form of communication. Elements from color to style to type of photos or illustrations establish what a brand or company is. A visual language includes both the written and spoken elements of a website or brand, as well as every design technique, photo,…
How the Alien Languages in Foundation Were CreatedJan 16, 2022
“It was a matter of really reading between the lines of the script.”
Everyday Sayings ExplainedJan 12, 2022
The origins, meaning, and authors behind 50 popular phrases and sayings.
To learn Klingon or Esperanto: What invented languages can teach usJan 1, 2022
NuqneH! Saluton! A linguistic anthropologist (and creator of the Kryptonian language, among others) studies the people who invent new tongues.
From respair to cacklefart – the joy of reclaiming long-lost positive words | Susie DentDec 28, 2021
We have been bombarded with negativity recently; but the English language is a treasure trove of joyous vocabulary, says Susie Dent, a lexicographer and etymologist
The Invention of Chinese | History TodayDec 12, 2021
7 Powerful Habits of People With High Emotional IntelligenceDec 10, 2021
You don’t get where you want to be without practice. Here’s how and what to practice.
Why more people are saying 'y'all' - BBC WorklifeNov 28, 2021
The distinctive Americanism is making its way across the world and becoming an unlikely favourite catch-all term.
Fifty Percent of Facebook Messenger's Total Voice Traffic Comes from CambodNov 17, 2021
In 2018, the team at Facebook had a puzzle on their hands. Cambodian users accounted for nearly 50% of all global traffic for Messenger's voice function, but no one at the company knew why, according to documents released by whistleblower Frances Haugen. From a report: One employee suggested running...
How to Memorize the Un-MemorizableNov 9, 2021
Although I’ve successfully learned the language of mathematics, it has always frustrated me that I couldn’t master those more unpredictable languages like French or Russian that I’d tried to learn …
How to Revive a Dead Language - JSTOR DailyNov 3, 2021
Although it was the language of sacred texts and ritual, modern Hebrew wasn't spoken in conversation till the late nineteenth century.
Are We on the Verge of Chatting with Whales? | Hakai MagazineOct 30, 2021
An ambitious project is attempting to interpret sperm whale clicks with artificial intelligence, then talk back to them.
The Mystery of People Who Speak Dozens of Languages | The New YorkerSep 18, 2021
What can hyperpolyglots teach the rest of us?
The hand gestures that last longer than spoken languagesAug 19, 2021
Using hand gestures might feel like an intuitive way to communicate across language barriers, but their meaning can change, and there are few universal signs that everyone agrees on.
Tips From a Sign Language Interpreter for Overcoming Language BarriersJul 18, 2021
An ASL interpreter shares some travel-friendly tips and techniques that she’s learned from the Deaf community, the real masters of cross-cultural communication.
What Did Ancient Languages Sound Like?Jul 11, 2021
NICHOLAS SWIFT Can we really hear the ancients speak?
I left high school with no foreign language skills. Now I’m fluent in fiveJul 3, 2021
There I was, a clumsy, decaf-drinking 25-year-old British man in a swanky Buenos Aires radio station, being ridiculed by Viggo Mortensen. But even as he laid into me — his jokes later leading to my…
How to Spot a CultJul 2, 2021
According to Amanda Montell’s new book, “Cultish,” the jargon and technical language of fanaticism is surprisingly common.
Why the French rarely say 'I love you'Jun 28, 2021
It likely explains why the French have the reputation of being so demonstrative about love – because if you can't really say it, you have to show it.
Fairy Tales Could Be Older Than You Ever ImaginedJun 25, 2021
Jack may have been climbing that beanstalk for more than 5,000 years
Africa’s ancient scripts counter European ideas of literacy | Aeon EssaysJun 21, 2021
European ideas of African illiteracy are persistent, prejudiced and, as the story of Libyc script shows, entirely wrong
Online Etymology Dictionary | Origin, history and meaning of English wordsJun 12, 2021
The online etymology dictionary (etymonline) is the internet's go-to source for quick and reliable accounts of the origin and history of English words, phrases, and idioms. It is professional enough to satisfy academic standards, but accessible enough to be used by anyone.
The Elephant EthogramJun 10, 2021
Introduces the elephant ethogram: A Library of African Elephant Behavior
The First 'Google Translate' For Elephants DebutsJun 10, 2021
An anonymous reader quotes a report from Scientific American: Elephants possess an incredibly rich repertoire of communication techniques, including hundreds of calls and gestures that convey specific meanings and can change depending on the context. Different elephant populations also exhibit cultu...
How to Save an Ancient Language Before It Disappears ForeverJun 10, 2021
For decades, Taiwan’s minority Hakka people were banned from teaching their native language. Now an unlikely coalition of aging academics and millennial radio DJs are doing all they can to keep it alive.
LSAJun 7, 2021
Andy Weir’s Project Hail Mary and the soft, squishy science of languageMay 30, 2021
A deep dive into xenolinguistics, pragmatics, the cooperative principle, and Noam Chomsky!
Why we remember more by reading – especially print – than from audio or videoMay 12, 2021
People tend to think of digital media as entertainment, so they devote less mental effort than when they’re reading a printed book.
Etymology Blog - THE ETYMOLOGY NERDMay 11, 2021
The verb decide has deadly interesting origins. Though it came through Middle English deciden , Old French decider , and Latin decidere , you can tell that there's the prefix de- , kind...
What the sound of your name says about you - BBC FutureMay 3, 2021
The way your name or a word rolls off the tongue can have some surprising effects on the judgements we make.
The Story of One Whale Who Tried to Bridge the Linguistic Divide Between AnMay 2, 2021
While captive in a Navy program, a beluga whale named Noc began to mimic human speech. What was behind his attempt to talk to us?
How the N-Word Became UnsayableMay 1, 2021
The evolution of the slur's use — and the taboo around it — tells a story about what our culture values.
How to sound more attractiveApr 30, 2021
Many nationalities recognise that there is a tone of voice that is instantly alluring, but do some speakers have an unfair advantage?
The Challenges of Animal TranslationApr 28, 2021
Artificial intelligence may help us decode animalese. But how much will we really be able to understand?
The 101 Greatest Endings in Movies HistoryApr 22, 2021
Good finales offer catharsis. The best deny us closure altogether.
Groundbreaking Effort Launched To Decode Whale LanguageApr 22, 2021
In what may be the largest interspecies communication effort in history, scientists plan to use machine learning to try to decode what Sperm whales say to one another. National Geographic reports: [Sperm whales "speak" in clicks, which they make in rhythmic series called codas. Shane Gero, a Canadi...
The Glossary of HappinessApr 20, 2021
Could understanding other cultures’ concepts of joy and well-being help us reshape our own?
How Did a Self-Taught Linguist Come to Own an Indigenous Language?Apr 18, 2021
The Penobscot language was spoken by almost no one when Frank Siebert set about trying to preserve it. The people of Indian Island are still reckoning with his legacy.
Arabic NLP: Unique Challenges and Their SolutionsApr 8, 2021
Pre-processing Arabic text for machine-learning using the camel-tools Python package
How to learn a language (and stick at it) | Psyche GuidesApr 3, 2021
Forget about fluency and how languages are taught at school: as an adult learner you can take a whole new approach
CABINET / Language at the End of the WorldMar 14, 2021
The undecipherable rongorongo script of Easter Island
IdiomsOnline - Your Free Idioms DictionaryMar 14, 2021
Your Free Idioms Dictionary Idioms are phrases whose meanings cannot easily be known from the meanings of each word in the phrase. They usually have a fixed form that resists being altered without changing the meaning of the phrase. While idioms are quite transparent to native speakers of a languag
The Made-Up Language That Accidentally Became Real: The Story of KlingonFeb 23, 2021
The Klingon language remains relevant to today’s culture and continues to evolve in surprising ways. (Finally, you must be thinking, some Star Trek content.)
Thirteen Fascinating and Untranslatable WordsFeb 7, 2021
Handy words from other languages with no English equivalent.
Essential Japanese: The Mental Model [pdf]Feb 3, 2021
Essentials Guide to Japanese: The Mental Model by Japanese Complete. Master Japanese, get started for free.
The mind-blowing secret of the Armenian alphabet - PeopleOfArJan 30, 2021
The Armenian alphabet is a true masterpiece of its era and knows many secrets. However, there is one in particular that still blows my mind. As some people know the Armenian alphabet was (re)invented in 405 AD by the Armenian linguist and theologian Mesrop Mashtots with the help of the patriarch Sahak Partev and the […]
Talking out loud to yourself is a technology for thinking | Psyche IdeasDec 29, 2020
Talking out loud to oneself is a technology for thinking that allows us to clarify and sharpen our approach to a problem
Reading, That Strange and Uniquely Human ThingDec 28, 2020
How we evolved to read is a story of one creative species.
Linguistic Fundamentals for Natural Language Processing: 100 Essentials froDec 18, 2020
Algorithms for text analytics must model how language works to incorporate meaning in language—and so do the people deploying these algorithms. Bender & Lascarides 2019 is an accessible overview of what the field of linguistics can teach NLP about how meaning is encoded in human languages.
12 Old Words That Survived by Getting Fossilized in IdiomsJun 11, 2020
Here are a few lucky words that have been preserved in common English expressions.
Free Personalized online French lessons - Frantastique.comFeb 19, 2020
Frantastique, the daily French workout. Personalized online Frantastiquelessons: all levels, all users. Free test.
The Secret Language of Signs (2010)Feb 16, 2020
Three years ago today, the 33 members of the Bluffton University baseball team boarded a bus at their campus in Bluffton, Ohio. It was early evening, a ...
The Family That Couldn’t Say HippopotamusFeb 5, 2020
The origins of language are not what inherited disorders seemed to suggest.
This is How Tiny Changes in the Words You Hear Impact Your ThinkingNov 6, 2019
In a fascinating look at language, a professor lays out how political parties can sway supporters with tiny tweaks in word choice.
How ‘Embeddings’ Encode What Words Mean — Sort OfSep 24, 2019
Machines work with words by embedding their relationships with other words in a string of numbers.
Probabilistic language understandingAug 29, 2019
Why 40% of Vietnamese People Have the Same Last NameAug 2, 2019
Everyone knows a Nguyen, but how did that come to be?
How Capicola Became Gabagool: The Italian New Jersey Accent, ExplainedJul 27, 2019
A linguistic exploration.
Why Arabic Is Terrific (Idle Words)Jul 22, 2019
How to Learn Chinese: 8 Things I Wish I Had Known Before I Started - Scott H YoungApr 2, 2019
Eight tips I wish I had known when I started. Learning Chinese is hard, but if you take the right approach, you'll be speaking, reading and writing soon!
The Hobo Code: An Introduction to the Hieroglyphic Language of Early 1900sAug 23, 2018
Many of us now use the word hobo to refer to any homeless individual, but back in the America of the late 19th and early 20th century, to be a hobo meant something more.
Optical Scanning Technology Lets Researchers Recover Lost Indigenous Languages from Old Wax Cylinder RecordingsJun 13, 2018
He did not, visionary though he was, conceive of one extraordinary use to which wax cylinders might be put—the recovery or reconstruction of extinct and endangered indigenous languages and cultures in California.
Wolfram Blog: News, Views and Insights from WolframFeb 25, 2018
Livecoding event with Christopher Wolfram on the process he went through and the code generated in building the alien language for the movie Arrival.
Piecing Together an Ancient Epic Was Slow Work. Until A.I. Got Involved.Aug 24, 2012
Scholars have struggled to identify fragments of the epic of Gilgamesh — one of the world’s oldest literary texts. Now A.I. has brought an “extreme acceleration” to the field.
Eslei! How a new generation is reinventing SpanglishOct 24, 2005
When Spanish meets English, new dialects emerge – giving us real-time insight into language evolution, linguists say.
laplace
Introduction to Laplace transformsFeb 15, 2026
A Laplace transform is a type of integral transform that acts on functions.
latex
Typst: a possible LaTeX replacementSep 27, 2025
Typst is a program for document typesetting. It is especially well-suited to technical material [...]
LaTeX Cookbook – Collection of LaTeX recipesJan 19, 2023
Render mathematical expressions in Markdown · GitHub ChangelogMay 28, 2022
Render mathematical expressions in Markdown
Creating diagrams - GitHub DocsMay 20, 2022
Create diagrams to convey information through charts and graphs
How to write LaTeX without writing LaTeXDec 27, 2021
I love the look of LaTeX but hate the experience of writing in LaTeX, at least compared to Markdown. Luckily, Pandoc can convert Markdown files to PDFs using a LaTeX engine as the renderer, and includes a custom Markdown specification that can fill almost all my LaTeX needs. First, let’s talk about where Pandoc Markdown falls short: No custom LaTeX style guides (although citation style files are supported) No Section Numbering There is, thanks to naruhodo on Hacker News for the correction Referencing labels doesn’t work well (Supposedly the pandoc-crossref filter fixes this but I couldn’t get it to work) Don’t even bother with complex page layouts or precise figure placements This might be a deal breaker for some, but for others who are writing lots of documents (such as students), this may not be. Now for the benefits:
Learn How to Write Markdown & LaTeX in The Jupyter Notebook | by Khelifi AhMar 22, 2021
Not only Jupyter, Google Colab, R Markdown, and much more.
Learnlatex.org: A place to learn LaTeX onlineMar 22, 2021
laughter
Comedy on 'prescription': Why performing stand-up is good for your healthDec 14, 2025
In the UK, new schemes to support mental health are introducing to people an unexpected skill: stand-up comedy.
Why Are Kids So Funny?Sep 7, 2025
Joshua Rothman on what the early emergence of humor in children’s lives suggests about human nature.
For Henri Bergson, laughter is what keeps us elastic and free | Aeon EssaysAug 29, 2025
For philosopher Henri Bergson, laughter solves a serious human conundrum: how to keep our minds and social lives elastic
How to laugh more | Psyche GuidesMar 19, 2021
You don’t have to wait to be amused, there are ways to train yourself to enjoy the ‘cheap medicine’ of laughter every day
lda
Understanding Latent Dirichlet Allocation (LDA) — A Data Scientist’s GuideFeb 22, 2024
LDA Convergence Explained with a Dog Pedigree Model
Understanding Latent Dirichlet Allocation (LDA) — A Data Scientist’s GuideFeb 11, 2024
LDA explained with a dog pedigree model
What do countries talk about at the UN General Debate — Topic modelings using LDA.Nov 23, 2022
The intuition behind LDA and its limitations, along with python implementation using Gensim.
Topic Modeling with LDA IntroductionDec 27, 2017
Stay up-to-date on the latest data science and AI news in the worlds of artificial intelligence, machine learning, deep learning, implementation, and more.
leadership
Welcome to the RoomFeb 6, 2026
A lesson in leadership by Satya Nadella When I was Promoted to Technical Fellow, I was “invited to the room”, joining Microsoft’s other Senior Executives. It was really something. Achieving t…
How to build team spirit | Psyche GuidesJan 20, 2026
The glue, or spirit, that binds certain teams is not mystical – you can cultivate it by changing how you work together
Richard Jefferson: These are the 3 best leaders I played with in the NBADec 18, 2025
Richard Jefferson played with more than 100 teammates in his 17-year NBA career. He explains why three leaders stood out above the rest.
The Leadership Test No One Wants: Delivering Bad News Well | Nancy Duarte | MIT Sloan Management ReviewNov 17, 2025
When a situation goes wrong, leaders need to decide whether to fix it, bounce back, shut it down, or move on.
The Power of Being an AmateurSep 3, 2025
Strategically trying something new can help leaders break free from entrenched ways of thinking.
Lessons from U.S. Army Special Ops on Becoming a LeaderAug 19, 2025
How to cultivate initiative, emotional confidence, imagination, and strategic vision.
The Destructive Power of Unbridled OptimismJun 15, 2025
Jonathan Dunnett wrote an article titled The Secret, Destructive Power of Unbridled Optimism.
Is generosity the most underrated leadership skill?Mar 20, 2025
Leadership isn’t about a title or position — it’s about generosity, says organizational expert Joe Davis. Drawing on his extensive experience as a people manager, he shares three essential tips for leaders to unlock the potential of their teams by listening generously, embracing vulnerability and leading with humanity — and shows how it's possible to both earn trust and drive results.
Startup-CTO-Handbook/StartupCTOHandbook.md at main · ZachGoldberg/Startup-CTO-HandbookMar 13, 2025
The Startup CTO's Handbook, a book covering leadership, management and technical topics for leaders of software engineering teams - ZachGoldberg/Startup-CTO-Handbook
When Expressing Gratitude to Employees, Timing MattersNov 29, 2024
Extensive research has indicated the benefits of showing gratitude to those around you, including your colleagues or employees. However, a new study suggests that the timing of these expressions can make a big difference. Through two experiments and an analysis of a top hospital’s intensive care units, researchers found that when you express gratitude to others before they engage in a distressing task it helps counteract some of the negative emotions associated with the task. Expressing gratitude early also makes employees more likely to persist through difficulty and bounce back and be resilient following failure. The authors suggests ways to show gratitude meaningfully and create a culture where your employees feel their work is seen, supported, and valued.
The Uncomfortable Truth: A 3X Founder's Guide to Intellectual HonestyNov 25, 2024
Crossbeam CEO and co-founder Bob Moore shares his tools for quashing biases in pursuit of the truth at every stage of company building.
6 Essential Leadership Skills — and How to Develop ThemOct 18, 2024
The way we work has changed — and so has leadership. Leaders are under new pressures to perform at higher levels and adapt quickly to changing demands. In this article, the author shares advice from three leadership experts and outlines the six skills leaders need to succeed: 1) emotional aperture; 2) adaptive communication; 3) flexible thinking; 4) perspective seeking, taking, and coordinating; 5) strategic disruption skills; and 6) resilient self-awareness. Developing these six key leadership skills isn’t just about your personal growth, it’s about shaping the future of work and inspiring those around you.
How to manage people's behavior- Fast CompanyOct 18, 2024
These two principles are equally powerful and critical to manage behavior, but the order matters.
6 Common Leadership Styles — and How to Decide Which to Use WhenApr 19, 2024
Research suggests that the most effective leaders adapt their style to different circumstances — be it a change in setting, a shift in organizational dynamics, or a turn in the business cycle. But what if you feel like you’re not equipped to take on a new and different leadership style — let alone more than one? In this article, the author outlines the six leadership styles Daniel Goleman first introduced in his 2000 HBR article, “Leadership That Gets Results,” and explains when to use each one. The good news is that personality is not destiny. Even if you’re naturally introverted or you tend to be driven by data and analysis rather than emotion, you can still learn how to adapt different leadership styles to organize, motivate, and direct your team.
How to Talk to Your Team About a Decision You Disagree WithFeb 7, 2024
When you’re part of a company’s management structure, there will be moments when you’ll have to represent a decision your bosses made that you don’t agree with to your team. Carrying the proverbial flag on behalf of the powers-that-be won’t feel good, but that’s part of the job. Barring a decision or action that is immoral, illegal, or unethical, standing behind decisions that don’t go your way is one of the most challenging things you’ll have to do as a leader. Doing so effectively requires thoughtful preparation. Here are six strategies to use when you have to convey a decision you don’t agree with.
15 Quotes on the Unparalleled Power of ExampleFeb 5, 2024
Discover the power of examples in shaping our lives. Explore quotes on example and how they inspire us to reach new heights.
Currencies (On Motivating Different People) (Ed Batista)Oct 1, 2023
A theme in my practice is the leader who's seeking to increase employee motivation. In this context it's important to bear in mind the work of Frederick Herzberg, a 20th century psychologist who had a profound influence on our understanding...
5 Types of Stories Leaders Need to TellSep 22, 2023
Storytelling is an important leadership skill, and executives who want to succeed should master five types of narrative: Vision stories, which inspire a shared one; values stories that model the way; action stories that spark progress and change; teaching stories that transmit knowledge and skills to others; and trust stories that help people understand, connect with, and believe in you.
Talking About a Difficult Decision — When You Can’t Share All the DetailsAug 12, 2023
When you have to communicate a difficult organizational decision to employees, it’s hard to know how much information to provide when you can’t be fully transparent yet. Saying nothing can undermine people’s trust in your motives and compassion, whereas saying too much can leave people feeling overwhelmed and vulnerable as they struggle to process the information and implications. Striking the right balance between these two extremes is a tricky exercise for leaders. The author presents five strategies to help you figure out what to say and do when you can’t yet be fully transparent with your employees.
1990 fm 22 100Aug 7, 2023
What Do We Owe Our Teams?Jul 19, 2023
Many of my discussions with product leaders (CPOs, VPs and others who manage teams of product folks) are about the substance of product management: portfolios, competing stakeholders, pricing & packaging, tarot cards as a revenue forecasting model. Last week, though, in my product leadership workshop, we had an extended discussion about
What working as a military psychologist taught me about coaching peopleMay 31, 2023
3 tips for coaching people, from a former military psychologist
Carl Braun on Communicating Like a Grown-UpMar 30, 2023
Industrial genius Carl Braun believed that clear thinking and clear communication go hand in hand. Here the guide on writing productively to get things done.
‘The first year is the hardest’: How college football coaches get their new teams to buy inMar 27, 2023
Some coaching transitions do the unthinkable, like Sonny Dykes and TCU. Others flounder, like Scott Frost and Nebraska. How, and why?
What Is Psychological Safety?Feb 16, 2023
What exactly is psychological safety? It’s a term that’s used a lot but is often misunderstood. In this piece, the author answers the following questions with input from Harvard Business School professor Amy Edmondson, who coined the phrase “team psychological safety”: 1) What is psychological safety? 2) Why is psychological safety important? 3) How has the idea evolved? 4) How do you know if your team has it? 5) How do you create psychological safety? 6) What are common misconceptions?
High Variance ManagementFeb 7, 2023
How should you manage a team that is trying to achieve results out of the ordinary?
GitHub - kuchin/awesome-cto: A curated and opinionated list of resources foDec 10, 2022
A curated and opinionated list of resources for Chief Technology Officers, with the emphasis on startups - kuchin/awesome-cto
How Great Leaders CommunicateNov 23, 2022
Transformational leaders are exceptional communicators. In this piece, the author outlines four communication strategies to help motivate and inspire your team: 1) Use short words to talk about hard things. 2) Choose sticky metaphors to reinforce key concepts. 3) Humanize data to create value. 4). Make mission your mantra to align teams.
Does your company suffer from broken culture syndrome? | MIT SloanOct 30, 2022
Whether it’s caused by culture clash, cultural inertia, or total toxic collapse, broken culture syndrome can sink an organization. But there’s a way out.
How to Encourage Your Team to Give You Honest FeedbackOct 29, 2022
Far too often, team members expect to be given downward feedback, but unless they’re explicitly invited to offer upward feedback, they won’t know that it’s even an option. As a manager, it’s your job to ask your employees for feedback on your own performance. How else will you know what you should keep doing and what you should be doing differently? Nevertheless, you might find that your direct reports are reluctant to give you the feedback you need to improve, or even sustain, what’s working. This article addresses five common barriers that managers face in getting helpful feedback from direct reports, and how to address them so that you can gain the insights you need.
Learnings of a CEO: Wade Foster, Zapier | Y CombinatorAug 17, 2022
Today, Zapier automates work by connecting with over 5,000 apps. The company has been profitable since 2014 and is valued at $5B – with 700 employees working remotely. Wade, Zapier CEO, shared his learnings growing into the role of a growth-stage CEO.
MediumJul 19, 2022
How Great Leaders Respond to Negative Criticism in the Digital AgeJul 19, 2022
Corporate leadership today is more public than ever before thanks to digital communication and the web. The status quo has been upended by the ease with
Tribal Leadership: The Key To Building Great TeamsJul 19, 2022
Have you ever wondered about internal organization dynamics and why some groups of people (who aren’t on the same team) are more successful than others? Why different “tribes” inside the organization seem to be at war with one another lowering performance in increasing politics? Why certain groups of people never seem to do anything? Or why …
MediumJul 19, 2022
42 Rules to Lead by from the Man Who Defined Google's Product StrategyJul 19, 2022
Former Google SVP of Products Jonathan Rosenberg on the quintessential lessons every leader needs to learn.
How to Say "No" to Your CEO's Random Product IdeasJul 19, 2022
The reality is that you will never prioritize the CEO’s "great" new idea. Here's how to let your strategy say "no" for you.
Stop Overcomplicating It: The Simple Guidebook to Upping Your Management GameJul 18, 2022
Russ Laraway wades through all of the competing opinions, complex frameworks and advice out there on how to be a better manager, creating a simple, data-backed leadership toolkit.
CEOs Don't Come Pre-Made, Authentic Leadership Has To Be Learned | TechCrunchJul 18, 2022
Editor’s note: Scott Weiss is a partner at Andreessen Horowitz and the former co-founder and CEO of IronPort Systems, which was acquired by Cisco in 2007. An approachable and authentic CEO is essential to fostering a high-performance, open communications culture.
Managing Two People Who Hate Each OtherJul 18, 2022
How to minimize the drama and keep your team on track.
8 common traits of uncommon product leadersJul 18, 2022
I’ve found the following to be common (and not easily taught) in people whose product skills I admire.
Take Your Team From Worst To First: Leadership Lessons From The Boston Red SoxJul 18, 2022
John Farrell took his team from the bottom of their division last year to the 2013 World Series with a set of tactics every manager should learn.
Mentors Are The Secret Weapons Of Successful Startups | TechCrunchJul 18, 2022
“I’ve probably revised this investor pitch deck 200 times,” a founder told me recently. She’d met with more than 50 potential investors before closing a seed round last month. This might sound excessive to some, but her experience is not unusual. Entrepreneurs often spend hundreds of hours raising funds from angel and venture capital investors. While these activities are clearly important, analysis of new data on startups suggests that founders should also dedicate significant time to something that many people overlook: recruiting great mentors. This simple strategy can increase a company’s odds of success more than almost anything else.
LappleApple/awesome-leading-and-managing: Awesome List of resources on leading people and being a manager. Geared toward tech, but potentially useful to anyone.Jul 18, 2022
Awesome List of resources on leading people and being a manager. Geared toward tech, but potentially useful to anyone. - LappleApple/awesome-leading-and-managing
4 Leadership Types That Can Destroy a Perfectly Good StrategyJul 18, 2022
The home of Process Excellence covers topics from Business Process Management (BPM) to Robotic Process Automation (RPA), AI, Lean Six Sigma and more. Latest news, freshest insight and upcoming events and webinars.
Real Leaders Don’t Do Focus GroupsJul 18, 2022
Apple is famous for not engaging in the focus-grouping that defines most business product and marketing strategy. Which is partly why Apples products and advertising are so insanely great. They have the courage of their own convictions, instead of the opinions of everyone else’s whims. On the subject, Steve Jobs loves to quote Henry Ford […]
Moving Your Agenda | The Leading Blog: A Leadership BlogJul 18, 2022
Leadership Now is a leading source for leadership development and analysis. We believe that anyone can make a difference by leading from where they are.
How An Ancient Chinese War General Would Run Your Startup Better - MattermarkJul 18, 2022
"The success of your startup is determined before you ship a single line of code." Okay, you’re right, Sun Tzu, the ancient Chinese war general and author
Why Should Anyone Be Led by You?Jul 18, 2022
We all know that leaders need vision and energy, but after an exhaustive review of the most influential theories on leadership–as well as workshops with thousands of leaders and aspiring leaders–the authors learned that great leaders also share four unexpected qualities. The first quality of exceptional leaders is that they selectively reveal their weaknesses (weaknesses, not fatal flaws). Doing so lets employees see that they are approachable. It builds an atmosphere of trust and helps galvanize commitment. The second quality of inspirational leaders is their heavy reliance on intuition to gauge the appropriate timing and course of their actions. Such leaders are good “situation sensors”–they can sense what’s going on without having things spelled out for them. Managing employees with “tough empathy” is the third quality of exceptional leadership. Tough empathy means giving people what they need, not what they want. Leaders must empathize passionately and realistically with employees, care intensely about the work they do, and be straightforward with them. The fourth quality of top-notch leaders is that they capitalize on their differences. They use what’s unique about themselves to create a social distance and to signal separateness, which in turn motivates employees to perform better. All four qualities are necessary for inspirational leadership, but they cannot be used mechanically; they must be mixed and matched to meet the demands of particular situations. Most important, however, is that the qualities encourage authenticity among leaders. To be a true leader, the authors advise, “Be yourself–more–with skill.”
Google’s Quest to Build a Better Boss (Published 2011)Jul 18, 2022
A company study found that a manager’s technical skills were far less valued by employees than people skills.
Lincoln on LeadershipJul 18, 2022
Fight the Good Fight The probability that we may fall in the struggle ought not to deter us from the support of a cause we believe to be just. Try Honey Before Vinegar If you would win a man to your cause, first convince him that you are his sincere friend. On the contrary … …
https://www.fastcompany.com/3016115/leadership-now/7-tough-leadership-lessons-from-a-navy-seal-commanderJul 18, 2022
The Ten Golden Rules of Leadership: Classical Wisdom for Modern LeadersJul 18, 2022
The Ten Golden Rules of Leadership explores the classical figures to determine the ten crucial axioms of leadership. Rule 1. Know Theyself. Rule 2 ...
Startup Best Practices 1 - Situational Management by @ttunguzJul 18, 2022
In response to yesterday’s post on management design patterns, many readers asked for examples of best practices. So I’m going to write about the management best practices I have been taught and I have observed in startups. This is the first post of that series. The first management technique is called Situational Management, one that my wife, a terrific manager at Google, taught me. A manager’s most important function in a startup is to motivate employees to accomplish the business’s goal.
What Marissa Mayer Brought to Yahoo That Can’t Be Bought or Sold | HackerNoonJul 5, 2022
In the least surprising news of 2016, Yahoo is selling its core business to Verizon for a sad $5 billion. Everyone knew this was coming — but for some reason, the headlines keep blaming Marissa.
Top 10 Product Leadership LessonsJun 25, 2022
On Sunday, I was fortunate enough to give a talk at the 9th annual Harvard Business School Entrepreneurship Conference. I’m trying to be better about posting the slides from these talks as t…
An Exercise to Help Your Team Feel More Comfortable with ConflictJun 25, 2022
The ability to get issues on the table and work through them constructively is critical to having a healthy culture. Managers can normalize productive conflict on your team by using an exercise to map out the unique value of each role and the tensions that should exist among them. Draw a circle and divide that circle into enough wedges to represent each role on your team. For each role, ask: What is the unique value of this role on this team? On which stakeholders is this role focused? What is the most common tension this role puts on team discussions? Answer those questions for each member of the team, filling in the wedges with the answers. As you go, emphasize how the different roles are supposed to be in tension with one another. With heightened awareness and a shared language, your team will start to realize that much of what they have been interpreting as interpersonal friction has actually been perfectly healthy role-based tension.
Small Actions Make Great LeadersJun 22, 2022
Leadership has traditionally been taught as a set of larger actions, such as having a difficult conversation or coaching someone. In reality, leading well is an integrated activity, in which one is doing many things simultaneously. One way to learn to do this better is to think about leadership as a series of small actions that are practiced, then carefully sequenced and interwoven during interactions. For instance, instead of thinking of something as a “difficult conversation,” a leader might aim to disarm, then show appreciation, then appeal to values. Research identifies 25 such actions, and learning to implement them in the right circumstances can help one become a better leader.
Leading Cross-Functional TeamsJun 7, 2022
This is the legendary presentation about cross-functional teams from Ken Norton that made donuts and product management synonymous.
How to harness employees’ emotional energyJun 7, 2022
Fuel success by linking a company’s strategic goals to the reasons people are proud to work there.
What It Really Means to Be Successful: Our Favorite ReadsMay 19, 2022
There’s no “right way” to do it.
Top Performers Have a Superpower: HappinessFeb 20, 2022
Employee well-being and happiness are surprisingly powerful predictors of performance.
5 Questions Every Manager Needs to Ask Their Direct ReportsJan 25, 2022
If you’re worried that your employees are eyeing the door, it’s time to start having some important career-defining conversations. In this piece, executive coach Susan Peppercorn outlines five questions to start asking your direct reports so that you can get a better sense of how they’re feeling about their positions: 1) How would you like to grow within this organization? 2) Do you feel a sense of purpose in your job? 3) What do you need from me to do your best work? 4) What are we currently not doing as a company that you feel we should do? 5) Do you have the opportunity to do what you do best every day? When managers make checking in with these five questions a regular part of how they interact with their employees, it helps ensure that people feel seen and valued. And when managers help individuals on their teams feel that way, they’re more likely to be rewarded by employees who become advocates for the department and organization, no matter how long they stay.
Molding Yourself into a Leader, Part 1 :: UXmattersJan 17, 2022
Web magazine about user experience matters, providing insights and inspiration for the user experience community
The Secret Ingredient of Thriving Companies? Human Magic.Jan 15, 2022
The traditional corporate approach to motivating people has been a combination of carrots and sticks: a system of financial incentives designed to mobilize everyone around a plan designed by a few smart people at the top. Multiple studies have confirmed that, for any work involving cognitive or creative skills, financial rewards do not drive motivation and performance. So, what does? According to former Best Buy CEO Hubert Joly, it takes several mutually reinforcing elements to create an environment that unleashes the kind of human magic necessary for a company purpose to take root and flourish. He presents six ingredients to create your company’s unique recipe for human magic.
How to Give the Gift of Generative ThinkingDec 13, 2021
If you want to help people, don’t give them advice. Do this instead.
The Highest Paid Person's OpinionNov 13, 2021
Every company makes decisions based on the highest paid person's opinion. It turns out it's just a hypothesis. Here's how to tame it.
The Founder’s Guide to Discipline: Lessons from Front’s Mathilde CollinOct 29, 2021
Front's CEO and co-founder Mathilde Collin shares why a founder’s discipline matters more than vision, unveiling her own best practices and templates for communication, time management, fundraising and team building.
‘Give away your Legos’ and other commandments for scaling startupsOct 16, 2021
Molly Graham helped forge a work culture at Facebook that's withstood huge amounts of growth. Today, she's something of a rapid scaling expert. Here's the key to doing it right, she says.
The Skill of Org DesignOct 8, 2021
Building effective organisations is a remarkably useful, if rare, skill. This is what it looks like, what it consists of, and how to tell if someone has it.
The Ultimate Guide to Running Executive Meetings — 25 Tips from Top StartupOct 1, 2021
Frustrated with your Executive team meetings? We tapped 25 top leaders from the startup C-Suite to share their tested tips, from getting started with an executive team to crafting the agenda and tracking success. Whether you're a first-time CEO or seasoned startup leader, there are plenty of new ideas to try from folks at Superhuman, Lattice, Asana and more.
How to Deliver Constructive Feedback in Difficult SituationsAug 22, 2021
“We are dangerous when we are not conscious of our responsibility for how we behave, think, and feel.”―Marshall Rosenberg, As a founder, my biggest regrets revolve around not having difficu…
Find the Right Words to Inspire Your TeamApr 18, 2021
It’s important to understand that when you, as a leader, communicate with your team, using weaker words weakens your message and blunts your ability to inspire people. It’s not enough to just throw thoughts out there and hope for the best. You need to actively recommend ideas and assert their worthiness in all of your communications. For example, consider these “power words”: “I’m proposing (not “sharing”) an idea that will make our process more efficient.” “I’m suggesting (not “sharing”) a new logo that better conveys our brand message.” “I’m recommending (not “sharing”) a campaign to make our workplace more diverse.” Ultimately, audiences respond more actively to big points than to small words, but thoughtful leaders need to assess both, knowing that the more powerfully they come across — even in small ways — the greater impact they have on the people they hope to inspire.
Are You Really Listening?Mar 12, 2021
Senior leaders, particularly CEOs, confront a central paradox in their work: They generally have access to more lines of communication than anybody else, but the information that flows to them is suspect and compromised. Warning signals are tamped down. Key facts are omitted. Data sets are given a positive spin. All of it isolates leaders in a dangerous information bubble. But they can escape that bubble, the authors argue, by working actively to create a more expansive “listening ecosystem.” They first have to learn how to listen actively themselves, without distraction or judgment, purely for comprehension; then they have to create systems and processes all around them that elevate listening to a constant state of hypervigilance. This sort of sustained attention to listening allows leaders to pick up on early signs of both danger and opportunity—and that, in turn, allows them to do their jobs and serve their organizations better. The authors conclude this piece by sharing advice—gleaned from interviews and personal experience—about how leaders can learn to listen better.
Things your manager might not knowMar 2, 2021
What leader(s) over your product career truly changed how you approach prodFeb 19, 2021
I learned from bosses & peers, including some famous peeps like Reed Hastings, Patty McCord, and Dan Rosensweig. But mainly I learned by doing, supercharged by feedback from many "Friends of Gib."
Carl Braun on Communicating Like a Grown-UpJan 30, 2021
Industrial genius Carl Braun believed that clear thinking and clear communication go hand in hand. Here the guide on writing productively to get things done.
What Silicon Valley "Gets" about Software Engineers that Traditional CompanJan 11, 2021
I've worked at various tech companies: from "traditional" shops and consultancies, through an investment bank, to high-growth tech firms. I've also talked with software engineers working at startups, banking, automotive, big tech, and more "traditional" companies. This mix had a healthy sample of Silicon-Valley companies and ones headquartered outside this
How to tackle the monsters holding you back from being a good leader - Fast CompanyJan 8, 2021
"Unconscious leadership happens when we aren't self-aware, which puts fear in the driver's seat."
The Hidden Habits of GeniusDec 18, 2020
Leadership Now is a leading source for leadership development and analysis. We believe that anyone can make a difference by leading from where they are.
Decisiveness is Just as Important as DeliberationDec 18, 2020
Sometimes, deciding what to do is the easiest part of a decision. Being decisive on an issue you hate is a whole different ballgame.
12 Leadership Lessons from DocuSign CEO Dan SpringerNov 19, 2020
How the Silicon Valley veteran transformed the e-signature pioneer Into a $37 billion powerhouse
10 Leadership Lessons from Covid Field HospitalsNov 16, 2020
The pandemic has forced leaders of hospitals around the world to adopt new practices as they have struggled to contend with the crisis. In this article, the senior leaders of two emergency field hospitals in the United kingdom and the United States — the NHS Nightingale and Boston Hope — share 10 lessons that they learned as they led their clinical staffs during the crisis. These lessons will help hospitals provide better care during the continuing pandemic and after it has ended.
Lessons on Leading Through Chaos from U.S. Special ForcesNov 11, 2020
As the crises of 2020 wear on, the unique skills of our country’s Special Operations Forces (SOF) are becoming more and more valuable in the private sector. Their adaptability, excellent judgment, and wide range of training and experience makes SOF veterans well suited to lead in tumultuous times. Companies that want to succeed amid ongoing volatility should take example from the SOF community by seeking to be flexible, de-siloed, and focused on hiring for hard-to-teach skills like emotional intelligence. Interviews with some 20 veterans and coaches revealed the skills that this elite community can bring to American businesses.
MemosNov 3, 2020
Lead Yourself First: Inspiring Leadership Through Solitude: Kethledge, Raymond M., Erwin, Michael S., Collins, Jim: 9781632866325: Amazon.com: BooksNov 3, 2020
Lead Yourself First: Inspiring Leadership Through Solitude [Kethledge, Raymond M., Erwin, Michael S., Collins, Jim] on Amazon.com. *FREE* shipping on qualifying offers. Lead Yourself First: Inspiring Leadership Through Solitude
Army Ranger School Is a Laboratory of Human EnduranceApr 23, 2020
The military's toughest training challenges have a lot in common with outdoor sufferfests like the Barkley Marathons and the Leadville Trail 100: you have to be fit and motivated to make the starting line, but your mind and spirit are what carry you to the end. A Ranger graduate breaks down an ordeal that shapes some of the nation's finest soldiers.
The Great CEO WithinMar 9, 2020
If you’re looking for a primer on many of the responsibilities of being a startup CEO, read The Great CEO Within. Matt Mochary wrote the book. He founded a company which he sold to MCI and now coaches startup CEOs, amongst other philanthropic efforts. The best part of this book is that it combines descriptions of the key jobs to be done and the frameworks to accomplish them. As CEOs grow their teams and their companies, their calendars densify with meetings until there’s no space to work.
All You Have to Do Is AskFeb 22, 2020
Leadership Now is a leading source for leadership development and analysis. We believe that anyone can make a difference by leading from where they are.
Giving Feedback to Someone Who Hasn’t Had It in YearsFeb 19, 2020
If you work with someone who’s gone too long without feedback and want to help them grow, you’ll need to take an empathetic approach to the conversation. Start by asking questions to clarify their motives. If a leader is constantly forcing their ideas on others, for example, you might start with a question like, “How were you hoping the team would respond to your idea?” Once you are aware of your colleague’s intentions, you need to separate them from their actions in order to have a productive discussion. Acknowledge their original intent, but follow up by stating the negative impact their action actually had on you. Pointing out the gap between what they meant to do and what happened, will help them recognize patterns of unwanted behaviors. Remember that the feedback will be hard to hear — so give them space to feel upset, remind them you are telling them to help them grow, and encourage them to focus on the future.
In a Life-or-Death Crisis, Humility Is Everything - WSJFeb 18, 2020
Airline pilot Alfred Haynes and other leaders who’ve saved lives show that modest people can achieve miracles under pressure.
Leadership PrinciplesDec 23, 2019
The Best Employees Are Not the Agreeable Ones, According to Adam GrantNov 14, 2019
Grant said he separates workers along two axes: givers and takers, and agreeable and disagreeable.
How to Discover your Why: What I Learned from my Transition from CEO | LinkOct 23, 2019
Mark Twain once said that the two most important days in your life are the day you are born, and the day that you discover why. My goal for writing this article is to share an approach to discover (or in my case, rediscover) your “why”.
Speak softly, make tough decisions: An interview with Alibaba Group chairman and CEO Daniel ZhangSep 15, 2019
The chairman and CEO of China’s e-commerce giant describes Alibaba’s approach to innovation and how he balances analytics and instinct to push himself to spot hidden opportunities.
7 Strategies for Establishing AuthorityAug 30, 2019
Remember that the essence of authority is that people willingly follow your lead. That is what the following strategies are designed to do.
Solitude and Leadership - The American ScholarAug 29, 2019
If you want others to follow, learn to be alone with your thoughts
Why Open Secrets Exist in OrganizationsAug 29, 2019
Why do issues remain open secrets in organizations, where multiple employees know about a problem or a concern, but no one publicly brings it up? Researchers recently explored this in a set of studies. They found that as issues become more common knowledge among frontline employees, the willingness of any individual employee to bring those issues to the attention of the top-management decreased. Instead of speaking up, what they observed among their participants was something like the bystander effect, a psychological phenomena describing how people stay on the sidelines as passive bystanders, waiting for others to act rather than do something themselves. If managers want to avoid the bystander effect so that problems don’t go unresolved, they should tell employees that their voices are not redundant and that they need to share their opinions even if others have the same information.
7 Harsh Truths That Will Improve Your Leadership Skills OvernightAug 23, 2019
This is taking your leadership to a whole new level, again.
To Be a Great Leader, You Have to Learn How to Delegate WellAug 20, 2019
One of the most difficult transitions for leaders to make is the shift from doing to leading . As a new manager you can get away with holding on to work. Peers and bosses may even admire your willingness to keep “rolling up your sleeves” to execute tactical assignments. But as your responsibilities become more complex, the difference between an effective leader and a super-sized individual contributor with a leader’s title is painfully evident. To raise the ceiling of your leadership potential, you need to extend your presence through the actions of others, engaging people so that they contribute their best work to your shared priorities. To set the table for effective delegation, make sure you express why something is important to you, confirm that your expectations for the work have been clearly communicated, ask how much of your involvement they need, and practice saying no. Don’t let a focus on execution hold you back from the big-picture work of leading. If you delegate with these principles in mind, the work will get done, because the right people will be focused on the right tasks.
All the best engineering advice I stole from non-technical peopleAug 20, 2019
As I focus on becoming a better manager of engineers, I have been reflecting more and more on the advice that produced a 10X boost in my…
The Art of Saying No to Invites When You REALLY Don't Want to Do SomethingJul 26, 2019
Plus how to actually do it—with sample scripts
Our 6 Must Reads for Cutting Through Conflict and Tough ConversationsJul 25, 2019
Big ideas, strong-willed characters, impossible deadlines and close quarters — if you wrote out a recipe for conflict, it might bear an uncanny resemblance to the high-stakes, pressure-cooker environment of a startup. We spoke with top engineers, seasoned managers and experts in human behavior to share their experience-tested wisdom on conflict mediation and management in rapidly scaling companies.
For Leaders, Decency Is Just as Important as IntelligenceJul 16, 2019
Business leaders make countless decisions that affect employees, customers, shareholders, communities, and even society as a whole. Traditionally, there have been two important traits that leaders need to have: intellect (IQ) and emotional intelligence (EQ). Today, however, they also need a third: decency. Having decency means a leader not only has empathy for employees and colleagues but also has the genuine desire to care for them. It means wanting something positive for everyone in the workplace and ensuring everyone feels respected and valued. It’s evident in daily interactions with others, and implies a focus on doing right by them. As trust in business erodes, this type of triple-threat leadership is vital: Intellect and emotional intelligence are important, but it’s decency that ensures IQ and EQ are used to benefit society, not tear it down.
Do You Trust Your People?Jun 17, 2019
Leadership Now is a leading source for leadership development and analysis. We believe that anyone can make a difference by leading from where they are.
How to Create a Great Team Culture (and Why It Matters) - ACM QueueMay 4, 2019
As leader of the team, you have significant influence over your team
The North Star Approach to Goal SettingApr 27, 2019
This approach radically improves your chances of success.
The 3 most effective ways to build trust as a leaderApr 27, 2019
Based on data from 597 people, the best ways to build trust as a leader aren’t what you think they are. How do you build trust as a leader? The answer seems intuitive enough. For many of us, …
How to Deliver Constructive Feedback in Difficult SituationsMar 28, 2019
Thoughtful, empathetic language can make or break your business relationships
CEO interview series: Michael Seibel on leadership attributes in successful startup leadersDec 21, 2018
Explore a glimpse into how M. Seibel thinks about leadership attributes and some contrarian views that may be at the heart of how he picks great companies.
What 8 Years as a Marine Taught Me About Being a LeaderDec 5, 2018
For the first eight years of my career I was in the U.S.
The Case for Realistic GeneralsSep 14, 2018
“There’s no difference between a pessimist who says, ‘Oh, it’s hopeless, so don’t bother doing anything,’ and an optimist who says, ‘Don’t bother doing anything, it’s going to turn out […]
Why I Encourage My Best Employees to Consider Outside Job OffersSep 11, 2018
Most bosses live in fear that their best employees will leave, so it might seem to be a bad idea to encourage your stars to consider outside offers. But in fact, it sends employees a clear signal that you really care about their learning and development. Openness allows for an honest conversation between you and each employee about their future career path. If they do decide to leave, they’ll be more likely to recommend you as a great boss, and also more likely to return at some future point.
How We Reduced Our Injury Rate by 90% at Campbell Soup CompanySep 9, 2018
Reducing injuries brings down your worker’s compensation costs, but that’s not what’s should drive companies to examine their rate of serious injury. Instead, leaders should do so because they care about the people who work for them. Doug Conant, former CEO of Campbell’s Soup Company, writes about what he learned by watching David White, Global VP of Supply Chain, lead with his heart first.
Level up with the Awesome Leadership and Management ListSep 6, 2018
Whether you're an experienced tech manager, a newbie, or an engineer who wants ...
Amazon.jobsJul 6, 2018
We use our Leadership Principles every day, whether we’re discussing ideas for new projects or deciding on the best way to solve a problem. It’s just one of the things that makes Amazon peculiar.
Combat Consultant: Q&A With Retired General Stanley McChrystalFeb 21, 2018
Retired Army general and special forces commander Stanley McChrystal shares his insights about adaptable teams and organizations.
Publicly credit your employeesOct 23, 2017
Complete Guide to Delegation for LeadersAug 31, 2017
My earliest memories of delegation involve elementary school group projects in which my classmates didn’t take the assignment seriously. More often than not, this left me in the undesirable position…
leadgen-leadmgmt
How to Convert Traffic into Leads: 10 StrategiesOct 19, 2024
It’s hard to drive traffic, so converting traffic into leads requires even more work on optimization. Learn how to do this in our guide.
3 Email Lead Capture Hacks to Get More CustomersJul 19, 2022
When it comes to email lead capture, you can just acquire email addresses, or you can acquire real contacts that you can turn into leads. Context is key.
‘Give Away Your Legos’ and Other Commandments for Scaling StartupsJul 18, 2022
Molly Graham helped forge a work culture at Facebook that's withstood huge amounts of growth. Today, she's something of a rapid scaling expert. Here's the key to doing it right, she says.
5 Pricing Resolutions for 2019 - OpenViewJul 11, 2022
Pricing is a good place to make a few critical resolutions for businesses. Learn the 5 resolutions as you shape your pricing strategy for 2019.
B2B Marketing: How to auto-qualify new leads without a CRM or lead scoringJul 6, 2022
B2B marketers often deliver unqualified leads, which wastes their resources and those of the sales team. How can you generate qualified leads without breaking the bank? A combination of content marketing and triggered emails enabled one B2B team to generate and auto-qualify leads. The result is a campaign that automatically delivers the company’s best sales prospects. Find out how the team drives SEO traffic and earned a 50% conversion rate on the landing page.
The Two Key Elements of Effective Lead-Scoring - MattermarkJun 24, 2022
Meet Peter. He's your ideal customer. He also happens to be the CMO of an early-stage company that just closed its first round of funding. Poised for
How Content Scoring Can Help Generate RevenueJun 22, 2022
Content marketing has become an increasingly popular way for brands to promote themselves. It is subtle and generates more leads than traditional
The 33 Most Valuable Open-Ended Sales QuestionsDec 18, 2020
The right questions ensure that reps are building rapport, uncovering pain points, establishing need, and clearly articulating value.
https://customerobjections.com/Dec 18, 2020
Beginner's Guide to Product-Qualified LeadsDec 23, 2019
Unleash the power of Product Qualified Leads to skyrocket your SaaS business growth. Learn to identify, nurture, and convert PQLs now with our guide.
How to Identify a Product Qualified Lead (PQL)Aug 29, 2019
More companies are switching from marketing qualified leads to track product qualified leads. Find out what a PQL is and how to optimize for them here.
Beginner’s Guide to Product Qualified Leads (PQLs)Aug 29, 2019
A product qualified lead (PQL) is a lead who has experienced meaningful value using your product through a free trial or freemium model. Learn how to use them in your organization here.
leaks
We're leaking, and everything's fine: How and why companies deliberately leak secretsJun 12, 2021
Although the protection of secrets is often vital to the survival of organizations, at other times organizations can benefit by deliberately leaking secrets to outsiders. We explore how and why this is the case. We identify two dimensions of leaks:
The Art Of Deliberately Leaking Corporate SecretsJun 12, 2021
Although there may be risks for companies in leaking secrets, the researchers make a strong case for doing so when appropriate. It appears that some of the most prolific and careful leakers are also among the most profitable companies in the world.
How To Leverage a Beta Product Leak | CentercodeJun 12, 2021
You’re a few weeks into managing a beta test for a new product your company plans to release soon. You get an email from someone on your beta team that there has been a leak online. One of your testers took a picture of your company’s new gadget fresh out of the box and posted […]
lean
WSJF - Scaled Agile FrameworkMar 11, 2021
Weighted Shortest Job First (WSJF) is a prioritization model used to sequence work for maximum economic benefit. In SAFe, WSJF is estimated as the relative cost of delay divided by the relative job duration.
Start with a NicheFeb 22, 2021
The most popular products don’t become mass popular overnight. It’s a process. Usually they popularity is uneven, they are unknown in some niches, but very popular in another niches.
learning
The Legibility ProblemMar 2, 2026
What happens in a world where AIs make scientific discoveries that humans cannot understand?
52 Things I Learned in 2025Jan 4, 2026
Here are some of the most interesting things I learned this year.
How Accurate Are Learning Curves?Dec 24, 2025
We’ve talked several times on this substack (as well as in my book), about the learning curve, the observation that costs of a produced good tend to fall by some constant proportion for every cumulative doubling of production volume: go from 100 to 200 units, costs might fall by 15%, go from 200 to 400, another 15%, and so on.
Human Error Is the Point: On Teaching College During the Rise of AIOct 27, 2025
My syllabus is a mess of half-remembered intentions. I re-use icebreakers that I know don’t work. I forget to grade the first assignment until Week Four. I write emails that begin with “So sorry for the delay!” and I mean it. I use “This reminded me of something I once read—” as a stall tactic. I say “I don’t know” more times than I should. I also say “I love that” when I don’t. Because I want to encourage them. Because I do love that they showed up. Because showing up is a miracle.
Hashcards: A Plain-Text Spaced Repetition SystemOct 5, 2025
Announcing my latest open-source project.
They Created a Streetwear Line From Scratch. In High School.Sep 10, 2025
At a school with a basketball-themed curriculum, students were “dreaming big.” But could they find a buyer?
Anki is already deadSep 1, 2025
what 98,000 flashcard reviews and japanese taught me about learning with llms
The Software Tycoon Scaling AI Education to a Billion KidsAug 22, 2025
As an elementary school principal, a feared software tycoon, a genial recluse, and a technology zealot determined to redefine childhood for mankind, J
AI is a Floor Raiser, not a Ceiling Raiser - ElroyAug 1, 2025
An AI assistant that remembers and sets goals
Spaced Repetition Systems Have Gotten Way BetterMay 19, 2025
Spaced repetition systems are a well-known way to efficiently learn material. Recent innovations have applied machine learning to greatly improve their scheduling.
Can You Use ChatGPT To Learn a New Language?May 12, 2025
Can't find a human to practice a language with? I've been there. Here's why most of my interaction with ChatGPT is in other languages.
Things that arent progressApr 22, 2025
A few months ago, I wrote about things that look like work, but aren't. As I paid more attention to founders doing these things, I started thinking about why they were happening. I realized that...
Classical Reasoning and DebuggingMar 27, 2025
Classical philosophy offers us multiple reasoning strategies for dealing with tricky bugs.
Tyler Cowen, the man who wants to know everythingMar 5, 2025
He is Silicon Valley’s favourite economist. Does his lust for knowledge have a place in the age of AI?
How to use NotebookLM for personalized knowledge synthesisJan 8, 2025
Two powerful workflows that unlock everything else. Intro: Golden Age of AI Tools and AI agent frameworks begins in 2025.
Physics — Susan RigettiJul 5, 2024
Anki - powerful, intelligent flashcardsFeb 29, 2024
Why Writing by Hand Is Better for Memory and LearningFeb 22, 2024
Engaging the fine motor system to produce letters by hand has positive effects on learning and memory
Innovative three-year-olds expose the limits of AI chatbotsFeb 10, 2024
New experiments show that very young children are better at solving creative puzzles than ChatGPT and other AI models
New talk: Making Hard Things EasyOct 8, 2023
Ability to See Expertise is a Milestone Worth Aiming For - CommoncogJul 22, 2023
Good news: we have a neat, universal milestone on the journey to mastery. What that looks like, and how to use it.
Why can’t Americans agree on, well, nearly anything? Philosophy has some answersMar 20, 2023
Two concepts can help explain why society seems increasingly unable to agree on basic facts.
How to Make Yourself Into a Learning Machine - Superorganizers - EveryJan 17, 2023
Shopify’s Director of Production Engineering explains how reading broadly helps him get to the bottom of things
The Science of Mind ReadingJan 2, 2023
Researchers are pursuing age-old questions about the nature of thoughts—and learning how to read them.
The Coach in the Operating Room (2011)Dec 28, 2022
Outside ears, and eyes, are important for concert-calibre musicians and Olympic-level athletes. What about regular professionals?
Deliberate doubt: the art of questioning our assumptionsDec 6, 2022
Deliberate doubt is the practice of actively questioning our beliefs and assumptions. It is about suspending our certainty and letting go of our preconceived notions in order to explore new ideas and perspectives.
How to become an expert | Psyche GuidesOct 18, 2022
The path to mastery is long, winding and hugely fulfilling. Use this map to navigate and overcome any bumps along the way
How I Use Robert Greene’s Notecard SystemOct 4, 2022
I adopted the master researcher’s notecard system to transform great ideas into actionable steps
Mimetic learning: the power of learning through imitationSep 5, 2022
From an evolutionary perspective, mimetic learning makes a lot of sense. It’s essential for our survival and sense of belonging, with one generation showing the next the behaviours required of them.
Are All Brains Good at Math?Sep 5, 2022
Math provokes dread in so many people—yet we are all born with a sense for numbers.
Tyler Cowen on reading fast, reading well, and reading widely - Driverless CrocodileAug 28, 2022
This is a great riff on how reading works and on the network effects of reading. Links below. Tyler says: … I go through five or ten books a day. And which parts of them I’ve read you can debate – maybe it washes out to be two or three books a day. Some good… Read More »Tyler Cowen on reading fast, reading well, and reading widely
The Japanese call this practice tsundoku, and it may provide lasting benefitsAug 13, 2022
Or, how I learned to stop worrying and love my tsundoku.
Random ObservationsJul 19, 2022
Mistakes Managers Should AvoidJul 18, 2022
Some managers keep diaries of their on-the-job mistakes, partly to avoid repeating errors, and partly to make employees comfortable with failure. At least one added cartoons.
Ten lessonsJul 18, 2022
10 Data Acquisition Strategies for StartupsJul 11, 2022
The “unreasonable effectiveness” of data for machine-learning applications has been widely debated over the years (see here, here and…
The *real* pivotJul 5, 2022
Making Uncommon Knowledge Common - kwokchainJul 5, 2022
The Rich Barton Playbook for winning markets through Data Content Loops Preface: This is part of a longer private memo analyzing Zillow and its recent shift towards Opendoor’s model. May publish rest of memo at some later point. But wanted to share first part, on Rich Barton and Zillow’s initial rise. Have had many recent … Continue reading Making Uncommon Knowledge Common →
Using OKRs to Increase Organizational LearningJul 5, 2022
This is a draft chapter from the second edition of Radical Focus. It’s coming… eventually. Hopefully soonish. Leave your wishlist for other topics you’d like it to cover, and enjoy the sneak peek! …
The problem with ‘5 whys’Jun 24, 2022
‘The Problem with…’ series covers controversial topics related to efforts to improve healthcare quality, including widely recommended but deceptively difficult strategies for improvement and pervasive problems that seem to resist solution. The ‘5 whys’ technique is one of the most widely taught approaches to root-cause analysis (RCA) in healthcare. Its use is promoted by the WHO,1 the English National Health Service,2 the Institute for Healthcare Improvement,3 the Joint Commission4 and many other organisations in the field of healthcare quality and safety. Like most such tools, though, its popularity is not the result of any evidence that it is effective.5–8 Instead, it probably owes its place in the curriculum and practice of RCA to a combination of pedigree, simplicity and pedagogy. In terms of pedigree, ‘5 whys’ traces its roots back to the Toyota Production System (TPS).9 It also plays a key role in Lean10 (a generic version of TPS) as well as Six Sigma,11 another popular quality improvement (QI) methodology. Taiichi Ohno describes ‘5 whys’ as central to the TPS methodology:The basis of Toyota's scientific approach is to ask why five times whenever we find a problem … By repeating why five times, the nature of the problem as well as its solution becomes clear. The solution, or the how-to, is designated as ‘1H.’ Thus, ‘Five whys equal one how’ (5W=1H). (ref. 9, p. 123) This quote also makes the case for the technique's simplicity. Asking ‘why’ five times allows users to arrive at a single root cause that might not have been obvious at the outset. It may also inspire a single solution to address that root cause (though it is not clear that the ‘1H’ side of the equation has been adopted as widely). The pedagogical argument for …
I Learned to Speak Four Languages in a Few Years: Here's HowJun 22, 2022
Lifehacker reader Gabriel Wyner was tasked with learning four languages in the past few years for his career as an opera singer, and in the process la
The Buffett Formula: Going to Bed Smarter Than When You Woke UpJun 21, 2022
The Buffett Formula for getting smarter is simple but not easy. Warren Buffett combined the habits of reading and thinking to improve his mind. Here's how ...
Drew Houston's Commencement addressJun 21, 2022
'I stopped trying to make my life perfect, and instead tried to make it interesting.'
We have built and launched exactly 30 tech products for our clients in the past 5 years. 15 have shut down. 7 are new (< 1 year). 8 are still alive and breathing, but not kicking. 2 are blockbusters (>$50 million valuations). Here are 10 things that I realized was different with those 2 projectsJun 13, 2022
1K votes, 152 comments. I wrote the below post after we launched our 30th product, just to try to make a note to self on whether any early signs gave…
A Brief Guide to Learning Faster (and Better) - Scott H YoungMay 28, 2022
Learning a new thing comes with a lot of challenges. Discover tried and true tactics that can be used to learn anything better.
How One Fast-Food Chain Keeps Its Turnover Rates Absurdly LowApr 6, 2022
Hire for attitude, and train (a lot) for skill.
How I learned to stop worrying and structure all writing as a listMar 23, 2022
We like lists because they are an objectively good way to organize information. They allow readers to quickly and easily get what they want.
Learnability in UX DesignJan 17, 2022
Building a learnable website is much tougher than it sounds.One thinks one’s design is clear and comprehensible; however, a design that might be obvious for you, might be perceived totally different by a user with a different set of experiences. Therefore, the goal is to design a clear user path…
My Favorite LiarJan 13, 2022
“It's my intention to work into each lecture one lie...” Remembering a favourite teacher whose unorthodox methods got his students' attention
How to Memorize the Un-MemorizableNov 9, 2021
Although I’ve successfully learned the language of mathematics, it has always frustrated me that I couldn’t master those more unpredictable languages like French or Russian that I’d tried to learn …
How to study effectively | Psyche GuidesSep 2, 2021
Forget cramming, ditch the highlighter, and stop passively rereading. The psychology of learning offers better tactics
Raven’s Progressive Matrices test | Wechsler Adult Intelligence ScaleJul 11, 2021
Classical IQ test Official IQ test
Neuroscience (and a Small Dose of Emotional Intelligence) Reveals the Simple Trick to Learn a Lot More--With a Lot Less EffortJun 29, 2021
Learning more efficiently is a matter of time--but not in the way you might think.
IQ tests can’t measure it, but ‘cognitive flexibility’ is key to learning and creativityJun 28, 2021
Are you good at changing perspectives? If so, it may benefit you in more ways than you imagine.
This 11-course package can help you run a liquid smooth DevOps project throJun 8, 2021
This AWS DevOps Engineer Certification Bundle contains 11 Courses on AWS Database, Cloud Automation, Lambda, & More! Become a DevOps engineer.
https://ruder.io/optimizing-gradient-descent/May 29, 2021
Identify — and Hire — Lifelong LearnersMay 17, 2021
The most pertinent question one can ask of a current or future employee may just be: How do you learn? Lifelong learning is now roundly considered to be an economic imperative, and job candidates or employees who consider, update, and improve their skills will be the high performers, especially over the longer term. Pressing ourselves on the question of how we learn brings a hard, pragmatic edge to the important but nebulous notion of growth mindset. The world and the workplace have changed considerably in the past year. The skills we need to function and flourish have correspondingly changed, and so we need to bring them into a smarter, sharper focus to know what they are and to seek them out proactively, persistently, and methodically.
Why we remember more by reading – especially print – than from audio or videoMay 12, 2021
People tend to think of digital media as entertainment, so they devote less mental effort than when they’re reading a printed book.
How a 'beginners’ mindset' can help you learn anythingFeb 27, 2021
Although our ability to easily pick up a new skill declines with age, harnessing a specific type of mindset can help you learn effectively as an adult.
The difference between note-taking and note-makingJan 19, 2021
Note-taking is fast, uses the original author's language, and feels easier. Note-making is slower, more involved, and uses your own language.
The joys of being an absolute beginner – for life | Life and style | The GuJan 16, 2021
The long read: The phrase ‘adult beginner’ can sound patronising. It implies you are learning something you should have mastered as a child. But learning is not just for the young
Show HN: Supernotes – Embeddable Markdown note-cardsJan 15, 2021
The fastest way to take notes and collaborate with friends. Create notecards with Markdown, LaTeX, images, emojis and more. Get started for free!
HomepageDec 25, 2020
Become A Ruby Programming Expert With RubyGuides This library of 150+ in-depth guides explains complex programming topics in plain English so you can become a happy & well-paid Ruby developer! Discover all the secrets that separate beginner developers
Reading Comprehension: How to Retain More of Every Book You ReadDec 24, 2020
It's important to read books, but it's just as important to remember what you read. Read this article to learn three reading comprehension strategies.
We Learn Faster When We Aren’t Told What Choices to MakeNov 3, 2020
The way we decide may even give insight into delusional thinking
Introduction to the Zettelkasten MethodNov 3, 2020
Learn how the Zettelkasten works as a system, what a Zettel is made of, and how to grow an organic web of knowledge.
Eigenquestions: The Art of Framing ProblemsJul 13, 2020
A handbook for how to become an expert at framing problems.
22 Life Lessons I Learned From My Mentors That Every Person Should Know - Darius ForouxJun 24, 2020
I’ve been blessed to meet insightful people and mentors. If you want to learn from people you look up to, observe them.
Why Tacit Knowledge is More Important Than Deliberate PracticeJun 14, 2020
What tacit knowledge is, and why it is the most interesting topic in the study of expertise today.
Fail productively… how to turn yourself into a super-learnerMar 9, 2020
Whether you’re taking up the oboe or finessing your Finnish, scientific research offers tips to aid learning
The Economics of Building Knowledge Bases | DiffblogFeb 19, 2020
During the summers of my high school years in suburban Georgia, my friend and I would fill the time by randomly walking into local establishments asking for odd jobs. It was a great way as a studen…
The Hardest Part About Learning Hard ThingsDec 31, 2019
It may never get any easier, but it’s always worth it.
The Elements of Good JudgmentDec 30, 2019
Judgment—the ability to combine personal qualities with relevant knowledge and experience to form opinions and make decisions—is “the core of exemplary leadership,” according to Noel Tichy and Warren Bennis (the authors of Judgment: How Winning Leaders Make Great Calls). It is what enables a sound choice in the absence of clear-cut, relevant data or an obvious path. Likierman believes that a more precise understanding of what exactly gives someone good judgment may make it possible for people to learn and improve on it. He approached CEOs at a range of companies, from some of the world’s largest right down to start-ups, along with leaders in the professions: senior partners at law and accountancy firms, generals, doctors, scientists, priests, and diplomats. He asked them to share their observations of their own and other people’s exercise of judgment so that he could identify the skills and behaviors that collectively create the conditions for fresh insights and enable decision makers to discern patterns that others miss. As a result, he has identified six key elements that collectively constitute good judgment: learning, trust, experience, detachment, options, and delivery. He describes these elements and offers suggestions for improvement in each one.
Brian Piercy on LinkedIn: The Surprising Value of Obvious InsightsDec 28, 2019
"...Google's people analytics experts had been studying how to onboard new hires effectively. They came back with a list of tips. Here’s the one that jumped…
The Myth of Commoditized Excellence - Barry HawkinsDec 23, 2019
When we learn new things from grappling with problems, it is natural for us to want to share those learnings with others, in hopes that they will face similar challenges with less of a struggle. How do those well-intended new ideas so often evolve into movements that seem to lose their way, and at times do more harm than good? In the course of observing and at times being involved in this phenomenon, I sought to understand what I saw happening time and again. Almost a decade ago, I arrived at an explanation that I named The Myth of Commoditized Excellence. What follows are the steps that can lead down this unfortunate path.
How to Get Rich Without Being Lucky - Naval RavikantDec 23, 2019
There is no fixed way of getting rich for anyone. Check out 29 useful tips of how to get rich without being lucky shared by Naval Ravikant.
How Einstein Learned PhysicsDec 23, 2019
Einstein was a student long before he became a celebrity. There is a lot to glean from his education and unique approach to learning.
What Medieval People Got Right About Learning - Scott H YoungDec 21, 2019
Apprenticeships beat schooling. Here's why they're a superior method for learning, and how you can apply this to the things you want to master.
A Framework for First Principles Thinking | Neil KakkarDec 19, 2019
Leverage mental models to think better. First Principles Thinking is an excellent model for critical thinking. This post looks at how to practice First Principles Thinking with lots of examples.
How I Rewired My Brain to Become Fluent in MathDec 11, 2019
The building blocks of understanding are memorization and repetition.
Museum in a BoxDec 11, 2019
A small, friendly device you put museum objects on to hear their stories... It's history that speaks for itself!
The Cobra Effect: how linear thinking leads to unintended consequencesOct 15, 2019
The world is much more complex than we realise. The Cobra Effect is when an attempted solution results in unintended consequences.
Under-Investigated Fields List (Version 1.0) - matthewmcateer.meOct 6, 2019
Nominations for fields that are not being researched as much as they should be
Effective learning: Twenty rules of formulating knowledge | SuperMemo.comAug 31, 2019
This article will help you overcome one of the greatest difficulties you will face when trying to accelerate learning: formulating knowledge.
Deliberate Practice: A Mindful & Methodical Way to Master Any SkillAug 26, 2019
Each and every day we eat, we sleep, we read, we brush our teeth. So why haven't we all become world-class masters of eating, sleeping, reading, and teeth-brushing?
How to Use Learning Milestones – Itamar Gilad – MediumAug 24, 2019
In tech we have huge bias for Execution — building things and launching them fast and with the right quality. A million underwhelming…
How to Cultivate Mental Stamina - Scott H YoungFeb 17, 2019
Being able to sustain focus is a key to success in work and study. Here's how you can increase your mental stamina with these five strategies.
NPR’s How I Built This: What I Learned from 51 Episodes | Allen ChengFeb 10, 2019
I listened to 51+ episodes of How I Built This. Here's what I learned about what successful companies have in common.
A Simple Way to Better Remember Things: Draw a PictureJan 10, 2019
Activating more parts of your brain helps stuff stick.
The Right Way to Use the Wisdom of CrowdsDec 22, 2018
Management teams are responsible for making sense of complex questions. Maybe it’s estimating how much a market will grow next year, or finding the best strategy to beat a competitor. One popular approach for navigating these questions is turning to the “wisdom of crowds” – asking many people for their opinions and suggestions, and then combining them to form the best overall decision. Evidence suggests that the combination of multiple, independent judgments is often more accurate than even an expert’s individual judgment. But new research identifies a hidden cost to this approach. When someone has already formed an opinion, they’re far less likely to be receptive to the opinions of others – and this can lead to evaluating other people and their ideas more negatively. Fortunately, this work also suggests a few ways to minimize this cost.
The life-changing art of asking instead of tellingNov 26, 2018
Open new routes to successful conversations with colleagues, friends, and family.
Lumpers and splittersOct 24, 2018
There are two interesting ways to solve a problem, find a startup or even write a blog post. You can lump two previously disparate categories into one. Or you can split a previously coherent catego…
dbt Labs Blog | Learn from the experts | dbt LabsSep 29, 2018
Learn more about the data analytics industry, dbt Cloud and dbt Core, as well as company news and updates.
How to Start Your Own Ultralearning Project (Part One)Sep 24, 2018
With a bit of effort, you can learn a new skill in less time than you thought. Here’s the guide for how to go all in.
Comparative Research Done RightSep 10, 2018
or, Competitive Research the Creative Founder Way For a long time, I’ve been disappointed by competitive research approaches. Most strike me as a bunch of bumbling around and seeing what you see… s…
How to teach yourself hard thingsSep 5, 2018
LJun 10, 2018
The latest brain hack to get ahead in Silicon Valley: flashcardsFeb 20, 2018
Memorize anything forever, say Silicon Valley's true believers.
If It’s Important, Learn It RepeatedlyJan 24, 2018
A little more than a year ago, a friend took me for lunch in downtown Toronto, and we talked mostly about what we’d been reading. Immediately afterward she marched me to a nearby bookstore and insisted I buy Cal Newport’s Deep Work. She was the second person that week to describe it to me as potentially life-changing, so I bought
The Generalized Specialist: How Shakespeare, Da Vinci, and Kepler ExcelledDec 27, 2017
Should we generalize or specialize? This article explores how Shakespeare and Da Vinci excelled by branching out from their core competencies.
Anki - powerful, intelligent flashcardsDec 26, 2016
Is psychology going to Cincinnati? - by Adam MastroianniOct 24, 2012
OR: The mystery of the televised salad
What Does It Really Mean to Learn?Sep 24, 2004
A leading computer scientist says it’s “educability,” not intelligence, that matters most.
legal
What actually is a legal entity?Feb 26, 2026
Part 1 in a series on the fundamentals of legal entity identity data. Think about the last time you signed a contract. If it was done in a work context, perhaps it was a supplier agreement, a SaaS …
Why a Devoted Justice Department Lawyer Became a Whistle-BlowerJul 10, 2025
In the first Trump Administration, “they didn’t say ‘Fuck you’ to the courts,” Erez Reuveni said.
Judge allows authors' AI copyright lawsuit against Meta to move forward | TechCrunchMar 9, 2025
A federal judge is allowing an AI-related copyright lawsuit against Meta to move forward, although he dismissed part of the suit. In Kadrey vs. Meta,
Technology & Marketing Law BlogFeb 7, 2025
Eric teaches and publishes in the areas of Internet Law, Intellectual Property and Advertising & Marketing Law.
An explosion of LLCs: the Wyoming angleDec 11, 2024
What’s behind Wyoming’s spectacular rise as a jurisdiction of choice for LLCs?
Five Section 230 Cases That Made Online Communities BetterMay 23, 2024
The House Energy and Commerce Committee is holding a hearing tomorrow on “sunsetting” Section 230. Despite facing criticism, Section 230 has undeniably been a cornerstone in the architect…
Understanding Your NDA (and When It Can Be Broken)May 16, 2024
Some NDAs illegally place restrictions on an employee’s ability to report misconduct to government agencies like the U.S. Department of Labor (DOL) or the U.S. Securities and Exchange Commission (SEC). Securities violations, including fraud, insider trading, and market manipulation, are some of the most common forms of misconduct that companies try to prevent employees from reporting. If you ever find yourself in this sticky spot — having signed an NDA that restricts you from blowing the whistle on a securities violation at work — it’s important to know your rights. Most importantly, restrictive NDAs are illegal and you can report misconduct (and an illegal NDA) confidentially to the SEC.
Everything You Need to Know for Planning Wills and TrustsMay 14, 2024
Estate planning ensures both you and your family are secure in the future.
Clerking For Judge Aileen Cannon: A Behind-The-Scenes LookApr 1, 2024
A tale of two clerkships: it was the best of times, it was the worst of times.
A mind is a terrible thing to changeMar 24, 2024
My Clients, The Liars — LessWrongMar 11, 2024
It’s not just that my clients lie to me a lot, which will only hurt them — it’s that they’re really, really bad at it. My job as a public defender pu…
How Two Irish Businessmen Almost Took Nigeria for $11 BillionFeb 10, 2024
A mundane contractual provision met with rampant corruption — revealing a serious vulnerability in one of the backbones of international commerce.
How to Make Russia Really Pay for Invading UkraineSep 21, 2023
The United States and our allies have every legal right to transfer frozen Russian assets to Kyiv.
Probate vs. Non-Probate AssetsDec 9, 2022
A basic understanding of probate and non-probate assets is an important starting place to understand the role that probate court will play in the transfer of assets after your death.
The 4 Main Types of Intellectual Property and Related CostsFeb 10, 2022
There are four primary ways that businesses can protect their intellectual property (IP) assets: patents, trademarks, copyrights, and trade secrets.
Sweepstakes Law BasicsJan 12, 2022
The Commas That Cost Companies MillionsNov 23, 2021
For most people, a stray comma isn’t the end of the world. But in some cases, the exact placement of a punctuation mark can cost huge sums of money.
How to Start a Limited Liability Company (LLC)Jun 1, 2020
An LLC can protect you from business obligations and debts.
Jones & SprossApr 17, 2020
JonesSpross, your global partner for business success. High-value, high-touch legal expertise in building, financing, and protecting businesses worldwide.
Law Dictionary - Rocket LawyerMar 27, 2020
Over 1000 legal terms defined in simple, everyday language. We cut out the legalese so anyone can make sense of their agreements, contracts, and documents!
Terms and Conditions Generator | iubendaDec 14, 2019
Use our terms & conditions generator to make terms and conditions, terms of service, or terms of use in mins. Perfect for sites, apps, ecommerce + more.
How to Respond to a Copyright Infringement NoticeAug 29, 2019
Copyright infringement is a serious issue that could cost a business as much as $150,000 per instance. If your business receives an infringement notice, take it seriously. Aim to settle if, in fact, infringement occurred.
Amazon’s Antitrust Antagonist Has a Breakthrough IdeaSep 8, 2018
With a single scholarly article, Lina Khan, 29, has reframed decades of monopoly law.
lidar
Seeing Like a Sedan—AsteriskJan 26, 2026
Waymos and Cybercabs see the world through very different sensors. Which technology wins out will determine the future of self-driving vehicles.
LIDAR, optical distance & time of flight sensors | ams OSRAMSep 22, 2025
Fully integrated dToF modules and iToF VCSEL illuminators for short range applications. Laser sources for long range LIDAR systems.
A Short Introduction to Automotive Lidar TechnologyNov 24, 2024
A guide to the operating principles, techniques and technology in lidar systems.
Solid-State Beam Steering Comes to 3D LiDARMay 29, 2024
Lumotive and Hokuyo Automatic have teamed up to bring the world’s first true beam-steering sensor to 3D LiDAR.
How 10 leading companies are trying to make powerful, low-cost lidarDec 2, 2021
Lidar is essential for self-driving cars—here’s how some leading lidar sensors work.
How lidar makers are coping with slow progress of self-driving techDec 2, 2021
We talked to lidar company executives and independent experts.
likeability
How To Get People To Like You: 7 Ways From An FBI Behavior Expert - Barking Up The Wrong TreeJul 18, 2022
How to get people to like you -- it's a tricky problem. Here the head of the FBI’s Behavioral Analysis Program explains how to make people like you quickly.
How to be ApproachableJul 18, 2022
Why some people are constantly approached by friendly nearbys whereas others might as well be invisible
linear-algebra
nvidia's B200 does 1,760 TFLOPS on a square GEMM and 4 TFLOPS on a skinny one. the shape of your matmul is the single biggest variable in GPU performance. but why? same hardware, same operation… | Emilio AndereFeb 23, 2026
nvidia's B200 does 1,760 TFLOPS on a square GEMM and 4 TFLOPS on a skinny one.
Linear Algebra Algorithms Taxonomy: Complete GuideDec 11, 2025
Comprehensive taxonomy of linear algebra algorithms with Python & Ruby implementations. Covers vector operations, eigenvalues, SVD, decompositions, and BLAS/LAPACK routines.
Tensordyne Claims 8x AI Efficiency Boost Over NVIDIA Using Logarithmic MathSep 8, 2025
The idea isn't novel, but presents major challenges. Tensordyne thinks it has solved them, and promises massive speed and efficiency gains as a result.
the-litte-book-of/linear-algebra: There is hardly any theory which is more elementary than linear algebra, in spite of the fact that generations of professors and textbook writers have obscured its simplicity by preposterous calculations with matrices. —Jean DieudonneSep 3, 2025
There is hardly any theory which is more elementary than linear algebra, in spite of the fact that generations of professors and textbook writers have obscured its simplicity by preposterous calcul...
Derivatives, Gradients, Jacobians and Hessians – Oh My!Aug 17, 2025
This article explains how these four things fit together and shows some examples of what they are used for. Derivatives Derivatives are the most fundamental concept in calculus. If you have a funct…
Immersive MathMay 13, 2024
Matrix Product Interpretations and VisualizationsFeb 27, 2024
Matrix Product Interpretations and Visualizations: Learn Linear Algebra from scratch. Build a foundation for Machine Learning and other key technologies.
Matrix CalculusApr 16, 2023
MatrixCalculus provides matrix calculus for everyone. It is an online tool that computes vector and matrix derivatives (matrix calculus).
Linear Algebra: LU Decomposition, with PythonFeb 2, 2023
Part 4: A comprehensive step-by-step guide to solving a linear system with LU Decomposition
What Is an Eigenvalue? – Nick HighamNov 9, 2022
An eigenvalue of a square matrix $LATEX A$ is a scalar $latex \lambda$ such that $latex Ax = \lambda x$ for some nonzero vector $latex x$. The vector $latex x$ is an eigenvector of $LATEX A$ and it…
Supply Chain Process Optimization using Linear ProgrammingJul 27, 2022
Understand how linear programming can be the most powerful tool for a supply chain continuous improvement engineer
Linear Algebra for Data Science - KDnuggetsJul 18, 2022
In this article, we discuss the importance of linear algebra in data science and machine learning.
Introduction to Applied Linear Algebra: Norms & DistancesDec 7, 2021
This article gives an introduction to vector norms, vector distances and their application in the field of data science
Large scale eigenvalue decomposition and SVD with rARPACK | R-bloggersDec 4, 2021
In January 2016, I was honored to receive an “Honorable Mention” of the John Chambers Award 2016. This article was written for R-bloggers, whose builder, Tal Galili, kindly invited me to write an introduction to the rARPACK package. A Short Story of rARPACK Eigenvalue decomposition is a commonly used technique in numerous statistical problems. For example, principal component analysis (PCA) basically conducts eigenvalue decomposition on the sample covariance of a data matrix: the eigenvalues are the component variances, and eigenvectors are the variable loadings. In R, the standard way to compute eigenvalues is the eigen() function. However, when the matrix becomes large, eigen() can be very time-consuming: the complexity to calculate all eigenvalues of a $n times n$ matrix is $O(n^3)$. While in real applications, we usually only need to compute a few eigenvalues or eigenvectors, for example to visualize high dimensional data using PCA, we may only use the first two or three components to draw a scatterplot. Unfortunately in eigen(), there is no option to limit the number of eigenvalues to be computed. This means that we always need to do the full eigen decomposition, which can cause a huge waste in computation. And this is why the rARPACK package was developed. As the name indicates, rARPACK was originally an R wrapper of the ARPACK library, a FORTRAN package that is used to calculate a few eigenvalues of a square matrix. However ARPACK has stopped development for a long time, and it has some compatibility issues with the current version of LAPACK. Therefore to maintain rARPACK in a good state, I wrote a new backend for rARPACK, and that is the C++ library Spectra. The name of rARPACK was POORLY designed, I admit. Starting from version 0.8-0, rARPACK no longer relies on ARPACK, but due to CRAN polices and reverse dependence, I have to keep using the old name. Features and Usage The usage of rARPACK is simple. If you want to calculate some eigenvalues of a square matrix A, just call the function eigs() and tells it how many eigenvalues you want (argument k), and which eigenvalues to calculate (argument which). By default, which = "LM" means to pick the eigenvalues with the largest magnitude (modulus for complex numbers and absolute value for real numbers). If the matrix is known to be symmetric, calling eigs_sym() is preferred since it guarantees that the eigenvalues are real. library(rARPACK) set.seed(123) ## Some random data x = matrix(rnorm(1000 * 100), 1000) ## If retvec == FALSE, we don't calculate eigenvectors eigs_sym(cov(x), k = 5, which = "LM", opts = list(retvec = FALSE)) For really large data, the matrix is usually in sparse form. rARPACK supports several sparse matrix types defined in the Matrix package, and you can even pass an implicit matrix defined by a function to eigs(). See ?rARPACK::eigs for details. library(Matrix) spmat = as(cov(x), "dgCMatrix") eigs_sym(spmat, 2) ## Implicitly define the matrix by a function that calculates A %*% x ## Below represents a diagonal matrix diag(c(1:10)) fmat = function(x, args) { return(x * (1:10)) } eigs_sym(fmat, 3, n = 10, args = NULL) From Eigenvalue to SVD An extension to eigenvalue decomposition is the singular value decomposition (SVD), which works for general rectangular matrices. Still take PCA as an example. To calculate variable loadings, we can perform an SVD on the centered data matrix, and the loadings will be contained in the right singular vectors. This method avoids computing the covariance matrix, and is generally more stable and accurate than using cov() and eigen(). Similar to eigs(), rARPACK provides the function svds() to conduct partial SVD, meaning that only part of the singular pairs (values and vectors) are to be computed. Below shows an example that computes the first three PCs of a 2000x500 matrix, and I compare the timings of three different algorithms: library(microbenchmark) set.seed(123) ## Some random data x = matrix(rnorm(2000 * 500), 2000) pc = function(x, k) { ## First center data xc = scale(x, center = TRUE, scale = FALSE) ## Partial SVD decomp = svds(xc, k, nu = 0, nv = k) return(list(loadings = decomp$v, scores = xc %*% decomp$v)) } microbenchmark(princomp(x), prcomp(x), pc(x, 3), times = 5) The princomp() and prcomp() functions are the standard approaches in R to do PCA, which will call eigen() and svd() respectively. On my machine (Fedora Linux 23, R 3.2.3 with optimized single-threaded OpenBLAS), the timing results are as follows: Unit: milliseconds expr min lq mean median uq max neval princomp(x) 274.7621 276.1187 304.3067 288.7990 289.5324 392.3211 5 prcomp(x) 306.4675 391.9723 408.9141 396.8029 397.3183 552.0093 5 pc(x, 3) 162.2127 163.0465 188.3369 163.3839 186.1554 266.8859 5 Applications SVD has some interesting applications, and one of them is image compression. The basic idea is to perform a partial SVD on the image matrix, and then recover it using the calculated singular values and singular vectors. Below shows an image of size 622x1000: (Orignal image) If we use the first five singular pairs to recover the image, then we need to store 8115 elements, which is only 1.3% of the original data size. The recovered image will look like below: (5 singular pairs) Even if the recovered image is quite blurred, it already reveals the main structure of the original image. And if we increase the number of singular pairs to 50, then the difference is almost imperceptible, as is shown below. (50 singular pairs) There is also a nice Shiny App developed by Nan Xiao, Yihui Xie and Tong He that allows users to upload an image and visualize the effect of compression using this algorithm. The code is available on GitHub. Performance Finally, I would like to use some benchmark results to show the performance of rARPACK. As far as I know, there are very few packages available in R that can do the partial eigenvalue decomposition, so the results here are based on partial SVD. The first plot compares different SVD functions on a 1000x500 matrix, with dense format on the left panel, and sparse format on the right. The second plot shows the results on a 5000x2500 matrix. The functions used corresponding to the axis labels are as follows: svd: svd() from base R, which computes the full SVD irlba: irlba() from irlba package, partial SVD propack, trlan: propack.svd() and trlan.svd() from svd package, partial SVD svds: svds() from rARPACK The code for benchmark and the environment to run the code can be found here.
[2106.10860v1] Multiplying Matrices Without MultiplyingSep 3, 2021
Multiplying matrices is among the most fundamental and compute-intensive operations in machine learning. Consequently, there has been significant work on efficiently approximating matrix...
Poisson's Equation is the Most Powerful Tool not yet in your ToolboxJul 7, 2021
Poisson's Equation is an incredibly powerful tool...
The torch.linalg module: Accelerated Linear Algebra with Autograd in PyTorchJun 25, 2021
Linear algebra is essential to deep learning and scientific computing, and it’s always been a core part of PyTorch. PyTorch 1.9 extends PyTorch’s support for linear algebra operations with the torch.linalg module. This module, documented here, has 26 operators, including faster and easier to use versions of older PyTorch operators, every function from NumPy’s linear algebra module extended with accelerator and autograd support, and a few operators that are completely new. This makes the torch.linalg immediately familiar to NumPy users and an exciting update to PyTorch’s linear algebra support.
What Happens When Multipliers No Longer Define AI Accelerators?Jun 24, 2021
Current custom AI hardware devices are built around super-efficient, high performance matrix multiplication. This category of accelerators includes the
numerical-linear-algebra/README.md at master · fastai/numerical-linear-algeMay 31, 2021
Free online textbook of Jupyter notebooks for fast.ai Computational Linear Algebra course - fastai/numerical-linear-algebra
Essential Linear Algebra for Data Science and Machine Learning - KDnuggetsMay 16, 2021
Linear algebra is foundational in data science and machine learning. Beginners starting out along their learning journey in data science--as well as established practitioners--must develop a strong familiarity with the essential concepts in linear algebra.
What Really IS a Matrix Determinant?Apr 25, 2021
The geometric intuition behind determinants could change how you think about them.
The Matrix Calculus You Need For Deep LearningJun 8, 2018
Most of us last saw calculus in school, but derivatives are a critical part of machine learning, particularly deep neural networks, which are trained by optimizing a loss function. This article is an attempt to explain all the matrix calculus you need in order to understand the training of deep neural networks. We assume no math knowledge beyond what you learned in calculus 1, and provide links to help you refresh the necessary math where needed.
Eigenvectors and Eigenvalues explained visuallyMay 15, 2018
Linear Algebra Cheat Sheet for Machine LearningFeb 25, 2018
All of the Linear Algebra Operations that You Need to Use in NumPy for Machine Learning. The Python numerical computation library called NumPy provides many linear algebra functions that may be useful as a machine learning practitioner. In this tutorial, you will discover the key functions for working with vectors and matrices that you may find useful as a machine…
linear-models
A Beginner’s Guide to Generalized Linear Models (GLMs)Jul 23, 2025
A standard linear regression assumes the outcome is continuous and normally distributed, which just doesn’t hold up in many of these cases. That’s where GLMs come in.
A Beginner’s Guide to Linear Programming and the Simplex AlgorithmJan 23, 2023
Tackling a wide range of optimization problems.
GLMs Part I: A Rigorous Mathematical Formulation | by Andrew Rothman | Apr,May 5, 2021
Intuition for Unifying Theory of GLMs with Derivations in Canonical and Non-Canonical Forms
GLMs Part II: Newton-Raphson, Fisher Scoring, & Iteratively Reweighted LeasMay 5, 2021
Generalized Linear Models (GLMs) play a critical role in fields including Statistics, Data Science, Machine Learning, and other computational sciences. In Part I of this Series, we provided a…
linecards
All Linecards | Avnet AbacusJun 22, 2024
View our line cards below and learn how Avnet and our supplier partnerships can help you deliver innovative technology around the world.
Supplier Linecard | Avnet SilicaJun 22, 2024
Full supplier linecard of Avnet Silica, showing their current franchises
Linecard | EBV Elektronik - AvnetJun 22, 2024
Full supplier linecard of EBV Elektronik. manufacturers, supplier portfolio
The LinkedIn Hack That Made Me $120,000Jun 7, 2022
Here’s why a writer at TechCrunch called me the biggest hustler he has ever met.
linux
journalctl Command in Linux: Query and Filter System LogsFeb 26, 2026
journalctl queries the systemd journal and lets you filter logs by unit, time, priority, boot, and process. This guide covers the most useful journalctl options with practical examples.
Understanding the /etc/fstab File in LinuxFeb 19, 2026
The /etc/fstab file defines how filesystems and storage devices are mounted at boot. This guide explains the fstab format, field meanings, mount options, and how to add new entries safely.
IP Command CheatsheetFeb 19, 2026
Quick reference for using ip command to manage addresses, routes, links, and network diagnostics in Linux
Chmod CheatsheetFeb 17, 2026
Quick reference for changing file and directory permissions with chmod in Linux
Tar CheatsheetFeb 13, 2026
Quick reference for creating, listing, extracting, and compressing tar archives in Linux
Screen CheatsheetFeb 12, 2026
Quick reference for GNU Screen sessions, windows, detach/attach, and common key bindings
How to Parse Command-Line Options in Bash with getoptsFeb 11, 2026
This guide explains how to parse command-line options in Bash with getopts, including option strings, OPTARG and OPTIND, error handling, and practical script examples.
SSH Hardening: Best Practices for Securing Your ServerFeb 4, 2026
Learn how to harden your SSH server with best practices including key-only authentication, disabling root login, changing the default port, and setting up Fail2Ban.
Bash Positional ParametersFeb 4, 2026
Positional parameters are Bash variables that hold arguments passed to a script or function. Learn how to use $1, $2, $@, $#, and the shift command in Bash.
How to Generate SSH Keys on LinuxFeb 4, 2026
Learn how to generate SSH keys on Linux using ssh-keygen, copy them to remote servers, and set up passwordless authentication.
ChatGPT Containers can now run bash, pip/npm install packages, and download filesJan 26, 2026
One of my favourite features of ChatGPT is its ability to write and execute code in a container. This feature launched as ChatGPT Code Interpreter nearly three years ago, was …
Linux Kernel Explorer | reverser.devNov 27, 2025
Interactive Linux kernel source code browser with guided learning paths.
Punkbit | Kitty terminal tips and tricksNov 25, 2025
The Linux Boot Process: From Power Button to KernelOct 26, 2025
A detailed walkthrough of the Linux boot process from power button to kernel initialization
How to Fingerprint Websites With WhatWeb - A Practical, Hands-On GuideOct 17, 2025
Another one of our simple, hands-on pen-testing tutorials. This one teaches you to finger a website for status code, server info, CMS etc.
Modern Linux Tools - Gamedev GuideOct 13, 2025
Programming notes for Unreal Engine, Houdini, Game Development, Math, & Graphics
Getting Started With Tmux: Absolute Essentials for BeginnersAug 23, 2025
tmux is an excellent productivity tool for pro Linux users who love the terminal. It certainly has a learning curve involved though.
Introduction to FlatpakAug 17, 2025
The universal packaging system from Fedora is popular among developers and desktop Linux users.
How to Create a Custom File Type on Linux with a Custom IconJul 24, 2025
As a Flutter developer building a Linux desktop app, I recently wanted my app to support a custom file format — let’s call it .maso. My goal was simple: In this post, I’ll walk you through how to set…
Regex Cheatsheet: Essentials You Must KnowJul 23, 2025
Struggling with regex? This simple cheatsheet breaks down common patterns, symbols, and examples you can use right away.
Chapter 1: Introduction to AWKJul 11, 2025
Learn AWK basics for Linux sysadmins. Master field extraction, built-in variables, and pattern-action syntax with real log analysis examples.
Why Flatpak Apps Use So Much Disk Space On LinuxMay 5, 2025
This tutorial explains why Flatpak apps use so much disk space and are larger in size compared to traditional packages in Linux.
pdfgrepApr 2, 2025
When you deleted /lib on Linux while still connected via sshMar 23, 2025
Let's first not talk about why this can happen, but deleting /lib, /usr/lib, or some other essential runtime files happens quite a lot (as you can see: here, here, here, and here). In this post, I will only discuss what happens when you delete /lib on Linux and how to recover from that.
The easy
Packaging a Python App to Executable .deb BinaryMar 18, 2025
I am sharing how I packaged my python application into an executable .deb package in this tutorial.
10 Essential Bash Shell Commands for Data ScienceMar 10, 2025
In this tutorial, we’ll cover 10 essential Bash shell commands every data scientist should know—commands that save time, simplify tasks, and keep you focused on insights rather than busywork.
The Ultimate Kubectl Command Cheat SheetMar 4, 2025
Take a quick look at kubectl commands that are essential for managing your Kubernetes deployments.
LLM 0.20Jan 23, 2025
New release of my [LLM](https://llm.datasette.io/) CLI tool and Python library. A bunch of accumulated fixes and features since the start of December, most notably: - Support for OpenAI's [o1 model](https://platform.openai.com/docs/models#o1) …
kitty.confJan 20, 2025
kitty is highly customizable, everything from keyboard shortcuts, to rendering frames-per-second. See below for an overview of all customization possibilities. You can open the config file within k...
What are File Descriptors in Linux?Jan 6, 2025
Understand file descriptors, an essential core concept of Linux.
Linux: How to Use Cron to Schedule Regular JobsJan 5, 2025
With Cron, you can schedule just about any type of job on Linux, such as backing up specific directories to an external drive.
The kitty command line interfaceDec 24, 2024
Run the kitty terminal emulator. You can also specify the program to run inside kitty as normal arguments following the options. For example: kitty --hold sh -c “echo hello, world” For comprehensiv...
A Comprehensive Guide to Computer Networking in Linux: Commands, Tools, and Best PracticesDec 20, 2024
Introduction
Linux has become a cornerstone of modern networking, powering everything from personal computers to enterprise servers, firewalls, and network-attached storage (NAS) devices. For beginners venturing into Linux networking, understan...
Using Arrays in YAML: Practical ExamplesDec 17, 2024
Make your config files even more useful by adding a list of items in a sequence in YAML.
Understanding Storage Media in Linux: A Beginner’s GuideDec 13, 2024
Introduction
Storage media management is a fundamental aspect of working with Linux systems. Whether you’re a new Linux user or looking to expand your knowledge, understanding how to work with different storage devices is essential. This guide ...
Introduction to Using Grep With Regular Expressions via WarpDec 12, 2024
After mastering regex, tools like grep become much more useful.
An Introduction to the Snap Universal Package ManagerDec 7, 2024
Snap packages combine the app and any dependencies it may have in a single, compressed file.
40+ Linux Commands for Every Machine Learning EngineerNov 28, 2024
This article covers essential Linux commands every ML engineer should know, with explanations for beginners and enough detail for experienced users.
8 Powerful Linux Commands to Identify Hard Drive BottlenecksNov 27, 2024
I will explain how to identify hard drive bottlenecks on Linux using various tools and commands, and what to look for when troubleshooting disk-related issues.
Ansible Cron Module: Manage Cron Jobs on Remote SystemsNov 26, 2024
The cron module in Ansible lets you run and manage the cron jobs on remote systems.
Warp Is a Power User's Dream Terminal for LinuxNov 23, 2024
Warp does have a bit of a learning curve, but once you get how it works, you will find it to be terminal nirvana.
Linux Environment Variables: A Beginner’s Guide to printenv, set, export, and alias | R-bloggersNov 15, 2024
Table of Contents Understanding Environment Variables The printenv Command Working with set Command The export Command Using alias Command Practical Applications Your Turn! (Interactive Section) Best Practices and Common Pitfalls Quick Takeawa...
An Overview of Essential Docker Compose Commands and Their UsageOct 19, 2024
Here's an overview of the Docker Compose file components and various commands you can use to manage them.
10 Essential Terminal Commands Every Developer Should KnowOct 19, 2024
List of useful Unix terminal commands to boost your productivity. Here are some of my favorites.
Understanding Expansion in the Linux Shell | R-bloggersOct 19, 2024
Introduction For beginners venturing into the world of Linux, understanding shell expansion is a crucial step towards mastering the command line. Shell expansion is a powerful feature that allows users to generate complex commands and manipulat...
Introduction to Omakub, a Curated Ubuntu Environment by DHHJul 20, 2024
Omakub is a heavily curated Ubuntu installation for developers, offered by Ruby on Rails creator David Heinemeier Hansson. We test it out.
What You Get After Running an SSH Honeypot for 30 DaysJul 3, 2024
What is a honeypot?A honeypot detects and records attacks when an attacker tries to break into a system. The honeypot we will discuss here is an SSH honeypot. Environment12OS: Ubuntu 24.04 LTS x86_6
Start all of your commands with a commaJun 25, 2024
umount Command in LinuxJun 17, 2024
Learn some practical examples of using umount command to unmount the mounted disk partitions in Linux command line.
How I Use ddrescue Command to Recover Data from Failing Hard Disk in LinuxJun 5, 2024
The ddrescue utility is a Linux command-line tool for recovering data from (almost) broken hard drives. Here's how I use it.
w Command ExamplesMay 23, 2024
Probably the shortest command in Linux ecosystem, w gives you quick list of logged-in users.
wget Command ExamplesMay 22, 2024
The wget command allows you to download files over the internet in the Linux command line.
How to Host Your Blog with Ghost on Ubuntu 24.04May 22, 2024
This guide will walk you through installing Ghost on your Ubuntu server and configuring Nginx (a popular web server) to host your blog.
How to use find command to delete all *.log files created in last 90 days eMay 15, 2024
Here is a quick tip about using the find command to delete all *.log files created in the last 90 days except for the last 7 days on Linux.
Linux/Unix: pstree Command Examples: See A Tree Of ProcessesMay 13, 2024
The pstree command shows running processes as a tree under Linux, macOS, FreeBSD, OpenBSD, NetBSD and Unix-like operating systems.
11 System Resource Monitoring Tools for Linux Command LineMay 11, 2024
Keep a tab on the system resource utilization using one of these command line tools.
Data Science at the Command Line, 2eMay 7, 2024
This is an overview of all the command-line tools discussed in this book. This includes binary executables, interpreted scripts, and Z Shell builtins and keywords. For each command-line tool, the...
Mastering the Linux htop CommandApr 16, 2024
In the world of Linux system management, monitoring your system's resources is as crucial as having a...
Linux Crisis ToolsMar 25, 2024
Create Multiple IP Addresses to One Single Network InterfaceMar 16, 2024
In this article, we will understand how to create a virtual interface and assign a different range of IP addresses to a single network interface in Linux.
Linux Series: Understanding Cron in UbuntuMar 8, 2024
One of the notable things computer technology has allowed humanity to do since the beginning is to...
How To Install and Use PostgreSQL on Ubuntu 20.04 | DigitalOceanFeb 29, 2024
PostgreSQL, or Postgres, is a relational database management system that provides an implementation of the SQL querying language. This guide demonstrates how…
Build a Simple Linux Kernel Using BuildrootFeb 28, 2024
Introduction Welcome to this guide on how to build a Linux kernel using Buildroot! This...
15 Useful ‘FFmpeg’ Commands for Video, Audio and Image Conversion in LinuxFeb 11, 2024
This article explores FFmpeg's capabilities for converting video, audio, and image files with practical examples in Linux.
Linux PerformanceOct 15, 2023
A collection of documents, slides, and videos about Linux performance, mostly created by Brendan Gregg, and with a focus on performance analysis.
Epoch Converter - Unix Timestamp ConverterOct 7, 2023
Convert Unix Timestamps (and many other date formats) to regular dates.
Linux: 3 ways to search patterns in filesSep 23, 2023
Introduction: This is the first post in my bite-sized learning series. In this series we...
How to List USB Devices in LinuxSep 14, 2023
Want to identify the USB devices connected to your system? Here are multiple ways to list USB devices in Linux command line.
How to Save cURL Output to a File?Aug 25, 2023
Learn to save the curl command output to a file for later usage in this quick tutorial.
Schedule a Shutdown in Linux Command LineAug 18, 2023
Learn to schedule a shutdown in Linux. Also explore routine shutdowns using cron jobs and systemd-timers.
How to get and extract filename extension in Bash - nixCraftAug 5, 2023
Explains three methods to get and extract filename extension in Bash for Linux and Unix shell scripting needs.
bc Command in LinuxAug 1, 2023
The bc command is used for precision calculation. You are more likely to use it for floating point operations in bash scripts.
Use Systemctl Status Command to Check Service StatusJul 23, 2023
Learn how to check and understand the status of a systemd service using the systemctl command.
Shell Built-in CommandsJul 23, 2023
In Linux, there are shell built-in commands which you are already using but never paid attention to. Learn more about them in this tutorial.
Magic with Linux CommandsJul 22, 2023
"Linux: Where Geeks Roam Free!" Welcome to the world of Linux, a place where the nerds, tech...
Using Until Loop in BashJul 22, 2023
While for maybe the most popular bash loop, wait until you discover until. Pun intended :)
Exclude Files and Directories from rsyncJul 12, 2023
Want to exclude files and directories while making backup with rsync? Here's how to use the --exclude flag of rsync command.
Redirect Linux Command Output to FileJul 9, 2023
Want to analyze the effect of Linux command for later? Here's how you can save Linux command output to a file.
Clearing Pip CacheJul 1, 2023
Cleaning Pip cache helps you in troubleshooting and getting fresh Python packages.
Read File Line by Line in BashJun 28, 2023
Here are a couple of ways for reading file line by line in the Bash shell.
Run Multiple Linux Commands in One GoJun 24, 2023
In this quick, beginner's tip, learn to run multiple Linux commands one after another in a single command.
Demystifying Linux System Management: Navigating Filesystem and StorageJun 19, 2023
Step into a World of Discovery: Unveiling the Wonders of Linux System Management. Delve into the...
System Calls in LinuxJun 10, 2023
System calls are an integral part of the Linux architecture. Learn about the most common types of system calls in Linux.
The importance of a name.Jun 5, 2023
Appending to Arrays in BashMay 30, 2023
In this quick Bash tip, you'll learn about appending to an existing array in bash.
Using exec Command in Bash Shell ScriptsMay 28, 2023
The exec command in shell scripts is super useful for logging, reading from files and running commands by replacing the current process.
Makefile Tutorial by ExampleMay 16, 2023
Everything Essential About the tmp Directory in LinuxMay 5, 2023
Learn some crucial things about the /tmp directory. You'll also learn how it is different from the /var/tmp directory.
The shrinking role of semaphores [LWN.net]Apr 26, 2023
Linux Kernel 6.3 ReleasedApr 26, 2023
An anonymous reader quotes a report from ZDNet, written by Steven Vaughan-Nichols: The latest Linux kernel is out with a slew of new features -- and, for once, this release has been nice and easy. [...] Speaking of Rust, everyone's favorite memory-safe language, the new kernel comes with user-mode L...
How to Use Linux’s screen CommandApr 15, 2023
Ever wanted to run a terminal command in the background, and then pull it up later? You need the Linux screen command!
Force Linux User to Change Password at Next LoginApr 11, 2023
Think the passwords need to be changed by a certain user? Here's how to force a Linux user to change the password at the next login.
Use chattr Command in LinuxApr 10, 2023
With chattr command, you can make a file 'undeletable' even by root. Here are some common usage of the chattr command in Linux.
Special Variables in Bash Shell ScriptingApr 5, 2023
The bash shell has some special variables that have specific usages and purposes. Learn more about them here.
Fixing Mount Point Does Not Exist Error in LinuxMar 31, 2023
Learn how to troubleshoot and fix the 'mount point does not exist' error in Linux with our step-by-step guide.
pdfgrep: Use Grep Like Search on PDF Files in Linux Command LineMar 26, 2023
Even if you use the Linux command line moderately, you must have come across the grep command. Grep is used to search for a pattern in a text file. It can do crazy powerful things, like search for new lines, search for lines where there are no uppercase characters, search
trimstray/the-book-of-secret-knowledge: A collection of inspiring lists, manuals, cheatsheets, blogs, hacks, one-liners, cli/web tools and more.Mar 25, 2023
A collection of inspiring lists, manuals, cheatsheets, blogs, hacks, one-liners, cli/web tools and more. - trimstray/the-book-of-secret-knowledge
All commands sorted by votesMar 20, 2023
A repository for the most elegant and useful UNIX commands. Great commands can be shared, discussed and voted on to provide a comprehensive resource for working from the command-line
A different approach to fuzzy findingMar 19, 2023
Using XXD Command in LinuxMar 17, 2023
Discover how to use the XXD command in Linux with practical examples. This comprehensive guide will help you understand the features and functionality of XXD.
Ping Sweep Using nmap on LinuxMar 16, 2023
See what devices are active on your subnetwork using peng sweep with nmap command in Linux.
How to Use the gzip Command in LinuxMar 14, 2023
gzip is one of the most useful but often overlooked utilities. Learn to use this handy tool.
Linux Process Management: A Deep DiveMar 2, 2023
Improve your Linux system's performance with efficient process management. Introduction A...
Use the Chage Command in LinuxMar 2, 2023
Learn to use the chage command and manage user account passwords in a more controlled manner.
Exploring Linux KernelsFeb 26, 2023
Introduction A Kernel is the lowest level of software that can interface with the...
Bobby Iliev - Introduction to Bash ScriptingFeb 23, 2023
This is an open-source introduction to Bash scripting ebook that will help you learn the basics of Bash scripting and start writing awesome Bash scripts that will help you automate your daily SysOps, DevOps, and Dev tasks...
Discovering the Power of xargs Command in LinuxFeb 23, 2023
Introduction The xargs command in Linux is a powerful tool that allows you to run...
How to Create Your Own Commands in LinuxFeb 19, 2023
In this article, we will discuss the process of creating customized Linux commands. This is an...
Unix Time Stamp - Epoch ConverterFeb 9, 2023
Epoch and unix timestamp converter for developers. Date and time function syntax reference for various programming languages.
mikefarah/yq: yq is a portable command-line YAML, JSON, XML, CSV, TOML and properties processorFeb 7, 2023
yq is a portable command-line YAML, JSON, XML, CSV, TOML and properties processor - mikefarah/yq
Using Curl to make REST API requests | LinuxizeFeb 4, 2023
In this article, we're going to discuss how to use Curl to interact with RESTful APIs. Curl is a command-line utility for transferring data from or to a remote server.
Find All Symbolic Links in LinuxJan 31, 2023
Looking for all the soft links on your Linux system? Here are a couple of methods to find symbolic links.
Netstat Command Examples in LinuxJan 30, 2023
Netstat is one of the most common networking commands in Linux. Learn some useful examples of netstat in this tutorial.
CLI tools you won't be able to live without ?Jan 19, 2023
A list of 50 command line tools, which you should definitely check out!
How To Install MySQL on Ubuntu 22.04 | DigitalOceanJan 16, 2023
MySQL is an open-source database management system, commonly installed as part of the popular LAMP (Linux, Apache, MySQL, PHP/Python/Perl) stack. It implemen…
Torch and Torchvision C installation and debugging on LinuxJan 16, 2023
Example debugging RoIAlign from Torchvision
Compare Two Directories in the Linux Command LineJan 16, 2023
Want to see how the content of the two directories differs? Use the diff command and see what files are identical or different.
The Power of Linux Cgroups: How Containers Take Control of Their ResourcesJan 13, 2023
Optimizing Container Resource Allocation with Linux Control Groups
A Visual Guide to SSH Tunnels: Local and Remote Port ForwardingJan 13, 2023
SSH port forwarding explained in a clean and visual way. How to use local and remote port forwarding. What sshd settings may need to be adjusted. How to memorize the right flags.
List Mounted Drives in LinuxJan 4, 2023
If you want to perform certain operations on a drive, you need to know its details. Learn how to list currently mounted drives in Linux.
How to install PipeWire on Ubuntu Linux - Linux Tutorials - Learn Linux ConDec 24, 2022
The purpose of this tutorial is to install PipeWire on Ubuntu Linux. PipeWire is a sound server that can handle playback and capturing of audio and video streams. It is a worthy replacement to other…
What is /dev/zero in Linux?Dec 21, 2022
One of the special device files in Linux, /dev/zero is used for creating files filled with zeroes.
Important GCC Flags in LinuxDec 16, 2022
You can use GCC flags to extend the functionality of the GCC compiler. Here are some of the common and yet important flags.
tree Command Examples in LinuxDec 13, 2022
The tree command is excellent for viewing the structure of a directory and its subdirectories in Linux. Learn how to use it with practical examples.
Kill Process Running on a Specific Port in LinuxDec 13, 2022
Want to kill the processes running on specific ports? No need to know the process ID or name. You can terminate a process based on the port number it is using.
Using the Make Utility and Makefiles in Linux [Guide]Dec 7, 2022
Learn the basics of makefile and how to use the make utility for building your applications in Linux with a sample C project.
Scan Ports With netcat Command in LinuxDec 7, 2022
Netcat is a popular networking utility for Linux based systems. Learn how to use it to scan for open ports.
How to Create Large Files in LinuxDec 5, 2022
Want to create large file of 1 GB or some other size? Here are various ways of creating large files with predefined sizes in Linux.
error I get when doing sudo apt-get update. Tried other solutions but they didn't workDec 4, 2022
20 votes, 25 comments. 235K subscribers in the Ubuntu community. The Ubuntu community on Reddit
LINUX CommandsDec 4, 2022
A Mind Map about LINUX Commands submitted by kPastor on Jul 20, 2015. Created with Xmind.
How to Find Open Ports and Close Them in LinuxNov 30, 2022
Troubleshooting networks? Here's how to find the open ports and close those open ports in the Linux command line.
jlevy/the-art-of-command-line: Master the command line, in one pageNov 28, 2022
Master the command line, in one page.
How to Get the UUID of a Disk Partition in LinuxNov 28, 2022
UUID is a property of disk partitions used to uniquely identify them. Here are various ways to get the UUID of a disk partition in the Linux command line.
How to Use the duf Command in LinuxNov 20, 2022
The duf command is a modern utility that combines the features of the du and df commands in a pretty and structured way.
How to activate Bluetooth on LinuxNov 18, 2022
Hey folks !! Many peoples have Bluetooth activation problem with their linux distro after...
What is the Purpose of /etc/hosts File in LinuxNov 14, 2022
The /etc/hosts file is an integral part of the Linux system. But what is it used for?
Using Brace Expansion in Bash ShellNov 10, 2022
Brace expansion in the bash shell is a lesser known but an awesome feature. Learn about using them like a Pro Linux user with practical examples.
Exclude Files and Directories While Creating Tar FileNov 6, 2022
Don't want all the files in your tarball? Here's how to exclude files and folders while creating tar archive file.
Connect to SSH Server on Alternate PortNov 6, 2022
Here's a beginner's guide for adding an alternate port to SSH server and the steps for connecting to it.
The Lesser Known Dir Command in LinuxOct 30, 2022
Learn about the dir command, the less known but identical cousin of the popular ls command.
File Locking in LinuxOct 29, 2022
File locking in Linux is the solution by which you can ensure that the file for reading/writing is going to be handled safely.
Shell Script Best Practices — The Sharat'sOct 29, 2022
This article is about a few quick thumb rules I use when writing shell scripts that I’ve come to appreciate over the years. Very opinionated....
SadServers - Linux & DevOps Troubleshooting InterviewsOct 28, 2022
Linux Troubleshooting Interview DevOps SRE
How to use SIGINT and other Termination Signals in LinuxOct 15, 2022
Terminating executing process is more than just kill -9. Here are some of the prominent termination signals and their usage.
Improve Linux system performance with noatime | Opensource.comOct 9, 2022
Whenever I upgrade Linux on my home computer, I have a list of tasks I usually do.
How fstab works - introduction to the /etc/fstab file on Linux - Linux TutoOct 9, 2022
The file is one of the most important files in a Linux-based system, since it stores static information about filesystems, their mountpoints and mount options. In this tutorial we will learn to know…
6 Different Ways to List Disks in Linux Command LineOct 9, 2022
This detailed guide will give you enough information to start using Emacs, and enough extra to make you want more.
How to Print Environment Variables in LinuxOct 4, 2022
Wondering what environment variables are set on your current shell? Learn how to print environment variables in Linux.
Everything You Important You Should Know About the known_hosts file in LinuOct 2, 2022
There is a known_hosts file in the .ssh directory and it is an integral part of the SSH mechanism. Learn more about it.
How to count all files in a directory in LinuxOct 2, 2022
To count all files in a directory in linux, simply cd to that directory and then run the following...
How to Follow Symbolic LinksOct 1, 2022
You got a symbolic link and wondering about the actual source file? Here's how to follow symlinks in Linux.
How to Know if You Are Using Systemd or Some Other Init in LinuxSep 25, 2022
Is your Linux system using systemd or sysv or some other init system? Here's how to find out.
Linux On The Laptop Works So Damn Well That It’s Boring | by Clive ThompsonSep 24, 2022
Which is good! Boring = success
How to Change IP Address in LinuxSep 20, 2022
Learn different ways of changing the IP address in Linux. Also learn how to make the changes [ermanent.
Get Absolute File Path in LinuxSep 13, 2022
Here are different ways to get the absolute file paths in Linux command line.
Common Networking Port Numbers in LinuxSep 8, 2022
Here are the common networking ports you'll encounter in Linux.
How to Search in Less CommandSep 8, 2022
The less command is excellent for reading large text files. It also allows you to search for text in it. Here's what you need to know about searching in less.
Using ifup, ifdown, and ifquery commands in LinuxSep 5, 2022
The ifup, ifpdown and ifquery are parts of the same package and help you troubleshoot the network interfaces in Linux.
SSH tips and tricks | Carlos BeckerAug 17, 2022
Since I joined Charm, I’ve been working and learning more about SSH, and I thought I would share a few quick tips and tricks with you. Forward Yubikey Agent If you use a Yubikey (you should), you can use it in your remotes by having the key in a SSH agent and forwarding it. To manage the agent, I strongly recommend yubikey-agent. You can then forward it in your ~/.ssh/config like the following:
Find Files Modified in Last N Minutes in LinuxAug 17, 2022
Finding recently modified files is a helpful parameter when troubleshooting your code or server. Learn how to find modified files in Linux command line.
Unlink Command in LinuxJul 27, 2022
Learn about the unlink command, an alternate method of deleting files in the Linux terminal.
How to convert JSON to CSV using Linux / Unix shell - nixCraftJul 22, 2022
This page explains how to convert JSON to CSV format using Linux, macOS, *BSD or Unix command-line utilities.
Small, Sharp ToolsJul 20, 2022
A few words on the Unix philosophy of building small programs that do one thing well, and compose for comprehensive functionality.
How to Use the find Command With execJul 18, 2022
Find works on searching files based on a number of criteria. The exec command gives you the ability to work on those results. Here are some examples of find exec command combination.
50+ super useful Linux CommandsJul 17, 2022
✧ Beginner to Pro, for everyone ✧ ↓
— Swapna Kumar Panda (@swapnakpanda)
13 must-know SSH CommandsJul 8, 2022
A list of popular SSH commands for SSH connections, key generation & SSH agents that I'm using on a daily basis.
Making the Most of man pages in LinuxJul 5, 2022
Though extremely useful, man pages in Linux can be daunting and intimidating at first. This article aims to make it a bit easier to peruse manuals and quickly get the help one needs.
How to make a Symbolic Link on LinuxJun 21, 2022
Symbolic links are a link on Linux systems which point another file or folder. It means that...
After GRUB appears I see ACPI BIOS ERROR messages before Ubuntu 20.04 starts normally. How do I solve the problem?Jun 21, 2022
I've installed Ubuntu 20.04 on a Lenovo Ideapad 330 as single operating system. In normal boot on my laptop, after choosing the operating system at the GRUB menu it shows some ACPI BIOS ERROR and o...
How To Install PostgreSQL on Ubuntu 20.04 [Quickstart] | DigitalOceanMay 29, 2022
PostgreSQL, or Postgres, is a relational database management system that provides an implementation of the SQL querying language. This quickstart guide demon…
How to free up space in UbuntuMay 26, 2022
Whenever you are running out of disk space on Ubuntu server/desktop , There are several ways to free...
How to Kill a Process in Linux Command LineMay 26, 2022
Found a misbehaving process? Here's how to teach a lesson to it by terminating it using various commands.
How to Set Timeout in cURLMay 14, 2022
Downloading with curl taking too long? Set a timeout with curl command, so you don't have to wait long.
Understanding the /etc/shells fileMay 14, 2022
How to make disk image with dd on Linux or UnixMay 14, 2022
Explains how to use the dd command on Linux, macOS (OS X), FreeBSD, and Unix like system to clone hard disk or partitions from the CLI
Understanding /etc/passwd file in LinuxMay 13, 2022
Introduction Linux has evolved from being someone's hobby to a full-fledged multi-user...
How to fix “bash: add-apt-repository: command not found” error on Ubuntu/DeMay 6, 2022
Explains how to fix "bash: add-apt-repository: command" error on an Ubuntu or Debian Linux system using the apt/apt-get command.
GitHub - onceupon/Bash-Oneliner: A collection of handy Bash One-Liners andMay 4, 2022
A collection of handy Bash One-Liners and terminal tricks for data processing and Linux system maintenance. - onceupon/Bash-Oneliner
Ubuntu 21.10 suspension problemsMar 26, 2022
I'm using Ubuntu 21.10 on a Lenovo Legion laptop:
GNOME 40.4.0
Windowing X11
15.5GB DDR3, 1.3TB HD
Intel i7-9750 @ 2.6GHz + nV GTX 1660
This system recently forgot how to suspend - from both the ...
XARGS only makes your life easierMar 23, 2022
One command-line tool that would make your life easier is the xargs command. So, what is...
14 Awesome CLI Tools for Modern Software DevelopersMar 23, 2022
General Command Line Tools Autojump Autojump is a tool that learns your most...
How to Make a File Executable in Linux terminal?Mar 17, 2022
New to Linux command line and wondering how to make a bash script or some other file executable? Here's how to do it.
How to: Linux / UNIX create soft link with ln command - nixCraftMar 14, 2022
This quick guide explains what is a symbolic link and how to create a soft link (symbolic) under Linux, macOS, *BSD or Unix-like system.
How to Find the PID and PPID of a Process in LinuxJan 29, 2022
Learn how to find PID using a process name in Linux. Also learn to get the parent process ID (PPID) of the given process.
What does the sleep command do in Linux? - nixCraftJan 27, 2022
What does the sleep command do in Linux? Learn how to use Linux sleep command to pause a bash shell script including some advanced examples.
systemd by example - the systemd playgroundJan 26, 2022
SSH Kung FuJan 16, 2022
An extended look at SSH features that can serve a variety of purposes for different use cases.
Important penetration testing cheat sheetJan 12, 2022
imthenachoman/How-To-Secure-A-Linux-Server: An evolving how-to guide for securing a Linux server.Jan 12, 2022
An evolving how-to guide for securing a Linux server. - imthenachoman/How-To-Secure-A-Linux-Server
wader/fq: jq for binary formatsDec 27, 2021
jq for binary formats - tool, language and decoders for working with binary and text formats - wader/fq
Invaluable command line tools for web developersDec 26, 2021
junegunn/fzf: :cherry_blossom: A command-line fuzzy finderDec 26, 2021
:cherry_blossom: A command-line fuzzy finder.
exa · a modern replacement for lsDec 19, 2021
dalance/procs: A modern replacement for ps written in RustDec 15, 2021
A modern replacement for ps written in Rust.
BurntSushi/ripgrep: ripgrep recursively searches directories for a regex pattern while respecting your gitignoreDec 15, 2021
ripgrep recursively searches directories for a regex pattern while respecting your gitignore - BurntSushi/ripgrep
bootandy/dust: A more intuitive version of du in rustDec 14, 2021
A more intuitive version of du in rust.
Learning | Linux JourneyDec 13, 2021
Four Linux server monitoring toolsDec 13, 2021
Here is four strong monitoring tools i would like to present for you. htop - interactive process viewer You may know the standard tool for watching real time processes on your machine top. If not, run $ top to see it in action, and $ man top to read the manual. The
My First 10 Minutes On a Server - Primer for Securing Ubuntu | CodelittDec 12, 2021
How to secure an ubuntu server against attacks.
Learning | Linux JourneyDec 12, 2021
Learning | Linux JourneyDec 12, 2021
Lsof – A Unix Utility You Should Know AboutDec 12, 2021
This is the third post in the article series about Unix and Linux utilities that you should know about. In this post I will take you through the useful lsof tool. If netcat was called the Swiss Army Knife of Network Connections, then I'd call lsof the Swiss Army Knife of Unix debugging. Lsof follows Unix philosophy...
Learning | Linux JourneyDec 12, 2021
Learning | Linux JourneyDec 12, 2021
Learning | Linux JourneyDec 12, 2021
Learning | Linux JourneyDec 12, 2021
How to Create and Use Alias Command in LinuxDec 12, 2021
In this article, we will show how to create your own alias and execute frequently used commands without having to type each command again and again.
Learning | Linux JourneyDec 12, 2021
Learning | Linux JourneyDec 12, 2021
Learning | Linux JourneyDec 12, 2021
chmln/sd: Intuitive find & replace CLI (sed alternative)Dec 12, 2021
Intuitive find & replace CLI (sed alternative).
Learning | Linux JourneyDec 12, 2021
Learning | Linux JourneyDec 12, 2021
http://blog.urfix.com/25-ssh-commands-tricks/Dec 11, 2021
The Fascinating World of Linux System CallsDec 11, 2021
Simply put, system calls are the primary way that programs interface with the operating system. Contact Sysdig for more information.
sharkdp/fd: A simple, fast and user-friendly alternative to 'find'Dec 11, 2021
A simple, fast and user-friendly alternative to 'find' - sharkdp/fd
Learning | Linux JourneyDec 11, 2021
Learning | Linux JourneyDec 11, 2021
Adventures in /usr/bin and the likesDec 11, 2021
Digging up some useful and not so popular commands in Linux
http://cb.vu/unixtoolbox.xhtml#zipDec 11, 2021
Learning | Linux JourneyDec 11, 2021
Learning | Linux JourneyDec 11, 2021
Learning | Linux JourneyDec 11, 2021
Learning | Linux JourneyDec 11, 2021
How to use digDec 4, 2021
Wget Command in Linux with ExamplesDec 4, 2021
Linux wget command examples: Learn how to use the wget command under UNIX / Linux / MacOS/ OS X / BSD operating systems.
Bash scripting cheatsheetDec 2, 2021
Variables · Functions · Interpolation · Brace expansions · Loops · Conditional execution · Command substitution · One-page guide to Bash scripting
Sudo Command in LinuxDec 2, 2021
The sudo command allows you to run programs as another user, by default the root user.
10 handy Bash aliases for LinuxDec 2, 2021
Get more efficient by using condensed versions of long Bash commands.
The linux commands that help me workDec 2, 2021
Here are some commands to help me with my work. And what are your useful commands that you use? Sea...
15 Command-Line Tools to Make You Better at Shell & CLIDec 2, 2021
Shell is the essential tool for every programmer. The more familiar you become with the available too...
Awesome Command-Line tools to boost your productivityDec 2, 2021
If you're on a Unix system you probably have to constantly interact with the terminal, one way or ano...
The Shell Introduction I Wish I HadDec 2, 2021
I write a letter to my past self about the Shell's importance I wish I'd focused on earlier in my career.
http://cb.vu/unixtoolbox.xhtmlDec 2, 2021
101 Bash Commands and Tips for Beginners to ExpertsDec 2, 2021
Update 25 Sep 2019: This article is now available in Japanese, thanks to the hard work of ラナ・クアール....
Show All Running Processes in Linux using ps/htop commandsDec 2, 2021
Learn how to show all running processes in Linux and get a snapshot of the current processes on any Linux distribution using the cli tools.
Linux Tutorial: PostgreSQL Database and LinuxDec 2, 2021
Using the PostgreSQL database with Linux. This tutorial also covers some of the pitfalls users may experience.
Bash Patterns I Use WeeklyNov 24, 2021
5 bash tricks I find myself using often that I wish I'd discovered sooner.
How to compress the whole directory using xz and tarNov 23, 2021
Explains how to compress the whole directory using xz and tar on Linux, macOS, and Unix-like systems to get maximum compression.
Learning Containers From The Bottom UpNov 15, 2021
What is a Container? Container vs. VM? Docker vs. Kubernetes. How to organize the learning efficiently?
CommandsOct 27, 2021
15 Super Useful Examples of the Find Command in LinuxOct 15, 2021
Learn the super powerful and super useful find command with these practical examples.
Essential Linux Command-Line Tricks for Computer Vision ResearchersOct 7, 2021
In this post, you will learn some cool command line tricks which can help you to speed up your day-to-day R&D.
What is Shebang in Linux Shell Scripting?Oct 1, 2021
The seemingly insignificant #! characters at the beginning of a shell script has a major significance on how your script will be executed.
Unusual Ways to Use Variables Inside Bash ScriptsSep 26, 2021
You might have used variables in Bash before, but probably not like this.
Command line wizardry, part two: Variables and loops in BashSep 26, 2021
Learn to process thousands of items reliably and repeatably in this installment.
Datavu: Useful Unix commands for exploring dataSep 26, 2021
While dealing with big genetic data sets I often got stuck with limitation of programming languages in terms of reading big files. Also so...
How to use htmlq to extract content from HTML files on Linux, macOS or FreeSep 8, 2021
Most of us use love and use the jq command. It works on Linux or Unix-like systems to extract data from JSON documents. Recently I found htmlq, which is like jq and written in Rust lang. Imagine being able to sed or grep for HTML data. We can search, slice, and filter HTML data with htmlq. Let us see how to install and use this handy tool on Linux or Unix and play with HTML data.
Basic Networking Commands in LinuxAug 16, 2021
Hi everyone! Welcome to my first article on DEV :) Today I will be doing a better overview of some...
How To Run Commands When You Log Out Using ~/.bash_logoutAug 8, 2021
The .bash_logout file is the individual login shell cleanup file. It is executed when a login shell exits. This file exists in the user's home directory. For example, $HOME/.bash_logout. This file is useful if you want to run task or another script or command automatically at logout. For example, clear the mysql command line history stored in ~/.mysql_history or to make a backup of files you can use this file.
Top 6 Ethical Hacking ToolsJul 7, 2021
1. Kali Linux Kali Linux is the most used Ethical Hacking distro available, it is provided with...
Linux ifconfig CommandJun 29, 2021
ifconfig is a network management tool, used to configure and view the status of the network interfaces in Linux
Let's learn about few networking side command in Linux/UnixJun 26, 2021
Hi There! I was working on few network side commands. I thought to share this with you all😃. Here you...
How to repeat a character 'n' times in Bash - nixCraftJun 5, 2021
In this post, I try to explore various ways to repeat a character and string in Bash 'n' times that must run on macOS/FreeBSD and Linux.
My Favorite One Liners | MuhammadMay 5, 2021
Commandline one liners that makes your workflow more productive
Grep cheatsheetApr 28, 2021
The grep utility searches any given input files, selecting lines that match one or more patterns. By...
wkhtmltopdfMar 26, 2021
Huge Collection of Linux Commands With Useful ExamplesMar 2, 2021
Manpages are great but these practical examples will help you understand the Linux commands even better.
A visual guide to SSH tunnelsFeb 7, 2021
Edit fstab to Auto-Mount Secondary Hard Drives on LinuxJan 4, 2021
Did you know there's an easier way to mount your secondary hard drive on Linux? The process involves a few simple edits to the fstab file on your system.
How to Auto-Mount a Drive at Boot in Linux - TuxinitJan 4, 2021
A simple tutorial on how to to auto mount your drive/partition in linux at boot. (2 methods for both terminal and GUI users)
Linux Hardening Guide | Madaidan's InsecuritiesDec 31, 2020
Linux Basic Commend u should knowDec 26, 2020
185 votes, 23 comments. 235K subscribers in the Ubuntu community. The Ubuntu community on Reddit
apt Command Examples for Ubuntu/Debian LinuxDec 26, 2020
19 examples of apt command on Debian/Ubuntu Linux server to install/remove packages and update the system for Linux users/sysadmins/developers
Hacker NewsDec 18, 2020
rga is a line-oriented search tool that allows you to look for a regex in a multitude of file types. rga wraps the awesome ripgrep and enables it to search in pdf, docx, sqlite, jpg, zip, tar.*, movie subtitles (mkv, mp4), etc. ExamplesPDFs Say you have a large folder of papers or lecture slides,
How to convert pdf to image on Linux command lineDec 18, 2020
Explains how to convert pdf to image or vice versa on Linux command line. Further describes how to add a border using Imagemagick.
Use `nproc` and not grep /proc/cpuinfoDec 18, 2020
There’s something really quite subtle about how the nproc utility from GNU coreutils works. If you look at the man page, it’s even the very first sentence: Print the number of processin…
Free intro to Linux commandline/server course starts Monday 7 DecemberDec 18, 2020
77 votes, 16 comments. This course has been running successfully now every month since February 2020 - more detail at…
drivers - How do you install CUDA 11 on Ubuntu 20.10 and verify the installDec 12, 2020
There seem be be several options to install CUDA on Ubuntu 20.10: It is pre-bundled with 20.10, there are various installers at the official NVIDIA page, etc.
Question: What is a recommended way to
Install the Latest Nvidia Linux Driver - LinuxConfig.orgDec 12, 2020
Most of the modern Linux Desktop systems come with Nvidia driver pre-installed in a form of the Nouveau open-source graphics device driver for Nvidia video cards. Hence depending on your needs and in…
How to Install Nvidia Driver on Ubuntu 20.04Dec 11, 2020
How to Install Flask on Ubuntu 20.04Dec 10, 2020
In this article we'll discuss how to install Flask on Ubuntu 20.04 inside a Python virtual environment.
Intel RSTDec 10, 2020
How to Use mkfs Command in Linux [For Disk Formatting]Dec 9, 2020
mkfs is the command line tool in Linux to format a disk or partition in a certain filesystem of your choice.
How to properly automount a drive in Ubuntu Linux - TechRepublicDec 9, 2020
Need to create a proper fstab entry to automatically mount a drive in Linux? Find out how here.
How to Use chown Command in Linux [6 Essential Examples]Dec 9, 2020
The chown command in Linux enables you to change the user and group ownership of a file or directory. Learn to use chown with some practical examples.
bobbyiliev/introduction-to-bash-scripting: Free Introduction to Bash Scripting eBookNov 28, 2020
Free Introduction to Bash Scripting eBook.
Ubuntu successfully virtualized on M1Nov 27, 2020
- the ISO file needed: ubuntu-20.04.1-live-server-arm64.iso - apart from the ISO, using disk images is not implemented. - SimpleVM.app is only a proof-of-concept. - it is possible to SSH into the...
Switch between workspacesNov 18, 2020
The Linux Command Handbook – Learn Linux Commands for BeginnersNov 6, 2020
This Linux Command Handbook will cover 60 core Bash commands you will need as a developer. Each command includes example code and tips for when to use it. This Linux Command Handbook follows the 80/20 rule: you'll learn 80% of a topic in around 20% o...
Start, Stop & Restart Services in Ubuntu and Other LinuxNov 3, 2020
You can easily manage service with systemd and init. Learn to start, stop and restart services in Ubuntu and other Linux Distributions.
Linux Developers Discussing Possible Kernel Driver for Intel CPU UndervoltiOct 23, 2020
While the Intel Extreme Tuning Utility (XTU) on Windows allows for undervolting laptop processors, currently on Linux there isn't any Intel-endorsed way for undervolting your CPU should you be interested in better thermal/power efficiency and other factors
How to Shut Down UbuntuAug 10, 2020
10 Actionable SSH Hardening Tips to Secure Your Linux ServerJul 16, 2020
Worried about the security of your Linux server? Learn some easy to implement tips on securing SSH and make your Linux server more secure.
Commands for Viewing and Sorting FilesJul 11, 2020
In the last few posts, we looked at I/O Redirection and Piping in Linux System. Today we are going t...
The 10 Useful Networking Commands You Should KnowJul 11, 2020
Learn about useful networking commands that are pre-installed on your computer and will help you know everything about a website.
My Favorite CLI ToolsJun 20, 2020
Previously, I wrote about my favorite Mac apps. But I spend half of my time in the terminal, and I ha...
Signals in LinuxApr 20, 2020
A signal is one of the basic things you would have frequently encountered once you start getting familiar with a Linux system. Getting to…
Unable to install mongodb properly on ubuntu 18.04 LTS - Stack OverflowMar 31, 2020
I am trying to install mongodb on my Ubuntu 18.04 LTS, but it has the following error saying
You might want to run 'apt --fix-broken install' to correct these. The
following packages have unmet
Synaptic Package Manager | LinuxMar 14, 2020
This article describes how you can install and manage software in Linux using Synaptic Package Manager.
Design On Linux — Figma, Photopea + 9 Other ToolsMar 9, 2020
UI/UX Design, Graphic Design, Photo Editing & more can now be done comfortably on Linux, without the need for expensive Adobe subscriptions
How To Parse And Pretty Print JSON With Linux Commandline ToolsMar 5, 2020
This brief guide explains how to parse and pretty print JSON with a command line tool called jq in Linux operating systems.
How to Get the Size of a File or Directory in LinuxFeb 19, 2020
When you use the du command in Linux, it gives you the amount of disk space used by a file or directory, as well as its true size. Yes, these are different, and we'll explain why.
Netcat – A Unix Utility You Should Know AboutJan 20, 2020
This is the second post in the article series about Unix utilities that you should know about. In this post I will introduce you to the netcat tool or simply nc. Netcat is often referred to as a Swiss Army knife utility, and for a good reason. Just like the multi-function usefulness of the venerable Swiss Army pocket...
A Unix Utility You Should Know About: Lsof(2009)Jan 18, 2020
This is the third post in the article series about Unix and Linux utilities that you should know about. In this post I will take you through the useful lsof tool. If netcat was called the Swiss Army Knife of Network Connections, then I'd call lsof the Swiss Army Knife of Unix debugging. Lsof follows Unix philosophy...
How to add directory to system path in LinuxDec 23, 2019
Instructions for adding a directory to the PATH environment variable in Linux.
linux - Multiple root user accounts for mysql on Ubuntu - Server FaultSep 23, 2019
I'm using ubuntu 12.04 and trying to get things secured. I'm still pretty new to Linux so I'm not quite sure how to interpret this.
I logged into my root account using mysql -u root -p and then to...
A blog by Darren BurnsAug 29, 2019
Rabbit Holes: The Secret to Technical Expertise - Das BityardAug 28, 2019
(Alternate Title: How to Shut Up the Ubuntu MOTD, the Long Way) Sometimes, the simplest questions take you on exciting journies. This was, in...
TurnKey GNU/Linux | 100+ free ready-to-use system images for virtual machines, the cloud and bare metalApr 24, 2019
Best 106 Linux Commands with ExampleMar 12, 2019
The hard part in becoming a command line wizardMar 3, 2019
I've long been impressed by shell one-liners. They seem like magical incantations. Pipe a few terse commands together, et voilà! Out pops the solution to a problem that would seem to require pages of code. Are these one-liners real or mythology? To some extent, they're both. Below I'll give a famous real example. Then I'll argue
Power Up Your Command Line, Part 3Jan 12, 2019
Five lesser-known command line utilities you'll want to install right away.
What is /proc? | OpsTipsOct 11, 2018
Get to know what is under the hood of procfs - what Linux does when you interact with /proc
DD, DU & DF - The Three Linux Commands You Should Commit To MemorySep 8, 2018
Over the course of my Linux use, I've found these three commands to be very helpful and they are worth committing to memory. DD , the low-...
Welcome to Linux From Scratch!Sep 5, 2018
Linux Load Averages: Solving the MysteryJun 8, 2018
Linux load averages explained, including why they include the uninterruptible I/O sleep state.
The Various Kinds of IO - Blocking, Non-blocking, Multiplexed and Async.May 7, 2018
A blog where I write down my thoughts, ideas and notions, as an exercise to cement them in my memory and improve on their concepts.
Command Line Tricks For Data ScientistsApr 30, 2018
For many data scientists, data manipulation begins and ends with Pandas or the Tidyverse. In theory, there is nothing wrong with this…
10 Command Line Recipes for Deep Learning on Amazon Web Services - MachineApr 10, 2018
Running large deep learning processes on Amazon Web Services EC2 is a cheap and effective way to learn and develop models. For just a few dollars you can get access to tens of gigabytes of RAM, tens of CPU cores, and multiple GPUs. I highly recommend it. If you are new to EC2 or the Linux command line, there are…
Interactive map of Linux kernelMar 16, 2018
Command-line-text-processing/ruby_one_liners.md at master · learnbyexample/Mar 16, 2018
:zap: From finding text to search and replace, from sorting to beautifying text and more :art: - learnbyexample/Command-line-text-processing
How SSH got port number 22Dec 27, 2017
The SSH port is 22. This is the story of how it got that port number. And practical configuration instructions.
12 Terminal Commands Every Web Developer Should Know About - TutorialzineAug 21, 2017
A collection of Unix commands that will greatly improve your web dev workflow.
Linux / UNIX: DNS Lookup CommandSep 24, 2013
Explains how to use host or dig command to query DNS name servers, dns lookup under UNIX or Linux for troubleshooting purpose.
lisp
listening
The stranger secret: how to talk to anyone – and why you shouldMar 2, 2026
Forget fear of public speaking. A lot of people now shy away completely from speaking to anyone in public. But if we learn to do this it’s enriching, for ourselves and society
Question behind the questionFeb 18, 2026
Your ability to answer questions is a competitive advantage. Here’s how to uncover the deeper underlying question.
Active Listening: Swiss Army Knife of Communication (with Examples)Nov 1, 2025
Master the ultimate communication skill, useful in almost any scenario.
(PDF) Types of Dialogue and Burdens of Proof.Apr 22, 2025
PDF | Burden of proof has recently come to be a topic of interest in argumentation systems for artificial intelligence (Prakken and Sartor, 2006, 2007,... | Find, read and cite all the research you need on ResearchGate
How to Make an Instant Connection With AnyoneApr 4, 2025
A good first impression can make or break an opportunity or connection. Here's how to make an instant connection with anyone.
ICEBREAKERS, via The Art of Noticing by Rob WalkerMar 31, 2025
“Icebreaker of the Week” is a recurring feature of the newsletter The Art of Noticing (robwalker.substack.com). Some are icebreakers I made up or experienced or found somewhere; many are submitted by TAoN readers. After many requests, I am collecting & sharing all the icebreakers here. If you ...
Breaking ThroughMar 29, 2025
Icebreakers are corny, corporate get-to-know-you exercises. But there’s something thrilling in dispensing with small talk.
PNASOct 19, 2024
Do conversations end when people want them to? Surprisingly, behavioral science provides no answer to this fundamental question about the most ubiq...
Conversation Skills Essentials – Tynan.comJan 3, 2023
The Secret To Talking To Someone Who Always Gets DefensiveNov 22, 2022
Talking to someone who gets defensive can be frustrating. So, what can you do? Here's how to sidestep someone's personal fortifications.
Hidden ways people drain another's energyNov 8, 2022
Examples of hidden ways people drain one other’s energy in social interaction—and what to do about it
A Gentleman’s Guide to Getting Out of a ConversationSep 14, 2022
Because telling someone to shut the heck up isn’t ‘gentlemanly’ or ‘civilized’ or ‘appropriate for a 5-year-old’s birthday party, Brian, Jesus.
What’s Your Listening Style?Jun 3, 2022
We may have learned that we need to let people speak without interrupting but taking turns talking does not truly denote listening. And unintentionally hijacking conversations to advise, inject humor, empathize, prioritize efficiency, or insert ourselves into the speaker’s narrative is often done with good intentions, but may instead disrupt the human connection we think we’re forging. Recognizing when to shift out of our habitual styles and consciously apply alternative styles of listening and responding may allow for more effective and meaningful interactions.
The Endgames of Bad Faith CommunicationApr 13, 2022
Sensitive People Bring a Major Happiness Habit to the WorkplaceJan 6, 2022
Hint: It’s all to do with empathy.
How to Give the Gift of Generative ThinkingDec 13, 2021
If you want to help people, don’t give them advice. Do this instead.
How to Get Someone to Tell You Their Secrets, According to an Investigative JournalistOct 8, 2021
And once you do get them to open up, don’t betray their trust.
Are You Really Listening?Mar 12, 2021
Senior leaders, particularly CEOs, confront a central paradox in their work: They generally have access to more lines of communication than anybody else, but the information that flows to them is suspect and compromised. Warning signals are tamped down. Key facts are omitted. Data sets are given a positive spin. All of it isolates leaders in a dangerous information bubble. But they can escape that bubble, the authors argue, by working actively to create a more expansive “listening ecosystem.” They first have to learn how to listen actively themselves, without distraction or judgment, purely for comprehension; then they have to create systems and processes all around them that elevate listening to a constant state of hypervigilance. This sort of sustained attention to listening allows leaders to pick up on early signs of both danger and opportunity—and that, in turn, allows them to do their jobs and serve their organizations better. The authors conclude this piece by sharing advice—gleaned from interviews and personal experience—about how leaders can learn to listen better.
How to Talk to People You Disagree WithJan 25, 2021
Bridge the divide with thoughtful conversation techniques, next-level listening, and a dip into the science of changing minds.
If You Master This Listening Technique, You’ll Hear What People Don’t Say Out LoudOct 23, 2019
Learning to “hear offers” like an improviser can turn obstacles into opportunities.
A Simple and Powerful Technique for Better ListeningSep 23, 2018
Want to strengthen your listening skills? Here's a simple but powerful tool.
lithography
Charting The Frontiers Of Photomask Technology And Extreme Ultraviolet LithographyOct 23, 2025
Modeling, simulation, and digital twins enable EUV innovation.
Application Specific Lithography: Avoiding Stochastic Defects and Image ImbFeb 11, 2024
The discussion of any particular lithographic application often refers to…
Nvidia Tackles Chipmaking Process, Claims 40X Speed Up with cuLithoMar 21, 2023
Faster masks, less power.
Reducing Transistor Capacitance At The 5nm Node Using A Source/Drain Contact RecessSep 24, 2019
On how to reduce transistor capacitance at the 5nm node using a source/drain contact recess.
TSMC and NVIDIA Transform Semiconductor Manufacturing With Accelerated Computing | NVIDIA BlogOct 24, 2012
TSMC is moving to production with the NVIDIA cuLitho computational lithography platform to accelerate manufacturing of advanced semiconductor chips.
llama
Meta Introduces KernelLLM: An 8B LLM that Translates PyTorch Modules into Efficient Triton GPU KernelsMay 20, 2025
The Llama 4 herd: The beginning of a new era of natively multimodal AI innovationApr 6, 2025
We’re introducing Llama 4 Scout and Llama 4 Maverick, the first open-weight natively multimodal models with unprecedented context support and our first built using a mixture-of-experts (MoE) architecture.
llama.cpp guide - Running LLMs locally, on any hardware, from scratchNov 29, 2024
Psst, kid, want some cheap and small LLMs?
Ten Wild Examples of Llama 3.1 Use CasesAug 4, 2024
Meta's recent release of Llama 3.1 has stirred excitement in the AI community, offering an array of remarkable applications. This groundbreaking model, particularly the 405B variant, stands out for its superior performance and open-source accessibility, outpacing even top-tier closed models. Here are ten wild examples showcasing the versatile use cases of Llama 3.1, from enhancing personal gadgets to innovative AI deployments. Efficient Task Automation: Llama 3.1 405B can be harnessed to teach the smaller 8B model how to execute tasks perfectly, reducing costs and latency. This setup allows users to train the 8B model to handle various operations, providing a
Meta unleashes its most powerful AI model, Llama 3.1, with 405B parametersJul 24, 2024
Llama 3.1 is the latest version of Meta's large language models, with a new model weight, 405 billion parameters, the biggest model it's trained.
Customize Generative AI Models for Enterprise Applications with Llama 3.1Jul 24, 2024
The newly unveiled Llama 3.1 collection of 8B, 70B, and 405B large language models (LLMs) is narrowing the gap between proprietary and open-source models. Their open nature is attracting more…
Llama 3.1 Released: Meta’s New Open-Source AI Model that You can Fine-Tune,Jul 24, 2024
Meta announced the release of Llama 3.1, the most capable model in the LLama Series. This latest iteration of the Llama series, particularly the 405B model, represents a substantial advancement in open-source AI capabilities, positioning Meta at the forefront of AI innovation. Meta has long advocated for open-source AI, a stance underscored by Mark Zuckerberg’s assertion that open-source benefits developers, Meta, and society. Llama 3.1 embodies this philosophy by offering state-of-the-art capabilities in an openly accessible model. The release aims to democratize AI, making cutting-edge technology available to various users and applications. The Llama 3.1 405B model stands out for
Meta Llama 3.1 405b is outperforming private models with open accessJul 24, 2024
Meta llama 3.1 405b kicks off a fresh chapter for open-source language models. This breakthrough brings unmatched skills to AI
naklecha/llama3-from-scratchMay 21, 2024
llama3 implementation one matrix multiplication at a time - naklecha/llama3-from-scratch
Meta says Llama 3 beats most other models, including Gemini - The VergeApr 19, 2024
The models have some pretty good general knowledge.
LLaMA Now Goes Faster on CPUsApr 2, 2024
I wrote 84 new matmul kernels to improve llamafile CPU performance.
Llama from scratchSep 25, 2023
I want to provide some tips from my experience implementing a paper. I'm going to cover my tips so far from implementing a dramatically scaled-down versio...
Together AI Unveils Llama-2-7B-32K-Instruct: A Breakthrough in Extended-ConAug 27, 2023
A multifaceted challenge has arisen in the expansive realm of natural language processing: the ability to adeptly comprehend and respond to intricate and lengthy instructions. As communication nuances become more complicated, the shortcomings of prevailing models in dealing with extensive contextual intricacies have been laid bare. Within these pages, an extraordinary solution crafted by the dedicated minds at Together AI comes to light—a solution that holds the promise of reshaping the very fabric of language processing. This innovation has profound implications, especially in tasks requiring an acute grasp of extended contextual nuances. Contemporary natural language processing techniques rely heavily on
The LLama Effect: How an Accidental Leak Sparked a Series of Impressive OpeApr 21, 2023
Sundays, The Sequence Scope brings a summary of the most important research papers, technology releases and VC funding deals in the artificial intelligence space.
StackLLaMA: A hands-on guide to train LLaMA with RLHFApr 8, 2023
We’re on a journey to advance and democratize artificial intelligence through open source and open science.
LlamaIndex : LlamaIndexSep 24, 2009
llm-rag
The Critical Detail About AI That Separates Good Investments from Expensive MistakesFeb 20, 2026
You've heard the pitch. "We're going to add AI to the platform.
Comparing Memory Systems for LLM Agents: Vector, Graph, and Event LogsNov 10, 2025
Learn how different memory systems affect multi-agent planning. Comparing Memory Systems for LLM Agents highlights key performance metrics.
Shirin Khosravi Jam on SubstackJul 13, 2025
I taught myself how to build RAG + AI Agents in production.
Been running them live for over a year now. Here are 4 steps + the only resources you really need to do the same.
…
Ugly truth: most “AI Engineers” shouting on social media haven’t built a single real production AI Agent or RAG system.
If you want to be different - actually build and ship these systems: here’s a laser-focused roadmap from my own journey.
..
🚀 𝗦𝘁𝗮𝗿𝘁 𝘄𝗶𝘁𝗵 𝗳𝘂𝗻𝗱𝗮𝗺𝗲𝗻𝘁𝗮𝗹𝘀
Because no matter how fast LLM/GenAI evolves, your ML & software foundations keep you relevant.
✅ Hands-On ML with TensorFlow & Keras: https://lnkd.in/dWrf5pbS
✅ ISLR: https://lnkd.in/djGPVVwJ
✅ Machine Learning for Beginners by Microsoft (free curriculum):
https://lnkd.in/d8kZA3es
…
1️⃣ 𝗠𝗮𝘀𝘁𝗲𝗿 𝗟𝗟𝗠𝘀 & 𝗚𝗲𝗻𝗔𝗜 𝗦𝘆𝘀𝘁𝗲𝗺𝘀
→ Learn to build & deploy LLMs, understand system design tradeoffs, and handle real constraints.
📚 Must-reads:
✅ Designing ML Systems – Chip Huyen: https://lnkd.in/guN-UhXA
✅ The LLM Engineering Handbook – Iusztin & Labonne: https://lnkd.in/gyA4vFXz
✅ Build a LLM (From Scratch) – Raschka: https://lnkd.in/gXNa-SPb
✅ Hands-On LLMs GitHub: https://lnkd.in/eV4qrgNW
…
2️⃣ 𝗚𝗼 𝗯𝗲𝘆𝗼𝗻𝗱 𝘁𝗵𝗲 𝗵𝘆𝗽𝗲 𝗼𝗻 𝗔𝗜 𝗔𝗴𝗲𝗻𝘁𝘀
→ Most demos = “if user says hello, return hello.”
Actual agents? Handle memory, tools, workflows, costs.
✅ AI Agents for Beginners (GitHub): https://lnkd.in/eik2btmq
✅ GenAI Agents – build step by step: https://lnkd.in/dnhwk75V
✅ OpenAI’s guide to agents: https://lnkd.in/guRfXsFK
✅ Anthropic’s Building Effective Agents: https://lnkd.in/gRWKANS4
…
3️⃣ 𝗥𝗔𝗚 𝗶𝘀 𝗻𝗼𝘁 𝗷𝘂𝘀𝘁 𝗮 𝘃𝗲𝗰𝘁𝗼𝗿 𝗗𝗕
Real Retrieval-Augmented Generation requires:
→ Chunking, hybrid BM25 + vectors, reranking
→ Query routing & fallback
→ Evaluating retrieval quality, not just LLM output
✅ RAG Techniques repo: https://lnkd.in/dD4S8Cq2
✅ Advanced RAG: https://lnkd.in/g2ZHwZ3w
✅ Cost-efficient retrieval with Postgres/OpenSearch/Qdrant
✅ Monitoring with Langfuse / Comet
…
4️⃣ 𝗚𝗲𝘁 𝘀𝗲𝗿𝗶𝗼𝘂𝘀 𝗼𝗻 𝗦𝗼𝗳𝘁𝘄𝗮𝗿𝗲 & 𝗜𝗻𝗳𝗿𝗮
→ FastAPI, async Python, Pydantic
→ Docker, CI/CD, blue-green deploys
→ ETL orchestration (Airflow, Step Functions)
→ Logs + metrics (CloudWatch, Prometheus)
✅ Move to production: https://lnkd.in/dnnkrJbE
✅ Made with ML (full ML+infra): https://lnkd.in/e-XQwXqS
✅ AWS GenAI path: https://lnkd.in/dmhR3uPc
…
5️⃣ 𝗪𝗵𝗲𝗿𝗲 𝗱𝗼 𝗜 𝗹𝗲𝗮𝗿𝗻 𝗳𝗿𝗼𝗺?
→ Stanford CS336 / CS236 / CS229 (Google it)
→ MIT 6.S191, Karpathy’s Zero to Hero: https://lnkd.in/dT7vqqQ5
→ Google Kaggle GenAI sprint: https://lnkd.in/ga5X7tVJ
→ NVIDIA’s end-to-end LLM stack: https://lnkd.in/gCtDnhni
→ DeepLearning.AI’s short courses: https://lnkd.in/gAYmJqS6
…
💥 𝗞𝗲𝗲𝗽 𝗶𝘁 𝗿𝗲𝗮𝗹:
Don’t fall for “built in 5 min, dead in 10 min” demos.
In prod, it’s about latency, cost, maintainability, guardrails.
♻️ Let's repost to help more people on this journey 💚
Building a RAG Application Using LlamaIndex - KDnuggetsApr 21, 2025
Enhance language models with real-time document retrieval and dynamic knowledge integration using retrieval-augmented generation and LlamaIndex.
How to Build a Graph RAG AppDec 30, 2024
Using knowledge graphs and AI to retrieve, filter, and summarize medical journal articles
RAG: Still Relevant in the Era of Long Context ModelsMay 21, 2024
While RAG will remain a staple of production applications, Gemini 1.5 Pro and similar models will help enterprise data science teams.
Meet RAGFlow: An Open-Source RAG (Retrieval-Augmented Generation) Engine BaApr 8, 2024
In the ever-evolving landscape of artificial intelligence, businesses face the perpetual challenge of harnessing vast amounts of unstructured data. Meet RAGFlow, a groundbreaking open-source AI project that promises to revolutionize how companies extract insights and answer complex queries with an unprecedented level of truthfulness and accuracy. What Sets RAGFlow Apart RAGFlow is an innovative engine that leverages Retrieval-Augmented Generation (RAG) technology to provide a powerful solution for information retrieval. Unlike traditional keyword searches, RAGFlow combines large language models (LLMs) with deep document understanding to extract relevant information from a vast amount of data. Intelligent template-based chunking and visualized text chunking
RAG Step-by-Step: Open Source EditionApr 8, 2024
In a previous post, I demonstrated how to implement RAG using the Load-Transform-Embed-Store...
Top 9 Different Types of Retrieval-Augmented Generation (RAGs)Sep 24, 2014
Retrieval-Augmented Generation (RAG) is a machine learning framework that combines the advantages of both retrieval-based and generation-based models. The RAG framework is highly regarded for its ability to handle large amounts of information and produce coherent, contextually accurate responses. It leverages external data sources by retrieving relevant documents or facts and then generating an answer or output based on the retrieved information and the user query. This blend of retrieval and generation leads to better-informed outputs that are more accurate and comprehensive than models that rely solely on generation. The evolution of RAG has led to various types and approaches,
Building a Simple RAG Application Using LlamaIndex - MachineLearningMastery.comAug 24, 2014
[caption align=
llm-willison
2025: The year in LLMsJan 1, 2026
This is the third in my annual series reviewing everything that happened in the LLM space over the past 12 months. For previous years see Stuff we figured out about …
GPT-5-CodexSep 24, 2025
OpenAI half-relased this model earlier this month, adding it to their Codex CLI tool but not their API. Today they've fixed that - the new model can now be accessed …
Become a command-line superhero with Simon Willison’s llm toolJul 7, 2025
Christopher Smith ran a mini hackathon in Albany New York at the weekend around uses of my LLM - the first in-person event I'm aware of dedicated to that project! …
Building software on top of Large Language ModelsJul 4, 2025
I presented a three hour workshop at PyCon US yesterday titled Building software on top of Large Language Models. The goal of the workshop was to give participants everything they …
Gemini CLIJun 25, 2025
First there was Claude Code in February, then OpenAI Codex (CLI) in April, and now Gemini CLI in June. All three of the largest AI labs now have their own …
llm-mistral 0.14May 29, 2025
I [added tool-support](https://github.com/simonw/llm-mistral/issues/31) to my plugin for accessing the Mistral API from LLM today, plus support for Mistral's new [Codestral Embed](https://simonwillison.net/2025/May/28/codestral-embed/) embedding model. An interesting challenge here is that I'm …
llm-tools-exaMay 29, 2025
When I [shipped LLM 0.26](https://simonwillison.net/2025/May/27/llm-tools/) yesterday one of the things I was most excited about was seeing what new tool plugins people would build for it. Dan Turkel's [llm-tools-exa](https://github.com/daturkel/llm-tools-exa) is …
llm-github-models 0.15May 29, 2025
Anthony Shaw's [llm-github-models](https://github.com/tonybaloney/llm-github-models) plugin just got an upgrade: it now supports [LLM 0.26 tool use](https://simonwillison.net/2025/May/27/llm-tools/) for a subset of the models hosted on the [GitHub Models API](https://docs.github.com/en/github-models), contributed by [Caleb …
Claude as a calculatorMay 28, 2025
Here's a quick demo of the kind of casual things I use LLMs for on a daily basis. I just found out that Perplexity offer their Deep Research feature via …
Large Language Models can run tools in your terminal with LLM 0.26May 27, 2025
LLM 0.26 is out with the biggest new feature since I started the project: support for tools. You can now use the LLM CLI tool—and Python library—to grant LLMs from …
Highlights from the Claude 4 system promptMay 27, 2025
Anthropic publish most of the system prompts for their chat models as part of their release notes. They recently shared the new prompts for both Claude Opus 4 and Claude …
System Card: Claude Opus 4 & Claude Sonnet 4May 25, 2025
Direct link to a PDF on Anthropic's CDN because they don't appear to have a landing page anywhere for this document. Anthropic's system cards are always worth a look, and …
f2May 24, 2025
Really neat CLI tool for bulk renaming of files and directories by Ayooluwa Isaiah, written in Go and designed to work cross-platform. There's a _lot_ of great design in this. …
llm-anthropic 0.16May 22, 2025
New release of my LLM plugin for Anthropic adding the new Claude 4 Opus and Sonnet models. You can see pelicans on bicycles generated using the new plugin at the …
llm-pdf-to-imagesMay 18, 2025
Inspired by my previous [llm-video-frames](https://github.com/simonw/llm-video-frames) plugin, I thought it would be neat to have a plugin for LLM that can take a PDF and turn that into an image-per-page so …
Dummy’s Guide to Modern LLM SamplingMay 4, 2025
This is an extremely useful, detailed set of explanations by [@AlpinDale](https://x.com/AlpinDale) covering the various different sampling strategies used by modern LLMs. LLMs return a set of next-token probabilities for every …
An LLM Query Understanding ServiceApr 10, 2025
Doug Turnbull recently wrote about how [all search is structured now](https://softwaredoug.com/blog/2025/04/02/all-search-structured-now): Many times, even a small open source LLM will be able to turn a search query into reasonable …
Tracing the thoughts of a large language modelMar 28, 2025
In a follow-up to the research that brought us the [delightful Golden Gate Claude](https://simonwillison.net/2024/May/24/golden-gate-claude/) last year, Anthropic have published two new papers about LLM interpretability: - [Circuit Tracing: Revealing Computational …
Function calling with GemmaMar 26, 2025
Google's Gemma 3 model (the 27B variant is particularly capable, I've been trying it out [via Ollama](https://ollama.com/library/gemma3)) supports function calling exclusively through prompt engineering. The official documentation describes two recommended …
Putting Gemini 2.5 Pro through its pacesMar 26, 2025
There’s a new release from Google Gemini this morning: the first in the Gemini 2.5 series. Google call it “a thinking model, designed to tackle increasingly complex problems”. It’s already …
OpenTimesMar 18, 2025
Spectacular new open geospatial project by [Dan Snow](https://sno.ws/): > OpenTimes is a database of pre-computed, point-to-point travel times between United States Census geographies. It lets you download bulk travel time …
Mistral Small 3.1Mar 17, 2025
Mistral Small 3 [came out in January](https://simonwillison.net/2025/Jan/30/mistral-small-3/) and was a notable, genuinely excellent local model that used an Apache 2.0 license. Mistral Small 3.1 offers a significant improvement: it's multi-modal …
Cutting-edge web scraping techniques at NICARMar 9, 2025
Here's the handout for a workshop I presented this morning at [NICAR 2025](https://www.ire.org/training/conferences/nicar-2025/) on web scraping, focusing on lesser know tips and tricks that became possible only with recent developments …
Mistral OCRMar 7, 2025
New closed-source specialist OCR model by Mistral - you can feed it images or a PDF and it produces Markdown with optional embedded images. It's available [via their API](https://docs.mistral.ai/api/#tag/ocr), or …
llm-mistral 0.11Mar 4, 2025
I added [schema support](https://simonwillison.net/2025/Feb/28/llm-schemas/) to this plugin which adds support for the [Mistral API](https://docs.mistral.ai/api/) to LLM. Release notes: - Support for LLM [schemas](https://llm.datasette.io/en/stable/schemas.html). [#19](https://github.com/simonw/llm-mistral/issues/19) - `-o prefix '{'` …
llm-ollama 0.9.0Mar 4, 2025
This release of the `llm-ollama` plugin adds support for [schemas](https://simonwillison.net/2025/Feb/28/llm-schemas/), thanks to a [PR by Adam Compton](https://github.com/taketwo/llm-ollama/pull/36). Ollama provides very robust support for this pattern thanks to their [structured outputs](https://ollama.com/blog/structured-outputs) …
sqlite-s3vfsFeb 7, 2025
Neat open source project on the GitHub organisation for the UK government's Department for Business and Trade: a "Python virtual filesystem for SQLite to read from and write to S3." …
Using pip to install a Large Language Model that’s under 100MBFeb 7, 2025
I just released llm-smollm2, a new plugin for LLM that bundles a quantized copy of the SmolLM2-135M-Instruct LLM inside of the Python package. This means you can now pip install …
My approach to running a link blogFeb 4, 2025
I started running a basic link blog on this domain back in November 2003—publishing links (which I called “blogmarks”) with a title, URL, short snippet of commentary and a “via” …
OpenAI o3-mini, now available in LLMJan 31, 2025
o3-mini is out today. As with other o-series models it’s a slightly difficult one to evaluate—we now need to decide if a prompt is best run using GPT-4o, o1, o3-mini …
ChatGPT Operator system promptJan 26, 2025
Johann Rehberger snagged a copy of the [ChatGPT Operator](https://simonwillison.net/2025/Jan/23/introducing-operator/) system prompt. As usual, the system prompt doubles as better written documentation than any of the official sources. It asks users …
LLM 0.20Jan 23, 2025
New release of my [LLM](https://llm.datasette.io/) CLI tool and Python library. A bunch of accumulated fixes and features since the start of December, most notably: - Support for OpenAI's [o1 model](https://platform.openai.com/docs/models#o1) …
DeepSeek-R1 and exploring DeepSeek-R1-Distill-Llama-8BJan 20, 2025
DeepSeek are the Chinese AI lab who dropped the best currently available open weights LLM on Christmas day, DeepSeek v3. That model was trained in part using their unreleased R1 …
Lessons From Red Teaming 100 Generative AI ProductsJan 18, 2025
New paper from Microsoft describing their top eight lessons learned red teaming (deliberately seeking security vulnerabilities in) 100 different generative AI models and products over the past few years. …
Things we learned out about LLMs in 2024Dec 31, 2024
A lot has happened in the world of Large Language Models over the course of 2024. Here’s a review of things we figured out about the field in the past …
The killer app of Gemini Pro 1.5 is videoFeb 29, 2024
Last week Google introduced Gemini Pro 1.5, an enormous upgrade to their Gemini series of AI models. Gemini Pro 1.5 has a 1,000,000 token context size. This is huge—previously that …
CLI tools hidden in the Python standard libraryJul 28, 2023
Seth Michael Larson pointed out that the Python gzip module can be used as a CLI tool like this:
Understanding GPT tokenizersJul 24, 2023
Large language models such as GPT-3/4, LLaMA and PaLM work in terms of tokens. They take text, convert it into tokens (integers), then predict which tokens should come next. Playing …
One-liner for running queries against CSV files with SQLite | Simon WillisoJun 23, 2022
I figured out how to run a SQL query directly against a CSV file using the sqlite3 command-line utility:
How to set up world-class continuous deployment using free hosted toolsJun 8, 2018
I’m going to describe a way to put together a world-class continuous deployment infrastructure for your side-project without spending any money. With continuous deployment every code commit is tested against …
llms
Alibaba's small, open source Qwen3.5-9B beats OpenAI's gpt-oss-120B and can run on standard laptopsMar 2, 2026
Whether it is a 0.8B model running on a smartphone or a 9B model powering a coding terminal, the Qwen3.5 series is effectively democratizing the "agentic era."
Qwen3.5 122B and 35B models offer Sonnet 4.5 performance on local computers | Hacker NewsMar 1, 2026
Alibaba's new open source Qwen3.5 Medium model offers near Sonnet 4.5 performance on local computersMar 1, 2026
This leap is made possible by near-lossless accuracy under 4-bit weight and KV cache quantization, allowing developers to process massive datasets without server-grade infrastructure.
IBM's $40B stock wipeout is built on a misconception: Translating COBOL isn't the same as modernizing itFeb 24, 2026
Investors wiped $40 billion from IBM's market cap after Anthropic released COBOL translation tools. Analysts say the market got the news right and the conclusion wrong.
Getting StartedFeb 24, 2026
Start building AI apps in Ruby in 5 minutes. Chat, generate images, create embeddings - all with one gem.
Ruby Is the Best Language for Building AI AppsFeb 24, 2026
A pragmatic, code-first argument for Ruby as the best language to ship AI products in 2026.
Taalas is replacing programmable GPUs with hardwired AI chips to achieve 17,000 tokens per second for ubiquitous inference - MarkTechPostFeb 23, 2026
Taalas is replacing programmable GPUs with hardwired AI chips to achieve 17,000 tokens per second for ubiquitous inference
We hid backdoors in ~40MB binaries and asked AI + Ghidra to find them - Quesma BlogFeb 22, 2026
BinaryAudit benchmarks AI agents using Ghidra to find backdoors in compiled binaries of real open-source servers, proxies, and network infrastructure.
https://garryslist.org/posts/half-the-ai-agent-market-is-one-category-the-rest-is-wide-openFeb 22, 2026
🐣(Claude Code Beginners Guide) Multi-Agent Orchestration: Run Claude Code Like a 5-Person Team | NotionFeb 21, 2026
Quick note before you jump in:
Alibaba unveils new Qwen3.5 model for 'agentic AI era'Feb 16, 2026
Alibaba on Monday unveiled a new artificial intelligence model Qwen 3.5 designed to execute complex tasks independently, with big improvements in performance and cost that the Chinese tech giant claims beat major U.S. rival models on several benchmarks.
Nvidia’s new technique cuts LLM reasoning costs by 8x without losing accuracyFeb 12, 2026
Nvidia researchers developed dynamic memory sparsification (DMS), a technique that compresses the KV cache in large language models by up to 8x while maintaining reasoning accuracy — and it can be retrofitted onto existing models in hours.
OpenClaw: The Viral AI Agent that Broke the Internet - Peter Steinberger | Lex Fridman Podcast #491Feb 12, 2026
Peter Steinberger is the creator of OpenClaw, an open-source AI agent framework that's the fastest-growing project in GitHub history.Thank you for listening ...
ComposioHQ/awesome-claude-skills: A curated list of awesome Claude Skills, resources, and tools for customizing Claude AI workflowsFeb 5, 2026
A curated list of awesome Claude Skills, resources, and tools for customizing Claude AI workflows - ComposioHQ/awesome-claude-skills
MIT’s new ‘recursive’ framework lets LLMs process 10 million tokens without context rotJan 20, 2026
While standard models suffer from context rot as data grows, MIT’s new Recursive Language Model (RLM) framework treats prompts like code variables, unlocking infinite context without the retraining costs.
Multimodal reinforcement learning with agentic verifier for AI agents - Microsoft ResearchJan 20, 2026
Argos improves multimodal RL by evaluating whether an agent’s reasoning aligns with what it observes over time. The approach reduces visual hallucinations and produces more reliable, data-efficient agents for real-world applications:
Zhipu AI Releases GLM-4.7-Flash: A 30B-A3B MoE Model for Efficient Local Coding and Agents - MarkTechPostJan 20, 2026
Zhipu AI Releases GLM-4.7-Flash: A 30B-A3B MoE (Mixture of Experts) Model for Efficient Local Coding and Agents
Claude Code costs up to $200 a month. Goose does the same thing for free.Jan 20, 2026
Goose, Block’s open-source AI coding agent, is emerging as a free alternative to Anthropic’s Claude Code, as developers weigh offline control, rate limits, and the rising cost of AI coding tools.
Add Reasoning Skills to Your LLM Apps | Aman KharwalJan 20, 2026
In this article, I’ll walk you through a guided project to add reasoning skills to your LLM apps. Add Reasoning Skills to Your LLM Apps.
Anthropic launches Cowork, a Claude Desktop agent that works in your files — no coding requiredJan 13, 2026
Anthropic’s Cowork brings Claude Code–style AI agents to the desktop, letting Claude access and manage local files and browse the web—boosting productivity while raising new security and trust risks.
First impressions of Claude Cowork, Anthropic’s general agentJan 13, 2026
New from Anthropic today is Claude Cowork, a “research preview” that they describe as “Claude Code for the rest of your work”. It’s currently available only to Max subscribers ($100 …
Sampling at negative temperatureJan 12, 2026
2025 LLM Year in Review from Andrej KarpathyJan 4, 2026
Training GPT-2 on a budget from Vishwanath Sangale
The Big LLM Architecture ComparisonJan 3, 2026
From DeepSeek-V3 to Kimi K2: A Look At Modern LLM Architecture Design
Nano Banana Pro is the best AI image generator, with caveatsJan 3, 2026
The problem with Nano Banana Pro is that it’s too good.
Nano Banana can be prompt engineered for extremely nuanced AI image generationJan 3, 2026
Nano Banana allows 32,768 input tokens and I’m going to try to use them all dammit.
Proximal Policy OptimizationJan 3, 2026
We’re releasing a new class of reinforcement learning algorithms, Proximal Policy Optimization (PPO), which perform comparably or better than state-of-the-art approaches while being much simpler to implement and tune. PPO has become the default reinforcement learning algorithm at OpenAI because of its ease of use and good performance.
LLM Research Papers: The 2025 List (July to December)Jan 2, 2026
In June, I shared a bonus article with my curated and bookmarked research paper lists to the paid subscribers who make this Substack possible.
2025: The year in LLMsJan 1, 2026
This is the third in my annual series reviewing everything that happened in the LLM space over the past 12 months. For previous years see Stuff we figured out about …
LLM Research Papers: The 2025 List (July to December)Dec 31, 2025
A curated list of LLM research papers from July–December 2025, organized by reasoning models, inference-time scaling, architectures, training efficiency, and...
The State of Reinforcement Learning for LLM ReasoningDec 31, 2025
Understanding GRPO and New Insights from Reasoning Model Papers
The State Of LLMs 2025: Progress, Problems, and PredictionsDec 31, 2025
A 2025 review of large language models, from DeepSeek R1 and RLVR to inference-time scaling, benchmarks, architectures, and predictions for 2026.
Building an AI agent inside a 7-year old Rails applicationDec 26, 2025
We run a multi-tenant Rails application with sensitive data and layered authorization. In this post, I walk through how I added the first AI agent tool using RubyLLM, Pundit policies, and our existing Algolia search, without introducing a parallel system or loosening constraints.
LangGraph Explained from Scratch | Aman KharwalDec 23, 2025
In this article, I’ll walk you through a complete guide to LangGraph from the ground up. LangGraph Explained from Scratch.
The Concise Guide to PerplexityNov 26, 2025
Practical Guide on how to build an Agent from scratch with Gemini 3Nov 23, 2025
A step-by-step practical guide on building AI agents using Gemini 3 Pro, covering tool integration, context management, and best practices for creating effective and reliable agents.
Comparing Memory Systems for LLM Agents: Vector, Graph, and Event LogsNov 10, 2025
Learn how different memory systems affect multi-agent planning. Comparing Memory Systems for LLM Agents highlights key performance metrics.
Comparing the Top 7 Large Language Models LLMs/Systems for Coding in 2025Nov 4, 2025
Compare the top 7 large language models and systems for coding in 2025. Discover which ones excel for software engineering tasks.
In a First, AI Models Analyze Language As Well As a Human Expert | Quanta MagazineNov 3, 2025
If language is what makes us human, what does it mean now that large language models have gained “metalinguistic” abilities?
How I Use Every Claude Code FeatureNov 2, 2025
A brain dump of all the ways I've been using Claude Code.
The Big LLM Architecture ComparisonOct 28, 2025
From DeepSeek-V3 to Kimi K2: A Look At Modern LLM Architecture Design
Marktechpost/AI-Tutorial-Codes-Included: Codes/Notebooks for AI ProjectsOct 27, 2025
Codes/Notebooks for AI Projects. Contribute to Marktechpost/AI-Tutorial-Codes-Included development by creating an account on GitHub.
5 Common LLM Parameters Explained with ExamplesOct 26, 2025
Learn the 5 common LLM parameters explained with examples to optimize your model's performance and generate desired results.
https://venturebeat.com/ai/researchers-find-adding-this-one-simple-sentence-to-prompts-makes-ai-modelsOct 17, 2025
A Guide to Fine-Tuning LLMs using LoRAOct 14, 2025
In this article, I'll take you through a step-by-step guide to fine-tuning LLMs with LoRA. A Guide to Fine-Tuning LLMs using LoRA.
7 LLM Generation Parameters—What They Do and How to Tune Them?Oct 14, 2025
Seven LLM generation parameters: max tokens, temperature, top-p, top-k, penalties, stop sequences, tuning guidance, defaults
Build a Reasoning Model (From Scratch) - Sebastian RaschkaOct 5, 2025
Understand LLM reasoning by creating your own reasoning model–from scratch!
LLM reasoning models have the power to tackle truly challenging problems that require finding the right path through multiple steps. In Build A Reasoning Model (From Scratch) you’ll learn how to build a working reasoning model from the ground up. You will start with an existing pre-trained LLM and then implement reasoning-focused improvements from scratch.
Sebastian Raschka, the bestselling author of Build a Large Language Model (From Scratch), is your guide on this exciting journey. Sebastian mentors you every step of the way with clear explanations, practical code, and a keen focus on what really matters.
In Build A Reasoning Model (From Scratch) you’ll learn how to:
Implement core reasoning improvements for LLMs
Evaluate models using judgment-based and benchmark-based methods
Improve reasoning without updating model weights
Use reinforcement learning to integrate external tools like calculators
Apply distillation techniques to learn from larger reasoning models
Understand the full reasoning model development pipeline
Reasoning models break problems into steps, producing more reliable answers in math, logic, and code. These improvements aren’t just a curiosity–they’re already integrated into top models like Grok 4 and GPT-5. Build A Reasoning Model (From Scratch) demystifies these complex models with a simple philosophy: the best way to learn how something works is to build it yourself! You’ll begin with a pre-trained LLM, adding and improving its reasoning capabilities in ways you can see, test, and understand.
Understanding the 4 Main Approaches to LLM Evaluation (From Scratch)Oct 5, 2025
Multiple-Choice Benchmarks, Verifiers, Leaderboards, and LLM Judges with Code Examples
OpenAI’s Sora Makes Disinformation Extremely Easy and Extremely RealOct 3, 2025
The new A.I. app generated videos of store robberies and home intrusions — even bomb explosions on city streets — that never happened.
Building the heap: racking 30 petabytes of hard drives for pretrainingOct 2, 2025
How we spent under half a million dollars to build a 30 petabyte data storage cluster in downtown San Francisco
Top 10 Local LLMs (2025): Context Windows, VRAM Targets, and Licenses ComparedSep 28, 2025
Compare top local LLMs for 2025: context windows, VRAM tiers, licenses, quantization, runtimes, dense vs MoE tradeoffs clearly
5 Cutting-Edge Natural Language Processing Trends Shaping 2026Sep 24, 2025
In this article, we discuss five cutting-edge NLP trends that will shape 2026.
GPT-5-CodexSep 24, 2025
OpenAI half-relased this model earlier this month, adding it to their Codex CLI tool but not their API. Today they've fixed that - the new model can now be accessed …
Four new releases from QwenSep 22, 2025
It's been an extremely busy day for team Qwen. Within the last 24 hours (all links to Twitter, which seems to be their preferred platform for these announcements): Qwen3-Next-80B-A3B-Instruct-FP8 and …
Understanding and Implementing Qwen3 From ScratchSep 6, 2025
A Detailed Look at One of the Leading Open-Source LLMs
These psychological tricks can get LLMs to respond to “forbidden” promptsSep 3, 2025
Study shows how patterns in LLM training data can lead to “parahuman” responses.
chiphuyen/aie-book: [WIP] Resources for AI engineers. Also contains supporting materials for the book AI Engineering (Chip Huyen, 2025)Aug 31, 2025
[WIP] Resources for AI engineers. Also contains supporting materials for the book AI Engineering (Chip Huyen, 2025) - chiphuyen/aie-book
Open Source LLM ToolsAug 31, 2025
Best viewed on desktops. On a phone screen, some columns are hidden. When a new repo is indexed, changes in stars in the last day/week are default to 0. Full analysis: What I learned from...
Method Iteration: An LLM Prompting TechniqueAug 30, 2025
TLDR: Method Iteration is a prompting technique that gives better responses to hard problems. …
DeepSeek V3.1 Rivals GPT-5 With 685B Parameter Model - DataconomyAug 22, 2025
In January 2025, DeepSeek, a Chinese AI startup, launched R1, an AI model that rivaled top-tier LLMs from OpenAI and Anthropic. Built at a fraction of the
What is AI Inference? A Technical Deep Dive and Top 9 AI Inference Providers (2025 Edition)Aug 18, 2025
What is Artificial Intelligence AI Inference? A Technical Deep Dive and Top 9 AI Inference Providers (2025 Edition)
What Is AI Red Teaming? Top 18 AI Red Teaming Tools (2025)Aug 17, 2025
Discover top AI red teaming tools for robust AI security. Learn how adversarial testing protects machine learning models
The Timmy Trap – Scott JensonAug 15, 2025
That ‘cheap’ open-source AI model is actually burning through your compute budgetAug 15, 2025
New research reveals open-source AI models use up to 10 times more computing resources than closed alternatives, potentially negating cost advantages for enterprise deployments.
AI Model & API Providers Analysis | Artificial AnalysisAug 14, 2025
Comparison and analysis of AI models and API hosting providers. Independent benchmarks across key performance metrics including quality, price, output speed & latency.
google/langextract: A Python library for extracting structured information from unstructured text using LLMs with precise source grounding and interactive visualization.Aug 12, 2025
A Python library for extracting structured information from unstructured text using LLMs with precise source grounding and interactive visualization. - google/langextract
From 100,000 to Under 500 Labels: How Google AI Cuts LLM Training Data by Orders of MagnitudeAug 10, 2025
Google’s active learning method fine-tunes LLMs with 10,000x less data using high-fidelity expert-labeled examples
New ‘persona vectors’ from Anthropic let you decode and direct an LLM’s personalityAug 7, 2025
A new study from Anthropic introduces "persona vectors," a technique for developers to monitor, predict and control unwanted LLM behaviors.
A Technical Roadmap to Context Engineering in LLMs: Mechanisms, Benchmarks, and Open ChallengesAug 3, 2025
Context engineering for large language models—frameworks, architectures, and strategies to optimize AI reasoning, and scalability
Hierarchical Reasoning ModelJul 28, 2025
Reasoning, the process of devising and executing complex goal-oriented action sequences, remains a critical challenge in AI. Current large language models (LLMs) primarily employ Chain-of-Thought (CoT) techniques, which suffer from brittle task decomposition, extensive data requirements, and high latency. Inspired by the hierarchical and multi-timescale processing in the human brain, we propose the Hierarchical Reasoning Model (HRM), a novel recurrent architecture that attains significant computational depth while maintaining both training stability and efficiency. HRM executes sequential reasoning tasks in a single forward pass without explicit supervision of the intermediate process, through two interdependent recurrent modules: a high-level module responsible for slow, abstract planning, and a low-level module handling rapid, detailed computations. With only 27 million parameters, HRM achieves exceptional performance on complex reasoning tasks using only 1000 training samples. The model operates without pre-training or CoT data, yet achieves nearly perfect performance on challenging tasks including complex Sudoku puzzles and optimal path finding in large mazes. Furthermore, HRM outperforms much larger models with significantly longer context windows on the Abstraction and Reasoning Corpus (ARC), a key benchmark for measuring artificial general intelligence capabilities. These results underscore HRM's potential as a transformative advancement toward universal computation and general-purpose reasoning systems.
LLM Embeddings Explained: A Visual and Intuitive GuideJul 28, 2025
How Language Models Turn Text into Meaning, From Traditional
The Complete LLM Tech StackJul 25, 2025
In this article, I'll take you through the complete LLM tech stack you should know to develop & deploy real-world LLM applications.
LLM Research Papers: The 2025 List (January to June)Jul 19, 2025
The latest in LLM research with a hand-curated, topic-organized list of over 200 research papers from 2025.
I sent ChatGPT Agent out to shop for meJul 19, 2025
We tested OpenAI’s ChatGPT Agent, currently only available via its $200-per-month Pro subscription.
How OpenAI’s red team made ChatGPT agent into an AI fortressJul 19, 2025
Discover OpenAI's red team blueprint: How 110 coordinated attacks and 7 exploit fixes created ChatGPT Agent's revolutionary 95% security defense system.
ChatGPT agent System Card | OpenAIJul 19, 2025
ChatGPT agent System Card: OpenAI’s agentic model unites research, browser automation, and code tools with safeguards under the Preparedness Framework.
Emergent Price-Fixing by LLM Auction AgentsJul 16, 2025
An inquiry into emergent collusion in Large Language Models.
Agent S2 to Agent S3: “Let's set all asks at 63 next cycle… No undercutting ensur…
Introduction | LLM Inference in ProductionJul 14, 2025
A practical handbook for engineers building, optimizing, scaling and operating LLM inference systems in production.
Shirin Khosravi Jam on SubstackJul 13, 2025
I taught myself how to build RAG + AI Agents in production.
Been running them live for over a year now. Here are 4 steps + the only resources you really need to do the same.
…
Ugly truth: most “AI Engineers” shouting on social media haven’t built a single real production AI Agent or RAG system.
If you want to be different - actually build and ship these systems: here’s a laser-focused roadmap from my own journey.
..
🚀 𝗦𝘁𝗮𝗿𝘁 𝘄𝗶𝘁𝗵 𝗳𝘂𝗻𝗱𝗮𝗺𝗲𝗻𝘁𝗮𝗹𝘀
Because no matter how fast LLM/GenAI evolves, your ML & software foundations keep you relevant.
✅ Hands-On ML with TensorFlow & Keras: https://lnkd.in/dWrf5pbS
✅ ISLR: https://lnkd.in/djGPVVwJ
✅ Machine Learning for Beginners by Microsoft (free curriculum):
https://lnkd.in/d8kZA3es
…
1️⃣ 𝗠𝗮𝘀𝘁𝗲𝗿 𝗟𝗟𝗠𝘀 & 𝗚𝗲𝗻𝗔𝗜 𝗦𝘆𝘀𝘁𝗲𝗺𝘀
→ Learn to build & deploy LLMs, understand system design tradeoffs, and handle real constraints.
📚 Must-reads:
✅ Designing ML Systems – Chip Huyen: https://lnkd.in/guN-UhXA
✅ The LLM Engineering Handbook – Iusztin & Labonne: https://lnkd.in/gyA4vFXz
✅ Build a LLM (From Scratch) – Raschka: https://lnkd.in/gXNa-SPb
✅ Hands-On LLMs GitHub: https://lnkd.in/eV4qrgNW
…
2️⃣ 𝗚𝗼 𝗯𝗲𝘆𝗼𝗻𝗱 𝘁𝗵𝗲 𝗵𝘆𝗽𝗲 𝗼𝗻 𝗔𝗜 𝗔𝗴𝗲𝗻𝘁𝘀
→ Most demos = “if user says hello, return hello.”
Actual agents? Handle memory, tools, workflows, costs.
✅ AI Agents for Beginners (GitHub): https://lnkd.in/eik2btmq
✅ GenAI Agents – build step by step: https://lnkd.in/dnhwk75V
✅ OpenAI’s guide to agents: https://lnkd.in/guRfXsFK
✅ Anthropic’s Building Effective Agents: https://lnkd.in/gRWKANS4
…
3️⃣ 𝗥𝗔𝗚 𝗶𝘀 𝗻𝗼𝘁 𝗷𝘂𝘀𝘁 𝗮 𝘃𝗲𝗰𝘁𝗼𝗿 𝗗𝗕
Real Retrieval-Augmented Generation requires:
→ Chunking, hybrid BM25 + vectors, reranking
→ Query routing & fallback
→ Evaluating retrieval quality, not just LLM output
✅ RAG Techniques repo: https://lnkd.in/dD4S8Cq2
✅ Advanced RAG: https://lnkd.in/g2ZHwZ3w
✅ Cost-efficient retrieval with Postgres/OpenSearch/Qdrant
✅ Monitoring with Langfuse / Comet
…
4️⃣ 𝗚𝗲𝘁 𝘀𝗲𝗿𝗶𝗼𝘂𝘀 𝗼𝗻 𝗦𝗼𝗳𝘁𝘄𝗮𝗿𝗲 & 𝗜𝗻𝗳𝗿𝗮
→ FastAPI, async Python, Pydantic
→ Docker, CI/CD, blue-green deploys
→ ETL orchestration (Airflow, Step Functions)
→ Logs + metrics (CloudWatch, Prometheus)
✅ Move to production: https://lnkd.in/dnnkrJbE
✅ Made with ML (full ML+infra): https://lnkd.in/e-XQwXqS
✅ AWS GenAI path: https://lnkd.in/dmhR3uPc
…
5️⃣ 𝗪𝗵𝗲𝗿𝗲 𝗱𝗼 𝗜 𝗹𝗲𝗮𝗿𝗻 𝗳𝗿𝗼𝗺?
→ Stanford CS336 / CS236 / CS229 (Google it)
→ MIT 6.S191, Karpathy’s Zero to Hero: https://lnkd.in/dT7vqqQ5
→ Google Kaggle GenAI sprint: https://lnkd.in/ga5X7tVJ
→ NVIDIA’s end-to-end LLM stack: https://lnkd.in/gCtDnhni
→ DeepLearning.AI’s short courses: https://lnkd.in/gAYmJqS6
…
💥 𝗞𝗲𝗲𝗽 𝗶𝘁 𝗿𝗲𝗮𝗹:
Don’t fall for “built in 5 min, dead in 10 min” demos.
In prod, it’s about latency, cost, maintainability, guardrails.
♻️ Let's repost to help more people on this journey 💚
🔍 Perplexity 101: Ultimate Guide to Deep Search, Labs, Templates & 53 Pro PromptsJul 13, 2025
Your complete playbook for transforming how you research with AI's most powerful search engine
Inside India’s scramble for AI independenceJul 8, 2025
Structural challenges and the nation’s many languages have made it tough to develop foundational AI models. But the government is keen not to be left behind.
Coders' Colaboratory mini-hackathon on `llm` by simonwJul 8, 2025
Coders' Colaboratory mini-hackathon on `llm` by simonw - llm-hackathon.md
Become a command-line superhero with Simon Willison’s llm toolJul 7, 2025
Christopher Smith ran a mini hackathon in Albany New York at the weekend around uses of my LLM - the first in-person event I'm aware of dedicated to that project! …
What is Ollama? Running Local LLMs Made SimpleJul 4, 2025
Ready to become a certified watsonx AI Assistant Engineer? Register now and use code IBMTechYT20 for 20% off of your exam → https://ibm.biz/Bdnd3dLearn more ...
Building software on top of Large Language ModelsJul 4, 2025
I presented a three hour workshop at PyCon US yesterday titled Building software on top of Large Language Models. The goal of the workshop was to give participants everything they …
UsageJul 4, 2025
7 Popular LLMs Explained in 7 Minutes - KDnuggetsJul 2, 2025
Get a quick overview of GPT, BERT, LLaMA, and more!
why AI language models like chatGPT can’t understand flowersJun 30, 2025
a study by ohio state university investigates whether large language models can represent human concepts without physically experiencing them.
What I learned trying seven coding agentsJun 28, 2025
There's still room for improvement, but don't underestimate this technology.
Gemini CLIJun 25, 2025
First there was Claude Code in February, then OpenAI Codex (CLI) in April, and now Gemini CLI in June. All three of the largest AI labs now have their own …
I Tested LLM Agents on Simple Safety Rules. They Failed in Surprising and Informative Ways. — LessWrongJun 25, 2025
TL;DR: I developed a simple, open-source benchmark to test if LLM agents follow high-level safety principles when they conflict with a given task acc…
Building Effective AI AgentsJun 17, 2025
Discover how Anthropic approaches the development of reliable AI agents. Learn about our research on agent capabilities, safety considerations, and technical framework for building trustworthy AI.
32 MCP Servers You Need To Check Out Now - KDnuggetsMay 28, 2025
Explore list of top MCP servers that enable seamless integration of LLMs with tools like databases, APIs, communication platforms, and more, helping you automate workflows and enhance AI applications.
Large Language Models can run tools in your terminal with LLM 0.26May 27, 2025
LLM 0.26 is out with the biggest new feature since I started the project: support for tools. You can now use the LLM CLI tool—and Python library—to grant LLMs from …
Highlights from the Claude 4 system promptMay 27, 2025
Anthropic publish most of the system prompts for their chat models as part of their release notes. They recently shared the new prompts for both Claude Opus 4 and Claude …
System Card: Claude Opus 4 & Claude Sonnet 4May 25, 2025
Direct link to a PDF on Anthropic's CDN because they don't appear to have a landing page anywhere for this document. Anthropic's system cards are always worth a look, and …
The Ultimate Guide to Learning Anything with NotebookLM - KDnuggetsMay 22, 2025
Learn about turning your notes and sources into a personalized, AI-powered tutor with NotebookLM.
llm-anthropic 0.16May 22, 2025
New release of my LLM plugin for Anthropic adding the new Claude 4 Opus and Sonnet models. You can see pelicans on bicycles generated using the new plugin at the …
Meta Introduces KernelLLM: An 8B LLM that Translates PyTorch Modules into Efficient Triton GPU KernelsMay 20, 2025
Insights into DeepSeek-V3: Scaling Challenges and Reflections on Hardware for AI Architectures | alphaXivMay 19, 2025
View recent discussion. Abstract: The rapid scaling of large language models (LLMs) has unveiled critical
limitations in current hardware architectures, including constraints in memory
capacity, computational efficiency, and interconnection bandwidth. DeepSeek-V3,
trained on 2,048 NVIDIA H800 GPUs, demonstrates how hardware-aware model
co-design can effectively address these challenges, enabling cost-efficient
training and inference at scale. This paper presents an in-depth analysis of
the DeepSeek-V3/R1 model architecture and its AI infrastructure, highlighting
key innovations such as Multi-head Latent Attention (MLA) for enhanced memory
efficiency, Mixture of Experts (MoE) architectures for optimized
computation-communication trade-offs, FP8 mixed-precision training to unlock
the full potential of hardware capabilities, and a Multi-Plane Network Topology
to minimize cluster-level network overhead. Building on the hardware
bottlenecks encountered during DeepSeek-V3's development, we engage in a
broader discussion with academic and industry peers on potential future
hardware directions, including precise low-precision computation units,
scale-up and scale-out convergence, and innovations in low-latency
communication fabrics. These insights underscore the critical role of hardware
and model co-design in meeting the escalating demands of AI workloads, offering
a practical blueprint for innovation in next-generation AI systems.
Building AI Agents? A2A vs. MCP Explained Simply - KDnuggetsMay 15, 2025
Confused by AI agent frameworks? This article makes sense of A2A and MCP.
mendableai/firecrawl: 🔥 Turn entire websites into LLM-ready markdown or structured data. Scrape, crawl and extract with a single API.May 11, 2025
🔥 Turn entire websites into LLM-ready markdown or structured data. Scrape, crawl and extract with a single API. - mendableai/firecrawl
22365_3_Prompt Engineering_v7 (1).pdfMay 7, 2025
Prompt Engineering | KaggleMay 7, 2025
Kaggle is the world’s largest data science community with powerful tools and resources to help you achieve your data science goals.
Alibaba’s Qwen3 topples DeepSeek’s R1 as world’s highest-ranked open-source AI modelMay 6, 2025
Qwen3 surpassed R1 in LiveBench tests that gauge open-source AI models’ capabilities including coding, maths and data analysis.
Physics of Language Models: Part 4.1, Architecture Design and the Magic of Canon LayersMay 5, 2025
Understanding architectural differences between large language models (LLMs) remains challenging, particularly at academic-scale pretraining (e.g., 1.3B
Dummy’s Guide to Modern LLM SamplingMay 4, 2025
This is an extremely useful, detailed set of explanations by [@AlpinDale](https://x.com/AlpinDale) covering the various different sampling strategies used by modern LLMs. LLMs return a set of next-token probabilities for every …
Creating an MCP Server Using GoMay 3, 2025
In November 2024, Anthropic published a blog post announcing what may be its most significant contribution to the AI ecosystem so far: the Model Context Protocol.
ollama with docker composeMay 3, 2025
Learn how to use Ollama and Open WebUI inside Docker with Docker compose to run any open LLM and create your own mini ChatGPT.
ollama APIsMay 3, 2025
Learn how to use Ollama APIs like generate, chat and more like list model, pull model, etc with cURL and Jq with useful examples
What is Ollama and how to use it: a quick guide [part 1]May 3, 2025
Learn what Ollama is, its features and how to run it on your local machine with DeepSeek R1 and Smollm2 models
Ollama commands: How to use Ollama in the command line [Part 2]May 3, 2025
Learn about the important Ollama commands to run Ollama on your local machine with Smollm2 and Qwen 2.5 models
LLM Projects with PythonMay 3, 2025
In this article, I'll take you through a list of 10 hands-on LLM projects with Python you should try to master LLMs. LLM Projects with Python.
XiaomiMiMo/MiMo: MiMo: Unlocking the Reasoning Potential of Language Model – From Pretraining to PosttrainingMay 1, 2025
MiMo: Unlocking the Reasoning Potential of Language Model – From Pretraining to Posttraining - XiaomiMiMo/MiMo
The Leaderboard IllusionApr 30, 2025
Measuring progress is fundamental to the advancement of any scientific field. As benchmarks play an increasingly central role, they also grow more susceptible to distortion. Chatbot Arena has emerged as the go-to leaderboard for ranking the most capable AI systems. Yet, in this work we identify systematic issues that have resulted in a distorted playing field. We find that undisclosed private testing practices benefit a handful of providers who are able to test multiple variants before public release and retract scores if desired. We establish that the ability of these providers to choose the best score leads to biased Arena scores due to selective disclosure of performance results. At an extreme, we identify 27 private LLM variants tested by Meta in the lead-up to the Llama-4 release. We also establish that proprietary closed models are sampled at higher rates (number of battles) and have fewer models removed from the arena than open-weight and open-source alternatives. Both these policies lead to large data access asymmetries over time. Providers like Google and OpenAI have received an estimated 19.2% and 20.4% of all data on the arena, respectively. In contrast, a combined 83 open-weight models have only received an estimated 29.7% of the total data. We show that access to Chatbot Arena data yields substantial benefits; even limited additional data can result in relative performance gains of up to 112% on the arena distribution, based on our conservative estimates. Together, these dynamics result in overfitting to Arena-specific dynamics rather than general model quality. The Arena builds on the substantial efforts of both the organizers and an open community that maintains this valuable evaluation platform. We offer actionable recommendations to reform the Chatbot Arena's evaluation framework and promote fairer, more transparent benchmarking for the field
DeepSeek R2 AI Model Rumors Begin to Swirl Online; Reported to Feature 97% Lower Costs Compared to GPT-4…Apr 26, 2025
DeepSeek is set to drop another model pretty soon, as details about their next DeepSeek R2 model have surfaced on the internet
To Make Language Models Work Better, Researchers Sidestep Language | Quanta MagazineApr 20, 2025
We insist that large language models repeatedly translate their mathematical processes into words. There may be a better way.
The State of Reinforcement Learning for LLM ReasoningApr 20, 2025
A lot has happened this month, especially with the releases of new flagship models like GPT-4.5 and Llama 4. But you might have noticed that reactions to these releases were relatively muted. Why? One reason could be that GPT-4.5 and Llama 4 remain conventional models, which means they were trained without explicit reinforcement learning for reasoning. However, OpenAI's recent release of the o3 reasoning model demonstrates there is still considerable room for improvement when investing compute strategically, specifically via reinforcement learning methods tailored for reasoning tasks. While reasoning alone isn't a silver bullet, it reliably improves model accuracy and problem-solving capabilities on challenging tasks (so far). And I expect reasoning-focused post-training to become standard practice in future LLM pipelines. So, in this article, let's explore the latest developments in reasoning via reinforcement learning.
How To Build An Agent | AmpApr 16, 2025
Building a fully functional, code-editing agent in less than 400 lines.
humanlayer/12-factor-agentsApr 13, 2025
What are the principles we can use to build LLM-powered software that is actually good enough to put in the hands of production customers? - humanlayer/12-factor-agents
The Rise of Slopsquatting: How AI Hallucinations Are Fueling...Apr 13, 2025
Slopsquatting is a new supply chain threat where AI-assisted code generators recommend hallucinated packages that attackers register and weaponize.
12-factor-agents: Principles to build LLM-powered software good enough to put in the hands of production customersApr 11, 2025
0 comments
An LLM Query Understanding ServiceApr 10, 2025
Doug Turnbull recently wrote about how [all search is structured now](https://softwaredoug.com/blog/2025/04/02/all-search-structured-now): Many times, even a small open source LLM will be able to turn a search query into reasonable …
The Man Out to Prove How Dumb AI Still IsApr 10, 2025
François Chollet has constructed the ultimate test for the bots.
The “S” in MCP Stands for Security - Elena Cross - MediumApr 8, 2025
MCP, short for Model Context Protocol, is the hot new standard behind how Large Language Models (LLMs) like Claude, GPT, or Cursor integrate with tools and data. It’s been described as the “USB-C for…
Topic 31: How to Reduce Memory Use in Reasoning ModelsApr 8, 2025
we explore how combining LightThinker and Multi-Head Latent Attention cuts memory and boosts performance
Topic 33: Slim Attention, KArAt, XAttention and Multi-Token Attention Explained – What’s Really Changing in Transformers?Apr 7, 2025
A Blog post by Ksenia Se on Hugging Face
A look at the ARC-AGI exam designed by French computer scientist François Chollet to show the gulf between AI models' memorized answers and “fluid intelligence”Apr 7, 2025
By Matteo Wong / The Atlantic. View the full context on Techmeme.
The Llama 4 herd: The beginning of a new era of natively multimodal AI innovationApr 6, 2025
We’re introducing Llama 4 Scout and Llama 4 Maverick, the first open-weight natively multimodal models with unprecedented context support and our first built using a mixture-of-experts (MoE) architecture.
Model Context Protocol (MCP) an overviewApr 6, 2025
Overview of the Model Context Protocol (MCP) how it works, what are MCP servers and clients, and how to use it.
Use MCP servers in VS Code (Preview)Apr 6, 2025
Learn how to configure and use Model Context Protocol (MCP) servers with GitHub Copilot in Visual Studio Code.
If Anthropic Succeeds, a Nation of Benevolent AI Geniuses Could Be BornApr 5, 2025
The brother goes on vision quests. The sister is a former English major. Together, they defected from OpenAI, started Anthropic, and built (they say) AI’s most upstanding citizen, Claude.
LLM Benchmarking: Fundamental Concepts | NVIDIA Technical BlogApr 2, 2025
The past few years have witnessed the rise in popularity of generative AI and large language models (LLMs), as part of a broad AI revolution.
A Comprehensive Guide to LLM Routing: Tools and FrameworksApr 2, 2025
Deploying LLMs presents challenges, particularly in optimizing efficiency, managing computational costs, and ensuring high-quality performance. LLM routing has emerged as a strategic solution to these challenges, enabling intelligent task allocation to the most suitable models or tools. Let’s delve into the intricacies of LLM routing, explore various tools and frameworks designed for its implementation, and […]
First Look at Reasoning From Scratch: Chapter 1Mar 29, 2025
As you know, I've been writing a lot lately about the latest research on reasoning in LLMs. Before my next research-focused blog post, I wanted to offer something special to my paid subscribers as a thank-you for your ongoing support. So, I've started writing a new book on how reasoning works in LLMs, and here I'm sharing the first Chapter 1 with you. This ~15-page chapter is an introduction reasoning in the context of LLMs and provides an overview of methods like inference-time scaling and reinforcement learning. Thanks for your support! I hope you enjoy the chapter, and stay tuned for my next blog post on reasoning research!
How DeepSeek Rewrote the Transformer [MLA]Mar 28, 2025
Thanks to KiwiCo for sponsoring today’s video! Go to https://www.kiwico.com/welchlabs and use code WELCHLABS for 50% off your first monthly club crate or for...
Tracing the thoughts of a large language modelMar 28, 2025
In a follow-up to the research that brought us the [delightful Golden Gate Claude](https://simonwillison.net/2024/May/24/golden-gate-claude/) last year, Anthropic have published two new papers about LLM interpretability: - [Circuit Tracing: Revealing Computational …
Anthropic can now track the bizarre inner workings of a large language modelMar 27, 2025
What they found challenges some basic assumptions about how this technology really works.
10 Must-Know Python Libraries for LLMs in 2025Mar 26, 2025
In this article, we explore 10 of the Python libraries every developer should know in 2025.
Function calling with GemmaMar 26, 2025
Google's Gemma 3 model (the 27B variant is particularly capable, I've been trying it out [via Ollama](https://ollama.com/library/gemma3)) supports function calling exclusively through prompt engineering. The official documentation describes two recommended …
Putting Gemini 2.5 Pro through its pacesMar 26, 2025
There’s a new release from Google Gemini this morning: the first in the Gemini 2.5 series. Google call it “a thinking model, designed to tackle increasingly complex problems”. It’s already …
Introducing 4o Image GenerationMar 25, 2025
At OpenAI, we have long believed image generation should be a primary capability of our language models. That’s why we’ve built our most advanced image generator yet into GPT‑4o. The result—image generation that is not only beautiful, but useful.
What is the hallucination index?Mar 25, 2025
The Hallucination Index is a benchmark that measures the frequency of inaccuracies in large language models, indicating their reliability and contextual understanding.
Improving Recommender Systems & Search in the Age of LLMsMar 22, 2025
Model architectures, data generation, training paradigms, and unified frameworks inspired by LLMs.
Anthropic just gave Claude a superpower: real-time web search. Here’s why it changes everythingMar 20, 2025
Anthropic launches real-time web search for Claude AI, challenging ChatGPT's dominance while securing $3.5 billion in funding at a $61.5 billion valuation.
Mistral Small 3.1 runs on a MacBook and beats giants - DataconomyMar 18, 2025
Paris-based artificial intelligence startup Mistral AI has announced the open-source release of its lightweight AI model, Mistral Small 3.1, which the company
Mistral Small 3.1Mar 17, 2025
Mistral Small 3 [came out in January](https://simonwillison.net/2025/Jan/30/mistral-small-3/) and was a notable, genuinely excellent local model that used an Apache 2.0 license. Mistral Small 3.1 offers a significant improvement: it's multi-modal …
https://www.r-bloggers.com/2025/03/the-ellmer-package-for-using-llms-with-r-is-a-game-changer-for-scientists-2/Mar 16, 2025
The ellmer package for using LLMs with R is a game changer for scientists Why is ellmer a game changer for scientists? In this tutorial we’ll look at how we can access LLM agents through API calls. We’ll use this skill for created structued data fro...
What is catastrophic forgetting? - DataconomyMar 13, 2025
Catastrophic Forgetting is a phenomenon where neural networks lose previously learned information when trained on new data, similar to human memory loss.
Top 7 Open-Source LLMs in 2025 - KDnuggetsMar 13, 2025
These models are free to use, can be fine-tuned, and offer enhanced privacy and security since they can run directly on your machine, and match the performance of proprietary solutions like o3-min and Gemini 2.0.
What are model cards? - DataconomyMar 12, 2025
Model cards are documentation tools in machine learning that provide essential information about models, promoting transparency, trust, and ethical considerations in AI systems.
How I use LLMs to help me write codeMar 11, 2025
Plus CSS view transitions and a major update to llm-openrouter
Mistral OCRMar 7, 2025
New closed-source specialist OCR model by Mistral - you can feed it images or a PDF and it produces Markdown with optional embedded images. It's available [via their API](https://docs.mistral.ai/api/#tag/ocr), or …
llm-ollama 0.9.0Mar 4, 2025
This release of the `llm-ollama` plugin adds support for [schemas](https://simonwillison.net/2025/Feb/28/llm-schemas/), thanks to a [PR by Adam Compton](https://github.com/taketwo/llm-ollama/pull/36). Ollama provides very robust support for this pattern thanks to their [structured outputs](https://ollama.com/blog/structured-outputs) …
Claude 3.7 Sonnet and Claude CodeFeb 26, 2025
Today, we’re announcing Claude 3.7 Sonnet, our most intelligent model to date and the first hybrid reasoning model generally available on the market.
The Deep Research problem — Benedict EvansFeb 26, 2025
OpenAI’s Deep Research is built for me, and I can’t use it. It’s another amazing demo, until it breaks. But it breaks in really interesting ways.
5 Principles for Writing Effective Prompts (2025 Update)Feb 24, 2025
Solid techniques to get really good results from any LLM
Greg Brockman shared this template for promptingFeb 24, 2025
OpenAI's president Greg Brockman recently shared this cool template for prompting their reasoning models o1/o3. Turns out, this is great for ANY reasoning… | 32 comments on LinkedIn
LLM LeaderboardFeb 21, 2025
Comparison and ranking the performance of over 30 AI models (LLMs) across key metrics including quality, price, performance and speed (output speed - tokens per second & latency - TTFT), context window & others.
Here Are My Go-To AI ToolsFeb 17, 2025
I share my preferences for LLMs, image models, AI video, AI music, AI-powered research, and more. These are the AI tools I regularly use or recommend to others.
A Step-by-Step Guide to Setting Up a Custom BPE Tokenizer with Tiktoken for Advanced NLP Applications in PythonFeb 17, 2025
A Step-by-Step Guide to Setting Up a Custom BPE Tokenizer with Tiktoken for Advanced NLP Applications in Python
Using pip to install a Large Language Model that’s under 100MBFeb 7, 2025
I just released llm-smollm2, a new plugin for LLM that bundles a quantized copy of the SmolLM2-135M-Instruct LLM inside of the Python package. This means you can now pip install …
Understanding Reasoning LLMsFeb 5, 2025
In this article, I will describe the four main approaches to building reasoning models, or how we can enhance LLMs with reasoning capabilities. I hope this p...
5 AI Agent Frameworks Compared - KDnuggetsFeb 3, 2025
Check out this comparison of 5 AI frameworks to determine which you should choose.
(WIP) A Little Bit of Reinforcement Learning from Human FeedbackFeb 2, 2025
The Reinforcement Learning from Human Feedback Book
Creating an AI Agent-Based System with LangGraph: Adding Persistence and Streaming (Step by Step Guide)Feb 2, 2025
In our previous tutorial, we built an AI agent capable of answering queries by surfing the web. However, when building agents for longer-running tasks, two critical concepts come into play: persistence and streaming. Persistence allows you to save the state of an agent at any given point, enabling you to resume from that state in future interactions. This is crucial for long-running applications. On the other hand, streaming lets you emit real-time signals about what the agent is doing at any moment, providing transparency and control over its actions. In this tutorial, we’ll enhance our agent by adding these powerful
aidanmclaughlin/AidanBench: Aidan Bench attempts to measure in LLMs.Feb 1, 2025
Aidan Bench attempts to measure in LLMs. - aidanmclaughlin/AidanBench
OpenAI o3-mini, now available in LLMJan 31, 2025
o3-mini is out today. As with other o-series models it’s a slightly difficult one to evaluate—we now need to decide if a prompt is best run using GPT-4o, o1, o3-mini …
Multi-Head Latent Attention and Other KV Cache TricksJan 29, 2025
How a Key-Value (KV) cache reduces Transformer inference time by trading memory for computation
Qwen AI Introduces Qwen2.5-Max: A large MoE LLM Pretrained on Massive Data and Post-Trained with Curated SFT and RLHF RecipesJan 29, 2025
The field of artificial intelligence is evolving rapidly, with increasing efforts to develop more capable and efficient language models. However, scaling these models comes with challenges, particularly regarding computational resources and the complexity of training. The research community is still exploring best practices for scaling extremely large models, whether they use a dense or Mixture-of-Experts (MoE) architecture. Until recently, many details about this process were not widely shared, making it difficult to refine and improve large-scale AI systems. Qwen AI aims to address these challenges with Qwen2.5-Max, a large MoE model pretrained on over 20 trillion tokens and further refined
Alibaba releases AI model it says surpasses DeepSeekJan 29, 2025
The unusual timing of the Qwen 2.5-Max's release points to the pressure DeepSeek's meteoric rise in the past three weeks has placed on overseas rivals and domestic competition.
On MLAJan 28, 2025
DeepSeek-R1 vs. OpenAI’s o1: A New Step in Open Source and Proprietary ModelsJan 26, 2025
AI has entered an era of the rise of competitive and groundbreaking large language models and multimodal models. The development has two sides, one with open source and the other being propriety models. DeepSeek-R1, an open-source AI model developed by DeepSeek-AI, a Chinese research company, exemplifies this trend. Its emergence has challenged the dominance of proprietary models such as OpenAI’s o1, sparking discussions on cost efficiency, open-source innovation, and global technological leadership in AI. Let’s delve into the development, capabilities, and implications of DeepSeek-R1 while comparing it with OpenAI’s o1 system, considering the contributions of both spaces. DeepSeek-R1 DeepSeek-R1 is
AI hallucinations can’t be stopped — but these techniques can limit their damageJan 25, 2025
Developers have tricks to stop artificial intelligence from making things up, but large language models are still struggling to tell the truth, the whole truth and nothing but the truth.
Noteworthy LLM Research Papers of 2024Jan 23, 2025
This article covers 12 influential AI research papers of 2024, ranging from mixture-of-experts models to new LLM scaling laws for precision..
LLM 0.20Jan 23, 2025
New release of my [LLM](https://llm.datasette.io/) CLI tool and Python library. A bunch of accumulated fixes and features since the start of December, most notably: - Support for OpenAI's [o1 model](https://platform.openai.com/docs/models#o1) …
How Chinese A.I. Start-Up DeepSeek Is Competing With OpenAI and GoogleJan 23, 2025
The company built a cheaper, competitive chatbot with fewer high-end computer chips than U.S. behemoths like Google and OpenAI, showing the limits of chip export control.
DeepSeek-R1 and exploring DeepSeek-R1-Distill-Llama-8BJan 20, 2025
DeepSeek are the Chinese AI lab who dropped the best currently available open weights LLM on Christmas day, DeepSeek v3. That model was trained in part using their unreleased R1 …
Microsoft Presents a Comprehensive Framework for Securing Generative AI Systems Using Lessons from Red Teaming 100 Generative AI ProductsJan 18, 2025
The rapid advancement and widespread adoption of generative AI systems across various domains have increased the critical importance of AI red teaming for evaluating technology safety and security. While AI red teaming aims to evaluate end-to-end systems by simulating real-world attacks, current methodologies face significant challenges in effectiveness and implementation. The complexity of modern AI systems, with their expanding capabilities across multiple modalities including vision and audio, has created an unprecedented array of potential vulnerabilities and attack vectors. Moreover, integrating agentic systems that grant AI models higher privileges and access to external tools has substantially increased the attack surface and
Lessons From Red Teaming 100 Generative AI ProductsJan 18, 2025
New paper from Microsoft describing their top eight lessons learned red teaming (deliberately seeking security vulnerabilities in) 100 different generative AI models and products over the past few years. …
Implementing A Byte Pair Encoding (BPE) Tokenizer From ScratchJan 18, 2025
This is a standalone notebook implementing the popular byte pair encoding (BPE) tokenization algorithm, which is used in models like GPT-2 to GPT-4, Llama 3,...
The 2025 AI Engineering Reading ListJan 14, 2025
We picked 50 paper/models/blogs across 10 fields in AI Eng: LLMs, Benchmarks, Prompting, RAG, Agents, CodeGen, Vision, Voice, Diffusion, Finetuning. If you're starting from scratch, start here.
AgentsJan 12, 2025
Intelligent agents are considered by many to be the ultimate goal of AI. The classic book by Stuart Russell and Peter Norvig, Artificial Intelligence: A Modern Approach (Prentice Hall, 1995), defines the field of AI research as “the study and design of rational agents.”
100 Must-Read Generative AI Papers from 2024Jan 12, 2025
A comprehensive list of some of the most impactful generative papers from last year
7 Next-Generation Prompt Engineering Techniques - MachineLearningMastery.comJan 9, 2025
[caption align=
How to use NotebookLM for personalized knowledge synthesisJan 8, 2025
Two powerful workflows that unlock everything else. Intro: Golden Age of AI Tools and AI agent frameworks begins in 2025.
An Opinionated Evals Reading List — Apollo ResearchJan 7, 2025
A long reading list of evals papers with recommendations and comments by the evals team.
Things we learned out about LLMs in 2024Dec 31, 2024
A lot has happened in the world of Large Language Models over the course of 2024. Here’s a review of things we figured out about the field in the past …
How to Build a Graph RAG AppDec 30, 2024
Using knowledge graphs and AI to retrieve, filter, and summarize medical journal articles
Gemini 2.0 Flash "Thinking Mode"Dec 24, 2024
Plus building Python tools with a one-shot prompt using uv run and Claude Projects
LLM Research Papers: The 2024 ListDec 22, 2024
A curated list of interesting LLM-related research papers from 2024, shared for those looking for something to read over the holidays.
Why AI language models choke on too much textDec 22, 2024
Compute costs scale with the square of the input size. That’s not great.
rasbt/LLMs-from-scratch: Implement a ChatGPT-like LLM in PyTorch from scratch, step by stepDec 21, 2024
Implement a ChatGPT-like LLM in PyTorch from scratch, step by step - rasbt/LLMs-from-scratch
Slim-Llama: An Energy-Efficient LLM ASIC Processor Supporting 3-Billion Parameters at Just 4.69mWDec 21, 2024
Large Language Models (LLMs) have become a cornerstone of artificial intelligence, driving advancements in natural language processing and decision-making tasks. However, their extensive power demands, resulting from high computational overhead and frequent external memory access, significantly hinder their scalability and deployment, especially in energy-constrained environments such as edge devices. This escalates the cost of operation while also limiting accessibility to these LLMs, which therefore calls for energy-efficient approaches designed to handle billion-parameter models. Current approaches to reduce the computational and memory needs of LLMs are based either on general-purpose processors or on GPUs, with a combination of weight quantization and
OpenAI Unveils o3 System That Reasons Through Math, Science ProblemsDec 21, 2024
The artificial intelligence start-up said the new system, OpenAI o3, outperformed leading A.I. technologies on tests that rate skills in math, science, coding and logic.
Building effective agents \ AnthropicDec 19, 2024
A post for developers with advice and workflows for building effective AI agents
Meta AI Proposes Large Concept Models (LCMs): A Semantic Leap Beyond Token-based Language ModelingDec 16, 2024
Large Language Models (LLMs) have achieved remarkable advancements in natural language processing (NLP), enabling applications in text generation, summarization, and question-answering. However, their reliance on token-level processing—predicting one word at a time—presents challenges. This approach contrasts with human communication, which often operates at higher levels of abstraction, such as sentences or ideas. Token-level modeling also struggles with tasks requiring long-context understanding and may produce outputs with inconsistencies. Moreover, extending these models to multilingual and multimodal applications is computationally expensive and data-intensive. To address these issues, researchers at Meta AI have proposed a new approach: Large Concept Models (LCMs). Large Concept
How LLMs Store and Use Knowledge? This AI Paper Introduces Knowledge Circuits: A Framework for Understanding and Improving Knowledge Storage in Transformer-Based LLMsDec 15, 2024
Large language models (LLMs) can understand and generate human-like text by encoding vast knowledge repositories within their parameters. This capacity enables them to perform complex reasoning tasks, adapt to various applications, and interact effectively with humans. However, despite their remarkable achievements, researchers continue to investigate the mechanisms underlying the storage and utilization of knowledge in these systems, aiming to enhance their efficiency and reliability further. A key challenge in using large language models is their propensity to generate inaccurate, biased, or hallucinatory outputs. These problems arise from a limited understanding of how such models organize and access knowledge. Without clear
LangChain vs OpenAI API: When Simplicity Meets Scalability | Aditya Bhattacharya | Blogs WebsiteDec 13, 2024
This blog explores a detailed comparison between the OpenAI API and LangChain, highlighting key differences in performance and developer experience and the low level code for why these differences exist.
Scaling Laws – O1 Pro Architecture, Reasoning Training Infrastructure, Orion and Claude 3.5 Opus “Failures”Dec 12, 2024
There has been an increasing amount of fear, uncertainty and doubt (FUD) regarding AI Scaling laws. A cavalcade of part-time AI industry prognosticators have latched on to any bearish narrative the…
The AI Researchers Pushing Computers to Launch Nightmare ScenariosDec 11, 2024
It’s largely up to companies to test whether their AI is capable of superhuman harm. At Anthropic, the Frontier Red Team assesses the risk of catastrophe.
What are Hallucinations in LLMs and 6 Effective Strategies to Prevent ThemDec 9, 2024
In large language models (LLMs), “hallucination” refers to instances where models generate semantically or syntactically plausible outputs but are factually incorrect or nonsensical. For example, a hallucination occurs when a model provides erroneous information, such as stating that Addison's disease causes “bright yellow skin” when, in fact, it causes fatigue and low blood pressure. This phenomenon is a significant concern in AI, as it can lead to the spread of false or misleading information. The issue of AI hallucinations has been explored in various research studies. A survey in “ACM Computing Surveys” describes hallucinations as “unreal perceptions that feel real.”
CPU-GPU I/O-Aware LLM Inference Reduces Latency in GPUs by Optimizing CPU-GPU InteractionsDec 7, 2024
LLMs are driving major advances in research and development today. A significant shift has been observed in research objectives and methodologies toward an LLM-centric approach. However, they are associated with high expenses, making LLMs for large-scale utilization inaccessible to many. It is, therefore, a significant challenge to reduce the latency of operations, especially in dynamic applications that demand responsiveness. KV cache is used for autoregressive decoding in LLMs. It stores key-value pairs in multi-headed attention during the pre-filling phase of inference. During the decoding stage, new KV pairs get appended to the memory. KV cache stores the intermediate key and
AI Hallucinations: Why Large Language Models Make Things Up (And How to Fix It) - kapa.ai - Instant AI answers to technical questionsDec 5, 2024
Kapa.ai turns your knowledge base into a reliable and production-ready LLM-powered AI assistant that answers technical questions instantly. Trusted by 100+ startups and enterprises incl. OpenAI, Docker, Mapbox, Mixpanel and NextJS.
llama.cpp guide - Running LLMs locally, on any hardware, from scratchNov 29, 2024
Psst, kid, want some cheap and small LLMs?
Four Cutting-Edge Methods for Evaluating AI Agents and Enhancing LLM PerformanceNov 28, 2024
The advent of LLMs has propelled advancements in AI for decades. One such advanced application of LLMs is Agents, which replicate human reasoning remarkably. An agent is a system that can perform complicated tasks by following a reasoning process similar to humans: think (solution to the problem), collect (context from past information), analyze(the situations and data), and adapt (based on the style and feedback). Agents encourage the system through dynamic and intelligent activities, including planning, data analysis, data retrieval, and utilizing the model's past experiences. A typical agent has four components: Brain: An LLM with advanced processing capabilities, such as
eugeneyan/llm-paper-notes: Notes from the Latent Space paper club. Follow along or start your own!Nov 26, 2024
Notes from the Latent Space paper club. Follow along or start your own! - eugeneyan/llm-paper-notes
Analyzing the homerun year for LLMs: the top-100 most cited AI papers in 2023, with all medals for open models.Nov 11, 2024
9 October 2024, Mathias Parisot, Jakub Zavrel.Even in the red hot global race for AI dominance, you publish and you perish, unless your peers pick up your work, build further on it, and you manage to drive real progress in the field. And of course, we are all very curious who is currently having that kind of impact. Are the billions of dollars spent on AI R&D paying off in the long run? So here is, in continuation of our popular publication impact analysis of last year, Zeta Alpha's ranking of t
LLM Chunking, Indexing, Scoring and Agents, in a Nutshell - DataScienceCentral.comOct 31, 2024
LLM Chunking, Indexing, Scoring and Agents, in a Nutshell. The new PageRank of RAG/LLM. With details on building relevancy scores.
Developing a computer use modelOct 28, 2024
A discussion of how Anthropic's researchers developed Claude's new computer use skill, along with some relevant safety considerations
5 LLM Tools I Can’t Live WithoutOct 19, 2024
In this article, I share the five essential LLM tools that I currently find indispensable, and which have the potential to help revolutionize the way you work.
Claude: Everything you need to know about Anthropic's AI | TechCrunchOct 19, 2024
Anthropic, the AI vendor second in size only to OpenAI, has a powerful family of generative AI models called Claude. These models can perform a range of
Nvidia just dropped a new AI model that crushes OpenAI’s GPT-4—no big launch, just big resultsOct 17, 2024
Nvidia quietly launched a groundbreaking AI model that surpasses OpenAI’s GPT-4 and Anthropic’s Claude 3.5, signaling a major shift in the competitive landscape of artificial intelligence.
dpo-from-scratch.ipynbAug 4, 2024
Implementing a ChatGPT-like LLM in PyTorch from scratch, step by step - rasbt/LLMs-from-scratch
Towards Monosemanticity: A step towards understanding large language modelsAug 1, 2024
Understanding the mechanistic interpretability research problem and reverse-engineering these large language models
Meta unleashes its most powerful AI model, Llama 3.1, with 405B parametersJul 24, 2024
Llama 3.1 is the latest version of Meta's large language models, with a new model weight, 405 billion parameters, the biggest model it's trained.
Customize Generative AI Models for Enterprise Applications with Llama 3.1Jul 24, 2024
The newly unveiled Llama 3.1 collection of 8B, 70B, and 405B large language models (LLMs) is narrowing the gap between proprietary and open-source models. Their open nature is attracting more…
Llama 3.1 Released: Meta’s New Open-Source AI Model that You can Fine-Tune,Jul 24, 2024
Meta announced the release of Llama 3.1, the most capable model in the LLama Series. This latest iteration of the Llama series, particularly the 405B model, represents a substantial advancement in open-source AI capabilities, positioning Meta at the forefront of AI innovation. Meta has long advocated for open-source AI, a stance underscored by Mark Zuckerberg’s assertion that open-source benefits developers, Meta, and society. Llama 3.1 embodies this philosophy by offering state-of-the-art capabilities in an openly accessible model. The release aims to democratize AI, making cutting-edge technology available to various users and applications. The Llama 3.1 405B model stands out for
Meta Llama 3.1 405b is outperforming private models with open accessJul 24, 2024
Meta llama 3.1 405b kicks off a fresh chapter for open-source language models. This breakthrough brings unmatched skills to AI
Understanding Positional Embeddings in Transformers: From Absolute to RotarJul 20, 2024
A deep dive into absolute, relative, and rotary positional embeddings with code examples
Claude 3.5 SonnetJul 15, 2024
Introducing Claude 3.5 Sonnet—our most intelligent model yet. Sonnet now outperforms competitor models and Claude 3 Opus on key evaluations, at twice the speed.
Do large language models understand the world?Jul 13, 2024
In addition to its practical implications, recent work on “meaning representations” could shed light on some old philosophical questions.
Building an LLM Router for High-Quality and Cost-Effective ResponsesJul 4, 2024
Anyscale is the leading AI application platform. With Anyscale, developers can build, run and scale AI applications instantly.
From bare metal to a 70B model: infrastructure set-up and scripts - imbueJul 3, 2024
We would like to thank Voltage Park, Dell, H5, and NVIDIA for their invaluable partnership and help with setting up our cluster. A special…
StarCoder2-15B: A Powerful LLM for Code Generation, Summarization, and DocuJul 2, 2024
Experience the leading models to build enterprise generative AI apps now.
How Gradient created an open LLM with a million-token context windowJun 27, 2024
AI startup Gradient and cloud platform Crusoe teamed up to extend the context window of Meta's Llama 3 models to 1 million tokens.
Some Commonly Used Advanced Prompt Engineering Techniques Explained Using SJun 22, 2024
In the developing field of Artificial Intelligence (AI), the ability to think quickly has become increasingly significant. The necessity of communicating with AI models efficiently becomes critical as these models get more complex. In this article we will explain a number of sophisticated prompt engineering strategies, simplifying these difficult ideas through straightforward human metaphors. The techniques and their examples have been discussed to see how they resemble human approaches to problem-solving. Chaining Methods Analogy: Solving a problem step-by-step. Chaining techniques are similar to solving an issue one step at a time. Chaining techniques include directing the AI via a systematic
Key Metrics for Evaluating Large Language Models (LLMs)Jun 20, 2024
Evaluating Large Language Models (LLMs) is a challenging problem in language modeling, as real-world problems are complex and variable. Conventional benchmarks frequently fail to fully represent LLMs' all-encompassing performance. A recent LinkedIn post has emphasized a number of important measures that are essential to comprehend how well new models function, which are as follows. MixEval Achieving a balance between thorough user inquiries and effective grading systems is necessary for evaluating LLMs. Conventional standards based on ground truth and LLM-as-judge benchmarks encounter difficulties such as biases in grading and possible contamination over time. MixEval solves these problems by combining real-world user
Firecrawl: A Powerful Web Scraping Tool for Turning Websites into Large LanJun 20, 2024
In the rapidly advancing field of Artificial Intelligence (AI), effective use of web data can lead to unique applications and insights. A recent tweet has brought attention to Firecrawl, a potent tool in this field created by the Mendable AI team. Firecrawl is a state-of-the-art web scraping program made to tackle the complex problems involved in getting data off the internet. Web scraping is useful, but it frequently requires overcoming various challenges like proxies, caching, rate limitations, and material generated with JavaScript. Firecrawl is a vital tool for data scientists because it addresses these issues head-on. Even without a sitemap,
Let's reproduce GPT-2 (124M)Jun 19, 2024
We reproduce the GPT-2 (124M) from scratch. This video covers the whole process: First we build the GPT-2 network, then we optimize its training to be really fast, then we set up the training run following the GPT-2 and GPT-3 paper and their hyperparameters, then we hit run, and come back the next morning to see our results, and enjoy some amusing model generations. Keep in mind that in some places this video builds on the knowledge from earlier videos in the Zero to Hero Playlist (see my channel). You could also see this video as building my nanoGPT repo, which by the end is about 90% similar.
Links:
- build-nanogpt GitHub repo, with all the changes in this video as individual commits: https://github.com/karpathy/build-nanogpt
- nanoGPT repo: https://github.com/karpathy/nanoGPT
- llm.c repo: https://github.com/karpathy/llm.c
- my website: https://karpathy.ai
- my twitter: https://twitter.com/karpathy
- our Discord channel: https://discord.gg/3zy8kqD9Cp
Supplementary links:
- Attention is All You Need paper: https://arxiv.org/abs/1706.03762
- OpenAI GPT-3 paper: https://arxiv.org/abs/2005.14165 - OpenAI GPT-2 paper: https://d4mucfpksywv.cloudfront.net/better-language-models/language_models_are_unsupervised_multitask_learners.pdf- The GPU I'm training the model on is from Lambda GPU Cloud, I think the best and easiest way to spin up an on-demand GPU instance in the cloud that you can ssh to: https://lambdalabs.com
Chapters:
00:00:00 intro: Let’s reproduce GPT-2 (124M)
00:03:39 exploring the GPT-2 (124M) OpenAI checkpoint
00:13:47 SECTION 1: implementing the GPT-2 nn.Module
00:28:08 loading the huggingface/GPT-2 parameters
00:31:00 implementing the forward pass to get logits
00:33:31 sampling init, prefix tokens, tokenization
00:37:02 sampling loop
00:41:47 sample, auto-detect the device
00:45:50 let’s train: data batches (B,T) → logits (B,T,C)
00:52:53 cross entropy loss
00:56:42 optimization loop: overfit a single batch
01:02:00 data loader lite
01:06:14 parameter sharing wte and lm_head
01:13:47 model initialization: std 0.02, residual init
01:22:18 SECTION 2: Let’s make it fast. GPUs, mixed precision, 1000ms
01:28:14 Tensor Cores, timing the code, TF32 precision, 333ms
01:39:38 float16, gradient scalers, bfloat16, 300ms
01:48:15 torch.compile, Python overhead, kernel fusion, 130ms
02:00:18 flash attention, 96ms
02:06:54 nice/ugly numbers. vocab size 50257 → 50304, 93ms
02:14:55 SECTION 3: hyperpamaters, AdamW, gradient clipping
02:21:06 learning rate scheduler: warmup + cosine decay
02:26:21 batch size schedule, weight decay, FusedAdamW, 90ms
02:34:09 gradient accumulation
02:46:52 distributed data parallel (DDP)
03:10:21 datasets used in GPT-2, GPT-3, FineWeb (EDU)
03:23:10 validation data split, validation loss, sampling revive
03:28:23 evaluation: HellaSwag, starting the run
03:43:05 SECTION 4: results in the morning! GPT-2, GPT-3 repro
03:56:21 shoutout to llm.c, equivalent but faster code in raw C/CUDA
03:59:39 summary, phew, build-nanogpt github repo
Corrections:
I will post all errata and followups to the build-nanogpt GitHub repo (link above)
SuperThanks:
I experimentally enabled them on my channel yesterday. Totally optional and only use if rich. All revenue goes to to supporting my work in AI + Education.
How to use an open source LLM model locally and remotelyJun 19, 2024
Run an open source language model in your local machine and remotely.
“The” Midjourney model personalization guideJun 12, 2024
Midjourney model personalization is now live, offering you a more tailored image generation experience by teaching the AI your preferences.
How to use Perplexity in your PM workJun 12, 2024
27 examples (with actual prompts) of how product managers are using Perplexity today
[2406.01506] The Geometry of Categorical and Hierarchical Concepts in LargeJun 11, 2024
The linear representation hypothesis is the informal idea that semantic concepts are encoded as linear directions in the representation spaces of large language models (LLMs). Previous work has...
Sharpening LLMs: The Sharpest Tools and Essential Techniques for PrecisionJun 11, 2024
The ability to discern relevant and essential information from noise is paramount in AI, particularly within large language models (LLMs). With the surge of information and the complexity of tasks, there's a need for efficient mechanisms to enhance the performance and reliability of these models. Let’s explore the essential tools & techniques for refining LLMs and delivering precise, actionable insights. The focus will be on Retrieval-Augmented Generation (RAG), agentic functions, Chain of Thought (CoT) prompting, few-shot learning, prompt engineering, and prompt optimization. Retrieval-Augmented Generation (RAG): Providing Relevant Context RAG combines the power of retrieval mechanisms with generative models, ensuring that
List of Activities and Their Corresponding Suitable LLMs in the ArtificialJun 11, 2024
Choosing large language models (LLMs) tailored for specific tasks is crucial for maximizing efficiency and accuracy. With natural language processing (NLP) advancements, different models have emerged, each excelling in unique domains. Here is a comprehensive guide to the most suitable LLMs for various activities in the AI world. Hard Document Understanding: Claude Opus Claude Opus excels at tasks requiring deep understanding and interpretation of complex documents. This model excels in parsing dense legal texts, scientific papers, and intricate technical manuals. Claude Opus is designed to handle extensive context windows, ensuring it captures nuanced details and complicated relationships within the text.
Three Things to Know About Prompting LLMsJun 11, 2024
Apply these techniques when crafting prompts for large language models to elicit more relevant responses.
Perplexity goes beyond AI search, launches publishing platform ‘Pages’May 31, 2024
In most cases, Perplexity produced the desired Pages, but what we found missing was the option to edit the content manually.
The Great AI Chatbot Challenge: ChatGPT vs. Gemini vs. Copilot vs. PerplexiMay 28, 2024
We tested OpenAI’s ChatGPT against Microsoft’s Copilot and Google’s Gemini, along with Perplexity and Anthropic’s Claude. Here’s how they ranked.
The future of foundation models is closed-sourceMay 26, 2024
if the centralizing forces of data and compute hold, open and closed-source AI cannot both dominate long-term
Demystifying Vision-Language Models: An In-Depth ExplorationMay 24, 2024
Vision-language models (VLMs), capable of processing both images and text, have gained immense popularity due to their versatility in solving a wide range of tasks, from information retrieval in scanned documents to code generation from screenshots. However, the development of these powerful models has been hindered by a lack of understanding regarding the critical design choices that truly impact their performance. This knowledge gap makes it challenging for researchers to make meaningful progress in this field. To address this issue, a team of researchers from Hugging Face and Sorbonne Université conducted extensive experiments to unravel the factors that matter the
AI Is a Black Box. Anthropic Figured Out a Way to Look InsideMay 22, 2024
What goes on in artificial neural networks work is largely a mystery, even to their creators. But researchers from Anthropic have caught a glimpse.
naklecha/llama3-from-scratchMay 21, 2024
llama3 implementation one matrix multiplication at a time - naklecha/llama3-from-scratch
Abacus AI Releases Smaug-Llama-3-70B-Instruct: The New Benchmark in Open-SoMay 21, 2024
Artificial intelligence (AI) has revolutionized various fields by introducing advanced models for natural language processing (NLP). NLP enables computers to understand, interpret, and respond to human language in a valuable way. This field encompasses text generation, translation, and sentiment analysis applications, significantly impacting industries like healthcare, finance, and customer service. The evolution of NLP models has driven these advancements, continually pushing the boundaries of what AI can achieve in understanding and generating human language. Despite these advancements, developing models that can effectively handle complex multi-turn conversations remains a persistent challenge. Existing models often fail to maintain context and coherence over
Do Enormous LLM Context Windows Spell the End of RAG?May 13, 2024
Now that LLMs can retrieve 1 million tokens at once, how long will it be until we don’t need retrieval augmented generation for accurate AI responses?
How Good Are the Latest Open LLMs? And Is DPO Better Than PPO?May 13, 2024
What a month! We had four major open LLM releases: Mixtral, Meta AI's Llama 3, Microsoft's Phi-3, and Apple's OpenELM. In my new article, I review and discus...
ChuXin: A Fully Open-Sourced Language Model with a Size of 1.6 Billion ParaMay 12, 2024
The capacity of large language models (LLMs) to produce adequate text in various application domains has caused a revolution in natural language creation. These models are essentially two types: 1) Most model weights and data sources are open source. 2) All model-related information is publicly available, including training data, data sampling ratios, training logs, intermediate checkpoints, and assessment methods (Tiny-Llama, OLMo, and StableLM 1.6B). Full access to open language models for the research community is vital for thoroughly investigating these models' capabilities and limitations and understanding their inherent biases and potential risks. This is necessary despite the continued breakthroughs in
Title:You Only Cache Once: Decoder-Decoder Architectures for Language ModelMay 11, 2024
We introduce a decoder-decoder architecture, YOCO, for large language models, which only caches key-value pairs once. It consists of two components, i.e., a cross-decoder stacked upon a...
Anthropic AI Launches a Prompt Engineering Tool that Generates Production-RMay 11, 2024
Generative AI (GenAI) tools have come a long way. Believe it or not, the first generative AI tools were introduced in the 1960s in a Chatbot. Still, it was only in 2014 that generative adversarial networks (GANs) were introduced, a type of Machine Learning (ML) algorithm that allowed generative AI to finally create authentic images, videos, and audio of real people. In 2024, we can create anything imaginable using generative AI tools like ChatGPT, DALL-E, and others. However, there is a problem. We can use those AI tools but can not get the most out of them or use them
CleaningMay 11, 2024
As part of data preparation for an NLP model, it’s common to need to clean up your data prior to passing it into the model. If there’s unwanted content in your output, for example, it could impact the quality of your NLP model. To help with this, the `unstructured` library includes cleaning functions to help users sanitize output before sending it to downstream applications.
[2404.19737] Better & Faster Large Language Models via Multi-token PredictiMay 8, 2024
Large language models such as GPT and Llama are trained with a next-token prediction loss. In this work, we suggest that training language models to predict multiple future tokens at once results...
Researchers at NVIDIA AI Introduce ‘VILA’: A Vision Language Model that canMay 7, 2024
The rapid evolution in AI demands models that can handle large-scale data and deliver accurate, actionable insights. Researchers in this field aim to create systems capable of continuous learning and adaptation, ensuring they remain relevant in dynamic environments. A significant challenge in developing AI models lies in overcoming the issue of catastrophic forgetting, where models fail to retain previously acquired knowledge when learning new tasks. This challenge becomes more pressing as applications increasingly demand continuous learning capabilities. For instance, models must update their understanding of healthcare, financial analysis, and autonomous systems while retaining prior knowledge to make informed decisions. The
Hugging Face - DocumentationMay 5, 2024
We’re on a journey to advance and democratize artificial intelligence through open source and open science.
Understanding Key Terminologies in Large Language Model (LLM) UniverseApr 25, 2024
Are you curious about the intricate world of large language models (LLMs) and the technical jargon that surrounds them? Understanding the terminology, from the foundational aspects of training and fine-tuning to the cutting-edge concepts of transformers and reinforcement learning, is the first step towards demystifying the powerful algorithms that drive modern AI language systems. In this article, we delve into 25 essential terms to enhance your technical vocabulary and provide insights into the mechanisms that make LLMs so transformative. Heatmap representing the relative importance of terms in the context of LLMs Source: marktechpost.com 1. LLM (Large Language Model) Large Language
Top 15 AI Libraries/Frameworks for Automatically Red-Teaming Your GenerativApr 25, 2024
Prompt Fuzzer: The Prompt Fuzzer is an interactive tool designed to evaluate the security of GenAI application system prompts by simulating various dynamic LLM-based attacks. It assesses security by analyzing the results of these simulations, helping users fortify their system prompts accordingly. This tool specifically customizes its tests to fit the unique configuration and domain of the user's application. The Fuzzer also features a Playground chat interface, allowing users to refine their system prompts iteratively, enhancing their resilience against a broad range of generative AI attacks. Users should be aware that using the Prompt Fuzzer will consume tokens. Garak: Garak
Meta says Llama 3 beats most other models, including Gemini - The VergeApr 19, 2024
The models have some pretty good general knowledge.
anthropics/anthropic-cookbook: A collection of notebooks/recipes showcasingApr 17, 2024
A collection of notebooks/recipes showcasing some fun and effective ways of using Claude. - anthropics/anthropic-cookbook
Deep Learning Architectures From CNN, RNN, GAN, and Transformers To EncoderApr 15, 2024
Deep learning architectures have revolutionized the field of artificial intelligence, offering innovative solutions for complex problems across various domains, including computer vision, natural language processing, speech recognition, and generative models. This article explores some of the most influential deep learning architectures: Convolutional Neural Networks (CNNs), Recurrent Neural Networks (RNNs), Generative Adversarial Networks (GANs), Transformers, and Encoder-Decoder architectures, highlighting their unique features, applications, and how they compare against each other. Convolutional Neural Networks (CNNs) CNNs are specialized deep neural networks for processing data with a grid-like topology, such as images. A CNN automatically detects the important features without any human supervision.
Tips for LLM Pretraining and Evaluating Reward ModelsApr 15, 2024
Discussing AI Research Papers in March 2024
Lessons after a half-billion GPT tokens - Ken Kantzer's BlogApr 14, 2024
My startup Truss (gettruss.io) released a few LLM-heavy features in the last six months, and the narrative around LLMs that I read on Hacker News is now starting to diverge from my reality, so I thought I’d share some of the more “surprising” lessons after churning through just north of 500 million tokens, by my […]
5 Ways To Use LLMs On Your LaptopApr 13, 2024
Run large language models on your local PC for customized AI capabilities with more control, privacy, and personalization.
Words are flowing out like endless rain: Recapping a busy week of LLM newsApr 13, 2024
Gemini 1.5 Pro launch, new version of GPT-4 Turbo, new Mistral model, and more.
Peter Gostev’s PostApr 10, 2024
We are seeing some clear categories emerge in the world of LLMs - 1) affordable (~$1 per million tokens); 2) mid-range ($8/m) and 3) top end ($25-50/m)… | 32 comments on LinkedIn
Detecting Hallucinations in Large Language Models with Text Similarity MetrApr 5, 2024
In the world of LLMs, there is a phenomenon known as "hallucinations." These hallucinations are...
Top Open Source Large Language Models (LLMs) Available For Commercial UseApr 5, 2024
The top open source Large Language Models available for commercial use are as follows. Llama - 2 Meta released Llama 2, a set of pretrained and refined LLMs, along with Llama 2-Chat, a version of Llama 2. These models are scalable up to 70 billion parameters. It was discovered after extensive testing on safety and helpfulness-focused benchmarks that Llama 2-Chat models perform better than current open-source models in most cases. Human evaluations have shown that they align well with several closed-source models. The researchers have even taken a few steps to guarantee the security of these models. This includes annotating
LLaMA Now Goes Faster on CPUsApr 2, 2024
I wrote 84 new matmul kernels to improve llamafile CPU performance.
Large language models use a surprisingly simple mechanism to retrieve someApr 2, 2024
Researchers find large language models use a simple mechanism to retrieve stored knowledge when they respond to a user prompt. These mechanisms can be leveraged to see what the model knows about different subjects and possibly to correct false information it has stored.
ChatGPT vs Perplexity AI: AI App ComparisonApr 1, 2024
What is ChatGPT? ChatGPT, developed by OpenAI, is an AI platform renowned for its conversational AI capabilities. Leveraging the power of the Generative Pre-trained Transformer models, ChatGPT generates human-like text responses across various topics, from casual conversations to complex, technical discussions. Its ability to engage users with coherent, contextually relevant dialogues stands out, making it highly versatile for various applications, including content creation, education, customer service, and more. Its integration with tools like DALL-E for image generation from textual descriptions and its continual updates for enhanced performance showcase its commitment to providing an engaging and innovative user experience. ChatGPT Key
Mamba ExplainedMar 30, 2024
Is Attention all you need? Mamba, a novel AI model based on State Space Models (SSMs), emerges as a formidable alternative to the widely used Transformer models, addressing their inefficiency in processing long sequences.
How Nvidia Blackwell Systems Attack 1 Trillion Parameter AI ModelsMar 29, 2024
We like datacenter compute engines here at The Next Platform, but as the name implies, what we really like are platforms – how compute, storage,
How Chain-of-Thought Reasoning Helps Neural Networks ComputeMar 29, 2024
Large language models do better at solving problems when they show their work. Researchers are beginning to understand why.
Why and How to Achieve Longer Context Windows for LLMsMar 11, 2024
Language models (LLMs) have revolutionized the field of natural language processing (NLP) over the last few years, achieving…
Generative AI Design Patterns: A Comprehensive Guide | by Vincent Koc | FebMar 11, 2024
Reference architecture patterns and mental models for working with Large Language Models (LLM’s)
You can now train a 70b language model at homeMar 11, 2024
We’re releasing an open source system, based on FSDP and QLoRA, that can train a 70b model on two 24GB GPUs.
Easily Train a Specialized LLM: PEFT, LoRA, QLoRA, LLaMA-Adapter, and MoreMar 11, 2024
Training a specialized LLM over your own data is easier than you think…
Google Bard is called Gemini now and expands to mobile, paid versionsMar 7, 2024
The search giant is unifying its AI-assistant efforts under one name and trying to show it can match rivals.
Anthropic’s PostMar 5, 2024
Today, we're announcing the Claude 3 model family, which sets new industry benchmarks across a wide range of cognitive tasks. The family includes three… | 429 comments on LinkedIn
OpenAI's ChatGPT may have its first true rival in Anthropic's new chatbotMar 5, 2024
The Amazon-backed AI startup said its "most intelligent model" outperformed OpenAI's powerful GPT-4
rasbt/LLMs-from-scratchFeb 29, 2024
Implementing a ChatGPT-like LLM in PyTorch from scratch, step by step - rasbt/LLMs-from-scratch
Meet RAGxplorer: An interactive AI Tool to Support the Building of RetrievaFeb 29, 2024
Understanding how well they comprehend and organize information is crucial in advanced language models. A common challenge arises in visualizing the intricate relationships between different document parts, especially when using complex models like the Retriever-Answer Generator (RAG). Existing tools can only sometimes provide a clear picture of how chunks of information relate to each other and specific queries. Several attempts have been made to address this issue, but they often need to deliver the need to provide an intuitive and interactive solution. These tools need help breaking down documents into manageable pieces and visualizing their semantic landscape effectively. As a
Meet Google Lumiere AI, Bard’s video maker cousinFeb 29, 2024
Step into the future of video creation with Google Lumiere, the latest breakthrough from Google Research that promises to redefine
How To Build an LLM-Powered App To Chat with PapersWithCodeFeb 29, 2024
Keep up with the latest ML research
The killer app of Gemini Pro 1.5 is videoFeb 29, 2024
Last week Google introduced Gemini Pro 1.5, an enormous upgrade to their Gemini series of AI models. Gemini Pro 1.5 has a 1,000,000 token context size. This is huge—previously that …
Understanding Direct Preference OptimizationFeb 29, 2024
This blog post will look at the “Direct Preference Optimization: Your Language Model is Secretly a Reward Model” paper and its findings.
I Spent a Week With Gemini Pro 1.5—It’s FantasticFeb 29, 2024
When it comes to context windows, size matters
Title:The Era of 1-bit LLMs: All Large Language Models are in 1.58 BitsFeb 29, 2024
Recent research, such as BitNet, is paving the way for a new era of 1-bit Large Language Models (LLMs). In this work, we introduce a 1-bit LLM variant, namely BitNet b1.58, in which every single...
Sora early access: Your guide to securing a spotFeb 29, 2024
Are you looking for the news everyday for Sora early access like us? Well you are absolutely right because OpenAI's
Au Large | Mistral AI | Frontier AI in your handsFeb 29, 2024
Mistral Large is our flagship model, with top-tier reasoning capacities. It is also available on Azure.
Beyond Self-Attention: How a Small Language Model Predicts the Next TokenFeb 22, 2024
A deep dive into the internals of a small transformer model to learn how it turns self-attention calculations into accurate predictions for the next token.
How do transformers work?+Design a Multi-class Sentiment Analysis for CustoFeb 22, 2024
We will deep dive into understanding how transformer model work like BERT(Non-mathematical Explanation of course!). system design to use the transformer to build a Sentiment Analysis
Groq Inference Tokenomics: Speed, But At What Cost?Feb 22, 2024
Faster than Nvidia? Dissecting the economics
How Well Can LLMs Negotiate? Stanford Researchers Developed ‘NegotiationAreFeb 20, 2024
In artificial intelligence, the capacity of Large Language Models (LLMs) to negotiate mirrors a leap toward achieving human-like interactions in digital negotiations. At the heart of this exploration is the NEGOTIATION ARENA, a pioneering framework devised by researchers from Stanford University and Bauplan. This innovative platform delves into the negotiation prowess of LLMs, offering a dynamic environment where AI can mimic, strategize, and engage in nuanced dialogues across a spectrum of scenarios, from splitting resources to intricate trade and price negotiations. The NEGOTIATION ARENA is a tool and a gateway to understanding how AI can be shaped to think, react,
SoraFeb 17, 2024
Sora is an AI model that can create realistic and imaginative scenes from text instructions.
Code LoRA from Scratch - a Lightning Studio by sebastianFeb 15, 2024
LoRA (Low-Rank Adaptation) is a popular technique to finetune LLMs more efficiently. This Studio explains how LoRA works by coding it from scratch, which is an excellent exercise for looking under …
Bard is now Gemini and Gemini Advanced is amazingFeb 15, 2024
AI community is once again filled with excitement as Bard is now Gemini and Gemini Advanced offering users an exceptional
Ask HN: What have you built with LLMs?Feb 11, 2024
Title:BloombergGPT: A Large Language Model for FinanceFeb 4, 2024
The use of NLP in the realm of financial technology is broad and complex, with applications ranging from sentiment analysis and named entity recognition to question answering. Large Language...
Exploring the Zephyr 7B: A Comprehensive Guide to the Latest Large LanguageJan 24, 2024
Zephyr is a series of Large Language Models released by Hugging Face trained using distilled supervised fine-tuning (dSFT) on larger models with significantly improved task accuracy.
Mastering PDFs: Extracting Sections, Headings, Paragraphs, and Tables withJan 17, 2024
LlamaIndex is a simple, flexible data framework for connecting custom data sources to large language models (LLMs).
Understanding and Coding Self-Attention, Multi-Head Attention, Cross-AttentJan 16, 2024
This article will teach you about self-attention mechanisms used in transformer architectures and large language models (LLMs) such as GPT-4 and Llama.
Dashboard - SciSummaryJan 16, 2024
AI Driven tools for researchers and students. Use AI to summarize and understand scientific articles and research papers.
Meet Waymo’s MotionLM: The State-of-the-Art Multi-Agent Motion Prediction AJan 7, 2024
Autoregressive language models have excelled at predicting the subsequent subword in a sentence without the need for any predefined grammar or parsing concepts. This method has been expanded to include continuous data domains like audio and image production, where data is represented as discrete tokens, much like language model vocabularies. Due to their versatility, sequence models have attracted interest for use in increasingly complicated and dynamic contexts, such as behavior. Road users are compared to participants in a continuous conversation when driving since they exchange actions and replies. The question is whether similar sequence models may be used to forecast
How much detail is too much? Midjourney v6 attempts to find outJan 7, 2024
As Midjourney rolls out new features, it continues to make some artists furious.
10 Noteworthy AI Research Papers of 2023Jan 7, 2024
This year has felt distinctly different. I've been working in, on, and with machine learning and AI for over a decade, yet I can't recall a time when these fields were as popular and rapidly evolving as they have been this year. To conclude an eventful 2023 in machine learning and AI research, I'm excited to share 10 noteworthy papers I've read this year. My personal focus has been more on large language models, so you'll find a heavier emphasis on large language model (LLM) papers than computer vision papers this year.
7 Steps to Mastering Large Language Models (LLMs)Oct 20, 2023
Large Language Models (LLMs) have unlocked a new era in natural language processing. So why not learn more about them? Go from learning what large language models are to building and deploying LLM apps in 7 easy steps with this guide.
Meta AI Researchers Propose Advanced Long-Context LLMs: A Deep Dive into UpOct 20, 2023
The emergence of Large Language Models (LLMs) in natural language processing represents a groundbreaking development. These models, trained on vast amounts of data and leveraging immense computational resources, promise to transform human interactions with the digital world. As they evolve through scaling and rapid deployment, their potential use cases become increasingly intricate and complex. They extend their capabilities to tasks such as analyzing dense, knowledge-rich documents, enhancing chatbot experiences to make them more genuine and engaging, and assisting human users in iterative creative processes like coding and design. One crucial feature that empowers this evolution is the capacity to effectively
This AI Paper from NVIDIA Explores the Power of Retrieval-Augmentation vs.Oct 20, 2023
In a comparative study, Researchers from Nvidia investigated the impact of retrieval augmentation and context window size on the performance of large language models (LLMs) in downstream tasks. The findings reveal that retrieval augmentation consistently enhances LLM performance, irrespective of context window size. Their research sheds light on the effectiveness of retrieval mechanisms in optimizing LLMs for various applications. Researchers delve into the domain of long-context language models, investigating the efficacy of retrieval augmentation and context window size in enhancing LLM performance across various downstream tasks. It conducts a comparative analysis of different pretrained LLMs, demonstrating that retrieval mechanisms significantly
Finetuning LLMs with LoRA and QLoRA: Insights from Hundreds of Experiments - Lightning AIOct 20, 2023
LoRA is one of the most widely used, parameter-efficient finetuning techniques for training custom LLMs. From saving memory with QLoRA to selecting the optimal LoRA settings, this article provides practical insights for those interested in applying it.
Getting Started with Large Language Models: Key Things to KnowOct 20, 2023
As a machine learning engineer who has witnessed the rise of Large Language Models (LLMs), I find it daunting to comprehend how the ecosystem surrounding LLMs is developing.
Unlocking GPT-4 Summarization with Chain of Density PromptingOct 20, 2023
Unlock the power of GPT-4 summarization with Chain of Density (CoD), a technique that attempts to balance information density for high-quality summaries.
The Ins and Outs of Retrieval-Augmented Generation (RAG)Oct 20, 2023
Our weekly selection of must-read Editors’ Picks and original features
Building RAG-based LLM Applications for Production (Part 1)Oct 20, 2023
In this guide, we will learn how to develop and productionize a retrieval augmented generation (RAG) based LLM application, with a focus on scale and evaluation.
RAG vs Finetuning: Which Is the Best Tool to Boost Your LLM Application?Oct 20, 2023
The definitive guide for choosing the right method for your use case
A High-Level Overview Of Large Language Model Concepts, Use Cases, And ToolOct 20, 2023
Discuss the concept of large language models (LLMs) and how they are implemented with a set of data to develop an application. Joas compares a collection of no-code and low-code apps designed to help you get a feel for not only how the concept works but also to get a sense of what types of models are available to train AI on different skill sets.
Augmenting LLMs with RAGOct 20, 2023
An End to End Example Of Seeing How Well An LLM Model Can Answer Amazon SageMaker Related Questions
Parallel Processing in Prompt Engineering: The Skeleton-of-Thought TechniquOct 7, 2023
Explore how the Skeleton-of-Thought prompt engineering technique enhances generative AI by reducing latency, offering structured output, and optimizing projects.
[2302.07730] Transformer models: an introduction and catalogOct 5, 2023
In the past few years we have seen the meteoric appearance of dozens of foundation models of the Transformer family, all of which have memorable and sometimes funny, but not self-explanatory,...
Hey, Computer, Make Me a FontOct 4, 2023
This is a story of my journey learning to build generative ML models from scratch and teaching a computer to create fonts in the process.
SaaS Competitive Advantage Through Elegant LLM Feedback MechanismsOct 4, 2023
Eliciting product feedback elegantly is a competitive advantage for LLM-software. Over the weekend, I queried Google’s Bard, & noticed the elegant feedback loop the product team has incorporated into their product. I asked Bard to compare the 3rd-row leg room of the leading 7-passenger SUVs. At the bottom of the post is a little G button, which double-checks the response using Google searches. I decided to click it. This is what I would be doing in any case ; spot-checking some of the results.
ChatGPT, Bard, or Bing Chat? Differences Among 3 Generative-AI BotsOct 3, 2023
Participants rated Bing Chat as less helpful and trustworthy than ChatGPT or Bard. These results can be attributed to Bing’s richer yet imperfect UI and to its poorer information aggregation.
BardOct 3, 2023
Bard is now Gemini. Get help with writing, planning, learning, and more from Google AI.
The State of Large Language ModelsOct 3, 2023
We present the latest updates on ChatGPT, Bard and other competitors in the artificial intelligence arms race.
10 Ways to Improve the Performance of Retrieval Augmented Generation SystemSep 25, 2023
Tools to go from prototype to production
How to Build an LLM from ScratchSep 25, 2023
Data Curation, Transformers, Training at Scale, and Model Evaluation
Large Language Model Prompt Engineering for Complex Summarization - ISE DevSep 25, 2023
Learn how to use GPT / LLMs to create complex summaries such as for medical text
Open LLM Leaderboard : a Hugging Face Space by HuggingFaceH4Sep 25, 2023
Track, rank and evaluate open LLMs and chatbots
Llama from scratchSep 25, 2023
I want to provide some tips from my experience implementing a paper. I'm going to cover my tips so far from implementing a dramatically scaled-down versio...
Cracking Open the OpenAI (Python) APISep 25, 2023
A complete beginner-friendly introduction with example code
Cracking Open the Hugging Face Transformers LibrarySep 25, 2023
A quick-start guide to using open-source LLMs
Asking 60+ LLMs a set of 20 questionsSep 25, 2023
Human-readable benchmarks of 60+ open-source and proprietary LLMs.
OpenAI Unveils DALL·E 3: A Revolutionary Leap in Text-to-Image GenerationSep 24, 2023
In a significant technological leap, OpenAI has announced the launch of DALL·E 3, the latest iteration in their groundbreaking text-to-image generation technology. With an unprecedented capacity to understand nuanced and detailed descriptions, DALL·E 3 promises to revolutionize the creative landscape by allowing users to translate their textual ideas into astonishingly accurate images effortlessly. DALL·E 3 is currently in research preview, offering a tantalizing glimpse into its capabilities. However, the broader availability of this cutting-edge technology is set for early October, when it will be accessible to ChatGPT Plus and Enterprise customers through the API and Labs later in the fall.
Comparison: DALL-E 3 vs MidjourneySep 24, 2023
DALL-E 3, the latest version of OpenAI's ground-breaking generative AI visual art platform, was just announced with groundbreaking features, including
What OpenAI Really WantsSep 17, 2023
The young company sent shock waves around the world when it released ChatGPT. But that was just the start. The ultimate goal: Change everything. Yes. Everything.
A Beginner’s Guide to Building LLM-Powered Applications with LangChain!Sep 12, 2023
If you're a developer or simply someone passionate about technology, you've likely encountered AI...
iryna-kondr/scikit-llm: Seamlessly integrate LLMs into scikit-learn.Aug 31, 2023
Seamlessly integrate LLMs into scikit-learn.
Prompt Engineering — How to trick AI into solving your problemsAug 31, 2023
7 prompting tricks, Langchain, and Python example code
A Beginner’s Guide to LLM Fine-TuningAug 30, 2023
How to fine-tune Llama and other LLMs with one tool
Together AI Unveils Llama-2-7B-32K-Instruct: A Breakthrough in Extended-ConAug 27, 2023
A multifaceted challenge has arisen in the expansive realm of natural language processing: the ability to adeptly comprehend and respond to intricate and lengthy instructions. As communication nuances become more complicated, the shortcomings of prevailing models in dealing with extensive contextual intricacies have been laid bare. Within these pages, an extraordinary solution crafted by the dedicated minds at Together AI comes to light—a solution that holds the promise of reshaping the very fabric of language processing. This innovation has profound implications, especially in tasks requiring an acute grasp of extended contextual nuances. Contemporary natural language processing techniques rely heavily on
Meet Chroma: An AI-Native Open-Source Vector Database For LLMs: A Faster WaAug 20, 2023
Word embedding vector databases have become increasingly popular due to the proliferation of massive language models. Using the power of sophisticated machine learning techniques, data is stored in a vector database. It allows for very fast similarity search, essential for many AI uses such as recommendation systems, picture recognition, and NLP. The essence of complicated data is captured in a vector database by representing each data point as a multidimensional vector. Quickly retrieving related vectors is made possible by modern indexing techniques like k-d trees and hashing. To transform big data analytics, this architecture generates highly scalable, efficient solutions for
How to Extract Text from Any PDF and Image for Large Language Model | by ZoAug 7, 2023
Use these text extraction techniques to get quality data for your LLM models
Introducing OpenLLM: Open Source Library for LLMsAug 7, 2023
A user-friendly platform for operating large language models (LLMs) in production, with features such as fine-tuning, serving, deployment, and monitoring of any LLMs.
Abacus AI Introduces A New Open Long-Context Large Language Model LLM: MeetAug 7, 2023
Recent language models can take long contexts as input; more is needed to know about how well they use longer contexts. Can LLMs be extended to longer contexts? This is an unanswered question. Researchers at Abacus AI conducted multiple experiments involving different schemes for developing the context length ability of Llama, which is pre-trained on context length 2048. They linear rescaled these models with IFT at scales 4 and 16. Scaling the model to scale 16 can perform world tasks up to 16k context length or even up to 20-24k context length. Different methods of extending context length are Linear
How to use LLMs for PDF parsingAug 6, 2023
Using ChatGPT & OpenAI's GPT API, this code tutorial teaches how to chat with PDFs, automate PDF tasks, and build PDF chatbots.
How to Chat With Any File from PDFs to Images Using Large Language Models —Aug 6, 2023
Complete guide to building an AI assistant that can answer questions about any file
How to Leverage Open-Source LLMs in Your ProjectAug 6, 2023
Practical Advice from Experts: Fine-Tuning, Deployment, and Best Practices
LangChain 101: Build Your Own GPT-Powered ApplicationsAug 2, 2023
LangChain is a Python library that helps you build GPT-powered applications in minutes. Get started with LangChain by building a simple question-answering app.
MPT-30B: Raising the bar for open-source foundation modelsJul 28, 2023
Latest blogs from the team at Mosaic Research
Midjourney pricing plans and free alternatives to tryJul 28, 2023
Navigating the maze of pricing plans for digital services can sometimes be a daunting task. Today, we are unveiling Midjourney
A Deep Dive Into LLaMA, Falcon, Llama 2 and Their Remarkable Fine-Tuned VerJul 28, 2023
Exploring the Development of the 3 Leading Open LLMs and Their Chatbot Derivatives
Chain of Thought Prompting for LLMsJul 28, 2023
A practical and simple approach for “reasoning” with LLMs
Is Anthropic's Claude 2 model ready to take down GPT-4? We put them to theJul 28, 2023
Anthropic released Claude 2, a new iteration of its AI model, to take on ChatGPT and Google Bard...
Emerging Architectures for LLM ApplicationsJul 24, 2023
A reference architecture for the LLM app stack. It shows the most common systems, tools, and design patterns used by AI startups and tech companies.
ELI5: FlashAttentionJul 24, 2023
Step by step explanation of how one of the most important MLSys breakthroughs work — in gory detail.
Build Industry-Specific LLMs Using Retrieval Augmented GenerationJul 24, 2023
Organizations are in a race to adopt Large Language Models. Let’s dive into how you can build industry-specific LLMs Through RAG
Free Full Stack LLM BootcampJul 24, 2023
Want to learn more about LLMs and build cool LLM-powered applications? This free Full Stack LLM Bootcamp is all you need!
Edge 300: Meet Falcon LLM: The Most Powerful Open Source LLM Released to DaJul 24, 2023
The model quickly top the Open LLM Leaderboard that ranks the performance of open source LLMs.
The Secret Sauce behind 100K context window in LLMs: all tricks in one placJul 23, 2023
tldr; techniques to speed up training and inference of LLMs to use large context window up to 100K input tokens during training and…
All You Need to Know to Build Your First LLM AppJul 23, 2023
A step-by-step tutorial to document loaders, embeddings, vector stores and prompt templates
Observe.ai unveils 30-billion-parameter contact center LLM and a generativeJul 23, 2023
The Observe.AI contact center LLM showed a 35% increase in accuracy compared to GPT-3.5 when automatically summarizing conversations.
Training LLMs with AMD MI250 GPUs and MosaicMLJul 23, 2023
With the release of PyTorch 2.0 and ROCm 5.4, we are excited to announce that LLM training works out of the box on AMD MI250 accelerators with zero code changes and at high performance!
Optimizing Memory Usage for Training LLMs and Vision Transformers in PyTorcJul 23, 2023
This article provides a series of techniques that can lower memory consumption in PyTorch (when training vision transformers and LLMs) by approximately 20x without sacrificing modeling performance and prediction accuracy.
Anthropic releases Claude 2, its second-gen AI chatbotJul 23, 2023
Anthropic, the AI startup founded by ex-OpenAI execs, has released its newest chatbot, Claude 2. It's ostensibly improved in several ways.
Google Launches AI-Powered Notes App Called NotebookLMJul 23, 2023
Google is launching its AI-backed note-taking tool to "a small group of users in the US," the company said in a blog post. Formerly referred to as Project Tailwind at Google I/O earlier this year, the new app is now known as NotebookLM (the LM stands for Language Model). The Verge reports: The core...
Meet LMQL: An Open Source Query Language for LLMsJul 23, 2023
Developed by ETH Zürich, the language explores new paradigms for LLM programming.
Ecosystem Graphs for Foundation ModelsJul 23, 2023
Leandro von Werra’s PostJul 23, 2023
It crazy how far the ML field has come when it comes to fine-tuning LLMs. A year ago: it was challenging to fine-tune GPT-2 (1.5B) on a single GPU without… | 76 comments on LinkedIn
LLaMA 2: How to access and use Meta’s versatile open-source chatbot right nJul 23, 2023
A comprehensive guide on how to use Meta's LLaMA 2, the new open-source AI model challenging OpenAI's ChatGPT and Google's Bard.
Facebook parent Meta unveils LLaMA 2 open-source AI model for commercial usJul 22, 2023
Not only has LLaMA been trained on more data, with more parameters, the model also performs better than its predecessor, according to Meta.
MosaicML launches MPT-7B-8K, a 7B-parameter open-source LLM with 8k contextJul 22, 2023
MosaicML claims that the MPT-7B-8K LLM exhibits exceptional proficiency in summarization and answering tasks compared to previous models.
The $1 billion gamble to ensure AI doesn’t destroy humanityJul 22, 2023
The founders of Anthropic quit OpenAI to make a safe AI company. It’s easier said than done.
Unraveling the Power of Chain-of-Thought Prompting in Large Language ModelsJul 12, 2023
This article delves into the concept of Chain-of-Thought (CoT) prompting, a technique that enhances the reasoning capabilities of large language models (LLMs). It discusses the principles behind CoT prompting, its application, and its impact on the performance of LLMs.
GitHub - Mooler0410/LLMsPracticalGuide: A curated list of practical guide rJul 12, 2023
A curated list of practical guide resources of LLMs (LLMs Tree, Examples, Papers) - Mooler0410/LLMsPracticalGuide
Falcon LLM: The New King of Open-Source LLMsJun 19, 2023
Falcon LLM, is the new large language model that has taken the crown from LLaMA.
Introduction to the Open LLM Falcon-40B: Performance, Training Data, and ArJun 19, 2023
Get started using Falcon-7B, Falcon-40B, and their instruct versions
Meet FinGPT: An Open-Source Financial Large Language Model (LLMs)Jun 18, 2023
Large language models have increased due to the ongoing development and advancement of artificial intelligence, which has profoundly impacted the state of natural language processing in various fields. The potential use of these models in the financial sector has sparked intense attention in light of this radical upheaval. However, constructing an effective and efficient open-source economic language model depends on gathering high-quality, pertinent, and current data. The use of language models in the financial sector exposes many barriers. These vary from challenges in getting data, maintaining various data forms and kinds, and coping with inconsistent data quality to the crucial
LMM Garden | Discover, search, and compare LLMsJun 9, 2023
Welcome to the LMM garden! A searchable list of open-source and off-the-shelf LLMs available to ML practitioners. Know of a new LLM? Add it
The Case for Running AI on CPUs Isn’t Dead YetJun 2, 2023
GPUs may dominate, but CPUs could be perfect for smaller AI models
The Art of Prompt Design: Prompt Boundaries and Token HealingMay 28, 2023
Learn how standard greedy tokenization introduces a subtle and powerful bias that can have all kinds of unintended consequences.
Sonali Pattnaik on LinkedIn: #generativeai #ai | 45 commentsMay 21, 2023
AI companies are using LangChain to supercharge their LLM apps. Here is a comprehensive guide of resources to build your LangChain + LLM journey. 🔗 What is… | 45 comments on LinkedIn
The Non-Silence of the LLMsMay 19, 2023
AI is getting very chatty! Here’s a visualisation charting the rise of Large Language Models like GPT4, LaMDA, LLaMa, PaLM and their bots...
Super Bard: The AI That Can Do It All and BetterMay 19, 2023
A new AI Bard powered by PaLM V2 that can write, translate, and code better than ChatGPT.
Edge 291: Reinforcement Learning with Human FeedbackMay 18, 2023
1) Reinforcement Learning with Human Feedback(RLHF) 2) The RLHF paper, 3) The transformer reinforcement learning framework.
Google dives into the ‘supercomputer’ game by knitting together purpose-buiMay 12, 2023
Google's new machines combine Nvidia H100 GPUs with Google’s high-speed interconnections for AI tasks like training very large language models.
Distilling Step-by-Step! Outperforming Larger Language Models with...May 5, 2023
Deploying large language models (LLMs) is challenging because they are memory inefficient and compute-intensive for practical applications. In reaction, researchers train smaller task-specific...
SparseGPT: Massive Language Models Can Be Accurately Pruned in One-ShotMay 5, 2023
We show for the first time that large-scale generative pretrained transformer (GPT) family models can be pruned to at least 50% sparsity in one-shot, without any retraining, at minimal loss of...
openlm-research/open_llama: OpenLLaMA, a permissively licensed open source reproduction of Meta AI’s LLaMA 7B trained on the RedPajama datasetMay 5, 2023
OpenLLaMA, a permissively licensed open source reproduction of Meta AI’s LLaMA 7B trained on the RedPajama dataset - openlm-research/open_llama
guidance-ai/guidance: A guidance language for controlling large language models.May 3, 2023
A guidance language for controlling large language models. - guidance-ai/guidance
Blog | AnyscaleApr 29, 2023
Anyscale is the leading AI application platform. With Anyscale, developers can build, run and scale AI applications instantly.
Parameter-Efficient LLM Finetuning With Low-Rank Adaptation (LoRA)Apr 29, 2023
In the rapidly evolving field of AI, using large language models in an efficient and effective manner is becoming more and more important. In this article, y...
Edge 286: Vicuna, the LLaMA-Based Model that Matches ChatGPT PerformanceApr 29, 2023
Created by researchers from UC Berkeley, CMU, Stanford, and UC San Diego, Vicuna is part of the new wave of models that use Meta's LLaMA as its foundation.
Grounding Large Language Models in a Cognitive Foundation: How to Build SomApr 26, 2023
Many intelligent robots have come and gone, failing to become a commercial success. We’ve lost Aibo, Romo, Jibo, Baxter—even Alexa is reducing staff. Perhaps they failed to reach their potential because you can’t have a meaningful conversation with them. We are now at an inflection point: AI
Data Machina #198Apr 25, 2023
Your own LLM. MiniGPT-4. WebGPT on WebGPU. Transformers from scratch. ChatGTP Plugins demo live. Whisper JAX. LLaVA. MetaAI DINO SoTA Computer Vision. Autonomous agents in LangChain. RedPajama.
The LLama Effect: How an Accidental Leak Sparked a Series of Impressive OpeApr 21, 2023
Sundays, The Sequence Scope brings a summary of the most important research papers, technology releases and VC funding deals in the artificial intelligence space.
Stanford CRFMApr 21, 2023
Meta has built a massive new language AI—and it’s giving it away for freeApr 21, 2023
Facebook’s parent company is inviting researchers to pore over and pick apart the flaws in its version of GPT-3
Eight Things to Know about Large Language ModelsApr 21, 2023
The widespread public deployment of large language models (LLMs) in recent months has prompted a wave of new attention and engagement from advocates, policymakers, and scholars from many fields....
Baby AGI: The Birth of a Fully Autonomous AIApr 19, 2023
Introducing the new fully autonomous task manager that can create, track and prioritize your company's projects using artificial intelligence.
📝 Guest Post: How to Enhance the Usefulness of Large Language Models*Apr 17, 2023
In this guest post, Filip Haltmayer, a Software Engineer at Zilliz, explains how LangChain and Milvus can enhance the usefulness of Large Language Models (LLMs) by allowing for the storage and retrieval of relevant documents. By integrating Milvus, a vector database, with LangChain, LLMs can process more tokens and improve their conversational abilities.
Prompt EngineeringApr 14, 2023
Prompt Engineering, also known as In-Context Prompting, refers to methods for how to communicate with LLM to steer its behavior for desired outcomes without updating the model weights. It is an empirical science and the effect of prompt engineering methods can vary a lot among models, thus requiring heavy experimentation and heuristics. This post only focuses on prompt engineering for autoregressive language models, so nothing with Cloze tests, image generation or multimodality models.
A Survey of Large Language ModelsApr 14, 2023
Language is essentially a complex, intricate system of human expressions governed by grammatical rules. It poses a significant challenge to develop capable AI algorithms for comprehending and...
New Ebook: A Beginner’s Guide to Large Language ModelsApr 14, 2023
Explore what LLMs are, how they work, and gain insights into real-world examples, use cases, and best practices.
📝 Guest Post: Caching LLM Queries for Improved Performance and Cost Savings*Apr 12, 2023
If you're looking for a way to improve the performance of your large language model (LLM) application while reducing costs, consider utilizing a semantic cache to store LLM responses.
StackLLaMA: A hands-on guide to train LLaMA with RLHFApr 8, 2023
We’re on a journey to advance and democratize artificial intelligence through open source and open science.
OpenAI PlatformFeb 10, 2023
Explore developer resources, tutorials, API docs, and dynamic examples to get the most out of OpenAI's platform.
FlashSigmoid: A Hardware-Aware and Memory-Efficient Implementation of Sigmoid Attention Yielding a 1Sep 24, 2014
Large Language Models (LLMs) have gained significant prominence in modern machine learning, largely due to the attention mechanism. This mechanism employs a sequence-to-sequence mapping to construct context-aware token representations. Traditionally, attention relies on the softmax function (SoftmaxAttn) to generate token representations as data-dependent convex combinations of values. However, despite its widespread adoption and effectiveness, SoftmaxAttn faces several challenges. One key issue is the tendency of the softmax function to concentrate attention on a limited number of features, potentially overlooking other informative aspects of the input data. Also, the application of SoftmaxAttn necessitates a row-wise reduction along the input sequence length,
Top 9 Different Types of Retrieval-Augmented Generation (RAGs)Sep 24, 2014
Retrieval-Augmented Generation (RAG) is a machine learning framework that combines the advantages of both retrieval-based and generation-based models. The RAG framework is highly regarded for its ability to handle large amounts of information and produce coherent, contextually accurate responses. It leverages external data sources by retrieving relevant documents or facts and then generating an answer or output based on the retrieved information and the user query. This blend of retrieval and generation leads to better-informed outputs that are more accurate and comprehensive than models that rely solely on generation. The evolution of RAG has led to various types and approaches,
Graphiti: A Python Library for Building Temporal Knowledge Graphs Using LLMsSep 24, 2014
The challenge of managing and recalling facts from complex, evolving conversations is a key problem for many AI-driven applications. As information grows and changes over time, maintaining accurate context becomes increasingly difficult. Current systems often struggle to handle the evolving nature of relationships and facts, leading to incomplete or irrelevant results when retrieving information. This can affect the effectiveness of AI agents, especially when dealing with user memories and context in real-time applications. Some existing solutions have attempted to address this problem. One common approach is using a Retrieval-Augmented Generation (RAG) pipeline, which involves storing extracted facts and using techniques
Building a Simple RAG Application Using LlamaIndex - MachineLearningMastery.comAug 24, 2014
[caption align=
LlamaIndex : LlamaIndexSep 24, 2009
Integrating LLMs with Scikit-Learn Using Scikit-LLMOct 24, 2007
Combining LLM reasoning for text-based models in Scikit-Learn.
Why GPU Utilization Falls Short: Understanding Streaming Multiprocessor (SM) Efficiency for Better LSep 24, 2003
Large Language Models (LLMs) have gained significant prominence in recent years, driving the need for efficient GPU utilization in machine learning tasks. However, researchers face a critical challenge in accurately assessing GPU performance. The commonly used metric, GPU Utilization, accessed through nvidia-smi or integrated observability tools, has proven to be an unreliable indicator of actual computational efficiency. Surprisingly, 100% GPU utilization can be achieved merely by reading and writing to memory without performing any computations. This revelation has sparked a reevaluation of performance metrics and methodologies in the field of machine learning, prompting researchers to seek more accurate ways to
LightLLM: A Lightweight Scalable and High-Speed Python Framework for LLM Inference and ServingOct 24, 2002
Large language models (LLMs) have advanced significantly in recent years. However, its real-world applications are restricted due to substantial processing power and memory requirements. The need to make LLMs more accessible on smaller and resource-limited devices drives the development of more efficient frameworks for model inference and deployment. Existing methods for running LLMs include hardware acceleration techniques and optimizations like quantization and pruning. However, these methods often fail to provide a balance between model size, performance, and usability in constrained environments. Researchers developed an efficient, scalable, and lightweight framework for LLM inference, LightLLM, to address the challenge of efficiently deploying
Nvidia just dropped a bombshell: Its new AI model is open massive and ready to rival GPT-4Oct 24, 2002
Nvidia has released NVLM 1.0, a powerful open-source AI model that rivals GPT-4 and Google’s systems, marking a major breakthrough in multimodal language models for vision and text tasks.
Ten Effective Strategies to Lower Large Language Model (LLM) Inference CostsOct 24, 2001
Large Language Models (LLMs) have become a cornerstone in artificial intelligence, powering everything from chatbots and virtual assistants to advanced text generation and translation systems. Despite their prowess, one of the most pressing challenges associated with these models is the high cost of inference. This cost includes computational resources, time, energy consumption, and hardware wear. Optimizing these costs is paramount for businesses and researchers aiming to scale their AI operations without breaking the bank. Here are ten proven strategies to reduce LLM inference costs while maintaining performance and accuracy: Quantization Quantization is a technique that decreases the precision of model
llvm
LLVM from a Go perspectiveJan 16, 2022
A high-level overview of LLVM IR, showing how two simple Go functions can be translated to IR.
banach-space/llvm-tutor: A collection of out-of-tree LLVM passes for teaching and learningDec 3, 2021
A collection of out-of-tree LLVM passes for teaching and learning - banach-space/llvm-tutor
A Complete Guide to LLVM for Programming Language CreatorsDec 26, 2020
We'll explain the concepts underlying LLVM IR, and how you can use the LLVM C++ API in your programming language's compiler.
About — LLVM 10 documentationOct 20, 2020
C possibly gaining support for N-bit integersApr 24, 2020
Author: Erich Keane, Compiler Frontend Engineer, Intel Corporation Earlier this month I finally committed a patch to implement the extended-integer type class, _ExtInt after nearly two and a half years of design and implementation.
lodash
Why Should Lodash be Your JavaScript Project's Go-To Library?Feb 6, 2024
Check this post on my web notes. In almost every project we work on, we use extra tools to make...
Lodash DocumentationJan 16, 2022
logging
journalctl Command in Linux: Query and Filter System LogsFeb 26, 2026
journalctl queries the systemd journal and lets you filter logs by unit, time, priority, boot, and process. This guide covers the most useful journalctl options with practical examples.
How to Get Started with Logging in Ruby | Better Stack CommunityMay 4, 2023
Learn how to start logging with Ruby and go from basics to best practices in no time.
Essential Tools for a Successful DevOps EngineerMar 20, 2023
Introduction: The software development process has been transformed by the DevOps...
7 Open-Source Log Management Tools that you may consider in 2023Jan 31, 2023
Effective log management is a fundamental aspect of maintaining and troubleshooting today's complex...
logistic-regression
Understanding Probit Regression: The Normal Alternative to LogisticSep 4, 2025
Learn when probit regression outperforms logistic regression for binary outcome modeling.
7 Proportional Odds Logistic Regression for Ordered Category Outcomes | Handbook of Regression Modeling in People Analytics: With Examples in R, Python and JuliaJan 28, 2025
Often our outcomes will be categorical in nature, but they will also have an order to them. These are sometimes known as ordinal outcomes. Some very common examples of this include ratings of some...
Beyond Binary Classification — Breaking down Multiple Logistic Regression tFeb 15, 2024
MLBasics #3: From Binary to Multiclass — A Journey Through Logistic Regression Upgrades
Understanding Logistic Regression — the Odds Ratio, Sigmoid, MLE, et alOct 21, 2022
Logistic regression is one of the most frequently used machine learning techniques for classification. However, though seemingly simple…
Logistic Regression: Statistics for Goodness-of-FitOct 20, 2022
Statistics in R Series: Deviance, Log-likelihood Ratio, Pseudo R² and AIC/BIC
How to Interpret the Odds Ratio with Categorical Variables in Logistic RegrOct 14, 2022
An explanation of reference categories and picking the right one
3 Key Pieces of Information About Logistic Regression AlgorithmMar 28, 2021
It is a simple yet very efficient algorithm
logistics-shipping
Fulfillment Compared: Amazon, Walmart, ShopifyAug 27, 2025
Ecommerce operators tired of picking, packing, and posting parcels can turn to massive marketplaces and the leading ecommerce platform for help.
What Declining Cardboard Box Sales Tell Us About the US EconomyAug 17, 2025
Box demand touches nearly every industry, from flat-screen TVs to packaged food, all of which see sales fluctuate based on how flush shoppers feel.
Return Merchandise Authorization (RMA) - DataconomyAug 11, 2025
Return Merchandise Authorization (RMA) is a process that allows customers to return unsatisfactory or defective products in e-commerce settings.
Best Practices for Shipping, Storing, and Insuring ArtJul 30, 2025
Keep your art safe by using professional art shippers, climate-controlled storage, and the right insurance to protect your art collection.
Ranked: North America’s Busiest Freight Trade Hubs in 2024Jul 26, 2025
See North America's busiest freight trade hubs in 2024 and rail's role in moving over 54M containers across the U.S., Canada, and Mexico.
A Union Pacific-Norfolk Southern combination would redraw the railroad map - TrainsJul 26, 2025
Combining Union Pacific and Norfolk Southern into the first transcontinental railroad in the U.S. would create a 52,215-mile colossus that could offer seamless service from coast to coast, bypassing longtime interchange choke points in Chicago and at gateways along the Mississippi River.
The two railroads confirmed today that they are in advanced merger discussions. The talks, they said, may not result
A Trade War Winner? The Booming Business of Returned Products.May 15, 2025
As retailers slow down orders for foreign goods because of tariffs, companies that recirculate overstocked or returned items may help fill the gap.
When This Supply-Chain Essential Goes Missing, It’s Time to Bring in the ‘Pallet Detectives’Aug 4, 2024
Millions of the wooden pallets go missing every month, creating headaches for suppliers and hiccups in the supply chain. Finding them takes some serious shoe leather.
Amazon Marketplace FearsMay 27, 2024
Amazon's marketplace accounts for most of the revenue for thousands of merchants. Therein lies the fear.
South Carolina Ports Authority’s port operations pause stretches into TuesdMay 21, 2024
The port halted activity at marine and inland terminals until Tuesday afternoon as it worked to resolve the disruption.
The hot business of cold storageMay 12, 2024
Diets, demographics, desertification: what trends aren’t growing the global cold chain?...
Twilight on the MekongFeb 29, 2024
Chinese cargo shippers once dominated Southeast Asia’s rivers. Can they find their way back?
The World’s Most Important Industry Has a New Captain—and She’s Piloting ItFeb 17, 2024
Meet Marina Hadjipateras: Greek shipping heiress, successful venture capitalist, and the woman trying to transform the $14 trillion shipping industry.
logos
High Schools Walk Legal Tightrope Using Trademarked Pro LogosNov 27, 2025
Hundreds of schools across the country borrow pro and college teams’ marks. Some ask permission. Others take a risk.
Are Logos Becoming Irrelevant in Modern Branding? | Web Designer DepotJan 29, 2025
Logos are no longer the sole defining element of a brand, as dynamic branding, AI personalization, and social media dominance challenge their relevance. While still valuable as anchors of identity, logos must evolve into adaptable, integrated tools to thrive in today’s fluid and experience-driven branding landscape.
How Popular Snack Brand Logos Have ChangedMay 12, 2024
Custom Logo Design Services. Professional Logos OnlineDec 21, 2022
Get a professional logo from the #1 choice for logo design. Original designs. Award-winning designers. Real human customer service. Quality guaranteed.
How to design a logo: 15 pro tipsJan 23, 2022
The golden rules of how to design a logo for successful branding, from the idea to implementation.
loneliness
What a Lack of Social Contact Does to Your BrainOct 3, 2025
To many of us, the concept of solitary confinement may not sound all that bad: finally, a reprieve from the siege of social and professional requests. Finally, a chance to catch up on all the reading we've been meaning to do.
Sports’ Salient Role in Tackling the Loneliness EpidemicMay 21, 2024
People cannot fix loneliness by themselves, which is where sports and all their beauty come into play.
How to feel less lonely as you get olderApr 30, 2023
Work and family life are no longer so busy and life can suddenly seem empty. Here are some good ways to stay connected
What Robots Can—and Can’t—Do for the Old and LonelyMay 31, 2021
For elderly Americans, social isolation is especially perilous. Will machine companions fill the void?
Why do you feel lonely? Neuroscience is starting to find answers.May 29, 2021
A neuroscientist’s hunt for loneliness could help us better understand the costs of social isolation.
lora
A Guide to Fine-Tuning LLMs using LoRAOct 14, 2025
In this article, I'll take you through a step-by-step guide to fine-tuning LLMs with LoRA. A Guide to Fine-Tuning LLMs using LoRA.
Easily Train a Specialized LLM: PEFT, LoRA, QLoRA, LLaMA-Adapter, and MoreMar 11, 2024
Training a specialized LLM over your own data is easier than you think…
Code LoRA from Scratch - a Lightning Studio by sebastianFeb 15, 2024
LoRA (Low-Rank Adaptation) is a popular technique to finetune LLMs more efficiently. This Studio explains how LoRA works by coding it from scratch, which is an excellent exercise for looking under …
Finetuning LLMs with LoRA and QLoRA: Insights from Hundreds of Experiments - Lightning AIOct 20, 2023
LoRA is one of the most widely used, parameter-efficient finetuning techniques for training custom LLMs. From saving memory with QLoRA to selecting the optimal LoRA settings, this article provides practical insights for those interested in applying it.
Parameter-Efficient LLM Finetuning With Low-Rank Adaptation (LoRA)Apr 29, 2023
In the rapidly evolving field of AI, using large language models in an efficient and effective manner is becoming more and more important. In this article, y...
low-cost
The Bargain Bin EvolvesJun 2, 2024
Thoughts on modern commerce from going to a bin store. It’s a place where e-commerce returns go to die.
The economics of dollar storesApr 10, 2024
A visual explainer of the numbers behind America’s ubiquitous bargain-basement chains.
Why are dollar stores a microcosm for America's shrinkflation problem?Apr 10, 2024
Recent reports have tapped dollar stores as the top offenders of shrinkflation — even beyond grocery stores
How Dollar Stores Became Magnets for Crime and KillingApr 10, 2024
Discount chains are thriving — while fostering violence and neglect in poor communities.
Here’s Why Juicero’s Press is So ExpensiveJul 18, 2022
Hidden away in Juicero’s bad week of press is one of the most powerful lessons we preach to hardware startups: unconstrained development is…
The Dollar-Store Economy (Published 2011)Jun 23, 2022
The ubiquitous dollar store is the American dream writ small.
How To Design Products For People Making $2 A Day - Fast CompanyJun 23, 2022
Proximity Designs is a for-profit design company whose goal is to create products cheap enough--and good enough--that they can be bought by poor farmers, instead of just giving them aid.
loyalty
Loyalists vs MercenariesJul 19, 2022
One of the things that entrepreneurs, founders, and CEOs obsess over is holding onto their team. When I propose some sort of difficult decision to a CEO, I am often met with the response “the team will freak out and we will lose them.” And I understand where this emotion comes from. You spend so […]
Willful Disobedience: Character Traits of Independent Thinkers in the Military - Modern War InstituteJul 18, 2022
In a speech on October 4 at the Association of the United States Army’s 2016 Annual Meeting, Chief of Staff of the Army Gen. Mark Milley shared a vision of […]
Ten Techniques To (Quickly) Build Trust With AnyoneJul 18, 2022
Ten techniques for building quick trust and rapport with anyone from the FBI’s Counterintelligence training program.
Customer Loyalty Is OverratedJul 5, 2022
Why do companies routinely succumb to the lure of rebranding? The answer, say A.G. Lafley and Roger L. Martin, the authors of “Customer Loyalty Is Overrated,” is rooted in serious misperceptions about the nature of competitive advantage—namely, that companies need to continually update their business models, strategies, and communications to respond to the explosion of options that sophisticated consumers face. Research suggests that what makes competitive advantage truly sustainable is helping consumers avoid having to make a choice. They choose the leading product in the market primarily because that is the easiest thing to do. And each time they select it, its advantage increases over that of the products or services they didn’t choose, creating what the authors call cumulative advantage. Lafley and Martin offer guidance for building cumulative advantage: Become popular early. Back in 1946, Procter & Gamble gave away a box of Tide with every washing machine sold in America. Design for habit. When P&G introduced Febreze, consumers liked it but didn’t use it much. The problem, it turned out, was that the product came in what looked like a glass-cleaner bottle, so users kept it under the sink. When the company redesigned the bottle so that customers would keep it in a more visible spot, they ended up using it more often. Innovate inside the brand. Efforts to “relaunch” brands can lead people to break their habits. Changes in product features should be introduced in a way that retains cumulative advantage. For customers, “improved” is much more comfortable than “new.” Keep communication simple. A clever ad may win awards, but if its message is too complex, it will backfire.
The Help Scout Blog: Delight Your CustomersJun 23, 2022
Get tips and advice on delivering exceptional customer service, engaging and delighting your customers, and building a customer-centric company.
luck
The radical moral implications of luck in human lifeFeb 8, 2026
Acknowledging the role of luck is the secular equivalent of religious awakening.
How the “4 Types of Luck” can enrich your work-lifeOct 19, 2024
We often assume that luck is something which happens to us. But according to James Austin, we should radically reframe what luck means.
The Strange Power of Unlucky CharmsMay 24, 2024
We put a lot of weight on the backstories of objects, even — maybe especially — when those stories aren’t happy ones.
Luck Surface Area: How to Get Lucky In Life - FronteraJun 15, 2022
You can't force luck. But you can increase your chances (by a lot) to get lucky. Here's how to do it with luck surface area.
How to be lucky | Psyche GuidesJan 22, 2021
Most of us think that luck just happens (or doesn’t) but everyone can learn to look for the unexpected and find serendipity
The Key to Good Luck Is an Open Mind - Facts So RomanticMar 27, 2018
Really lucky people may have a specific set of skills that bring chance opportunities their way.
luxury
The Airport-Lounge WarsNov 24, 2025
Airlines and their credit-card-company partners compete to provide the best food, alcohol, and bathrooms, and the right amount of access, in the contest to attract frequent fliers. Zach Helfand reports.
Buy All This, Look RichFeb 22, 2025
How Quince, the one-stop shop for everything from cashmere sweaters to caviar, seduced a generation of jaded shoppers.
The Wild Economics Behind Ferrari’s Domination of the Luxury Car MarketFeb 22, 2025
Limiting production is helping to make its sports cars coveted—and the company the most valuable automaker in Europe
LVMH: Guardians of Tradition, Engineers of DesirabilityJul 3, 2024
From royal connections to succession plans, explore LVMH's journey in mastering desirability and achieving global dominance in the luxury industry.
The most expensive handbags ever madeApr 8, 2024
Multimillion-dollar bags from Hermès, Louis Vuitton, Mouawad, and more are some of the most expensive in history
What’s the Status of Flaunting Your Status?Jan 16, 2024
In the world of the ultrawealthy, luxury is only quiet if you don’t know what to listen for.
The secret economics of the Birkin bagJul 29, 2023
On a flight from Paris to London in 1983 Jane Birkin, an Anglo-French chanteuse and actress, spilled the contents of her overstuffed straw...
Telfar’s Dynamic Pricing Model Offers a New Way to Gauge Luxury Item DemandMar 28, 2023
Telfar has introduced a “Live Price” pricing model based on customer demand.
Year In Review: The Rise And Fall Of The Hype WatchDec 15, 2022
Last year, a handful of specific watches – you know the ones – went from "rather expensive, even for a luxury item" to "these prices simply cannot be real." This year, the bubble popped. Here's what happened, and what it means for 2023.
Payless punks fashionistas by opening a fake luxury store and inviting them to comment on its 'designer' shoesJul 18, 2022
Bargain shoe chain Payless recently took over a Santa Monica retail shop and turned it into Palessi, a luxury store selling their bargain shoes. Then they invited influencers to the…
How to Sell High-priced (and High-quality) ProductsJun 28, 2022
In the 1950s, most products were built to last. Companies knew that manufacturing long-lasting products would spread word-of-mouth referrals, which meant
Applying Luxury Principles to Ecommerce DesignJun 27, 2022
Luxury brands should use their digital channels to support and enhance their high-quality customer experiences. This requires providing product details that spark interest, balancing visual design with other priorities, and avoiding interruptions that risk cheapening the brand.
Luxury marketing search strategy, Part 1: Consumer mindsetJun 23, 2022
Why do we buy luxury brands? A look into the psychology driving our purchase decisions -- and how search marketers should therefore think about strategy.
Luxury groups ponder ways to get rid of their unsold inventoryJun 23, 2022
Other than slashing prices
Luxury marketing search strategy, Part 2: Strategies and tactics - Search Engine WatchJun 13, 2022
Marketing for luxury goods is a highly competitive space. Here's a full guide of how to craft SEO strategies and tactics to maximize those results.
Human Contact Is Now a Luxury Good (Published 2019)Jun 7, 2022
Screens used to be for the elite. Now avoiding them is a status symbol.
Why So Many Luxury Brands Are Terrible at EcommerceMay 30, 2022
Until recently, a lack of digital prioritization and desire to control access have led to sub-par luxury ecommerce experiences. Many luxury brands are struggling to improve.
Veblen good - WikiwandFeb 23, 2021
A Veblen good is a type of luxury good, named after American economist Thorstein Veblen, for which the demand increases as the price increases, in apparent cont...
People Are Confused About the Usefulness of Buying Fancy ThingsOct 27, 2019
Why luxury goods don't impress, but repel.
Veblen good - WikipediaAug 20, 2019
A Veblen good is a type of luxury good, named after American economist Thorstein Veblen, for which the demand increases as the price increases, in apparent contradiction of the law of demand, resulting in an upward-sloping demand curve. The higher prices of Veblen goods may make them desirable as a status symbol in the practices of conspicuous consumption and conspicuous leisure. A product may be a Veblen good because it is a positional good, something few others can own.
Minimalism Is Just Another Boring Product Wealthy People Can BuyMay 3, 2018
I think it’s probably no secret by now that I hate minimalism. I hate it as the incredibly-tedious piece of […]
lying
This Is How You Can Spot a Fake SmileJun 3, 2025
Simply put, the Duchenne smile is genuine. But fake smiles are all around, and this is how you can tell the difference.
Scientists have found a simple yet brilliant hack for spotting a liarMay 12, 2024
Scientists say there is evidence that lying is more cognitively demanding than telling the truth.
How to Tackle Truth DecayMar 5, 2024
The social contract of trust between experts and society is in danger of dissolving. We need to start putting it back together.
How to spot a liar: 10 essential tells – from random laughter to copycat gesturesFeb 29, 2024
The Traitors has shown just how adept some people are at lying. Here, an ex-FBI agent, a psychologist and a fraud investigator share their best tips for detecting dishonesty
These are the mental processes required to tell a convincing lieOct 6, 2023
The cognitive work involved in lying is relevant to lie detection and could help explain why some people are better liars
All time best interviews with accused fraudstersAug 14, 2022
One of my pastimes is listening to interviews with accused corporate fraudsters before and after they got caught.
My Favorite LiarJan 13, 2022
“It's my intention to work into each lecture one lie...” Remembering a favourite teacher whose unorthodox methods got his students' attention
The Truth about Lying - JSTOR DailyMay 30, 2021
You can’t spot a liar just by looking, but psychologists are zeroing in on methods that might actually work.
The truth about lyingMar 30, 2021
You can’t spot a liar just by looking — but psychologists are zeroing in on methods that might actually work
The Ultimate Guide to Liars and Lying: Everyone Falls Into These 4 TypesFeb 23, 2021
What is the psychology of the liar? There are various ways of classifying lies: by their consequences, by the importance of their subject matters, by the speakers' motives, and by the nature or context of the utterance. Perhaps the most useful way to classify lies is by the type of liars who tell them.
How to figure out if someone is telling you the truthJan 8, 2021
"The home of our truth/lie detector resides in the area of our body that encapsulates the throat, heart, and gut."
machine-learning
The Concise Guide to Regularization: L1, L2, and Elastic Net The Concise Guide to Regularization: L1, L2, and Elastic NetFeb 26, 2026
Learn when to use L1, L2, and Elastic Net regularization to prevent overfitting in machine learning models. Learn L1, L2, and Elastic Net regularization in simple terms. Prevent overfitting and build better machine learning models that generalize well.
Probabilistic Nearest Neighbor Search: The Swiss Army Knife of GenAIFeb 10, 2026
ANN — Approximate Nearest Neighbors — is at the core of fast vector search, itself central to GenAI, especially GPT and LLM. My new methodology, abbreviated as PANN, has many other app…
5 Statistical Methods That Dominate Their Industries (and Why)Dec 22, 2025
Discover which statistical methods dominate healthcare, finance, tech, retail, and sports analytics, and why these industry-method pairings became indispensable standards.
Shapley Values Explained: Seeing Which Features Drive Your PredictionsDec 17, 2025
Learn what Shapley values are and how SHAP tools help explain machine learning predictions.
Kernel Principal Component Analysis (PCA): Explained with an Example - MarkTechPostDec 6, 2025
Dive into Kernel PCA: explained with an example demonstrating its effectiveness compared to traditional PCA for nonlinear data.
Weights & Biases: A KDnuggets Crash Course - KDnuggetsOct 6, 2025
A hands-on guide to tracking experiments, versioning models, and keeping your ML projects reproducible with Weights & Biases.
9 machine learning concepts for ML engineers!Sep 2, 2025
9 machine learning concepts for ML engineers!
(explained as visually as possible)
Here's a recap of several visual summaries posted in the Daily Dose of Data Science newsletter.
1️⃣ 4 strategies for Multi-GPU Training.
- Training at scale? Learn these strategies to maximize efficiency and minimize model training time.
- Read here: https://lnkd.in/gmXF_PgZ
2️⃣ 4 ways to test models in production
- While testing a model in production might sound risky, ML teams do it all the time, and it isn’t that complicated.
- Implemented here: https://lnkd.in/g33mASMM
3️⃣ Training & inference time complexity of 10 ML algorithms
Understanding the run time of ML algorithms is important because it helps you:
- Build a core understanding of an algorithm.
- Understand the data-specific conditions to use the algorithm
- Read here: https://lnkd.in/gKJwJ__m
4️⃣ Regression & Classification Loss Functions.
- Get a quick overview of the most important loss functions and when to use them.
- Read here: https://lnkd.in/gzFPBh-H
5️⃣ Transfer Learning, Fine-tuning, Multitask Learning, and Federated Learning.
- The holy grail of advanced learning paradigms, explained visually.
- Learn about them here: https://lnkd.in/g2hm8TMT
6️⃣ 15 Pandas to Polars to SQL to PySpark Translations.
- The visual will help you build familiarity with four popular frameworks for data analysis and processing.
- Read here: https://lnkd.in/gP-cqjND
7️⃣ 11 most important plots in data science
- A must-have visual guide to interpret and communicate your data effectively.
- Explained here: https://lnkd.in/geMt98tF
8️⃣ 11 types of variables in a dataset
Understand and categorize dataset variables for better feature engineering.
- Explained here: https://lnkd.in/gQxMhb_p
9️⃣ NumPy cheat sheet for data scientists
- The ultimate cheat sheet for fast, efficient numerical computing in Python.
- Read here: https://lnkd.in/gbF7cJJE
____
Find us → Daily Dose of Data Science
Every day, we share tutorials and insights on DS, ML, LLMs, and RAGs.
Carl-McBride-Ellis/Compendium-of-free-ML-reading-resources: Compendium of free ML reading resourcesJul 28, 2025
Compendium of free ML reading resources
10 Must-Know Python Libraries for MLOps in 2025Jun 21, 2025
In this article, we’ll explore 10 Python libraries that every machine learning professional should know in 2025.
The Hundred-Page Machine Learning Book by Andriy BurkovMay 24, 2025
All you need to know about Machine Learning in a hundred pages. Supervised and unsupervised learning, support vector machines, neural networks, ensemble methods, gradient descent, cluster analysis and dimensionality reduction, autoencoders and transfer learning, feature engineering and hyperparameter tuning! Math, intuition, illustrations, all in just a hundred pages!
Simplest backpropagation explainer without chain ruleApr 30, 2025
Neural Networks learn to predict by backpropagation. This article aims to help you, build a solid intuition about the concept using a simple example. The ideas we learn here can be expanded for bigger nerual network. I assume that you already know how feed forward neural network works.
Before reading the article further, take a pen and paper. The calculation used in this article can be done in the head. But I still want you to do by hand.
“Periodic table of machine learning” could fuel AI discoveryApr 23, 2025
After uncovering a unifying algorithm that links more than 20 common machine-learning approaches, MIT researchers organized them into a “periodic table of machine learning” that can help scientists combine elements of different methods to improve algorithms or create new ones.
Machine Learning Algorithms You Never Knew Existed, But Are Quite UsefulApr 8, 2025
Ever heard of Tsetlin Machines ??
Beginner’s Guide to Deploying a Machine Learning API with FastAPIMar 27, 2025
In this guide, you will learn how to deploy a machine learning model as an API using FastAPI. We will create an API that predicts the species of a penguin based on its bill length and flipper length. Prerequisites Step 1: Set Up Your Environment Step 2: Prepare Your Machine Learning Model Step 3: Create […]
What is triplet loss? - DataconomyMar 13, 2025
Triplet loss is a machine learning function that minimizes distances between similar data points while maximizing distances between dissimilar ones.
What are Support Vector Machines (SVM)? - DataconomyMar 12, 2025
Support Vector Machines (SVM) are supervised learning algorithms used for classification and regression by finding optimal decision boundaries between data classes.
Olivier Grisel - Predictive survival analysis with scikit-learn, scikit-survival and lifelinesMar 2, 2025
10 Little-Known Python Libraries That Will Make You Feel Like a Data Wizard - KDnuggetsFeb 11, 2025
In this article, I will introduce you to 10 little-known Python libraries every data scientist should know.
50+ Projects to Learn Data Analysis | Aman KharwalFeb 7, 2025
In this article, I'll take you through a list of 50+ Data Analysis Projects you should try to learn Data Analysis.
A Practical Guide to Survival AnalysisFeb 5, 2025
Survival analysis consists of statistical methods that help us understand and predict how long it takes for an event to occur.
Support Vector Machines: A Progression of AlgorithmsFeb 3, 2025
MMC, SVC, SVM: What’s the difference?
80+ Data Science Projects | Aman KharwalJan 31, 2025
In this article, I'll take you through a list of 80+ hands-on Data Science projects you should try to learn everything in Data Science.
Multi-Head Latent Attention and Other KV Cache TricksJan 29, 2025
How a Key-Value (KV) cache reduces Transformer inference time by trading memory for computation
50+ AI & ML Projects with Python | Aman KharwalJan 24, 2025
In this article, I'll take you through a list of 50+ AI & ML projects solved & explained with Python that you should try.
Implementing A Byte Pair Encoding (BPE) Tokenizer From ScratchJan 18, 2025
This is a standalone notebook implementing the popular byte pair encoding (BPE) tokenization algorithm, which is used in models like GPT-2 to GPT-4, Llama 3,...
Don't use cosine similarity carelessly - Piotr MigdałJan 15, 2025
Cosine similarity - the duct tape of AI. Convenient but often misused. Let's find out how to use it better.
Massively Speed-Up your Learning Algorithm, with Stochastic Thinning - Machine Learning TechniquesDec 30, 2024
Dramatically Speed-Up your Learning Algorithm, with Stochastic Thinning. Includes use case, Python code, regression and neural network illustrations.
7 Essential Python Libraries for MLOps - KDnuggetsDec 10, 2024
Popular MLOps Python tools that will make machine learning model deployment a piece of cake.
10 Types of Machine learning Algorithms and Their Use CasesNov 28, 2024
In today’s world, you’ve probably heard the term “Machine Learning” more than once. It’s a big topic, and if you’re new to it, all the technical words might feel confusing. Let’s start with the basics and make it easy to understand. Machine Learning, a subset of Artificial Intelligence, has emerged as a transformative force, empowering machines to learn from data and make intelligent decisions without explicit programming. At its core, machine learning algorithms seek to identify patterns within data, enabling computers to learn and adapt to new information. Think about how a child learns to recognize a cat. At first,
How to Run a Paper Club (also: LIVE at NeurIPS 2024!)Nov 24, 2024
Your ultimate Paper Club Starter Kit, from your friends at the Latent Space Paper Club, where we have now read 100 papers. Also: Announcing Latent Space Paper Club LIVE! at Neurips 2024! Join us!
AI Alone Isn’t Ready for Chip DesignNov 21, 2024
A combination of classical search and machine learning may be the way forward
Transforming Location Retrieval at Airbnb: A Journey from Heuristics to Reinforcement LearningNov 11, 2024
How Airbnb leverages machine learning and reinforcement learning techniques to solve a unique information retrieval task in order to…
Difference Between a Batch and an Epoch in a Neural Network - MachineLearningMastery.comOct 28, 2024
Stochastic gradient descent is a learning algorithm that has a number of hyperparameters. Two hyperparameters that often confuse beginners are the batch size and number of epochs. They are both integer values and seem to do the same thing. In this post, you will discover the difference between batches and epochs in stochastic gradient descent. After reading this post, you…
Calculating the Uncertainty Coefficient (Theil’s U) in PythonOct 22, 2024
A measure of correlation between discrete (categorical) variables
The m=√p rule for random forests | R-bloggersOct 20, 2024
A couple of days ago, in our lab session, we discussed random forrests, and, since it was based on the example in ISLR, we had a quick discussion about the random choice of features, and the “” rule Interestingly, on that one, we can play a bit, and try all choices, and do it again, on a different train/test split, library(randomForest) library(ISLR2) set.seed(123) sim = function(t){ train = sample(nrow(Boston), size = nrow(Boston)*.7) subsim = function(i){ rf.boston
The m=√p rule for random forestsOct 19, 2024
A couple of days ago, in our lab session, we discussed random forrests, and, since it was based on the example in ISLR, we had a quick discussion about the random choice of features, and the “” rule Interestingly, on that one, we can play a bit, and try all choices, and do it again, … Continue reading The m=√p rule for random forests →
10 GitHub Repositories for Advanced Machine Learning ProjectsOct 16, 2024
Where can you find projects dealing with advanced ML topics? GitHub is a perfect source with its many repositories. I’ve selected ten to talk about in this article.
Marketing Mix Modeling (MMM): How to Avoid Biased Channel EstimatesOct 16, 2024
Learn which variables you should and should not take into account in your model.
Counts Outlier Detector: Interpretable Outlier DetectionJun 20, 2024
An interpretable outlier detector based on multi-dimensional histograms.
Basis Functions: Simple Definition - Statistics How ToMay 28, 2024
Types of Functions > Basis functions (called derived features in machine learning) are building blocks for creating more complex functions. In other
Cosine SimilarityMay 13, 2024
Cosine similarity can measure the proximity between two documents by transforming words into vectors within a vector space.
7 Cool Technical GenAI & LLM Job Interview QuestionsMay 4, 2024
Cool LLM and GenAI tech questions covering many modern concepts, including fast vector search, contextual tokens, and augmented structures
Permutation Feature Importance from ScratchApr 24, 2024
Understanding the importance of permutations in the field of explainable AI
Tips for LLM Pretraining and Evaluating Reward ModelsApr 15, 2024
Discussing AI Research Papers in March 2024
SVM and Kernels: The Math that Makes Classification MagicApr 8, 2024
Imagine you're at a party separating people who love pizza (yum!) from those who...well, have...
Algorithm RepositoryApr 6, 2024
Customers Prefer to Crowdfund Products They Can ImproveMar 31, 2024
Platforms like Kickstarter and Indiegogo have not only broadened access to funding to companies that might struggle in the capital markets but have also transformed the way companies connect with consumers during product development, replacing focus groups with real customers who have a stake in the final product. Despite crowdfunding’s many benefits, numerous campaigns still fail. To understand why, the authorse embarked on an empirical analysis of 18,173 campaigns for physical products in the technology and design categories on Kickstarter. They found that many companies often present initial products that are so fully developed that customers don’t feel that their input will materially change the product and are reluctant to contribute as a result.
Speech and Language ProcessingMar 12, 2024
CatBoost - state-of-the-art open-source gradient boosting library with cateMar 7, 2024
#CatBoost - state-of-the-art open-source gradient boosting library with categorical features support,
What Is a Schur Decomposition? – Nick HighamMar 5, 2024
A Schur decomposition of a matrix $latex A\in\mathbb{C}^{n\times n}$ is a factorization $LATEX A = QTQ^*$, where $LATEX Q$ is unitary and $LATEX T$ is upper triangular. The diagonal entries of $LAT…
Encoding Categorical Variables: A Deep Dive into Target EncodingFeb 29, 2024
Data comes in different shapes and forms. One of those shapes and forms is known as categorical data.
Getting started predicting time series data with Facebook ProphetFeb 19, 2024
This article aims to take away the entry barriers to get started with time series analysis in a hands-on tutorial using Prophet
The Math behind Adam OptimizerFeb 19, 2024
Why is Adam the most popular optimizer in Deep Learning? Let’s understand it by diving into its math, and recreating the algorithm.
3 Key Encoding Techniques for Machine Learning: A Beginner-Friendly GuideFeb 19, 2024
How should we choose between label, one-hot, and target encoding?
Understanding Latent Dirichlet Allocation (LDA) — A Data Scientist’s GuideFeb 11, 2024
LDA explained with a dog pedigree model
Pearson vs Spearman Correlation: Find Harmony between the VariablesJan 19, 2024
Which measure of correlation should you use for your task? Learn all you need to know about Pearson and Spearman correlations.
The Perfect Way to Smooth Your Noisy DataJan 18, 2024
Insanely fast and reliable smoothing and interpolation with the Whittaker-Eilers method.
10 Noteworthy AI Research Papers of 2023Jan 7, 2024
This year has felt distinctly different. I've been working in, on, and with machine learning and AI for over a decade, yet I can't recall a time when these fields were as popular and rapidly evolving as they have been this year. To conclude an eventful 2023 in machine learning and AI research, I'm excited to share 10 noteworthy papers I've read this year. My personal focus has been more on large language models, so you'll find a heavier emphasis on large language model (LLM) papers than computer vision papers this year.
Boosting Algorithms in Machine Learning, Part I: AdaBoostJan 5, 2024
Understanding the logic behind AdaBoost and implementing it using Python
An unusual introduction to manifoldsDec 29, 2023
This tutorial offers a bridge between the abstract mathematics of manifolds and computational practice.
Market Basket Analysis using PythonOct 30, 2023
In this article, I'll take you through the task of Market Basket Analysis using Python. Market Basket Analysis using Python.
The Power of Independent Component Analysis (ICA) on Real-World ApplicationOct 24, 2023
Independent component analysis (ICA) is a powerful data-driven tool capable of separating linear contributions in the data
Math for Machine Learning: 14 Must-Read BooksOct 20, 2023
It is possible to design and deploy advanced machine learning algorithms that are essentially math-free and stats-free. People working on that are typically professional mathematicians. These algorithms are not necessarily simpler. See for instance a math-free regression technique with prediction intervals, here. Or supervised classification and alternative to t-SNE, here. Interestingly, this latter math-free machine
A Gentle Introduction to Complementary Log-Log RegressionOct 7, 2023
An alternative of logistic regression in special conditions
No sacred masterpiecesSep 24, 2023
Or "that time I built Excel for Uber and they ditched it like a week after launch"
XGBoost: How Deep Learning Can Replace Gradient Boosting and Decision TreesSep 24, 2023
A world without if
Dirty Secrets of BookCorpus, a Key Dataset in Machine LearningSep 21, 2023
BookCorpus has helped train at least thirty influential language models (including Google’s BERT, OpenAI’s GPT, and Amazon’s Bort), according to HuggingFace. This is the research question that…
Pearson, Spearman and Kendall Correlation Coefficients, by HandSep 17, 2023
Learn how to compute the Pearson, Spearman and Kendall correlation coefficients by hand to evaluate the relationship between two variables
Machine Learning Using Decision Trees in RubySep 17, 2023
In the era of hyper-sophisticated machine learning models like ChatGPT, it is surprising how effective the classic decision tree model remains, especially when used in conjunction with other techniques, such as bagging, boosting and random forests. In this blog post we demonstrate how to build an effective decision tree model, and train this model on some sample data.
Probabilistic Machine Learning: Advanced TopicsSep 12, 2023
Dynamic Pricing with Multi-Armed Bandit: Learning by Doing!Aug 19, 2023
Applying Reinforcement Learning strategies to real-world use cases, especially in dynamic pricing, can reveal many surprises
Why is Feature Scaling Important in Machine Learning? Discussing 6 FeatureAug 19, 2023
Standardization, Normalization, Robust Scaling, Mean Normalization, Maximum Absolute Scaling and Vector Unit Length Scaling
Evaluation Metrics for Recommendation Systems — An OverviewAug 11, 2023
Understanding the purpose and functionality of common metrics in ML packages
patchy631/machine-learningAug 7, 2023
Self-Organizing MapsAug 7, 2023
Learn how Self-Organizing Maps work and why they are a useful unsupervised learning algorithm
Breaking the Data Barrier: How Zero-Shot, One-Shot, and Few-Shot Learning aAug 6, 2023
Discover the concepts of Zero-Shot, One-Shot, and Few-Shot Learning, which enable machine learning models to classify and recognize objects or patterns with a limited number of examples.
Machine Learning Basics: Polynomial RegressionAug 6, 2023
Learn to build a Polynomial Regression model to predict the values for a non-linear dataset.
Geographic Clustering with HDBSCANAug 6, 2023
How to explore geographic data with HDBSCAN, H3, graph theory, and OSM.
Mastering Monte Carlo: How To Simulate Your Way to Better Machine LearningAug 3, 2023
How a Scientist Playing Solitaire Forever Changed the Game of Statistics
LGBMClassifier: A Getting Started GuideJul 29, 2023
This tutorial explores the LightGBM library in Python to build a classification model using the LGBMClassifier class.
Similarity Search, Part 4: Hierarchical Navigable Small World (HNSW) | by VJul 28, 2023
Hierarchical Navigable Small World (HNSW) is a state-of-the-art algorithm used for an approximate search of nearest neighbours. Under the…
Similarity Search, Part 3: Blending Inverted File Index and Product QuantizJul 28, 2023
In the first two parts of this series we have discussed two fundamental algorithms in information retrieval: inverted file index and…
Building a Vector Search Engine Using HNSW and Cosine SimilarityJul 27, 2023
Hierarchical Navigable Small World graphs (HNSW) is an algorithm that allows for efficient nearest neighbor search, and the Sentence…
Similarity Search, Part 1: kNN & Inverted File IndexJul 27, 2023
Similarity search is a popular problem where given a query Q we need to find the most similar documents to it among all the documents D.
Similarity Search, Part 2: Product QuantizationJul 27, 2023
Learn a powerful technique to effectively compress large data
Similarity Search, Part 5: Locality Sensitive Hashing (LSH)Jul 27, 2023
Explore how similarity information can be incorporated into hash function
Similarity Search, Part 6: Random Projections with LSH ForestJul 27, 2023
Understand how to hash data and reflect its similarity by constructing random hyperplanes
Similarity Search, Part 7: LSH CompositionsJul 27, 2023
Dive into combinations of LSH functions to guarantee a more reliable search
The Complete Introduction to Survival Analysis in Python | by Marco PeixeirJul 24, 2023
Understand survival analysis, its use in the industry, and how to apply it in Python
Unbox the Cox: Intuitive Guide to Cox RegressionsJul 24, 2023
How do hazards and maximum likelihood estimates predict event rankings?
A Deep Dive into Autoencoders and Their Relationship to PCA and SVDJul 24, 2023
An in-depth exploration of autoencoders and dimensionality reduction
Machine Learning in a Non-Euclidean spaceJul 24, 2023
Chapter I. Why you should learn about non-Euclidean ML
Creating Incredible Decision Tree Visualizations with dtreevizJul 23, 2023
How to visualize decision tree models with this useful library
Unsupervised Learning Series — Exploring Hierarchical ClusteringJul 23, 2023
Let’s explore how hierarchical clustering works and how it builds clusters based on pairwise distances.
A Gentle Introduction to Support Vector MachinesJul 23, 2023
A guide to understanding support vector machines for classification: from theory to scikit-learn implementation.
Feature Transformations: A Tutorial on PCA and LDAJul 23, 2023
Reducing the dimension of a dataset using methods such as PCA
Uplift Modeling — A Data Scientist’s Guide to Optimizing a Credit Card ReneJul 23, 2023
Applying causal machine learning to trim the campaign target audience
Introduction to Vector Similarity SearchJul 14, 2023
Learn what vector search is and the metrics pertinent to decide the distance (or similarity) between objects.
The Basics of Anomaly DetectionJul 10, 2023
Basics of anomaly detection, its use-cases, and an implementation of simple yet powerful algorithm in Python
A Gentle Introduction to K-Means Clustering in R (Feat. Tidyclust)Jul 7, 2023
To be successful as a Data Scientist, you’re often put in positions where you need to find groups within your data. One key business use-case is finding clusters of customers that behave similarly. And that’s a powerful skill that I’m going to help you...
Spectral Clustering Algorithm DemystifiedJun 21, 2023
Spectral clustering is a method of clustering data points based on their similarity or affinity,...
Diminishing Returns in Machine Learning Part 1Jun 5, 2023
Hardware Development and the Physical Frontier
Sklearn Pipelines for the Modern ML Engineer: 9 Techniques You Can’t IgnoreMay 31, 2023
Master Sklearn pipelines for effortless and efficient machine learning. Discover the art of building, optimizing, and scaling models with ease. Level up your data preprocessing skills and supercharge your ML workflow today
Hidden Data Science Gem: Rainbow Method for Label Encoding | by Anna ArakelMay 14, 2023
Make stronger and simpler models by leveraging natural order
eBay’s Blazingly Fast Billion-Scale Vector Similarity EngineMay 2, 2023
The Similarity Engine's use cases include item-to-item similarity for text and image modality and user-to-item personalized recommendations based on a user’s historical behavior data.
Beginner’s Guide to the Must-Know LightGBM HyperparametersApr 10, 2023
The most important LightGBM parameters, what they do, and how to tune them
A Guide to Association Rule MiningApr 5, 2023
Create insights from frequent patterns using market basket analysis with Python
Cycle Detection for Recursive Search in Hierarchical Trees - Database TipApr 5, 2023
Recursive queries are a straightforward solution to querying hierarchical trees. However, one loop in the relationship references results in a failing or never ending query when cycle detection is not used.
Master Semantic Search at Scale: Index Millions of Documents with LightningApr 1, 2023
Dive into an end-to-end demo of a high-performance semantic search engine leveraging GPU acceleration, efficient indexing techniques, and…
Top Machine Learning Papers to Read in 2023 - KDnuggetsMar 31, 2023
These curated papers would step up your machine-learning knowledge.
Announcing PyCaret 3.0: Open-source, Low-code Machine Learning in PythonMar 31, 2023
Exploring the Latest Enhancements and Features of PyCaret 3.0
Hashing in Modern Recommender Systems: A PrimerMar 29, 2023
Understanding the most underrated trick in applied Machine Learning
The Meaning Behind Logistic Classification, from Physics | by Tim Lou, PhDMar 26, 2023
Why do we use the logistic and softmax functions? Thermal physics may have an answer.
Mixture Models, Latent Variables and the Expectation Maximization AlgorithmMar 23, 2023
Unsupervised learning has always been fascinating to me. It is a way to learn about data without manual labeling effort and allows for the…
12 Ways to Test Your Forecasts like A ProMar 20, 2023
How to find the best performance estimation approach for time-series forecasts among 12 strategies proposed in the literature. With Python…
Jaccard indexMar 19, 2023
The Jaccard index, also known as the Jaccard similarity coefficient, is a statistic used for gauging the similarity and diversity of sample sets.
It is defined in general taking the ratio of two sizes, the intersection size divided by the union size, also called intersection over union (IoU).
How to make 40 interactive plots to analyze your machine learning pipelineMar 19, 2023
A quick guide on how to make clean-looking, interactive Python plots to validate your data and model
Uplift Modeling with Cost OptimizationMar 19, 2023
How to adjust CATE to consider costs associated with your treatments
2012.03854.pdfMar 16, 2023
2003.05689.pdfMar 16, 2023
2108.02497.pdfMar 16, 2023
?Top ML Papers of the Week - by elvis - NLP NewsletterMar 14, 2023
The top ML Papers of the Week (Mar 6 - Mar 12)
Y Combinator–backed Patterns is building a platform to abstract away data sMar 12, 2023
Patterns, backed by Y Combinator, is building a platform that allows customers to piece together components to build an AI-powered app.
Write Readable Tests for Your Machine Learning Models with BehaveMar 12, 2023
Use natural language to test the behavior of your ML models
How to Understand and Use the Jensen-Shannon DivergenceMar 2, 2023
A primer on the math, logic, and pragmatic application of JS Divergence — including how it is best used in drift monitoring
Introduction of Four Types of Item Similarity MeasuresFeb 19, 2023
Covers how to choose the similarity measure when item embeddings are available
A practical introduction to sequential feature selectionFeb 16, 2023
A gentle dive into this unusual feature selection technique
How to Improve Clustering Accuracy with Bayesian Gaussian Mixture ModelsFeb 15, 2023
A more advanced clustering technique for real world data
How to Perform Multivariate Outlier Detection in Python PyOD For Machine LeFeb 9, 2023
Discover how to effectively detect multivariate outliers in machine learning with PyOD in Python. Learn to convert anomaly scores to probability confidence, choose the best outlier classifier and determine the right probability threshold for improved model accuracy.
Linear Algebra: LU Decomposition, with PythonFeb 2, 2023
Part 4: A comprehensive step-by-step guide to solving a linear system with LU Decomposition
Correlation — When Pearson’s r Is Not EnoughFeb 2, 2023
Comparison of various correlation methodologies
skops: a new library to improve scikit-learn in productionFeb 2, 2023
There are various challenges in MLOps and model sharing, including, security and reproducibility. To tackle these for scikit-learn models, we've developed a new open-source library: skops. In this article, I will walk you through how it works and how to use it with an end-to-end example.
PageRank Algorithm for Graph DatabasesJan 30, 2023
What is PageRank algorithm? How can it be used in various graph database use cases? How to use it in Memgraph? If these questions are keeping you up at night, here is a blog post that will finally put your mind at ease.
Comparing Different Automatic Image Augmentation Methods in PyTorchJan 30, 2023
Data augmentation is a key tool in reducing overfitting, whether it's for images or text. This article compares three Auto Image Data Augmentation techniques...
Hyperparameter Optimization: 10 Top Python LibrariesJan 27, 2023
Become familiar with some of the most popular Python libraries available for hyperparameter optimization.
Introducing PyCircular: A Python Library for Circular Data AnalysisJan 24, 2023
Circular data can present unique challenges when it comes to analysis and modeling
What does Entropy Measure? An Intuitive ExplanationJan 22, 2023
Entropy can be thought of as the probability of seeing certain patterns in data. Here’s how it works.
Complete guide to Association Rules (2/2)Jan 18, 2023
Algorithms that help you shop faster and smarter
Brief Introduction to Correspondence AnalysisJan 16, 2023
Learn the basic steps to run a Multiple Correspondence Analysis in R
7 Scikit-Learn Best Practices For Data ScientistsJan 13, 2023
Tips for taking full advantage of this machine learning package
Introduction to Multi-Armed Bandit ProblemsJan 7, 2023
Delve deeper into the concept of multi-armed bandits, reinforcement learning, and exploration vs. exploitation dilemma.
Geometric KernelsJan 1, 2023
A cross-framework package for kernels and Gaussian processes on manifolds, graphs, and meshes
Simple Parquet Tutorial and Best PracticesDec 28, 2022
Hands-on tutorial for starting your Parquet learning
Dense Vectors | PineconeDec 28, 2022
Milvus · An Open Source Vector Similarity Search Engine - 开源向量相似度搜索引擎Dec 28, 2022
Open-source vector database built for GenAI applications. Install with pip, perform high-speed searches, and scale to tens of billions of vectors.
PacktPublishing/Python-Feature-Engineering-Cookbook-Second-Edition: PythonDec 25, 2022
Python Feature Engineering Cookbook Second Edition, published by Packt - PacktPublishing/Python-Feature-Engineering-Cookbook-Second-Edition
What Is Survival Analysis? Examples by Hand and in RDec 23, 2022
Learn more about survival analysis (also called time-to-event analysis) and how it is used, and how to apply it by hand and in R
Zero-shot Learning, Explained - KDnuggetsDec 23, 2022
How you can train a model to learn and predict unseen data?
ChatGPT and the Imagenet moment — Benedict EvansDec 16, 2022
The wave of enthusiasm around generative networks feels like another Imagenet moment - a step change in what ‘AI’ can do that could generalise far beyond the cool demos. What can it create, and where are the humans in the loop?
Survival Analysis: Optimize the Partial Likelihood of the Cox ModelDec 10, 2022
Finding the coefficients that maximize the log-partial likelihood in Python
Google brings machine learning to online spreadsheets with Simple ML for ShDec 9, 2022
Today Google announced a beta release of Simple ML for Sheets, which allows users without ML experience to try ML out on their spreadsheets.
Dual Confidence Regions: A Simple Introduction - DataScienceCentral.comDec 7, 2022
Simulated confidence regions for machine learning professionals and non-statisticians. Introducing a new concept: dual confidence region.
Machine Learning Dictionary - Machine Learning TechniquesDec 6, 2022
Top entries are in bold, and sub-entries are in italics. This dictionary is from my new book "Intuitive Machine Learning and Explainable AI", available here and used as reference material for the course with the same name (see here). These entries are cross-referenced in the book to facilitate navigation, with backlinks to the pages where
An Introduction to SMOTE - KDnuggetsNov 30, 2022
Improve the model performance by balancing the dataset using the synthetic minority oversampling technique.
How to Choose the Best Machine Learning Technique: Comparison TableNov 23, 2022
How to Choose the Best Machine Learning Technique: Comparison Table
What Is an Eigenvalue? – Nick HighamNov 9, 2022
An eigenvalue of a square matrix $LATEX A$ is a scalar $latex \lambda$ such that $latex Ax = \lambda x$ for some nonzero vector $latex x$. The vector $latex x$ is an eigenvector of $LATEX A$ and it…
Last Mile Delivery From Multiple Depots in PythonNov 7, 2022
Mathematical Modeling, Solution, and Visualization Using PuLP and VeRoViz
2 Ways to Build Your Own Custom Scikit Learn TransformersOct 30, 2022
How you can (and why you should) create custom transformers
An Effective Approach for Image Anomaly DetectionOct 28, 2022
Utilize Anomalib from Intel OpenVinoToolkit to benchmark, develop, and deploy deep learning based image anomaly detection
New Book: Approaching (Almost) Any Machine Learning Problem - Machine Learning TechniquesOct 27, 2022
This self-published book is dated July 2020 according to Amazon. But it appears to be an ongoing project. Like many new books, the material is on GitHub, here. The most recent version, dated June 2021, is available in PDF format, here. This is not a traditional book. It feels like a repository of Python code,
5 Essential Qualities of Anomaly Detection SystemsOct 27, 2022
Ensuring your business is proactive and risk-proof.
Scikit-learn 1.1 Comes with an Improved OneHotEncoderOct 24, 2022
A simple yet highly practical feature
Understanding Logistic Regression — the Odds Ratio, Sigmoid, MLE, et alOct 21, 2022
Logistic regression is one of the most frequently used machine learning techniques for classification. However, though seemingly simple…
What is ‘Image Super Resolution’, and why do we need it?Oct 20, 2022
An introduction to the field, its applications, and current issues
Image Super-Resolution: An Overview of the Current State of ResearchOct 20, 2022
A review of popular techniques and remaining challenges
Logistic Regression: Statistics for Goodness-of-FitOct 20, 2022
Statistics in R Series: Deviance, Log-likelihood Ratio, Pseudo R² and AIC/BIC
A New, Transparent AI Tool May Help Detect Blood PoisoningOct 16, 2022
The algorithm scans electronic records and may reduce sepsis deaths, but widespread adoption could be a challenge.
19 Examples of Merging plots to Maximize your Clustering Scatter plotOct 14, 2022
Mix and match plots to get more information from a scatter plot
How can you beat XGBoost, CatBoost, and TabNet on tabular data?Oct 14, 2022
Use a cocktail of 13 modern regularization techniques! ()
[1/9]
— Sebastian Raschka (@rasbt)
How to Interpret the Odds Ratio with Categorical Variables in Logistic RegrOct 14, 2022
An explanation of reference categories and picking the right one
Topic Modeling with LSA, pLSA, LDA, NMF, BERTopic, Top2Vec: a ComparisonOct 14, 2022
A comparison between different topic modeling strategies including practical Python examples
Product Quantization for Similarity SearchOct 14, 2022
How to compress and fit a humongous set of vectors in memory for similarity search with asymmetric distance computation (ADC)
Bayesian Hierarchical Marketing Mix Modeling in PyMCOct 14, 2022
Learn how to build MMMs for different countries the right way
IVFPQ HNSW for Billion-scale Similarity Search | by Peggy Chang | TowardsOct 14, 2022
The best indexing approach for billion-sized vector datasets
NSVQ: Improved Vector Quantization technique for Neural Networks TrainingOct 13, 2022
Efficient vector quantization for machine learning optimizations (eps. vector quantized variational autoencoders), better than straight…
The Basics of Object Detection: YOLO, SSD, R-CNNOct 11, 2022
Overview of how object detection works, and where to get started
7 Techniques to Handle Imbalanced Data - KDnuggetsOct 1, 2022
This blog post introduces seven techniques that are commonly applied in domains like intrusion detection or real-time bidding, because the datasets are often extremely imbalanced.
Chi-Square Test to Compare Categorical VariablesOct 1, 2022
Complete Guideline to Find Dependencies among Categorical Variables with Chi-Square Test
The Mindset Technique to Understand Precision and Recall Like Never BeforeSep 27, 2022
Precision and Recall elaborated with sample situations
Principal Component Analysis: Everything You Need To KnowSep 24, 2022
Covariance, eigenvalues, variance and everything …
[P] My co-founder and I quit our engineering jobs at AWS to build “Tensor Search”. Here is why.Sep 22, 2022
530 votes, 63 comments. My co-founder and I, a senior Amazon research scientist and AWS SDE respectively, launched Marqo a little over a week ago - a…
Linear Regression Analysis – Part 1 - DataScienceCentral.comSep 20, 2022
Who should read this blog: Someone who is new to linear regression. Someone who wants to understand the jargon around Linear Regression Code Repository: https://github.com/DhruvilKarani/Linear-Regression-Experiments Linear regression is generally the first step into anyone’s Data Science journey. When you hear the words Linear and Regression, something like this pops up in your mind: X1, X2,… Read More »Linear Regression Analysis – Part 1
Introduction to Embedding, Clustering, and SimilaritySep 16, 2022
Introduction to key elements of ML and Autoencoders: Embedding, Clustering, and Similarity.
An Intuitive Explanation of Collaborative FilteringSep 16, 2022
The post introduces one of the most popular recommendation algorithms, i.e., collaborative filtering. It focuses on building an intuitive understanding of the algorithm illustrated with the help of an example.
How to Use UMAP For Much Faster And Effective Outlier DetectionSep 14, 2022
Let’s catch those high-dimensional outliers
Multi-Objective Ranking for Promoted Auction ItemsSep 13, 2022
Determining which promoted auction items to display in a merchandising placement is a multi-sided customer challenge that presents opportunities to both surface amazing auction inventory to buyers and help sellers boost visibility on their auction listings.
Adjacency networksSep 12, 2022
Finding the adjacency graphs for US states and Texas counties using Mathematica
Demystifying Object Detection and Instance Segmentation for Data Scientists - MLWhizSep 5, 2022
this post is explaining how permutation importance works and how we can code it using ELI5
Patterns, Predictions, and ActionsAug 22, 2022
How to Perform Motion Detection Using Python - KDnuggetsAug 21, 2022
In this article, we will specifically take a look at motion detection using a webcam of a laptop or computer and will create a code script to work on our computer and see its real-time example.
SHAP for Categorical Features with CatBoostAug 13, 2022
Avoid post-processing the SHAP values of categorical features
9 Visualizations with Python that Catch More Attention than a Bar ChartAug 8, 2022
Creating eye-catching graphs with Python to use instead of bar charts.
OCR-free document understanding with DonutAug 5, 2022
Use the recently-released Transformers model to generate JSON representations of your document data
An Introduction to Graph Partitioning Algorithms and Community DetectionAug 4, 2022
Graph partitioning has been a long-lasting problem and has a wide range of applications. This post shares the methodology for graph…
5 Less-Known Python Libraries That Can Help in Your Next Data Science ProjeAug 4, 2022
Reduce time in your data science workflow with these libraries.
https://twitter.com/freakonometrics/status/1550439602594484225?s=12&t=5dAyRh9A5Nw53A3oNf4HPgJul 22, 2022
Building classifiers with biased classes: AdaSampling comes to the rescueJul 21, 2022
An algorithmic approach to clean up your dataset and sharpen class assignments.
What is YOLOv7? A Complete Guide.Jul 18, 2022
In this guide, we discuss what YOLOv7 is, how the model works, and the novel model architecture changes in YOLOv7.
YOLOv7: Trainable bag-of-freebies sets new state-of-the-art for...Jul 18, 2022
YOLOv7 surpasses all known object detectors in both speed and accuracy in the range from 5 FPS to 160 FPS and has the highest accuracy 56.8% AP among all known real-time object detectors with 30...
Modeling Marketing Mix Using Smoothing SplinesJul 18, 2022
Capturing non-linear advertising saturation and diminishing returns without explicitly transforming media variables
Linear Algebra for Data Science - KDnuggetsJul 18, 2022
In this article, we discuss the importance of linear algebra in data science and machine learning.
Build Complex Time Series Regression Pipelines with sktimeJul 13, 2022
How to forecast with scikit-learn and XGBoost models with sktime
Machine Learning Operations (MLOps): Overview, Definition, and ArchitectureJul 13, 2022
The final goal of all industrial machine learning (ML) projects is to develop ML products and rapidly bring them into production. However, it is highly challenging to automate and operationalize...
Understanding Self-Organising Map Neural Network with Python CodeJul 13, 2022
Brain-inspired unsupervised machine learning through competition, cooperation and adaptation
How to Solve Scheduling Problems in PythonJul 11, 2022
Use linear programming to minimize the difference between required and scheduled resources
what is discriminant analysis at DuckDuckGoJul 11, 2022
Want to know what is discriminant analysis & how does it help in analyzing data? Read this complete guide on Discriminant analysis now.
Topological Data Analysis for Machine LearningJul 10, 2022
firmai/financial-machine-learning: A curated list of practical financial machine learning tools and applications.Jul 6, 2022
A curated list of practical financial machine learning tools and applications. - firmai/financial-machine-learning
Essential Math for Data Science: Eigenvectors and Application to PCA - KDnuggetsJul 5, 2022
In this article, you’ll learn about the eigendecomposition of a matrix.
grahamjenson/list_of_recommender_systems: A List of Recommender Systems and ResourcesJun 28, 2022
A List of Recommender Systems and Resources.
T-LEAF: Taxonomy Learning and EvaluAtion FrameworkJun 24, 2022
How we applied qualitative learning, human labeling and machine learning to iteratively develop Airbnb’s Community Support Taxonomy.
FIGS: Attaining XGBoost-level performance with the interpretability and speJun 24, 2022
The BAIR Blog
Three Performance Evaluation Metrics of Clustering When Ground Truth LabelsJun 23, 2022
Which metric should be used to evaluate the clustering results if the ground truth labels are not available? In this post, I’m introducing…
Multi-Relevance Ranking Model for Similar Item RecommendationJun 23, 2022
Buyers reveal a whole range of behaviors and interests when they browse our pages, so we decided to incorporate these additional purchase intent signals into our machine learning model to improve the relevance of our recommended items.
Complete Step-by-step Genetic Algorithm from Scratch for Global OptimizationJun 22, 2022
No need to worry about getting stuck in local minima anymore
The Battle of Choropleths — Part 3 — FoliumJun 22, 2022
Using the Folium Package to Create Stunning Choropleths
Precision, Recall, and F1 Score of Multiclass Classification — Learn in DepJun 22, 2022
Manual Calculation From a Confusion Matrix and the Syntax of sklearn Library
Neighborhood Analysis, KD-Trees, and Octrees for Meshes and Point Clouds inJun 22, 2022
How to use Python libraries like Open3D, PyVista, and Vedo for neighborhood analysis of point clouds and meshes through KD-Trees/Octrees
Time Series Forecasting with ARIMAJun 21, 2022
In this article, I will take you through the task of Time Series Forecasting with ARIMA using the Python programming language.
Essential Math for Data Science: Visual Introduction to Singular Value DecoJun 21, 2022
This article will cover singular value decomposition (SVD), which is a major topic of linear algebra, data science, and machine learning.
Say Hello To Recommendation SystemsJun 21, 2022
A preview into one of the most prominent data science applications
DAGs and Control VariablesJun 21, 2022
How to select control variables for causal inference using Directed Acyclic Graphs
A Guide To Using The Difference-In-Differences Regression ModelJun 21, 2022
We’ll show how to use the DID model to estimate the effect of hurricanes on house prices
Sobol Indices to Measure Feature ImportanceJun 21, 2022
Understanding the model’s output plays a major role in business-driven projects, and Sobol can help
Reproducible ML: Maybe you shouldn’t be using Sklearn’s train_test_splitJun 21, 2022
Reproducibility is critical for robust data science — after all, it is a science.
Machines are haunted by the curse of dimensionalityJun 15, 2022
The curse of dimensionality comes into play when we deal with a lot of data having many dimensions or features.
Survival Analysis in R (in under 10-minutes)Jun 11, 2022
Making a survival analysis can be a challenge even for experienced R users, but the good news is I’ll help you make beautiful, publication-quality survival plots in under 10-minutes. Here’s what WE are going to do: Make your first survival model an...
How to Evaluate Survival Analysis ModelsJun 7, 2022
Introduction to the most popular performance evaluation metrics for survival analysis along with practical Python examples
Similarity-Based Image Search for Visual ArtMay 28, 2022
Evaluating similarity of visual art from both human perceptual & quantitative judgments
Useful Python decorators for Data ScientistsMay 28, 2022
I show toy implementations of Python decorator patterns that may be useful for Data Scientists.
One Line of Code to Accelerate Your Sklearn Algorithms on Big DataMay 27, 2022
The introduction of the intel sklearn extension. Make your Random Forest even faster than XGBoost.
The Big Six Matrix Factorizations – Nick HighamMay 18, 2022
Six matrix factorizations dominate in numerical linear algebra and matrix analysis: for most purposes one of them is sufficient for the task at hand. We summarize them here. For each factorization …
93 Datasets That Load With A Single Line of CodeMay 13, 2022
How you can pull one of a few dozen example political, sporting, education, and other frames on-the-fly.
Survival Analysis: A Brief IntroductionMay 13, 2022
An initial look into the method best suited for examining time-to-event data
Focal Loss : A better alternative for Cross-EntropyMay 7, 2022
Focal loss is said to perform better than Cross-Entropy loss in many cases. But why Cross-Entropy loss fails, and how Focal loss addresses…
Data Mining: Market Basket Analysis with Apriori AlgorithmApr 30, 2022
Uncovering the secret behind why breads are always conveniently placed beside butter in groceries
How does Shazam work? Music Recognition Algorithms, Fingerprinting, and Processing | Toptal®Apr 12, 2022
The Shazam music recognition application made it finally possible to put a name to that song on the radio. But how does this magical miracle actually work? In this article, Toptal Freelance Software Engineer Jovan Jovanovic sheds light on the principles of audio signal processing, fingerprinting, and recognition,...
Louvain’s Algorithm for Community Detection in PythonApr 8, 2022
Apply Louvain’s Algorithm in Python for Community Detection
Improving Shopping Recommendations for Customers Through eBay’s Relevance CApr 7, 2022
Under the new machine learning model, buyers are recommended items that are more aligned to their shopping interests on eBay.
Introduction to SHAP Values and their Application in Machine LearningApr 3, 2022
Learn how the SHAP library works under the hood
The Top 10 Algorithms Every Programmer Should Know In Graph Data Structure!Mar 26, 2022
Why to learn these graph algorithms? Graph algorithms are a set of instructions that...
Introduction — Machine Learning from ScratchMar 23, 2022
Evaluating the potential return of a model with Lift, Gain, and Decile AnalMar 23, 2022
Use these three tools to understand the usefulness of your machine learning models
CamDavidsonPilon/Probabilistic-Programming-and-Bayesian-Methods-for-HackersMar 23, 2022
aka "Bayesian Methods for Hackers": An introduction to Bayesian methods + probabilistic programming with a computation/understanding-first, mathematics-second point of view. All i...
Welcome · Advanced R.Mar 21, 2022
Welcome | Data Science at the Command Line, 2eMar 21, 2022
This thoroughly revised guide demonstrates how the flexibility of the command line can help you become a more efficient and productive data scientist. You’ll learn how to combine small yet powerful command-line tools to quickly obtain, scrub, explore, and model your data. To get you started, author Jeroen Janssens provides a Docker image packed with over 100 Unix power tools—useful whether you work with Windows, macOS, or Linux.
AI Virtual Assistant Technology Guide 2022Mar 21, 2022
They can help you get an appointment or order a pizza, find the best ticket deals and bring your...
3 t7n57q bj gMar 19, 2022
5–10x Faster Hyperparameter Tuning with HalvingGridSearchMar 17, 2022
How to optimize the hyperparameters of a machine learning model and how to speed up the process
Experiment Tracking with MLflow in 10 MinutesMar 17, 2022
Managing Machine Learning Lifecycle made easy — explained with Python examples
A Guide To ML Experiment Tracking — With Weights & BiasesMar 17, 2022
Easily learn to track all of your ML experiments with metrics and logs with an example project walkthrough!
Text Summarization with NLP: TextRank vs Seq2Seq vs BARTMar 17, 2022
Natural Language Processing with Python, Gensim, Tensorflow, Transformers
SHAP: Explain Any Machine Learning Model in PythonMar 16, 2022
A Comprehensive Guide to SHAP and Shapley Values
Real-world website visitor forecast with Facebook Prophet: A Complete TutorMar 10, 2022
As a data analyst at Microsoft, I must investigate and understand time-series data every day. Besides looking at some key performance…
Asset2Vec: Turning 3D Objects into Vectors and BackFeb 28, 2022
How we used NeRF to embed our entire 3D object catalogue to a shared latent space, and what it means for the future of graphics
Introducing TorchRec, a library for modern production recommendation systemFeb 25, 2022
We are excited to announce TorchRec, a PyTorch domain library for Recommendation Systems. This new library provides common sparsity and parallelism primitives, enabling researchers to build state-of-the-art personalization models and deploy them in production.
What is Relational Machine Learning?Feb 22, 2022
A dive into fundamentals of learning representations beyond feature vectors
Machine Learning Algorithms Cheat Sheet — Accel.AIFeb 20, 2022
Machine learning is a subfield of artificial intelligence (AI) and computer science that focuses on using data and algorithms to mimic the way people learn, progressively improving its accuracy. This way, Machine Learning is one of the most interesting methods in Computer Science these days, and it'
Topic Modeling in Python | ToptalFeb 11, 2022
Topic modeling can bring NLP to the next level. Here’s how.
What Color Is This? | Stitch Fix Technology – MultithreadedFeb 8, 2022
We need to know what colors our merch is. But because downstream users include many different people and algorithms, we need to describe colors as a hierarch...
Machine Learning Gets a Quantum Speedup | Quanta MagazineFeb 7, 2022
Two teams have shown how quantum approaches can solve problems faster than classical computers, bringing physics and computer science closer together.
Data Scientists, The 5 Graph Algorithms that you should knowFeb 2, 2022
Because Graph Analytics is the future
scikit-and-tensorflow-workbooks/ch03-classification.ipynb at master · bjpcjp/scikit-and-tensorflow-workbooksJan 29, 2022
based on "Hands-On Machine Learning with Scikit-Learn & TensorFlow" (O'Reilly, Aurelien Geron) - bjpcjp/scikit-and-tensorflow-workbooks
What Internet Search Patterns Can Teach Us About CopingJan 25, 2022
I analyzed thousands of searches by people who were diagnosed with cancer. Their queries offer valuable lessons that could improve the way doctors treat patients.
3 Reasons Why Data Scientists Should Use LightGBMJan 24, 2022
There are many great boosting Python libraries for data scientists to reap the benefits of. In this article, the author discusses LightGBM benefits and how they are specific to your data science job.
Survival Analysis in Python: A Quick Guide to The Weibull AnalysisJan 21, 2022
A Quick Guide to The Weibull Analysis
fb-prophet/01_docs.ipynb at master · bjpcjp/fb-prophetJan 17, 2022
Prophet (FB time series prediction package) docs to Python code. - bjpcjp/fb-prophet
scikit-learn/64_imputation.ipynb at master · bjpcjp/scikit-learnJan 17, 2022
Updates in progress. Jupyter workbooks will be added as time allows. - bjpcjp/scikit-learn
python-data-science-handbook/scikit/SciKit-Kernel-Density-Estimation.ipynb at master · bjpcjp/python-data-science-handbookJan 17, 2022
Sourced from O'Reilly ebook of the same name.
Multi-dimensional Decision Boundary : why current approaches fail and how tJan 17, 2022
The decision boundary is a very important visual tool for model evaluation. See how to get it to work on complex datasets
python-data-science-handbook/scikit/SciKit-Principal-Component-Analysis.ipynb at master · bjpcjp/python-data-science-handbookJan 16, 2022
Sourced from O'Reilly ebook of the same name.
scikit-and-tensorflow-workbooks/ch05-support-vector-machines.ipynb at master · bjpcjp/scikit-and-tensorflow-workbooksJan 16, 2022
based on "Hands-On Machine Learning with Scikit-Learn & TensorFlow" (O'Reilly, Aurelien Geron) - bjpcjp/scikit-and-tensorflow-workbooks
The Kaggle Way to Tune Hyperparameters with OptunaJan 16, 2022
Easily and efficiently optimize your model’s hyperparameters with Optuna with a mini project
thoughtworks/mlops-platforms: Compare MLOps Platforms. Breakdowns of SageMaker, VertexAI, AzureML, Dataiku, Databricks, h2o, kubeflow, mlflow...Jan 12, 2022
Compare MLOps Platforms. Breakdowns of SageMaker, VertexAI, AzureML, Dataiku, Databricks, h2o, kubeflow, mlflow... - thoughtworks/mlops-platforms
Essential Guide to Auto Encoders in Data Science (Part 2)Jan 12, 2022
Discussing the type of Auto Encoders
How a Kalman filter works, in pictures | BzargJan 12, 2022
A Comprehensive Guide of Regularization Techniques in Deep Learning | by EuDec 28, 2021
Understanding how Regularization can be useful to improve the performance of your model
eugeneyan/applied-ml: ? Papers & tech blogs by companies sharing their workDec 25, 2021
📚 Papers & tech blogs by companies sharing their work on data science & machine learning in production. - eugeneyan/applied-ml
A Practical Guide to ARIMA Models using PyCaret — Part 4Dec 20, 2021
Combining the “Trend” and “Difference” Terms
11 Different Uses of Dimensionality ReductionDec 15, 2021
The whole ML is full of dimensionality reduction and its applications. Let’s see them in action!
PyTorch vs TensorFlow in 2023Dec 14, 2021
Should you use PyTorch vs TensorFlow in 2023? This guide walks through the major pros and cons of PyTorch vs TensorFlow, and how you can pick the right framework.
Machine-Learning-Tokyo/Interactive_Tools: Interactive Tools for Machine Learning, Deep Learning and MathDec 13, 2021
Interactive Tools for Machine Learning, Deep Learning and Math - Machine-Learning-Tokyo/Interactive_Tools
Image Kernels explained visuallyDec 8, 2021
3 (and Half) Powerful Tricks To Effectively Read CSV Data In PythonDec 7, 2021
Master usecols, chunksize, parse_dates in pandas read_csv().
Mito: One of the Coolest Python Libraries You Have Ever SeenDec 4, 2021
Here is my take on this cool Python library and why you should give it a try
A Guide to Dimensionality Reduction in PythonDec 3, 2021
Dimensionality reduction is a vital tool for data scientists across industries. Here is a guide to getting started with it.
Why fast, effective data labeling has become a competitive advantage (VB LiNov 29, 2021
If an AI model can make decisions on the company’s behalf through products and services, that model is essentially their competitive edge.
7 DevOps skills for Machine Learning Operations | by Ricardo Mendes | Nov,Nov 29, 2021
Lessons learned from successful MLOps implementation
Three R Libraries Every Data Scientist Should Know (Even if You Use Python)Nov 28, 2021
Powerful R libraries built by the World’s Biggest Tech Companies
An Introduction to Lagrange MultipliersNov 23, 2021
Semi-Supervised Learning — How to Assign Labels with Label Propagation AlgoNov 14, 2021
How does Semi-Supervised Machine Learning work, and how to use it in Python?
A Complete Machine Learning Project From Scratch: Setting UpNov 3, 2021
In this first post in a series on how to build a complete machine learning product from scratch, I describe how to setup your project and tooling.
MedMNIST v2 Dataset | Papers With CodeOct 29, 2021
MedMNIST v2 is a large-scale MNIST-like collection of standardized biomedical images, including 12 datasets for 2D and 6 datasets for 3D. All images are pre-processed into 28 x 28 (2D) or 28 x 28 x 28 (3D) with the corresponding classification labels, so that no background knowledge is required for users. Covering primary data modalities in biomedical images, MedMNIST v2 is designed to perform classification on lightweight 2D and 3D images with various data scales (from 100 to 100,000) and diverse tasks (binary/multi-class, ordinal regression and multi-label). The resulting dataset, consisting of 708,069 2D images and 10,214 3D images in total, could support numerous research / educational purposes in biomedical image analysis, computer vision and machine learning. Description and image from: MedMNIST v2: A Large-Scale Lightweight Benchmark for 2D and 3D Biomedical Image Classification Each subset keeps the same license as that of the source dataset. Please also cite the corresponding paper of source data if you use any subset of MedMNIST.
Applications and Techniques for Fast Machine Learning in ScienceOct 29, 2021
In this community review report, we discuss applications and techniques for fast machine learning (ML) in science -- the concept of integrating power ML methods into the real-time experimental...
A Free And Powerful Labelling Tool Every Data Scientist Should KnowOct 24, 2021
One of the best labelling tools I have ever used.
An Introduction to PyTorch LightningOct 17, 2021
PyTorch Lightning has opened many new possibilities in deep learning and machine learning with a high level interface that makes it quicker to work with PyTorch.
Clustering Made Easy with PyCaretOct 17, 2021
Low-code Machine Learning with a Powerful Python Library
Kernel Methods: A Simple IntroductionOct 15, 2021
The basics of kernel methods and Radial Basis Functions
Streamlit, which helps data scientists build apps, hits version 1.0Oct 12, 2021
Streamlit releases v1.0 of its DataOps platform for data science apps to make it easier for data scientists to share code and components.
Essential Linux Command-Line Tricks for Computer Vision ResearchersOct 7, 2021
In this post, you will learn some cool command line tricks which can help you to speed up your day-to-day R&D.
A friendly introduction to machine learning compilers and optimizersOct 3, 2021
[Twitter thread, Hacker News discussion]
graviraja/MLOps-BasicsOct 1, 2021
Optimal Estimation Algorithms: Kalman and Particle FiltersOct 1, 2021
An introduction to the Kalman and Particle Filters and their applications in fields such as Robotics and Reinforcement Learning.
How to Analyze 100-Dimensional Data with UMAP in Breathtakingly Beautiful WOct 1, 2021
Create breathtaking visuals and “see” your data
Top 38 Python Libraries for Data Science, Data Visualization & Machine LearSep 30, 2021
This article compiles the 38 top Python libraries for data science, data visualization & machine learning, as best determined by KDnuggets staff.
A Practical Introduction to 9 Regression AlgorithmsSep 28, 2021
Hands-on tutorial to effectively use different Regression Algorithms
Carl-McBride-Ellis/Compendium-of-free-ML-reading-resourcesSep 24, 2021
Compendium of free ML reading resources.
[2106.10860v1] Multiplying Matrices Without MultiplyingSep 3, 2021
Multiplying matrices is among the most fundamental and compute-intensive operations in machine learning. Consequently, there has been significant work on efficiently approximating matrix...
Gaussian Belief PropagationSep 1, 2021
Detecting knee- / elbow points in a graphAug 31, 2021
Using “Kneedle” algorithmus detecting knees with Python package “kneed”
Complete guide to understanding Node2Vec algorithmAug 17, 2021
An in-depth guide to understanding node2vec algorithm and its hyper-parameters
The history of Amazon’s forecasting algorithmAug 9, 2021
The story of a decade-plus long journey toward a unified forecasting model.
An Introduction to Statistical LearningAug 5, 2021
Hora | Hora Search EverywhereAug 1, 2021
An introduction to A* pathfinding (tutorial)Jul 26, 2021
This is part 3 of a series on bot programming originally published on the Coder One blog. Part 1:...
How to Add Uncertainty Estimation to your Models with Conformal PredictionJul 26, 2021
Why conformal prediction for uncertainty estimation can improve your predictions
8 Dimensionality Reduction Techniques every Data Scientists should knowJul 25, 2021
Essential guide to various dimensionality reduction techniques in Python
scikit-learn-intelex · PyPIJul 20, 2021
Intel(R) Extension for Scikit-learn is a seamless way to speed up your Scikit-learn application.
Papers with Code - Paper with Code NewsletterJul 20, 2021
Papers With Code highlights trending Machine Learning research and the code to implement it.
Apriori Algorithm for Association Rule Learning — How To Find Clear Links BJul 13, 2021
Explanation and examples of frequent itemset mining and association rule learning over relational databases in Python
Types of Correlation CoefficientsJul 5, 2021
Different Kinds of Correlation Coefficients in a Deeper Look
Hands-on Survival Analysis with PythonJul 4, 2021
What companies can learn from employee turnover data
Building a VAE Playground with StreamlitJul 3, 2021
With Streamlit creating a deploying a web app can be very easy!
Semantic Search: Measuring Meaning From Jaccard to BertJul 3, 2021
Similarity search is one of the fastest-growing domains in AI and machine learning. At its core, it is the process of matching relevant pieces of information together.
Read Excel files with Python. 1000x Faster.Jul 3, 2021
In this article, I’ll show you five ways to load data in Python. Achieving a speedup of 3 orders of magnitude.
Same or Different? The Question Flummoxes Neural Networks. | Quanta MagazineJun 26, 2021
For all their triumphs, AI systems can’t seem to generalize the concepts of “same” and “different.” Without that, researchers worry, the quest to create truly intelligent machines may be hopeless.
Deep ScatterplotsJun 26, 2021
GPBoost: Combining Tree-Boosting with Gaussian Process and Mixed Effects MoJun 25, 2021
Combining tree-boosting with Gaussian process and mixed effects models - fabsig/GPBoost
New Machine Learning Gems for RubyJun 20, 2021
In August, I set out to improve the machine learning ecosystem for Ruby and wasn’t sure where it would go. Over the next 5 months, I ended up...
Learn R through examplesJun 5, 2021
This is a draft of a book for learning data analysis with the R language. This book emphasizes hands activities. Comments and suggestions are welcome.
Complete Guide to Data Augmentation for Computer VisionJun 1, 2021
Data Augmentation is one of the most important topics in Deep Computer Vision. When you train your neural network, you should do data augmentation like… ALWAYS. Otherwise, you are not using your…
Sentiment Analysis — Comparing 3 Common Approaches: Naive Bayes, LSTM, andMay 31, 2021
Sentiment Analysis, or Opinion Mining, is a subfield of NLP (Natural Language Processing) that aims to extract attitudes, appraisals, opinions, and emotions from text. Inspired by the rapid migration…
Interpreting Scattertext: a seductive tool for plotting textMay 30, 2021
Scroll down to see how to interpret a plot created by a great tool for comparing two classes and their corpora.
Metric-Based (Ratings-based) Conjoint AnalysisMay 30, 2021
In marketing analytics, conjoint analysis is a technique used to gain specific insights about consumers’ preferences. Often derived from consumer surveys, conjoint analysis can tell us, for instance…
Introduction to Object Detection Model EvaluationMay 29, 2021
Evaluating object detection models is not straightforward because each image can have many objects and each object can belong to different classes. This means that we need to measure if the model…
https://ruder.io/optimizing-gradient-descent/May 29, 2021
NeurIPS 2021 Announcement: The Billion-Scale Approximate Nearest Neighbor Search ChallengeMay 28, 2021
We are excited to announce that this year’s NeurIPS 2021 Conference will host a first-of-its-kind competition in large scale approximate…
Machine learning and recommender systems using your own Spotify dataMay 24, 2021
Creating Spotify recommendations with data science
A/B/C Tests: How to Analyze Results From Multi-Group ExperimentsMay 18, 2021
Experimentation is widely used at tech startups to make decisions on whether to roll out new product features, UI design changes, marketing campaigns and more, usually with the goal of improving…
Causal ML for Data Science: Deep Learning with Instrumental VariablesMay 18, 2021
Combining data science and econometrics for an introduction to the DeepIV framework, including a full Python code tutorial.
An Introduction to PyTorch LightningMay 18, 2021
Word on the street is that PyTorch lightning is a much better version of normal PyTorch. But what could it possibly have that it brought such consensus in our world? Well, it helps researchers scale…
Combinatorial Optimization: The Knapsack ProblemMay 17, 2021
In this story, we are going to discuss an application of dynamic programming techniques to an optimization algorithm. Through the process of developing an optimal solution, we get to study a variety…
Algorithm-Assisted Inventory CurationMay 15, 2021
Building the raw materials for personalization at scale
How image search works at Dropbox - DropboxMay 12, 2021
12 Jupyter Notebook Extensions That Will Make Your Life EasierMay 12, 2021
Essential extensions that will boost your productivity in Jupyter Notebook.
Artificial Intelligence Develops an Ear for Birdsong - Scientific AmericanMay 7, 2021
Machine-learning algorithms can quickly process thousands of hours of natural soundscapes
Game theory as an engine for large-scale data analysis | DeepMindMay 7, 2021
Modern AI systems approach tasks like recognising objects in images and predicting the 3D structure of proteins as a diligent student would prepare for an exam. By training on many example...
Singular value decomposition - WikipediaMay 7, 2021
In linear algebra, the singular value decomposition (SVD) is a factorization of a real or complex matrix into a rotation, followed by a rescaling followed by another rotation. It generalizes the eigendecomposition of a square normal matrix with an orthonormal eigenbasis to any matrix. It is related to the polar decomposition.
GLMs Part I: A Rigorous Mathematical Formulation | by Andrew Rothman | Apr,May 5, 2021
Intuition for Unifying Theory of GLMs with Derivations in Canonical and Non-Canonical Forms
GLMs Part II: Newton-Raphson, Fisher Scoring, & Iteratively Reweighted LeasMay 5, 2021
Generalized Linear Models (GLMs) play a critical role in fields including Statistics, Data Science, Machine Learning, and other computational sciences. In Part I of this Series, we provided a…
The 5 Feature Selection Algorithms every Data Scientist should knowMay 5, 2021
Bonus: What makes a good footballer great?
Prophet | Forecasting at scale.May 5, 2021
Prophet is a forecasting procedure implemented in R and Python. It is fast and provides completely automated forecasts that can be tuned by hand by data scientists and analysts.
11 Dimensionality reduction techniques you should know in 2021May 5, 2021
Reduce the size of your dataset while keeping as much of the variation as possible
Amazon open-sources library for prediction over large output spacesMay 1, 2021
Framework improves efficiency, accuracy of applications that search for a handful of solutions in a huge space of candidates.
Advanced forecasting using Bayesian diffusion modelingMay 1, 2021
Applications from cancer to covid-19
Nine Emerging Python Libraries You Should Add to Your Data Science Toolkit in 2022May 1, 2021
As Data Science continues to grow and develop, it’s only natural for new tools to emerge, especially considering the fact that data…
Instacart Market Basket Analysis. Winner’s Interview: 2nd place, Kazuki… |May 1, 2021
Winner’s Interview: 2nd place, Kazuki Onodera
Best Practices for Using AI to Develop the Most Accurate Retail ForecastingMay 1, 2021
A leading global retailer has invested heavily in becoming one of the most competitive technology companies around. Accurate and timely demand forecasting for millions of item-by-store combinations is…
Automate Hyperparameter Tuning for Multiple Models with HyperoptsMay 1, 2021
Automate your hyperparameter tuning with Sklearn Pipelines and Hyperopts for multiple models in a single python call. Let's dig into the process...
Deep In Singular Value DecompositionApr 30, 2021
There are often times when working in Data Science where we might come across a feature that is very difficult to interpret by a computer. This is often because the dimensions of the data are much…
nbterm: Jupyter Notebooks in the terminalApr 28, 2021
Jupyter notebooks are mostly known for their web-based user interface, such as JupyterLab or the Classic Notebook. They offer a great user…
Spotify Genre Classification AlgorithmApr 28, 2021
Supervised Machine Learning — SVM, RANDOM FOREST, LOGISTIC REGRESSION
A Summary of Active Learning FrameworksApr 28, 2021
If you are dealing with a classification task, I recommend the modAL. As for the sequence labeling task, the AlpacaTag is the only choice for you. Active learning could decrease the number of labels…
Gentle introduction to 2D Hand Pose Estimation: Approach ExplainedApr 26, 2021
Detailed tutorial on where to find a dataset, how to preprocess data, what model architecture and loss to use, and, finally, how to…
What Really IS a Matrix Determinant?Apr 25, 2021
The geometric intuition behind determinants could change how you think about them.
When and how to use power transform in machine learningApr 22, 2021
Let’s see this powerful tool of data pre-processing
Time Series Forecasting with PyCaret Regression ModuleApr 22, 2021
PyCaret is an alternate low-code library that can be used to replace hundreds of lines of code with few lines only. See how to use PyCaret's Regression Module for Time Series Forecasting.
Zero-Shot Learning: Can you classify an object without seeing it before?Apr 18, 2021
Data Science, Machine Learning, AI & Analytics
Using Gaussian Mixture Models to Transform User-Item Embedding and Generate Better User ClustersApr 18, 2021
Improve clustering of user-item embedding by using GMM to generate new and tighter features
9 Distance Measures in Data ScienceApr 17, 2021
The advantages and pitfalls of common distance measures
How to create custom scikit-learn classification and regression modelsApr 15, 2021
Scikit learn is *the* go to package for standard machine learning models in Python. It not only provides most of the core algorithms that…
DIY XGBoost library in less than 200 lines of pythonApr 13, 2021
XGBoost explained as well as gradient boosting method and HP tuning by building your own gradient boosting library for decision trees.
11 Times Faster Hyperparameter Tuning with HalvingGridSearchApr 12, 2021
Successive halving completely crushes GridSearch and RandomSearch
CPU-based algorithm trains deep neural nets up to 15 times faster than topApr 9, 2021
Rice University computer scientists have demonstrated artificial intelligence (AI) software that runs on commodity processors and trains deep neural networks 15 times faster than platforms based on graphics ...
Deploying a basic Streamlit app to HerokuApr 7, 2021
This article demonstrates the deployment of a basic Streamlit app (that simulates the Central Limit Theorem) to Heroku.
Beginner’s Guide to XGBoost for Classification ProblemsApr 7, 2021
Utilize the hottest ML library for state-of-the-art performance in classification
Deploying a basic Streamlit appApr 4, 2021
This article demonstrates the deployment of a basic Streamlit app (that predicts the Iris’ species) to Streamlit Sharing.
You are underutilizing shap values — feature groups and correlationsApr 4, 2021
Your model is a lens into your data, and shap its telescope
AI Planning using Constraint Satisfaction ProblemsApr 3, 2021
Using Constraint Satisfaction Problems to solve AI Planning Problems.
Principal component regressionApr 3, 2021
In statistics, principal component regression (PCR) is a regression analysis technique that is based on principal component analysis (PCA). More specifically, PCR is used for estimating the unknown regression coefficients in a standard linear regression model.
Quadratic Discriminant AnalysisApr 3, 2021
A deep introduction to Quadratic Discriminant Analysis (QDA) with theory and Python implementation
Evaluating Search AlgorithmsApr 2, 2021
The three-step framework Shopify's Data Science & Engineering team built for evaluating new search algorithms.
130 Machine Learning Projects Solved and ExplainedMar 30, 2021
Machine Learning Projects solved and explained for free
Prediction Intervals for Gradient Boosting RegressionMar 30, 2021
This example shows how quantile regression can be used to create prediction intervals. See Features in Histogram Gradient Boosting Trees for an example showcasing some other features of HistGradien...
Three Model Compression Methods You Need To Know in 2021Mar 30, 2021
Creative techniques to make complex models smaller
5 Things You Should Know About CovarianceMar 28, 2021
When dealing with problems on statistics and machine learning, one of the most frequently encountered terms is covariance. While most of…
A Beginner’s Guide to Image Augmentations in Machine LearningMar 28, 2021
Data Augmentation is one of the most important yet underrated aspects of a machine learning system …
3 Key Pieces of Information About Logistic Regression AlgorithmMar 28, 2021
It is a simple yet very efficient algorithm
4 Machine learning techniques for outlier detection in PythonMar 28, 2021
Machine learning-based outlier detection
UPDATED: Using R and H2O to identify product anomalies during the manufactuMar 26, 2021
Note. This is an update to article: Using R and H2O to identify product anomalies during the manufacturing process.It has some updates but also code optimization from Yana Kane-Esrig( https://www.linkedin.com/in/ykaneesrig/ ), as sh...
Xgboost regression training on CPU and GPU in pythonMar 23, 2021
GPU vs CPU training speed comparison for xgboost
VISSL · A library for state-of-the-art self-supervised learning from imagesMar 22, 2021
A library for state-of-the-art self-supervised learning from images
XGBoost: Extreme Gradient Boosting — How to Improve on Regular Gradient Boosting?Mar 21, 2021
A detailed look at differences between the two algorithms and when you should choose one over the other
4 Easy Steps for Implementing CatBoostMar 21, 2021
an end-to-end tutorial on how to apply an emerging Data Science algorithm
Two outlier detection techniques you should know in 2021Mar 21, 2021
Elliptic Envelope and IQR-based detection
stitchfix/mab: Library for multi-armed bandit selection strategies, including efficient deterministic implementations of Thompson sampling and epsilon-greedy.Mar 20, 2021
Library for multi-armed bandit selection strategies, including efficient deterministic implementations of Thompson sampling and epsilon-greedy. - stitchfix/mab
Gaussian Process Regression From First PrinciplesMar 16, 2021
Gaussian Process Regression is a remarkably powerful class of machine learning algorithms. Here, we introduce them from first principles.
Introduction to hierarchical clustering (Part 3 — Spatial clustering)Mar 12, 2021
Introducing a spatial dimension into hierarchical clustering
A Comprehensive Mathematical Approach to Understand AdaBoostMar 11, 2021
Learn how AdaBoost works from a Math perspective, in a comprehensive and straight-to-the-point manner.
How you can quickly build ML web apps with Streamlit.Mar 10, 2021
The quickest way to embed your models into web apps.
stanfordmlgroup/ngboost: Natural Gradient Boosting for Probabilistic PredictionMar 9, 2021
Natural Gradient Boosting for Probabilistic Prediction - stanfordmlgroup/ngboost
How to use PyCaret — the library for lazy data scientistsMar 6, 2021
Train, visualize, evaluate, interpret, and deploy models with minimal code.
The Algorithms That Make Instacart RollMar 5, 2021
Instacart crunches petabytes daily to predict what will be on grocery shelves and even how long it will take to find parking
State-of-the-Art Image Generation ModelsMar 5, 2021
I have aggregated some of the SotA image generative models released recently, with short summaries, visualizations and comments. The overall development is summarized, and the future trends are spe…
Gradient-Free-Optimizers A collection of modern optimization methods in PytMar 1, 2021
Simple and reliable optimization with local, global, population-based and sequential techniques in numerical discrete search spaces. - SimonBlanke/Gradient-Free-Optimizers
PyCaret — pycaret 2.2.0 documentationFeb 25, 2021
Home - PyCaretFeb 25, 2021
[et_pb_section fb_built=”1″ admin_label=”Header” _builder_version=”4.12.0″ background_color=”#01012C” collapsed=”on” global_colors_info=”{}”][et_pb_row column_structure=”1_2,1_2″ _builder_version=”4.12.0″ collapsed=”on” global_colors_info=”{}”][et_pb_column type=”1_2″ _builder_version=”4.12.0″ z_index=”10″ custom_padding=”18%||||false|false” global_colors_info=”{}”][et_pb_text _builder_version=”4.14.7″ text_font=”Montserrat|800|||||||” text_text_color=”#01012C” text_font_size=”470px” text_line_height=”1em” positioning=”absolute” custom_margin=”|-30%||-10%|false|false” custom_margin_tablet=”|0%||-5%|false|false” custom_margin_phone=”|0%|||false|false” custom_margin_last_edited=”on|desktop” text_font_size_tablet=”40vw” text_font_size_phone=”40vw” text_font_size_last_edited=”on|tablet” text_text_shadow_style=”preset5″ text_text_shadow_horizontal_length=”-1.5px” text_text_shadow_vertical_length=”-1.5px” text_text_shadow_color=”#DB0EB7″ global_colors_info=”{}”] pc [/et_pb_text][et_pb_text _builder_version=”4.14.7″ header_font=”Barlow Condensed|500|||||||” header_text_color=”#FFFFFF” header_font_size=”122px” custom_margin=”||0px||false|false” header_font_size_tablet=”42px” header_font_size_phone=”26px” header_font_size_last_edited=”on|tablet” global_colors_info=”{}”] low-code machine learning [/et_pb_text][et_pb_button button_url=”https://pycaret.gitbook.io” url_new_window=”on” button_text=”GET STARTED” _builder_version=”4.14.7″ […]
A Complete Guide To Survival Analysis In Python, part 3 - KDnuggetsFeb 24, 2021
Concluding this three-part series covering a step-by-step review of statistical survival analysis, we look at a detailed example implementing the Kaplan-Meier fitter based on different groups, a Log-Rank test, and Cox Regression, all with examples and shared code.
www-eio.upc.edu/~pau/cms/rdata/datasets.htmlFeb 23, 2021
An overview of synthetic data types and generation methodsFeb 22, 2021
Synthetic data can be used to test new products and services, validate models, or test performances because it mimics the statistical property of production data. Today you'll find different types of structured and unstructured synthetic data.
Affinity Analysis (Market Basket Analysis)Feb 20, 2021
Have you ever wondered how often do you buy certain items together? Why do you buy some items together? How likely do you purchase an item…
Categorical cross-entropy and SoftMax regressionFeb 19, 2021
Ever wondered how to implement a simple baseline model for multi-class problems ? Here is one example (code included).
Error Backpropagation Learning AlgorithmFeb 11, 2021
The error backpropagation learning algorithm is a supervised learning technique for neural networks that calculates the gradient of descent for weighting different variables.
Why you should always use feature embeddings with structured datasetsFeb 11, 2021
A simple technique for boosting accuracy on ANY model you use
Data Science & AI Glossary | DeepAIFeb 11, 2021
The data science and artificial intelligence terms you need while reading the latest research
Generative Graph Models with NetworkXFeb 10, 2021
A comprehensive guide on standard generative graph approaches with implementation in NetworkX
Hacker NewsFeb 4, 2021
Computer Science, Machine Learning, Programming, Art, Mathematics, Philosophy, and Short Fiction
Hacker NewsFeb 4, 2021
Data labeling is often the biggest bottleneck in machine learning. Active learning lets you train machine learning models with much less labeled data. The best AI-driven companies, like Tesla, use active learning.
The Ultimate Scikit-Learn Machine Learning Cheatsheet - KDnuggetsJan 28, 2021
With the power and popularity of the scikit-learn for machine learning in Python, this library is a foundation to any practitioner's toolset. Preview its core methods with this review of predictive modelling, clustering, dimensionality reduction, feature importance, and data transformation.
Image Processing with Python — Blob Detection using Scikit-ImageJan 28, 2021
How to identify and segregate specific blobs in your image
Decades-Old Graph Problem Yields to Amateur MathematicianJan 27, 2021
By making the first progress on the “chromatic number of the plane” problem in over 60 years, an anti-aging pundit has achieved mathematical immortality.
SVM Classifier and RBF Kernel — How to Make Better Models in PythonJan 19, 2021
A complete explanation of the inner workings of Support Vector Machines (SVM) and Radial Basis Function (RBF) kernel
Using strip charts to visualize dozens of time series at onceJan 19, 2021
Strip charts are extremely useful to make heads or tails from dozens (and up to several hundred) of time series over very long periods of…
Link Prediction and Information Theory: A TutorialJan 17, 2021
Using Mutual Information to measure the likelihood of candidate links in a graph.
Forget coding, you can now solve your AI problems with ExcelJan 16, 2021
Microsoft Excel is a powerful tool for learning the basics of data science and machine learning.
Algorithms for Decision Making | Hacker NewsJan 13, 2021
Model Compression: A Look into Reducing Model SizeJan 10, 2021
Why is Model Compression important? A significant problem in the arms race to produce more accurate models is complexity, which leads to…
New Features of Scikit-Learn. An Overview of the Most Important… | by AnkitJan 8, 2021
An Overview of the Most Important Features in Version 0.24
Comparing Binary, Gray, and One-Hot EncodingJan 7, 2021
This article shows a comparison of the implementations that result from using binary, Gray, and one-hot encodings to implement state machines in an FPGA. These encodings are often evaluated and applied by the synthesis and implementation tools, so it’s important to know why the software makes these decisions.
Meet whale! ? The stupidly simple data discovery tool. | by Robert Yi | DatJan 2, 2021
And why your data science team needs it.
How to Automate Tasks on GitHub With Machine Learning for Fun and Profit |Jan 2, 2021
A tutorial on how to build a GitHub App that predicts and applies issue labels using Tensorflow and public datasets.
10 Stochastic Gradient Descent Optimisation Algorithms Cheat Sheet | by RJan 2, 2021
Stochastic gradient descent optimisation algorithms you should know for deep learning
Benchmark functions | BenchmarkFcnsJan 1, 2021
This website is for sale! benchmarkfcns.xyz is your first and best source for all of the information you’re looking for. From general topics to more of what you would expect to find here, benchmarkfcns.xyz has it all. We hope you find what you are searching for!
8 New Tools I Learned as a Data Scientist in 2020 | by Ben Weber | Dec, 202Dec 30, 2020
Making the move from Docker to Live Deployments
Practical Graph Theory in RubyDec 26, 2020
This is the next installment in the "Practical Computer Science" series, where you will learn how to apply classic computer science concepts to solve real problems using Ruby. Today we are going to talk about Graph
BFGS in a Nutshell: An Introduction to Quasi-Newton MethodsDec 23, 2020
Demystifying the inner workings of BFGS optimization
Lagrange multipliers with visualizations and code | by Rohit Pandey | TowarDec 23, 2020
In this story, we’re going to take an aerial tour of optimization with Lagrange multipliers. When do we need them? Whenever we have an…
Beyond One-Hot. 17 Ways of Transforming Categorical Features Into Numeric FDec 22, 2020
All the encodings that are worth knowing — from OrdinalEncoder to CatBoostEncoder — explained and coded from scratch in Python
Computer Vision | Papers With CodeDec 21, 2020
**Zero-shot learning (ZSL)** is a model's ability to detect classes never seen during training. The condition is that the classes are not known during supervised learning. Earlier work in zero-shot learning use attributes in a two-step approach to infer unknown classes. In the computer vision context, more recent advances learn mappings from image feature space to semantic space. Other approaches learn non-linear multimodal embeddings. In the modern NLP context, language models can be evaluated on downstream tasks without fine tuning. Benchmark datasets for zero-shot learning include [aPY](/dataset/apy), [AwA](/dataset/awa2-1), and [CUB](/dataset/cub-200-2011), among others. ( Image credit: [Prototypical Networks for Few shot Learning in PyTorch ](https://github.com/orobix/Prototypical-Networks-for-Few-shot-Learning-PyTorch) ) Further readings: - [Zero-Shot Learning -- A Comprehensive Evaluation of the Good, the Bad and the Ugly](https://paperswithcode.com/paper/zero-shot-learning-a-comprehensive-evaluation) - [Zero-Shot Learning in Modern NLP](https://joeddav.github.io/blog/2020/05/29/ZSL.html) - [Zero-Shot Learning for Text Classification](https://amitness.com/2020/05/zero-shot-text-classification/)
Computer Vision | Papers With CodeDec 21, 2020
**Few-Shot Learning** is an example of meta-learning, where a learner is trained on several related tasks, during the meta-training phase, so that it can generalize well to unseen (but related) tasks with just few examples, during the meta-testing phase. An effective approach to the Few-Shot Learning problem is to learn a common representation for various tasks and train task specific classifiers on top of this representation. Source: [Penalty Method for Inversion-Free Deep Bilevel Optimization ](https://arxiv.org/abs/1911.03432)
The Sensitivity Analysis: A Powerful Yet Underused Tool for Data ScientistsDec 18, 2020
Quantifying the effects of varying different inputs, applied on a gemstone dataset with over 50K round-cut diamonds
How to Deploy your Custom ML Model with Streamlit and HerokuDec 18, 2020
A Step-by-Step Guide to Host your Models!
Project Lighthouse — Part 1: P-sensitive k-anonymityDec 18, 2020
Part one of a series on how we will measure discrepancies in Airbnb guest acceptance rates using anonymized perceived demographic data.
Sensitivity, Specificity and Meaningful ClassifiersDec 18, 2020
The sometimes confusing concepts involved in interpreting coronavirus testing
Log-Normal DistributionDec 18, 2020
A Log-Normal Distribution is a continuous probability distribution of a random variable whose logarithm is normally distributed.
Matching of Bipartite Graphs using NetworkXDec 18, 2020
A simple introduction to matching in bipartite graphs with Python code examples
AI system for high precision recognition of hand gesturesDec 10, 2020
Scientists have developed an Artificial Intelligence (AI) system that recognises hand gestures by combining skin-like electronics with computer vision.
Getting Started with Random Matrices: A Step-by-Step GuideNov 30, 2020
In the Deep Learning (DL) age, more and more people have encountered and used (knowingly or not) random matrices. Most of the time this…
10 Graph Algorithms Visually ExplainedNov 29, 2020
A quick introduction to 10 basic graph algorithms with examples and visualisations
Peregrine: A Pattern-Aware Graph Mining SystemNov 24, 2020
Peregrine: A Pattern-Aware Graph Mining System.
5 Categorical Encoding Tricks you need to know today as a data scientistNov 19, 2020
A Complete Pythonic Encoding Tutorial
Speech Recognition with Python. Learn which of the 9 most prominent… | by SNov 19, 2020
Learn which of the 9 most prominent automatic speech recognition engines is best for your needs, and how to use it in Python programs.
A radical new technique lets AI learn with practically no dataNov 17, 2020
“Less than one”-shot learning can teach a model to identify more objects than the number of examples it is trained on.
How to Choose a Feature Selection Method For Machine Learning - MachineLearningMastery.comNov 9, 2020
Feature selection is the process of reducing the number of input variables when developing a predictive model. It is desirable to reduce the number of input variables to both reduce the computational cost of modeling and, in some cases, to improve the performance of the model. Statistical-based feature selection methods involve evaluating the relationship between each input variable and the…
MLWhiz: Helping You Learn Data Science!Nov 9, 2020
In this post, I am going to be talking about some of the most important graph algorithms you should know and how to implement them using Python.
A review of consensus protocolsNov 5, 2020
Algorithms for Collision DetectionNov 5, 2020
An online book about collision detection using Processing.
Cataloging Tools for Data TeamsNov 3, 2020
An introduction to Data Cataloging and major tools that data teams can use for data discovery
Complete Guide to Adam OptimizationNov 3, 2020
The Adam optimization algorithm from definition to implementation
63 Machine Learning Algorithms — Introduction | by Priyanshu Jain | The StaNov 3, 2020
In this article I covered 63 Algorithms of Machine Learning in easy to understand manner for business professionals.
Improving complementary-product recommendationsNov 3, 2020
New modeling approach increases accuracy of recommendations by an average of 7%.
Make kNN 300 times faster than Scikit-learn’s in 20 lines!Nov 3, 2020
Using Facebook faiss library for REALLY fast kNN
5 SMOTE Techniques for Oversampling your Imbalance DataNov 3, 2020
Know your SMOTE ways to oversampled your data
What is Perspective Warping ? | OpenCV and PythonNov 3, 2020
A step-by-step guide to apply perspective transformation on images
Helping robots avoid collisionsNov 3, 2020
The startup Realtime Robotics, co-founded by former MIT postdoc George Konidaris, is helping robots solve the motion planning problem by giving them collision avoidance capabilities.
Leveraging Value from Postal Codes, NAICS Codes, Area Codes and Other FunkyNov 3, 2020
A value is worthless unless it tells you something.
Floating-Point Formats and Deep LearningNov 3, 2020
Floating-point formats are not the most glamorous or (frankly) the important consideration when working with deep learning models: if your model isn’t working well, then your floating-point format certainly isn’t going to save you! However, past a certain point of model complexity/model size/training time, your choice of floating-point format can have a significant impact on your model training times and even performance. Here’s how the rest of this post is structured:
Writing a Production-Level Machine Learning Framework: Lessons LearnedNov 3, 2020
Some of our insights from developing a PyTorch framework for training and running deep learning models …
Causal Inference Book | Miguel Hernan | Harvard T.H. Chan School of PublicNov 3, 2020
Jamie Robins and I have written a book that provides a cohesive presentation of concepts of, and methods for, causal inference. Much of this material is currently scattered across journals in sever…
Vectorizing code mattersNov 3, 2020
I come from the world of MATLAB and numerical computing, where for loops are shorn and vectors are king. During my PhD at UVM, Professor…
A Gentle Introduction to Information Entropy - MachineLearningMastery.comNov 3, 2020
Information theory is a subfield of mathematics concerned with transmitting data across a noisy channel. A cornerstone of information theory is the idea of quantifying how much information there is in a message. More generally, this can be used to quantify the information in an event and a random variable, called entropy, and is calculated using probability. Calculating information and…
How to Calculate the KL Divergence for Machine Learning - MachineLearningMastery.comNov 3, 2020
It is often desirable to quantify the difference between probability distributions for a given random variable. This occurs frequently in machine learning, when we may be interested in calculating the difference between an actual and observed probability distribution. This can be achieved using techniques from information theory, such as the Kullback-Leibler Divergence (KL divergence), or relative entropy, and the Jensen-Shannon…
Kullback–Leibler divergenceNov 3, 2020
In mathematical statistics, the Kullback–Leibler (KL) divergence (also called relative entropy and I-divergence[1]), denoted
D
KL
(
P
∥
Q
)
{\displaystyle D_{\text{KL}}(P\parallel Q)}
, is a type of statistical distance: a measure of how one reference probability distribution P is different from a second probability distribution Q.[2][3] Mathematically, it is defined as
Latent Dirichlet Allocation: Intuition, math, implementation and visualisatNov 3, 2020
A tour of one of the most popular topic modelling techniques and a guide to implementing and visualising it using pyLDAvis
XGBoost, LightGBM, and Other Kaggle Competition FavoritesNov 3, 2020
An Intuitive Explanation and Exploration
10 Hyperparameter optimization frameworks.Nov 3, 2020
Tune your Machine Learning models with open-source optimization libraries
Part 7: Fast Pattern Searching with STUMPYNov 3, 2020
Finding Similar Subsequences for Known Patterns
Anomaly Detection using Benford’s LawNov 3, 2020
Locating fraudulent transactions with simple theory.
How to peek inside a black box model — Understand Partial Dependence PlotsNov 2, 2020
In this post, we will be learning a tool to reveal the working mechanism of a black box model. But before we start, let talk about…
The Hundred-Page Machine Learning Book by Andriy BurkovNov 2, 2020
This is companion wiki of The Hundred-Page Machine Learning Book by Andriy Burkov. The book that aims at teaching machine learning in a concise yet systematic manner.
Why Does No One Use Advanced Hyperparameter Tuning? | by Liam Li | Oct, 202Nov 2, 2020
Takeaways from our experience building state-of-the-art hyperparameter tuning in Determined AI’s integrated deep learning training…
Tutorial: Uncertainty estimation with CatBoostNov 2, 2020
Understanding why your model is uncertain and how to estimate the level of uncertainty
Histogram MatchingNov 2, 2020
How to generate a histogram for an image, how to equalize the histogram, and finally how to modify your image histogram to be similar to…
Hidden Markov Model (HMM) — simple explanation in high levelNov 2, 2020
HMM is very powerful statistical modeling tool used in speech recognition, handwriting recognition and etc. I wanted to use them, but when…
Silhouette Method — Better than Elbow Method to find Optimal ClustersNov 2, 2020
Deep dive analysis of Silhouette Method to find optimal clusters in k-Means clustering
Handling Outliers in Clusters using Silhouette AnalysisNov 2, 2020
Identify and remove outliers in each clusters from K-Means clustering
Machine Learning Enabled High-Sigma Verification Of Memory DesignsOct 20, 2020
Variation-aware memory verification with brute force Monte Carlo accuracy in much less time.
Seven Must-Know Statistical Distributions and Their Simulations for Data ScOct 16, 2020
Assumptions, relationships, simulations, and so on
DBSCAN — a density-based unsupervised algorithm for fraud detectionOct 10, 2020
Bite-sized data science on fraud detection
AI 101: Intro to Evolutionary AlgorithmsAug 11, 2020
Polynomial Regression: The Only Introduction You’ll NeedAug 11, 2020
A deep-dive into the theory and application behind this Machine Learning algorithm in Python, by a student
A Novel Approach to Feature Importance — Shapley Additive ExplanationsAug 10, 2020
The state-of-the-art in feature importance
Entropy, Cross-Entropy, and KL-Divergence Explained!Jul 5, 2020
Let us try to understand the most widely used loss function — Cross-Entropy.
Part 5: Fast Approximate Matrix Profiles with STUMPYJul 5, 2020
Roughly Accurate Matrix Profiles Computed in a Fraction of the Time
The Jewel of the Matrix: A Deep Dive Into Eigenvalues & EigenvectorsJun 24, 2020
An intuitive look at the abstract concept
The Singular Value Decomposition without AlgebraJun 24, 2020
Understand the Ultimate Linear Algebra concept with Geometry
Solving a Chicken and Egg Problem: Expectation-Maximization (EM)Jun 24, 2020
The Intuition Behind the Popular Expectation-Maximization Algorithm with Example Code
How Sklearn’s “TF-IDF” is different from the standard “TF-IDF”?Jun 24, 2020
Let ‘s go see the differences and analyze step by step the approach which is taken to compute the Sklearn’s TF-IDF
Variational Gaussian Process — What To Do When Things Are Not GaussianJun 24, 2020
Learn to use non-Gaussian distributions in Gaussian Process models, and variational inference with Gaussian quadrature to compute…
A Visual Explanation of Gradient Descent Methods (Momentum, AdaGrad, RMSProJun 24, 2020
Why can AdaGrad escape saddle point? Why is Adam usually better? In a race down different terrains, which will win?
Dimensionality Reduction in Hyperspectral Images using PythonJun 24, 2020
Dimensionality Reduction Techniques for Hyperspectral Images.
Multiclass Classification with Support Vector Machines (SVM), Kernel TrickJun 24, 2020
Understanding the mathematic behind SVM + Implementation in Python via scikit-learn
Ten Eisen features that changed the way I do deep learningJun 3, 2020
How a simple `pip install eisen` will save days of work and solve (almost) all of your problems.
5 Fabulous Python Packages For Data-Science Nobody Knows AboutJun 2, 2020
Do you know about these packages?
Visualizing Geospatial Data in PythonJun 2, 2020
Open source tools and techniques for visualizing data on custom maps
External Redirection | LinkedInJun 1, 2020
Eigenfaces — Face Classification in PythonJun 1, 2020
Not enough data for Deep Learning? Try Eigenfaces.
Federated Learning using PyTorch and PySyft | LearnOpenCVJun 1, 2020
A gentle introduction to federated learning using PyTorch and PySyft with the help of a real life example.
A Product Manager’s Guide to Machine Learning: Cloud Machine LearningJun 1, 2020
Why obtaining the Amazon Web Services Machine Learning — Specialty (“AWS ML”) certification is one of the best starting points to gaining…
Contrasting contrastive loss functionsJun 1, 2020
A comprehensive guide to four contrastive loss functions for contrastive learning
An Introduction to Optical Character Recognition for BeginnersJun 1, 2020
Your first step towards reading text from unstructured data
Graph Theory | BFS Shortest Path Problem on a GridJun 1, 2020
Hi all, welcome back to another post of my brand new series on Graph Theory named Graph Theory: Go Hero. I undoubtedly recommend the…
Using K-Means to detect changes in a retail store | Towards Data ScienceJun 1, 2020
Unsupervised techniques to identify changes in the behavior
Factor Analysis — A Complete TutorialJun 1, 2020
Covering Eigenvalues, Factor Creation and Cronbach’s Alpha
Five Cool Python Libraries for Data Science - KDnuggetsJun 1, 2020
Check out these 5 cool Python libraries that the author has come across during an NLP project, and which have made their life easier.
Insurance Risk Pricing — Tweedie Approach - Towards Data ScienceJun 1, 2020
An illustrative guide to estimate the pure premium using Tweedie models in GLMs and Machine Learning
Dot Product in Linear Algebra for Data Science using PythonJun 1, 2020
Building up the intuition for how matrices help to solve a system of linear equations and thus regressions problems
Isolation Forest from ScratchJun 1, 2020
Implementation of Isolation forest from scratch for further understanding of the algorithm
The Power-Law DistributionJun 1, 2020
Recursive Feature Elimination (RFE) for Feature Selection in PythonJun 1, 2020
Recursive Feature Elimination, or RFE for short, is a popular feature selection algorithm. RFE is popular because it is easy to configure and use and because it is effective at selecting those features (columns) in a training dataset that are more or most relevant in predicting the target variable. There are two important configuration options when using RFE: the choice…
A Simplified approach using PyCaret for Anomaly DetectionJun 1, 2020
Explaining outlier detection with PyCaret library in python
What is isotonic regression?Jun 1, 2020
Isotonic regression is a method for obtaining a monotonic fit for 1-dimensional data. Let’s say we have data such that . (We assume no ties among the ‘s for simplicity.) Informally, isotonic regression looks for such that the ‘s approximate … Continue reading →
Text Mining with R: Gathering and Cleaning DataJun 1, 2020
Case study of tweets from comments on Indonesia’s biggest media
Deploy Machine Learning Applications using ChefJun 1, 2020
Overview of deploying a model with the Chef — A Configuration Management Tool
How to Use Polynomial Feature Transforms for Machine LearningJun 1, 2020
Often, the input features for a predictive modeling task interact in unexpected and often nonlinear ways. These interactions can be identified and modeled by a learning algorithm. Another approach is to engineer new features that expose these interactions and see if they improve model performance. Additionally, transforms like raising input variables to a power can help to better expose the…
Speeding training of decision treesJun 1, 2020
New method reduces training time by up to 99%, with no loss in accuracy.
Hierarchical Clustering: An Application to World CurrenciesMay 20, 2020
Do Asian currencies move in tandem? What about emerging markets in general? Are commodity currencies like AUD and CAD closely related as…
The Illustrated Guide To Classification Metrics: The BasicsMay 20, 2020
An overview of the fundamentals behind measuring and comparing machine learning solutions
Categorical Feature Encoding in PythonMay 19, 2020
Methods to encode categorical variables using Python
Understanding Associative EmbeddingMay 19, 2020
An elegant method to group predictions without labeling
Amazon’s AI tool can plan collision-free paths for 1,000 warehouse robotsMay 19, 2020
Amazon researchers describe a machine learning system that plans the movements and paths of up to 1,000 mobile warehouse robots.
firmai/datagene: DataGene - Identify How Similar Datasets Are to One AnotheMay 19, 2020
DataGene - Identify How Similar TS Datasets Are to One Another (by @firmai) - firmai/datagene
Time Series Analysis: Creating Synthetic DatasetsMay 17, 2020
How to create time series datasets with different patterns
Complete guide to machine learning and deep learning in retailMay 16, 2020
The stores aren’t dead yet
A picture is worth 1,000 false-positive bug reportsMay 16, 2020
How and why we built a custom app for visual debugging of warehouse pick paths.
Open sourcing the AI Model Efficiency ToolkitMay 15, 2020
Qualcomm open sources the AI Model Efficiency Toolkit on GitHub, providing a simple library plugin for AI developers.
Latent Semantic Analysis: intuition, math, implementationMay 15, 2020
TL;DR — Text data suffers heavily from high-dimensionality. Latent Semantic Analysis (LSA) is a popular, dimensionality-reduction…
Spatial Autocorrelation: Close Objects Affecting Other Close ObjectsMay 15, 2020
Deep dive into spatial autocorrelation and their industry use cases
An Intro to Graph Theory, Centrality Measurements, and NetworkXMay 15, 2020
Graph Theory is the study of graphs which are mathematical structures used to model pairwise relations between objects. These graphs are…
mlmachine - Clean ML Experiments, Elegant EDA & Pandas PipelinesMay 15, 2020
This new Python package accelerates notebook-based machine learning experimentation
An Intuitive Explanation of Kernels in Support Vector Machine (SVM)May 15, 2020
We will walk through a simple example with basic arithmetics to demystify the concept of kernel.
Generative vs Discriminative Probabilistic Graphical ModelsMay 15, 2020
A Comparison of Naive Bayes and Logistic Regression
Using Q-Learning in Numpy to teach an agent to play a gameMay 15, 2020
Using q-learning for sequential decision making and therefore learning to play a simple game.
7 advanced tricks in pandas for data scienceMay 15, 2020
Pandas is the go-to library for data science. These are the shortcuts I use to do repetitive data science tasks faster and simpler.
5 Great New Features in Latest Scikit-learn Release - KDnuggetsMay 15, 2020
From not sweating missing values, to determining feature importance for any estimator, to support for stacking, and a new plotting API, here are 5 new features of the latest release of Scikit-learn which deserve your attention.
Modeling in Seconds: Using PyCaret as a Tool for Data Science Fast DecisionMay 15, 2020
I came across Pycaret while I was browsing on a slack for data scientists. It's a versatile library in which you can apply/evaluate/tune…
Cross Entropy, Log-Loss And Intuition Behind ItMay 15, 2020
In this blog, you will get an intuition behind the use of cross-entropy and log-loss in machine learning.
How to Deploy your Machine Learning Models on KubernetesMay 15, 2020
Deploy, scale and manage your machine learning services with Kubernetes and Terraform on GCP.
SVM and Kernel SVMMay 15, 2020
Learn about SVM or Support Vector Machine, Kernel Trick, Hyperplanes, Lagrange Multipliers using visual examples and code sections.
PyTorch BentoML Heroku: The simple stackMay 15, 2020
and how to train and deploy an ML model into production with them.
Handling imbalanced dataset in supervised learning using family of SMOTE algorithm. - DataScienceCentral.comMay 15, 2020
Consider a problem where you are working on a machine learning classification problem. You get an accuracy of 98% and you are very happy. But that happiness doesn’t last long when you look at the confusion matrix and realize that majority class is 98% of the total data and all examples are classified as majority… Read More »Handling imbalanced dataset in supervised learning using family of SMOTE algorithm.
Feature Engineering: Data scientist's Secret Sauce ! - DataScienceCentral.comMay 15, 2020
originally posted by the author on Linkedin : Link It is very tempting for data science practitioners to opt for the best known algorithms for a given problem.However It’s not the algorithm alone , which can provide the best solution ; Model built on carefully engineered and selected features can provide far better results. “Any intelligent… Read More »Feature Engineering: Data scientist's Secret Sauce !
Netflix Data Science Interview Practice ProblemsMay 15, 2020
A walkthrough of some of Netflix’s interview questions!
Detecting Weird Data: Conformal Anomaly DetectionMay 14, 2020
Weird data is important. Often in data science, the goal is to discover trends in the data. However, consider doctors looking at images of…
30 Data Science Interview Questions from FAANG Tech GiantsMay 14, 2020
In-depth Interview Q&A from Facebook, Amazon, Apple, Netflix, and Google
Machine Learning in Industrial Chemicals: Process Quality OptimizationMay 14, 2020
This post is the last in our series of 5 blog posts highlighting use case presentations from the 2nd Edition of Seville Machine Learning School (MLSEV). You may also check out the previous posts ab…
A brief introduction to the beauty of Information TheoryMay 10, 2020
Lambdaclass's blog about distributed systems, machine learning, compilers, operating systems, security and cryptography.
A Deep Dive into Lane Detection with Hough TransformMay 6, 2020
A detailed step-by-step guide to build a Lane Line Detection algorithm in OpenCV.
Stochastic-, Batch-, and Mini-Batch Gradient Descent DemystifiedApr 27, 2020
Why do we need Stochastic, Batch, and Mini Batch Gradient Descent when implementing Deep Neural Networks?
Gaussian Mixture Models(GMM)Apr 26, 2020
Understanding GMM: Idea, Maths, EM algorithm & python implementation
Stacked Auto-encoder as a Recommendation System for Movie Rating PredictionApr 24, 2020
Introduction on Stacked Auto-encoder and Technical Walk-through on Model Creation using Pytorch
RecSys Series Part 5: Neural Matrix Factorization for Collaborative FilteriApr 24, 2020
Bringing Neural Architecture into Recommendations
1. Getting started — csvkit 1.0.5 documentationApr 23, 2020
5 Machine Learning Techniques for Sales ForecastingApr 22, 2020
Comparing Linear Regression, Random Forest Regression, XGBoost, LSTMs, and ARIMA Time Series Forecasting
Deep Dive into Polynomial Regression and Overfitting - DataScienceCentral.comApr 21, 2020
In this article, we show that the issue with polynomial regression is not over-fitting, but numerical precision. Even if done right, numerical precision still remains an insurmountable challenge. We focus here on step-wise polynomial regression, which is supposed to be more stable than the traditional model. In step-wise regression, we estimate one coefficient at a… Read More »Deep Dive into Polynomial Regression and Overfitting
Optimization Techniques — Simulated AnnealingApr 21, 2020
A popular method for optimizing model parameters
So why the heck are they called Support Vector Machines?Apr 21, 2020
In this piece, I attempt to explain the mathematical reasoning behind this ‘complex’ name.
Visualizing Three-Dimensional Data — Heatmaps, Contours, and 3D Plots withApr 19, 2020
Plotting heatmaps, contour plots, and 3D plots with Python
tf.data: Creating data input pipelinesApr 19, 2020
Are you not able to load your NumPy data into memory? Does your model have to wait for data to be loaded after each epoch? Is your Keras…
A Complete Beginners Guide to Matrix Multiplication for Data Science with PApr 19, 2020
Learn matrix multiplication for machine learning by following along with Python examples
Partial Correlation Vs. Conditional Mutual InformationApr 19, 2020
Finding relationships between different variables/ features in a dataset during a data analysis task is one of the key and fundemental…
Build PyTorch Models Easily Using torchlayersApr 15, 2020
torchlayers aims to do what Keras did for TensorFlow, providing a higher-level model-building API and some handy defaults and add-ons useful for crafting PyTorch neural networks.
Pandas tips I wish I knew beforeApr 15, 2020
How does pivot work? What is the main pandas building block? And more …
Co-variance: An intuitive explanation!Apr 15, 2020
A comprehensive but simple guide which focus more on the idea behind the formula rather than the math itself — start building the block…
Matthews Correlation Coefficient: when to use it and when to avoid itApr 15, 2020
It’s not a silver bullet metric to classification problems
t-SNE clearly explainedApr 15, 2020
An intuitive explanation of t-SNE algorithm and why it’s so useful in practice.
Visualizing Gaussian EliminationApr 1, 2020
The determinant is related to the volume of a parallelepiped spanned by the vectors in a matrix lets see how.
Comprehensive Guide on Item Based Recommendation SystemsApr 1, 2020
This guide will show in detail how item based recommendation system works and how to implement it in real work environment.
Matrix Factorization as a Recommender SystemApr 1, 2020
An Explanation and Implementation of Matrix Factorization
Machine Learning Benchmarking: You’re Doing It WrongApr 1, 2020
I’m not going to bury the lede: Most machine learning benchmarks are bad. And not just kinda-sorta nit-picky bad, but catastrophically and fundamentally flawed. TL;DR: Please, for the love of sta…
Lesser-known pandas tricks (2019)Apr 1, 2020
5 lesser-known pandas tricks that help you be more productive
How to Use DBSCAN EffectivelyApr 1, 2020
A complete guide on using the most cited clustering algorithm effectively
[P] PyCM 2.6 released : Multi-class confusion matrix library in PythonApr 1, 2020
https://github.com/sepandhaghighi/pycm https://www.pycm.ir custom_rounder function added #279 complement function added sparse_matrix attribute added…
Learn how to read data into a Pandas DataFrame in 5 minutesApr 1, 2020
Extract data from different sources
Boosting Showdown: Scikit-Learn vs XGBoost vs LightGBM vs CatBoost in SentiApr 1, 2020
Which boosting algorithm will reign supreme in this head-to-head competition?
Decision Trees for Classification: ID3 Algorithm ExplainedApr 1, 2020
This article explains the ID3 Algorithm, in details with calculations, which is one of the many Algorithms used to build Decision Trees.
Optimization — Descent AlgorithmsApr 1, 2020
In this post, we will see several basic optimisation algorithms that you can use in various data science problems.
Hyperparameter Tuning with Python: Complete Step-by-Step GuideMar 31, 2020
Why and How to use with examples of Keras/XGBoost
How to Share your Jupyter Notebook in 3 Lines of Code with NgrokMar 31, 2020
Imagine having your Friends Working with your Local Jupyter Notebook in a Remote Machine
A Friendly Introduction to Text ClusteringMar 30, 2020
All you need to know about k-means, brown clustering, tf-idf, topic models and LDA.
Local Links Run The WorldMar 29, 2020
Networks regulate everything from ant colonies and middle schools to epidemics and the internet. Here’s how they work.
Retail Analytics: A Novel and Intuitive way of finding Substitutes and CompMar 18, 2020
Retail Analytics: Data Science for Retail
Hyper-Parameter Optimization: A Review of Algorithms and ApplicationsMar 16, 2020
Since deep neural networks were developed, they have made huge contributions to everyday lives. Machine learning provides more rational advice than humans are capable of in almost every aspect of...
A One-Stop Shop for Principal Component Analysis - Towards Data ScienceMar 11, 2020
At the beginning of the textbook I used for my graduate stat theory class, the authors (George Casella and Roger Berger) explained in the…
Beyond A/B Testing: Primer on Causal InferenceMar 9, 2020
Making the most out of your experiments and observational data
Semi-Supervised Classification of Unlabeled Data (PU Learning)Mar 9, 2020
How to classify unlabeled data when all you have is just a sample of positive data
Implementing XGBoost from scratchMar 9, 2020
A step by step guide for implementing one of the most trending machine learning algorithm using numpy
The Most Useful ML Tools 2020Mar 9, 2020
5 sets of tools every lazy full-stack data scientist should use
How to use Residual Plots for regression model validation?Mar 9, 2020
Using residual plots to validate your regression models
An Introduction to Support Vector Regression (SVR)Mar 9, 2020
Using Support Vector Machines (SVMs) for Regression
Building an Incremental Recommender System: Part IIMar 9, 2020
Going above and beyond state-of-the-art with confidence!
[P] pytorch-optimizer -- collections of ready to use optimization algorithmMar 9, 2020
249 votes, 21 comments. pytorch-optimizer -- collections of ready to use optimization algorithms for PyTorch, includes: AccSGD, AdaBound, AdaMod…
Self Supervised Depth Estimation: Breaking down the ideasMar 9, 2020
Learning depth without manual annotation
The Curious Case of Kalman FiltersMar 9, 2020
Convex Hull: An Innovative Approach to Gift-Wrap your DataMar 9, 2020
How to Leverage Data Visualization with Wrapping Algorithm
Exploring the fundamentals of multi-armed banditsMar 9, 2020
Multi-armed bandits are a simple but very powerful framework for algorithms that make decisions over time under uncertainty. “Introduction to Multi-Armed Bandits” by Alex Slivkins provides an accessible, textbook-like treatment of the subject.
An introduction to time series forecasting Mar 9, 2020
DataRobot MLOps is helping to increase AI value by automating the deployment, optimization, and governance of machine learning applications.
How to Develop an Imbalanced Classification Model to Detect Oil SpillsMar 9, 2020
Many imbalanced classification tasks require a skillful model that predicts a crisp class label, where both classes are equally important. An example of an imbalanced classification problem where a class label is required and both classes are equally important is the detection of oil spills or slicks in satellite images. The detection of a spill requires mobilizing an expensive response,…
Why Is Imbalanced Classification Difficult?Mar 9, 2020
Imbalanced classification is primarily challenging as a predictive modeling task because of the severely skewed class distribution. This is the cause for poor performance with traditional machine learning models and evaluation metrics that assume a balanced class distribution. Nevertheless, there are additional properties of a classification dataset that are not only challenging for predictive modeling but also increase or compound…
Over 150 of the Best Machine Learning, NLP, and Python Tutorials I’ve FoundMar 9, 2020
By popular demand, I’ve updated this article with the latest tutorials from the past 12 months. Check it out here
What is a Markov Decision Process Anyways?Mar 9, 2020
Learn about the model that is used in most reinforcement learning problems.
Accuracy vs Speed – what Data Scientists can learn from SearchFeb 19, 2020
Delivering accurate insights is the core function of any data scientist. Navigating the development road toward this goal can sometimes be tricky, especially when cross-collaboration is required, and these lessons learned from building a search application will help you negotiate the demands between accuracy and speed.
MCMC Methods: Metropolis-Hastings and Bayesian InferenceFeb 19, 2020
This article will introduce you to Markov Chain Monte Carlo (MCMC) methods, namely Metropolis-Hastings and Bayesian inference, and demonstrate how you can harness them for your next project.
Reinforcement Learning, Part 3: The Markov Decision ProcessFeb 19, 2020
MDP in action: the next step toward solving real-life problems with RL and AI
MIT Linear Algebra, Lecture 4: A=LU FactorizationFeb 19, 2020
This is the fourth post in an article series about MIT's Linear Algebra course. In this post I will review lecture four on factorizing a matrix A into a product of a lower-triangular matrix L and an upper-triangular matrix U, or in other words A=LU. The lecture also shows how to find the inverse of matrix product A·B,...
Polynomial Regression from Scratch in PythonFeb 19, 2020
Machine learning is one of the hottest topics in computer science today. And not without a reason: it has helped us do things that couldn’t be done before like image classification, image generation and natural language processing. But all of it boils down to a really simple concept: you give the computer data and the computer then finds patterns in that data. This is called “learning” or “training”, depending on your point of view. These learnt patterns can be extrapolated to make predictions. How? That’s what we are looking at today.
Market Basket Analysis: A TutorialFeb 19, 2020
This article is about Market Basket Analysis & the Apriori algorithm that works behind it.
Beyond L2 Loss – How We Experiment with Loss FunctionsFeb 19, 2020
Estimating expected time of arrival (ETA) is crucial to what we do at Lyft. Estimates go directly to riders and drivers using our apps, as…
Classify A Rare Event Using 5 Machine Learning AlgorithmsFeb 19, 2020
Which algorithm works best for unbalanced data? Are there any tradeoffs?
Survey Segmentation TutorialFeb 19, 2020
Learn the basics of verifying segmentation, analyzing the data, and creating segments in this tutorial. When reviewing survey data, you will typically be handed Likert questions (e.g., on a scale of 1 to 5), and by using a few techniques, you can verify the quality of the survey and start…
40+ Modern Tutorials Covering All Aspects of Machine Learning - DataScienceCentral.comFeb 19, 2020
This list of lists contains books, notebooks, presentations, cheat sheets, and tutorials covering all aspects of data science, machine learning, deep learning, statistics, math, and more, with most documents featuring Python or R code and numerous illustrations or case studies. All this material is available for free, and consists of content mostly created in 2019… Read More »40+ Modern Tutorials Covering All Aspects of Machine Learning
[OC] Updated version of my recent maze finding algorithm with source codeFeb 19, 2020
2.1K votes, 110 comments. 1.3M subscribers in the Python community. The official Python community for Reddit! Stay up to date with the latest news…
The Data Science Interview Study GuideFeb 19, 2020
Preparing for a job interview can be a full-time job, and Data Science interviews are no different. Here are 121 resources that can help you study and quiz your way to landing your dream data science job.
https://stepupanalytics.com/beginners-guide-to-statistical-cluster-analysis-in-detail-part-1/Feb 19, 2020
The 5 most useful Techniques to Handle Imbalanced datasetsFeb 19, 2020
This post is about explaining the various techniques you can use to handle imbalanced datasets
Adversarial Validation OverviewFeb 19, 2020
Learn how to implement adversarial validation that builds a classifier to determine if your data is from the training or testing sets. If you can do this, then your data has issues, and your adversarial validation model can help you diagnose the problem.
Practical Hyperparameter OptimizationFeb 19, 2020
An introduction on how to fine-tune Machine and Deep Learning models using techniques such as: Random Search, Automated Hyperparameter Tuning and Artificial Neural Networks Tuning.
Comparing Apples, Oranges and Bananas - ssense-tech - MediumFeb 19, 2020
Behind every recommender system lies a bevy of metrics.
[N] scikit-optimize 0.7 releaseFeb 19, 2020
Scikit-Optimize, or skopt, is a simple and efficient library to minimize (very) expensive and noisy black-box functions. It implements several…
auto-sklearn — AutoSklearn 0.6.0 documentationFeb 19, 2020
Evolutionary AlgorithmsFeb 19, 2020
Evolutionary algorithms are an unsupervised learning alternative to neural networks that rely on fitness functions instead of trained nodes for evaluation.
vumaasha/Atlas: Atlas: A Dataset and Benchmark for E-commerce Clothing ProdDec 23, 2019
Atlas: A Dataset and Benchmark for E-commerce Clothing Product Categorization - vumaasha/Atlas
Markov Chain Analysis and Simulation using Python - Towards Data ScienceDec 14, 2019
Solving real-world problems with probabilities
Correlation Coefficients in One Picture - DataScienceCentral.comDec 14, 2019
Correlation coefficients enable to you find relationships between a wide variety of data. However, the sheer number of options can be overwhelming. This picture sums up the differences between five of the most popular correlation coefficients. Part two covers several less popular correlation coefficients. Further reading: Gamma & Coefficient & Yule’s Q Kendall’s Tau Pearson… Read More »Correlation Coefficients in One Picture
The 5 Classification Evaluation metrics every Data Scientist must knowDec 14, 2019
This post is about various evaluation metrics and how and when to use them.
Deep Learning in the Real World: Dealing with Non-Differentiable Loss FunctDec 14, 2019
Over the past few years, deep learning has been taking by storm many industries. From voice recognition to image analysis and synthesis, neural networks have turned out to be very efficient at solv…
[D] Tools/Techniques for Efficiently Sorting Image DataDec 14, 2019
I'm planning on sorting ~100,000 images to use as data for a computer vision application. With this much data, shaving a little time off of each…
Density Estimation: MLE, MAP, MOM, KDE, ECDF, Q-Q Plot, GANDec 14, 2019
Density estimation is estimating the probability density function of the population from the sample
[R] How UMAP works -- a detailed comparison with t-SNEDec 14, 2019
23 votes, 13 comments. A recent blog post How Exactly UMAP Works provides a different perspective on explaining the UMAP dimensionality reduction…
Is Rectified Adam actually *better* than Adam? - PyImageSearchDec 14, 2019
Is the Rectified Adam (RAdam) optimizer actually better than the standard Adam optimizer? According to my 24 experiments, the answer is no, typically not (but there are cases where you do want to use it instead of Adam).
Clustering Metrics Better Than the Elbow MethodDec 14, 2019
We show what metric to use for visualizing and determining an optimal number of clusters much better than the usual practice — elbow method.
101 Machine Learning Algorithms for Data Science | Data Science BlogDec 14, 2019
Data Science Dojo blog features the most recent, and relevant articles about data science, analytics, generative AI, large language models, machine learning, and data visualization.
The Simple Math behind 3 Decision Tree Splitting criterionsDec 5, 2019
This post is about various evaluation metrics and how and when to use them.
Understanding UMAPNov 7, 2019
UMAP is a new dimensionality reduction technique that offers increased speed and better preservation of global structure.
Inference Results – MLPerfNov 7, 2019
MLCommons ML benchmarks help balance the benefits and risks of AI through quantitative tools that guide responsible AI development.
Research Guide: Advanced Loss Functions for Machine Learning Models - KDnuggetsNov 7, 2019
This guide explores research centered on a variety of advanced loss functions for machine learning models.
How UMAP Works — umap 0.3 documentationOct 7, 2019
What is Hierarchical Clustering?Sep 30, 2019
The article contains a brief introduction to various concepts related to Hierarchical clustering algorithm.
An In-Depth Guide to Contrastive Learning: Techniques Models and ApplicationsSep 24, 2019
Discover the fundamentals of contrastive learning, including key techniques like SimCLR, MoCo, and CLIP. Learn how contrastive learning improves unsupervised learning and its practical applications.
How exactly Stitch Fix’s “Tinder for clothes” learns your styleAug 30, 2019
Each customer has an individualized style map, laying out her feelings about peasant blouses, A-line dresses, or pencil skirts.
Understanding AdaBoost – or how to turn Weakness into StrengthAug 30, 2019
Many of you might have heard of the concept “Wisdom of the Crowd”: when many people independently guess some quantity, e.g. the number of marbles in a jar glass, the average of their guesses is often pretty accurate – even though many of the guesses are totally off. The same principle is at work in … Continue reading "Understanding AdaBoost – or how to turn Weakness into Strength"
Knowledge extraction from unstructured texts | Tech BlogAug 30, 2019
There is an unreasonable amount of information that can be extracted from what people publicly say on the internet. Learn how to do it.
benedekrozemberczki/awesome-gradient-boosting-papers: A curated list of gradient boosting research papers with implementations.Aug 30, 2019
A curated list of gradient boosting research papers with implementations. - GitHub - benedekrozemberczki/awesome-gradient-boosting-papers: A curated list of gradient boosting research papers with ...
Modeling the UnseenAug 30, 2019
How Instacart uses Machine Learning to spot lost demand in its fulfillment chain
Arima Model – Complete Guide to Time Series Forecasting in PythonAug 30, 2019
Using ARIMA model, you can forecast a time series using the series past values. In this post, we build an optimal ARIMA model from scratch and extend it to Seasonal ARIMA (SARIMA) and SARIMAX models. You will also see how to build autoarima models in python
Synthetic data generation — a must-have skill for new data scientistsAug 29, 2019
A brief rundown of packages and ideas to generate synthetic data for self-driven data science projects and deep diving into machine…
Kernel density estimation explainerAug 29, 2019
Matthew Conlen provides a short explainer of how kernel density estimation works. Nifty.
Comparison of the Text Distance Metrics | ActiveWizards: data science and engineering labAug 29, 2019
This article discusses and compares different approaches of how to compare two text strings.
https://dhruvonmath.com/2019/04/04/kernelsAug 29, 2019
How to Use t-SNE EffectivelyAug 29, 2019
Although extremely useful for visualizing high-dimensional data, t-SNE plots can sometimes be mysterious or misleading.
LAug 29, 2019
Principal component analysis: pictures, code and proofsAug 29, 2019
The code used to generate the plots for this post can be found here.
The Hitchhiker’s Guide to Feature ExtractionAug 20, 2019
Some Tricks and Code for Kaggle and Everyday work. This post is about useful feature engineering methods and tricks that I have learned and end up using often.
What is (Gaussian) curvature?Aug 20, 2019
Algorithms by Jeff EricksonAug 20, 2019
Jacobian matrix and determinant - WikipediaAug 6, 2019
In vector calculus, the Jacobian matrix (/dʒəˈkoʊbiən/,[1][2][3] /dʒɪ-, jɪ-/) of a vector-valued function of several variables is the matrix of all its first-order partial derivatives. When this matrix is square, that is, when the function takes the same number of variables as input as the number of vector components of its output, its determinant is referred to as the Jacobian determinant. Both the matrix and (if applicable) the determinant are often referred to simply as the Jacobian in literature.[4] They are named after Carl Gustav Jacob Jacobi.
The 5 Sampling Algorithms every Data Scientist need to knowAug 2, 2019
This post is about some of the most common sampling techniques one can use while working with data.
Five Command Line Tools for Data ScienceAug 2, 2019
You can do more data science than you think from the terminal.
TF-IDF: The best content optimization tool SEOs aren’t using - Search EnginJul 25, 2019
Term frequency–inverse document frequency uncovers the specific words that top-ranking pages use to give target keywords context.
yzhao062/pyod: A Python Toolbox for Scalable Outlier Detection (Anomaly DetJul 25, 2019
A Python Library for Outlier and Anomaly Detection, Integrating Classical and Deep Learning Techniques - yzhao062/pyod
A Gentle Introduction to Noise Contrastive EstimationJul 25, 2019
Find out how to use randomness to learn your data by using Noise Contrastive Estimation with this guide that works through the particulars of its implementation.
Introduction to Genetic AlgorithmsJul 9, 2019
The Hitchhiker’s Guide to Feature ExtractionMay 21, 2019
168 votes, 13 comments. 2.2M subscribers in the datascience community. A space for data science professionals to engage in discussions and debates on…
Designing Data-Intensive Applications (DDIA) — an O’Reilly book by Martin Kleppmann (The Wild Boar Book)May 14, 2019
The mathematics and Intuitions of Principal Component Analysis (PCA) UsingApr 21, 2019
As data scientists or Machine learning experts, we are faced with tonnes of columns of data to extract insight from, among these features…
Applied Category Theory | Mathematics | MIT OpenCourseWareApr 20, 2019
Category theory is a relatively new branch of mathematics that has transformed much of pure math research. The technical advance is that category theory provides a framework in which to organize formal systems and by which to translate between them, allowing one to transfer knowledge from one field to another. But this same organizational framework also has many compelling examples outside of pure math. In this course, we will give seven sketches on real-world applications of category theory.
Policy Gradient AlgorithmsApr 18, 2019
A Visual Exploration of Gaussian ProcessesApr 5, 2019
How to turn a collection of small building blocks into a versatile tool for solving regression problems.
The Illustrated Word2vecMar 29, 2019
Discussions: Hacker News (347 points, 37 comments), Reddit r/MachineLearning (151 points, 19 comments) Translations: Chinese (Simplified), French, Korean, Portuguese, Russian “There is in all things a pattern that is part of our universe. It has symmetry, elegance, and grace - those qualities you find always in that which the true artist captures. You can find it in the turning of the seasons, in the way sand trails along a ridge, in the branch clusters of the creosote bush or the pattern of its leaves. We try to copy these patterns in our lives and our society, seeking the rhythms, the dances, the forms that comfort. Yet, it is possible to see peril in the finding of ultimate perfection. It is clear that the ultimate pattern contains it own fixity. In such perfection, all things move toward death.” ~ Dune (1965) I find the concept of embeddings to be one of the most fascinating ideas in machine learning. If you’ve ever used Siri, Google Assistant, Alexa, Google Translate, or even smartphone keyboard with next-word prediction, then chances are you’ve benefitted from this idea that has become central to Natural Language Processing models. There has been quite a development over the last couple of decades in using embeddings for neural models (Recent developments include contextualized word embeddings leading to cutting-edge models like BERT and GPT2). Word2vec is a method to efficiently create word embeddings and has been around since 2013. But in addition to its utility as a word-embedding method, some of its concepts have been shown to be effective in creating recommendation engines and making sense of sequential data even in commercial, non-language tasks. Companies like Airbnb, Alibaba, Spotify, and Anghami have all benefitted from carving out this brilliant piece of machinery from the world of NLP and using it in production to empower a new breed of recommendation engines. In this post, we’ll go over the concept of embedding, and the mechanics of generating embeddings with word2vec. But let’s start with an example to get familiar with using vectors to represent things. Did you know that a list of five numbers (a vector) can represent so much about your personality?
ROC Curve Explained in One Picture - DataScienceCentral.comMar 12, 2019
With a ROC curve, you’re trying to find a good model that optimizes the trade off between the False Positive Rate (FPR) and True Positive Rate (TPR). What counts here is how much area is under the curve (Area under the Curve = AuC). The ideal curve in the left image fills in 100%, which means… Read More »ROC Curve Explained in One Picture
How to Use ROC Curves and Precision-Recall Curves for Classification in Python - MachineLearningMastery.comMar 10, 2019
It can be more flexible to predict probabilities of an observation belonging to each class in a classification problem rather than predicting classes directly. This flexibility comes from the way that probabilities may be interpreted using different thresholds that allow the operator of the model to trade-off concerns in the errors made by the model, such as the number of…
The Swiss Army Knife of HashmapsDec 14, 2018
A while back, there was a discussion comparing the performance of using the hashbrown crate (based on Google’s SwissTable implementation1) in the Rust compiler. In the last RustFest, Amanieu was experimenting on integrating his crate into stdlib, which turned out to have some really promising results. As a result, it’s being planned to move the crate into stdlib. I insist on watching this talk when you have some free time! ↩
Four Techniques for Outlier DetectionDec 8, 2018
There are many techniques to detect and optionally remove outliers from a dataset. In this blog post, we show an implementation in KNIME Analytics Platform of four of the most frequently used - traditional and novel - techniques for outlier detection.
How to visualize decision treeOct 7, 2018
Decision trees are the fundamental building block of gradient boosting machines and Random Forests(tm), probably the two most popular machine learning models for structured data. Visualizing decision trees is a tremendous aid when learning how these models work and when interpreting models. Unfortunately, current visualization packages are rudimentary and not immediately helpful to the novice. For example, we couldn't find a library that visualizes how decision nodes split up the feature space. So, we've created a general package (part of the animl library) for scikit-learn decision tree visualization and model interpretation.
A Machine Learning Approach to Shipping Box Design. (arXiv:1809.10210v1 [stSep 29, 2018
Having the right assortment of shipping boxes in the fulfillment warehouse to pack and ship customer's online orders is an indispensable and integral part of nowadays eCommerce business, as it...
Cookbook — Bayesian Modelling with PyMC3Aug 31, 2018
Recently I’ve started using PyMC3 for Bayesian modelling, and it’s an amazing piece of software! The API only exposes as much of heavy machinery of MCMC as you need — by which I mean, just the pm.sample() method (a.k.a., as Thomas Wiecki puts it, the Magic Inference Button™). This really frees up your mind to think about your data and model, which is really the heart and soul of data science! That being said however, I quickly realized that the water gets very deep very fast: I explored my data set, specified a hierarchical model that made sense to me, hit the Magic Inference Button™, and… uh, what now? I blinked at the angry red warnings the sampler spat out.
A Feature Selection Tool for Machine Learning in PythonAug 30, 2018
Using the FeatureSelector for efficient machine learning workflows
Receiver Operating Characteristic Curves Demystified (in Python)Jul 20, 2018
In this blog, I will reveal, step by step, how to plot an ROC curve using Python. After that, I will explain the characteristics of a basic ROC curve.
Attacks against machine learning — an overviewJun 11, 2018
This blog post surveys the attacks techniques that target AI (Artificial Intelligence) systems and how to protect against them.
Model evaluation, model selection, and algorithm selection in machine learnJun 8, 2018
A single-PDF version of Model Evaluation parts 1-4 is available on arXiv: https://arxiv.org/abs/1811.12808
Feature Engineering with TidyverseJun 8, 2018
Stay up-to-date on the latest data science and AI news in the worlds of artificial intelligence, machine learning, deep learning, implementation, and more.
Introduction to Market Basket Analysis in PythonJun 8, 2018
Using mlxtend to perform market basket analysis on online retail data set.
Set Theory Ordered Pairs and Cartesian Product with RJun 8, 2018
aaronschlegel.com is your first and best source for all of the information you’re looking for. From general topics to more of what you would expect to find here, aaronschlegel.com has it all. We hope you find what you are searching for!
Top speed for top-k queriesJun 8, 2018
Stay up-to-date on the latest data science and AI news in the worlds of artificial intelligence, machine learning, deep learning, implementation, and more.
Modern Machine Learning Algorithms: Strengths and WeaknessesJun 8, 2018
Get to know the ML landscape through this practical, concise overview of modern machine learning algorithms. Plus, we'll discuss the tradeoffs of each.
40 Techniques Used by Data Scientists - Data Science CentralJun 8, 2018
These techniques cover most of what data scientists and related practitioners are using in their daily activities, whether they use solutions offered by a vendor, or whether they design proprietary tools. When you click on any of the 40 links below, you will find a selection of articles related to the entry in question. Most… Read More »40 Techniques Used by Data Scientists
scikit-surprise 1.0.5 : Python Package IndexJun 8, 2018
An easy-to-use library for recommender systems.
Eecs227atJun 8, 2018
ML beyond Curve Fitting: An Intro to Causal Inference and do-CalculusJun 8, 2018
Since writing this post back in 2018, I have extended this to a 4-part series on causal inference: * ➡️️ Part 1: Intro to causal inference and do-calculus [https://www.inference.vc/untitled] * Part 2: Illustrating Interventions with a Toy Example [https://www.inference.vc/causal-inference-2-illustrating-interventions-in-a-toy-example/] * Part 3: Counterfactuals [https://www.inference.
Sequence Modeling with CTCJun 8, 2018
A visual guide to Connectionist Temporal Classification, an algorithm used to train deep neural networks in speech recognition, handwriting recognition and other sequence problems.
A Deep Dive into Monte Carlo Tree SearchJun 8, 2018
Why Momentum Really WorksJun 4, 2018
We often think of optimization with momentum as a ball rolling down a hill. This isn't wrong, but there is much more to the story.
Eigenvectors and Eigenvalues explained visuallyMay 15, 2018
LightTag is a text annotation platform for data scientists creating AI traiMay 11, 2018
LightTag, a newly launched startup from a former NLP researcher at Citi, has built a "text annotation platform" designed to assist data scientists who
A guide to receptive field arithmetic for Convolutional Neural NetworksMay 1, 2018
The receptive field is perhaps one of the most important concepts in Convolutional Neural Networks (CNNs) that deserves more attention from…
Command Line Tricks For Data ScientistsApr 30, 2018
For many data scientists, data manipulation begins and ends with Pandas or the Tidyverse. In theory, there is nothing wrong with this…
How we grew from 0 to 4 million women on our fashion app, with a vertical machine learning approachApr 10, 2018
My name is Gabi (my bio), and I’m the CEO and co-founder of Chicisimo. We launched three years ago, our goal was to offer automated outfit…
Understanding Feature Engineering (Part 3) — Traditional Methods for Text DApr 9, 2018
Traditional strategies for taming unstructured, textual data
A Gentle Introduction to Concept Drift in Machine Learning - Machine LearniApr 3, 2018
Data can change over time. This can result in poor and degrading predictive performance in predictive models that assume a static relationship between input and output variables. This problem of the changing underlying relationships in the data is called concept drift in the field of machine learning. In this post, you will discover the problem of concept drift and ways…
Start With Gradient Boosting, Results from Comparing 13 Algorithms on 165 DApr 1, 2018
Which machine learning algorithm should you use? It is a central question in applied machine learning. In a recent paper by Randal Olson and others, they attempt to answer it and give you a guide for algorithms and parameters to try on your problem first, before spot checking a broader suite of algorithms. In this post, you will discover a…
CatBoost vs. Light GBM vs. XGBoost - KDnuggetsMar 25, 2018
Who is going to win this war of predictions and on what cost? Let’s explore.
Multiscale Methods and Machine Learning - KDnuggetsMar 24, 2018
We highlight recent developments in machine learning and Deep Learning related to multiscale methods, which analyze data at a variety of scales to capture a wider range of relevant features. We give a general overview of multiscale methods, examine recent successes, and compare with similar approaches.
Logistic Regression: A Concise Technical OverviewMar 18, 2018
Interested in learning the concepts behind Logistic Regression (LogR)? Looking for a concise introduction to LogR? This article is for you. Includes a Python implementation and links to an R script as well.
Hierarchical Classification – a useful approach when predicting thousands oMar 14, 2018
Traditionally, most of the multi-class classification problems (i.e. problems where you want to predict where a given sample falls into, from a set of possible results) focus on a small number of possible predictions.
Time Series for Dummies – The 3 Step ProcessMar 12, 2018
Time series forecasting is an easy to use, low-cost solution that can provide powerful insights. This post will walk through introduction to three fundamental steps of building a quality model.
How we grew from 0 to 4 million women on our fashion app, with a vertical mMar 1, 2018
Three years ago we launched Chicisimo, our goal was to offer automated outfit advice. Today, with over 4 million women on the app, we want to share how our data and machine learning approach helped us grow. It’s been chaotic but it is now under control.
Linear Algebra Cheat Sheet for Machine LearningFeb 25, 2018
All of the Linear Algebra Operations that You Need to Use in NumPy for Machine Learning. The Python numerical computation library called NumPy provides many linear algebra functions that may be useful as a machine learning practitioner. In this tutorial, you will discover the key functions for working with vectors and matrices that you may find useful as a machine…
The Periodic Table of Data ScienceFeb 21, 2018
This periodic table can serve as a guide to navigate the key players in the data science space. The resources in the table were chosen by looking at surveys taken from data science users, such as the 2016 Data Science Salary Survey by O'Reilly, the 201...
Recommendation System Algorithms: An OverviewFeb 21, 2018
This post presents an overview of the main existing recommendation system algorithms, in order for data scientists to choose the best one according a business’s limitations and requirements.
Using Self-Organizing Maps to solve the Traveling Salesman ProblemFeb 20, 2018
Using Self-Organizing Maps to solve the Traveling Salesman Problem The Traveling Salesman Problem is a well known challenge in Computer Science: it consists on finding the shortest route possible that traverses all cities in a given map only once. Although its simple explanation, this problem is, indeed, NP-Complete. This implies that the difficulty to solve it increases rapidly with the number of cities, and we do not know in fact a general solution that solves the problem.
One-page R: a survival guide to data science with R - DataScienceCentral.comDec 27, 2017
This article comes from Togaware. A Survival Guide to Data Science with R These draft chapters weave together a collection of tools for the data scientist—tools that are all part of the R Statistical Software Suite. Each chapter is a collection of one (or more) pages that cover particular aspects of the topic. The chapters can be… Read More »One-page R: a survival guide to data science with R
Numenta Anomaly Benchmark: A Benchmark for Streaming Anomaly DetectionDec 27, 2017
Numenta created the open source Numenta Anomaly Benchmark (NAB) to test and their own anomaly detection algorithms. Learn more about how Numenta and Domino worked together to develop the NAB.
Topic Modeling with LDA IntroductionDec 27, 2017
Stay up-to-date on the latest data science and AI news in the worlds of artificial intelligence, machine learning, deep learning, implementation, and more.
Assessing Data with Item Response TheoryDec 27, 2017
Stay up-to-date on the latest data science and AI news in the worlds of artificial intelligence, machine learning, deep learning, implementation, and more.
How to Handle Imbalanced Classes in Machine LearningDec 27, 2017
Imbalanced classes put "accuracy" out of business. This is a surprisingly common problem in machine learning, and this guide shows you how to handle it.
arbox/data-science-with-ruby: Practical Data Science with Ruby based tools.Dec 27, 2017
Practical Data Science with Ruby based tools.
Understanding Machine Learning AlgorithmsDec 27, 2017
Machine learning algorithms aren’t difficult to grasp if you understand the basic concepts. Here, a SAS data scientist describes the foundations for some of today’s popular algorithms.
Top-100-Data-science-interview-questionsDec 27, 2017
Data science, also known as data-driven decision, is an interdisciplinery field about scientific methods, process and systems to extract knowledge from data in various forms, and take descision based on this knowledge. A data scientist should not only be evaluated only on his/her knowledge on machine learning, but he/she should also have good expertise on statistics. I will try to start from very basics of data science and then slowly move to expert level. So let’s get started.
Why you should read Nina Zumel’s 3 part series on principal components analDec 27, 2017
Short form: Win-Vector LLC’s Dr. Nina Zumel has a three part series on Principal Components Regression that we think is well worth your time. Part 1: the proper preparation of data (including…
The often-overlooked random forest kernel · RMarcusDec 9, 2017
Ryan Marcus, assistant professor at the University of Pennsylvania. Using machine learning to build the next generation of data systems.
Parfit — quick and powerful hyper-parameter optimization with visualizationNov 29, 2017
An introduction to parfit
The 10 Statistical Techniques Data Scientists Need to MasterNov 20, 2017
The author presents 10 statistical techniques which a data scientist needs to master. Build up your toolbox of data science tools by having a look at this great overview post.
Why is Kullback-Leibler divergence not a distance?Nov 11, 2017
The Kullback-Leibler divergence between two probability distributions is sometimes called a "distance," but it's not. Here's why.
How to Perform the Principal Component Analysis in R | Open Data ScienceOct 29, 2017
Stay up-to-date on the latest data science and AI news in the worlds of artificial intelligence, machine learning, deep learning, implementation, and more.
[P] A Visual Guide to Evolution StrategiesOct 29, 2017
380 votes, 20 comments. 2.9M subscribers in the MachineLearning community. Beginners -> /r/mlquestions , AGI -> /r/singularity, career advices ->…
The Arms Race to Leverage Machine Learning in Supply Chain PlanningOct 24, 2017
Artificial intelligence (AI) is hot. Over $4 billion in venture capital has been invested in AI firms just in the US. But supply chain planning software companies, with their cadre of operations research Ph.Ds who have been modeling complex problems for decades, may be better poised to solve many complex business problems than the hot new Silicon Valley firms.
11 Important Model Evaluation Techniques Everyone Should Know - Data SciencAug 12, 2017
Model evaluation metrics are used to assess goodness of fit between model and data, to compare different models, in the context of model selection, and to predict how predictions (associated with a specific model and data set) are expected to be accurate. Confidence Interval. Confidence intervals are used to assess how reliable a statistical estimate… Read More »11 Important Model Evaluation Techniques Everyone Should Know
Relative error distributions, without the heavy tail theatricsDec 3, 2016
Nina Zumel prepared an excellent article on the consequences of working with relative error distributed quantities (such as wealth, income, sales, and many more) called “Living in A Lognormal…
Be Wrong the Right Number of TimesNov 13, 2016
Update, Dec 12, 2016: There is a follow up post discussing the outcome of all of this after the election results were known.
delgado14a.pdfOct 31, 2016
“Shrinking bull’s-eye” algorithm speeds up complex modeling from days to hoOct 3, 2016
A new “shrinking bull’s-eye” algorithm from researchers at MIT speeds up complex modeling from days to hours.
AI & ML Projects with PythonOct 24, 2011
In this article, I'll take you through a list of guided projects to master AI & ML with Python. AI & ML Projects with Python.
machine-vision
Seeing Like a Sedan—AsteriskJan 26, 2026
Waymos and Cybercabs see the world through very different sensors. Which technology wins out will determine the future of self-driving vehicles.
An unprocessed imageJan 1, 2026
AI Spots Hidden Signs of Consciousness in Comatose Patients before Doctors DoAug 31, 2025
A machine-learning algorithm spotted signs of “covert consciousness” in coma patients—in some cases, days before doctors could do so
Marines outwitted an AI security camera by hiding in a cardboard box and pretending to be treesAug 20, 2025
When tasked with defeating an AI programmed to detect human movement, a squad of Marines got creative.
How to think with imagesJun 11, 2025
* Introduction
* Understanding vs. Generation in Vision
* Unifying Vision – Are We There Yet?
* Vision Without Words: Do Models Need Language?
*…
On-Device, Real-Time Hand Tracking with MediaPipeApr 21, 2025
Posted by Valentin Bazarevsky and Fan Zhang, Research Engineers, Google Research The ability to perceive the shape and motion of hands can be a v...
From Iron Man to Reality: Hand Gesture Recognition Reshapes Tech Interaction - DataconomyMar 28, 2025
The surge in hand gesture recognition is not merely a novelty; it's a fundamental shift in how humans interact with machines.
A Code Implementation for Advanced Human Pose Estimation Using MediaPipe, OpenCV and MatplotlibMar 26, 2025
A Code Implementation Guide to Advanced Human Pose Estimation using MediaPipe, OpenCV and Matplotlib
Improving Uniformity And Linearity For All MasksJan 29, 2025
Pixel-level dose correction improves the quality of masks written by multi-beam.
BookOct 22, 2024
Satellites Spotting ShipsJun 20, 2024
Benchmarks & Tips for Big Data, Hadoop, AWS, Google Cloud, PostgreSQL, Spark, Python & More...
Image Data Preprocessing Techniques You Should KnowJun 5, 2024
In this article, I'll take you through the essential image data preprocessing techniques you should know with implementation using Python.
Optical Illusions Can Fool AI Chatbots, TooMay 28, 2024
Experiments with optical illusions have revealed surprising similarities between human and AI perception
Demystifying Vision-Language Models: An In-Depth ExplorationMay 24, 2024
Vision-language models (VLMs), capable of processing both images and text, have gained immense popularity due to their versatility in solving a wide range of tasks, from information retrieval in scanned documents to code generation from screenshots. However, the development of these powerful models has been hindered by a lack of understanding regarding the critical design choices that truly impact their performance. This knowledge gap makes it challenging for researchers to make meaningful progress in this field. To address this issue, a team of researchers from Hugging Face and Sorbonne Université conducted extensive experiments to unravel the factors that matter the
How to Estimate Depth from a Single ImageApr 29, 2024
Author: Jacob Marks (Machine Learning Engineer at Voxel51) Run and Evaluate Monocular Depth...
Monocular Depth EstimationApr 26, 2024
**Monocular Depth Estimation** is the task of estimating the depth value (distance relative to the camera) of each pixel given a single (monocular) RGB image. This challenging task is a key prerequisite for determining scene understanding for applications such as 3D scene reconstruction, autonomous driving, and AR. State-of-the-art methods usually fall into one of two categories: designing a complex network that is powerful enough to directly regress the depth map, or splitting the input into bins or windows to reduce computational complexity. The most popular benchmarks are the KITTI and NYUv2 datasets. Models are typically evaluated using RMSE or absolute relative error. Source: [Defocus Deblurring Using Dual-Pixel Data ](https://arxiv.org/abs/2005.00305)
YOLO8 The basic functions for beginner!Apr 21, 2024
When you start using YOLO8 you loose a lot of time to find the basics codes to get the bounding...
‘The machine did it coldly’: Israel used AI to identify 37,000 Hamas targetApr 4, 2024
Israeli intelligence sources reveal use of ‘Lavender’ system in Gaza war and claim permission given to kill civilians in pursuit of low-ranking militants
Object Detection Basics — A Comprehensive Beginner’s Guide (Part 1)Feb 7, 2024
Learn the basics of this advanced computer vision task of object detection in an easy to understand multi-part beginner’s guide
Binary image convex hull – algorithm notes » Steve on Image Processing withFeb 4, 2024
Today I want to tell a little image processing algorithm story related to my post last week about the new bwconvhull function in the Image Processing Toolbox. The developer (Brendan) who worked on this function came to see me sometime last year to find out how the 'ConvexImage' measurement offered by regionprops
‘Let’s Go Shopping (LGS)’ Dataset: A Large-Scale Public Dataset with 15M ImJan 17, 2024
Developing large-scale datasets has been critical in computer vision and natural language processing. These datasets, rich in visual and textual information, are fundamental to developing algorithms capable of understanding and interpreting images. They serve as the backbone for enhancing machine learning models, particularly those tasked with deciphering the complex interplay between visual elements in images and their corresponding textual descriptions. A significant challenge in this field is the need for large-scale, accurately annotated datasets. These are essential for training models but are often not publicly accessible, limiting the scope of research and development. The ImageNet and OpenImages datasets, containing human-annotated
Low Quality Image Detection—Part 1Jan 5, 2024
How to perform low quality images detection using Machine Learning and Deep Learning.
Image Segmentation: An In-Depth GuideOct 19, 2023
How can you get a computer to distinguish between different types of objects in an image? A step-by-step guide.
ChatGPT Vision is insanely good, here is what it can and can’t doOct 5, 2023
OpenAI's ChatGPT Vision is making waves in the world of artificial intelligence, but what exactly is it, and how can
MIT Researchers Created a New Annotated Synthetic Dataset of Images that DeSep 17, 2023
Large-scale pre-trained Vision and language models have demonstrated remarkable performance in numerous applications, allowing for the replacement of a fixed set of supported classes with zero-shot open vocabulary reasoning over (nearly arbitrary) natural language queries. However, recent research has revealed a fundamental flaw in these models. For instance, their inability to comprehend Visual Language Concepts (VLC) that extend 'beyond nouns,' such as the meaning of non-object words (e.g., attributes, actions, relations, states, etc.), or their difficulty with compositional reasoning, such as comprehending the significance of the word order in a sentence. Vision and language models, powerful machine-learning algorithms that learn
eBay rolls out a tool that generates product listings from photosSep 7, 2023
eBay's new generative AI tool, rolling out on iOS first, can write a product listing from a single photo -- or so the company claims.
MIT CSAIL unveils PhotoGuard, an AI defense against unauthorized image maniAug 7, 2023
MIT CSAIL researchers claim PhotoGuard can detect image irregularities invisible to the human eye through its AI's architectural prowess.
This AI Research Introduces a Novel Two-Stage Pose Distillation for Whole-BAug 6, 2023
Numerous human-centric perception, comprehension, and creation tasks depend on whole-body pose estimation, including 3D whole-body mesh recovery, human-object interaction, and posture-conditioned human image and motion production. Furthermore, using user-friendly algorithms like OpenPose and MediaPipe, recording human postures for virtual content development and VR/AR has significantly increased in popularity. Although these tools are convenient, their performance still needs to improve, which limits their potential. Therefore, more developments in human pose assessment technologies are essential to realizing the promise of user-driven content production. Comparatively speaking, whole-body pose estimation presents more difficulties than human pose estimation with body-only key points detection due to
How to make photos confusing to AIAug 6, 2023
A new tool out of MIT makes it so AI cannot edit your photos.
What is an Image Processor? Turns Out the Answer is HazyJul 24, 2023
Real-time image processing is a resource-intensive task that often requires specialized hardware. With that in mind, let's explore processors that are designed specifically for photo and video applications.
Ahead of AI #10: State of Computer Vision 2023Jul 13, 2023
Large language model development (LLM) development is still happening at a rapid pace.
Hands-on Generative AI with GANs using Python: Image GenerationMar 31, 2023
Learn how to implement GANs with PyTorch to generate synthetic images
Nvidia Tackles Chipmaking Process, Claims 40X Speed Up with cuLithoMar 21, 2023
Faster masks, less power.
Image Filters with PythonFeb 10, 2023
A concise computer vision project for building image filters using Python
Shopping for Apparel in an Online World: UI/UX Design for Virtual ClothingFeb 10, 2023
How AR and VR are reshaping apparel e-commerce.
Multi-camera real-time object detection with WebRTC and YOLOJan 5, 2023
Learn how to build a surveillance system using WebRTC for low-latency and YOLO for object detection. This tutorial will guide you through the process of using computer vision and machine learning techniques to detect and track objects in real-time video streams. With this knowledge, you can create a surveillance system for security or other applications. However, there are challenges to consider when using cameras for object detection, including data privacy and security concerns, as well as technical limitations such as low image quality and lighting conditions. This article will teach you how to overcome some of these challenges and build a reliable surveillance system.
MIT's newest computer vision algorithm identifies images down to the pixelDec 28, 2022
A team of researchers at MIT CSAIL, in collaboration with Cornell University and Microsoft, have developed STEGO, an algorithm able to identify images down to the individual pixel.
lucidrains/vit-pytorch: Implementation of Vision Transformer, a simple way to achieve SOTA in vision classification with only a single transformer encoder, in PytorchDec 18, 2022
Implementation of Vision Transformer, a simple way to achieve SOTA in vision classification with only a single transformer encoder, in Pytorch - lucidrains/vit-pytorch
YOLOv7: A deep dive into the current state-of-the-art for object detectionNov 28, 2022
Everything you need to know to use YOLOv7 in custom training scripts
What is ‘Image Super Resolution’, and why do we need it?Oct 20, 2022
An introduction to the field, its applications, and current issues
Image Super-Resolution: An Overview of the Current State of ResearchOct 20, 2022
A review of popular techniques and remaining challenges
The Basics of Object Detection: YOLO, SSD, R-CNNOct 11, 2022
Overview of how object detection works, and where to get started
A Comprehensive Tutorial on Stereo Geometry and Stereo Rectification with PSep 16, 2022
Everything you need to know about Stereo Geometry
The New Normal: The Coming Tsunami of FakeryAug 27, 2022
How the Dead Internet Theory is fast becoming reality thanks to zero, marginal-cost content generated at infinite scale
How to Perform Motion Detection Using Python - KDnuggetsAug 21, 2022
In this article, we will specifically take a look at motion detection using a webcam of a laptop or computer and will create a code script to work on our computer and see its real-time example.
What is YOLOv7? A Complete Guide.Jul 18, 2022
In this guide, we discuss what YOLOv7 is, how the model works, and the novel model architecture changes in YOLOv7.
YOLOv7: Trainable bag-of-freebies sets new state-of-the-art for...Jul 18, 2022
YOLOv7 surpasses all known object detectors in both speed and accuracy in the range from 5 FPS to 160 FPS and has the highest accuracy 56.8% AP among all known real-time object detectors with 30...
YOLOv6: next-generation object detection — review and comparisonJul 5, 2022
eview and comparison of the next generation object detection
NVIDIA NeRF AI Renders Amazingly Realistic 3D Scenes From 2D Photos In JustMar 26, 2022
It takes a human being around 0.1 to 0.4 seconds to blink. In even less time, an AI-based inverse rendering process developed by NVIDIA can generate a 3D scene from 2D photos.
Are You Better Than a Machine at Spotting a Deepfake?Mar 15, 2022
New research shows that detecting digital fakes generated by machine learning might be a job best done with humans still in the loop.
Asset2Vec: Turning 3D Objects into Vectors and BackFeb 28, 2022
How we used NeRF to embed our entire 3D object catalogue to a shared latent space, and what it means for the future of graphics
Curating a Dataset from Raw Images and VideosJan 16, 2022
Best-practices to follow when building datasets from large pools of image and video data and tools that make it straightforward.
How to stop AI from recognizing your face in selfies | MIT Technology RevieJan 13, 2022
A growing number of tools now let you stop facial recognition systems from training on your personal photos
Detecting Twenty-thousand Classes using Image-level SupervisionJan 12, 2022
Current object detectors are limited in vocabulary size due to the small scale of detection datasets. Image classifiers, on the other hand, reason about much larger vocabularies, as their datasets...
HRNet explained: Human Pose Estimation, Semantic Segmentation and Object DeOct 7, 2021
Revealing whats behind the state-of-the art algorithm HRNet
Essential Linux Command-Line Tricks for Computer Vision ResearchersOct 7, 2021
In this post, you will learn some cool command line tricks which can help you to speed up your day-to-day R&D.
Object Detection Algorithms and Libraries - neptune.aiAug 24, 2021
A guide on object detection algorithms and libraries that covers use cases, technical details, and offers a look into modern applications.
10 Computer Vision Terms Everyone Must Know About!Aug 22, 2021
The ten essential computer vision terminologies that everyone should learn to become more proficient at computer vision with sample codes
Researchers Create 'Master Faces' to Bypass Facial RecognitionAug 12, 2021
According to the paper, their findings imply that facial recognition systems are “extremely vulnerable.”
Same or Different? The Question Flummoxes Neural Networks. | Quanta MagazineJun 26, 2021
For all their triumphs, AI systems can’t seem to generalize the concepts of “same” and “different.” Without that, researchers worry, the quest to create truly intelligent machines may be hopeless.
Complete Guide to Data Augmentation for Computer VisionJun 1, 2021
Data Augmentation is one of the most important topics in Deep Computer Vision. When you train your neural network, you should do data augmentation like… ALWAYS. Otherwise, you are not using your…
Surviving an In-Flight Anomaly: What Happened on Ingenuity’s Sixth Flight -May 28, 2021
On the 91st Martian day, or sol, of NASA’s Mars 2020 Perseverance rover mission, the Ingenuity Mars Helicopter performed its sixth flight. The flight was designed to expand the flight envelope and demonstrate aerial-imaging capabilities by taking stereo images of a region of interest to the west. Ingenuity was commanded to climb to an altitude of 33 feet (10 meters) before translating 492 feet (150 meters) to the southwest at a ground speed of 9 mph (4 meters per second). At that point, it was to translate 49 feet (15 meters) to the south while taking images toward the west, then fly another 164 feet (50 meters) northeast and land.
Essential Linear Algebra for Data Science and Machine Learning - KDnuggetsMay 16, 2021
Linear algebra is foundational in data science and machine learning. Beginners starting out along their learning journey in data science--as well as established practitioners--must develop a strong familiarity with the essential concepts in linear algebra.
How image search works at Dropbox - DropboxMay 12, 2021
Top 5 Python libraries for Computer visionMay 7, 2021
Computer vision is the field of computer science that focuses on replicating parts of the complexity...
jsbroks/coco-annotator: :pencil2: Web-based image segmentation tool for object detection, localization, and keypointsMay 2, 2021
:pencil2: Web-based image segmentation tool for object detection, localization, and keypoints - jsbroks/coco-annotator
Gentle introduction to 2D Hand Pose Estimation: Approach ExplainedApr 26, 2021
Detailed tutorial on where to find a dataset, how to preprocess data, what model architecture and loss to use, and, finally, how to…
A Beginner’s Guide to Image Augmentations in Machine LearningMar 28, 2021
Data Augmentation is one of the most important yet underrated aspects of a machine learning system …
Breaking Through the Uncanny ValleyMar 22, 2021
In 1970 robotics professor Masahiro Mori observed, "Bbukimi no tani genshō," which was later translated into "uncanny valley". This refers to an observed phenomenon (first in robots, but also applies to digital recreations) that the more human-like the robot the greater the emotional affinity of people. However, as imitation approaches complete imitation it takes a
Image Feature Extraction Using PyTorchMar 22, 2021
Case Study: Image Clustering using K-Means Algorithm
New AI tool detects Deepfakes by analyzing light reflections in the eyesMar 14, 2021
Computer scientists from the University at Buffalo used the method to successfully detect Deepfakes taken from This Person Does Not Exist.
Deep Nostalgia AI brings your photos to life just like in the ‘Harry PotterMar 7, 2021
Deep Nostalgia AI brings your photos to life just like in the Harry Potter movies.
State-of-the-Art Image Generation ModelsMar 5, 2021
I have aggregated some of the SotA image generative models released recently, with short summaries, visualizations and comments. The overall development is summarized, and the future trends are spe…
How to Use Roboflow and Streamlit to Visualize Object Detection OutputMar 3, 2021
Building an app for blood cell count detection.
Image Processing with Python — Using RG ChromaticityFeb 1, 2021
How to use the Gaussian Distribution for Image Segmentation
Object Tracking | Papers With CodeDec 21, 2020
**Object tracking** is the task of taking an initial set of object detections, creating a unique ID for each of the initial detections, and then tracking each of the objects as they move around frames in a video, maintaining the ID assignment. State-of-the-art methods involve fusing data from RGB and event-based cameras to produce more reliable object tracking. CNN-based models using only RGB images as input are also effective. The most popular benchmark is OTB. There are several evaluation metrics specific to object tracking, including HOTA, MOTA, IDF1, and Track-mAP. ( Image credit: [Towards-Realtime-MOT ](https://github.com/Zhongdao/Towards-Realtime-MOT) )
Computer Vision | Papers With CodeDec 21, 2020
**Denoising** is a task in image processing and computer vision that aims to remove or reduce noise from an image. Noise can be introduced into an image due to various reasons, such as camera sensor limitations, lighting conditions, and compression artifacts. The goal of denoising is to recover the original image, which is considered to be noise-free, from a noisy observation. ( Image credit: [Beyond a Gaussian Denoiser](https://arxiv.org/pdf/1608.03981v1.pdf) )
The Child Affective Facial Expression (CAFE) set: validity and reliabilityDec 18, 2020
Emotional development is one of the largest and most productive areas of psychological research. For decades, researchers have been fascinated by how humans respond to, detect, and interpret emotional facial expressions. Much of the research in this area ...
10 GitHub Repositories to Master Computer VisionSep 24, 2012
The GitHub repository includes up-to-date learning resources, research papers, guides, popular tools, tutorials, projects, and datasets.
magazines
National Magazine Awards 2026 NominationsMar 1, 2026
The best writing of 2025 as chosen by the American Society of Magazine Editors
Vintage Covers of Famous Fantastic Mysteries Magazine From the 1940s and Early ’50sSep 28, 2025
Famous Fantastic Mysteries was a U.S. pulp magazine that specialized in reprinting classic tales of science fiction, fantasy, and adventure.
It debuted in 1939 under the Munsey Company, already known for popular titles like Argosy, and quickly gained a devoted audience. The magazine revived olde
Mary Petty, the Mysterious Cover Artist Who Captured the Decline of the RichAug 25, 2025
Chris Ware on the New Yorker artist, who contributed dozens of covers about the wealthy Peabody family and their housemaid, Fay.
Download Issues of “Weird Tales” (1923–1954): The Pioneering Pulp Horror MaJun 12, 2024
We live in an era of genre. Browse through TV shows of the last decade to see what I mean: Horror, sci-fi, fantasy, superheroes, futuristic dystopias…. Take a casual glance at the burgeoning global film franchises or merchandising empires.
Inside America’s Most Interesting Magazine, and Media’s Oddest WorkplaceMar 30, 2021
The publication of the “Harper’s letter” attracted huge attention. Most people had stopped reading the magazine, which is stranger and better than you might expect.
Some research on shipping print zinesDec 23, 2019
How to write zines with simple toolsSep 2, 2019
magic
When Your Father Is a Magician, What Do You Believe?Sep 16, 2025
A childhood spent under the spell of sleight-of-hand taught me skepticism, curiosity, and the habit of looking beneath appearances.
How Magic Tricks Help Us Understand Animal MindsJun 12, 2024
By performing tricks for birds, monkeys and other creatures, researchers hope to learn how they perceive and think about their world
Why we practice magic | Princeton University PressApr 16, 2024
Not many academic philosophers discuss magic, however, five centuries ago, prominent Renaissance philosophers wrote extensive treatises on the topic.
For neuroscience, magic opens a doorway to multiple realities | Psyche IdeasSep 22, 2022
The transition in magic from possible to impossible can answer some of the key questions in philosophy and neuroscience
Embrace the Grind - Jacob Kaplan-MossApr 12, 2021
Sometimes, programming feels like magic: you chant some arcane incantation and a fleet of robots do your bidding. But sometimes, magic is mundane. If you’re willing to embrace the grind, you can pull off the impossible.
Ricky Jay’s Magical SecretsJul 10, 2019
From 1993: The magician’s deft illusions flout reality, and he rejects the notion that magic is a suitable entertainment for children.
magnets
Chinese physicists produce most powerful stable magnetic field on EarthSep 29, 2025
Development could have implications for power transmission, nuclear fusion and superconducting magnetic levitation.
Advanced Magnet Manufacturing Begins in the United StatesFeb 9, 2025
MP Materials begins manufacturing rare earth magnets, including Neodymium magnets, in the U.S. This marks a significant step for the domestic production of permanent magnets, crucial for industries like EVs and defense. Despite challenges, this move aims to reduce reliance on Chinese imports.
Physicists magnetize a material with lightJan 7, 2025
MIT physicists created a long-lasting magnetic state in a material, using only light. The results provide a new way to control and switch antiferromagnetic materials, which are of interest for their potential to advance information processing and memory chip technology.
Using Permeability to Understand Magnetic Core SaturationJul 15, 2024
In this article, we learn about core saturation and why it should be avoided in most applications. We then examine how different ways of defining permeability can help us predict the saturation flux density of a magnetic core.
Hysteresis Loss: Estimation, Modeling, and the Steinmetz EquationJul 2, 2024
The hysteresis effect is one of the main sources of loss in ferromagnetic materials. In this article, we learn to calculate the hysteresis loss of a magnetic core and work through some example problems.
Understanding Magnetic Field Energy and Hysteresis Loss in Magnetic CoresJun 27, 2024
In this article, we use the concept of magnetic field energy to explore the relationship between a core's hysteresis loss and its B-H curve.
Understanding Dimensional Resonance in High-Frequency Magnetic CoresJun 20, 2024
In this article, we explore the effect of dimensional resonance on the magnetic field distribution in high-frequency ferrite cores.
Diamagnetic, Paramagnetic, and Ferromagnetic Materials ExplainedMay 23, 2024
This article examines three different types of magnetic materials and how they react to an external magnetic field.
Key Concepts of Magnetic MaterialsMay 13, 2024
This article discusses the following basic concepts related to magnetic materials: the magnetic dipole moment, magnetization vectors, susceptibility, and permeability.
Cow Magnets | Stanford MagnetsApr 11, 2024
Cow magnets are very popular with farmers, ranchers, and veterinarians since they are a well-known method of preventing hardware disease in cattle.
Can a Magnet Ever Have Only One Pole?Mar 1, 2024
Electron tornadoes that mimic “magnetic monopoles” emerge from specks of rust
The existence of a new kind of magnetism has been confirmedFeb 16, 2024
Altermagnets, theorised to exist but never before seen, have been measured for the first time and they could help us make new types of magnetic computers
Magnetohydrodynamic Drive – Silent Water PropulsionJul 24, 2023
DARPA, the US Defense Advanced Research Projects Agency, is now working on developing a magnet-driven silent water propulsion system - the magnetohydrodynamic (MHD) drive. The primary reason is to develop silent military naval craft. Imagine a nuclear submarine with an MHD drive, without moving parts, that can slice through the water silently. No moving parts
The Magnet That Made the Modern WorldJun 22, 2022
Masato Sagawa and John Croat explain how they invented the neodymium-iron-boron permanent magnet
Soft Magnets Promise To Make Electric Motors 3 Times LighterDec 11, 2021
Researchers from the Carnegie Mellon University have developed soft magnetic materials that promise to make electric motors up to four times lighter.
Opposites Attract: A Review of Basic Magnetic Theories - Technical ArticlesDec 1, 2021
Electric machineries are based on the basic principles of electromechanical conversion, which use either the electrostatic or the electromagnetic principle. This technical article deals with the magnetic circuit theory for the conversion of one form of energy to another.
A Lone Postman Delivers the Mail to the Far Reaches of the Big BendOct 16, 2019
Not many people will drive the mail to places the U.S. Postal Service won’t. Seventy-one-year-old Gilbert Lujan is one of them.
Why so may hip startups advertise with snail mailNov 2, 2018
Casper, Glossier, Harry’s, and Away love to send you mail.
Riding With the Diplomatic Couriers Who Deliver America's Secret MailSep 5, 2018
The little-known Diplomatic Courier Service works like your interoffice mail system, but on a planetary scale, with complex protocols to ensure the safe transport of sensitive material by land, air, and sea.
mailchimp
Website Builder: Make a Website for Your Business | MailchimpJun 1, 2020
Our website builder makes it easy to create a website for your business, or to connect your existing site to Mailchimp. Try it today!
make
The Case for Makefiles in Python Projects (And How to Get Started)Aug 5, 2025
Most Python projects rely on scattered scripts and commands. Learn how makefiles pulls it all together into one clean, repeatable workflow.
Makefile Tutorial by ExampleMay 16, 2023
Using the Make Utility and Makefiles in Linux [Guide]Dec 7, 2022
Learn the basics of makefile and how to use the make utility for building your applications in Linux with a sample C project.
Building Web Software With Make — Smashing MagazineDec 11, 2021
My hope is for you to see that Make is an automation/orchestration tool that can be used in place of other modern build tools, and will help to strengthen your understanding and ability to use the terminal/shell environment (which is a big plus in my opinion, and helps open up many avenues of technical progression). Whole books have been written on the topic of Make and writing Makefiles so Mark will leave it up to you to investigate further beyond this post if he manages to kindle your interest.
Introduction to modern CMake for beginners - Internal PointersSep 16, 2020
A look at one of the most popular build systems for C and C++.
malware
We hid backdoors in ~40MB binaries and asked AI + Ghidra to find them - Quesma BlogFeb 22, 2026
BinaryAudit benchmarks AI agents using Ghidra to find backdoors in compiled binaries of real open-source servers, proxies, and network infrastructure.
Quishing: The hidden danger lurking in the QR codesJul 28, 2025
More than 26 million Americans have been directed to malicious sites after scanning QR codes without verification, a practice engaged in by 73% of the
Try This One Weird Trick Russian Hackers HateJun 30, 2025
In a Twitter discussion last week on ransomware attacks, KrebsOnSecurity noted that virtually all ransomware strains have a built-in failsafe designed to cover the backsides of the malware purveyors: They simply will not install on a Microsoft Windows computer that…
I use Zip Bombs to Protect my ServerApr 30, 2025
The majority of the traffic on the web is from bots. For the most part, these bots are used to discover new content. These are RSS Feed readers, search engines crawling your content, or nowadays AI bo
The Rise of Slopsquatting: How AI Hallucinations Are Fueling...Apr 13, 2025
Slopsquatting is a new supply chain threat where AI-assisted code generators recommend hallucinated packages that attackers register and weaponize.
Microsoft Presents a Comprehensive Framework for Securing Generative AI Systems Using Lessons from Red Teaming 100 Generative AI ProductsJan 18, 2025
The rapid advancement and widespread adoption of generative AI systems across various domains have increased the critical importance of AI red teaming for evaluating technology safety and security. While AI red teaming aims to evaluate end-to-end systems by simulating real-world attacks, current methodologies face significant challenges in effectiveness and implementation. The complexity of modern AI systems, with their expanding capabilities across multiple modalities including vision and audio, has created an unprecedented array of potential vulnerabilities and attack vectors. Moreover, integrating agentic systems that grant AI models higher privileges and access to external tools has substantially increased the attack surface and
Lessons From Red Teaming 100 Generative AI ProductsJan 18, 2025
New paper from Microsoft describing their top eight lessons learned red teaming (deliberately seeking security vulnerabilities in) 100 different generative AI models and products over the past few years. …
98 Hardware Security Failure Scenarios (NIST)Dec 3, 2024
A new technical paper titled “Hardware Security Failure Scenarios: Potential Hardware Weaknesses” was published by NIST. Abstract “Hardware is often assumed to be robust from a security perspective. However, chips are both created with software and contain complex encodings (e.g., circuit designs and firmware). This leads to bugs, some of which compromise security. This publication... » read more
384,000 sites pull code from sketchy code library recently bought by ChinesJul 4, 2024
Many website admins, it seems, have yet to get memo to remove Polyfill[.]io links.
What You Get After Running an SSH Honeypot for 30 DaysJul 3, 2024
What is a honeypot?A honeypot detects and records attacks when an attacker tries to break into a system. The honeypot we will discuss here is an SSH honeypot. Environment12OS: Ubuntu 24.04 LTS x86_6
What Developers Can Grok From the Latest PyPI Package AttackJun 8, 2024
A malicious PyPI package, named “pytoileur,” was found by researchers at Sonatype after unusual behavior was noticed in the code.
Mystery malware destroys 600,000 routers from a single ISP during 72-hour sMay 30, 2024
One day last October, subscribers to an ISP known as Windstream began flooding message boards with reports their routers had suddenly stopped working and remained unresponsive to reboots and all other attempts to revive them.
How to EMP-Proof a BuildingMay 26, 2024
Oak Ridge researchers mimicked electromagnetic pulses to block them
FBI confirms it issued remote kill command to blow out Volt Typhoon's botneFeb 3, 2024
Disinfects Cisco and Netgear routers to thwart Chinese critters
How a Group of Israel-Linked Hackers Has Pushed the Limits of CyberwarJan 27, 2024
From repeatedly crippling thousands of gas stations to setting a steel mill on fire, Predatory Sparrow’s offensive hacking has now targeted Iranians with some of history's most aggressive cyberattacks.
Malicious PyPI Packages Using Cloudflare Tunnels to Sneak Through FirewallsJan 9, 2023
Six malicious Python packages distributed via PyPI deploying info stealers and use Cloudflare tunnels to sneak through firewalls.
Never-before-seen malware is nuking data in Russia’s courts and mayors’ offDec 2, 2022
CryWiper masquerades as ransomware, but its real purpose is to permanently destroy data.
What is social engineering? Definition, types, attack techniquesNov 21, 2022
The top ways bad actors use social engineering to launch cyberattacks — and how to stop them to strengthen your organization's cybersecurity.
Inside the Ransomware Gangs That Extort HospitalsOct 2, 2022
They shut down patient care and put lives at risk. Would the pandemic finally slow them down?
Imported Bookmarks - start.meJul 30, 2022
New Air-Gap Attack Uses SATA Cable as an Antenna to Transfer Radio SignalsJul 19, 2022
Researchers demonstrated a new Air-Gap attack, dubbed SATAn, in which attackers can use SATA cable as a wireless antenna to transmit radio signals.
CSRF, XXE, and 12 Other Security Acronyms ExplainedJul 13, 2022
Acronyms are shortcuts, and we love using them, specially the catchy ones! Let's decipher some...
New working speculative execution attack sends Intel and AMD scramblingJul 12, 2022
Both companies are rolling out mitigations, but they add overhead of 12 to 28 percent.
Tsunami of junk traffic that broke DDoS records delivered by tiniest of botJun 15, 2022
The DDoS arms race shows no signs of slowing down.
The attacker’s toolkit: Ransomware-as-a-serviceJun 12, 2022
In recent years, threat actors have begun collaborating in a ransomware-as-a-service (RaaS) model to infiltrate organizations.
Building a Threat Intelligence Feed using the Twitter API and a bit of codeMay 29, 2022
The InfoSec community is highly active on Twitter. The platform is, among other things, used is for sharing malware and phishing URLs…
This browser you've never heard of is now worth a billion dollarsMar 27, 2022
Island is among the fastest companies to reach unicorn status
Top 6 Ethical Hacking ToolsJul 7, 2021
1. Kali Linux Kali Linux is the most used Ethical Hacking distro available, it is provided with...
The Lazarus heist: How North Korea almost pulled off a billion-dollar hackJun 25, 2021
In 2016 North Korean hackers planned a $1bn raid on Bangladesh's national bank and came within an inch of success. But how did they do it?
Researchers Uncover 'Process Ghosting' — A New Malware Evasion TechniqueJun 17, 2021
A new malware evasion technique has been discovered by researchers - 'Process Ghosting'
Hacker lexicon: What is a supply chain attack?Jun 7, 2021
From NotPetya to SolarWinds, it’s a problem that’s not going away any time soon.
Anatomy of an AttackAug 24, 2020
A detailed look at an application attack and how Application Detection and Response (ADR) stops it
Webinjects – The Basics – MalwareTechMay 15, 2020
It’s not uncommon for malware to use a technique known as formgrabbing; this is done by hooking browser functions responsible for encrypting and sending data to a webpage. By intercepting data before it is encrypted with SSL the malware can read the HTTP header and steal usernames and passwords from post data being sent to a target website.
management
High Variance ManagementFeb 7, 2023
How should you manage a team that is trying to achieve results out of the ordinary?
Startup Best Practices 1 - Situational Management by @ttunguzJul 18, 2022
In response to yesterday’s post on management design patterns, many readers asked for examples of best practices. So I’m going to write about the management best practices I have been taught and I have observed in startups. This is the first post of that series. The first management technique is called Situational Management, one that my wife, a terrific manager at Google, taught me. A manager’s most important function in a startup is to motivate employees to accomplish the business’s goal.
Report templates for fewer status meetings | Folding BurritosJul 5, 2022
Report templates, and guided steps to create them, so Product Managers spend less time in status meetings and more time out of the building
The Difference Between Good And Bad OrganizationsJun 23, 2022
"In a poor organization ... people spend much of their time fighting organizational boundaries, infighting, and broken processes."
3 Practices That Set Resilient Teams ApartMar 16, 2022
New research reveals that how we perform work as a team contributes more to resilience than external stressors. On resilient teams, individuals feel responsible for energizing each other. This is in stark contrast to teams who are challenged by frustrating ways of working and fractured relationships. As we move into the third year of pandemic uncertainty, adopting three simple practices will help managers build more resilient — and re-energized — teams.
Top Performers Have a Superpower: HappinessFeb 20, 2022
Employee well-being and happiness are surprisingly powerful predictors of performance.
8 Principles for Building a High-Performance Culture | The Leading Blog: A Leadership BlogFeb 10, 2022
Leadership Now is a leading source for leadership development and analysis. We believe that anyone can make a difference by leading from where they are.
The Secret Ingredient of Thriving Companies? Human Magic.Jan 15, 2022
The traditional corporate approach to motivating people has been a combination of carrots and sticks: a system of financial incentives designed to mobilize everyone around a plan designed by a few smart people at the top. Multiple studies have confirmed that, for any work involving cognitive or creative skills, financial rewards do not drive motivation and performance. So, what does? According to former Best Buy CEO Hubert Joly, it takes several mutually reinforcing elements to create an environment that unleashes the kind of human magic necessary for a company purpose to take root and flourish. He presents six ingredients to create your company’s unique recipe for human magic.
Things your manager might not knowMar 2, 2021
A week by week plan for starting to manage a new team – Mike CrittendenDec 10, 2020
Because I’m not good enough to wing it.
Psychological Safety and the Only Pyramid Scheme That WorksOct 20, 2020
It's a strange phenomenon that I've seen time and time again where if you lay out processes and tools that make things like software deployments safer, the effects continue to compound long after the change has happened. As people feel more and more secure in doing deployments, raising issues and sp
The Best Employees Are Not the Agreeable Ones, According to Adam GrantNov 14, 2019
Grant said he separates workers along two axes: givers and takers, and agreeable and disagreeable.
How to Create a Great Team Culture (and Why It Matters) - ACM QueueMay 4, 2019
As leader of the team, you have significant influence over your team
Why I Encourage My Best Employees to Consider Outside Job OffersSep 11, 2018
Most bosses live in fear that their best employees will leave, so it might seem to be a bad idea to encourage your stars to consider outside offers. But in fact, it sends employees a clear signal that you really care about their learning and development. Openness allows for an honest conversation between you and each employee about their future career path. If they do decide to leave, they’ll be more likely to recommend you as a great boss, and also more likely to return at some future point.
Level up with the Awesome Leadership and Management ListSep 6, 2018
Whether you're an experienced tech manager, a newbie, or an engineer who wants ...
How to Motivate Frontline EmployeesAug 31, 2018
One question that has long plagued organizations is how to create high-performing front lines — without unexpected consequences. The solution may be simple: Focus on motivating frontline workers. An experiment with a national retail organization found that transforming the operating model of some stores, to boost the motivation of their employees, raised productivity, customer satisfaction, and sales. The key was to get rid of motivational tactics that created emotional and economic pressure on employees, and instead build systems to encourage learning and a sense of play and purpose in the work.
Publicly credit your employeesOct 23, 2017
Designing High Performing TeamsMay 17, 2017
This is Part 2 of a three part series on high performing teams. Part one is of Design the Team You Need to Succeed Now you’ve decided you want more than a workgroup, what should you do? What does i…
Confidence Through Feedback, or Why Imposter Syndrome is the Wrong MetaphorOct 3, 2016
Imposter syndrome is often presented as a personal failing. A lack of confidence, our wrong-headed beliefs not matching the reality of how competent we are, or worst of a flaw of our gender. Just...
maps
The Strange History of Why North Is Always Up | TheCollectorOct 27, 2025
South-up maps are challenging traditional views of the Earth—and the political and cultural beliefs that go with them.
Real-world map data is helping make better games about farms and transportationMay 25, 2025
Games like City Bus Manager and Global Farmer are using real-world mapping data from OpenStreetMap for more realistic simulations.
Gulf of Mexico vs. Gulf of America: How digital maps display disputed namesMar 4, 2025
Mapping companies like Google Maps and Apple’s Maps navigate government pressure and political disputes over sea names. Here’s how they decide what to display.
FAA Aviation MapsFeb 10, 2024
Among all of the visual information published by the U.S. government, there may be no product with a higher information density than the Federal Aviation Administration’s aviation maps.
Creating Beautiful Topography Maps with PythonJan 17, 2022
Who needs GIS when you can build eye-catching 3D topography maps with Python?
Making a map in d3 js v 5Dec 16, 2021
The mysterious user editing a global open-source map in China’s favorMar 30, 2021
Open-source tools underpin technology used by millions of people, but they’re also vulnerable to manipulation.
An Archive of 800 Imaginative Propaganda Maps Designed to Shape Opinions &Dec 10, 2018
We tend to take a very special interest in archives and maps on this site—and especially in archives of maps. Yet it is rare, if not unheard of, to discover a map archive in which every single entry repays attention.
markdown
mermaid/README.md at develop · mermaid-js/mermaidMar 9, 2025
Generation of diagrams like flowcharts or sequence diagrams from text in a similar manner as markdown - mermaid-js/mermaid
Introduction to Markwhen, a Markdown Timeline Tool for DevsDec 7, 2024
With Markwhen, a developer or service designer can peer into the complexities of dealing with time representations.
Full Guide to Building a Professional Portfolio with Python, Markdown, Git,Aug 2, 2024
This article is a end-to-end guide to build a professional portfolio for developpers and data workers based on github page.
Introducing ‘Mark’, a Markdown CLI tool for GPT4o | Ryan ElstonJul 9, 2024
Introduction In this post, I want to introduce Mark, a simple CLI tool that uses Markdown and its syntax to interact naturally with the GPT4-vision/GPT4o models.
VikParuchuri/marker: Convert PDF to markdown quickly with high accuracyJun 4, 2024
Convert PDF to markdown quickly with high accuracy - VikParuchuri/marker
Marker: A New Python-based Library that Converts PDF to Markdown Quickly anMay 16, 2024
The need to convert PDF documents into more manageable and editable formats like markdowns is increasingly vital, especially for those dealing with academic and scientific materials. These PDFs often contain complex elements such as multi-language text, tables, code blocks, and mathematical equations. The primary challenge in converting these documents lies in accurately maintaining the original layout, formatting, and content, which standard text converters often need help to handle. There are already some solutions available aimed at extracting text from PDFs. Optical Character Recognition (OCR) tools are commonly used to interpret and digitize the text contained within these files. However, while
Conquering System Design Diagrams: My Shift to Mermaid.jsApr 9, 2024
Diagrams are the cornerstone of software development, illuminating complex systems and fostering...
Basic Syntax | Markdown GuideAug 20, 2023
The Markdown elements outlined in the original design document.
Markdown Tutorial Using Rails appMay 30, 2022
In this markdown tutorial using rails app learn a step-by-step process to add Markdown support to the Rails app using Redcarpet and Coderay gems.
Render mathematical expressions in Markdown · GitHub ChangelogMay 28, 2022
Render mathematical expressions in Markdown
Creating diagrams - GitHub DocsMay 20, 2022
Create diagrams to convey information through charts and graphs
Include diagrams in your Markdown files with MermaidFeb 18, 2022
Mermaid is a JavaScript based diagramming and charting tool that takes Markdown-inspired text definitions and creates diagrams dynamically in the browser.
10 Useful Resources for Learning Markdown SyntaxJan 13, 2022
Want to learn more about Markdown? We've gathered 10 easy-to-understand resources for you! Check out the 10 Markdown tutorials & reference guides here!
Markdown CheatsheetDec 11, 2021
Google Chrome, Firefox, and Thunderbird extension that lets you write email in Markdown and render it before sending. - adam-p/markdown-here
Learn How to Write Markdown & LaTeX in The Jupyter Notebook | by Khelifi AhMar 22, 2021
Not only Jupyter, Google Colab, R Markdown, and much more.
Learnlatex.org: A place to learn LaTeX onlineMar 22, 2021
market-basket
5 Statistical Methods That Dominate Their Industries (and Why)Dec 22, 2025
Discover which statistical methods dominate healthcare, finance, tech, retail, and sports analytics, and why these industry-method pairings became indispensable standards.
How to Find Frequent Itemsets with the Apriori Algorithm in PythonNov 7, 2025
Learn how to use Python's Apriori algorithm to find frequent itemsets in transaction data automatically.
How to Calculate Support, Confidence, and Lift in PythonSep 8, 2025
Learn to calculate support, confidence, and lift metrics for market basket analysis using Python's mlxtend library.
Understanding Market Basket Analysis: A Beginner’s GuideSep 3, 2025
Discover hidden customer purchasing patterns with market basket analysis to optimize product placement and increase sales.
What If Dynamic Pricing Was Solely Used To Reduce Prices? - RetailWireAug 19, 2025
Dynamic pricing remains a hotly contested concept in retail, particularly grocery. What if the pricing model was deployed solely to the benefit of consumers?
Market Basket Analysis using PythonOct 30, 2023
In this article, I'll take you through the task of Market Basket Analysis using Python. Market Basket Analysis using Python.
A Guide to Association Rule MiningApr 5, 2023
Create insights from frequent patterns using market basket analysis with Python
Apriori Algorithm for Association Rule Learning — How To Find Clear Links BJul 13, 2021
Explanation and examples of frequent itemset mining and association rule learning over relational databases in Python
Instacart Market Basket Analysis. Winner’s Interview: 2nd place, Kazuki… |May 1, 2021
Winner’s Interview: 2nd place, Kazuki Onodera
Affinity Analysis (Market Basket Analysis)Feb 20, 2021
Have you ever wondered how often do you buy certain items together? Why do you buy some items together? How likely do you purchase an item…
PatternMining/market_basket_analysis.ipynb at main · LaurinBrechter/PatternMiningSep 24, 2015
Some Projects in the area of pattern / process mining - LaurinBrechter/PatternMining
Market Basket Analysis Using High Utility Itemset MiningSep 24, 2011
Finding high-value patterns in transactions
marketing
Why branded merch is the next post-ironic trend - Fast CompanyDec 18, 2025
Fast casual restaurant chains are turning to merch, fashion, perfumes, apparel—and to fans, it’s no joke.
The Airport-Lounge WarsNov 24, 2025
Airlines and their credit-card-company partners compete to provide the best food, alcohol, and bathrooms, and the right amount of access, in the contest to attract frequent fliers. Zach Helfand reports.
A Guide to RFM Analysis using PythonAug 26, 2025
In this article, I'll take you through a practical guide to RFM Analysis using Python. A Guide to RFM Analysis using Python.
How dupes turned online shopping upside down | The VergeAug 5, 2025
Most of what we see online is a copy of something else. There’s a whole ecosystem of influencers who focus their content on findings dupes of something else, and brands hawking dupes as a marketing tactic. When everything is the same, who gets to claim ownership over ideas?
The 15 Best Product Catalog Templates for InDesign in 2025Jul 23, 2025
A curated collection of InDesign templates to help you create clean, professional, and structured layouts for product catalogs. Includes both free and premium templates.
How Pop Mart Won Young Customers in a Fragmented Attention EconomyJul 10, 2025
Three lessons from the Chinese brand behind Labubu.
Passion into Profit: Guide to Affiliate Marketing as a Side HustleFeb 11, 2025
Turn your passion into profit! Learn step-by-step how to start affiliate marketing as a successful side hustle.
The Cold Email HandbookDec 13, 2024
Learn how to master cold email outreach from $0 to $1M ARR. A comprehensive playbook on infrastructure, copywriting, and AI-powered personalization at scale.
I tried every email marketing tool — these are the best (2024)Nov 17, 2024
After 14 years with MailChimp, I decided to switch. I researched the top 26 email marketing tools to find a replacement and here’s what I discovered.
The Bargain Bin EvolvesJun 2, 2024
Thoughts on modern commerce from going to a bin store. It’s a place where e-commerce returns go to die.
The Haves and Have-Nots: How the Knicks’ Celebrity Row WorksMay 11, 2024
A secretive Madison Square Garden committee makes VIP ticket decisions based on their own inscrutable definition of celebrity level.
What is the Blemishing Effect? Why Imperfections Aren’t Always BadApr 16, 2024
What is the Blemishing Effect? This psychological principle says that when we show a little negative information alongside the positive, we can make something seem more attractive. Lots of brands use this effect to make themselves more lovable. Just take Pringles who’s 2023 Super Bowl ad showed people getting their hands stuck at the bottom
Elizabeth Goodspeed on the delicate art of nostalgia in brandingMar 20, 2024
Our US editor-at-large dissects the emotional potency of heritage branding and how companies try (and sometimes fail) to capitalise on it.
What Happens When TikTok Is Your Marketing DepartmentFeb 17, 2024
The Pink Stuff, a home cleaning paste, went from total obscurity to viral sensation — and Walmart staple — thanks to one “cleanfluencer” and her legion of fans.
How an Ugly Single-Page Website Makes $5,000 a Month with Affiliate MarketiJan 23, 2024
No need to create a fancy and modern website with hundreds of pages to make money online.
Back to Basics: How to operate a successful private label brandOct 19, 2023
Proprietary items work best if retailers differentiate them through either cost or innovation and are thoughtful about choosing categories, experts say.
Burning money on paid ads for a dev tool – what we've learnedSep 29, 2023
Since starting PostHog in 2020, we’ve learned a bunch about what does and doesn’t work when it comes to marketing to engineers . Paid ads is a…
From “Heavy Purchasers” of Pregnancy Tests to the Depression-Prone: We FounJul 24, 2023
A spreadsheet on ad platform Xandr’s website revealed a massive collection of “audience segments” used to target consumers based on highly specific, sometimes intimate information and inferences
How Sight—Not Taste, Smell, or Touch—Became the Sense of the Supermarket -May 9, 2023
When it comes to buying food, sight has usurped all other senses. What are the consequences of relegating smell, taste, and touch to the sidelines?
11 Product Labels for Max ConversionsMay 8, 2023
Paraphrasing technical product details into easy-to-understand labels drives ecommerce conversions. Here's how, with examples.
The Future of Ecommerce: How a Product Becomes a PurchaseMar 24, 2023
General Partner Connie Chan on how leading brands are using AI and other technology to combine the serendipitous discovery of offline shopping with the infinite options of online shopping. Today, most of the Western world revolves around search-based online commerce. This means that most shoppers type directly what they want into a store search bar,...
China’s Digital Landscape in 2020 | KAWO 科握Mar 20, 2023
A comprehensive overview of the China social media landscape in 2020 - know how to navigate and help marketing teams achieve success in Chinese social!
Sponsorship Definition & Meaning | Dictionary.comMar 19, 2023
The world's leading online dictionary: English definitions, synonyms, word origins, example sentences, word games, and more. A trusted authority for 25+ years!
The Unexpected Benefits of Email ValidationMar 15, 2023
Find out the many unexpected benefits of email validation for email marketing to make the most of your efforts and resources.
Why we usually can't tell when a review is fakeMar 13, 2023
Is that review real or fake? Most of us can't tell
The rise of the scented-candle industrial complexFeb 26, 2023
Why is everyone waxing on about Diptyque?
Content Syndication: What It Is & How to Do It SuccessfullyFeb 16, 2023
This article will discuss content syndication in more detail, how it works, and the benefits of using this technique.
15 Press Release Distribution ServicesJan 17, 2023
Spreading the word on product launches, updates, and collaborations is difficult. Press releases can help, especially when distributed to targeted media outlets.
What Can We Learn from Barnes & Noble's Surprising Turnaround?Jan 1, 2023
Digital platforms are struggling, meanwhile a 136-year-old book retailer is growing again. But why?
Ultimate Guide on Working with Suppression ListsDec 28, 2022
Email suppression lists are a powerful tool that every email marketer should use. Since suppression lists allow keeping your sending reputation and email
Content Strategy 101Nov 14, 2022
A content strategy is a high-level plan that guides the intentional creation and maintenance of information in a digital product.
Vending machines will sell you (almost) anythingAug 19, 2022
Eggs, champagne, underwear, hats for your cat. Here’s why “unattended retail” is taking off — especially with Gen Z.
How Paper Catalogs Remain Relevant in a Digital AgeJul 19, 2022
Whether or not you should pursue a catalog strategy is a question that deserves significant thought. As digital marketing becomes more complex, it may make a lot of sense to send out correctly designed catalogs to the right customers. For e-commerce retailers without physical stores, catalogs can effectively mimic stores’ sensory experiences to enhance customer affinity. For multichannel retailers, by understanding the channel preferences of current customers through transactional data, multichannel retailers can add an effective catalog marketing channel to their store and e-commerce channel strategies.
How Two Companies Hooked Customers On Products They Rarely UseJul 19, 2022
Not every business needs to have habit-forming products. Here's how two companies hooked customers and formed habits with products they rarely used.
26 Elements of a Gamification Marketing Strategy : Social Media ExaminerJul 18, 2022
Game-based marketing: a gamification marketing guide to create brand awareness and drive user engagement for your business.
Why a Surprise Drop Can Be a Great Marketing Ploy for BrandsJul 18, 2022
Hulu and Beyoncé have pioneered a new way to generate hype.
5 audiences you should exclude from your PPC campaignsJul 18, 2022
Negative audiences help reduce wasted spend and prevent shoppers from being retargeted with products too many times.
How to Build an Amazon Affiliate Website - 2024 Guide - Make A Website HubJul 18, 2022
When it comes to making money online you’re going to have a lot of options at your disposal. Frankly, it can be quite overwhelming just choosing an online
Why Marketing Flywheels Work - SparkToroJul 18, 2022
The first few years of my career were awful. Drowning in debt, losing nine out of ten pitches for new business, failing to earn clients. It felt like
Neil Patel's Digital Marketing BlogJul 18, 2022
Your #1 resource for digital marketing tips, trends, and strategy to help you build a successful online business.
Payless punks fashionistas by opening a fake luxury store and inviting them to comment on its 'designer' shoesJul 18, 2022
Bargain shoe chain Payless recently took over a Santa Monica retail shop and turned it into Palessi, a luxury store selling their bargain shoes. Then they invited influencers to the…
The Seven Deadly Sins of Marketing AutomationJul 18, 2022
Marketing Strategy - Marketing automation is only as good as the person using it. Failing to properly implement and use it just sets you up for frustration in the short term—and failure in ...
Justin Timberlake And The AC/DC RuleJul 14, 2022
A lesson from the Australian classic rockers explains why the pop star's newest album, which hasn't generated glowing reviews or massive radio hits, still had an explosive opening sales week.
Five Questions Companies Should Ask Before Making an Innovation-Driven AcquisitionJul 5, 2022
The Swiss pharmaceutical giant Roche is nothing if not determined in its quest to acquire Illumina, the San Diego-based leader in genetic-sequencing equipment. In January, after Illumina’s board rebuffed Roche’s initial overtures, Roche made a $5.7 billion tender offer directly to shareholders. When that didn’t succeed, it extended the offer to midnight last Friday. Now […]
Anatomy of a Product Placement (Published 2022)Jul 5, 2022
As consumers skip ads and streaming content balloons, brands aim to be everywhere all at once.
Saudi-backed LIV Golf shows how ‘sportswashing’ can backfireJul 4, 2022
Saudi-backed LIV Golf shows how 'sportswashing' can backfire.
Hacker NewsJul 4, 2022
Sponsoring a football club is about more than just advertising, it's a status symbol.
What are the best Marketing Automation Tools?Jun 28, 2022
HubSpot, Marketo, Pardot, Salesforce Marketing Cloud, and ActiveCampaign are the most popular tools in the category "Marketing Automation". "Lead management" is the primary reason developers pick HubSpot over its competitors, while "Salesforce.com integration" is the reason why Marketo was chosen.
What Makes Content Spread: Anatomy of a Post With 500,000+ LikesJun 25, 2022
How can I make my content go viral? I sat down with the viral marketing geniuses Marc and Angel to discuss content marketing and other key tips.
3 pitfalls of PPC experimentsJun 25, 2022
Knowing what to test and how to interpret the results based on nuances and oddities of experiments is an important skill for people, not automations.
165 Great Email Subject Lines from SXSW Catalog [updated]Jun 25, 2022
Increase your email open rates. Get inspired by these 165 great email subject lines from the SXSW catalog. Check them out!
Luxury groups ponder ways to get rid of their unsold inventoryJun 23, 2022
Other than slashing prices
The Marketing Stack of a Lazy Saas CompanyJun 23, 2022
How we're using technology and automation to turn high-quality leads into product demos for our business development team.
How to Market Taboo ProductsJun 23, 2022
Tips from successful campaigns promoting everything from shapewear to prostate health.
Customer-Channel Fit: How to Identify the Right B2B SaaS Marketing ChannelsJun 14, 2022
A deep dive into our process for identifying the optimal B2B SaaS Marketing Channels for our clients, or Customer-Channel Fit.
What Is a Transactional Email? Types and Best Practices (2024) - ShopifyJun 13, 2022
Dive into the world of transactional emails and their importance for ecommerce stores. Learn the types and best practices, with examples, in this guide.
Keyword Research 101: Everything You Need To KnowJun 7, 2022
Keyword research is a critical part of any SEO strategy. If you get it right, then you’ll bring high volumes of relevant traffic to your site. In this article, we are going to look at what keywords are, and why you need to research them.
How to buy a chicken sandwich in Shenzhen - Rest of WorldJun 1, 2022
Livestream e-commerce is a $100 billion industry in China, with influencers selling everything from cosmetics to fast food.
13 marketing automation tools that can help you boost your salesMay 27, 2022
The way we live our lives has an impact on our work. Long lists of typical chores may turn your
When Keyword Poaching Pays OffMay 20, 2022
Competitive poaching refers to the practice of bidding on ads for a competitor’s search terms, in order to poach customers searching for that brand. It’s a common tactic in the world of digital ads — but is it effective? The author shares results from the first-ever empirical study of this practice, which found that poaching can work well for higher-end brands, but may backfire for lower-end or mass market offerings. Specifically, the study found that when an ad poached customers who searched for a high-end brand, users clicked on it more, but when an ad poached a low-end or mass market target, users were less likely to click. Of course, the author notes that clickthrough rate is just one metric, and there may be other ways in which a poaching campaign could be harmful or beneficial. But these findings can help marketers add a bit of science to the art that is digital advertising, helping them to optimize campaigns for their unique products and customers.
How One Website Exploited Amazon S3 to Outrank Everyone on GoogleMar 16, 2022
Quick Intro to the World of SEO, Affiliate Marketing, and Amazon S3
9 Types of Influencer Marketing CampaignsFeb 8, 2022
How, exactly, should ecommerce marketers use influencers? Blog posts, social media, videos, other? We explain nine types of proven campaigns.
Is Old Music Killing New Music? - by Ted GioiaJan 20, 2022
All the growth in the music business now comes from old songs—with consumption of new music actually shrinking. How did we get here, and is there a way back?
Celebrity Ads Have Never Been WorseJan 16, 2022
Pitt. Depp. Wahlberg. Damon. Bad. Dumb. Stupid. Awful.
The Package Is the MessageNov 29, 2021
American consumers can’t resist the lure of a well-designed container. Of all the things I’ve purchased during the pandemic, the most useful has been a box cutter.
Marks & Spencer and Whole Foods Show Why Food Package Design Matters - TheNov 29, 2021
European stores like Marks & Spencer and Monoprix, and U.S. chains like Whole Foods, understand the powerful "appetite appeal" of grocery labels.
Finding Language/Market Fit: How to Make Customers Feel Like You’ve Read ThNov 17, 2021
After more than a decade of running B2B growth teams at PayPal and investing at 500 Startups, Matt Lerner now spends his days helping early-stage startups with growth. He's seen firsthand how changes in a handful of words can yield jaw-dropping differences in conversion — and accelerate a startup's course to product/market fit. Here, he makes the case for starting with language/market fit first, and offers up his 4-step process for getting there.
A Quickstart Guide to Positioning - April DunfordOct 21, 2021
Want to improve your product's positioning but not sure where to start? This article is going to give you everything you need to get started including what positioning is, why it matters, and how to improve it.
The Nasty Logistics of Returning Your Too-Small PantsOct 15, 2021
What happens to the stuff you order online after you send it back?
White Label Designs – All About Implementation, Design Systems, and New TecOct 15, 2021
Building white label products is more profitable than starting a new design every time. Learn how to properly implement white labelling.
There's a Giant Warehouse Full of Product Launches That FailedOct 14, 2021
Not open to the public, this expansive archive schools marketers in the art of pitchmanship
The Ultimate Guide to SEO for E-commerce WebsitesSep 1, 2021
Learn how to use effective SEO strategies to improve your e-commerce website's organic search rankings and visibility.
The Ultimate Guide to Google Ads Campaign ManagementAug 12, 2021
Managing a Google ads campaign requires understanding how to check, optimize, test, and change your ads. Read this post to learn more.
Your Brand Has Never Been Easier to DestroyJul 17, 2021
Welcome to the wild world of product displacement, in which no brand is safe from "hatejacking" and other threats.
Marketing Automation: What is it, Examples & Tools [2021]Jul 14, 2021
Not sure where to start with marketing automation? Here are 25 tools, and how to use them to streamline and improve your marketing.
The unique culture of Japanese convenience stores - BBC TravelJul 10, 2021
The true star of the Akutagawa Prize-winning novel Convenience Store Woman is the convenience store itself. But what is it that makes these shops so magical?
Japanese vending machines: the cutting edge of merchandising … and on the bJul 10, 2021
Media reports focusing on Japan's quirky vending machine culture dive into what new items are on offer and the risk they face due to competition from convenience stores.
The Chinese content farms behind Factory TikTokJun 27, 2021
How workers manufacturing products like aloe jelly and gardening gloves also became the influencers selling them.
Billboard EmpireJun 26, 2021
The evolution of the billboard, an object that very much tends to keep pace with the times. Who doesn’t love outdoor advertising?
Science SaysJun 17, 2021
3-min marketing recommendations from the latest scientific research. Join 30,000+ marketers, for $0.
We're leaking, and everything's fine: How and why companies deliberately leak secretsJun 12, 2021
Although the protection of secrets is often vital to the survival of organizations, at other times organizations can benefit by deliberately leaking secrets to outsiders. We explore how and why this is the case. We identify two dimensions of leaks:
The Art Of Deliberately Leaking Corporate SecretsJun 12, 2021
Although there may be risks for companies in leaking secrets, the researchers make a strong case for doing so when appropriate. It appears that some of the most prolific and careful leakers are also among the most profitable companies in the world.
How To Leverage a Beta Product Leak | CentercodeJun 12, 2021
You’re a few weeks into managing a beta test for a new product your company plans to release soon. You get an email from someone on your beta team that there has been a leak online. One of your testers took a picture of your company’s new gadget fresh out of the box and posted […]
The Ultimate Guide for Flyer Size and DesignMay 17, 2021
Although it may sound obsolete, a flyer is still one of the most effective and inexpensive ways to promote a business. They are also very easy to
The economics of movie product placementsMay 10, 2021
Today’s films are brimming with products from big-name brands. How exactly do these partnerships work? And is the payoff worth it?
SMS marketing doesn’t have to be invasive — 3 reasons why your business shoMar 1, 2021
SMS is best understood as a small part of a larger marketing strategy. Use it for quick updates, and things you want people to take action on immediately.
Product Packaging designs so innovative, they make it impossible to say a nJan 7, 2021
In today's consumer-centric world, packaging designs hold a very important place! A unique and attractive packaging design is what captures the interest and attention of your consumer. It pulls the consumer towards the product and even drives them to purchase it. Hence, allocating time, effort, and energy to create an appealing packaging design is extremely
The Top Affiliate Marketing NetworksJan 2, 2021
Looking to grow your affiliate marketing site but aren't sure which affiliate network is right for you? Here's everything you need to know.
Ads Don’t Work That Way | Melting AsphaltDec 26, 2020
How to Write Warm EmailsDec 18, 2020
Lessons from Running a Sale that Earned 3 Month's Profit in a WeekDec 10, 2020
Tips on running successful Black Friday sales for creators and Indie Hackers
How Advertisers Convinced Americans They Smelled BadDec 10, 2020
A schoolgirl and a former traveling Bible salesman helped turn deodorants and antiperspirants from niche toiletries into a multi-billion industry.
The Worst Rebrand in the History of Orange JuiceMay 1, 2020
They paid $35 million to then lose $20m in sales
8 Best CMS for 2020May 1, 2020
Content Management Systems are arguably the internet's most powerful web development tool. Ideal for web designers it is totally customisable and gives control over everything including all your own HTML.You only need one Craft installation to manage multiple sites' content, making it ideal if you…
Introducing the Periodic Table of Digital Commerce MarketingMar 9, 2020
Packing an astonishing amount of information into an easy-to-digest visual, it's well worth the download.
10 Email Marketing Automation Campaigns Your eCommerce Store Needs in 2020Feb 19, 2020
Reaching and engaging your email subscribers with incredible email marketing automation campaigns is every eCommerce business’s secret weapon to success.
Why Burger King Is Proudly Advertising a Moldy, Disgusting WhopperFeb 19, 2020
The chain's anti-preservatives pledge breaks just about every rule in advertising.
Why Restoration Hardware Sends Catalogs the Size of a ToddlerFeb 19, 2020
The surprising persistence of the mail-order business
What To Do If People Hate Your Brand MascotFeb 18, 2020
Does your website have a mascot that the audience isn’t responding well to or that outright hates it? Or maybe your new client has brought along a mascot that you’re unsure about? If a mascot’s design or messaging isn’t on point with an audience, there’s no sense in keeping it as is and losing business over it. Today, Suzanne Scacca is going to give you four options for turning your hated brand mascot into one the people love.
Never Mind the Internet. Here’s What’s Killing Malls.Feb 15, 2020
Yes, the internet has changed the way we shop. But taken together, other factors have caused greater harm to traditional retail stores, an economist says.
How I Started A $30K/Month Business Selling Custom Trade Show BoothsFeb 2, 2020
Hello! Who are you and what business did you start?My name is Ryan Schortmann and I’m the founder of Display Pros. We are a custom trade show display booth company offering easy to use portable display “kits” for small and medium businesses wanting to get into the trade show game. Our f...
No One Cares About Your LogoDec 23, 2019
Let’s take some pressure off logos—they really don’t need to work so hard. Here’s what drives your brand instead.
An Ode to the Video Store Chain, on the Occasion of Blockbuster’s DemiseDec 15, 2019
Ah, video stores, where viewers—and cinephile clerks—got to develop eclectic tastes.
Meet the man keeping America's dead malls aliveSep 8, 2019
Is there hope for our once-beloved social and commercial centers?
Skip Rates: Why The First 30 Seconds Matter More Than EverAug 30, 2019
With the album on the wane and attention spans shorter than ever, the first 30 seconds of of a song matter more than. Not only do they need to capture. Continue reading
How to Identify a Product Qualified Lead (PQL)Aug 29, 2019
More companies are switching from marketing qualified leads to track product qualified leads. Find out what a PQL is and how to optimize for them here.
SEO Checklist for Website Redesigns and ReplatformsAug 20, 2019
Major website redesigns and replatforms can kill organic search traffic. Use this checklist to minimize the impact.
Why Dollar Tree has struggled to grow Family DollarMar 7, 2019
Dollar Tree has struggled to grow Family Dollar because of its different business model.
Don’t Just Create an Event, Create an EcosystemFeb 27, 2019
Building a community is an essential step in establishing any company or brand as a leader in its respective industry. A brand community gives your
The power of brands, conscious and unconsciousFeb 10, 2019
Economists explore the complex forces that shape what ends up in your shopping cart and how that might change in the online marketplace
Best Buy’s Secrets for Thriving in the Amazon Age (Published 2017)Jan 31, 2019
Hubert Joly, Best Buy’s chief executive, has reshaped nearly every aspect of the business. He explains the playbook behind the company’s success.
Writing copy for landing pagesDec 21, 2018
Write copy that delights visitors, persuades prospects, and wins customers.
How to Write Follow Up Emails That Virtually Guarantee a Response (with TemSep 28, 2018
Your first message is only the start. Here’s a tested method for following up to get results.
Business school grads and quants are winning the battle to create the nextSep 14, 2018
These days my Instagram feed feels more like QVC than a social network. And many of these companies are enjoying tremendous success pitching natural deodorants, unique underwear, creative candles, glam glasses, stunning shoes -- all manner of well-crafted microbrands. We’re witnessing a cambrian explosion of new consumer startups.
People Don’t Buy Products, They Buy Better Versions of ThemselvesAug 25, 2018
What Apple, Samsung, and Starbucks learned from Pepsi
Forever 21 visual search tool boosted purchase value by 20%Aug 24, 2018
The fast-fashion retailer has debuted, and quickly expanded, an AI-based visual search and navigation tool for its mobile and e-commerce business.
What PopSugar learned from selling products through text messagesAug 13, 2018
PopSugar said it expects to have 20,000 subscribers by year's end to its text message program, which it's used to sell protein bars and housewares.
Why Sephora merged its digital and physical retail teams into one departmenApr 8, 2018
Since the teams were combined, Sephora's customer profiles have been rebuilt to include 360-degree data that tracks in-store purchases, interactions with sales people, online browsing and online purchasing.
How to Sell Embarrassing ProductsFeb 2, 2018
Consumers are more likely to buy embarrassing products when their embarrassment is mitigated by more-anonymous packaging. Specifically, consumers found products packaged in boxes with cool colors, small lettering, and a picture of the product to be more anonymous (and appealing) than products packaged in pumps or tubes with warm colors, medium or large lettering, and no picture. The findings show that the more anonymous a product looks, the less embarrassing a consumer finds it, and the more likely they are to purchase it.
How Spending $20,000 on a Domain Name Uncovered an Incredible Business OppoDec 28, 2017
We explain how we came to spend $20,000 on this domain, and the incredible business opportunities that exist, waiting for someone to bring them to life.
What to Do When Satisfied B2B Customers Refuse to Recommend YouOct 3, 2016
To build word of mouth, try these strategies.
The Psychological Difference Between $12.00 and $11.67 - The AtlanticOct 3, 2016
Consumers are primed to see ".99," but prices that deviate from that format can affect the way they interpret the cost.
mastodon
Requiem for Google Reader, gone but not forgottenMar 16, 2023
RSS pioneer Dave Winer sees Mastodon as a positive sign
The Man Behind Mastodon Built It for This MomentNov 23, 2022
People fleeing Twitter have turned to Eugen Rochko’s alternative. He says social networks can support healthy debate—without any one person in control.
materials
Space Forge Evaluates In-Orbit Manufacturing TechMar 2, 2026
Space Forge's orbital furnace could redefine semiconductor production with space-grown crystals.
The Datacenter Bible - From Layman to Expert in 100 PagesFeb 25, 2026
The definitive 100+ page guide to the thermodynamics, scarcity, and heavy assets powering the AI revolution.
NASA Return to Venus Depends on New Class of Ceramic Sensor_EE TimesFeb 23, 2026
To survive Venus, NASA is returning to advanced ceramic sensors that can operate where conventional silicon electronics rapidly fail.
5 Products Made from Cardboard: The Bench Supports 300 Pounds - Yanko DesignFeb 18, 2026
Cardboard was once seen as just packaging, but it is now becoming a design hero. As sustainability and cost efficiency drive modern innovation, this humble material is being reimagined for far more than shipping boxes. Lightweight, strong, and easily recyclable, it inspires designers to create accessible, eco-friendly products without compromising on aesthetics or performance. From
Breakthrough Metal Could Revolutionize Chip Cooling And Thermal ManagementJan 22, 2026
A multi-institution research team has discovered a metallic material that conducts heat nearly three times more efficiently than copper or silver.
1,000 CFETs, SK Hynix Next-Gen NAND, Interconnects Beyond Copper, 2D Materials, and MoreJan 14, 2026
IEDM 2025 Round-Up
New battery idea gets lots of power out of unusual sulfur chemistryJan 7, 2026
Rather than being used as a storage material, the sulfur gives up electrons.
'It's amazing' – the wonder material very few can makeDec 12, 2025
Just a handful of companies can make cadmium zinc telluride, a material with powerful properties.
Rubber CMOS Brings Stretchable ‘Sensory Skin’ Closer to RealityNov 25, 2025
A new “rubbery CMOS” platform combines fully stretchable p- and n-type transistors, enabling skin-like logic circuits and a tactile “sensory skin” for wearables, implants, and soft robotics.
‘Strange metals’ point to a whole new way to understand electricityNov 15, 2025
Exotic materials with bizarre electron behavior could pave the road to revolutionary technologies
Strap RailNov 6, 2025
The early history of the United States runs along with the first years of the railroad.
Concrete’s Greatest WeaknessNov 4, 2025
The challenge of cure time🌌Get Nebula using my link for 40% off an annual subscription: https://go.nebula.tv/Practical-Engineering🏙️Watch 17 Pages: https:/...
Atomic-Scale Protein FiltersOct 15, 2025
How aquaporin and potassium channels filter hundreds of millions of water molecules or ions each second, by positioning the correct amino acid in the perfect place.
How a Norwegian chemist defeated lead paintAug 20, 2025
Lead paint was banned. Before that, it was outcompeted by a cheap and safe alternative.
Can Wood Replace Steel? Chemically Modified Superwood Makes a Bold CaseAug 8, 2025
InventWood just cracked the code on something that sounds like science fiction. They've figured out how to make wood stronger than steel by restructuring it at the molecular level. This isn't your typical engineered lumber story. We're talking about a material that delivers 50% more tensile strength than steel while weighing dramatically less. The Maryland
Materials and Process Innovation Enable Scaling of Next-Generation ChipsAug 5, 2025
Materials breakthroughs and process innovations are unlocking next-gen chip scaling, with Southeast Asia playing a pivotal role in semiconductor evolution. By Andrew Goh, Corporate Vice President and General Manager, Southeast Asia at Lam Research
DeepMind unveils AlphaEarth to map planet in 10-meter detailJul 31, 2025
Google DeepMind has announced a new artificial intelligence system, AlphaEarth Foundations, designed to analyze the Earth's surface by integrating vast
The Rise of Shippable MicrofactoriesJul 26, 2025
Can microfactories solve prefab's economic problem by inverting the factory model?
Is It Cake? How Our Brain Deciphers Materials - NautilusJul 9, 2025
Neuroscientists are discovering how this basic ability, essential to our survival, works
Emerging NVM: Review Of Emerging Memory Materials And Device ArchitecturesJul 8, 2025
A new technical paper titled “Emerging Nonvolatile Memory Technologies in the Future of Microelectronics” was published by researchers at Texas A&M University, University of Massachusetts and USC. Abstract “Memory technologies are central to modern computing systems, performing essential functions that range from primary data storage to advanced tasks, such as in-memory computing for artificial intelligence... » read more
Age of Invention: All Fired UpJul 5, 2025
The mystifying, centuries-long failure of the coal briquette
Nvidia and others court niche Japanese supplier to ease AI bottlenecksJun 26, 2025
Glass cloth maker Nittobo is latest example country's overlooked role in supply chain
Scientists Just Watched Metal Heal Itself—and They Can’t Explain HowJun 21, 2025
A cracked piece of metal fused itself back together in a lab in front of scientist—and no one was prepared for it.
The end of leadJun 12, 2025
Lead has been all but eliminated in most of the developed world. Doing the same for the rest of the world might not be difficult.
InventWood is about to mass produce wood that’s stronger than steelMay 12, 2025
The material has 50% more tensile strength than steel with a strength-to-weight ratio that’s ten-times better.
Brian Potter on what he has learned writing Construction Phyics - Marginal REVOLUTIONApr 19, 2025
Individual construction tasks have, on average, not gotten cheaper since at least the 1950s. Bricks haven’t gotten cheaper since the mid-19th century, despite massive improvements in brickmaking technology. Construction has a reputation for being slow to innovate, but innovations seem to spread in construction at roughly similar rates to other industries, like car manufacturing or agriculture. Single family […]
Why it's so hard to build a jet engineMar 1, 2025
Civilization's toughest technical challenges are those that require extraordinary (and constantly improving) performance to be delivered at a low cost.
How Will the Trump Tariffs Affect Construction?Feb 12, 2025
Earlier this month the Trump administration announced hefty 25% tariffs on Canadian and Mexican imports, along with an additional 10% tariffs on Chinese imports.
Advanced Magnet Manufacturing Begins in the United StatesFeb 9, 2025
MP Materials begins manufacturing rare earth magnets, including Neodymium magnets, in the U.S. This marks a significant step for the domestic production of permanent magnets, crucial for industries like EVs and defense. Despite challenges, this move aims to reduce reliance on Chinese imports.
A Pinch of Salt Boosts Aluminum BatteriesFeb 6, 2025
This sustainable, solid-state electrolyte design outlives lithium-ion batteries
How Japanese Masters Turn Sand Into Swords: The Art of Traditional Sword Making from Start to FinishFeb 5, 2025
We made sand think: this phrase is used from time to time to evoke the particular technological wonders of our age, especially since artificial intelligence seems to be back on the slate of possibilities.
Physicists magnetize a material with lightJan 7, 2025
MIT physicists created a long-lasting magnetic state in a material, using only light. The results provide a new way to control and switch antiferromagnetic materials, which are of interest for their potential to advance information processing and memory chip technology.
Exclusive: Electra found a cheap, clean way to purify iron, and it’s raising $257M to make it happen | TechCrunchJan 3, 2025
Electra has raised $76.3 million to clean up the dirty ironmaking industry, TechCrunch has learned. The startup has developed a novel method of using
Inside an American Rare-Earth BoomtownDec 29, 2024
Industrialists and researchers are plotting a new future for these critical materials
Exotic New Superconductors Delight and Confound | Quanta MagazineDec 6, 2024
Three new species of superconductivity were spotted this year, illustrating the myriad ways electrons can join together to form a frictionless quantum soup.
Strain engineering approach enhances performance of 2D semiconductor-based transistorsDec 3, 2024
The manipulation of mechanical strain in materials, also known as strain engineering, has allowed engineers to advance electronics over the past decades, for instance enhancing the mobility of charge ...
Browse Manufacturing MethodsNov 26, 2024
The Secret, Magical Life Of LithiumJul 14, 2024
One of the oldest, scarcest elements in the universe has given us treatments for mental illness, ovenproof casserole dishes and electric cars. But how much do we really know about lithium?
How the Math of Cracks Can Make Planes, Bridges and Dams SaferJun 30, 2024
Better predictions of how cracks grow can make machines and structures more reliable
Controlling Warpage In Advanced PackagesJun 25, 2024
Mechanical stresses increase with larger sizes and heterogeneous materials.
Plastic Properties TableJun 12, 2024
Use our plastics properties table to sort and compare plastic materials. Review typical, physical, thermal, optical, electrical properties. Ask an Expert or Get a Quote.
The solar industrial revolution is the biggest investment opportunity in hiJun 12, 2024
Solar is in the process of shearing off the base of the entire global industrial stack – energy – and the tech sector still lacks a unified thesis for how to best enable, accelerate, an…
The Strange Life of GlassJun 5, 2024
This essential substance has a history—and future—that’s far from clear.
Diamagnetic, Paramagnetic, and Ferromagnetic Materials ExplainedMay 23, 2024
This article examines three different types of magnetic materials and how they react to an external magnetic field.
Copper becomes the “the new industrial kingpin” thanks to AI, green energy,May 21, 2024
Copper is on the verge of a reign similar to oil's historic dominance, but fueled by entirely new forces. A
China’s ‘truly outstanding’ heat-resistant aluminium alloys are 6 times strMay 21, 2024
Scientists use nanoparticles to supercharge the mechanical properties of aluminium alloys.
The beauty of concreteMay 20, 2024
Why are buildings today simple and austere, while buildings of the past were ornate and elaborately ornamented? The answer is not the cost of labor.
Will Stone Replace Steel and Concrete?May 13, 2024
A recent viral tweet by Micah Springut, founder of stone-carving startup Monumental Labs, argued that it will be cheaper to build buildings with stone than with steel or concrete within the next 10 years.
Key Concepts of Magnetic MaterialsMay 13, 2024
This article discusses the following basic concepts related to magnetic materials: the magnetic dipole moment, magnetization vectors, susceptibility, and permeability.
What is Jesmonite and Why is it Gaining Popularity in Contemporary ProductApr 21, 2024
https://www.youtube.com/watch?v=81hX8WAdNXs Jesmonite, a flexible substance crafted from a fusion of gypsum sourced from sedimentary rock and water-based acrylic resin, is gaining popularity among artists, eco-conscious enterprises, and DIY enthusiasts. This material emerged in the UK in 1984 and is credited to Peter Hawkins. Jesmonite is known for its durability, flame resistance, and impact resistance, is
The world's semiconductor industry hinges on a single quartz factory in NorMar 26, 2024
The deposits formed 380 million years ago when Africa collided with North America.
This stretchy electronic material hardens upon impact just like “oobleck”Mar 22, 2024
Researchers likened material’s structure to a big bowl of spaghetti and meatballs.
Some Metals Mysteriously Heal Their Own CracksOct 3, 2023
Scientists accidentally discover metals that mend themselves without human intervention
America Just Hit the Lithium JackpotSep 17, 2023
The world’s largest known deposit was just discovered in Nevada. What does that mean?
Grade 5 Titanium Explained: The ‘Indestructible’ Metal Used to Build the ApSep 15, 2023
https://www.youtube.com/watch?v=xqyUdNxWazA&t=57s&pp=ygUFYXBwbGU%3D For a company that's been so bullish on Aluminum (or aluminium as Jony Ive called it), Apple's gradual shift to titanium feels like an end of an era. For two decades, Apple has pretty much revolutionized the use of aluminum in technology, but hey... it's the future, we're about to colonize Mars, and it's
Gradient Nanostructured SteelAug 31, 2023
Science fiction writers, who have to think deeply about the possible nature of future technology, often invent new sci-fi materials in order to make their future technology seem plausible. They seem to understand the critical role that material science plays in advancing technology. This is why sci-fi is full of fictional materials such as unobtainium,
The Story of Titanium - by Brian PotterJul 8, 2023
The earth contains a lot of titanium - it’s the ninth most abundant element in the earth’s crust.
Watching Paint Dry - by Ed Conway - Material WorldMay 24, 2023
The unexpectedly interesting story of car coatings and what they tell us about the modern world
MakeItFrom.com: Material Properties DatabaseMay 8, 2023
Why Are Lithium Prices Collapsing?Apr 30, 2023
Lithium prices shined from 2020 through 2022, driven by surging demand for electric vehicles, especially in China, alongside the precious metal’s limited supply. That trend stopped short in 2023, with the lithium price dropping sharply. Falling EV demand and increasing lithium supply are the main factors, but are they short or long term?
Should You Invest in Disruptive Materials?Nov 23, 2022
Why plastic doesn't dry in the dishwasherSep 4, 2022
Plastic is a staple of modern kitchens, but it comes with a frustrating problem – it doesn't dry properly in a dishwasher. Why?
The $5 billion hoard of metal the world wants but can’t have - MINING.COMNov 29, 2021
Experts say a raw aluminum stockpile in Vietnam is the biggest they have ever seen.
How to Build a 50000 Ton Forging PressAug 24, 2021
In the late 1940s and early 1950s, a revolution took place in American military aircraft design.
An Introduction to Rope: Construction and MaterialsJan 23, 2020
Despite the profound impact rope has had on humanity, you probably know very little about these mighty functional cords. Here's your starter guide.
The Beginning of the End for CopperNov 27, 2017
The FCC voted last Thursday to relax the rules for retiring copper wiring. This change was specifically aimed at Verizon and AT&T and is going to make it a lot easier for them to tear down old …
The Hidden Engineering of Landfills — Practical EngineeringSep 24, 2004
[Note that this article is a transcript of the video embedded above.] This is the Puente Hills Landfill outside of Los Angeles, California. The first truckload of trash was dumped here in 1957, and the trucks just kept coming. For more than five decades, if you threw something away in LA County, t
Synthetic diamond company Element Six to lead DAPRA Ultra-Wide Bandgap Semiconductors programSep 24, 2003
Will help to develop substrates, device layers, and junctions
Is the World Really Running Out of Sand? — Practical EngineeringOct 24, 2002
[Note that this article is a transcript of the video embedded above.] If you have to know the answer right away, it’s no; or at least, my goal with this video is to convince you that the world is not running out of sand. But if it were that simple, I wouldn’t be here (right?) and you probably woul
matplotlib
10 Python One-Liners for Statistical PlottingJul 29, 2025
Master fast, powerful ways to visualize data with these compact, ready-to-use Python one-liners.
I found a hidden gem in Matplotlib’s library: Packed Bubble Charts in PythoJul 30, 2024
Ever wished to design those beautiful Tableau based packed bubble charts? Follow along for a tutorial on the Matplotlib solution
5 Useful Visualizations to Enhance Your AnalysisMar 24, 2024
Use Python’s statistical visualization library Seaborn to level up your analysis.
Matplotlib: Make Your Plotting Life Easier with rcParamsFeb 21, 2024
Consistently beautiful plots with less code and minimal effort
3 Unique Charts You Wouldn’t Think Were Created with MatplotlibMar 21, 2023
Utilising Python’s Matplotlib to Create Advanced Data Visualisations
How to make 40 interactive plots to analyze your machine learning pipelineMar 19, 2023
A quick guide on how to make clean-looking, interactive Python plots to validate your data and model
3 Simple Ways to Create a Waterfall Plot in PythonFeb 9, 2023
Learn how to quickly create a presentation-ready plot to aid your data storytelling
How to Create Beautiful Waffle Charts for Data Visualisation in PythonFeb 9, 2023
A Great Alternative to Pie Charts for Data Visualisation
How to Create a GIF from Matplotlib Plots in PythonOct 30, 2022
A data visualization technique for 2-dimensional time series data using imageio
12 Essential Visualizations and How to Implement Them, Part 2Oct 19, 2022
We look at how to create the 12 most useful graphs and charts in Python and Streamlit
How to Create Storytelling Moving Bubbles Charts in d3js with Python.Oct 14, 2022
The MovingBubble chart is one of those mind-blowing charts to look at. Learn how to create them using your own data set and Python!
9 Visualizations with Python that Catch More Attention than a Bar ChartAug 8, 2022
Creating eye-catching graphs with Python to use instead of bar charts.
Stream Graphs Basics with Python's MatplotlibJul 26, 2022
The good-looking cousin of stacked area charts
4 Quick Tricks For Better Plots in MatplotlibJul 26, 2022
Easily adding arrows, multiple axes, gradient fill, and more
Show HN: MPL Plotter – Python library to make technical plots more efficienMay 18, 2021
Publication-quality data representation library based on Matplotlib. - alopezrivera/mpl_plotter
How to Create PDF Reports with Python — The Essential GuideJan 19, 2021
Create PDF reports with beautiful visualizations in 10 minutes or less.
Visualizing and Animating Optimization Algorithms with Matplotlib - DataScienceCentral.comDec 10, 2020
This article was written by Louis Tiao. In this series of notebooks, we demonstrate some useful patterns and recipes for visualizing animating optimization algorithms using Matplotlib. We shall restrict our attention to 3-dimensional problems for right now (i.e. optimizing over only 2 parameters), though what follows can be extended to higher dimensions… Read More »Visualizing and Animating Optimization Algorithms with Matplotlib
Top 6 Python Libraries for Visualization: Which one to Use?Jul 25, 2020
Confused about which Visualization Tool to Use? I Broke Down the Pros and Cons of Each Libary for You
Visualizing Geospatial Data in PythonJun 2, 2020
Open source tools and techniques for visualizing data on custom maps
3 Python Visualization Libraries You MUST Know as A Data ScientistApr 19, 2020
In real life, data preprocessing is really a pain for most data scientists. But with the help of data visualization libraries, it actually…
Visualizing Three-Dimensional Data — Heatmaps, Contours, and 3D Plots withApr 19, 2020
Plotting heatmaps, contour plots, and 3D plots with Python
Visualize Categorical Relationships With CatscatterApr 8, 2020
What if you can create a scatter plot for categorical features?
reiinakano/scikit-plot: An intuitive library to add plotting functionalityJun 8, 2018
An intuitive library to add plotting functionality to scikit-learn objects. - reiinakano/scikit-plot
The Python Graph Gallery – Visualizing data – with PythonNov 11, 2017
The Python Graph Gallery displays hundreds of charts made with Python, always with explanation and reproduciible code
mcp
Google just open-sourced their MCP server for databases. Connect any database to any AI agent in 10 lines of code. It's called MCP Toolbox. What it handles: → Connection pooling → Authentication →… | Paolo Perrone | 13 commentsFeb 8, 2026
Google just open-sourced their MCP server for databases.
Connect any database to any AI agent in 10 lines of code.
It's called MCP Toolbox.
What it handles:
→ Connection pooling
→ Authentication
→ Query execution
→ Tool generation
→ OpenTelemetry tracing
Supported databases:
→ PostgreSQL
→ MySQL
→ BigQuery
→ Firestore
→ Spanner
→ MongoDB
→ Redis
→ Elasticsearch
→ Snowflake
→ Oracle
Works by defining a tool in YAML + Load it in Python
Works with:
→ LangChain / LangGraph
→ LlamaIndex
→ Gemini CLI
→ Any MCP-compatible client
12.6k GitHub stars. Production-ready.
→
💾 Save for when you're building agents that need database access
♻️ Repost if you've been writing custom database tools from scratch | 13 comments on LinkedIn
Top 15 Model Context Protocol (MCP) Servers for Frontend Developers (2025)Sep 22, 2025
Discover the top 15 MCP servers frontend developers need in 2025 for design-to-code, deployment, testing, and observability
Understanding OAuth 2.1 for MCP (Model Context Protocol) Servers: Discovery, Authorization, and Access PhasesAug 31, 2025
Learn about the OAuth 2.1 for MCP servers with secure authorization, PKCE, scopes, and client registration
The Evolution of AI Protocols: Why Model Context Protocol (MCP) Could Become the New HTTP for AIAug 27, 2025
The Evolution of AI Protocols: Why Model Context Protocol (MCP) Could Become the New HTTP for Artificial Intelligence AI
10 GitHub Repositories for Mastering Agents and MCPsJul 7, 2025
Learn how to build your own agentic AI application with free tutorials, guides, courses, projects, example code, research papers, and more.
MCP: An (Accidentally) Universal Plugin SystemJul 2, 2025
Or: The Day My Toaster Started Taking Phone Calls
50+ Model Context Protocol (MCP) Servers Worth ExploringJun 8, 2025
Explore the 50+ Model Context Protocol (MCP) servers that facilitate seamless AI tool integration using standardized interfaces.
32 MCP Servers You Need To Check Out Now - KDnuggetsMay 28, 2025
Explore list of top MCP servers that enable seamless integration of LLMs with tools like databases, APIs, communication platforms, and more, helping you automate workflows and enhance AI applications.
Creating an MCP Server Using GoMay 3, 2025
In November 2024, Anthropic published a blog post announcing what may be its most significant contribution to the AI ecosystem so far: the Model Context Protocol.
Here are my top 12 MCP Servers I used and tested so far: - Python Code… | Philipp Schmid | 34 commentsApr 30, 2025
Here are my top 12 MCP Servers I used and tested so far:
- Python Code Interpreter: Runs Python code in a sandbox using Pyodide and Deno for isolation. https://lnkd.in/eYmexFA2
- Web fetcher: Fetches web page content using Playwright headless browser with JavaScript support. https://lnkd.in/eKQ4EXEX
- Github MCP server: Provides seamless integration with GitHub APIs for automation and interaction. https://lnkd.in/eEKE83c3
- Filesystem: Implements filesystem operations like reading/writing files, creating/listing/deleting directories, moving, searching, and getting metadata within specified directories. https://lnkd.in/eqi4vUdJ
- Google Drive: Integrates with Google Drive to allow listing, reading, and searching over files, with automatic export for Google Workspace file types. https://lnkd.in/eTGUHXgr
- Fetch: Fetching websites converts HTML to markdown and allowing chunked reading. https://lnkd.in/ebuk59ZR
- Markitdown: Converts various file types (PDF, Office docs, HTML, etc.) to Markdown, preserving structure for LLM consumption and text analysis. https://lnkd.in/eHuK-wj6
- Brave search: Integrates with Brave Search API to enable web searches and local business lookups via natural language queries. https://lnkd.in/e22vEUME
- Slack: Enables interaction with Slack workspaces, including listing channels, posting messages, replying to threads, adding reactions, and getting history/users. https://lnkd.in/eWf4pZY6
- Notion API: Implements an MCP server for the Notion API, allowing interaction with Notion pages and databases. https://lnkd.in/edCuP443
- Airbnb: Allows searching Airbnb listings and retrieving detailed listing information. https://lnkd.in/etgemCvH
- Arxiv: Provides access to arXiv papers through their API, allowing search and retrieval of paper metadata and links. https://lnkd.in/eUpPnhXX | 34 comments on LinkedIn
Model Context Protocol (MCP) vs Function Calling: A Deep Dive into AI Integration ArchitecturesApr 18, 2025
10 Awesome MCP Servers - KDnuggetsApr 18, 2025
Try these MCP servers with Claude Desktop today for free.
The “S” in MCP Stands for Security - Elena Cross - MediumApr 8, 2025
MCP, short for Model Context Protocol, is the hot new standard behind how Large Language Models (LLMs) like Claude, GPT, or Cursor integrate with tools and data. It’s been described as the “USB-C for…
Model Context Protocol (MCP) an overviewApr 6, 2025
Overview of the Model Context Protocol (MCP) how it works, what are MCP servers and clients, and how to use it.
pydantic-ai/mcp-run-python at main · pydantic/pydantic-aiApr 6, 2025
Agent Framework / shim to use Pydantic with LLMs
Use MCP servers in VS Code (Preview)Apr 6, 2025
Learn how to configure and use Model Context Protocol (MCP) servers with GitHub Copilot in Visual Studio Code.
From the Jupyter community on Reddit: Jupyter Notebook MCP: work as a professional data analystApr 6, 2025
Explore this post and more from the Jupyter community
From the JupyterNotebooks community on Reddit: Jupyter MCP.: AI to control Jupyter NotebooksApr 4, 2025
Posted by mehul_gupta1997 - 8 votes and 0 comments
meetings
a BIT mighty - The ultimate meeting cultureJul 28, 2025
I like bits, bits are mighty. With bits you can do impressive things!
Otter.ai - AI Meeting Note Taker & Real-time AI TranscriptionFeb 11, 2024
Otter.ai uses an AI Meeting Assistant to transcribe meetings in real time, record audio, capture slides, extract action items, and generate an AI meeting summary.
memes
AddText — Captions for your photos, quick and easyNov 6, 2025
Easy-to-use tool for adding text and captions to your photos. Create memes, posters, photo captions and much more!
The case for memes as a new form of comicsJul 29, 2025
Both comics and memes rely on the same interplay of visual and verbal elements for their humor.
I accidentally built a meme search engine | Harper Reed's BlogApr 16, 2024
I built a magical meme search engine using siglip/CLIP and vector encoding images. It was a fun way to learn about this powerful technology. I'm sharing the code so you can build your own and discover forgotten gems in your photo library. Let's unleash the power of AI on our images!
How “Chuck Norris Facts” Gave Birth to the Modern MemeAug 29, 2023
"It's hard to say Ian Spector officially invented the meme. But he was, at minimum, a key early influencer."
The surprising power of memesOct 1, 2022
The science of these viral mash-ups reveals why they are so effective at spreading ideas and beliefs.
The shit-posting, Twitter-trolling, dog-deploying social media army taking on Putin one meme at a timeSep 5, 2022
The North Atlantic Fellas Organization is fighting the Kremlin’s propaganda machine — and winning.
IQ Bell Curve / MidwitSep 5, 2022
IQ Bell Curve, also known as IQ Distribution Curve and Midwit, refers to a series of memes which use the IQ distribution diagrams to mock one of the three
With ‘The Far Side,’ Gary Larson Pioneered the Art of the MemeJun 5, 2022
There couldn’t be a ‘Is This a Pigeon?’ without a ‘Beware of Doug’.
The Internet Encyclopedia of MemesJun 4, 2022
An Interview with Don Caldwell, the Editor-in-Chief of Know Your Meme
How memes got weaponized: A short historyMay 1, 2021
Memes come off as a joke, but some people are starting to see them as the serious threat they are.
memory-recall
Why Do We Like Music?Feb 11, 2026
People with musical anhedonia don’t get any enjoyment from music. Shayla Love writes about scientists studying this condition to learn about how music affects listeners’ minds and moods.
The crayola-fication of the world: How we gave colors names, and it messed with our brains (part I)Feb 7, 2026
“Who in the rainbow can draw the line where the violet tint ends and the orange tint begins? Distinctly we see the difference of the colors, but where exactly does the one first blendingly enter in…
This MIT Prototype Translates Images Into Fragrances That Your Mind Remembers Better - Yanko DesignFeb 3, 2026
At a time when memories are increasingly flattened into folders, feeds, and cloud backups, a new experimental device from MIT Media Lab proposes a far more intimate archive: scent. Developed by Cyrus Clarke, the Anemoia Device is a speculative yet functional prototype that translates photographs into bespoke fragrances using generative AI, inviting users not to
Words That Don't Sound Nice Are Harder to Remember, Study SaysDec 13, 2025
A new study suggests our brains welcome gibberish words that sound gentle and kind with open arms while rejecting the harsh ones.
Some People Can’t See Mental Images. The Consequences Are ProfoundNov 5, 2025
Larissa MacFarquhar writes about the recent research into the neurodiverse syndromes known as aphantasia and hyperphantasia, their effects on our experience of trauma and memory, and the sense of identity that has grown up around them.
The Extraordinary Story of the Teen Who Can Mentally ‘Time Travel’Sep 8, 2025
Most of us forget what we ate for breakfast yesterday, but a teenager known only as TL can relive her life like rewinding a movie reel.
Newfound 'Reality Signal' Helps the Brain Tell Imagination from Real LifeSep 5, 2025
Seeing and imagining use similar brain machinery. New research reveals the brain circuit that identifies what is real, which may help scientists understand conditions such as schizophrenia
♫ Mahna Mahna, Do doo be-do-do ♫ (Why do we get earworms?)May 30, 2025
If we mention or even just allude to a catchy song, we risk having part of it playing on a loop in our head, for days on end. What's that about? And what can we do about it?
Spaced Repetition Systems Have Gotten Way BetterMay 19, 2025
Spaced repetition systems are a well-known way to efficiently learn material. Recent innovations have applied machine learning to greatly improve their scheduling.
Choline: The underappreciated nutrient that's vital for our brainsApr 9, 2025
The compound has been linked to improved cognitive performance and reduced anxiety – but are you getting enough of it?
Perceptual reality monitoring: Neural mechanisms dissociating imagination from realityMar 29, 2025
There is increasing evidence that imagination relies on similar neural mechanisms as externally triggered perception. This overlap presents a challeng…
What Makes a Memory Real?Mar 28, 2025
Changing the narrative on false memories might be surprisingly simple.
How ‘Event Scripts’ Structure Our Personal MemoriesFeb 21, 2025
By screening films in a brain scanner, neuroscientists discovered a rich library of neural scripts — from a trip through an airport to a marriage proposal — that form scaffolds for memories of our experiences.
Your Brain Wants a Linear StoryAug 1, 2024
Artists may jumble time for dramatic effect. But your unconscious is always putting the narrative in order.
The Best Strategy for Learning May Depend on What You’re Trying to RememberJun 22, 2024
Different approaches can support varied forms of memory
How Actors Remember Their LinesMay 27, 2024
In describing how they remember their lines, actors are telling us an important truth about memory.
Electric ‘Ripples’ in the Resting Brain Tag Memories for StorageMay 21, 2024
New experiments reveal how the brain chooses which memories to save and add credence to advice about the importance of rest.
The Mystery of S., the Man with an Impossible MemoryMay 19, 2024
A famous case study helped spark a myth about a man who could not forget. But the truth is more complicated.
Memories are made by breaking DNA — and fixing itApr 6, 2024
Nature - Nerve cells form long-term memories with the help of an inflammatory response, study in mice finds.
What is it like to remember all the faces you’ve ever seen?Mar 31, 2024
They’ve been studied by researchers and recruited by police forces, but what’s it actually like to be a super-recogniser?
Why 18-year-old Canadian Emily Nash is sharing her unique brain with sciencMar 25, 2024
CTV W5 puts the spotlight on 18-year-old Emily Nash, who appears to be the first Canadian, and among the youngest people in the world, to have a rare but extraordinary super memory.
The Man Who Remembered Everything—and Thought It Was NormalFeb 29, 2024
One of the most expansive memories ever documented belonged to a Russian newspaper reporter named Solomon Shereshevsky. For much of his life, he was oblivious of the peculiar nature of his memory. …
Doorway effectFeb 11, 2024
The 'doorway effect' or 'location updating effect' is a replicable psychological phenomenon characterized by short-term memory loss when passing through a doorway or moving from one location to another.[1] We tend to forget items of recent significance immediately after crossing a boundary[2] and often forget what we were thinking about or planning on doing upon entering a different room.[3] Research suggests that this phenomenon occurs both at literal boundaries (e.g., moving from one room to another via a door) and metaphorical boundaries (e.g., imagining traversing a doorway, or even when moving from one desktop window to another on a computer).[2]
Ten Examples of the Mandela EffectFeb 1, 2024
Did Tom Cruise really dance in his underwear and a pair of Ray-Bans in “Risky Business”? If you answered “yes,” you might be suffering from the Mandela Effect.
Memory Recognition and Recall in User InterfacesJan 17, 2024
Recalling items from scratch is harder than recognizing the correct option in a list of choices because the extra context helps users retrieve information from memory.
The Usefulness of a Memory Guides Where the Brain Saves It | Quanta MagazineSep 4, 2023
New research finds that the memories useful for future generalizations are held in the brain separately from those recording unusual events.
Dinner with Proust: how Alzheimer’s caregivers are pulled into their patients’ worldsMar 3, 2023
The long read: What do you say to someone whose wife prefers photographs of deceased authors to him?
What Causes Déjà Vu?Feb 9, 2023
Does this all feel a little familiar? Called déjà vu, that sensation may be your brain correcting its own errors
How the Brain Distinguishes Memories From PerceptionsDec 15, 2022
The neural representations of a perceived image and the memory of it are almost the same. New work shows how and why they are different.
Subliminal Cues, Precisely Timed, Might Help People Forget Bad ExperiencesDec 13, 2022
Suppressing memories using an “amnesic shadow” could someday lead to a gentler therapy for post-traumatic stress disorder
The art of memory: mnemonic techniquesJul 18, 2022
Nowadays, when we want to remember something, we mostly use our phone to take a quick note, create a reminder, message ourselves on Slack, or just add it to our calendar. Granted, having a good memory may not be as useful as it used to be, but there’s lots of research showing that training your ... Read More
The generation effectJul 18, 2022
Do you feel like you can remember things better when you actively engage with the information and create your own version of it? That’s called the Generation Effect. In a research paper published in 1978 in the Journal of Verbal Learning and Verbal Behavior, scientists described it as the phenomenon where information is better remembered ... Read More
Why We Remember Music and Forget Everything ElseApr 16, 2022
Psychologists say it's no surprise that we have such a strong memory for music and can easily recall lyrics and melodies, even if we haven’t heard them in years.
The Science of Familiarity: Increasing Conversions by Being UnoriginalApr 11, 2022
Familiarity has a major impact on our decision-making process. Understanding the psychology behind it will lead to better UX / design, copy and CTAs.
Everything We See Is a Mash-up of the Brain’s Last 15 Seconds of Visual InformationFeb 20, 2022
The brain is basically a time machine that ensures what we see is stable and continuous.
How to Memorize the Un-MemorizableNov 9, 2021
Although I’ve successfully learned the language of mathematics, it has always frustrated me that I couldn’t master those more unpredictable languages like French or Russian that I’d tried to learn …
How to study effectively | Psyche GuidesSep 2, 2021
Forget cramming, ditch the highlighter, and stop passively rereading. The psychology of learning offers better tactics
Neuroscience (and a Small Dose of Emotional Intelligence) Reveals the Simple Trick to Learn a Lot More--With a Lot Less EffortJun 29, 2021
Learning more efficiently is a matter of time--but not in the way you might think.
Expert tips on using gestures to think and talk more effectivelyOct 24, 2003
The gesticulations that accompany your speech are so much more than mere hand-waving – they contain and convey meaning
mental-models
Unknown Knowns: Five Ideas You Can't Unsee — LessWrongDec 26, 2025
Merry Christmas! Today I turn an earlier LW shortform into a full post and discuss "unknown knowns" "obvious" ideas that are actually hard to discuss…
Do You Know What I Know?Oct 14, 2025
Joshua Rothman writes about common knowledge and the book “When Everyone Knows That Everyone Knows . . .,” by Steven Pinker.
Enhance Decision-Making With Control SystemsJul 17, 2025
Master the art of decision-making with insights from control engineering. Learn how mental models can guide you through uncertainty.
67 Logical Fallacies Explained in 11 MinutesApr 11, 2024
Fallacies—notes Purdue's Writing Lab—'are common errors in reasoning that will undermine the logic of your argument. Fallacies can be either illegitimate arguments or irrelevant points, and are often identified because they lack evidence that supports their claim.
Mental ModelsFeb 29, 2024
What users believe they know about a user interface impacts how they use it. Mismatched mental models are common, especially with designs that try something new.
How To Prove Prevention WorksFeb 19, 2024
Homer: Not a bear in sight. The Bear Patrol must be working like a charm. Lisa: That’s specious reasoning, Dad. Homer: Thank you, dear. Lisa: By your logic I could claim that this rock keeps tigers away. Homer: Oh, how does it work? Lisa: It doesn’t work. Homer: Uh-huh. Lisa: It’s just a stupid rock.
Business models based on the compiled list at http://news.ycombinator.com/item?id=4924647. I find the link very hard to browse, so I made a simple version in Markdown instead.Feb 14, 2024
Business models based on the compiled list at http://news.ycombinator.com/item?id=4924647. I find the link very hard to browse, so I made a simple version in Markdown instead. · GitHub
Tools for better thinking | UntoolsFeb 10, 2024
Collection of thinking tools and frameworks to help you solve problems, make decisions and understand systems.
People Have Very Different Understandings of Even the Simplest WordsFeb 5, 2024
Distinctive meanings for a word like “risk” can have a big impact on public messaging, especially when it comes to issues like climate change
14 Mental Models to Help You (And Me) Think Clearly, Rationally, and EffectSep 13, 2023
Here’s some good news: You can train your brain to think faster and work smarter.
Mental Models to Help You Cut Your Losses - By Annie Duke - Behavioral ScieJan 22, 2023
When should you hold 'em and when should you fold 'em? Use this set of decision-making tools to help you identify when it’s time to move on and find the courage to do so.
MediumJul 19, 2022
14 Mental Models to Help You (And Me) Think Clearly, Rationally, and EffectivelyJul 18, 2022
Here’s some good news: You can train your brain to think faster and work smarter.
Mental modelsJul 18, 2022
These are some mental models I find useful. They’re rooted in decades of experience of thousands of experts – a modern equivalent of folk wisdom. Mental models are useful to quickly and correctly reason about seemingly intractable problems. They require quite a bit of intuition to properly internalize, but once you’ve internalized them they’re relatively easy to apply. They’re also easy to forget in the moment – use this post as a checklist when thinking about complex problems.
Inversion and The Power of Avoiding StupidityJul 18, 2022
Inversion is a powerful mental model to improve your thinking because it helps you identify and remove obstacles to success. Most of us tend to think one way about a problem: forward. Inversion allows us to flip the problem around and think backward.
Understand the world better with 35 concepts | ConceptuallyJul 18, 2022
Understand the world and make better decisions using concepts from psychology, philosophy, economics and other disciplines, delivered straight to your inbox every Sunday.
MediumJul 18, 2022
Mental Models: The Best Way to Make Intelligent Decisions (~100 Models Explained)Jun 25, 2022
The smartest people in the world use mental models to make intelligent decisions, avoid stupidity, and increase productivity. Let's take a look at how ...
The Profile Dossier: Charlie Munger, the Master of Mental ModelsFeb 20, 2021
“Deliver to the world what you would buy if you were on the other end."
Essential Japanese: The Mental Model [pdf]Feb 3, 2021
Essentials Guide to Japanese: The Mental Model by Japanese Complete. Master Japanese, get started for free.
Patterns — Gordon BranderJan 4, 2021
This is my bag of tricks — loose notes, design patterns, rules-of-thumb, tools, cheatsheets, gimmicks, leverage points, descriptions of systems, key questions, risks, and unknowns.
Bookshelf — Gordon BranderJan 3, 2021
Good Synthesis is the Start of Good SensemakingJun 1, 2020
When you're faced with uncertainty, the best thing you can do is analyse your inputs, synthesise a new model, and then destroy it to start over again.
Mental models for designers | Dropbox DesignJun 1, 2020
Curious about product design at Dropbox? Here’s a look at tools we use for solving problems, making decisions, and communicating ideas.
A Framework for First Principles Thinking | Neil KakkarDec 19, 2019
Leverage mental models to think better. First Principles Thinking is an excellent model for critical thinking. This post looks at how to practice First Principles Thinking with lots of examples.
Why “Many-Model Thinkers” Make Better DecisionsAug 30, 2019
Organizations are awash in data — from geocoded transactional data to real-time website traffic to semantic quantifications of corporate annual reports. All these data and data sources only add value if put to use. And that typically means that the data is incorporated into a model. The most sophisticated organizations — from Alphabet to Berkshire Hathaway to the CIA — all use models. In fact, they do something even better: they use many models in combination. But creating an “ensemble” of models isn’t just about picking the ones that perform best on their own. You want to combine models that complement one another. Three rules can help you construct your own powerful ensemble of models: spread attention broadly, boost predictions, and seek conflict.
30 mental models to add to your thinking toolbox - Ness LabsJul 25, 2019
Mental models affect how we see problems and people. Depending on how you use them, mental models can be incredibly constructive or destructive.
LJun 10, 2018
Mental Models I Find Repeatedly Useful — MediumDec 27, 2017
2019 UPDATE: Since this post came out, I co-authored a book about it called Super Thinking: The Big Book of Mental Models.
The Science Behind Smarter Decision Making: 7 Mental Models To KnowOct 19, 2017
Every one of us make dozens, if not hundreds of small to big decisions on a daily basis. Some don’t impact our lives at all, while some can change the outcome of our entire lives. Whether it’s trying to figure out which job you should take,
14 Mental Models to Help You (And Me) Think Clearly, Rationally, and EffectOct 19, 2017
Here’s some good news: You can train your brain to think faster and work smarter.
menus
The secret tricks hidden inside restaurant menusDec 2, 2024
Great thought and effort go into creating restaurant menus – and there are some very powerful psychological tricks employed to make you choose.
The Economic Principle That Helps Me Order at RestaurantsAug 14, 2022
If you’re just eating one dish, you’re missing out.
Is the Minimalist Restaurant Menu Over?Jul 30, 2022
More than ever, diners need actual descriptions of what they’re eating
The secret tricks hidden inside restaurant menusJul 19, 2022
Great thought and effort go into creating restaurant menus – and there are some very powerful psychological tricks employed to make you choose.
Neuro-Menus and Restaurant PsychologyJun 28, 2022
Restaurants are great test labs for testing neuromarketing techniques. It's easy to change offerings, menus, and pricing, and one gets immediate feedback on what's working and what's not. Today, many eateries are employing sophisticated menu psychology to maximize sales and profits.
mergers
messaging-telephony
Movie stars, matchmakers, and aunties: How WhatsApp became an unstoppable cultural forceDec 11, 2024
The world’s most popular messaging platform is synonymous with the internet for millions of people.
SMS marketing doesn’t have to be invasive — 3 reasons why your business shoMar 1, 2021
SMS is best understood as a small part of a larger marketing strategy. Use it for quick updates, and things you want people to take action on immediately.
meteorjs
New Meteor 2.8.1 and adding types to the coreNov 18, 2022
We plan to modernize MeteorJS and keep up with the latest releases for NodeJS, bringing our version to 14.21. We have other awesome…
Meteor toolbox for your next hackathon or project startAug 15, 2022
Photo by NASA on Unsplash Whether you start a new project or want to get ready for the next...
Developer dashboardJun 5, 2022
Meteor Vue JS Storybook = A Complete Guide To Scalable UI SystemApr 14, 2022
It has been more than one year since we have introduced Vue Js in our Meteor Production App, and last month we have implemented the…
TelescopeappJan 16, 2022
http://meteortips.comJan 4, 2022
zodern/meteor-up: Production Quality Meteor Deployment to AnywhereJan 2, 2022
Production Quality Meteor Deployment to Anywhere.
Introducing Push to Deploy. Say hello to a more convenient way to… | by KevDec 16, 2021
Say hello to a more convenient way to deploy your app. With just a few clicks, you can deploy your app directly from your repository!
Meteor Tutorial: Building Real-Time Web Applications with Meteor | Toptal®Dec 14, 2021
Many developers agree that Meteor is a fun platform for writing real-time web applications. Turns out, it’s also a powerful platform for building robust, production-ready applications. In this article, Toptal engineer Peter Rogers will walk you through a step-by-step tutorial for building a real-time book catalog...
https://atmospherejs.com/Dec 13, 2021
How real-time data works on Meteor — Know your pub/subsJul 27, 2021
Let's start with how publications and subscriptions work on Meteor, which are the "under the hood" of Meteor's real-time data model.
Meteor 2.3 has been released!Jul 13, 2021
Node 14, HMR improvements, removal of deprecated APIs and much more!
When to use these Nodejs frameworks? Express, Koa, Nest, Socket.io, Meteor.Dec 18, 2020
According to the Node.js web survey report 2018, Node.js has increased developer productivity by 68%,...
Announcing Meteor 1.11. Meteor 1.11 brings Apollo skeleton… | by Filipe NévNov 29, 2020
Meteor 1.11 brings Apollo skeleton, Vue.js skeleton, and many more exciting updates including build performance optimizations and cache…
How Any.Run Became The Most Popular Malware Sandbox in the World with MeteoSep 25, 2020
This is a guest post written by our friends at ANY.RUN (Meteor users since 2016).
Announcing Meteor 1.10 - Meteor BlogApr 1, 2020
Meteor 1.10 is a release full of exciting updates such as Cordova, MongoDB, option to exclude architectures, new Meteor DevTools and more
Scalable Hosting with Galaxy for Meteor Applications | MeteorApr 1, 2020
Build, monitor and host your app on the only platform designed with Meteor.js in mind.
Tutorial | WhatsApp Clone with Meteor CLI and Ionic | BootstrappingApr 1, 2020
Start by installing the Meteor platform if you haven't already (See reference). Create a new project by running these commands in your command lin
metrics
LCD defect metricsJan 9, 2026
Implementing Softmax From Scratch: Avoiding the Numerical Stability Trap - MarkTechPostJan 7, 2026
Learn about implementing Softmax from scratch and discover how to avoid the numerical stability trap in deep learning projects.
The Concise Guide to PerplexityNov 26, 2025
5 Common LLM Parameters Explained with ExamplesOct 26, 2025
Learn the 5 common LLM parameters explained with examples to optimize your model's performance and generate desired results.
Understanding the 4 Main Approaches to LLM Evaluation (From Scratch)Oct 5, 2025
Multiple-Choice Benchmarks, Verifiers, Leaderboards, and LLM Judges with Code Examples
Overall equipment effectiveness - WikipediaSep 7, 2025
A look at the ARC-AGI exam designed by French computer scientist François Chollet to show the gulf between AI models' memorized answers and “fluid intelligence”Apr 7, 2025
By Matteo Wong / The Atlantic. View the full context on Techmeme.
What is METEOR score? - DataconomyApr 2, 2025
METEOR Score is a metric used to evaluate the quality of machine translation based on precision, recall, word alignment, and linguistic flexibility.
What is triplet loss? - DataconomyMar 13, 2025
Triplet loss is a machine learning function that minimizes distances between similar data points while maximizing distances between dissimilar ones.
How to Fine-tune Model Thresholds with Yellowbrick’s ROC-AUC VisualizationMar 7, 2025
The key challenge lies in finding the right balance: How cautious should our model be when making classifications?
Four Cutting-Edge Methods for Evaluating AI Agents and Enhancing LLM PerformanceNov 28, 2024
The advent of LLMs has propelled advancements in AI for decades. One such advanced application of LLMs is Agents, which replicate human reasoning remarkably. An agent is a system that can perform complicated tasks by following a reasoning process similar to humans: think (solution to the problem), collect (context from past information), analyze(the situations and data), and adapt (based on the style and feedback). Agents encourage the system through dynamic and intelligent activities, including planning, data analysis, data retrieval, and utilizing the model's past experiences. A typical agent has four components: Brain: An LLM with advanced processing capabilities, such as
The Secret at the Heart of Continuous ImprovementApr 15, 2024
Continuous Improvement sounds simple, even obvious. And yet there's a profound secret at its heart that doesn't seem to get talked about.
Detecting Hallucinations in Large Language Models with Text Similarity MetrApr 5, 2024
In the world of LLMs, there is a phenomenon known as "hallucinations." These hallucinations are...
Goodhart's lawApr 4, 2024
Goodhart's law is an adage often stated as, "When a measure becomes a target, it ceases to be a good measure".[1] It is named after British economist Charles Goodhart, who is credited with expressing the core idea of the adage in a 1975 article on monetary policy in the United Kingdom:[2]
Evaluation Metrics for Recommendation Systems — An OverviewAug 11, 2023
Understanding the purpose and functionality of common metrics in ML packages
12 Ways to Test Your Forecasts like A ProMar 20, 2023
How to find the best performance estimation approach for time-series forecasts among 12 strategies proposed in the literature. With Python…
Jaccard indexMar 19, 2023
The Jaccard index, also known as the Jaccard similarity coefficient, is a statistic used for gauging the similarity and diversity of sample sets.
It is defined in general taking the ratio of two sizes, the intersection size divided by the union size, also called intersection over union (IoU).
17 DevOps Metrics To Measure SuccessNov 5, 2022
Photo by Carl Heyerdahl on Unsplash Productivity in software development has always been tricky to...
Product Quantization for Similarity SearchOct 14, 2022
How to compress and fit a humongous set of vectors in memory for similarity search with asymmetric distance computation (ADC)
Be critical or be corruptedSep 24, 2022
I recently rewatched "The Wire". The show's central theme is about counter-productive metrics and their corrupting influence on institutions. I've noticed hints of this pattern in software engineering, too
16 More Startup Metrics | Andreessen HorowitzJul 18, 2022
A few weeks ago, we shared some key startup metrics (16 of them, to be exact) that help investors gauge the health of a business when investing in it. But to repeat ourselves for a moment: Good metrics aren’t just about raising money from VCs … they’re about running the business in a way where...
Top Two Reasons for Churn - For EntrepreneursJul 18, 2022
In working with a number of SaaS portfolio companies, I have found that there are two causes of churn that occur more frequently than any others. They are: Failure to successfully onboard the customer Loss of the champion who drove the purchase Looking at these in order: Failure to successfully onboard It’s easy to understand […]
Designing Your Sales Stack so that Customers Come to YouJul 18, 2022
Two proven sales experts on how to build a process and team from the ground up to consistently boost revenue month over month.
Email Marketing Metrics, Part 2: Advanced TopicsJul 17, 2022
In "Email Marketing Metrics, Part 1: The Basics," my article last month, I addressed the primary measurements for email marketing: delivery rate, open
16 Startup Metrics | Andreessen HorowitzJul 5, 2022
We have the privilege of meeting with thousands of entrepreneurs every year, and in the course of those discussions are presented with all kinds of numbers, measures, and metrics that illustrate the promise and health of a particular company. Sometimes, however, the metrics may not be the best gauge of what’s actually happening in the...
Three Performance Evaluation Metrics of Clustering When Ground Truth LabelsJun 23, 2022
Which metric should be used to evaluate the clustering results if the ground truth labels are not available? In this post, I’m introducing…
Precision, Recall, and F1 Score of Multiclass Classification — Learn in DepJun 22, 2022
Manual Calculation From a Confusion Matrix and the Syntax of sklearn Library
midjourney
“The” Midjourney model personalization guideJun 12, 2024
Midjourney model personalization is now live, offering you a more tailored image generation experience by teaching the AI your preferences.
How much detail is too much? Midjourney v6 attempts to find outJan 7, 2024
As Midjourney rolls out new features, it continues to make some artists furious.
Comparison: DALL-E 3 vs MidjourneySep 24, 2023
DALL-E 3, the latest version of OpenAI's ground-breaking generative AI visual art platform, was just announced with groundbreaking features, including
Midjourney pricing plans and free alternatives to tryJul 28, 2023
Navigating the maze of pricing plans for digital services can sometimes be a daunting task. Today, we are unveiling Midjourney
The ultimate Midjourney video generation guideJul 18, 2023
Midjourney now offers the ability to manifest the evolution of your AI-generated images into a concise Midjourney video. This captivating
Where to look for the best Midjourney images?Jul 18, 2023
Do you want to generate Midjourney images, but don't you know what to do and what you can do exactly
Midjourney Quick Start GuideApr 9, 2023
Learn how to use the text-to-image service, Midjourney on Discord or the web to create custom images from simple text prompts.
Midjourney opens website to all users offering 25 free AI image generationAug 24, 2021
It comes as Midjourney faces increasing competition from the likes of Elon Musk's xAI and it Grok 2 and Ideogram 2.
minerals
A huge cache of critical minerals found in Utah may be the largest in the USDec 31, 2025
The discovery could bolster efforts to make the U.S. less dependent on China for minerals essential for renewable power.
How Japan Built a Rare-Earth Supply Chain Without ChinaDec 8, 2025
The 15-year effort by Japan is a model for countries now scrambling to reduce their dependence on Beijing’s critical metals.
The "Critical Minerals" Crisis of 100 Years AgoOct 2, 2025
I review a fascinating dissertation on interwar metals trading and the "Age of Alloy Steel"
The U.S. doesn’t refine cobalt. This startup wants to change that.Apr 23, 2025
The U.S. doesn't currently refine cobalt, a valuable material in a number of goods and products. This startup wants to change that.
Ukraine rare earth mineralsMar 7, 2025
Inside an American Rare-Earth BoomtownDec 29, 2024
Industrialists and researchers are plotting a new future for these critical materials
Inside the Crime Rings Trafficking SandJan 31, 2024
Organized crime is mining sand from rivers and coasts to feed demand worldwide, ruining ecosystems and communities. Can it be stopped?
What’s the most sustainable way to mine the largest known lithium deposit iSep 4, 2023
Scientists studying the McDermitt Caldera in Nevada and Oregon think they've found a new, more sustainable way to mine lithium.
The underbelly of electric vehiclesAug 22, 2023
Mining and processing the minerals needed to meet the growing demand for EVs can be costly for workers, local communities and the environment.
mistral
ml-ops
A Complete End-to-End Coding Guide to MLflow Experiment Tracking, Hyperparameter Optimization, Model Evaluation, and Live Model Deployment - MarkTechPostMar 1, 2026
A Complete End-to-End Coding Guide to MLflow Experiment Tracking, Hyperparameter Optimization, Model Evaluation, and Live Model Deployment
Weights & Biases: A KDnuggets Crash Course - KDnuggetsOct 6, 2025
A hands-on guide to tracking experiments, versioning models, and keeping your ML projects reproducible with Weights & Biases.
10 Must-Know Python Libraries for MLOps in 2025Jun 21, 2025
In this article, we’ll explore 10 Python libraries that every machine learning professional should know in 2025.
thoughtworks/mlops-platforms: Compare MLOps Platforms. Breakdowns of SageMaker, VertexAI, AzureML, Dataiku, Databricks, h2o, kubeflow, mlflow...Jan 12, 2022
Compare MLOps Platforms. Breakdowns of SageMaker, VertexAI, AzureML, Dataiku, Databricks, h2o, kubeflow, mlflow... - thoughtworks/mlops-platforms
Easy MLOps with PyCaret + MLflow - KDnuggetsMay 24, 2021
A beginner-friendly, step-by-step tutorial on integrating MLOps in your Machine Learning experiments using PyCaret.
mlflow
A Complete End-to-End Coding Guide to MLflow Experiment Tracking, Hyperparameter Optimization, Model Evaluation, and Live Model Deployment - MarkTechPostMar 1, 2026
A Complete End-to-End Coding Guide to MLflow Experiment Tracking, Hyperparameter Optimization, Model Evaluation, and Live Model Deployment
moats
Building Long-Lasting Companies with AI Moats | Nicholas Charriere posted on the topic | LinkedInJan 8, 2026
This is a great resource.
‘We’re building a moat around a castle’: How Gallagher’s CEO struck 500 deals in 30 yearsMay 9, 2025
The third-generation CEO has transformed the insurance broker’s valuation, but says its size has not given it pricing power.
Picking Unfair Fights | The WoodSheddFeb 29, 2024
I’ve learned early in life that game selection is a HUGE determinant of success. Let me tell you about the worst game I’ve fought & the easiest bet I’ve ever won. Both taught me about choosing unfair fights and playing by your own rules… Let’s start with the entertaining worst game. In high school I played football. I was an offensive/defensive lineman. I was half way decent enough to play in the Ernie Davis All-Star game my senior year.
2,851 Miles // Bill Gurley (Transcript + Slides)Oct 17, 2023
Hey everyone! I’ve mostly started sharing my favorite memos and transcripts over at A Letter a Day, but as it’s more of a tasting menu, I’m reticent to post multiple memos or tran…
China’s flagship CPU designer puts on a brave face amid US sanctionsMar 19, 2023
Chinese chip designer Loongson, which has tried to reduce the country’s reliance on Intel and AMD, is developing its own general-purpose GPU despite being added to a US trade blacklist.
Two design rules that make products win. - by Thomas DrachMar 19, 2023
The secrets of Zoom, Amazon, and Apple products.
Meet the 16 members of the EDA Alliance underpinning TSMC dominanceMar 13, 2023
Kuo-Hua Chou, special to DIGITIMES Asia
The Art of Profitability by Adrian SlywotzkyNov 5, 2022
This is a book summary of The Art of Profitability by Adrian Slywotzky. Read The Art of Profitability summary to review key ideas and lessons from the book.
How to Build a Company That Lasts ForeverJul 18, 2022
At the core of Europe's strongest economy is the Mittelstand, a tier of impeccably run small manufacturers that measure growth not in years but in centuries. Here's how they do it, in five very German lessons.
Aggregation TheoryJun 12, 2022
The disruption caused by the Internet in industry after industry has a common theoretical basis described by Aggregation Theory.
Storming Reddit's MoatFeb 8, 2022
A Guide to Reddit, Its Key Competitive Advantages, and How to Unbundle It
Why Competitive Advantages Die · Collaborative FundJan 2, 2021
A few factors I’ve seen pull winners off the podium…
Goodbye GatekeepersOct 22, 2017
Harvey Weinstein was a gate-keeper — a position that existed in multiple industries, including the media. That entire structure, though, is untenable on the Internet, and that’s a good thing.…
mobile
The invisible problem – Scott JensonSep 27, 2023
12 Innovative Mobile Payment AppsJul 5, 2022
Paying with a smartphone is easier than ever. Innovative mobile payment apps are providing consumers with new ways to exchange money with peers, purchase
App Store ArgumentsJun 3, 2021
There are all kinds of arguments to make about the App Store, and nearly all of them are good ones; that’s why the best solution can only come from Apple.
Worldwide Mobile Data Pricing League | Cost of 1GB in 230 countries - CableMay 19, 2020
A global league table of mobile data costs. The average cost of one gigabyte (1GB) was then calculated and compared from over 5,600 mobile data plans in 237 countries.
How To Design Profitable Sales Funnels On MobileDec 23, 2019
Every website or PWA you build should automate as much prospecting and selling as possible. The only thing is that visitors enter websites with various mindsets, depending on which part of the buying stage they’re at. This means that you can’t just take every person who enters the site through the same path. You have to design a custom sales funnel (or pathway) for each kind of buyer. In this article, Suzanna Scacca will tell you what you need to keep in mind.
The 5 Algorithms for Efficient Deep Learning Inference on Small Devices - Fritz aiDec 14, 2019
With recent developments in deep learning, neural networks are getting larger and larger. For example, in the ImageNet recognition challenge, the winning model, from 2012 to 2015, increased in size by 16 times. And in just one year, for Baidu’s… Continue reading The 5 Algorithms for Efficient Deep Learning Inference on Small Devices
Powerful computer vision algorithms are now small enough to run on your phoneNov 24, 2019
Researchers have shrunk state-of-the-art computer vision models to run on low-power devices. Growing pains: Visual recognition is deep learning’s strongest skill. Computer vision algorithms are analyzing medical images, enabling self-driving cars, and powering face recognition. But training models to recognize actions in videos has grown increasingly expensive. This has fueled concerns about the technology’s carbon…
The high hopes of the low-tech phoneSep 10, 2019
The minimalist phone returns with many aspirations and not too many features.
Useful (and Useless) Mobile Ecommerce MetricsAug 20, 2019
In my experience, there are a few "cuts" of data that matter more for mobile than for desktop. Conversely, there are a handful of traditional metrics from desktops that are not as important on mobile or potentially difficult to optimize.
America’s DIY Phone FarmersAug 5, 2019
Ordinary Americans are using armies of phones to generate cash to buy food, diapers, and beer through ad fraud.
What PopSugar learned from selling products through text messagesAug 13, 2018
PopSugar said it expects to have 20,000 subscribers by year's end to its text message program, which it's used to sell protein bars and housewares.
The Infinite MemoJul 31, 2018
From the makers of this incredibly clever wearable memo, the Wemo is back with an entirely new look. The Wemo 2 takes on a flat form that you can stick on any surface, transforming it into a doodle or memo pad in seconds. Slap it on your laptop to take notes during meets or on
model-compression
Introduction to Embedding, Clustering, and SimilaritySep 16, 2022
Introduction to key elements of ML and Autoencoders: Embedding, Clustering, and Similarity.
Three Model Compression Methods You Need To Know in 2021Mar 30, 2021
Creative techniques to make complex models smaller
Model Compression: A Look into Reducing Model SizeJan 10, 2021
Why is Model Compression important? A significant problem in the arms race to produce more accurate models is complexity, which leads to…
mongodb
The Great Migration from MongoDB to PostgreSQLMar 31, 2024
How Infisical migrated from MongoDB to PostgreSQL.
The Tough Climb To Profitability For MongoDBMar 10, 2023
There is something weird about storage companies that were started around the same time as the Great Recession. The big ones that have gone public after
The Ultimate MongoDB Command Cheatsheet for DevelopersFeb 10, 2023
This MongoDB command cheatsheet is the perfect tool for developers who want to work more efficiently...
How to setup MongoDB with Jupyter NotebookOct 19, 2022
I have to conclusion how to setup MongoDB (NoSQL) with Jupyter Notebook by summary step like...
How Discord Stores Billions of MessagesAug 28, 2022
We decided early on to store all chat history forever so users can come back at any time and have their data available. This is a lot of data: how do we do it?
All MongoDb Database commands (MongoDb Cheatsheet)Mar 28, 2022
In this post, we will see a comprehensive list of all the MongoDB commands you will ever need as a...
Installation and Usage of Rails MongoDBJan 17, 2022
How a routine gem update ended up creating $73k worth of subscriptionsJan 9, 2022
On November 5, 2021 (a Friday of course), we've deployed innocent-looking gem updates. Minor versions of Ruby on Rails, Ruby Sentry client, Ruby Slack client, http libraries, Puma, Devise, OmniAuth Ruby client, Mongoid, and a few test gems. However, something went very wrong. We saw odd Stripe errors on Airbrake.
MeanDec 11, 2021
Building a MERN stack simple blog site from absolute scratch ?Dec 3, 2021
Even a few years ago, web application development was not what it is today. Nowadays, there are so...
Create a Web App in Under Thirty Minutes with Streamlit, MongoDB and HerokuOct 1, 2021
An aspiring Full Stack Developer’s guide to quickly developing and deploying scalable web applications
Building a Restful CRUD API with Node JS, Express, and MongoDBSep 1, 2021
Application Programming Interface is the abbreviation for API. An API is a software interface that...
Setup Ruby on Rails 6 App with MongoDB under 5 Minutes — Aarvy | by Aarvy |Jan 23, 2021
In this article, I will be discussing how to quickly setup a NoSQL database MongoDB with your brand new Rails 6 app. I am using Ubuntu…
MongoDB Vs SQLMay 19, 2020
MongoDB and SQL databases are two polar opposite sides of the backend world. The former deals with chaotic unstructured data, while the…
Build a Modern Blog with GatsbyJS, Markdown, Node.js and MongoDBMar 31, 2020
Social network for developers to discuss topics about bugs and issues, write and share knowledge and connect with millions of developers worldwide.
Unable to install mongodb properly on ubuntu 18.04 LTS - Stack OverflowMar 31, 2020
I am trying to install mongodb on my Ubuntu 18.04 LTS, but it has the following error saying
You might want to run 'apt --fix-broken install' to correct these. The
following packages have unmet
monopoly
How to spot a monopoly - Works in Progress MagazineDec 4, 2025
Competition makes capitalism work. A new method for measuring it may be the holy grail of economic regulation.
10 Quirky Families That Still Rule the WorldJul 17, 2019
You’d never confuse them for the Rockefellers. But you also wouldn’t have curling without ’em.
Winner Takes it All: How Markets Favor the Few at the Expense of the ManySep 29, 2018
Markets tend to favor unequal distributions of market share and profits, with a few leaders emerging in any industry.Winner-take-all markets are hard to disrupt and suppress the entry of new players by locking in market share for leading players.
monte-carlo
The Concise Guide to Monte Carlo SimulationSep 26, 2025
In this concise guide, we'll break down the essentials of Monte Carlo simulation, explain how it works, and provide a simple example using Python.
Markov Chain Monte Carlo: Made Simple Once and For AllMar 3, 2024
Introduction to MCMC, dividing it into its simplest terms
Mastering Monte Carlo: How To Simulate Your Way to Better Machine LearningAug 3, 2023
How a Scientist Playing Solitaire Forever Changed the Game of Statistics
How to replace estimations and guesses with a Monte Carlo simulationOct 7, 2021
There are many ways of estimating how long a software project will take. All of them are a waste of time.
The art of solving problems with Monte Carlo simulations | Gabriel CarvalhoMay 4, 2021
Using the power of randomness to answer scientific questions.
Introduction to PyMC3: A Python package for probabilistic programmingNov 29, 2020
An introduction to PyMC3 through a concrete example
Probability Learning: Monte Carlo MethodsApr 1, 2020
Learn Monte Carlo Methods with three simple examples
MCMC Methods: Metropolis-Hastings and Bayesian InferenceFeb 19, 2020
This article will introduce you to Markov Chain Monte Carlo (MCMC) methods, namely Metropolis-Hastings and Bayesian inference, and demonstrate how you can harness them for your next project.
A Deep Dive into Monte Carlo Tree SearchJun 8, 2018
morality
The radical moral implications of luck in human lifeFeb 8, 2026
Acknowledging the role of luck is the secular equivalent of religious awakening.
Here’s How To Know If Your “Values” Are Really ValuesJul 18, 2022
Amidst the flurry of recent disclosures about people and companies in our little northern hemisphere who are doing things they say they’re…
Your sense of right and wrong is interwoven with your personality | Psyche IdeasJan 7, 2022
Personality traits such as agreeableness and openness to experience can help explain differences in moral judgment
Moral CompetenceJan 7, 2021
How the Brain Reacts to Difficult Moral Issues - Neuroscience NewsDec 18, 2020
According to researchers, familial relationships in movies affect the reactions in the viewer's brain to moral dilemma addressed between characters.
motivation
The Power of Affirmation at WorkDec 19, 2025
How leaders can build a culture where employees feel valued.
How to talk to yourself | Psyche GuidesDec 12, 2025
Self-talk is a proven way to boost motivation, think clearly and process your emotions. These tips will help you use it well
I’ve trained Shai Gilgeous-Alexander for years. Here are 5 things you can learn from himJun 3, 2025
Dwayne Washington was a teacher at St. Thomas More Catholic Secondary School, where Gilgeous-Alexander attended, and also his club coach.
The 2020 Commencement Speech You’ll Never HearMay 31, 2025
The 2020 commencement speech you’ll never hear
Five small habits sports psychologists wish everyone didMay 16, 2025
Sports psychologists work with athletes to get their best performance on the field or court, but these tools are ones anyone can try.
The Self-Motivation Toolkit: How to Stay Curious and CommittedApr 22, 2025
Self-motivation isn’t some mysterious force that you’re born with or without. It’s a skill that can be learned and developed. By understanding the science behind it, you can master the tools you need to stay motivated and make progress on the projects that matter to you.
The Four Desires Driving All Human BehaviorApr 22, 2024
Bertrand Russell’s magnificent Nobel prize acceptance speech.
Unlocking User Engagement: 8 Strategies to Drive Conversions in Web and AppOct 24, 2023
Some apps or websites are beautiful, stylish, and well thought out in terms of UX, but have one problem: they are boring. These products can trigger both desire and resistance in the user at the same time. Here are a few tricks that will help solve this problem not from a rational, but from an
Currencies (On Motivating Different People) (Ed Batista)Oct 1, 2023
A theme in my practice is the leader who's seeking to increase employee motivation. In this context it's important to bear in mind the work of Frederick Herzberg, a 20th century psychologist who had a profound influence on our understanding...
8 Techniques in Persuasion from AntiquityOct 1, 2023
Persuasive rhetorical techniques from the speeches of Demosthenes in Classical Athens to Cicero in the Late Roman Republic.
Hacker NewsFeb 8, 2023
If you want to get anything done, there are two basic ways to get yourself to do it. The first, more popular and devastatingly wrong option is to try to motivate yourself. The second, somewhat unpo…
Book Summary: Spark by Dr. Jeremy Dean | Sam Thomas DaviesJul 18, 2022
This is a book summary of Spark by Dr. Jeremy Dean. Read this Spark summary to review key takeaways and lessons from the book.
Managing the “Invisibles”Jul 18, 2022
Reprint: R1405G Even in an age of relentless self-promotion, some extremely capable professionals prefer to avoid the spotlight. “Invisibles” work in fields ranging from engineering to interpreting to perfumery, but they have three things in common: They are ambivalent about recognition, seeing any time spent courting fame as time taken away from the work at hand. They are meticulous. And they savor responsibility, viewing even high pressure as an honor and a source of fascination. Something else unites Invisibles: They represent a management challenge. The usual carrots don’t motivate them; however, managers can take several steps to ensure their satisfaction. Leaders should recognize who their Invisibles are; decide if they want more Invisibles on the team; reward them fairly, soliciting reports on their accomplishments; make the work more intrinisically interesting; and talk to the Invisibles about what works best for them. These actions are well worth taking, as Invisibles not only bring exceptional levels of achievement to an organization but quietly improve the work of those around them, elevating performance and tone across the board.
A Crash Course in the Neuroscience of Human Motivation — LessWrongJul 18, 2022
[PDF of this article updated Aug. 23, 2011] • [skip to preface] …
How to Ask for FeedbackNov 23, 2021
Asking for feedback is often fruitless. Why is that? In this article, we look at why most requests for feedback fail and how to effectively ask for feedback to improve.
How to Deliver Constructive Feedback in Difficult SituationsAug 22, 2021
“We are dangerous when we are not conscious of our responsibility for how we behave, think, and feel.”―Marshall Rosenberg, As a founder, my biggest regrets revolve around not having difficu…
One simple way to build someone’s confidence: Ask for their adviceMay 31, 2021
When we want people to change, we typically tell them what to do. But what if we flipped the script and asked them for their wisdom instead? Behavioral scientist Katy Milkman PhD explains the power…
Find the Right Words to Inspire Your TeamApr 18, 2021
It’s important to understand that when you, as a leader, communicate with your team, using weaker words weakens your message and blunts your ability to inspire people. It’s not enough to just throw thoughts out there and hope for the best. You need to actively recommend ideas and assert their worthiness in all of your communications. For example, consider these “power words”: “I’m proposing (not “sharing”) an idea that will make our process more efficient.” “I’m suggesting (not “sharing”) a new logo that better conveys our brand message.” “I’m recommending (not “sharing”) a campaign to make our workplace more diverse.” Ultimately, audiences respond more actively to big points than to small words, but thoughtful leaders need to assess both, knowing that the more powerfully they come across — even in small ways — the greater impact they have on the people they hope to inspire.
This is How to Repair a Toxic Work CultureApr 18, 2021
Feeling safe is the magic ingredient to a healthy work environment. In this article Nir discusses novel research on how to eliminate toxic work culture.
The Tim Ferriss Show Transcripts: Jerry Seinfeld — A Comedy Legend’s Systems, Routines, and Methods for Success (#485) - The Blog of Author Tim FerrissApr 11, 2021
Please enjoy this transcript of my interview with entertainment icon Jerry Seinfeld (@jerryseinfeld). Jerry’s comedy career took off after his first appearance on The Tonight Show with Johnny Carson in 1981. Eight years later, he teamed up with fellow comedian Larry David to create what was to become the most successful comedy series in the … Continue reading "The Tim Ferriss Show Transcripts: Jerry Seinfeld — A Comedy Legend’s Systems, Routines, and Methods for Success (#485)"
Extrinsic Motivation: Why You Make Terrible Life ChoicesMar 20, 2021
The goal is to use extrinsic and intrinsic motivation in concert.
Why Losing Bonds Sports FansFeb 3, 2021
A study on team loyalty among fans shows that club ranking plays an important role in how they identify with one another.
The Science of Changing Someone's MindJan 31, 2021
Don’t try to change someone else’s mind. Instead, help them find their own motivation to change.
How to stop procrastinating by using the Fogg Behavior ModelAug 14, 2020
B J Fogg is a Stanford professor who came up with a simple model of behavior that helps us understand why we take action or not take action at any given moment.
What Makes Someone a Fan?Sep 21, 2019
It’s more than just ticket sales. Rich Luker, a social psychologist, studies fandom and why, for example, someone might get a tattoo of their favorite team.
Objections Are GoalsOct 10, 2018
After I published test && commit || revert, I got a variety of responses on Twitter and on Hacker News. The Twitter comments were mostly…
This is how Google motivates its employeesSep 13, 2018
Transparency and the ability to take risks are big factors.
How to Motivate Frontline EmployeesAug 31, 2018
One question that has long plagued organizations is how to create high-performing front lines — without unexpected consequences. The solution may be simple: Focus on motivating frontline workers. An experiment with a national retail organization found that transforming the operating model of some stores, to boost the motivation of their employees, raised productivity, customer satisfaction, and sales. The key was to get rid of motivational tactics that created emotional and economic pressure on employees, and instead build systems to encourage learning and a sense of play and purpose in the work.
People Don’t Buy Products, They Buy Better Versions of ThemselvesAug 25, 2018
What Apple, Samsung, and Starbucks learned from Pepsi
Publicly credit your employeesOct 23, 2017
movies-television
When Hannibal Lecter Took Over - LongreadsJan 29, 2026
With "The Silence of the Lambs" hitting theaters, Orion wanted a hit. They didn't anticipate an antihero.
Stream 4,000+ Public Domain Movies on WikiFlix: Silent Classics, Academy Award-Winners, Hitchcock Films & MoreJan 13, 2026
Humanity was already enjoying motion pictures a century ago. But the ability to do so at home still lay a few decades in the future, and the ability to pull up a movie on demand through a streaming service much further still.
We are all le Carré’s people nowJan 13, 2026
Once again, John le Carré is back. The TV series inspired by his post-Cold War novel, The Night Manager, is returning to our screens on New Year’s Day. There’s an exhibition about his “tradecraft” on
How Did TVs Get So Cheap?Jan 8, 2026
You’ve probably seen this famous graph that breaks out various categories of inflation, showing labor-intensive services getting more expensive during the 21st century and manufactured goods getting less expensive.
The 100 Greatest TV Shows of All TimeJan 7, 2026
Variety breaks down the best TV shows of all time. From The Sopranos to Community, these are the best series ever aired.
Why does every film and TV series seem to have the same plot? | Aeon EssaysJan 3, 2026
The three-act ‘hero’s journey’ has long been the most prominent kind of story. What other tales are there to tell?
Delroy Lindo On The "Brilliant" And "Contemporary" Story In Ryan Coogler's 'Sinners' [Interview]Dec 31, 2025
Delroy Lindo already deserved an Oscar nomination. He might finally get one for his role as Delta Slim in Ryan Coogler's Sinners.
Why YouTube is a genuine threat to NetflixDec 18, 2025
Digiday charted how YouTube is a threat to Netflix, including watch time dominance, user base and its ability to reshape viewing behaviors.
Netflix and the Hollywood End GameDec 15, 2025
Netflix is driving the Hollywood end game, likely confident it can increase the value of IP, and fend off YouTube.
Best Amazon Prime MoviesDec 5, 2025
New films, and classics, just keep coming, but you don’t have to drill down to find the finest selections to stream. We’ll do the heavy lifting. You press play.
Why Do Filmmakers Call The Battle of Algiers the Greatest War Movie Ever?: Watch It Free OnlineDec 3, 2025
Paul Thomas Anderson's latest film, the loose Thomas Pynchon adaptation One Battle After Another, serves up many a memorable scene.
The Hidden Psychology of Netflix ThumbnailsNov 27, 2025
Disney lost Roger RabbitNov 24, 2025
Anatomy of a Ghost Story: John Carpenter’s The Fog (1980)Nov 21, 2025
Enjoy the videos and music you love, upload original content, and share it all with friends, family, and the world on YouTube.
Cable nostalgia persists as streaming gets more expensive, fragmentedOct 1, 2025
Cord reviving isn’t common but points to discontent with today’s streaming options.
Inside Lego’s secretive creative process that brings its best sets to lifeSep 24, 2025
The Lego Ideas team, including its senior model designer, tells Fast Company how they turned 'Gremlins' icon Gizmo into a 1,125-piece set.
Bland, easy to follow, for fans of everything: what has the Netflix algorithm done to our films?Aug 28, 2025
When the streaming giant began making films guided by data that aimed to please a vast audience, the results were often generic, forgettable, artless affairs. But is there a happy ending?
The God Man - Full Film (9.5min)Aug 27, 2025
Check out the film's original score by Jason Stamatyades here: https://jasonstam.bandcamp.com/album/the-god-man-original-motion-picture-scoreThe God Man Full...
Ads in NFL Games are 23 Times More Effective Than All Other TV BuysAug 26, 2025
New research indicates the extent to which NFL advertising dominates other forms of TV programming for marketer returns.
A24’s Empire of AuteursAug 25, 2025
Alex Barasch offers the first inside look at the studio behind such movies as Ari Aster’s “Midsommar,” Celine Song’s “Past Lives,” the Daniels’ “Everything Everywhere All at Once,” Barry Jenkins’s “Moonlight,” and Josh Safdie’s upcoming “Marty Supreme”—and reports on its shift toward big budgets and A.I. tools.
Celebrating 50 years of The Rocky Horror Picture ShowAug 18, 2025
“It’s had a profound impact on our culture, especially on people who’ve felt different and marginalized.”…
The Invisible Horror of The Shining: How Music Makes Stanley Kubrick’s Iconic Film Even More TerrifyingJul 9, 2025
Inexplicable as it may sound to readers of this site, there are movie-lovers who claim not to enjoy the work of Stanley Kubrick.
“It’s a Hell of a Thing, Killing a Man”: the Birth of Clint Eastwood’s UnforgivenJun 24, 2025
Eastwood biographer Shawn Levy dives into the making of the director’s masterpiece: “Unforgiven was Clint Eastwood saying, ‘This is what I’m going to do…get out of my way.’”
Albert Brooks Is EverywhereJun 24, 2025
The funniest people on the planet think there’s no funnier person than Albert Brooks.
How Steven Soderbergh Directs a Scene & Makes It GreatMay 19, 2025
Steven Soderbergh was one of the earliest filmmakers to break out in what's now called the 'Indiewood' movement of the nineteen-nineties. He was early enough, in fact, to have done so in the eighties, with the Palme d'Or-winning Sex, Lies, and Videotape.
How YouTube redrew the TV map - in graphsMay 13, 2025
As YouTube has risen over the past 20 years to the streaming giant it is today, the platform has changed the way people watch TV.
The 100 best sci-fi movies of all timeApr 11, 2025
From clones to alien invasions – picked by scientists, filmmakers and writers
The Binge PurgeFeb 23, 2025
TV’s streaming model is broken. It’s also not going away. For Hollywood, figuring that out will be a horror show.
Opinion | A.I. Is Coming for Hank Azaria’s ‘Simpsons’ VoicesFeb 7, 2025
Soon enough, artificial intelligence may be able to recreate the sounds — but there will be something missing.
12 Days Of Xmas | Space Ghost Coast To Coast | Adult SwimDec 24, 2024
Enjoy the videos and music you love, upload original content, and share it all with friends, family, and the world on YouTube.
Film Technica: Our favorite movies of 2024Dec 23, 2024
This year’s list features quite a bit of horror mixed in with the usual blockbuster fare—plus smaller hidden gems.
Casual Viewing | Will TavlinDec 20, 2024
A decade before Airbnb persuaded homeowners to transform their homes into hotels, Netflix convinced its users to turn theirs into mini Netflix warehouses. Customers who held onto their DVDs for longer meant fewer shipping costs for Netflix, and fewer DVDs for the company to manage and store. Netflix tracked heavy users of its service — labeling them internally as “pigs” — and secretly throttled their deliveries. It didn’t matter if Netflix rented fewer DVDs than Blockbuster, because the company would keep collecting its monthly fee. The difference between Blockbuster and Netflix was this: Blockbuster punished customers for being forgetful; Netflix rewarded them for being mindless.
Quality Trash: Meet director Ron Oliver, Hallmark’s king of schmaltz - Toronto LifeDec 11, 2024
And other oxymoronic observations about the oeuvre of Ron Oliver, the Hallmark Channel’s most prolific, flamboyant and unapologetically sappy director
Do G-Rated Films Even Make Sense Anymore?Dec 9, 2024
Based on the sharp decline of the G rating, apparently not. Learn why Hollywood seems to have left the general rating designation behind.
Cable TV Is on Its Very Last Legs. Next Year May Be the End.Nov 23, 2024
Comcast’s spinoff of its properties signals the accelerating decline of traditional TV—and a brutal reckoning for the media industry in the new Trump era.
New Zemeckis film used AI to de-age Tom Hanks and Robin WrightNov 5, 2024
Time-hopping film Here used AI trained on every Tom Hanks movie to make him appear young again.
Our 50 Favorite ‘Saturday Night Live’ SketchesOct 19, 2024
Live from New York, it’s an idiosyncratic list of ‘SNL’ moments we’re still thinking about—from the Belushi/Aykroyd/Radner years to the Eddie Murphy era to Sandler, Fey, Hader, and beyond.
‘Twisters’ Has Become the Perfect Storm for Drive-In TheatersJul 30, 2024
"Twisters" is taking over drive-in movie theaters around the country, stealing time from even Marvel's latest release.
Spanish Translation - S1 EP1 - Space Ghost Coast to CoastJul 5, 2024
After declaring his fondness for Mexican food, Space Ghost asks diet guru Susan Powter what super powers help "stop the insanity." Comedian Kevin Meaney discusses the virtues of wearing tight pants and the Bee Gees stop by for a short, bizarre visit.
The Future of Netflix, Amazon and Other Streaming ServicesJun 22, 2024
Who will survive? Die? Thrive? And how? We talked to nearly a dozen top media executives and asked them to predict what lies ahead.
TV Companies Losing Subscribers As Sports Rights Deals Continue to RiseJun 22, 2024
Four major TV provider companies reported collective losses of roughly 1.35 million customers during their first fiscal quarters.
DMA® Regions | NielsenJun 22, 2024
DMA (Designated Market Area) regions are the geographic areas and zip codes in the U.S. in which local television viewing is measured by Nielsen.
Why Tubi CEO Anjali Sud thinks free TV can win againJun 19, 2024
Tubi’s free TV strategy puts it between free social video and paid streaming.
50 Perfect Movies, According to Rotten TomatoesJun 16, 2024
Yes, ‘Citizen Kane’ is in Rotten Tomatoes’s 100% Club. So are ‘Paddington 2’ and ‘The Terminator.’
The Madness of King George- The stool scene.May 14, 2024
King George's doctors discuss the importance of his stool! Historians believe the King suffered from Porphyria which manifests itself with severe abdominal pain, vomiting, neuropathy, and mental disturbances.
Digiday+ Research: A guide to ad-supported streaming services, from the topMay 7, 2024
The first installment of Digiday's two-part series on the top ad-supported streaming services provides an overview of the platforms’ offerings and an analysis of how brands and agencies distribute their ad budgets and ad placements across platforms.
Research Briefing: Frequency capping matters most on streaming platformsMay 5, 2024
In this edition of the Digiday+ Research Briefing, we examine the top ad attributes marketers want from ad-supported streaming platforms, how brands are increasing their marketing spend on YouTube, and how Walmart and Roblox are teaming up to make virtual e-commerce a reality, as seen in recent data from Digiday+ Research.
How realistic is the planetary orbit in Netflix’s ‘3 Body Problem’? A physiApr 28, 2024
A physicist explains the planetary orbit in Netflix's 3 Body Problem based on computational analysis run in more than 10 billion bodies.
The lines between streaming and cable continue to blur | Ars TechnicaApr 17, 2024
Disney+ to offer 24/7 channels to play Star Wars content, commercials.
Carrie at 50: the bloody history of Stephen King’s audacious debut novelApr 8, 2024
The ‘king of horror’ has published more than 60 novels and sold over 350 million books – but it all began 50 years ago with the tale of a teen misfit with telekinetic powers who gets her first period in the school shower. Jessie Thompson looks back on a great, career-making novel (which King’s wife had to salvage from the bin)
3 Body Problem’s most mind-bending question isn’t about aliensApr 8, 2024
Would you swear a loyalty oath to humanity — or cheer on its extinction?
“3 Body Problem” Is a Rare Species of Sci-Fi EpicMar 18, 2024
The Netflix adaptation of Liu Cixin’s trilogy mixes heady theoretical questions with genuine spectacle and heart.
The 15 Greatest Documentaries of All Time: Explore Films by Werner Herzog,Mar 13, 2024
There are two kinds of people in this world: those who recognize the phrase 'corny dialogue that would make the pope weep,' and those who don't.
The 38 All-Time Best Food MoviesMar 11, 2024
What to add to your Netflix queue when you want to feel really hungry
“Dune” and the Delicate Art of Making Fictional LanguagesMar 9, 2024
The alien language spoken in Frank Herbert’s novels carries traces of Arabic. Why has that influence been scrubbed from the films?
Seven Books That Explain How Hollywood Actually WorksMar 7, 2024
These titles shed light on an industry that’s always bubbling with drama beneath the surface.
The Ruthless Rise and Fall of Paramount Pictures During Hollywood’s GoldenMar 6, 2024
The venerable movie studio, now up for grabs, once defined the industry's zeal for consolidation, pioneering vertical integration and serving as the model for each of its major rivals.
Ridley Scott’s “Napoleon” ComplexMar 5, 2024
Does the director of “Alien,” “Blade Runner,” and “Gladiator” see himself in the hero of his epic new film?
The Most Beautiful Shots in Cinema History: Scenes from 100 FilmsMar 5, 2024
If you're an even mildly enthusiastic filmgoer, these two short compilations from The Solomon Society will get your life flashing before your eyes.
What You Need to Know About U.S. Sports TV ContractsFeb 19, 2024
The NFL's television contracts account for $12.4 billion, about 43% of all sports TV deals in the U.S.
How Netflix Conquered Hollywood — And Then Broke ItFeb 19, 2024
The inside story of how the streamer muscled its way to the top by defying the industry’s conventions — and eventually paid the price.
Understanding YouTube Campaign TypesFeb 19, 2024
Google Ads offers seven YouTube campaign subtypes, ranging from reaching users while browsing to driving conversions.
‘Shawshank’ in China, as You’ve Never Seen It BeforeFeb 17, 2024
A stage adaptation of the film featured an all-Western cast, was performed in Chinese and raised questions about translation, both linguistic and cultural.
Why Ted Lasso isn’t the massive hit in the U.K. that it is in the U.S.Feb 7, 2024
Despite revolving around English football, a variety of factors have contributed to Ted Lasso not taking hold in the United Kingdom
CBS’s Super Bowl Features 165 Camera Feeds. He Watches Them AllFeb 6, 2024
Even as networks cram more tech into their sports production, replay producers still play a critical, human role.
HOPPER: An American love story - About the documentary | American Masters |Jan 25, 2024
Discover the secrets behind Edward Hopper’s most iconic and enigmatic works. See how his marriage to artist Josephine Hopper shaped his art.
Adam Sandler Is A Lonely Astronaut With An Alien Stowaway In Netflix’s SpacJan 18, 2024
Carey Mulligan is his wife. See the trailer via Empire.
Americans Are Canceling More of Their Streaming ServicesJan 6, 2024
Hulu and other streamers are turning to bundles, discounts and ad-supported plans as customer defections rise.
Netflix’s Leave the World Behind is a tense post-apocalyptic thriller in fiOct 24, 2023
Watch the first trailer.
Free Animated Films: From Classic to Modern | Open CultureOct 20, 2023
Watch over 70 free animations online. The collection features some classics, plus some modern gems. You'll find a number of animations of literary classics in the mix too. For more great films, please visit our complete collection, .
The Sam Neill Horror Movie On Streaming That Questions RealitySep 25, 2023
Inspired by H.P. Lovecraft, this horror film was too bizarre for theaters, but ended up becoming a cult classic.
The Sci-Fi Thriller On Streaming Every X-Files Fan Needs To SeeSep 24, 2023
If you've ever been a fan of The X-Files, then this sci-fi thriller is something you're going to want to check out.
The Rise and Fall of TV's Golden AgeSep 16, 2023
The facts and figures of "Peak TV," and why it had to come to an end.
The Real Reason These Celebrity Talk Shows Keep ImplodingSep 14, 2023
It is a direct effect of the way these shows are — and have always been — structured.
The Rise and Fall of ESPN’s LeverageSep 12, 2023
Charting ESPN’s rise, including how it build leverage over the cable TV providers, and its ongoing decline, caused by the Internet.
Animating the Grim Reaper and a Canine Companion, in “Death and the Lady”Sep 12, 2023
Geoff Bailey and Lucy York Struever used C.G.I. to create a world that’s layered and cozy, even when Death comes knocking.
The truth is out there: Celebrate 30 years of The X-Files with our 30 favorSep 10, 2023
From alien abductions to monsters of the week, this sci-fi series had something for everyone.
The 50 Best Movie Soundtracks of the Past 50 YearsAug 19, 2023
From the iconic closing notes of ‘The Breakfast Club’ to the era-encapsulating mix of ‘Dazed and Confused’ to the work of the Purple One himself, these are the best mixes of cinema and sound since 1971
‘I Didn’t Kill My Wife!’ — An Oral History of ‘The Fugitive’Aug 3, 2023
"Three decades after the release of the landmark Hollywood thriller, the cast and crew ... reflect on the legacy of the instant classic that almost fell apart."
Raylan and Boyd's Final Meeting - Scene | Justified | FXJul 28, 2023
“We dug coal together.” Enough said. Stream on Hulu. Stream all episodes of #JustifiedFX on Hulu.
Justified Season 6, Episode 13.
Subscribe now for more Justified clips: http://bit.ly/SubscribeFX | Visit Official Site https://fx.tv/Justified
Based on Elmore Leonard’s novella “Fire in the Hole,” Justified was developed by Graham Yost and stars Timothy Olyphant as Deputy US Marshal Raylan Givens, a lawman who finds himself drawn back to his home state of Kentucky. In Justified’s final season, the long brimming conflict between Raylan and Boyd Crowder (Walton Goggins) will finally come to a head. The series co-stars Walton Goggins as ‘Boyd Crowder;’ Nick Searcy as ‘Chief Deputy Art Mullen;’ Jacob Pitts as ‘Deputy Marshal Tim Gutterson;’ Erica Tazel as ‘Deputy Marshal Rachel Brooks;’ Joelle Carter as ‘Ava Crowder;’ and Jere Burns as ‘Wynn Duffy.’ Yost wrote the pilot and serves as Executive Producer/Writer on the series. Executive Producers on the series include Carl Beverly, Sarah Timberman, Michael Dinner, Fred Golan, Dave Andron, Don Kurt, Taylor Elmore, Timothy Olyphant, and the late Elmore Leonard. Justified is produced by Sony Pictures Television and FX Productions.
Like Justified on Facebook: https://www.facebook.com/JustifiedFX
Follow Justified on Twitter: https://twitter.com/justifiedfx
Follow Justified on Instagram: http://instagram.com/justifiedfx
Like FX on Facebook: http://bit.ly/FXNetworksFacebook
Follow FX on Twitter: http://bit.ly/FXNetworksTW
Follow FX on Instagram: http://bit.ly/FXNetworksInstagram
Raylan and Boyd's Final Meeting - Scene | Justified | FX
https://www.youtube.com/user/FXNetwork
Connections (British TV series) - WikipediaJul 27, 2023
Connections is a science education television series created, written, and presented by British science historian James Burke. The series was produced and directed by Mick Jackson of the BBC Science and Features Department and first aired in 1978 (UK) and 1979 (US). It took an interdisciplinary approach to the history of science and invention, and demonstrated how various discoveries, scientific achievements, and historical world events were built from one another successively in an interconnected way to bring about particular aspects of modern technology. The series was noted for Burke's crisp and enthusiastic presentation, historical re-enactments, and intricate working models.
PlexJul 23, 2023
Reddit - Dive into anythingJul 16, 2023
70 votes, 19 comments. Youtube link MST3K Wiki Link Slab Bulkhead Bridge Largemeat Punt Speedchunk Butch Deadlift Hold Bigflank Splint Chesthair…
‘Dazed and Confused’ at 30: Wooderson Gets Older, but His Philosophy StaysJul 3, 2023
Richard Linklater didn’t set out to make a Texas film, but Matthew McConaughey’s iconic character feels like somebody every Texan knows.
How the Astonishing Sushi Scene in Wes Anderson’s Isle of Dogs Was AnimatedJun 30, 2023
Since the moviegoing public first started hearing it twenty years ago, Wes Anderson's name has been a byword for cinematic meticulousness.
Stream These Five Cormac McCarthy Film AdaptationsJun 19, 2023
The Coens and Ridley Scott are among the directors who took big swings at the novelist’s work. The distinctive writer left his mark on the big screen.
The Untold History of the ‘Whassup?’ Super Bowl CommercialMay 30, 2023
How a grainy VHS tape became one of the most famous ads of all time — and went viral before viral was even a thing.
Watch Marjoe (1973) Full Movie Free Online - PlexMay 30, 2023
Plex has free movies and TV shows available with no sign up required.
From Netflix to HBO, the terrible design of streaming is ruining TVMay 18, 2023
Why in 2023 is streaming TV such a terrible experience?
The 50 Best Movies on Netflix Right NowMay 4, 2023
There are so many film experiences to choose from on Netflix, let us help you narrow down your choices.
Top 50 TV Shows Of All Time Ranked by the most known sources of ratings like IMDb, Rotten Tomatoes, Metacritic and so on.Apr 25, 2023
298 votes, 284 comments. 315K subscribers in the moviecritic community. A subreddit for movie reviews and discussions
Draculas, RankedApr 19, 2023
We’ve counted all the counts and put together a high-stakes ranking of the best and the worst.
Wes Anderson Goes Sci-Fi in 1950s America: Watch the Trailer for His New FiApr 14, 2023
Wes Anderson has been making feature films for 27 years now, and in that time his work has grown more temporally and geographically specific.
Inside Amazon Studios: Big Swings Hampered by Confusion and FrustrationApr 5, 2023
Despite ambitious bets like 'Daisy Jones & The Six' and the upcoming 'Citadel,' insiders complain that there’s still "no vision for what an Amazon Prime show is." But chief Jen Salke says they are missing the point: "You don’t reverse-engineer true creative vision."
A Thousand and One review: The most terrifying movie of the year.Apr 5, 2023
And it’s not what you’d expect.
The 12 Greatest, Strangest, Most Transfixing Dance Scenes in the History of Crime MoviesApr 5, 2023
Because people may cheat, steal, and kill, but their hips don't lie.
35 Trivia Tidbits About ‘Beetlejuice’ for Its 35th AnniversaryMar 31, 2023
We could talk about ‘Beetlejuice’ all day, and there’s no better day than on its 35th anniversary
Daisy Jones & the Six Wasn’t Only Inspired by Fleetwood MacMar 30, 2023
Fleetwood Mac wasn’t the show’s only inspiration.
ResultsMar 15, 2023
The future of TV is up in the air - The VergeMar 14, 2023
Free 4K HDR broadcasts are out there... you just can’t find them.
Vesper movie review & film summary (2022) | Roger EbertMar 14, 2023
Vesper commands viewers’ attention with its exceptionally well-realized costume, sound, and production design, as well as some well-utilized, Cronenberg-icky creature and special effects.
The “Dazed and Confused” GenerationMar 4, 2023
People my age are described as baby boomers, but our experiences call for a different label altogether.
What is the Most Successful Hollywood Movie? A Data StoryFeb 5, 2023
Everyone says and thinks Avatar right? But, as ever, it depends how you look at it. We took a deep data dive and found some surprising...
More People Should Watch One of the Best Sci-Fi Movies of 2022Feb 4, 2023
Biopunk fairy tale Vesper took years to make, so we should probably give it a watch.
The VICE Guide to Streaming ServicesJan 27, 2023
Go from NBA obsessive to Criterion-and-chill at the touch of a button.
Comedy movies rarely make it to theaters today. Here's why.Jan 20, 2023
Comedy films don’t travel well abroad because humor differs from country to country, causing the genre to fall out of favor with Hollywood.
How Much More Netflix Can the World Absorb?Jan 14, 2023
Bela Bajaria, who oversees the streaming giant’s hyper-aggressive approach to TV-making, says success is about “recognizing that people like having more.”
Why YouTube spent the money on NFL Sunday TicketDec 27, 2022
YouTube chief product officer Neal Mohan tells us the steaming giant is making a big bet on TVs, where it’s seeing the fastest growth.
The Blues | PBSDec 21, 2022
The Blues: a multi-media project anchored by seven impressionistic and interpretive films that capture the essence of the blues while exploring how this art form so deeply influenced people the world over.
The Eagle Huntress || A Sony Pictures Classics ReleaseDec 21, 2022
Sony Pictures Classics presents 'The Eagle Huntress' - Directed by Otto Bell - Opens NY & LA 10/28 - Coming Soon To a City Near You
Want to Understand Television’s Troubles? Look at AMC. (Published 2022)Dec 19, 2022
The company has struggled to earn enough from streaming to make up for losses from its traditional cable business. It is a story widespread in the industry.
DeepMind Created An AI Tool That Can Help Generate Rough Film and Stage ScrDec 10, 2022
Alphabet's DeepMind has built an AI tool that can help generate rough film and stage scripts Engadget's Kris Holt reports: Dramatron is a so-called "co-writing" tool that can generate character descriptions, plot points, location descriptions and dialogue. The idea is that human writers will be abl...
'Arrival' Is a Timely Film About Aliens and EmpathyDec 4, 2022
The movie's screenwriter talks about the creation of the story's extraterrestrial language and the importance of communication.
Why have late-night talk show ratings collapsed?Nov 15, 2022
Late-night shows, developed during the "golden age" of TV, are no longer as relevant in the age of streaming services and Donald Trump.
The Story Behind One of the Creepiest Scenes in TV HistoryOct 31, 2022
The floating boys of 1979’s ‘Salem’s Lot’ still haunt us. Now the actors share the simple tricks that made it so terrifying.
The 12 Best Horror Shows to Binge for HalloweenOct 28, 2022
Whether you seek spooky chills, jump scares, or creeping dread, we have horror show recommendations to sate your thirst.
The 55 Best Horror Movies To Scare Yourself SillyOct 25, 2022
Grab the popcorn, we’ve got the 55 best horror films of all time for you to queue up on your next Friday night.
The Real Star of M*A*S*HOct 22, 2022
A personal tribute to the overlooked genius of writer W.C. Heinz.
30 Interesting Facts About Alien - All The Right MoviesOct 8, 2022
Ridley Scott's classic launched a wave of imitators, and its effect is felt to this day. In 30 facts, we bring you the lowdown on Alien.
Hilarious Cowboy Poetry With Waddie Mitchell and Batxer Black | Carson Tonight ShowOct 5, 2022
Original Airdate: 01/08/1987
#johnnycarson #thetonightshow
TV FoolSep 29, 2022
Locate TV transmitters, choose antennas, look at coverage maps, and optimize your HDTV setup. Learn about digital TV and how to incorporate it into your home theater system. Rediscover over the air (OTA) TV. Looking for something more accurate than antennaweb?
10 Great Movies About 10 of History's Worst PeopleSep 24, 2022
There’s a reason books about Hitler consistently outsell books about Churchill. As long as it’s kept at arm’s length, abstracted into words or images,
'How to Blow Up a Pipeline' Is the Movie Everyone Needs to See Right NowSep 17, 2022
A heist thriller about taking the fight for a better future seriously, the film is urgent and affecting.
A Comprehensive Tutorial on Stereo Geometry and Stereo Rectification with PSep 16, 2022
Everything you need to know about Stereo Geometry
Ask HN: What are some of the best documentaries you've seen? | Hacker NewsSep 15, 2022
If you could describe in a couple of words why you mentioned what you mentioned, that would be fantastic.
[OC] The Most Watched Netflix ShowsSep 5, 2022
33K votes, 2.3K comments. 21M subscribers in the dataisbeautiful community. DataIsBeautiful is for visualizations that effectively convey…
The Streaming TV BloodbathSep 5, 2022
Streaming platforms like HBO Max and Netflix are axing staff and removing shows from their platform, all in search of profitability.
An Oral History of ‘Steamed Hams,’ the Funniest ‘Simpsons’ Scene Ever RecordedAug 30, 2022
You wouldn’t have seen this in Utica, no. It’s an Albany show.
The Elephant Effect - Considerations on Live Streaming Italy's Serie A ChampionshipAug 28, 2022
For the first time in Italy, a major event - the Serie A football championship - is being broadcast exclusively via the Internet. In this article, we share some considerations the phenomenon of streaming football in Italy, looking at things from the operator’s point of view
The Guilt-Free Pleasure of Airplane MoviesAug 27, 2022
Amid the endless tiny indignities of air travel, only one true retreat remains.
Does the Dog Die? · The WildestAug 14, 2022
Save yourself the heartache and check this awesomely to-the-point site before pressing play.
Mike Judge knows why 'Beavis and Butt-Head' endure: 'They're very pure'Aug 7, 2022
Judge has spent 30 years with the pair of horny metalheads, and although they helped define the 1990s, he's convinced they're as relevant today.
Cinema’s greatest scene: ‘Casablanca’ and ‘La Marseillaise’Jul 27, 2022
Casablanca is widely remembered as one of the greatest films of all time, coming in at #2 on the AFI’s top 100 list and similarly regarded by many other critics. You can quibble with its exac…
The 50 Greatest Fictional Deaths of All TimeJul 20, 2022
The most tearjerking, hilarious, satisfying, and shocking death scenes in 2,500 years of culture.
I worked in a video store for 25 years. Here’s what I learned as my industry died.Jul 19, 2022
Vox is a general interest news site for the 21st century. Its mission: to help everyone understand our complicated world, so that we can all help shape it. In text, video and audio, our reporters explain politics, policy, world affairs, technology, culture, science, the climate crisis, money, health and everything else that matters. Our goal is to ensure that everyone, regardless of income or status, can access accurate information that empowers them.
Tropes - TV TropesJul 18, 2022
An index page listing Tropes content. A trope is a storytelling device or convention, a shortcut for describing situations the storyteller can reasonably …
Art, Commerce, and Zamfir: Selling Music on TVJul 18, 2022
Not sold in stores. Duhhhhhh.Neatorama is proud to bring you a guest post from Ernie Smith, the editor of Tedium, a twice-weekly newsletter that hunts for the end of the long tail. In another life, he ran ShortFormBlog.How the music industry’s TV-driven direct marketing strategies revived vintage hits, salvaged floundering careers, and brought us Zamfir’s epic pan flute.When I grew up, I listened to a lot of John Denver. Well, not really full songs, so much as the 10-second snippets of tun...
America’s favorite family outings are increasingly out of reachJul 16, 2022
Taking the kids to a baseball game, a movie, or Disneyland is a bigger financial commitment than it used to be for middle-class families.
'The Bear's' Jeremy Allen White Has a Crush on Carmy, TooJul 16, 2022
In FX’s surprise hit, the 31-year-old actor plays a tormented culinary genius who returns home to run his family’s Chicago sandwich shop. We caught up with White in his native Brooklyn to learn what it took to get in the kitchen.
List of television networks by countryJul 14, 2022
This is a list of television networks by country. For lists of television stations by country, see Lists of television channels (sorted by continent and country) or Lists of television channels by country.
The Economics of Infomercials - PriceonomicsJul 6, 2022
At $200 billion, the infomercial industry is twice the size of the entire TV business. How is that possible? We investigate the business model behind the Snuggie.
Anatomy of a Product Placement (Published 2022)Jul 5, 2022
As consumers skip ads and streaming content balloons, brands aim to be everywhere all at once.
Pop Culture Posters & Illustrations by Tomasz MajewskiJul 3, 2022
Polish illustrator and graphic designer Tomasz Majewski combines traditional techniques with digital work to produce cool pop culture creations. More: Instagram, Behance
Why Sports Are a Game-Changer for StreamingJun 25, 2022
Amazon and Apple TV are betting big on live sports streaming, and Netflix may be next.
How To Improve Your Writing: 5 Secrets From Hollywood - Barking Up The Wrong TreeJun 24, 2022
Andrew Kevin Walker, writer of the movie "Seven", gives five tips on how to improve your writing.
Aidy Bryant’s ‘SNL’ Exit Interview: ‘I Was Worried I Was Going to Be Fully Crying’Jun 24, 2022
Aidy Bryant on saying goodbye to "Saturday Night Live" and charting her future in Hollywood.
The Story of Lee Marvin, Gene Hackman, and Quite Possibly the Strangest American Crime Film of the 1970sJun 24, 2022
Want to talk about one of the strangest, if not the strangest American crime film to emerge in the first half of the 1970s? Then, let’s talk about Michael Ritchie’s neo-noir Prime Cut, as it turns …
RokuJun 23, 2022
Roku provides the simplest way to stream entertainment to your TV. On your terms. With thousands of available channels to choose from.
Inside the Brilliant, Heartbreaking First 10 Minutes of ‘Up’Jun 19, 2022
"We figured the best way to make the audience understand—and care—would be to connect his house to a relationship, and unfinished business," says director Pete Docter
TV Advertising’s Surprising Strength — And Inevitable FallJun 13, 2022
TV advertising is having a good week at the upfronts, and it may be more resilient than expected. That, though, means the crash will be even more abrupt.
The oral history of 'Encino Man,' Brendan Fraser's caveman cult classicJun 7, 2022
This is the untold story of how 'Encino Man' got made — and turned Brendan Fraser and Pauly Shore into movie stars.
Browse Movies, TV Shows and GamesJun 4, 2022
Find your next movie to watch. Filter by genre, release year, or streaming service.
How Netflix Reverse-Engineered HollywoodJun 2, 2022
To understand how people look for movies, the video service created 76,897 micro-genres. We took the genre descriptions, broke them down to their key words … and built our own new-genre generator.
Can Paramount Go It Alone? (Published 2022)Jun 1, 2022
The dominance of Netflix and Disney in streaming has forced many companies to join forces. So far, Paramount has gone its own way.
Ted Sarandos Talks About That Stock Drop, Backing Dave Chappelle, and HollyMay 29, 2022
The Netflix executive says he — and the company he helped build — will survive a bout of bad earnings numbers.
42 years ago, the "Mother of Yoda" conquered Hollywood — then she vanishedMay 29, 2022
You might not recognize the name Wendy Froud (née Midener), but in the practical effects world, she’s a legend. Her work even earned her one of pop culture’s greatest monikers: the Mother of Yoda.
Why Is ‘Bob’s Burgers’ So Freakishly Lovable? This Guy.May 25, 2022
Loren Bouchard’s accidental career as a comedy mogul has now brought his TV family to the big screen.
'The Fifth Element' to Return to Theaters to Celebrate Its 25th AnniversaryMay 22, 2022
Get your Multipasses ready.
This Sci-Fi Western Offers a Quiet Rebuke to YellowstoneMay 9, 2022
Outer Range borrows a lot from the hit drama, but its take on the American West couldn’t be more different.
It’s Still Stupidly, Ridiculously Difficult To Buy A ‘Dumb’ TVApr 15, 2022
Historically, “smart” TVs aren’t always particularly smart. They’ve routinely been shown to have lax security and privacy standards. They also routinely feature embedded OS …
Kiss the streaming struggle goodbye with Plex | PlexApr 7, 2022
Ahhh the app dance. You know the one—where you sit down with the best intentions of watching a movie but...
‘Texas Chain Saw Massacre’ and the Lessons Few Horror Films Get RightMar 19, 2022
Ti West is the rare genre director to understand the original and honor it with a movie, “X,” that also works on its own terms.
These are Netflix's Most Popular Shows (According to Netflix)Mar 15, 2022
We analyzed eight months of Netflix viewership data to determine what is and isn’t working on the world’s most popular TV network.
One of the Greatest Movies About JazzMar 13, 2022
A MOMA retrospective of Larry Clark’s films includes “Passing Through,” which dramatized the jazz world from the inside.
“Columbo” shows the benefits of asking just one more thingFeb 18, 2022
However powerful the villain, the scruffy detective always outwits them
The Little TV Industry That CouldFeb 18, 2022
Want a medical drama, a spy thriller, a snowy neo-noir? Finland has you covered.
Breaking Bad became one of the best TV shows ever by borrowing a trick from ShakespeareFeb 10, 2022
The show balanced improvisation and careful planning thanks to its overarching structure.
Ted Lasso - WikipediaJan 2, 2022
Ted Lasso is an American sports comedy-drama television series developed by Jason Sudeikis, Bill Lawrence, Brendan Hunt, and Joe Kelly, based on a character Sudeikis portrayed in a series of promotional media for NBC Sports's coverage of England's Premier League. The show follows Ted Lasso, an American college football coach who is hired to coach an English soccer team whose owner secretly hopes his inexperience will lead it to failure, but whose folksy, optimistic leadership proves unexpectedly successful.
Mel Brooks on the Making of SpaceballsDec 26, 2021
My son Max loved the Star Wars movies. I would take him to various showings of them. And for his tenth birthday, he had a Star Wars–themed birthday party. And boy, did those kids love it! So I thou…
See the Real Live Man Who Grew Up in a CarnivalDec 15, 2021
For our reporter, “Nightmare Alley” recalls a childhood spent working the circuit with his parents. Carnies like the World’s Smallest Woman welcomed him when cruel classmates didn’t.
The Loss at the Heart of Guy Fieri’s Entertainment EmpireNov 29, 2021
"Diners, Drive-Ins and Dives" is a mainstay of basic cable—and a rallying cry for a country that is losing touch with itself.
Taking Humor Seriously on “The Simpsons”Nov 23, 2021
David Owen’s 2000 Profile of George Meyer: Humor has to reframe reality, Meyer says. “It’s like seeing in two dimensions and then opening the other eye or looking through a View-Master and suddenly seeing in three.”
David Simon and the Creation of “The Wire”Nov 23, 2021
Margaret Talbot’s 2007 Profile of the show’s creator, with a behind-the-scenes look at the filming of “The Wire” ’s fifth season.
Why ‘Planes, Trains and Automobiles’ Is the Ultimate Thanksgiving MovieNov 22, 2021
Why 'Planes, Trains and Automobiles' is the ultimate Thanksgiving movie – and how John Hughes turned a buddy comedy into a Turkey Day classic.
The Old Country Meets Prozac Nation on “The Sopranos”Nov 22, 2021
From 1999: “There has certainly never been anything like it on TV, and on network TV there never could be anything like it.”
Why ‘Slap Shot’ Captures the 1970s Better Than Any Other Sports MovieNov 21, 2021
Celebrating the greatest hockey movie of all time—and one the best “malaise days” Seventies films ever.
Why Netflix never goes down - The VergeNov 19, 2021
Netflix’s secret to success is happening behind the scenes.
The 100 Best Film Noirs of All TimeNov 7, 2021
Paste Magazine is your source for the best music, movies, TV, comedy, videogames, books, comics, craft beer, politics and more. Discover your favorite albums and films.
The 30 best mobster movies – ranked!Sep 19, 2021
Ahead of the Sopranos prequel The Many Saints of Newark hitting cinemas, here are 30 organised crime flicks you must see before you sleep with the fishes
This Artist Creates Hilarious Combinations Of Popular Characters In Iconic ScenesSep 5, 2021
Many fans get excited when movies or TV shows feature characters from different franchises or even universes. These mash-ups are intriguing: the characters interact with each other in really unique and interesting ways, the fandoms get to mingle, and many more plot possibilities open up. One of
The Real C.E.O. of “Succession”Aug 24, 2021
How the writer Jesse Armstrong keeps the billionaire Roy family trapped in its gilded cage.
What We Do in the Shadows | Yard Sale - Season 3 Teaser | FXAug 5, 2021
An evil bucket that’s great for collecting evil. See how the vampires are decluttering for the
all-new season premiering Sept 2nd on FX.
Subscribe now for more What We Do in the Shadows clips: http://bit.ly/SubscribeFX
A look into the daily (or rather, nightly) lives of four vampires who have “lived” together for hundreds and hundreds of years in Staten Island.
Watch What We Do In The Shadows Season 3 Videos: https://youtube.com/playlist?list=PLIDyzBpnfjqlvwe-nFwowHG1WdtUVLLy7
Like What We Do in the Shadows on Facebook: Facebook.com/theshadowsfx
Follow What We Do in the Shadows on Twitter: twitter.com/theshadowsfx
Follow What We Do in the Shadows on Instagram: Instagram.com/theshadowsfx
Like FX on Facebook: http://bit.ly/FXNetworksFacebook
Follow FX on Twitter: http://bit.ly/FXNetworksTW
Follow FX on Instagram: http://bit.ly/FXNetworksInstagram
What We Do in the Shadows | Yard Sale - Season 3 Teaser | FX
https://www.youtube.com/user/FXNetworks
Why Horror Films Are More Popular Than EverJul 24, 2021
It feels good to control what will terrify you.
Sci-Fi Short Film “FTL" | DUST - YouTubeJul 19, 2021
A lone astronaut testing the first faster-than-light spacecraft travels farther than he imagined possible.
"FTL" by Adam Stern
#DUST #scifi #shortfilm
More About FTL:
Ethan Kane, a NASA Astronaut and decorated pilot, has recently retired from active duty to spend more time with his wife and young son. As he tries to adjust to a quieter life on the ground, he’s approached to fly one last mission...testing the first faster-than-light spacecraft. While the world watches, Kane takes The Longshot on its maiden voyage.
About DUST:
DUST presents thought-provoking science fiction content, exploring the future of humanity through the lens of science and technology. From timeless classics to cutting-edge movies, series, short films, and podcasts, DUST acquires, produces and distributes all content types.
Connect with the filmmaker:
Website: https://www.adamlstern.com/
Website: http://www.artifexstudios.com/
Connect with DUST
Website: http://www.watchdust.com
Sign-up for DUST newsletter: http://eepurl.com/b_SKAz
Watch DUST on your TV: Available on Roku, Samsung TV, Apple TV, Android TV...and more
Watch more on YouTube: http://bit.ly/2amTSen
Follow Us on Facebook: http://bit.ly/2aqYgtZ
Follow Us on Instagram: http://bit.ly/2amAhRt
Listen to the DUST podcast:
Apple: http://bit.ly/DUST-Audio
Spotify: http://bit.ly/DUST-Spotify
Stitcher: http://bit.ly/DUST-Stitcher
Castbox: http://bit.ly/DUST-Castbox
iHeart: http://bit.ly/DUST-iHeart
Connect with FTL:
Website: https://www.ftl.film/
About Gunpowder + Sky:
Creating content that resonates and impacts pop culture conversation, by empowering creators to take risks and experiment relentlessly in the pursuit of novel stories and formats.
Sci-Fi Short Film “FTL" | DUST
https://www.youtube.com/watchdust
Subscribe to the DUST and ALTER newsletter: http://eepurl.com/dChYXb
The Weird History of Hillbilly TV — THE BITTER SOUTHERNERJul 18, 2021
Gabe Bullard takes a long, hard look at the history of hillbilly TV, from Andy Griffith to “Duck Dynasty.”
Robin Williams - Chlamydia, Your Dad Is Here! - 5/5 Appearances In ChronoloJul 3, 2021
Title at 47:54 AND 51:10
His genius is universal. Great interviews.
Appearances:
1: 2009
2: 2010
3: 17th Nov 2011
4: 21th Nov 2011
5: 2013
Toy Story - Story Structure AnalysisJul 3, 2021
Learn the major plot points and story structure of Toy Story directed by John Lasseter.
The Remaking of Comedy CentralJul 3, 2021
Behind Chris McCarthy’s plan to transform the ViacomCBS network from a linear cable channel to a multi-platform content machine.
Why Are People Getting Worse at “The Price Is Right”?Jun 21, 2021
The typical guess is much worse today than it was in the 1970s. It could be because people don't really need to keep track of prices anymore.
Adult Swim - YouTubeJun 21, 2021
Watch adult swim on Max, www.adultswim.com, or by downloading the adult swim app. Binge marathons or watch selected episodes of many of your favorite shows including Rick and Morty, SMILING FRIENDS, The Boondocks, Aqua Teen Hunger Force, and many more.
After saving Tuca & Bertie, Adult Swim has posted the first episode of seasJun 14, 2021
Now’s your chance to see the show.
The Formidable Charm of Omar SyJun 13, 2021
How the star of “Lupin” pulled off his greatest confidence trick.
How 'One Hundred and One Dalmatians' Saved DisneyJun 7, 2021
Sixty years ago, the company modernized animation when it used Xerox technology on the classic film
The Expanse UI Design — HUDS GUISMay 26, 2021
Here’s a look at the various FUI designs from the sci-fi series The Expanse . Special thanks to Brian Benton who suggested this and provided some great links as well! A lot of the images have been collected from this massive image dump from drainsmith and further below we have some insights and
The economics of movie product placementsMay 10, 2021
Today’s films are brimming with products from big-name brands. How exactly do these partnerships work? And is the payoff worth it?
Two Assholes Lost in the Woods: An Oral History of ‘Pine Barrens’May 9, 2021
Twenty years after it aired, David Chase and Co. look back on one of the wildest, boldest, funniest episodes of ‘The Sopranos’ ever made
How Pixar Uses Hyper-Colors to Hack Your BrainMay 7, 2021
The animation studio’s artists are masters at tweaking light and color to trigger deep emotional responses. Coming soon: effects you’ll only see inside your head.
Why Don’t Some TV Shows Sound the Way They Used To? (Published 2021)Apr 28, 2021
Licensing issues have gutted the soundtracks of many beloved series on streaming services, resulting in bewildering music cues and missing theme songs.
The 101 Greatest Endings in Movies HistoryApr 22, 2021
Good finales offer catharsis. The best deny us closure altogether.
The Low-Key Carter-Era Pleasures of “The Muppet Show”Apr 17, 2021
On the original show, which is now streaming for the first time on Disney+, bits of fabric and glue and yarn become complexly real.
The Tim Ferriss Show Transcripts: Jerry Seinfeld — A Comedy Legend’s Systems, Routines, and Methods for Success (#485) - The Blog of Author Tim FerrissApr 11, 2021
Please enjoy this transcript of my interview with entertainment icon Jerry Seinfeld (@jerryseinfeld). Jerry’s comedy career took off after his first appearance on The Tonight Show with Johnny Carson in 1981. Eight years later, he teamed up with fellow comedian Larry David to create what was to become the most successful comedy series in the … Continue reading "The Tim Ferriss Show Transcripts: Jerry Seinfeld — A Comedy Legend’s Systems, Routines, and Methods for Success (#485)"
The 32 Greatest Character Actors Working TodayMar 28, 2021
We asked critics and Hollywood creators: Which supporting players make everything better?
The Best Moments Of Archer: Malory | Netflix NordicMar 28, 2021
Archer fans rejoice! Here are the sassiest lines from all 10 seasons.
#Archer #Malory #Netflix
The Timeless Fantasy of Stanley Tucci Eating Italian Food | The New YorkerMar 27, 2021
In CNN’s culinary travel series, Italy is beautiful and the food of Italy is beautiful. Not insignificantly, Tucci is beautiful, too.
Glory at sea! | Psyche FilmsMar 22, 2021
Storm survivors band together on a surreal journey: an audacious artwork from the community behind Beasts of the Southern Wild
Comfort Viewing: 3 Reasons I Love ‘Courage the Cowardly Dog’Mar 9, 2021
The bizarre animated series creatively blended the beautiful with the grotesque, pop culture with pathos.
‘The Truffle Hunters’ Review: In Dogged Pursuit of Culinary GoldMar 7, 2021
An enchanting documentary about men and their best friends combing the northern Italian forests for an unlikely delicacy.
The 20 Best Horror Movies on Hulu Right NowMar 5, 2021
The Empty Man, The First Omen, Smile, and more.
The 25 Essential Episodes of The Muppet ShowFeb 20, 2021
Now that the classic show is streaming on Disney+, we round up the best episodes — and ask guest stars about their Muppet memories.
‘Nomadland’ | Anatomy of a SceneFeb 19, 2021
The director Chloé Zhao narrates a scene from her movie featuring Frances McDormand and David Strathairn.
The 50 Best Cult MoviesJan 27, 2021
From ‘The Room’ to ‘Eraserhead’ to ‘Rocky Horror,’ these are the best movies to ever inspire deep obsession
'One Night In Miami' Is a Rare Glimpse at the Humanity of Our HeroesJan 27, 2021
The Amazon Prime original is a colorful dramatization of the night Malcolm X, Sam Cooke, and Jim Brown celebrated Muhammad Ali's historic 1964 win in a segregated hotel.
How to Go From Working in a Steel Mill to Being the Highest Paid Actor on TVJan 16, 2021
Ed O’Neill made his career during the era when networks dominated TV, starring in “Married... With Children” and “Modern Family.” He also gives a stunning performance in the recently released film “The Last Shift,” a new comedy about working-class life. He opens up to Wealthsimple about earning $300 a week in a steel mill in Youngstown and getting a $3-million bonus in Hollywood.
Five Lessons From Dave Chappelle – Stratechery by Ben ThompsonDec 18, 2020
Dave Chappelle has a new special about his old show that includes fundamental lessons about how the Internet has changed the content business.
Staff-favorite streaming devices for 2024Nov 17, 2020
Streaming devices can be faster and more up-to-date than apps built into your TV, according to experts.
25 Feel-Good Films You’ll Want to Watch Again—and AgainNov 7, 2020
Anxious? Here are some of the best and most rewatch-friendly movies to soothe your mind.
Space Mutiny – List of David Ryder Names [MST3K]Nov 3, 2020
List: Slab Bulkhead, Fridge Largemeat, Punt Speedchunk, Butch Deadlift, Bold Bigflank, Splint Chesthair, Flint Ironstag, Bolt Vanderhuge, Thick McRunfast, Blast Hardcheese, Buff Drinklots, Trunk Slamchest, Fist Rockbone, Stump Beefgnaw, Smash Lampjaw, Punch Rockgroin, Buck Plankchest, Stump Chunkman, Dirk Hardpeck...
Wendy's - Soviet Fashion Show (1985, USA) - YouTubeNov 3, 2020
Rumor has is this ad was banned for being offensive. However, this was not the only spot to poke fun at Soviet Russia at the time. Directed by Joe Sedelmaier.
Sixty-two of the Best Documentaries of All TimeOct 21, 2020
The idea of what a documentary is has shifted according to what has—and hasn’t—been possible during the past hundred years. But the artistic preoccupations of their creators have not changed radically in that time.
Python For Feature FilmOct 20, 2020
A look into how Python is used to bring your favorite movies to the big screen.
Remembering Laika: 'Space Dogs' Documentary Explores Moscow Through a StraSep 15, 2020
Space.com reports: Laika, a stray dog scooped off the streets of Moscow, launched on the Soviet Union's Sputnik 2 mission in November 1957, just a month after Sputnik 1's liftoff opened the space age. The 11-lb. (5 kilograms) mixed-breed quickly died of overheating and circled Earth as a corpse unti...
The Guy Who Wouldn't Write a Hit: An Interview with David Simon | Claudia DreifusJul 19, 2020
Claudia Dreifus: You are sometimes called “the Balzac of Baltimore.” What’s your take on the title? David Simon: When people say that, I go, “Did you just call me a ball sac?” I usually goof on that. I haven’t read all of Balzac. I keep slicing up society, taking a different slice each time, thinking, eventually I’ll have a cake. That’s Balzac. That’s what he did. What I never do is raise my hand and say, “This could be a hit. Make this because this could be a hit.” The minute I do that, I’m done as me.
What Happened to the Shows That Were Supposed to Become the Next ‘Game of Thrones’?Jun 1, 2020
Every network and streamer has been searching for a series that can become the next piece of monoculture, but so far nothing has captured the world’s attention like the fight for the Iron Throne
30 Movies That Are Unlike Anything You’ve Seen BeforeMay 28, 2020
These films, each unforgettable in its own way, are essential viewing.
Unexpected Movie Masterpieces to Watch in QuarantineApr 19, 2020
Some were blasted by critics, some flopped at the box office, and all are ripe to attain cult-classic status.
Meet the Criterion Channel, the most fun way to become a film buffMar 26, 2020
The specialty streaming service has an expansive collection of masterpieces, cult classics, and more.
JellyfinFeb 19, 2020
The volunteer-built media solution that puts you in control of your media. Stream to any device from your own server, with no strings attached.
How Bullwinkle Taught Kids Sophisticated Political SatireFeb 9, 2020
Culture critic Beth Daniels argues the cartoon moose even allowed viewers to reckon with nuclear war
Terrestrial television - WikipediaDec 23, 2019
Terrestrial television or over-the-air television (OTA) is a type of television broadcasting in which the content is transmitted via radio waves from the terrestrial (Earth-based) transmitter of a TV station to a TV receiver having an antenna. The term terrestrial is more common in Europe and Latin America, while in Canada and the United States it is called over-the-air or simply broadcast. This type of TV broadcast is distinguished from newer technologies, such as satellite television, in which the signal is transmitted to the receiver from an overhead satellite; cable television, in which the signal is carried to the receiver through a cable; and Internet Protocol television, in which the signal is received over an Internet stream or on a network utilizing the Internet Protocol. Terrestrial television stations broadcast on television channels with frequencies between about 52 and 600 MHz in the VHF and UHF bands. Since radio waves in these bands travel by line of sight, reception is generally limited by the visual horizon to distances of 64–97 kilometres (40–60 mi), although under better conditions and with tropospheric ducting, signals can sometimes be received hundreds of kilometers distant.
The essential comparison guide to every streaming serviceDec 23, 2019
Netflix or Hulu? HBO or Showtime? Disney Plus or HBO Max? Here’s help
An Ode to the Video Store Chain, on the Occasion of Blockbuster’s DemiseDec 15, 2019
Ah, video stores, where viewers—and cinephile clerks—got to develop eclectic tastes.
The Real-Life Hollywood Hoax That Turned a Fake Bradley Cooper Epic Into a $14 Million ScamNov 27, 2019
Adam Joiner’s silver-screen dreams were finally coming true. He had a deal with Netflix, a superstar lead and even interest from Spielberg. There was only one problem: His entire story was a lie
HBO’s Corpus of Content and Apple’s Lack ThereofNov 2, 2019
Apple TV+ is cheap and barren. HBO Max is expensive and cheapening their brand. Everyone is confused.
Watch The Laundromat | Netflix Official SiteNov 2, 2019
When a widow gets swindled out of insurance money, her search for answers leads to two cunning lawyers in Panama who hide cash for the superrich.
Check Out These 5 Seriously Creepy Documentaries for Halloween!Oct 31, 2019
Horror film expert/critic Scott Weinberg picks five seriously scary documentaries just in time for Halloween.
The Vast of Night is an alien encounter film like no otherOct 27, 2019
Film festival darling snuck up and attracted Amazon money in 2019, hits Prime this weekend.
How Dan Patrick and Keith Olbermann’s ‘SportsCenter’ Changed TV Forever - TSep 5, 2019
Upon the 40th anniversary of ESPN, we revisit Keith Olbermann and Dan Patrick, the wisecracking anchors whose "Big Show" revolutionized sports broadcasting and late night TV
Taylor and Kanye: How two superstars and four words influenced a decade of pop cultureAug 18, 2019
On the 10-year anniversary of ‘I’mma let you finish,’ a look back at a definitive moment.
The tiny video store that survived NetflixAug 2, 2019
In the wake of an algorithm-led video store apocalypse, Captain Video stays afloat by offering a rarity: human interaction.
The Future of Television | I, CringelyJul 15, 2019
I’ll be surprised if broadcast television in the U.S. survives another decade.
Why Isn’t Hulu Better?Apr 26, 2019
When Hulu was launched, in 2008, it had the backing of three major motion-picture studios—21st Century Fox, NBC Universal, and Walt Disney Studios/ABC Television. The service seemed poised to dominate video distribution online—but today it ranks only 8th among streaming services, far behind Netflix, YouTube, and Amazon Prime Video. What happened? From its inception, it turns out, the service faced two major obstacles to success: its ownership structure, which discouraged its members from sharing their most valuable content; and the organizational structure of its members, which focused on their traditional model of doing business, rather than on streaming. But streaming is the future of the entertainment industry, the authors write, and Hulu will only succeed if it acknowledges that truth and adapts its business model accordingly—which, promisingly, it has begun to do.
The 50 Best Movie Soundtracks of All TimeMar 12, 2019
From Black Panther to Clueless, Dazed and Confused to Purple Rain, the music that has defined modern filmmaking
(29) Harry Patch: The Last Tommy - YouTubeJan 31, 2019
This truly wonderful film, first broadcast in 2009, examines the life and times of a truly wonderful old gentleman, Britain's last fighting survivor of the Great War, Harry Patch. Harry died in 2009 at the age of 111 years, one month, one week and one day. See the excellent Wikipedia article on him and 'Veterans of the Great War', also on my channel. Uploaded for educational purposes only.
Fractured Fairy TalesDec 24, 2018
One of the companion segments of Jay Ward's Rocky and Bullwinkle Show television program of the early 1960's was Fractured Fairy Tales, a 'retelling' of familiar fairy tales that you only thought you were familiar with. In this example, a Prince Charming who looks and acts suspiciously like Walt Disney turns the tale of Sleeping Beauty on its ear. Many more are available on [YouTube](https://www.youtube.com/results?search_query=fractured+fairy+tales) if you like this one. I loved these as a child and lov...
25 Things You Didn't Know Your Chromecast Could DoNov 13, 2018
Google might have discontinued the Chromecast but if you have one, you can still get the most out of it.
When ratings don’t define success, more TV series hang aroundSep 30, 2018
The television industry is in the middle of a powerful shift, allowing longevity for little-seen broadcast shows.
The Age of Jennifer’s BodySep 24, 2018
Diablo Cody’s movie has been reclaimed as a cult classic—and its destructive teenaged protagonist deserves reappraisal too.
‘Michael Clayton’ in the Age of NetflixSep 5, 2018
Michael Clayton is a great film. I was reminded of this fact a while back on Twitter. Not that I needed to be reminded — I tweet about the…
The 17 Best Indie Movies of 2018 (So Far) | IndieWireJul 2, 2018
The fall season is upon us, but there are already many, many cinematic highlights in 2018.
TV Time, the TV tracking app with over a million daily users, can now findMar 16, 2018
With TV programming now spread out across a variety of services beyond traditional network TV, it can be hard to know what to watch next and what's
Watch the First Trailer for Hereditary, Sundance’s Biggest Horror HitJan 31, 2018
Toni Collette and Gabriel Byrne star in this dark family thriller.
mp3
Winamp’s woes: How the greatest MP3 player undid itselfJul 18, 2022
15 years on, Winamp “still lives”—but mismanagement blunted its llama-whipping.
The Math Trick Behind MP3s, JPEGs, and Homer Simpson’s Face - Facts So RomaJun 10, 2019
This theoretical physicist’s idea has an astounding legacy.
museums
Life on Display: A Reading List on MuseumsOct 21, 2025
A reading list on how museums reflect culture.
Museum of ColorSep 14, 2025
From ochre to lapis lazuli, Stephanie Krzywonos opens a door into the entangled histories of our most iconic pigments, revealing how colors hold stories of both lightness and darkness.
North America’s First and Only da Vinci Museum is Coming to COMar 27, 2025
Coming to Pueblo, CO, this fall, the Leonardo da Vinci Museum of North America will be the first and only museum of its kind in the continent.
Empty Frames and Other Oddities From the Unsolved Gardner Museum HeistMar 18, 2024
After 34 years, not one of the 13 works stolen during the largest art theft in history has surfaced but the puzzling peculiarities of the case still draw interest.
What you learn about beauty and grief as a guard at the Metropolitan Museum of ArtFeb 27, 2023
After his brother’s death, Patrick Bringley took a job at the grandest place he could find.
The Best Little Museum You Never Visited in ParisFeb 19, 2020
The Museum of Arts and Crafts is a trove of cunning inventions
14 Paris Museums Put 300,000 Works of Art Online: Download Classics by MoneJan 10, 2020
First trips to Paris all run the same risk: that of the museums consuming all of one's time in the city. What those new to Paris need is a museum-going strategy, not that one size will fit all.
Museum in a BoxDec 11, 2019
A small, friendly device you put museum objects on to hear their stories... It's history that speaks for itself!
Download Coloring Pages From Over 100 MuseumsMar 5, 2019
We first shared this post in early 2019, long after the peak of the adult coloring fad . But desperate times call for desperate measures, and a globa
music
Why people are buying iPods againFeb 21, 2026
Nostalgia and digital burnout are driving a new rush for Apple's retired iPods.
The Mount Rushmore of 90s West Coast Rap SongsFeb 11, 2026
West Coast rap during the 90's had dozens of classic songs. Noisey selects 4 of the greatest songs from hip-hop's golden age in California.
Why Do We Like Music?Feb 11, 2026
People with musical anhedonia don’t get any enjoyment from music. Shayla Love writes about scientists studying this condition to learn about how music affects listeners’ minds and moods.
Will we ever… understand why music makes us feel good?Feb 8, 2026
No one knows why music has such a potent effect on our emotions. But thanks to some recent studies we have a few intriguing clues.
The House That Dizzy Built—And the City That Kept It - KOLUMN MagazineFeb 2, 2026
Hidden behind Georgetown storefronts, a candlelit room has spent 60 years turning dinner service into American music history—and fighting to keep the lights on
6th Annual John Prine Night | Marathon, TX | Oct 11, 2025Jan 21, 2026
John Prine Night is an annual gathering at The French Co. Grocer in Marathon, TX to celebrate the life, music, and spirit of John Prine. Hosted by Sam Stavinoha, the owner and proprietor of The French Co. Grocer, and emceed by Austin-based artist, writer and musician M. Walker, the event occurs each October on the week
19 One-Hit Wonders That Rank Among the Catchiest Songs EverJan 11, 2026
It only takes one hit song to etch your name in history.
With Spotify’s Library Plundered, the Door Is Open for Music Preservation, but Also for AI CompaniesDec 22, 2025
Spotify's library was scraped in the name of music preservation, but will this make illegally training AI even easier?
Ain't It a Cold, Cold World?Dec 10, 2025
David Ramsey shares a collection of nineteen stories about country music singer-songwriter Blaze Foley.
The World-Shifting Grooves of Fela KutiNov 20, 2025
Sarah Larson on the podcast series “Fela Kuti: Fear No Man,” a deeply reported and sonically glorious biography of the legendary Nigerian musician, Afrobeat innovator, and rebel.
Spotify Playlist Sorter - ChosicSep 5, 2025
Sort your Spotify liked songs/playlists by BPM, genres, moods and more music attributes, organize and manage your playlists however you like!
The Colorful, Scandalous, True History of the Machine That Created American PopSep 5, 2025
The jukebox got its start earlier than you might think, but it truly became iconic when rock 'n' roll took over in the 1950s
The Sealy Barbecue Joint That Inspired Robert Earl Keen's “Barbeque” SongAug 28, 2025
We tracked down the family of the now-closed Texas restaurant.
For some people, music doesn’t connect with any of the brain’s reward circuitsAug 22, 2025
Neuroscientists find people who don’t enjoy music, study their brain activity.
Stuttering Has Deep Genetic Roots and May Affect Your Ability to Clap to a BeatAug 15, 2025
A massive genetic study found that stuttering is not just about nurture and may link to processing rhythm itself.
Leopard Seals Sing Songs That Resemble Human Nursery Rhymes—Here’s WhyAug 3, 2025
Every night, a male leopard seal slips off the ice and sings underwater for hours. It sounds structurally like a human nursery rhyme...
Anison 101: A Beginner’s Guide to Anime SongsJul 31, 2025
Many anime tracks become mainstream hits, performed at concerts and karaoke bars nationwide. Here's a guide to the world of anison.
Ella Hanshaw: Woman on FireJul 16, 2025
Author Kelly Kerney tells the story behind the newly released West Virginia gospel album Ella Hanshaw’s Black Book.
The Invisible Horror of The Shining: How Music Makes Stanley Kubrick’s Iconic Film Even More TerrifyingJul 9, 2025
Inexplicable as it may sound to readers of this site, there are movie-lovers who claim not to enjoy the work of Stanley Kubrick.
200 Most Influential Musicians of the Last 25 YearsJun 30, 2025
From Bon Iver to J Dilla to Beyoncé, these are the musicians who made the biggest impact across Pitchfork’s lifetime so far.
The Record Store Enters a New Golden AgeJun 27, 2025
The owners of Waterloo Records hope an eye-popping revamp will reinvent the music-shopping experience in uncertain economic times.
5 Minutes That Will Make You Love Ella FitzgeraldJun 4, 2025
Explore the catalog of “The First Lady of Song” with tracks chosen by Valerie June, Yaya Bey, Imani Perry and 13 more writers and musicians.
♫ Mahna Mahna, Do doo be-do-do ♫ (Why do we get earworms?)May 30, 2025
If we mention or even just allude to a catchy song, we risk having part of it playing on a loop in our head, for days on end. What's that about? And what can we do about it?
The Ballad of Bill FoxMay 23, 2025
Robert Pollard adores him. Jeff Tweedy calls him a hero. But he’s just wanted to be left alone — until now.
The Cleanest Recordings of 1920s Louis Armstrong Songs You Will Ever HearMay 14, 2025
On Youtube, jazz enthusiast Jonathan Holmes declares: 'I can guarantee this is the cleanest sounding Louis Armstrong record you'll ever hear! With the original transfer supplied by Nick Dellow, here is the mother record which was shipped by Okeh to Germany for their Odeon pressings.
The saddest chord progression ever (revisited)May 1, 2025
First, let’s get this out of the way: the title of this post is a joke. No chord progression has any inherent emotional quality. Musical sadness is a matter of cultural convention, and even w…
The 75 Best Albums of 1975Apr 16, 2025
We count down the best 75 albums of 1975: Led Zeppelin, Willie Nelson, P-Funk, Patti Smith and more
How Alison Krauss Found the Song That Rekindled Her Distinctive BandMar 20, 2025
After 14 years between albums, the singer and fiddler has regrouped Union Station to sing about darkness and light. The group is carrying on without a key member.
The Wizard of Vinyl Is in KansasMar 7, 2025
Chad Kassem is on a mission — saving listeners “from bad sound” — at the rural factory where he pores over LPs from some of music’s most important artists.
Her Greatest HitsFeb 18, 2025
"Maybe it's only when you don’t know what you are listening for that you find what you were waiting all along to discover."
SeenFeb 17, 2025
Jazz recommendations : r/JazzFeb 15, 2025
When Louis Armstrong Conquered ChicagoFeb 8, 2025
Grammy-winner Ricky Riccardi tells the story of a milestone moment in American music in this extract from his new book
If I wanted to close my eyes and put on a live album that would whisk me away to New Orleans for a live concert of the finest jazz ever put to tape, what would that album be?Feb 3, 2025
I have a pretty killer audio setup that would require Porsche money to improve. I want to be transported to a jazz hall by a live album that is so…
Reply with a 10/10 albumJan 31, 2025
357 votes, 272 comments. 1.1M subscribers in the Jazz community. Reddit's home for all things related to Jazz. Currently private to protest reddit's…
The Grammy nominee you need to hear: Esperanza Spalding : It's Been a MinuteJan 29, 2025
How do you bring the African Diaspora to the Grammys?Esperanza Spalding and Milton Nascimento's contrasting tones make a perfect team on Milton + esperanza, a collection of covers, duets, and original songs that have earned the pair a Grammy nomination for Best Jazz Vocal Album. Today, Brittany and Esperanza get into the years-long intergenerational friendship behind the music, and the Brazilian influences on the album. Support public media and receive ad-free listening & bonus. Join NPR+ today.
Jump, Jive and Fail: The ’90s Swing CrazeJan 29, 2025
How did retro sounds, dance moves, and vintage suits come to dominate before suddenly disappearing?
David Leheny (@davidleheny.bsky.social)Jan 27, 2025
Jazz OTD: Two masterpieces for today's Jazz OTD. First, Joe Henderson recorded his landmark septet album "Mode For Joe" on January 27, 1966 with Lee Morgan, Curtis Fuller, Bobby Hutcherson, Cedar Walton, Ron Carter, and Joe Chambers. Perfect hard bop leaning ever so slightly outward. #jazzsky https://www.youtube.com/watch?v=PiX96WxbN9o
Song Hunter: The Life of Alan LomaxJan 21, 2025
Alan Lomax was a legendary collector of folk music, author, broadcaster, oral historian, musicologist, and filmmaker who raised the profile of folk music worldwide.
Spotify, TikTok and 50 More Great Articles about MusicJan 19, 2025
The best new and classic writing about the world of music
How Jukeboxes Made Memphis MusicJan 19, 2025
Nashville is where you go to make a hit that sounds like everyone else. Memphis is where you make a …
The 30 Best Dream Pop AlbumsJan 12, 2025
Drift off with Beach House, Cocteau Twins, Grouper, the Pains of Being Pure at Heart, and more
5 Minutes That Will Make You Love Jazz GuitarJan 8, 2025
The instrument hasn’t always been a central player in jazz, but the best guitarists have taken up the challenge of finding their own way. Fourteen musicians and writers share their favorites.
The Most Iconic Hip-Hop Sample of Every Year (1973–2023)Nov 29, 2024
Hip-hop was once a subculture, but by now it's long since been one of the unquestionably dominant forms of popular music — not just in America, and not just among young people.
Blue Note 4000 series - jazz album coversNov 25, 2024
Album cover design and jazz photography on the Blue Note Records. Notes and
pictures from the Birka Jazz Archive
American Routes Shortcuts: Bessie SmithNov 25, 2024
Bessie Smith, Empress of the Blues, was the first African American superstar, an artist that mingled regal dignity with sensuality. We’ll sample her recorded legacy, talk with critics and hear memories of her contemporaries from the Jazz Age of the 1920s.
AllMusic's Favorite Actually Scary AlbumsOct 29, 2024
Halloween parties now come with a built-in soundtrack. You'll hear the prerequisite "Thriller" from Michael Jackson, "Werewolves of London" by Warren Zevon and probably Donovan's…
The year of the music licensing legal warsOct 20, 2024
When the Supreme Court decided against Grokster in 2004, it changed the internet forever.
Hidden Patterns in Folk Songs Reveal How Music EvolvedOct 15, 2024
Songs and speech across cultures suggest music developed similar features around the world
How Midland’s “Drinkin’ Problem” Became a Texas Standard in English and SpanishSep 24, 2024
The trio’s 2017 debut single is frequently covered by artists representing a variety of regional Mexican music genres.
Name a song that instantly raises a person's "cool factor" while listeningJun 19, 2024
1.1K votes, 1.7K comments. Music is a powerful force, to say the least. It can influence our mood, and through our moods it can lead to us be…
Best Music and Albums of All TimeJun 16, 2024
See how well critics are rating the Best Music and Albums of All Time
Listen to 8 Songs From the Bewitching Françoise HardyJun 14, 2024
From her start in the yé-yé 1960s to the depths she plumbed as a singer-songwriter, Hardy, who died Tuesday, continued to entrance new generations of listeners.
T Bone Burnett tackles an old childhood nightmare on 'The Other Side'Jun 7, 2024
The acclaimed producer's latest album is a country blues affair inspired by a sinister dream.
Why We Love MusicMay 11, 2024
Researchers are discovering how music affects the brain, helping us to make sense of its real emotional and social power.
Pittsburgh’s indie & classic rock music stationMay 4, 2024
WYEP is an independent public radio station, playing indie rock, Americana, blues, roots, & classic/modern rock. Listen to your favorite artists and discover new music.
St. Vincent Dives Headfirst Into the DarknessApr 19, 2024
Seven albums and 17 years into an acclaimed solo career, the musician Annie Clark said she craved “a pummeling” on her new LP: “I want something to feel dangerous.”
ChillsDB: an open-source database of chills-inducing stimuliApr 18, 2024
ChillsDB is the first database of validated audiovisual stimuli eliciting aesthetic chills (goosebumps, psychogenic shivers) in the US population.
How Khruangbin’s Sound Became the New Mood MusicApr 11, 2024
The Texan trio’s vibes have spawned countless imitators, but their magic isn’t so easy to replicate.
Slow Listening: Dive Into These Independent Radio Stations From Across theApr 10, 2024
Whether you have diverse tastes or a niche one, there are independent radio stations out there that could feel like home.
Tommy Emmanuel shows off his 'fearless' fingerpicking guitar styleApr 5, 2024
One of the best acoustic guitarists in the world performs a live set for World Cafe.
The Streaming Purge Has Started As Deezer Deletes 26 Million “Useless” TracApr 4, 2024
Deezer has deleted 26 million of what it terms as "useless" tracks, which could be an indicator of what's to come from other platforms.
A Lotta Love to Give: The Brilliant Voice and Too-Short Life of Nicolette LarsonApr 3, 2024
Friends and family of late singer Nicolette Larson remember her brilliant voice, and the ups and downs of a life that ended far too soon.
Leonard Cohen’s ‘Hallelujah’ Belongs to EveryoneApr 3, 2024
What is it about the once virtually unknown song that inspires so many musicians to make it their own?
Why Some Songs Makes Everyone Want to DanceMar 27, 2024
A syncopated rhythm may prompt our brain to find the beat
3 Surprising Hit Song Trends That No One ExpectedMar 27, 2024
A new report by Billboard’s highlights three surprising hit song trends after an analysis of the Billboard radio charts.
Spotify API: How To Create a Data Set of SongsMar 19, 2024
A Fun Tutorial using Python, JSON, and Spotify API! You might find it more comfortable...
The Black Crowes Are Back, and Bygones Are BygonesMar 8, 2024
After ego clashes and substance abuse drove Chris and Rich Robinson apart, they’ve reunited for their first album of raw rock ’n’ roll together in 15 years.
Excerpt: James Kaplan's '3 Shades of Blue' Chronicling Miles Davis's RecordMar 5, 2024
Kind of Blue is the best-selling jazz album of all time. Here's what it was like inside the studio with Miles Davis, John Coltrane, and Bill Evans on the day they laid down one of the record's iconic tracks.
Lost HighwaysMar 5, 2024
Hosted by Bill Lynch Fridays at 10 p.m. & Saturdays at 8 p.m. on WVPB Radio Lost Highways: indie rock, alternative country, Americana, rock-a-billy
The Risk at the Heart of Live MusicMar 1, 2024
Performing pop songs live offers a thrilling reward—if your voice doesn’t betray you, that is.
Cassettes Are Back Again, But In A Big Way In JapanFeb 29, 2024
Cassettes are making a comeback yet again, but this time it's Japan that's leading the way.
The revolutionary spirit of Soul Train Feb 29, 2024
Black creativity found a home on Soul Train — and made TV history.
Let Everybody SingFeb 29, 2024
‘There’s endless choice, but you’re not listening’: fans quitting Spotify tFeb 22, 2024
Former streaming service subscribers on why they have ditched mod cons for MP3s, CDs and other DIY music formats
Punk Dulcimer: Hear The Ramones’ “I Wanna Be Sedated” Played on the DulcimeFeb 18, 2024
Sam Edelston can rock the duclimer. On his YouTube channel, he writes: 'Dulcimers are natural rock instruments. In fact, I even say that dulcimers are among the world's coolest musical instruments, and they deserve to be known by the general public - the way that everybody knows guitars and ukuleles.
Music Machinery | a blog about music technology by Paul LamereFeb 10, 2024
a blog about music technology by Paul Lamere
Taylor Swift Is Off TikTok: Why Universal Music Pulled Its Songs - BloomberFeb 7, 2024
We’re about to find out how important TikTok is to the music industry.
Sarah Jarosz Tests the MainstreamJan 27, 2024
With her new album, “Polaroid Lovers,” a luminary of Americana broadens her sound.
Public Radio's Feel Good Hits Of 2023Jan 24, 2024
From the swag of Janelle Monaé to the devotion of Tyler Childers, last year offered a variety of ways to feel good.
The Weird, Enduring Appeal of ToolJan 18, 2024
The band has built its legacy by stubbornly refusing to act the way rock bands are supposed to.
HomeJan 17, 2024
We Got the BeatJan 16, 2024
How The Go-Go's emerged from the Los Angeles punk scene in the late '70s to become the first and only female band to have a number one album in Beauty and the Beat.
UPCOMING JUKE JOINT FESTIVAL DATESDec 29, 2023
Nanci Griffith’s Lone Star State of MindOct 16, 2023
The late singer-songwriter rarely felt at home either in her native Texas or in the music industry, but her nostalgic ditties of girlhood captured a potent sense of place.
Give me a song. Anything pleaseOct 15, 2023
119 votes, 485 comments. 35M subscribers in the Music community. Reddit’s #1 Music Community
Your Followers are not Your FansSep 27, 2023
Using data provided by Vivid Seats and Instagram, I learned that social media clout isn't all it's cracked up to be.
How to break free of Spotify’s algorithmAug 24, 2023
By delivering what people seem to want, has Spotify killed the joy of music discovery?
Crime Jazz: How Miles Davis, Count Basie & Duke Ellington Created SoundtracAug 22, 2023
When we think of film noir, we tend to think of a mood best set by a look: shadow and light (mostly shadow), grim but visually rich weather, near-depopulated urban streets.
Why nobody got paid for one of the most sampled sounds in hip-hopAug 22, 2023
This month marks the 50th anniversary of hip-hop. A few seconds from one forgotten rap song have tied artists and eras together for decades.
The 50 Best Movie Soundtracks of the Past 50 YearsAug 19, 2023
From the iconic closing notes of ‘The Breakfast Club’ to the era-encapsulating mix of ‘Dazed and Confused’ to the work of the Purple One himself, these are the best mixes of cinema and sound since 1971
“Blurred Lines,” Harbinger of DoomAug 1, 2023
How Robin Thicke, Pharrell, and T.I.’s cursed megahit predicted everything bad about the past decade in pop culture
Why so many brands use sound to make you buy stuffJul 26, 2023
Netflix made sonic logos — the new version of jingles — trendy. But its success is hard to replicate.
The Handsome Family, 'Joseph'Jul 24, 2023
Listen closely to The Handsome Family and it's as if you have stepped into a strange, shimmering plane.
Newly unearthed 1974 session by Clifford Jordan is a striking, one-of-a-kinJul 22, 2023
The tenor sax player came up in Chicago and toured in the '60s with Charles Mingus, Max Roach and Randy Weston. Jordan's forgotten album, Drink Plenty Water, mixes singers with a small ensemble.
Country Music’s Culture Wars and the Remaking of NashvilleJul 18, 2023
Tennessee’s government has turned hard red, but a new set of outlaw songwriters is challenging Music City’s conservative ways—and ruling bro-country sound.
The history of the American anthem 'Will the Circle Be Unbroken'Jul 5, 2023
From family memorials to jam sessions to every show at the Grand Ole Opry, the familiar singalong helps people feel connected to those who have died — whether legendary musicians or loved ones.
The Case for and Against Ed SheeranJun 12, 2023
The pop singer’s trial for copyright infringement of Marvin Gaye and Ed Townsend’s “Let’s Get It On” highlights how hard it is to draw the property lines of pop.
The Complete Collection Of MTV’s Headbangers Ball: Watch 1,215 Videos fromJun 1, 2023
Premiering in April 1987, MTV's Headbangers Ball featured music videos from metal and hard rock bands of the 80s and 90s--everyone from AC/DC and Mötley Crüe, to Ozzy Osbourne, Def Leppard and Twisted Sister, to Judas Priest, Iron Maiden and Van Halen.
The Secret Sound of StaxMay 31, 2023
The rediscovery of demos performed by the songwriters of the legendary Memphis recording studio reveals a hidden history of soul.
Steve Jobs, Rick Rubin and "taste"May 28, 2023
The Apple co-founder and the super-producer share similar ideas regarding taste and creativity.
Get startedMay 28, 2023
Explore the fundamentals of music via Ableton's interactive website. Experiment with beats, melody, harmony, basslines, and song structure in your web browser.
In a Baltimore basement, a jazz detective strikes goldMay 8, 2023
New recordings of old jazz performances at Baltimore's now-closed Famous Ballroom are being released for the first time.
synthwave radio 🌌 - beats to chill/game toApr 29, 2023
🎼 | Listen on Spotify, Apple music and more
→ https://fanlink.to/ChillSynthwave
🎶 Subscribe to this channel for more synthwave music
→ https://bit.ly/synthwave-channel
🌎 | Lofi Girl on all social media
→ https://fanlink.to/lofigirl-social
👕 | Lofi Girl merch
→ https://bit.ly/Iofigirl-shop
🎭 | Create your lofi avatar now
→ https://lofigirl.com/generator/
💬 | Join the Lofi Girl community
→ https://bit.ly/lofigirl-discord
→ https://bit.ly/lofigirl-reddit
🎨 | Art by Lofi Studio (full list of artists here)
→ https://www.instagram.com/p/CrlCU3msh49/
📝 | Submit your music / art
→ https://bit.ly/lofi-submission
From Spotify to YouTube: How I Built a Python Script to Convert PlaylistsApr 26, 2023
I developed the script to convert the Spotify playlist to YouTube playlist. I am here to share how I...
The Lost Music of Connie ConverseApr 24, 2023
A writer of haunting, uncategorizable songs, she once seemed poised for runaway fame. But only decades after she disappeared has her music found an audience.
Pianist Robert Glasper and Singer Samara Joy on Making Jazz NowApr 18, 2023
The musicians discuss their recent Grammy wins and why the true tradition of jazz is all about embracing freedom.
The Otherworldly Compositions of an Ethiopian NunApr 15, 2023
Emahoy Tsegué-Maryam Guèbrou, who died recently, wrote pieces that were elegiac, but suffused with a sense of survival: we are broken, we are wounded, we carry on.
How our brains process music and why we like what we like | Press PlayApr 11, 2023
How long does it take before you change the station or hit “skip” if you don’t like a song? Seconds — according to researchers at New York University.
The Ministers of the Lap-Steel Revival TourApr 10, 2023
The sisters Rebecca and Megan Lovell, of the rock band Larkin Poe, hit up a guitar store before a gig at Webster Hall.
Natalie Merchant’s Lost American SongsApr 2, 2023
Merchant, who’s releasing a new album, never wanted to be a pop star. Her passion is for forgotten people, problems, and sounds.
Musicians Amadou Bagayoko and Mariam Doumbia on their new album, 'Eclipse'Apr 1, 2023
NPR's Scott Simon talks with musicians Amadou Bagayoko and Mariam Doumbia about their love story and their new album, "Eclipse."
Daisy Jones & the Six Wasn’t Only Inspired by Fleetwood MacMar 30, 2023
Fleetwood Mac wasn’t the show’s only inspiration.
David Sulzer’s Wild World of MusicMar 27, 2023
What can elephants, birds, and flamenco players teach a neuroscientist-composer about music?
These Are the Songs a High-End Audio Company Uses to Test Its SpeakersMar 24, 2023
From Leonard Cohen to Eva Cassidy, here's how the audio experts at Sonus faber ensure the best sound for their line of speakers
The Gospel According to Mavis StaplesMar 24, 2023
A legendary singer on faith, loss, and a family legacy.
Meshell Ndegeocello (feat. Brandee Younger & Julius Rodriguez), 'Virgo'Mar 22, 2023
Ndegeocello doesn't conform to anybody else's idea of the celestial plane. When she sings of supernovas, she sounds like a witness.
‘He was central to music history’: the forgotten legacy of Leon RussellMar 10, 2023
In an illuminating new book, the incredible highs and devastating lows of the influential musician are remembered
The Long, Strange Trip of ‘Dark Side of the Moon,’ 50 Years LaterMar 7, 2023
A half-century ago, Pink Floyd unleashed a classic that still lingers on the Billboard charts and in college dorms to this day. But what’s the legacy of the blockbuster album? What’s legacy, anyway?
TuneIn Explorer - Discover New Radio Stations & Songs from Around the WorldMar 4, 2023
Explore music, culture, and sounds from around the globe with TuneIn Explorer. Discover new songs and bands for free on desktop, mobile, and tablet devices.
YouTube Music will let you make your own custom radio stationsFeb 22, 2023
You can choose artists, variability, moods, and more.
Why People Skip Music? On Predicting Music Skips using Deep...Feb 9, 2023
Music recommender systems are an integral part of our daily life. Recent research has seen a significant effort around black-box recommender based approaches such as Deep Reinforcement Learning...
From Death Cab to the Grateful Dead, an Artist Reimagines the Classic Rock PosterJan 30, 2023
For lots of rock-poster collectors, even those who like to think they’re in the know, a common question is, “Who’s Luke Martin?”
The Man Who Fixes the World's Finest ViolinsJan 27, 2023
He’s trusted to repair some of the world’s most fabled — and expensive — instruments. How does John Becker manage to unlock the sound of a Stradivarius?
Stream 385,000 Vintage 78 RPM Records at the Internet Archive: Louis ArmstrJan 26, 2023
We may have yet to develop the technology of time travel, but recorded music comes pretty close. Those who listen to it have experienced how a song or an album can, in some sense, transport them right back to the time they first heard it.
Rickie Lee Jones, 'Just in Time'Jan 21, 2023
Jones lets the sun shine in on this jazz standard, but maintains a pensive undertone.
Famous fans say farewell to the B-52’s: ‘They got me to question my own prejudices’Jan 19, 2023
After 46 years, the Athens originals are taking off for good later this year. David Byrne, Boy George and more pay tribute to one of the most unusual pop bands ever
Todd Rundgren, Renaissance RockerDec 26, 2022
Besides “Hello It’s Me,” his C.V. includes playing in a Bowie tribute band, producing Meat Loaf as a Springsteen parody, and getting drunk with Mrs. Soupy Sales.
The Search for Guns N’ Roses’ Lost MasterpieceDec 25, 2022
How a group of Guns N’ Roses fans leaked 19 CDs of outtakes from 'Chinese Democracy'
The Blues | PBSDec 21, 2022
The Blues: a multi-media project anchored by seven impressionistic and interpretive films that capture the essence of the blues while exploring how this art form so deeply influenced people the world over.
Incredible Afrobeat music from Mali / Boing BoingDec 21, 2022
Founded in 1989, Mr Bongo is an exquisitely-curated indie record (and film) label that uncovers incredible Brazilian psych, rare soul, avant-jazz, and deeply groovy Afrobeat recordings and reissues them in…
HONK!TX - A Free Festival of Community Street BandsDec 21, 2022
HONK!TX, a free fesitval of community street bands held each spring in the public spaces of Austin, Texas
Festival/Event CalendarDec 21, 2022
Stream 35 Hours of Classic Blues, Folk, & Bluegrass Recordings from SmithsoDec 21, 2022
Marshall McLuhan’s chestnut “the medium is the message” contains some of the most important theory about mass media to have emerged in the past century.
Massive Archive of 78RPM Records Now Digitized & Put Online: Stream 78,000Dec 21, 2022
Last summer we checked in with the Internet Archive’s Great 78 Project, a volunteer effort to digitize thousands of 78rpm records—the oldest mass-produced recording medium.
Documentary: Louis Armstrong - Satchmo - The Big PictureDec 21, 2022
Late night palette cleanser: American jazz trumpeter and singer Louis Armstrong.
Stream a 144-Hour Discography of Classic Jazz Recordings from Blue Note RecDec 21, 2022
There have been many influential jazz record labels throughout the previous century and into the current one, but there is no more recognizable label than Blue Note Records.
Enter the Cover Art Archive: A Massive Collection of 800,000 Album Covers fDec 21, 2022
When I get to muttering in my beard about kids today, the subject oft turns to digital music and how everything sounds the same and looks the same and “what ever happened to album covers, man….” I mean I know they still exist, but they’re terrible, right?
Cover Art Archive / APIDec 21, 2022
Neal's Sound File CollectionDec 21, 2022
Complete List of Songs Used in Commercials by Apple, Samsung, Google and MiDec 21, 2022
Songs used in commercials, advertisements, events, presentations and promotional materials by Apple, Samsung, Google and Microsoft.
Soundbreaking: Stories from the Cutting Edge of Recorded Music - The Big PiDec 21, 2022
I have been really enjoying this 8 part series on the process of recording music via PBS: Music has been a constant in human history, an intermingling of voice and instrument that for all its local variation and increasing sophistication nevertheless endured in more or less the same form for centuries. Then came recording––and…Read More
Why vinyl records survive in the digital age | Ars TechnicaDec 21, 2022
Don’t underestimate ritual and tactility.
Digital Music Couldn't Exist Without the Fourier TransformDec 21, 2022
This is the Fourier Transform. You can thank it for providing the music you stream every day, squeezing down the images you see on the Internet into tiny
The 21 Best Hip-Hop Albums of the 21st CenturyDec 21, 2022
Who truly ranks as the 'King of Hip Hop' in this century? Breaking down review scores to find the best hip hop albums, the answer may surprise you.
Someone Has Made 38 Hours of Playlists That Trace the Evolution of Hip-HopDec 21, 2022
And you can listen to it for free.
Learn violin - Freddie's SiteDec 21, 2022
How to Play the ViolinDec 21, 2022
The violin is one of the most rewarding and beautiful instruments to play. The road to learning the violin is a long one, but with patience, discipline, and enthusiasm, these steps will help you start down the road to success with this...
5 Excellent Free Software Options For Creating Music At Home - HypebotDec 21, 2022
The ubiquity (and quality) of available home recording software has dramatically lessened the cost of DIY recording, but with so many options available, it can be difficult to know exactly. Continue reading
Terry Hall, singer with ska icons The Specials, dies at 63Dec 20, 2022
Terry Hall, lead singer of The Specials, has died. With its mix of Black and white members and Jamaica-influenced fashion style, the band became leaders of the anti-racist 2 Tone ska revival movement.
The Best Roots Music of 2022Dec 19, 2022
This year artists working within the orbit of the unstable category "roots music" got personal even as they explored complex cultural lineages and challenged the rules of established scenes and forms.
This 715-song playlist is scientifically verified to give you the chills, thanks to "frisson"Dec 18, 2022
Listening to some songs can cause a powerful physiological response known as "frisson." What is it, and why does it happen?
The 100 Best Songs Of 2022 (20-1)Dec 18, 2022
We ranked a list of 100 songs that reflects the sprawling, energetic messiness of 2022. Start listening.
The 100 Best Songs Of 2022 (100-81)Dec 18, 2022
We ranked a list of 100 songs that reflects the sprawling, energetic messiness of 2022. Start listening.
Chill Lofi Afrobeats Music ★ African Lofi Study Mix - YouTubeDec 10, 2022
★ Please click 👍 Like if you enjoy!
★ Please consider subscribing! 🙏
★ Spotify: https://open.spotify.com/playlist/7FJ7XgXiAdBaUeirQSdOIc?si=ef4ee7fb631e484b
🎵 TRACKLIST
00:00 AFRICAN LOFI
https://www.youtube.com/watch?v=KbvDrGnwkac
03:48 SPACE
https://www.youtube.com/watch?v=oNC8082DrPU
09:34 COZY
https://www.youtube.com/watch?v=cigfvdvTAf4
14:34 I WANNA BE HAPPY
https://www.youtube.com/watch?v=UpHpnhpE2Pg
20:26 JOLIE JOLIE
https://www.youtube.com/watch?v=6qGBJ5yzdvE
23:08 XHOSA
https://www.youtube.com/watch?v=pBIoPQshOiw
27:01 IVORY COAST
https://www.youtube.com/watch?v=4deJhTMFb8o
30:57 SOMEWHERE IN BRASIL
https://www.youtube.com/watch?v=38pJa2I1Hes
36:59 ARKADIA
https://www.youtube.com/watch?v=w0LLEBEl07U
40:00 SUNSET RADIO
https://www.youtube.com/watch?v=Jx4wMwdBIjo
49:37 WOMAN
https://www.youtube.com/watch?v=pcsF2U4vJKI
55:43 PLOT TWIST
https://www.youtube.com/watch?v=1XDOalgOKTQ
1:01:07 TROPICAL EUPHORIA
https://www.youtube.com/watch?v=PPrzqwcTkNM
1:04:57 ALONE WITH MYSELF
https://www.youtube.com/watch?v=db2DNBxldzk
1:08:40 EXOTIC EMOTIONS
https://www.youtube.com/watch?v=cBuXfqGTPm8
❈ How to Support/Donate Mr Yohan ❈
❈ Share my work with friends and family.
❈ Patreon: https://www.patreon.com/africanlofi
❈ Paypal: https://www.paypal.com/paypalme/africanlofi
❈ Ko-fi: https://ko-fi.com/africanlofi
☆ APPLE MUSIC
https://music.apple.com/us/artist/mr-yohan/1543764279
☆ SPOTIFY PLAYLISTS
https://open.spotify.com/playlist/2NwcnQPM3MbVKalN7RhiHl?si=f90c2bb360574ce4
https://open.spotify.com/playlist/0u7QcNxL0D03BtoW5uQijD?si=d1fc42b3d26b42a6
☆ YOUTUBE PLAYLIST
https://www.youtube.com/playlist?list=PL52Hf_cBSjG4iuOs1Re4dZCAxzPIqbxcP
☆ OTHER PROJECTS
https://youtube.com/playlist?list=PL52Hf_cBSjG5nXTV-NGNnclnQ049vckit
☆ SOUNDCLOUD:
https://soundcloud.com/africanlofi
☆ STORY:
https://medium.com/@mryohan/african-lofi-868328d93499
☆ PATRONS:
- Stephen Guma
Business Inquiries / Submit Art to:
Email - mrafricanlofi@gmail.com
Instagram ↠ @mryohanbeats
Thanks!
______________________________________________
Music & Playlist by Mr Yohan
https://www.youtube.com/mryohan
______________________________________________
🎨 Art by Brandon Pilcher
https://www.instagram.com/brandonspilcher/?hl=en
https://www.artstation.com/brandonspilcher
🎨 Video edit by Mr Yohan
______________________________________________
#africanlofi #african #lofi
All Rights Reserved © - Mr Yohan
Bob Boilen's Favorite Music of 2022Dec 9, 2022
The host of All Songs Considered listens for the moments when the poetry of a song's lyrics seem woven into its sound. This year, his playlists overflowed.
Ann Powers' Top 20 Albums Of 2022Dec 6, 2022
NPR's pop critic and correspondent shares her favorite albums of this year.
Best Southern Albums of 2022 — THE BITTER SOUTHERNERDec 6, 2022
The Bitter Southerner’s 2022 Best Southern Records list.
The 10 Best Rock Albums of 2022Dec 6, 2022
In 2022, the top 10 rock albums took a pilgrimage to Memphis, communed with theologians and poets, found the interconnectedness of all beings and danced through pain and pleasure.
Best Albums of 2022 (Published 2022)Dec 4, 2022
The most effective artists of the year weren’t afraid to root around deep inside and boldly share the messiness, the complexities and the beauty of their discoveries.
10 Best Albums of 2022 | SonglinesDec 4, 2022
Featuring fantastic releases from Abel Selaocoe, Jake Blount, Oumou Sangaré, Silvana Estrada and more
How Led Zeppelin Came to BeDec 2, 2022
Read how Jimmy Page recruited the other members of Led Zeppelin, and what led up to their first show in 1968 as the New Yardbirds.
The Enduring Metal Genius of MetallicaNov 28, 2022
On the road with the band in its forty-first year.
Why Do We Love the Music We Love?Nov 23, 2022
Susan Rogers, acclaimed record producer and expert in music cognition, talks about her new book, This Is What It Sounds Like .
Why is China’s underground music scene so weird?Nov 23, 2022
A look at the history of how absurdity has been used to swerve censors in Soviet Russia and beyond. And asking why is China’s underground music scene so weird?
There's still no one like SantigoldNov 15, 2022
On the startlingly direct Spirituals, and in headline-grabbing rebukes of music's trickle-down economy, Santi White is what she's always been: a forward-thinking alternative to pop's here and now.
Jewel-Box Heroes: Why the CD Revival Is Finally HereNov 15, 2022
Rob Sheffield pays tribute to the humble pleasures and basic functionality of the compact disc, in the midst of what may be a CD revival.
The History of Jazz Visualized on a Circuit Diagram of a 1950s Phonograph:Nov 7, 2022
The danger of enjoying jazz is the possibility of letting ourselves slide into the assumption that we understand it. To do so would make no more sense than believing that, say, an enjoyment of listening to records automatically transmits an understanding of record players.
The Night Warren Zevon Left the ‘Late Show’ BuildingOct 31, 2022
On October 30, 2002, a cancer-stricken Warren Zevon returned to the ‘Late Show With David Letterman’ stage for one last performance. Twenty years later, Letterman and more remember the gravitas and emotion of that stunning night.
http://www.americanaboogie.com/radio/?fbclid=IwAR1BA6We3kB4Qlg501kSzeai1wSaqOMfshcJgkx-iLNPta6SfBmMTzHkVSsOct 25, 2022
Devo's Freedom of Choice: The Stories Behind 50 Rock Classics (Vol. I), 197Oct 25, 2022
AllMusic provides comprehensive music info including reviews and biographies. Get recommendations for new music to listen to, stream or own.
This trumpet-fueled walk-on song is professional baseball's latest crazeOct 8, 2022
"Narco," a dance hit by Australian musician Timmy Trumpet and the Dutch DJ duo Blasterjaxx, is the walk-on music for star relief pitcher Edwin Díaz.
Solomun, the D.J. Who Keeps Ibiza DancingOct 6, 2022
He leads a manic, exhausting life—but when he’s guiding clubbers through one of his marathon sets it feels like time has been suspended.
How Headphones Are Changing the Sound of MusicOct 5, 2022
One important impact appears to be on vocals.
Coolio Was More Than “Gangsta’s Paradise”Oct 3, 2022
The hip-hop classic was both 1995’s biggest song and its most acclaimed, but it was neither the rapper’s first hit nor his last.
How one of America’s last piano manufacturers stays aliveOct 2, 2022
Piano-building was once one of the country’s largest industries. Today, only two companies remain in business.
7 Lessons on Dynamic Pricing (Courtesy of Bruce Springsteen)Oct 1, 2022
Some fans were outraged when man-of-the-people Bruce Springsteen charged more than $5,000 per seat for his upcoming concert. The high prices were the result of a dynamic pricing system, in which prices are adjusted upward in response to strong demand. This controversy illustrates seven lessons that managers should keep in mind when adjusting prices, including the need for clear communications, longtime customers’ expectation that they deserve a discount, and the fact that high prices will raise expectations about quality and service.
Björk: Mother, Daughter, Force of NatureSep 29, 2022
In Iceland with the experimental pop icon, digging deep into the triumphs and tragedies that birthed her remarkable new album, Fossora
What’s your favorite rap song of all time?Sep 17, 2022
25K votes, 20K comments. 49M subscribers in the AskReddit community. r/AskReddit is the place to ask and answer thought-provoking questions.
The 100 Greatest Albums of All TimeSep 15, 2022
To celebrate 15 years in business, we're taking a shot at boiling down all of popular music history into the 100 greatest albums of all time.
PianoChord.io - Explore Piano Chords FreelySep 5, 2022
A place to explore piano chords freely and interactively
Why are D-sharp and E-flat considered to be two different notesSep 5, 2022
Why do the black keys on the piano each have two different names? If the posts on r/musictheory are any indication, this is a persistent point of confusion, especially when music theory teachers ge…
The Neuroscience of Drumming: Researchers Discover the Secrets of DrummingAug 31, 2022
An old musician’s joke goes “there are three kinds of drummers in the world—those who can count and those who can’t.” But perhaps there is an even more global divide. Perhaps there are three kinds of people in the world—those who can drum and those who can’t.
Robert Plant and Alison Krauss on the secrets to aging gracefullyAug 24, 2022
Plant and Krauss discuss their first album together in 15 years, their 'happily incompatible' friendship and, of course, the chances of a Led Zeppelin reunion.
Willie Nelson’s Long EncoreAug 17, 2022
As he approaches 90, even brushes with death can’t keep him off the road — or dim a late-life creative burst.
Le bon temps continue to roll on Cajun radio in Southern LouisianaAug 15, 2022
Eight radio stations in Southern Louisiana still broadcast partially in French as they try to keep alive a dying language in the area. French has been spoken there since the mid-1700s.
A Renaissance in American Hardcore MusicAug 12, 2022
A look at the recent burst of bands and how the scene operates as music, ethic and feeling.
Five Minutes That Will Make You Love Duke EllingtonAug 4, 2022
We asked jazz musicians, writers and others to tell us what moves them. Listen to their choices.
More Than a Feeling: A Blues Reading ListJul 31, 2022
A hundred years on from its birth, the music continues to speak to the heart — an art form that also serves as social commentary, communal history, and cathartic release.
The Dynamics of Exploration on Spotify - Spotify ResearchJul 30, 2022
Digital media platforms give users access to enormous amounts of content. To stay interested in this content, users must explore by seeking variety. In this study, we examine how users explore online content on Spotify at different points of their lifecycles, whether by discovering entirely novel music or by refreshing their listening habits from one... View Article
A collection of bad album covers that are both hilarious and awkward, 1960s-1980s - Rare Historical PhotosJul 30, 2022
In this collection, you can see some of the worst album covers of all time. Everything from rock, metal bands, country, gospel comedy, jazz, etc.
How the Brain Allows the Deaf to Experience MusicJul 26, 2022
Our sensory systems for hearing and touch overlap to stir a wealth of emotions.
the-economics-of-girl-talkJul 19, 2022
He is a music sensation, but Girl Talk neither sings nor plays an instrument. He plays music off reinforced Toughbook laptops protected from his sweat by layers of plastic wrap.
Pursuing the Psychological Building Blocks of Music - Behavioral ScientistJul 18, 2022
Humans are wired to produce and understand music, suggest researchers in an ambitious new study. Despite the evidence, not everyone is likely to be convinced.
Anatomy Of A PirateJul 18, 2022
Using Spotify to measure the popularity of older musicJul 18, 2022
I have a theory: No Diggity by Blackstreet is timeless. If Frank Sinatra is timeless in 2015, so too is No Diggity in 2050, fondly remembered by our children's children as the icon of the 90s. And I think that I can prove it.
Piracy Is What Made Me, Says Ed SheeranJul 18, 2022
While piracy is often demonized as an aspect of the industry which ruins careers before they've even really begun, the reality is that the illicit dissemination of music can in. Continue reading
Winamp’s woes: How the greatest MP3 player undid itselfJul 18, 2022
15 years on, Winamp “still lives”—but mismanagement blunted its llama-whipping.
Crowd Patronage: How A 400 Year Old Model Can Save The Music Ind...Jul 18, 2022
“A lot of people in our industry haven’t had very diverse experiences. So they don’t have enough dots to connect, and they end up with very linear solutions without a broad perspective on the problem. The broader one’s understanding of the human...
The Art Of Playlist Stuffing - Music 3.0 Music Industry BlogJul 18, 2022
Streaming is having a tremendous influence on song form these days, but that can now be extended to a strategy known as playlist stuffing.
Art, Commerce, and Zamfir: Selling Music on TVJul 18, 2022
Not sold in stores. Duhhhhhh.Neatorama is proud to bring you a guest post from Ernie Smith, the editor of Tedium, a twice-weekly newsletter that hunts for the end of the long tail. In another life, he ran ShortFormBlog.How the music industry’s TV-driven direct marketing strategies revived vintage hits, salvaged floundering careers, and brought us Zamfir’s epic pan flute.When I grew up, I listened to a lot of John Denver. Well, not really full songs, so much as the 10-second snippets of tun...
Why Do We Even Listen to New Music?Jul 18, 2022
Our brains reward us for seeking out what we already know. So why should we reach to listen to something we don’t?
Justin Timberlake And The AC/DC RuleJul 14, 2022
A lesson from the Australian classic rockers explains why the pop star's newest album, which hasn't generated glowing reviews or massive radio hits, still had an explosive opening sales week.
How Artists Get Paid From StreamingJul 13, 2022
We explain how your money gets from you to a streaming platform, and finally to an artist.
How Much Does It Cost To Make A Hit Song?Jul 6, 2022
We go step-by-step through the making of Rihanna's song "Man Down." Bringing in top songwriters and producers costs tens of thousands of dollars. Trying to turn the song into a hit costs much more.
The Dark Art of Mastering MusicJul 5, 2022
Shedding light on the elusive studio practice that’s all but necessary to make music sound great.
Is Music Universal?Jul 5, 2022
From a neurological and evolutionary perspective, music is fascinating. There seems to be a deeply rooted biological appreciation for tonality, rhythm, and melody. Not only can people find certain sequences of sounds to be pleasurable, they can powerfully evoke emotions. Music can be happy, sad, peaceful, foreboding, energetic or comical. Why is this? Music is
Could This Be The End Of Hidden Ticket Charges For Concert Tickets?Jul 4, 2022
Hidden ticket charges and more have been outlawed in New York State thanks to new legislature that just passed.
‘More than a song’: the enduring power of Leonard Cohen’s HallelujahJul 3, 2022
In a new documentary, fans and experts explore the legacy of a song that was originally shunned before becoming a timeless classic
How Much Is Michael Bolton Worth to You? (Published 2013)Jun 28, 2022
There’s a reason scalpers have confused economists for decades.
Metadata is the biggest little problem plaguing the music industryJun 26, 2022
It’s a crisis that has left, by some estimations, billions on the table unpaid to musicians
How CDBaby Built 20,000 Citations With One E-MailJun 25, 2022
CDBaby* is an online distributor of independent music. Founded by well-known entrepreneur Derek Sivers, the service became a huge hit with independent
AllMusic: The Story of the Big Data JukeboxJun 25, 2022
When AllMusic launched 25 years ago, it wasn't an obvious big data play. But it became one. Hidden in its millions of entries is music's collective history.
RapGenius Growth Hack ExposedJun 24, 2022
Yesterday RapGenius posted the following announcement on their Facebook page: As a contributor to various blogs and an endearing fan of RapGenius, I took
The Awkward Truth Behind Skip RatesJun 23, 2022
With the ubiquity of music access and a lack of any need for patience, the term "skip-rate" has crept into the modern music industry lexicon, and some new data behind. Continue reading
Full Stack Music: 1 Trillion Streams, 200 Million Tickets | TechCrunchJun 23, 2022
At present, there are three distinct music industries: radio, on-demand music, and concert ticketing. However, we are starting to enter a new phase, where these industries will converge and produce one integrated experience for artists and fans. I’ve taken to calling this full stack music, because at heart it speaks to a holistic experience that integrates these industries through data.
The Dark Science of Pop MusicJun 23, 2022
Record companies are tracking download and search data to predict which new songs will be hits. This has been good for business—but is it bad for music?
Tidal and the Future of MusicJun 23, 2022
Predicting success and failure is about understanding who has leverage. In the case of music, the winners will be the labels, not the artist. But perhaps there is hope for tomorrow
Show your musical taste with data: The best analytics tools for SpotifyJun 23, 2022
Spotify analytics for listeners is how the popular streaming service also captures the hearts of its users. Many websites allow
Why Captain Beefheart’s ‘Trout Mask Replica’ Still Sounds Like TomorrowJun 21, 2022
Captain Beefhart's 'Trout Mask Replica' remains one of the ultimate tests of how far you are willing to go to give yourself up to music.
A History of Rock Music in 500 SongsJun 21, 2022
How a Saxophonist Tricked the KGB by Encrypting Secrets in MusicJun 11, 2022
Using a custom encryption scheme within music notation, Merryl Goldberg and three other US musicians slipped information to Soviet performers and activists known as the Phantom Orchestra.
Record Labels Dig Their Own Grave. And the Shovel is Called TikTok.Jun 10, 2022
It's not just the music biz—legacy media outlets everywhere are playing the same dangerous game. Here's how it will play out.
Bootsy Collins, positively helping to keep the funk aliveJun 4, 2022
At the beginning of lockdown, the legendary funk bassist began posting uplifting messages to Instagram, where they found a receptive audience in drummer Adam Deitch of the band Lettuce.
The Obsessive World of Digital Music CollectorsJun 2, 2022
Remember downloading songs? Even in 2022, it’s still a viable—and rewarding—way to collect music.
Like The Linda Lindas, this teen girl band in Benin makes you dance — and tJun 1, 2022
The 7-member band hails from a conservative part of the country. They sing about female genital cutting, child marriage and gender equality. And they rock.
All 340 Bruce Springsteen Songs, RankedMay 31, 2022
Weighing in on every original, officially released composition — including his latest album, Letter to You, and “I’ll Stand by You.”
‘People took so many drugs, they forgot they played on it’ – stars on Exile on Main St, the Rolling Stones’ sprawling masterpieceMay 12, 2022
Recorded during several hedonistic months in a fabulous Cote d’Azur villa, Exile on Main St is seen as the Stones’ epic, creative peak. As the classic album turns 50, stars tell us how it got their rocks off
The Untold Story of the White House’s Weirdly Hip Record CollectionMay 10, 2022
Jimmy Carter’s grandson, John Chuldenko, is unlocking White House mysteries. The record collection is an archive of the nation's music taste back in the 70's.
Why We Remember Music and Forget Everything ElseApr 16, 2022
Psychologists say it's no surprise that we have such a strong memory for music and can easily recall lyrics and melodies, even if we haven’t heard them in years.
‘Oscar Peterson: Black + White’ Review: A Giant of Jazz PianoApr 14, 2022
A pantheon of musical lights pay homage to this brilliant musician.
How does Shazam work? Music Recognition Algorithms, Fingerprinting, and Processing | Toptal®Apr 12, 2022
The Shazam music recognition application made it finally possible to put a name to that song on the radio. But how does this magical miracle actually work? In this article, Toptal Freelance Software Engineer Jovan Jovanovic sheds light on the principles of audio signal processing, fingerprinting, and recognition,...
The Legend of the Music TreeApr 9, 2022
Exotic lumber salvaged from a remote forest in Belize is the world’s most coveted tonewood
All The Music: the MegamixMar 28, 2022
Or a clickbait title: How I became the world’s most prolific DJ, using code.This week I stumbled across a cool project: All The Music.Da...
https://www.dataisnature.com/?p=596Mar 16, 2022
Tibetan Musical Notation Is BeautifulMar 15, 2022
Religions take the cast and hue of the cultures in which they find root. This was certainly true in Tibet when Buddhism arrived in the 7th century. It transformed and was transformed by the native religion of Bon.
One of the Greatest Movies About JazzMar 13, 2022
A MOMA retrospective of Larry Clark’s films includes “Passing Through,” which dramatized the jazz world from the inside.
How Hip-Hop Is Becoming the Oldies (Published 2015)Feb 24, 2022
Part demographic inevitability, part data-driven corporate genius.
A Quest to Return the Banjo to Its African RootsFeb 20, 2022
The Black Banjo Reclamation Project aims to put banjos into the hands of everyday people.
How a jazz legend's resting place was lost and found, 50 years after his trFeb 18, 2022
Though the trumpeter Lee Morgan was killed in 1972, his legacy was well maintained. At least it seemed so, until one fan discovered last year that Morgan's gravesite seemed to have vanished.
Irma Thomas, a Soul Queen Far Beyond New OrleansFeb 18, 2022
As she turns 81, the singer whose intimacy matches her grandeur is the subject of a public television documentary, “Irma: My Life in Music.”
Did jazz forget about Oscar Peterson?Feb 18, 2022
The visionary pianist influenced everyone from Quincy Jones to Billy Joel, while flying under the fame radar himself. A new documentary tells the unsung hero’s story.
How the Riot Grrrl Movement Created a Revolution in Rock & PunkFeb 16, 2022
The Riot Grrrl movement feels like one of the last real revolutions in rock and punk, and not just because of its feminist, anti-capitalist politics. As Polyphonic outlines in his short music history video, Riot Grrrl was one of the last times anything major happened in rock music before the internet.
Beyond Rumours: Building a Fleetwood Mac Record CollectionFeb 16, 2022
AllMusic provides comprehensive music info including reviews and biographies. Get recommendations for new music to listen to, stream or own.
Opinion | The depressing final act of Eric ClaptonFeb 13, 2022
Bigotry and ignorance, in the age of the internet, have a way of catching up with you. And Clapton’s racism and conspiracy theories can no longer be ignored.
The economics of SpotifyFeb 8, 2022
Spotify’s recent Joe Rogan controversy has also deepened a rift between the platform and artists over pay.
Led Zeppelin Gets Into Your SoulJan 29, 2022
The musicians were diabolically bad as people, and satanically good as performers.
Elvis Costello’s Aim Remains True, 32 Albums InJan 26, 2022
Plus, riffs on everything from Olivia Rodrigo’s songs being “how rock and roll works” to passing on a chance to write for Adele.
Dun, Dun Duuun! Where did pop culture’s most dramatic sound come from?Jan 21, 2022
Did the iconic three-note sequence come from Stravinsky, the Muppets or somewhere else? Our writer set out to – dun, dun duuuun! – reveal the mystery
Is Old Music Killing New Music? - by Ted GioiaJan 20, 2022
All the growth in the music business now comes from old songs—with consumption of new music actually shrinking. How did we get here, and is there a way back?
record label t shirts - Google SearchJan 16, 2022
Your Shopping Cart – 88strongJan 16, 2022
Bluebird Records Logo T-Shirt - Classic Heavy CottonJan 16, 2022
BlueBirds Records was known for recording notable Chicago blues musicians in 1932. Order this classic heavy cotton Bluebirds logo t-shirt and rep it today!
The Boy Named If by Elvis Costello & the ImpostersJan 13, 2022
The Boy Named If by Elvis Costello & the Imposters album reviews & Metacritic score: The latest full-length release from Elvis Costello And The Imposters features a guest appearance from Nicole Atkins....
75 Post-Punk and Hardcore Concerts from the 1980s Have Been Digitized & PutJan 5, 2022
Between 1985 and 1988, a teenager by the name of Sohrab Habibion was attending punk and post-punk shows around the Washington, DC area. What set him apart was the bulky video camera he’d bring to the show and let roll, documenting entire gigs in all their low-rez, lo-fi glory.
The Greatest Guitar Solos of All TimeDec 29, 2021
The thorny subject of the greatest guitar solo of all time has long been a fiercely contested debate, probably because every solo is different. How do you compare, say, “Comfortably Numb” with “Crazy Train,” or “Stairway to Heaven” with “Sultans of Swing”? It’s impossible.
Neuroscience: Music, silence, and predictionDec 20, 2021
For the first time, the authors of a recent study isolated the electrical neural signals of prediction by studying moments of silence in music.
Best Jazz Albums of 2021Dec 9, 2021
In a year of continued uncertainty, musicians held their colleagues, and listeners, close.
CD box sets are wonderfulDec 1, 2021
I know, we're all doing vinyl and there has probably been no better time to be a vinyl junkie, given the number of places selling it and the...
How an American in Paris won the rarest of French honorsNov 29, 2021
Josephine Baker next week will become the first Black woman and first American to be honored with enshrinement in Paris' Pantheon.
The Complete History of the Kings and Queens of New York RapNov 29, 2021
In honor of Ringer Films’ new documentary ‘DMX: Don’t Try to Understand,’ we’re tracing the lineage of the crown of hip-hop’s mecca
The Vinyl Renaissance: Take Those Old Records Off the ShelfNov 29, 2021
If listeners today can stream just about any song they want, why are so many music aficionados still buying records? Ryan Raffaelli and Gold Rush Vinyl CEO Caren Kelleher discuss the resurgence of vinyl.
Brain Damage Saved His Music - Issue 20: Creativity - NautilusNov 8, 2021
After a chunk of his brain was removed, guitarist Pat Martino got his groove back.
"A Great Day In Harlem": Remembering the iconic 1958 photo of legendary musiciansNov 4, 2021
58 musicians showed up for a picture that captured the giants of jazz
The Awe-Inspiring But Tragic Story of Africa’s Festival In The Desert (2001Nov 3, 2021
Nenad Georgievski writes at All About Jazz, though the world knew little about Malian music until American musicians began partnering with players from West Africa. In the 1980s, Stevie Wonder began touring with Amadou and Mariam, helping to popularize their form of Malian blues.
How Bionic Gloves Gave a Maestro Pianist His Hands BackNov 3, 2021
A lifetime of brutal injuries and misfortune robbed the world-renowned pianist João Carlos Martins of the ability to play his instrument. And then along came an eccentric designer and his bionic gloves.
The vinyl straw: Why the vinyl industry is at breaking point - Features - MOct 27, 2021
The industry is at its strongest since the advent of the CD, so why has it become near-impossible to get music pressed onto wax?
Researchers analyzed 700-plus songs known to give people chills. Here’s theOct 24, 2021
Researchers studying chills-inducing music inadvertently created an epic, multi-genre list of songs that ought to give you goosebumps. We made a Spotify playlist from it.
DUNE Official Soundtrack | Full Album - Hans Zimmer | WaterTower - YouTubeOct 18, 2021
DUNE Official Soundtrack by: Hans Zimmer
Avail now: https://lnk.to/duneID
Subscribe to WaterTower Music on YouTube:
http://bit.ly/WaterTowerSub
Listen to more from Dune:
https://www.youtube.com/playlist?list=PLBKadB95sF44EGq9wIjIKVr_kFPyqlCHY
#Dune #HansZimmer
Tracklist:
1. Dream of Arrakis
2. Herald of the Change
3. Bene Gesserit
4. Gom Jabbar
5. The One
6. Leaving Caladan
7. Arrakeen
8. Ripples in the Sand
9. Visions of Chani
10. Night on Arrakis
11. Armada
12. Burning Palms
13. Stranded
14. Blood for Blood
15. The Fall
16. Holy War
17. Sanctuary
18. Premonition
19. Ornithopter
20. Sandstorm
21. Stillsuits
22. My Road Leads into the Desert
About Dune:
A mythic and emotionally charged hero’s journey, “Dune” tells the story of Paul Atreides, a brilliant and gifted young man born into a great destiny beyond his understanding, who must travel to the most dangerous planet in the universe to ensure the future of his family and his people. As malevolent forces explode into conflict over the planet’s exclusive supply of the most precious resource in existence—a commodity capable of unlocking humanity’s greatest potential—only those who can conquer their fear will survive.
Music by: Hans Zimmer
Connect with DUNE:
Follow DUNE on Instagram: https://www.instagram.com/dunemovie/
Like DUNE on Facebook: https://www.facebook.com/dune
Follow DUNE on Twitter: https://twitter.com/dunemovie
Connect with WaterTower Music:
Follow WaterTower Music on Instagram: https://www.instagram.com/watertowermusic
Like WaterTower Music on Facebook: https://www.facebook.com/WaterTowerMusic
Follow WaterTower Music on Twitter: https://twitter.com/watertowermusic
Visit WaterTower Music at: https://www.watertower-music.com/
About WaterTower Music:
WaterTower Music, the in-house label for the WarnerMedia companies, releases recorded music as rich and diverse as the companies themselves. It has been the soundtrack home to many of the world’s most iconic films, television shows and games since 2001. Featured releases include the soundtracks for Aquaman, The Hobbit, Interstellar, Game of Thrones, Crazy Rich Asians, King Arthur, Zack Snyder’s Justice League, Westworld and Dune.
DUNE Official Soundtrack | Full Album - Hans Zimmer | WaterTower
https://youtu.be/uTmBeR32GRA
Smithsonian Anthology of Hip-Hop and Rap | Smithsonian Folkways RecordingsSep 4, 2021
This item is only available for purchase within the USA. The Smithsonian Anthology of Hip-Hop and Rap is a first-of-its-kind multimedia collection chronicling the growth of the music and culture from the parks of the Bronx to solidifying a reach that spans the globe. The set includes 129 …
At an Old Juke Joint in Mississippi, the Blues Are Alive | Arts & Culture |Sep 3, 2021
Jimmy Holmes is the last in a line of music legends as he seeks to keep a singular American art form thriving
Chris and Rich Robinson swore never to speak again. But for the Black Crowes, rock heals all woundsAug 24, 2021
After years apart, the Black Crowes perform at the Forum on Thursday, part of a tour celebrating the 30th anniversary of the group’s breakthrough debut.
The beautiful world of heavy metalAug 21, 2021
Why does a genre obsessed with death attract the kindest people?
On Air with the Greatest Radio Station in the WorldAug 16, 2021
WPKN-FM—on which you can hear a Stevie Wonder song performed by an all-women jazz septet or twenty minutes of Tuvan throat singing—moves to a new location in downtown Bridgeport, Connecticut.
Hit songs rely on increasing “harmonic surprise” to hook listeners, study fAug 12, 2021
Childish Gambino’s “This Is America” ranked highest in challenging musical expectations.
Paul Thorn Brings A Softer Touch To A Rough Patch On 'Never Too Late To Call'Aug 9, 2021
Southern singer-songwriter Paul Thorn joins NPR's Debbie Elliott to talk about his latest record, Never Too Late To Call.
Christone 'Kingfish' Ingram Reflects On Leaving – And Sharing – '622'Jul 25, 2021
Clarksdale, Miss., where blues guitarist-singer Christone "Kingfish" Ingram hails from, is "pretty much the mecca of the blues," Ingram says in an interview with NPR's A Martinez on Morning Edition.
How Yola Got Her Groove Back: Why America is Falling for Bristol’s Greatest Soul-Country-Pop ExportJul 22, 2021
Yola discusses mixing genres from country to disco in her Dan Auerbach-produced 'Stand for Myself' and acting in Baz Luhrmann's Elvis film.
A Peek Inside the World's Greatest Record StoreJul 18, 2021
A lovable grouch, obsessed with the magic of American sidewalk harmony, runs the Philadelphia shop
Her Kind Of Blue: Joni Mitchell's Masterpiece At 50Jun 20, 2021
How do we understand Blue in the 21st century? Can we think of Mitchell's 1971 album, long considered the apex of confessional songwriting, as a paradigm not of raw emotion, but of care and craft?
James McMurtry Announces First Album in Six Years - No DepressionJun 13, 2021
New West Records announced a new album from James McMurtry today, his first full-length studio recording since 2015’s Complicated Game. The Horses and the Hounds will be released Aug. 20 and was recorded at Jackson Browne’s Groove Masters studio in […]
Narratively | SubstackJun 4, 2021
Discover extraordinary true stories celebrating the diversity of humanity. Click to read Narratively, a Substack publication with tens of thousands of subscribers.
How SoundScan Changed Everything We Knew About Popular MusicMay 29, 2021
Thirty years ago, Billboard changed the way it tabulated its charts, turning the industry on its head and making room for genres once considered afterthoughts to explode in the national consciousness
Watch 1000 Musicians Play the Foo Fighters’ “Learn to Fly,” Nirvana’s “SmelMay 25, 2021
Paris for celebrations of the year 2000, settling for 100. These numbers pale next to the largest guitar ensemble on record, 6,346 people in Poland in 2009.
Machine learning and recommender systems using your own Spotify dataMay 24, 2021
Creating Spotify recommendations with data science
How TikTok Chooses Which Songs Go ViralMay 12, 2021
When Megan Thee Stallion took off her bright orange mask and walked onstage to accept her Grammy on March 14, she fought back tears and thanked God, her mother, and her managers for helping her become the first female rapper to win the award for best new artist in two decades.
The Case Against the EaglesMay 10, 2021
Fifty years after their first release, the country-rock titans led by Don Henley and the late Glenn Frey still loom large in American music. Their hits still get play and their sound is a precursor to modern Nashville. But has this biggest of bands aged well? A panel of experts weigh the case.
Spotify Genre Classification AlgorithmApr 28, 2021
Supervised Machine Learning — SVM, RANDOM FOREST, LOGISTIC REGRESSION
Why Don’t Some TV Shows Sound the Way They Used To? (Published 2021)Apr 28, 2021
Licensing issues have gutted the soundtracks of many beloved series on streaming services, resulting in bewildering music cues and missing theme songs.
Basic Music Theory in ~200 Lines of PythonApr 20, 2021
A basic introduction to Western music theory using the Python programming language to derive scales, chords, and modes in every key.
15 Years of Spotify: How the Streaming Giant Has Changed and Reinvented the Music IndustryApr 18, 2021
As Spotify turns 15 this month, we look at 15 ways the streaming giant has changed, reinvented and reshaped music and the music business.
The Real Book - 99% InvisibleApr 12, 2021
Since the mid-1970s, almost every jazz musician has owned a copy of the same book. It has a peach-colored cover, a chunky, 1970s-style logo, and a black plastic binding. It’s delightfully homemade-looking—like it was printed by a bunch of teenagers at a Kinkos. And inside is the sheet music for hundreds of common jazz tunes—also
Neuroscience may have a part in why you're playing Taylor Swift's songs onApr 10, 2021
Taylor Swift literally has music down to a science
Every Noise at OnceApr 3, 2021
Measure Your Record Release Campaign With These Key Performance IndicatorsMar 28, 2021
Regardless what kind of campaign you're running, being aware of these key performance indicators are necessary for success.
Conscripted Into The Emperor’s Private OrchestraMar 28, 2021
What does a crew of talented musicians do when forced to serve at the pleasure of a notoriously cruel dictator? They play like their lives depend on it.
The Lost Prince of Yacht RockMar 25, 2021
In 1978 he was music’s next big thing. Then his album bombed, he began a long slide into obscurity, and a bizarre fraud sent him to prison. Will Dane Donohue finally get his encore?
You don’t know the half of it: The family that gave us Anderson .PaakMar 20, 2021
Part 1: The great Army swap Germantown Hardware sits on Germantown Avenue between Ontario and Venango streets in the middle of a North Philadelphia ghetto. Back…
How Freddie Gibbs Beat the Odds to Reach the MountaintopMar 19, 2021
After a turbulent decade, the Gary, Indiana, native has cemented himself as one of the greatest rappers of his—or any—generation. And on Sunday, he’s up for a Grammy award.
Mass Hipgnosis | Rich WoodallMar 16, 2021
In an industry already powered by the repackaging of past hits, music funds like Hipgnosis want every tomorrow to sound more and more like yesterday.
Elton John sings an oven instruction manualMar 14, 2021
63K votes, 739 comments. 9M subscribers in the nextfuckinglevel community.
I.R.S. Records | Retro Music Apparel | Old School ShirtsMar 14, 2021
The International Record Syndicate, or I.R.S. Records, was a label founded by Miles Copeland and Jay Boberg. It was home to some of the most groundbreaking bands of the '80s.
How Douyin Is Killing the Chinese Pop StarMar 10, 2021
The wildly popular short-video app has become one of the main ways Chinese people consume music, but its business model keeps artists anonymous and interchangeable.
Dissecting the Bloodthirsty Bliss of Death MetalFeb 12, 2021
Fans of this violent music report feelings of transcendence and positive emotions; psychologists want to learn why.
Playlist: Haitian Rhythms And The Music Of New OrleansFeb 1, 2021
Haiti's influence on one of America's most musical cities is explored in a new audio documentary, Kanaval, hosted by Leyla McCalla and produced by WXPN.
Heavy Rotation: 20 Songs Public Radio Can't Stop PlayingJan 31, 2021
This January, NPR member stations share a mix of the most popular songs on their airwaves, including music from The Avalanches, Jade Bird, Madlib, Run the Jewels and more.
How to build a music recommender system.Jan 24, 2021
Using Spotify’s data to generate music recommendations.
This ‘hillbilly madman’ is country music royalty. So why haven’t you heardJan 22, 2021
The hard life and overlooked brilliance of Zane Campbell.
Neil Peart: Rush Drummer's Bold Life and Brave Final Years - Rolling StoneJan 20, 2021
For the first time since the passing of Rush's drum god, Neil Peart, Geddy Lee and Alex Lifeson speak about his legacy.
Lose the earbuds. Ditch the phone. How to get the most out of your musicJan 19, 2021
While homebound during quarantine, making a few budget-friendly tweaks to your listening setup can add depth and dimension to the experience.
Music That Moves From Despair To Hope : Alt.Latino : NPRJan 10, 2021
After an upsetting week in the U.S., we offer some music to cope, featuring David Bowie and Miriam Makeba, plus covers by Las Cafeteras and Los Cenzontles.
What band were you slow to realize was awesome? As in, you liked a single sJan 2, 2021
25K votes, 12K comments. 49M subscribers in the AskReddit community. r/AskReddit is the place to ask and answer thought-provoking questions.
The Proving Grounds: Charley Crockett and the Story of Deep Ellum - LongreadsDec 26, 2020
Generations of musicians got their start busking the streets of the Deep Ellum neighborhood of Dallas, Texas. After a decade of 'hobo-ing' around cities like New Orleans, Paris, and New York, Charley Crockett discovered it was his turn.
Album Premiere: Whitney Rose, ‘Rule 62’Dec 26, 2020
AllMusic provides comprehensive music info including reviews and biographies. Get recommendations for new music to listen to, stream or own.
How to Record Streaming Audio with Audacity - Digital InspirationDec 25, 2020
This step-by-step guide explains how you can record streaming audio from music stations on the Internet using free software.
Google Play Music is no longer availableDec 25, 2020
The 50 Best Ambient Albums of All Time | PitchforkDec 25, 2020
Wallpaper music? None here. These are the albums that have shifted moods and created new worlds
Generative.fm – Endless ambient music generatorsDec 25, 2020
Ambient generative music to let you focus, sleep, or relax. Composed by a human and infinitely performed by computers.
Music-Map - The Tourist Map of MusicDec 25, 2020
Music-Map is the similar music finder that helps you find similar bands and artists to the ones you love.
Benjamin Booker - Benjamin Booker | Songs, Reviews, Credits | AllMusicDec 25, 2020
AllMusic provides comprehensive music info including reviews and biographies. Get recommendations for new music to listen to, stream or own.
WMMusic [Mali] Amadou & Mariam - MagossaDec 17, 2020
13K subscribers in the WorldMusic community. Welcome to World Music A place to share international / traditional / ethnic music from around the…
Museum of bad album covers: the worst album covers ever!Dec 11, 2020
zonicweb.net is your first and best source for all of the information you’re looking for. From general topics to more of what you would expect to find here, zonicweb.net has it all. We hope you find what you are searching for!
Longreads Best of 2020: Music WritingDec 10, 2020
Music has been a salve this year, helping us cope with the myriad challenges that 2020 brought. Here are some favorite pieces of music writing we picked in 2020.
We Will Always Love You by The AvalanchesDec 10, 2020
We Will Always Love You by The Avalanches album reviews & Metacritic score: The third full-length release for the Australian electronic duo features guest appearances from such artist as Blood Orange, Leon Bridges, Vashti Bunyan, Neneh...
'I'm a song catcher': 60 years of Arhoolie Records, the label for a lost AmericaDec 10, 2020
Now 89, one-time refugee Chris Strachwitz presides over one of the greatest US labels, having removed the stigma from working-class music like blues and zydeco to give a voice to the ignored
The 100 Best Songs Of 2020Dec 10, 2020
The great songs of 2020 were as abundant as the rest of the year was a drag. Think of these 100 jams as a silver linings playlist for the worst year of our collective lives.
Best Songs of 2020Dec 10, 2020
Tracks responding to real-time events and a spectrum of moods captured the hodgepodge feelings of life in lockdown.
AllMusic’s Best of 2020Dec 10, 2020
AllMusic provides comprehensive music info including reviews and biographies. Get recommendations for new music to listen to, stream or own.
Best Southern Albums of 2020 — THE BITTER SOUTHERNERDec 10, 2020
The Bitter Southerner’s seventh annual list of the best albums of the year.
Bob Boilen's 40 Favorite Songs Of 2020Dec 10, 2020
The All Songs Considered host shares his highlights from a hard year.
The 100 Best Songs Of 2020Dec 3, 2020
The great songs of 2020 were as abundant as the rest of the year was a drag. Think of these 100 jams as a silver linings playlist for the worst year of our collective lives.
Blackbirds by Bettye LaVetteDec 1, 2020
Blackbirds by Bettye LaVette album reviews & Metacritic score: The latest full-length release for the R&B singer features songs sung by other female artists and was produced by Steve Jordan....
Patti LaBelle, the Doyenne of Philadelphia SoulNov 30, 2020
At 76, she is the embodiment of success, the personification of warmth and an artist who changed the landscape of American music.
The Mavericks Are Back, This Time 'En Español'Nov 29, 2020
Bandleader Raul Malo and guitarist Eddie Perez both claim Latin American heritage, but their roots music-driven band had never ventured into creating an entirely Spanish album until now.
Sister Rosetta Tharpe: Electric Guitar PioneerNov 29, 2020
"She wielded her guitar like a weapon and distorted the sound: a guitar technique that was completely original at the time and would be copied by legions of rock guitarists in the decades after."
This Record Deal Simulator Shows If Your Deal Is Good Or BadNov 29, 2020
The Record Deal Simulator shows just what it takes for you to show a profit from a deal taking all the variables into account.
Why Is An Obscure B-Side Pavement's Top Song On Spotify? It's Complicated.Nov 22, 2020
A couple years ago, Stephen Malkmus walked into a shop and didn’t recognize himself. He was with one of his daughters, stopping at a gluten-free bakery (“Very Portland,” Malkmus jokes) when the Pavement song “Harness Your Hopes” came on — a song he had written and recorded more than two decades prior while leading the band. The guitar-playing that was choogling over the speakers was partially his own, but in the few moments before the vocals kicked in, his brain couldn’t place it. “At first I thought, ‘Oh, they’re playing “Tumbling Dice” by Rolling Stones,’” he remembers now, over the phone. “Then it was playing and I thought, ‘Well, this is a cool place.’ Little did I know it was just on Spotify or something.” At that point, the track was still a deep cut — a B-side recorded during the sessions for 1997’s Brighten The Corners, but not released until 1999, when it was thrown onto the CD-only Spit On A Stranger EP, a detail so remote that even Malkmus had forgotten about it until he was reminded. The song remained one that only the real heads knew until 2008, when it was included on Matador’s expanded reissue of Brighten The Corners, alongside a large amount of the extra material recorded for that album by producer/engineers Mitch Easter and Bryce Goggin. It was then that the castoff song began its new life, slowly becoming a minor fan favorite — a single-worthy non-album track that indicated just how rich the band’s discography was. A curveball to put on a mix and raise an eyebrow. The type that a bakery employee might sneak onto the work playlist as a subtle way to class the joint up. But then something bizarre happened: In the last few years, the song has rocketed up to become number one on Pavement’s Spotify page, ending up with over 28 million plays to date, seven million more than “Cut Your Hair,” a legitimate and enduring ’90s hit. Quickly, and without any obvious reason, it stopped being a rarity and started to become a standard, appearing in coffee shops and bars and gluten-free bakeries. So how did this happen, exactly? And better yet, should this have happened? Online, people have been casually wondering this on places like Reddit and Twitter, with a prevailing theory being that the song must have been featured on a prominent Spotify playlist, and then simply snowballed from there. Malkmus himself was under this impression, too: “I heard it was on a playlist or something,” he says, nonchalant. “I’m not an expert on Spotify but, you know, one of those ‘Monday Moods’ or whatever the fuck they do.” It’s a reasonable enough explanation. But looking at a similar situation of his own, Damon Krukowski wasn’t so sure. The musician and writer was fascinated with the question of how “Strange” became his former band Galaxie 500’s top Spotify track — by a significant margin — even though it was not a single, was never particularly popular in the past, and wasn’t being picked up on any prominent playlists. In June of 2018, Krukowski laid out the conundrum on his blog, and soon he received a possible explanation from a Spotify employee. Glenn McDonald, who holds the title of “data alchemist” at Spotify, had taken an interest in the case, and decided to look into it. What he found is that the sudden jump in plays for “Strange” began in January of 2017, which was “the same time Spotify switched the ‘Autoplay’ preset in every listener’s preference panel from off, to on,” as Krukowski recounted on a follow-up blog post. McDonald explained to Krukowski that the Autoplay feature actually cues up music that “resembles” what you’ve just been listening to, based on a series of sonic signifiers too complex to describe. In this case, “Strange” had been algorithmically determined to sound similar to a lot of other music, and was frequently being Autoplayed to the point that it took on a life of its own, and eventually eclipsed the band’s other tracks. It continues to do so to this day. “He called me up because of that blog post,” Krukowski explains, on the phone from his home in Cambridge, Massachusetts, “and said he got really interested in it as an engineering problem, ’cause he thought I had pinpointed something they hadn’t realized. Like, because you switch these things in the program, it’s the butterfly effect — who knows what’s gonna result?” More simply put, Spotify appears to have the capacity to create “hits” without even realizing it. When it comes to Galaxie 500, “there’s just no way this would have happened before this flip in the Spotify plays,” Krukowksi notes. “And now we’re becoming identified as a band with that song, because if they learn about the band through Spotify, that’s what they’re hearing. So it becomes, like, our emblem.” Krukowski was convinced, but for his part, McDonald wanted to remain clinical in his diagnosis, waiting to look at more information before making any final judgment as to what was going on with the Autoplay feature at large. If he’s still looking for fresh examples to consider, anyway, “Harness Your Hopes” would be an ideal place to start. Beyond it being a similar situation, broadly speaking — another touchstone alternative rock band from the ’80s/’90s with an inexplicable #1 song — the story also features a detail likely too specific to be coincidental: Using the Wayback Machine, it can be confirmed that “Harness Your Hopes” was nowhere to be seen on the popular tracks section of Pavement’s Spotify page until — you guessed it — 2017, when it suddenly jumped to the top. (Spotify doesn’t disclose more detailed information about artists’ streaming numbers beyond the playcount that’s publicly visible.) When requested, Spotify declined to provide an interview with McDonald, nor with anyone else who would be able to speak to the Autoplay function and how it may or may not be fueling a phenomenon like this. But they did confirm “the accuracies of Glenn’s statements” as they appear on Krukowski’s blog, and left it at that. Speaking from Switzerland, where she’s a visiting scholar at Basel University, Dr. Maria Eriksson is used to not getting much hard information to work with from Spotify. She co-authored a book on the company, 2019’s Spotify Teardown, which investigated the streaming giant and their algorithms to the degree that Spotify’s legal department eventually sent them a cease-and-desist notice. After logging on to a Zoom call, she listens to the “Harness Your Hopes”/”Strange” saga with enthusiasm, but no surprise. “What I find interesting about this story is that, from my research perspective, it really shows the power and influence that these music recommendation systems have,” she says. “But it is also extremely difficult to know how these systems work, and I think the only people who can answer that would be the engineers working at these companies, like Spotify. We’re not even sure if these people could answer why or how a recommendation system works as well, because they’re usually pretty complex things we’re dealing with here.” Krukowski, who is one of the organizers of Justice At Spotify — a new protest campaign demanding a higher artist royalty rate, among other things — isn’t all that concerned with the Autoplay situation, at least in the ways that it might be screwing with artists’ top songs. But he is concerned with the ways that incidental algorithmic designs have industry-wide power: “It’s just kind of stifling to have that amount of control, and have it in one company,” he says. “And then not only that, but to have it made by engineering decisions. This is very consistent with a lot of our culture right now, that we’re willing to surrender to Facebook and Google engineers very important decisions.” Today we are launching our campaign to demand justice at Spotify. Join us and hundreds of musicians and music workers that have already signed on to our demands! https://t.co/8BhohF88q5 pic.twitter.com/zRFGs6nAfZ — Union of Musicians and Allied Workers (@UMAW_) October 26, 2020 In this specific instance, there’s certainly a case to be made that Autoplay might actually be doing a service to the songs that it unintentionally favors — that it might be providing something valuable and unprecedented by plucking tracks from the depths and giving them the possibility of a second chance. Optimistically speaking, the algorithm could be mathematically figuring out which songs people are prone to like, regardless of how well they fared commercially in the first place. And that squares up with the case of “Harness Your Hopes,” since it was a song that was left off Brighten The Corners for no good reason, according to Malkmus. He says that after the band recorded it, they spliced out a bit of tape to shorten the waltzing part that ends the chorus (when Malkmus sings, “Minds wide open, truly”) — a change that ultimately soured him on including the track on the album. “It’s better, I like it, it’s cool that we did that, it’s old-school or whatever,” he says of the analog adjustment. “But it sounded wrong to me or something, and I was like, ‘That’s a B-side.’ It’s terrible, too — nobody told me! I guess I was such a boss, and maybe nobody thought I would listen. Usually Scott [‘Spiral Stairs’] Kannberg or something was really good at telling me, ‘That’s a good song,’ [like he did with the Slanted And Enchanted single] ‘Summer Babe.’ So it should have been on the record. I’m just saying that’s my mistake.” Now, and likely forever, “Harness Your Hopes” has moved beyond the Spotify phenomenon to become one of the definitive Pavement tracks across all platforms — Apple Music, YouTube, etc. It’s even been having a moment on TikTok lately, to the degree that Malkmus’s 15-year-old daughter recently saw it in a post and gave him the news that it was blowing up, kinda. “She was like, ‘It’s trending, but in a certain way, not in a big way,’” he laughs, dryly. It’s hard not to see the zombified success of the song as being anything but for the best, because in this case it really ...
$5 gigs, not $10m deals: the story of US punk label Dischord RecordsNov 21, 2020
With no contracts and cheap releases from the likes of Fugazi and Minor Threat, Ian MacKaye and comrades rejected booze, drugs and riches to give US punk a conscience. They look back on 40 years of righteous noise
Nina Simone: Her Art and Life in 33 SongsNov 17, 2020
In conversations with artists including Chan Marshall, Maxwell, and Esperanza Spalding, and through examination of her most iconic songs, we look at the life of a true spellbinder
How ‘You Shook Me All Night Long’ Went From a Laddish Sex Anthem to a Wedding StapleNov 11, 2020
In 1980, AC/DC’s frontman died and the band’s future looked uncertain. They responded with the biggest album of their career and a smash single about screwing that’s the closest thing these bad-boy rockers ever got to writing a love song.
(66) Achilles Last Stand (Remaster) - YouTubeNov 10, 2020
Provided to YouTube by Atlantic Records
Achilles Last Stand (Remaster) · Led Zeppelin
Presence
℗ 1976 Atlantic Recording Corporation
Guitar: Jimmy Page
Producer: Jimmy Page
Drums: John Bonham
Remastering Engineer: John Davis
Bass Guitar: John Paul Jones
Unknown: Keith Harwood
Vocals: Robert Plant
Writer: Jimmy Page
Writer: Robert Plant
Auto-generated by YouTube.
Listen to 53 glorious seconds of new AC/DC single Demon FireNov 3, 2020
AC/DC release a taster for the frenetic new single Demon Fire, the follow-up to Shot In The Dark
American Routes Shortcuts: Max BacaNov 3, 2020
Max Baca grew up in New Mexico, playing in his dad’s band from age eight. After mastering bass and accordion, he picked up the bajo sexto, a Mexican…
Shelved: Pink Floyd's Household Objects - LongreadsNov 3, 2020
On Syd Barrett's time with Pink Floyd and making an album with household objects and found sounds.
The Art of Clearing A Sample: Deciding If It’s Worth It and How To Actually Do ItNov 3, 2020
Written by Karl Fowlkes,this post offers a great rundown of clearing a sample and everything that comes with it. (Thanks, Karl!) Let’s dive in…
Nicholas Spice · How to play the pianoNov 2, 2020
Kingfish: Tiny Desk (Home) ConcertNov 2, 2020
The blues prodigy performs a special Tiny Desk show at the Ground Zero Blues Club in Clarksdale, Miss.
Best Music and Albums for 2024Nov 2, 2020
See how well critics are rating the Best Music and Albums for 2024
How to Listen to Radio Stations From Around the WorldNov 2, 2020
Radio programming from around the world is available on the internet or through apps.
All Personal FeedsOct 20, 2020
Google introduces song matching via humming, whistling or singingOct 16, 2020
Google has added a new feature that lets you figure out which song is stuck in your head by humming, whistling or singing -- a much more useful version of
The Funkiest, Most Memorable Bass Riffs Ever: A PlaylistOct 8, 2020
Sometimes bass guitar can be an overlooked instrument. Sometimes it gets relegated to the background. Not today, my friends. Not today.
‘Streaming farms’ are Spotify’s newest credibility problemOct 7, 2020
Streaming giants might accidentally be shelling out ~$300m to bot listeners.
Music piracy hasn’t gone away – it’s just changed shape - Music Business WorldwideSep 23, 2020
New PRS report shows explosion in stream-ripping activity in market in past three years…
Groovy Findings: Researching How and Why Music Moves YouSep 16, 2020
Learning how we respond to rhythm can lead to therapeutic applications.
Bikini Kill Is Still Influencing Today's Punk SceneAug 20, 2020
We talk to femmes in punk about the '90s band's legacy
WTF is Triller?Aug 14, 2020
Triller is one of several video-led social applications including Instagram Reels and Byte riding a wave of anti-TikTok sentiment.
𝗠𝗘𝗧𝗔𝗟𝗟𝗜𝗖𝗔 - 𝗘𝗡𝗧𝗘𝗥 𝗦𝗔𝗡𝗗𝗠𝗔𝗡 - 𝟱𝟬𝟬 𝗺𝘂𝘀𝗶𝗰𝗶𝗮𝗻𝘀 - The biggest rock flashmob in Central Europe - 𝗖𝗜𝗧𝗬𝗥𝗢𝗖𝗞𝗦Aug 10, 2020
𝗖𝗜𝗧𝗬𝗥𝗢𝗖𝗞𝗦 ▶ 𝙄𝙩 𝙞𝙨 𝙢𝙤𝙧𝙚 𝙩𝙝𝙖𝙣 𝙢𝙪𝙨𝙞𝙘, 𝙞𝙩 𝙞𝙨 𝙖𝙣 𝙤𝙧𝙘𝙝𝙚𝙨𝙩𝙧𝙖. 𝙄𝙩 𝙞𝙨 𝙢𝙤𝙧𝙚 𝙩𝙝𝙖𝙣 𝙖𝙣 𝙤𝙧𝙘𝙝𝙚𝙨𝙩𝙧𝙖, 𝙞𝙩 𝙞𝙨 𝙖 𝙛𝙚𝙡𝙡𝙤𝙬𝙨𝙝𝙞𝙥. 𝙄𝙩 𝙙𝙤𝙚𝙨 𝙣𝙤𝙩 𝙢𝙖𝙩𝙩𝙚𝙧 𝙬𝙝𝙤 𝙮𝙤𝙪 𝙖𝙧𝙚, 𝙬𝙝𝙚𝙧𝙚 𝙮𝙤𝙪 𝙘𝙤𝙢𝙚 𝙛𝙧𝙤𝙢. 𝙄𝙣 𝙛𝙖𝙘𝙩 𝙞𝙩 𝙙𝙤𝙚𝙨 𝙣𝙤𝙩 𝙢𝙖𝙩𝙩𝙚𝙧 𝙬𝙝𝙚𝙧𝙚 𝙮𝙤𝙪 𝙬𝙞𝙡𝙡 𝙘𝙤𝙣𝙩𝙞𝙣𝙪𝙚 𝙤𝙣 𝙮𝙤𝙪𝙧 𝙬𝙖𝙮. 𝙄𝙩 𝙙𝙤𝙚𝙨 𝙣𝙤𝙩 𝙢𝙖𝙩𝙩𝙚𝙧 𝙝𝙤𝙬 𝙤𝙡𝙙 𝙮𝙤𝙪 𝙖𝙧𝙚, 𝙞𝙛 𝙮𝙤𝙪 𝙖𝙧𝙚 𝙬𝙤𝙧𝙠𝙞𝙣𝙜 𝙖𝙨 𝙖𝙣 𝙪𝙣𝙨𝙠𝙞𝙡𝙡𝙚𝙙 𝙬𝙤𝙧𝙠𝙚𝙧 𝙤𝙧 𝙖 𝙩𝙤𝙥 𝙢𝙖𝙣𝙖𝙜𝙚𝙧. 𝙄𝙩 𝙙𝙤𝙚𝙨 𝙣𝙤𝙩 𝙢𝙖𝙩𝙩𝙚𝙧 𝙞𝙛 𝙮𝙤𝙪𝙧 𝙞𝙣𝙨𝙩𝙧𝙪𝙢𝙚𝙣𝙩 𝙞𝙨 𝙬𝙤𝙧𝙩𝙝 𝙖 𝙘𝙝𝙚𝙖𝙥 𝙢𝙚𝙖𝙡 𝙤𝙧 𝙖 𝙣𝙚𝙬 𝙘𝙖𝙧. 𝙏𝙝𝙚𝙧𝙚 𝙖𝙧𝙚 𝙣𝙤 𝙨𝙩𝙖𝙩𝙪𝙨 𝙨𝙮𝙢𝙗𝙤𝙡𝙨, 𝙤𝙣𝙡𝙮 𝙜𝙚𝙣𝙪𝙞𝙣𝙚 𝙨𝙮𝙢𝙗𝙤𝙡𝙨, 𝙟𝙪𝙨𝙩 𝙖𝙨 𝙢𝙖𝙣𝙮 𝙖𝙨 𝙬𝙚 𝙖𝙧𝙚. 𝙀𝙫𝙚𝙣 𝙞𝙛 𝙬𝙚 𝙖𝙧𝙚 𝙢𝙖𝙣𝙮, 𝙬𝙚 𝙖𝙧𝙚 𝙣𝙤𝙩 𝙟𝙪𝙨𝙩 𝙖 𝙡𝙤𝙪𝙙 𝙘𝙧𝙤𝙬𝙙. 𝙒𝙚 𝙖𝙧𝙚 𝙣𝙤𝙩 𝙖𝙡𝙞𝙠𝙚, 𝙗𝙪𝙩 𝙬𝙚 𝙖𝙧𝙚 𝙣𝙤𝙩 𝙙𝙞𝙛𝙛𝙚𝙧𝙚𝙣𝙩 𝙚𝙞𝙩𝙝𝙚𝙧. 𝙒𝙚 𝙖𝙡𝙡 𝙣𝙚𝙚𝙙 𝙩𝙤 𝙗𝙚 𝙩𝙝𝙚𝙧𝙚, 𝙩𝙤 𝙗𝙚 𝙨𝙤𝙢𝙚𝙤𝙣𝙚 𝙩𝙤𝙜𝙚𝙩𝙝𝙚𝙧 𝙖𝙣𝙙 𝙮𝙤𝙪 𝙖𝙧𝙚 𝙚𝙭𝙖𝙘𝙩𝙡𝙮 𝙩𝙝𝙖𝙩 𝙥𝙚𝙧𝙨𝙤𝙣 𝙬𝙚 𝙘𝙖𝙣 𝙣𝙤𝙩 𝙢𝙞𝙨𝙨.
𝗧𝗵𝗲 𝗯𝗶𝗴𝗴𝗲𝘀𝘁 𝗿𝗼𝗰𝗸 𝗳𝗹𝗮𝘀𝗵𝗺𝗼𝗯 𝗶𝗻 𝗖𝗲𝗻𝘁𝗿𝗮𝗹 𝗘𝘂𝗿𝗼𝗽𝗲 - 𝗞𝗲𝗰𝘀𝗸𝗲𝗺é𝘁 (𝗛𝘂𝗻𝗴𝗮𝗿𝘆) 𝟮𝟬𝟭𝟵
𝟱𝟬𝟬 𝗺𝘂𝘀𝗶𝗰𝗶𝗮𝗻𝘀 𝗿𝗼𝗰𝗸 𝗳𝗹𝗮𝘀𝗵𝗺𝗼𝗯 𝗽𝗹𝗮𝘆𝗹𝗶𝘀𝘁 ▶ https://www.youtube.com/playlist?list=PLBBaNkZpn3fEReNP2tMMzL3WaE4R798YP
𝗖𝗜𝗧𝗬𝗥𝗢𝗖𝗞𝗦
𝗪𝗘𝗕 ▶ https://www.cityrocks.eu/
𝗬𝗢𝗨𝗧𝗨𝗕𝗘 ▶https://www.youtube.com/@CITYROCKS
𝗙𝗔𝗖𝗘𝗕𝗢𝗢𝗞 ▶ https://www.facebook.com/cityrocksproductions
𝗜𝗡𝗦𝗧𝗔𝗚𝗥𝗔𝗠 ▶ https://www.instagram.com/cityrocksproductions/
𝗧𝗜𝗞 𝗧𝗢𝗞 ▶ https://www.tiktok.com/@cityrocks_flashmob
🎬 RBfilm (Hungary)
________________________________________________________________________________________________
@metallica - 𝗘𝗻𝘁𝗲𝗿 𝗦𝗮𝗻𝗱𝗺𝗮𝗻
James Alan Hetfield / Kirk L. Hammett / Lars Ulrich
Enter Sandman © Universal Music Publishing Group
Metallica - Enter Sandman official video: https://www.youtube.com/watch?v=bJ3p2VrFEvY
"𝗘𝗻𝘁𝗲𝗿 𝗦𝗮𝗻𝗱𝗺𝗮𝗻" 𝗶𝘀 𝗮 𝘀𝗼𝗻𝗴 𝗯𝘆 𝗔𝗺𝗲𝗿𝗶𝗰𝗮𝗻 𝗵𝗲𝗮𝘃𝘆 𝗺𝗲𝘁𝗮𝗹 𝗯𝗮𝗻𝗱 𝗠𝗲𝘁𝗮𝗹𝗹𝗶𝗰𝗮. 𝗜𝘁 𝗶𝘀 𝘁𝗵𝗲 𝗼𝗽𝗲𝗻𝗶𝗻𝗴 𝘁𝗿𝗮𝗰𝗸 𝗮𝗻𝗱 𝗹𝗲𝗮𝗱 𝘀𝗶𝗻𝗴𝗹𝗲 𝗳𝗿𝗼𝗺 𝘁𝗵𝗲𝗶𝗿 𝘀𝗲𝗹𝗳-𝘁𝗶𝘁𝗹𝗲𝗱 𝗳𝗶𝗳𝘁𝗵 𝗮𝗹𝗯𝘂𝗺, 𝗿𝗲𝗹𝗲𝗮𝘀𝗲𝗱 𝗶𝗻 𝟭𝟵𝟵𝟭. 𝗧𝗵𝗲 𝗺𝘂𝘀𝗶𝗰 𝘄𝗮𝘀 𝘄𝗿𝗶𝘁𝘁𝗲𝗻 𝗯𝘆 𝗞𝗶𝗿𝗸 𝗛𝗮𝗺𝗺𝗲𝘁𝘁, 𝗝𝗮𝗺𝗲𝘀 𝗛𝗲𝘁𝗳𝗶𝗲𝗹𝗱 𝗮𝗻𝗱 𝗟𝗮𝗿𝘀 𝗨𝗹𝗿𝗶𝗰𝗵. 𝗩𝗼𝗰𝗮𝗹𝗶𝘀𝘁 𝗮𝗻𝗱 𝗿𝗵𝘆𝘁𝗵𝗺 𝗴𝘂𝗶𝘁𝗮𝗿𝗶𝘀𝘁 𝗛𝗲𝘁𝗳𝗶𝗲𝗹𝗱 𝘄𝗿𝗼𝘁𝗲 𝘁𝗵𝗲 𝗹𝘆𝗿𝗶𝗰𝘀, 𝘄𝗵𝗶𝗰𝗵 𝗱𝗲𝗮𝗹 𝘄𝗶𝘁𝗵 𝘁𝗵𝗲 𝗰𝗼𝗻𝗰𝗲𝗽𝘁 𝗼𝗳 𝗮 𝗰𝗵𝗶𝗹𝗱'𝘀 𝗻𝗶𝗴𝗵𝘁𝗺𝗮𝗿𝗲𝘀. 𝗧𝗵𝗲 𝘀𝗶𝗻𝗴𝗹𝗲 𝗿𝗲𝗮𝗰𝗵𝗲𝗱 𝗻𝘂𝗺𝗯𝗲𝗿 𝟭𝟲 𝗼𝗻 𝘁𝗵𝗲 𝗨𝗦 𝗕𝗶𝗹𝗹𝗯𝗼𝗮𝗿𝗱 𝗛𝗼𝘁 𝟭𝟬𝟬 𝗮𝗻𝗱 𝗮𝗰𝗵𝗶𝗲𝘃𝗲𝗱 𝗽𝗹𝗮𝘁𝗶𝗻𝘂𝗺 𝗰𝗲𝗿𝘁𝗶𝗳𝗶𝗰𝗮𝘁𝗶𝗼𝗻 𝗳𝗼𝗿 𝗺𝗼𝗿𝗲 𝘁𝗵𝗮𝗻 𝟭,𝟬𝟬𝟬,𝟬𝟬𝟬 𝗰𝗼𝗽𝗶𝗲𝘀 𝘀𝗵𝗶𝗽𝗽𝗲𝗱 𝗶𝗻 𝘁𝗵𝗲 𝗨𝗻𝗶𝘁𝗲𝗱 𝗦𝘁𝗮𝘁𝗲𝘀, 𝘀𝗽𝘂𝗿𝗿𝗶𝗻𝗴 𝘀𝗮𝗹𝗲𝘀 𝗼𝗳 𝗼𝘃𝗲𝗿 𝟯𝟬 𝗺𝗶𝗹𝗹𝗶𝗼𝗻 𝗰𝗼𝗽𝗶𝗲𝘀 𝗳𝗼𝗿 𝗠𝗲𝘁𝗮𝗹𝗹𝗶𝗰𝗮 𝗮𝗻𝗱 𝗽𝗿𝗼𝗽𝗲𝗹𝗹𝗶𝗻𝗴 𝗠𝗲𝘁𝗮𝗹𝗹𝗶𝗰𝗮 𝘁𝗼 𝘄𝗼𝗿𝗹𝗱𝘄𝗶𝗱𝗲 𝗽𝗼𝗽𝘂𝗹𝗮𝗿𝗶𝘁𝘆. 𝗔𝗰𝗰𝗹𝗮𝗶𝗺𝗲𝗱 𝗯𝘆 𝗰𝗿𝗶𝘁𝗶𝗰𝘀, 𝘁𝗵𝗲 𝘀𝗼𝗻𝗴 𝗶𝘀 𝗳𝗲𝗮𝘁𝘂𝗿𝗲𝗱 𝗶𝗻 𝗮𝗹𝗹 𝗼𝗳 𝗠𝗲𝘁𝗮𝗹𝗹𝗶𝗰𝗮'𝘀 𝗹𝗶𝘃𝗲 𝗮𝗹𝗯𝘂𝗺𝘀 𝗮𝗻𝗱 𝗗𝗩𝗗𝘀 𝗿𝗲𝗹𝗲𝗮𝘀𝗲𝗱 𝗮𝗳𝘁𝗲𝗿 𝟭𝟵𝟵𝟭 𝗮𝗻𝗱 𝗵𝗮𝘀 𝗯𝗲𝗲𝗻 𝗽𝗹𝗮𝘆𝗲𝗱 𝗹𝗶𝘃𝗲 𝗮𝘁 𝗮𝘄𝗮𝗿𝗱 𝗰𝗲𝗿𝗲𝗺𝗼𝗻𝗶𝗲𝘀 𝗮𝗻𝗱 𝗯𝗲𝗻𝗲𝗳𝗶𝘁 𝗰𝗼𝗻𝗰𝗲𝗿𝘁𝘀.
𝗠𝗲𝘁𝗮𝗹𝗹𝗶𝗰𝗮 - 𝗘𝗻𝘁𝗲𝗿 𝗦𝗮𝗻𝗱𝗺𝗮𝗻 𝗹𝘆𝗿𝗶𝗰𝘀
Say your prayers, little one
Don't forget, my son
To include everyone
Tuck you in, warm within
Keep you free from sin
'Til the sandman, he comes
Sleep with one eye open
Gripping your pillow tight
Exit light
Enter night
Take my hand
We're off to never-never land
Somethings wrong, shut the light
Heavy thoughts tonight
And they aren't of Snow White
Dreams of war, dreams of liars
Dreams of dragon's fire
And of things that will bite, yeah
Sleep with one eye open
Gripping your pillow tight
Exit light
Enter night
Take my hand
We're off to never-never land
Now I lay me down to sleep
Now I lay me down to sleep
I pray the Lord my soul to keep
I pray the Lord my soul to keep
If I die before I wake
If I die before I wake
I pray the Lord my soul to take
I pray the Lord my soul to take
Hush, little baby, don't say a word
And never mind that noise you heard
It's just the beasts under your bed
In your closet, in your head
Exit light
Enter night
Grain of sand
Exit light
Enter night
Take my hand
We're off to never-never land, yeah
Uh
Yeah, yeah
Yo, oh
We're off to never-never land
Take my hand
We're off to never-never land
Take my hand
We're off to never-never land
𝗠𝗲𝘁𝗮𝗹𝗹𝗶𝗰𝗮 𝗮𝗹𝗯𝘂𝗺
Enter Sandman, Sad but True, Holier than Thou, The Unforgiven, Wherever I May Roam, Don't Tread on Me, Through the Never, Nothing Else Matters, Of Wolf and Man, The God That Failed, My Friend of Misery, The Struggle Within, bonus track: So What
James Hetfield – vocals, rhythm guitar, acoustic guitar
Kirk Hammett – lead guitar
Jason Newsted – bass guitar
Lars Ulrich – drums, percussion
𝗠𝗲𝘁𝗮𝗹𝗹𝗶𝗰𝗮 𝗗𝗶𝘀𝗰𝗼𝗴𝗿𝗮𝗽𝗵𝘆
Kill 'Em All
Ride the Lightning
Master of Puppets
...And Justice for All
Metallica
Load
Reload
St. Anger
Death Magnetic
Hardwired... to Self-Destruct
𝗠𝗲𝘁𝗮𝗹𝗹𝗶𝗰𝗮 𝘁𝗼𝘂𝗿𝘀
Kill 'Em All For One Tour
Ride The Lightning Tour
Damage, Inc. Tour
Damaged Justice Tour
Wherever We May Roam Tour
Nowhere Else To Roam Tour
Shit Hits The Sheds Tour
Escape From The Studio '95
Poor Touring Me
Poor Re–Touring Me
Garage Remains The Same Tour
Summer Sanitarium Tour
Summer Sanitarium Tour
Madly in Anger with the World Tour
Escape from the Studio '06
Sick of the Studio '07
World Magnetic Tour
WorldWired Tour
Metallica Tour
#metallica #entersandman #heavymetal #metallicaclub #cityrocks #metallicacover #entersandmancover #themetallicablacklist #nothingelsematters #metallicatribute #metallicafamily #metallicafans #metallicareaction #metallicaislife #metallicalyrics #metallicaforever #metallicaclub #metallicalive #rockband #rockers #rockflashmob #rockstar #musicians #music #musician #heavy #rockmusic #rockmusician #rockmusik #flashmob #flashmob_youtube #музыка #rock #heavymetal
Aretha Franklin - Think (feat. The Blues Brothers) - 1080p Full HDAug 8, 2020
Aretha Franklin performing 'Think' in the 1980 film The Blues Brothers.
Dan Aykroyd and John Landis: how we made The Blues BrothersAug 8, 2020
‘For some of the crew working nights on the film, cocaine was almost like coffee. I never liked it myself but I wasn’t going to police others’ behaviour’
12 Forgotten Classics by Women-Led New Wave Bands (Published 2020)Jul 27, 2020
Listen to lesser-known songs by Nervus Rex, Josie Cotton, the Waitresses and more that arrived in the early 1980s.
Hate for Sale by PretendersJul 26, 2020
Hate for Sale by Pretenders album reviews & Metacritic score: The 11th full-length studio release for the Chrissie Hynde-led rock band was produced by Stephen Street....
Comprehensive list of 65 free and open source music production toolsJul 22, 2020
Open source music tools can make it easy to create a music production studio on a $0 budget. Learn how to start making music with free music production software with this comprehensive roundup of tools and technologies
𝗠𝗘𝗧𝗔𝗟𝗟𝗜𝗖𝗔 - 𝗘𝗡𝗧𝗘𝗥 𝗦𝗔𝗡𝗗𝗠𝗔𝗡 - 𝟱𝟬𝟬 𝗺𝘂𝘀𝗶𝗰𝗶𝗮𝗻𝘀 - The biggest rock flashmob in Central Europe - 𝗖𝗜𝗧𝗬𝗥𝗢𝗖𝗞𝗦Jul 18, 2020
𝗖𝗜𝗧𝗬𝗥𝗢𝗖𝗞𝗦 ▶ 𝙄𝙩 𝙞𝙨 𝙢𝙤𝙧𝙚 𝙩𝙝𝙖𝙣 𝙢𝙪𝙨𝙞𝙘, 𝙞𝙩 𝙞𝙨 𝙖𝙣 𝙤𝙧𝙘𝙝𝙚𝙨𝙩𝙧𝙖. 𝙄𝙩 𝙞𝙨 𝙢𝙤𝙧𝙚 𝙩𝙝𝙖𝙣 𝙖𝙣 𝙤𝙧𝙘𝙝𝙚𝙨𝙩𝙧𝙖, 𝙞𝙩 𝙞𝙨 𝙖 𝙛𝙚𝙡𝙡𝙤𝙬𝙨𝙝𝙞𝙥. 𝙄𝙩 𝙙𝙤𝙚𝙨 𝙣𝙤𝙩 𝙢𝙖𝙩𝙩𝙚𝙧 𝙬𝙝𝙤 𝙮𝙤𝙪 𝙖𝙧𝙚, 𝙬𝙝𝙚𝙧𝙚 𝙮𝙤𝙪 𝙘𝙤𝙢𝙚 𝙛𝙧𝙤𝙢. 𝙄𝙣 𝙛𝙖𝙘𝙩 𝙞𝙩 𝙙𝙤𝙚𝙨 𝙣𝙤𝙩 𝙢𝙖𝙩𝙩𝙚𝙧 𝙬𝙝𝙚𝙧𝙚 𝙮𝙤𝙪 𝙬𝙞𝙡𝙡 𝙘𝙤𝙣𝙩𝙞𝙣𝙪𝙚 𝙤𝙣 𝙮𝙤𝙪𝙧 𝙬𝙖𝙮. 𝙄𝙩 𝙙𝙤𝙚𝙨 𝙣𝙤𝙩 𝙢𝙖𝙩𝙩𝙚𝙧 𝙝𝙤𝙬 𝙤𝙡𝙙 𝙮𝙤𝙪 𝙖𝙧𝙚, 𝙞𝙛 𝙮𝙤𝙪 𝙖𝙧𝙚 𝙬𝙤𝙧𝙠𝙞𝙣𝙜 𝙖𝙨 𝙖𝙣 𝙪𝙣𝙨𝙠𝙞𝙡𝙡𝙚𝙙 𝙬𝙤𝙧𝙠𝙚𝙧 𝙤𝙧 𝙖 𝙩𝙤𝙥 𝙢𝙖𝙣𝙖𝙜𝙚𝙧. 𝙄𝙩 𝙙𝙤𝙚𝙨 𝙣𝙤𝙩 𝙢𝙖𝙩𝙩𝙚𝙧 𝙞𝙛 𝙮𝙤𝙪𝙧 𝙞𝙣𝙨𝙩𝙧𝙪𝙢𝙚𝙣𝙩 𝙞𝙨 𝙬𝙤𝙧𝙩𝙝 𝙖 𝙘𝙝𝙚𝙖𝙥 𝙢𝙚𝙖𝙡 𝙤𝙧 𝙖 𝙣𝙚𝙬 𝙘𝙖𝙧. 𝙏𝙝𝙚𝙧𝙚 𝙖𝙧𝙚 𝙣𝙤 𝙨𝙩𝙖𝙩𝙪𝙨 𝙨𝙮𝙢𝙗𝙤𝙡𝙨, 𝙤𝙣𝙡𝙮 𝙜𝙚𝙣𝙪𝙞𝙣𝙚 𝙨𝙮𝙢𝙗𝙤𝙡𝙨, 𝙟𝙪𝙨𝙩 𝙖𝙨 𝙢𝙖𝙣𝙮 𝙖𝙨 𝙬𝙚 𝙖𝙧𝙚. 𝙀𝙫𝙚𝙣 𝙞𝙛 𝙬𝙚 𝙖𝙧𝙚 𝙢𝙖𝙣𝙮, 𝙬𝙚 𝙖𝙧𝙚 𝙣𝙤𝙩 𝙟𝙪𝙨𝙩 𝙖 𝙡𝙤𝙪𝙙 𝙘𝙧𝙤𝙬𝙙. 𝙒𝙚 𝙖𝙧𝙚 𝙣𝙤𝙩 𝙖𝙡𝙞𝙠𝙚, 𝙗𝙪𝙩 𝙬𝙚 𝙖𝙧𝙚 𝙣𝙤𝙩 𝙙𝙞𝙛𝙛𝙚𝙧𝙚𝙣𝙩 𝙚𝙞𝙩𝙝𝙚𝙧. 𝙒𝙚 𝙖𝙡𝙡 𝙣𝙚𝙚𝙙 𝙩𝙤 𝙗𝙚 𝙩𝙝𝙚𝙧𝙚, 𝙩𝙤 𝙗𝙚 𝙨𝙤𝙢𝙚𝙤𝙣𝙚 𝙩𝙤𝙜𝙚𝙩𝙝𝙚𝙧 𝙖𝙣𝙙 𝙮𝙤𝙪 𝙖𝙧𝙚 𝙚𝙭𝙖𝙘𝙩𝙡𝙮 𝙩𝙝𝙖𝙩 𝙥𝙚𝙧𝙨𝙤𝙣 𝙬𝙚 𝙘𝙖𝙣 𝙣𝙤𝙩 𝙢𝙞𝙨𝙨.
𝗧𝗵𝗲 𝗯𝗶𝗴𝗴𝗲𝘀𝘁 𝗿𝗼𝗰𝗸 𝗳𝗹𝗮𝘀𝗵𝗺𝗼𝗯 𝗶𝗻 𝗖𝗲𝗻𝘁𝗿𝗮𝗹 𝗘𝘂𝗿𝗼𝗽𝗲 - 𝗞𝗲𝗰𝘀𝗸𝗲𝗺é𝘁 (𝗛𝘂𝗻𝗴𝗮𝗿𝘆) 𝟮𝟬𝟭𝟵
𝟱𝟬𝟬 𝗺𝘂𝘀𝗶𝗰𝗶𝗮𝗻𝘀 𝗿𝗼𝗰𝗸 𝗳𝗹𝗮𝘀𝗵𝗺𝗼𝗯 𝗽𝗹𝗮𝘆𝗹𝗶𝘀𝘁 ▶ https://www.youtube.com/playlist?list=PLBBaNkZpn3fEReNP2tMMzL3WaE4R798YP
𝗖𝗜𝗧𝗬𝗥𝗢𝗖𝗞𝗦
𝗪𝗘𝗕 ▶ https://www.cityrocks.eu/
𝗬𝗢𝗨𝗧𝗨𝗕𝗘 ▶https://www.youtube.com/@CITYROCKS
𝗙𝗔𝗖𝗘𝗕𝗢𝗢𝗞 ▶ https://www.facebook.com/cityrocksproductions
𝗜𝗡𝗦𝗧𝗔𝗚𝗥𝗔𝗠 ▶ https://www.instagram.com/cityrocksproductions/
𝗧𝗜𝗞 𝗧𝗢𝗞 ▶ https://www.tiktok.com/@cityrocks_flashmob
🎬 RBfilm (Hungary)
________________________________________________________________________________________________
@metallica - 𝗘𝗻𝘁𝗲𝗿 𝗦𝗮𝗻𝗱𝗺𝗮𝗻
James Alan Hetfield / Kirk L. Hammett / Lars Ulrich
Enter Sandman © Universal Music Publishing Group
Metallica - Enter Sandman official video: https://www.youtube.com/watch?v=bJ3p2VrFEvY
"𝗘𝗻𝘁𝗲𝗿 𝗦𝗮𝗻𝗱𝗺𝗮𝗻" 𝗶𝘀 𝗮 𝘀𝗼𝗻𝗴 𝗯𝘆 𝗔𝗺𝗲𝗿𝗶𝗰𝗮𝗻 𝗵𝗲𝗮𝘃𝘆 𝗺𝗲𝘁𝗮𝗹 𝗯𝗮𝗻𝗱 𝗠𝗲𝘁𝗮𝗹𝗹𝗶𝗰𝗮. 𝗜𝘁 𝗶𝘀 𝘁𝗵𝗲 𝗼𝗽𝗲𝗻𝗶𝗻𝗴 𝘁𝗿𝗮𝗰𝗸 𝗮𝗻𝗱 𝗹𝗲𝗮𝗱 𝘀𝗶𝗻𝗴𝗹𝗲 𝗳𝗿𝗼𝗺 𝘁𝗵𝗲𝗶𝗿 𝘀𝗲𝗹𝗳-𝘁𝗶𝘁𝗹𝗲𝗱 𝗳𝗶𝗳𝘁𝗵 𝗮𝗹𝗯𝘂𝗺, 𝗿𝗲𝗹𝗲𝗮𝘀𝗲𝗱 𝗶𝗻 𝟭𝟵𝟵𝟭. 𝗧𝗵𝗲 𝗺𝘂𝘀𝗶𝗰 𝘄𝗮𝘀 𝘄𝗿𝗶𝘁𝘁𝗲𝗻 𝗯𝘆 𝗞𝗶𝗿𝗸 𝗛𝗮𝗺𝗺𝗲𝘁𝘁, 𝗝𝗮𝗺𝗲𝘀 𝗛𝗲𝘁𝗳𝗶𝗲𝗹𝗱 𝗮𝗻𝗱 𝗟𝗮𝗿𝘀 𝗨𝗹𝗿𝗶𝗰𝗵. 𝗩𝗼𝗰𝗮𝗹𝗶𝘀𝘁 𝗮𝗻𝗱 𝗿𝗵𝘆𝘁𝗵𝗺 𝗴𝘂𝗶𝘁𝗮𝗿𝗶𝘀𝘁 𝗛𝗲𝘁𝗳𝗶𝗲𝗹𝗱 𝘄𝗿𝗼𝘁𝗲 𝘁𝗵𝗲 𝗹𝘆𝗿𝗶𝗰𝘀, 𝘄𝗵𝗶𝗰𝗵 𝗱𝗲𝗮𝗹 𝘄𝗶𝘁𝗵 𝘁𝗵𝗲 𝗰𝗼𝗻𝗰𝗲𝗽𝘁 𝗼𝗳 𝗮 𝗰𝗵𝗶𝗹𝗱'𝘀 𝗻𝗶𝗴𝗵𝘁𝗺𝗮𝗿𝗲𝘀. 𝗧𝗵𝗲 𝘀𝗶𝗻𝗴𝗹𝗲 𝗿𝗲𝗮𝗰𝗵𝗲𝗱 𝗻𝘂𝗺𝗯𝗲𝗿 𝟭𝟲 𝗼𝗻 𝘁𝗵𝗲 𝗨𝗦 𝗕𝗶𝗹𝗹𝗯𝗼𝗮𝗿𝗱 𝗛𝗼𝘁 𝟭𝟬𝟬 𝗮𝗻𝗱 𝗮𝗰𝗵𝗶𝗲𝘃𝗲𝗱 𝗽𝗹𝗮𝘁𝗶𝗻𝘂𝗺 𝗰𝗲𝗿𝘁𝗶𝗳𝗶𝗰𝗮𝘁𝗶𝗼𝗻 𝗳𝗼𝗿 𝗺𝗼𝗿𝗲 𝘁𝗵𝗮𝗻 𝟭,𝟬𝟬𝟬,𝟬𝟬𝟬 𝗰𝗼𝗽𝗶𝗲𝘀 𝘀𝗵𝗶𝗽𝗽𝗲𝗱 𝗶𝗻 𝘁𝗵𝗲 𝗨𝗻𝗶𝘁𝗲𝗱 𝗦𝘁𝗮𝘁𝗲𝘀, 𝘀𝗽𝘂𝗿𝗿𝗶𝗻𝗴 𝘀𝗮𝗹𝗲𝘀 𝗼𝗳 𝗼𝘃𝗲𝗿 𝟯𝟬 𝗺𝗶𝗹𝗹𝗶𝗼𝗻 𝗰𝗼𝗽𝗶𝗲𝘀 𝗳𝗼𝗿 𝗠𝗲𝘁𝗮𝗹𝗹𝗶𝗰𝗮 𝗮𝗻𝗱 𝗽𝗿𝗼𝗽𝗲𝗹𝗹𝗶𝗻𝗴 𝗠𝗲𝘁𝗮𝗹𝗹𝗶𝗰𝗮 𝘁𝗼 𝘄𝗼𝗿𝗹𝗱𝘄𝗶𝗱𝗲 𝗽𝗼𝗽𝘂𝗹𝗮𝗿𝗶𝘁𝘆. 𝗔𝗰𝗰𝗹𝗮𝗶𝗺𝗲𝗱 𝗯𝘆 𝗰𝗿𝗶𝘁𝗶𝗰𝘀, 𝘁𝗵𝗲 𝘀𝗼𝗻𝗴 𝗶𝘀 𝗳𝗲𝗮𝘁𝘂𝗿𝗲𝗱 𝗶𝗻 𝗮𝗹𝗹 𝗼𝗳 𝗠𝗲𝘁𝗮𝗹𝗹𝗶𝗰𝗮'𝘀 𝗹𝗶𝘃𝗲 𝗮𝗹𝗯𝘂𝗺𝘀 𝗮𝗻𝗱 𝗗𝗩𝗗𝘀 𝗿𝗲𝗹𝗲𝗮𝘀𝗲𝗱 𝗮𝗳𝘁𝗲𝗿 𝟭𝟵𝟵𝟭 𝗮𝗻𝗱 𝗵𝗮𝘀 𝗯𝗲𝗲𝗻 𝗽𝗹𝗮𝘆𝗲𝗱 𝗹𝗶𝘃𝗲 𝗮𝘁 𝗮𝘄𝗮𝗿𝗱 𝗰𝗲𝗿𝗲𝗺𝗼𝗻𝗶𝗲𝘀 𝗮𝗻𝗱 𝗯𝗲𝗻𝗲𝗳𝗶𝘁 𝗰𝗼𝗻𝗰𝗲𝗿𝘁𝘀.
𝗠𝗲𝘁𝗮𝗹𝗹𝗶𝗰𝗮 - 𝗘𝗻𝘁𝗲𝗿 𝗦𝗮𝗻𝗱𝗺𝗮𝗻 𝗹𝘆𝗿𝗶𝗰𝘀
Say your prayers, little one
Don't forget, my son
To include everyone
Tuck you in, warm within
Keep you free from sin
'Til the sandman, he comes
Sleep with one eye open
Gripping your pillow tight
Exit light
Enter night
Take my hand
We're off to never-never land
Somethings wrong, shut the light
Heavy thoughts tonight
And they aren't of Snow White
Dreams of war, dreams of liars
Dreams of dragon's fire
And of things that will bite, yeah
Sleep with one eye open
Gripping your pillow tight
Exit light
Enter night
Take my hand
We're off to never-never land
Now I lay me down to sleep
Now I lay me down to sleep
I pray the Lord my soul to keep
I pray the Lord my soul to keep
If I die before I wake
If I die before I wake
I pray the Lord my soul to take
I pray the Lord my soul to take
Hush, little baby, don't say a word
And never mind that noise you heard
It's just the beasts under your bed
In your closet, in your head
Exit light
Enter night
Grain of sand
Exit light
Enter night
Take my hand
We're off to never-never land, yeah
Uh
Yeah, yeah
Yo, oh
We're off to never-never land
Take my hand
We're off to never-never land
Take my hand
We're off to never-never land
𝗠𝗲𝘁𝗮𝗹𝗹𝗶𝗰𝗮 𝗮𝗹𝗯𝘂𝗺
Enter Sandman, Sad but True, Holier than Thou, The Unforgiven, Wherever I May Roam, Don't Tread on Me, Through the Never, Nothing Else Matters, Of Wolf and Man, The God That Failed, My Friend of Misery, The Struggle Within, bonus track: So What
James Hetfield – vocals, rhythm guitar, acoustic guitar
Kirk Hammett – lead guitar
Jason Newsted – bass guitar
Lars Ulrich – drums, percussion
𝗠𝗲𝘁𝗮𝗹𝗹𝗶𝗰𝗮 𝗗𝗶𝘀𝗰𝗼𝗴𝗿𝗮𝗽𝗵𝘆
Kill 'Em All
Ride the Lightning
Master of Puppets
...And Justice for All
Metallica
Load
Reload
St. Anger
Death Magnetic
Hardwired... to Self-Destruct
𝗠𝗲𝘁𝗮𝗹𝗹𝗶𝗰𝗮 𝘁𝗼𝘂𝗿𝘀
Kill 'Em All For One Tour
Ride The Lightning Tour
Damage, Inc. Tour
Damaged Justice Tour
Wherever We May Roam Tour
Nowhere Else To Roam Tour
Shit Hits The Sheds Tour
Escape From The Studio '95
Poor Touring Me
Poor Re–Touring Me
Garage Remains The Same Tour
Summer Sanitarium Tour
Summer Sanitarium Tour
Madly in Anger with the World Tour
Escape from the Studio '06
Sick of the Studio '07
World Magnetic Tour
WorldWired Tour
Metallica Tour
#metallica #entersandman #heavymetal #metallicaclub #cityrocks #metallicacover #entersandmancover #themetallicablacklist #nothingelsematters #metallicatribute #metallicafamily #metallicafans #metallicareaction #metallicaislife #metallicalyrics #metallicaforever #metallicaclub #metallicalive #rockband #rockers #rockflashmob #rockstar #musicians #music #musician #heavy #rockmusic #rockmusician #rockmusik #flashmob #flashmob_youtube #музыка #rock #heavymetal
Mozart in the Jungle | Grove AtlanticJul 16, 2020
“Her description of life in the famous Allendale building…is delightful, as are her portraits of fellow musicians and her stories of life in the...
Leonard Cohen: Remembering the Life and Legacy of the Poet of BrokennessJun 10, 2020
We look back on the many chapters of Leonard Cohen's long, remarkable life, from teenage poet to midlife monk and beyond.
How Run the Jewels Became Hip-Hop’s Most Intense Truth-TellersJun 3, 2020
New York cult hero El-P and Southern scene-stealer Killer Mike trace the history of their thriving alt-rap duo Run the Jewels.
Wynton Marsalis on 12 Essential Jazz RecordingsJun 1, 2020
Wynton Marsalis selects and discusses 12 essential jazz recordings, from King Oliver to Charles Mingus and beyond.
The Greatest Creative Run in the History of Popular MusicJun 1, 2020
It’s Stevie Wonder’s “classic period.”
Guitar Decomposed: 5. Mutating the ThirdJun 1, 2020
So far we’ve been discussing chord transformations that didn’t change the chord’s function. We’ve been essentially dealing with just one major chord and its transpositions. …
Spotify’s removed its 10K library limit — but it won’t replace my MP3 colleMay 28, 2020
Yes, Spotify removing its 10k library limit for songs and albums is great, but it still has a long way to go until it replaces my MP3 collection.
WAV to MP3 (Online & Free) — ConvertioMay 27, 2020
Best way to convert your WAV to MP3 file in seconds. 100% free, secure and easy to use! Convertio — advanced online tool that solving any problems with any files.
The Big Man Behind 'Shake, Rattle And Roll'May 19, 2020
Six feet tall, weighing in at 400 pounds and in his 40s when stardom hit him, Big Joe Turner is behind a load of rock 'n' roll hits. His hardest-hitting singles have been collected on a new compilation, titled Big Joe Turner Rocks.
Physical Product Is Still The Chink In The Armor Of The Recorded Music BusiMay 19, 2020
For the recorded music business, physical product is all about bottom-line profit, but the lockdown may cause it to shrink faster than anticipated.
Shelved: The Misfits’s 12 Hits From HellMay 19, 2020
For a bunch of rock 'n' rollers creating the horror punk genre, the Misfits sure were sensitive.
KEXP Show ScheduleMay 17, 2020
On the Shoulders of Giants — THE BITTER SOUTHERNERMay 16, 2020
How Single Lock Records unites the hometown legends of Muscle Shoals, Alabama, music with the new generation.
LISTEN: A Classic Leon Redbone Set from 1990May 15, 2020
Although Leon Redbone’s 2018 documentary was satirically titled, “Please, Don’t Talk About Me When I’m Gone,” it’s impossible not to talk about- and…
The Rough Guide To Mali BluesMay 9, 2020
Situated in the heart of West Africa, Mali is one of the world's great musical treasures and widely acknowledged as a primary source of the music that America would remake into the blues. From its fertile southern savannas to the Sahara Desert in the north, the country is awash with diverse musical styles. For centuries music has infused Mali’s cultural identity, with musicians holding revered places in society, but since the arrival of radical Islamists intent on stamping out indigenous music, the culture has been under serious threat. In late 2012, the guitarist Anansy Cissé was forced to dismantle his studio following the invasion of Mali’s northern regions by militant Islamists, many of whom are opposed to secular music-making. The poignant track ‘Gomni’ calls for peace across Mali and is a reminder of the despair felt by many at the
Gregg Allman: The Wild Times, Lost Years and Rebirth of a Southern-Rock LegendMay 1, 2020
Mikal Gilmore chronicles Gregg Allman's epic, tragic life, from the Allman Brothers' glory days through his lost years and late-career redemption.
Rodrigo y Gabriela: Tiny Desk (Home) ConcertApr 29, 2020
Rodrigo y Gabriela play a relaxed Tiny Desk home concert from their studio in Zihuatanejo, Mexico.
Lucinda Williams: A Guide To Her Best Songs : NPRApr 24, 2020
Williams's catalog has, across more than a dozen albums, shaped Americana. Here's a map of her career's many high points.
10 Women in Jazz Who Never Got Their DueApr 24, 2020
We’re often taught to think of jazz’s history as a cavalcade of great men and their bands, but from its beginnings the music was often in the hands of women. Listen to some of the greatest.
The world's a mess, and X is backApr 22, 2020
On Wednesday, the original members of Los Angeles punk band X dropped their first new studio album in 35 years, in the midst of the coronavirus pandemic.
AllMusic is being updated. | Music Search, Recommendations, Videos and ReviewsApr 19, 2020
AllMusic provides comprehensive music info including reviews and biographies. Get recommendations for new music to listen to, stream or own.
How to Export Spotify Playlist to Excel CSV or Text File? | SidifyApr 17, 2020
Here we share you a credible way to export your Spotify playlist to Excel CSV or text file, and an extra method to export your Spotify song or playlist to other popular audio formats like MP3 or AAC.
Rare Grooves on Vinyl from Around the World: Hear Curated Playlists of ArabApr 15, 2020
Just as the category of “Foreign Language Film” has serious problems, so too does that of “World Music,” which names so many kinds of music that it names nothing at all.
A Playlist of Songs to Get You Through Hard Times: Stream 20 Tracks from thApr 15, 2020
There’s an argument to be made that folk music is always political, in a broad sense.
Inside the Life of John Prine, the Mark Twain of American SongwritingApr 9, 2020
Folk legend John Prine looks back on his colorful, still-thriving career.
dig.ccMixter HomeApr 8, 2020
dig.ccMixter Music discovery site operated by ArtisTech Media ... founded by Creative Commons.
Live SessionsApr 3, 2020
Discover new and emerging artists, watch videos and live stream rare in-studio performances and concerts, all curated by Public Radio's best music radio stations.
LApr 1, 2020
https://www.youtube.com/watch?v=LwsKpi9SIdkMar 31, 2020
Where did all the saxophones go?Mar 29, 2020
How one instrument went from being the backbone of American popular music to being a punchline in a joke about the ’80s.
Forget Eileen: Ted Leo On The Unsung Greatness Of Dexys Midnight RunnersMar 11, 2020
As part of NPR's series One-Hit Wonders / Second-Best Songs, musician Ted Leo says the British band known for "Come On Eileen" has more to offer — and points to one song as a perfect example.
Musicians Algorithmically Generate Every Possible Melody, Release Them To PMar 9, 2020
Two programmer-musicians wrote every possible MIDI melody in existence to a hard drive, copyrighted the whole thing, and then released it all to the public in an attempt to stop musicians from getting sued. From a report: Programmer, musician, and copyright attorney Damien Riehl, along with fellow m...
‘The Whole System Collapsed’: Inside the Music Industry’s Ongoing Distribution CrisisFeb 25, 2020
After a behind-the-scenes business decision, labels and record stores are having trouble stocking shelves with CDs and vinyl
(33) Tinariwen ( IO:I) - Sastanàqqàm - YouTubeFeb 25, 2020
"Sastanàqqàm" from the album 'Elwan,' available now
Order ELWAN here: http://found.ee/tinariwen_store
directed by Jeremiah, assisted by Celidja Pornon / (c) 2017 Wedge / Anti- / Coop / Pias
“A thousand miles from their homeland in northern Mali, across a vast expanse of desert, the music of Tinariwen has found shelter in the hearts of six young musicians from M’hamid el Ghizlane. They were only boys when the desert rockers first visited their home, back in 2006, but they saw an immediate reflection of their own dreams and aspirations in the music they heard. In the years that followed they learned the Tinariwen songbook note for note, word for word, even though they couldn’t speak a word of Tamashek, the language of the Touareg.
When Tinariwen returned to M’hamid in 2016 to record a new album, those young disciples from M’hamid had achieved a remarkable mastery of the desert guitar repertoire. The torch had been passed from hand to hand and heart to heart across the great desert. The young musicians from M’hamid were invited to perform Abdallah’s ‘Sastaqanam’, standing in for their older brothers and playing with uncanny fidelity. But first the members of Tinariwen wrapped new turbans around the heads of their young acolytes, marking not only the passage from boyhood to manhood according to ancient desert custom, but also the transmission of their music across the generations, a transmission that is taking place in the hearts of youth from every corner of the great Sahara.”
SASTANÀQQÀM (I QUESTION YOU)
Ténéré, can you tell me of anything better
Than to have your friends and your mount,
And a brand new goatskin, watertight,
To find your way by the light
Of the four bright stars of heaven,
To know how to find water in
The unlikeliest of places,
And enlist the momentum of the wind
To help you move forward.
Tell me, Ténéré, how you and I
Can remain united, with no hate for each other.
Ténéré, I can now admit that
I have travelled far through this wide world.
Ténéré, I give you my oath
That as long as I’m alive,
I will always come back to you.
Louis Armstrong, the King of QueensFeb 20, 2020
The jazz musician’s impeccably maintained home in a modest New York City neighborhood is a testament to his — and midcentury design’s — legacy.
The 25 biggest gameday bangers of the decade, rankedFeb 19, 2020
We asked 27 arena and stadium DJs around the country which songs defined the decade.
Electric Six - Danger! High Voltage [Funk Rock]Feb 19, 2020
256 votes, 35 comments. 35M subscribers in the Music community. Reddit’s #1 Music Community
The World's favorite albums of 2019 - The World from PRXFeb 19, 2020
A lot of great music was released this year, but we narrowed it down for you. Here's a selection of The World's favorite albums chosen by host Marco Werman and show director April Peavey.
The Past Year, And Decade, In Music Listening: Video Rules, The Boy's ClubFeb 19, 2020
Two reports released recently shine a light on the decade-long trends shaping our relationships to listening, from the dominance of video to the vinyl "boom" that isn't quite.
Playlist | The Complete Miles Davis: Birth of the Cool Soundtrack | AmericaFeb 19, 2020
All of the songs heard in the new Miles Davis documentary film by Stanley Nelson.
Want to Get Into Jazz? Listen to These 10 Albums FirstFeb 19, 2020
A lot of folks would like to get more into jazz music. But, they don’t really know where to begin. Here are the top 10 albums for beginners.
The Number Ones: The Knack’s “My Sharona”Feb 18, 2020
In The Number Ones, I’m reviewing every single #1 single in the history of the Billboard Hot 100, starting with the chart’s beginning, in 1958, and working my way up into the present. *** The Knack – “My Sharona” HIT #1: August 25, 1979 STAYED AT #1: 6 weeks There really was a Sharona. Actually, […]
Stream Christone 'Kingfish' Ingram's Scorching Kiss-Off, 'Empty Promises'Feb 12, 2020
The young blues-guitar wonder shares an emotionally raw new song ahead of Valentine's Day.
The Great Heavy Metal HoaxFeb 1, 2020
This down-on-his-luck headbanger fabricated a persona, faked a tour and promoted himself as a hard-rock savior
The Night the Music DiedJan 5, 2020
Fifty years ago, a plane carrying Buddy Holly crashed in a remote Iowa cornfield. This month, hundreds of fans will gather at the ballroom where he played his final show to sing, dance, and mourn the greatest rock star ever to come out of Texas.
In the Jungle: Inside the Long, Hidden Genealogy of ‘The Lion Sleeps TonighJan 1, 2020
How the American music legends behind 'The Lion Sleeps Tonight' made millions off the work of a Zulu tribesman named Solomon Linda who died a pauper.
Scale HeavenDec 23, 2019
Encore by The SpecialsDec 23, 2019
Encore by The Specials album reviews & Metacritic score: The first full-length studio release in nearly 18 years for the reformed British ska-punk band sees the return of Terry Hall to the line-up....
Jenny And The Mexicats: Tiny Desk Concert : NPRDec 23, 2019
Sometimes frenetic, sometimes slow and luxurious, the grooves the band creates are the perfect cushion for Jenny Ball's impassioned singing and engaging stage presence.
Qobuz - Unlimited high quality streaming (Ireland)Dec 23, 2019
More than 100 million tracks available for high sound quality unlimited streaming. Qobuz is also the worldwide leader in 24-Bit Hi-Res downloads.
An MRI Shows How a Singer Sings Two Tones at Once (With the Music of MozartDec 23, 2019
When people hear Anna-Maria Hefele sing, they wonder how she does it, and not just because of her impressive traditional chops.
AMERICAN ROUTESDec 23, 2019
American Routes is a weekly two-hour public radio program produced in New Orleans presenting a broad range of American music - blues and jazz, gospel and soul, old-time country and rockabilly, Cajun and zydeco. Tejano and Latin, routts rock and pop avant-garde and classical. Now in our 20th year on
The 100 Best Albums Of The 2010sDec 23, 2019
These are the albums that defined the decade as we lived it.
World Cafe's Best Songs Of 2019Dec 23, 2019
Some of World Cafe's favorite songs of the year include music by Strand of Oaks, The Head and the Heart, Clairo, Sharon Van Etten and more.
Los Lobos: Tiny Desk ConcertDec 23, 2019
When Los Lobos gathered behind the Tiny Desk, it felt like they were cramped in the back room of a family Christmas party, calling up tunes from the Latin holiday song book.
Khruangbin, 'Maria También' (Live)Dec 14, 2019
Watch the Texas-based Thai funk band perform the lead single from their latest release, Con Todo El Mundo.
Texas Music Hour of Power Sat nites 7-9 pm central KRTS Marfa & KWVH WimberDec 14, 2019
www.marfapublicradio.orgwww.westtexaspublicradio.orgwww.wimberleyvalleyradio.orgwww.kwvh.orgwww.kpft.org/kpft.org/schedule-hd2/schedule-hd2/Every Saturday nite, yours truly hosts the Texas Music Hour of Power, showcasing all kinds of Texas sounds created over the past century of re
Trigger: The Life of Willie Nelson’s GuitarNov 13, 2019
Most guitars don’t have names. This one has a voice and a personality, and bears a striking resemblance to his owner.
LimeWire: The Oral History of the App That Changed Music ForeverNov 11, 2019
In 2001, the internet’s premier file-sharing service Napster was shut down after just two years, leaving a giant vacuum in the ever-expanding peer-to-peer file-sharing space....
O Sister, Where Art Thou?Nov 8, 2019
History makes no mention of what was one of the most popular all-female country acts ever. Yet the story of the Goree Girls—inmates who banded together in the forties at Texas’ sole penitentiary for women—is worth a listen.
Leonard Cohen and the Divine VoiceNov 7, 2019
A new short film captures some of Cohen’s reflections on creativity and spirituality, and on preparing for the end of life.
Songs that Cross BordersOct 31, 2019
We explore songs with the power to transcend language and the triumphant return of the Elvis of Afghanistan.
The Nightmare Before Christmas - This is HalloweenOct 31, 2019
I Can't believe it's been 17 years since I uploaded this video haha.
I do not own the rights.
Welcome! | Million Song DatasetOct 30, 2019
Flea Had a Wild Life. Then He Joined Red Hot Chili Peppers. (Published 2019)Oct 24, 2019
In a new memoir, the bassist describes how he expanded his consciousness, found his muse and landed in a storied rock band.
Jazz Night In America: The PlaylistOct 12, 2019
A modern jazz survey at ground level, from stone classics to state-of-the-art jams.
She Remembers Everything by Rosanne CashSep 23, 2019
She Remembers Everything by Rosanne Cash album reviews & Metacritic score: The 15th full-length release for the singer-songwriter features contributions from such artists as T Bone Burnett, Elvis Costello, Kris Kristofferson, John Leve...
Elvis Costello’s List of 500 Albums That Will Improve Your LifeSep 23, 2019
Photo by Victor Diaz Lamich, via Wikimedia Commons Ask a few friends to draw up sufficiently long lists of their favorite albums, and chances are that more than one of them will include Elvis Costello.
10 Country Albums Every Music Fan Should OwnSep 19, 2019
There's absolutely no excuse for music fans to not know these groundbreaking albums by some of country's boldest names.
BrainStorm, Tchê!: Putumayo World Music [Discography for Download]Sep 17, 2019
Putumayo World Music [Discography for Download] 125 CDs Putumayo Presents Collection (2Gb for free download) Fecha de Lanzamient...
Melinda Kathleen Reese impromptu performance "O come, O come, Emmanuel" at The Pantheon Church, RomeSep 17, 2019
91 votes, 10 comments. 1.3M subscribers in the awesome community. For everything that is awesome!
His Biggest Hit Sold More Copies Than Any of the Beatles’. So Why Haven’t You Heard of Him?Sep 16, 2019
In a life bookended by tragedy, Prince Nico Mbarga poured joy into music, including the most popular song in African history. But his own story has never been told — until now.
The Story of Country Music’s Great Songwriting DuoSep 2, 2019
Before they released "Wichita Lineman," the greatest unfinished song of all time, Glen Campbell and Jimmy Webb lived surprisingly parallel lives.
The 212: The Harlem Jazz Club Where the Spirit of Billie Holiday Lives OnAug 31, 2019
Minton’s Playhouse, the birthplace of bebop, still rules over 118th Street.
Skip Rates: Why The First 30 Seconds Matter More Than EverAug 30, 2019
With the album on the wane and attention spans shorter than ever, the first 30 seconds of of a song matter more than. Not only do they need to capture. Continue reading
Learning SynthsAug 24, 2019
Learn about synthesizers via Ableton’s interactive website. Play with a synth in your browser and learn to use the various parts of a synth to make your own sounds.
In Southern Appalachia, Searching for the ‘Big Bang’ of Country MusicAug 20, 2019
More than 90 years ago, recordings in a hat warehouse in Bristol, Tenn., unleashed a quintessentially American musical form.
Just putting it out there: I still buy MP3sAug 18, 2019
In this column, “Just putting this out there…,” we write about the odd ways we engage with tech and the unpopular opinions we form about it. You can read the rest of the articles in this series here. One of my biggest sources of inner turmo
Brain Damage Saved His MusicAug 5, 2019
After a chunk of his brain was removed, guitarist Pat Martino got his groove back.
A History of Blue Note Records in 15 Albums (Published 2019)Aug 4, 2019
The most storied label in jazz turns 80 this year. Hear the music that shaped its legacy.
Searching for The SundaysJul 30, 2019
When music writers are also music fans, they can walk a line between appreciative and intrusive.
Dr. John: The Joy and Mystery of a New Orleans SaintJul 27, 2019
Few embodied the spirit of New Orleans, or helped take its music to strange new places, the way the man born Mac Rebennack did.
Stay Around by J.J. CaleJul 25, 2019
Stay Around by J.J. Cale album reviews & Metacritic score: The 15-track release posthumous album of unreleased songs were compiled by his widow, Christine Lakeland Cale and manager Mike Kappus....
Christone 'Kingfish' Ingram Breathes Life Into The BluesJul 25, 2019
The 20-year-old guitar phenom understands the blues as a lifeline, a malleable language, a way of being in the world.
Inside the Booming Business of Background Music - The Guardian - PocketJul 21, 2019
Once derided, the successors to muzak have grown more sophisticated – and influential – than any of us realize.
Jazz’s Sisterhood: Regina Carter, Renee Rosnes, and More Women TransformingJul 21, 2019
For a century, jazz was a men’s club. Now a vanguard of women virtuosi—including these 16 standouts—are reshaping this most American of art forms.
Capturing The Undersung Blues People Of The Rural SouthJul 8, 2019
Tim Duffy started Music Maker Relief Foundation to support blues musicians lost to time and poverty. He's also photographed their portraits for a new book, compilation album and museum exhibition.
Karen O and Danger Mouse cover Lou Reed’s classic “Perfect Day”: StreamJul 2, 2019
Karen O and Danger Mouse covered Lou Reed's "Perfect Day", and it's streaming now. The two released their Lux Prima album in March.
An Introduction to the Life & Music of Fela Kuti: Radical Nigerian BandleadJun 24, 2019
I cannot write about Nigerian bandleader, saxophonist, and founder of the Afrobeat sound, Fela Anikulapo Kuti, with any degree of objectivity, whatever that might mean.
The Math Trick Behind MP3s, JPEGs, and Homer Simpson’s Face - Facts So RomaJun 10, 2019
This theoretical physicist’s idea has an astounding legacy.
Antonio Salieri’s RevengeMay 29, 2019
He was falsely cast as Mozart’s murderer and music’s sorest loser. Now he’s getting a fresh hearing.
Alan Lomax’s Massive Music Archive Is Online: Features 17,000 Historic BlueApr 5, 2019
A huge treasure trove of songs and interviews recorded by the legendary folklorist Alan Lomax from the 1940s into the 1990s have been digitized and made available online for free listening.
How the music of 1950’s Cuba revolutionized the sound of young SenegalMar 25, 2019
“Dakar was where everyone came to make music.”
The Impossibly Cool Album Covers of Blue Note Records: Meet the Creative TeMar 14, 2019
Blue Note release—whether or not you were a fan of jazz or had heard of the artist or even the label. “If you went to those record stores,” says Estelle Caswell in the Vox Earworm video above, “it probably wasn’t the sound of Blue Note that immediately caught your attention.
The 50 Best Movie Soundtracks of All TimeMar 12, 2019
From Black Panther to Clueless, Dazed and Confused to Purple Rain, the music that has defined modern filmmaking
Is This the Greatest Photo in Jazz History?Mar 12, 2019
A quiet Sunday night in 1953. The Dodgers had just won the pennant. J.F.K. and Jacqueline Bouvier had just married. And four titans of bebop came together in a dive bar for a rare jam session.
First Listen: Tedeschi Trucks Band, 'Signs'Mar 12, 2019
Veteran blues-rock powerhouses Susan Tedeschi and Derek Trucks return with an impassioned new album, informed by the deaths of several mentors and family members.
Back to the Stratosphere: How the Rarest Music in the World Comes BackMar 5, 2019
Duster was a small, largely forgotten band from the late ’90s. Then their legend began to grow on sites like Discogs. Now, they’re the subject of a major reissue. The internet made it all possible.
‘The Island Always Brings You Back’: Finding a Caribbean Home (Published 2019)Mar 5, 2019
A writer never knew her family’s house on St. Thomas, in the U.S. Virgin Islands, but discovering it, and her history, became an obsession.
Texas Monthly Recommends: Soaking Up the Sounds on Saturday Night with JoeMar 3, 2019
Plus, explosive photography from Austin, instrumentals from Billy Preston, and a podcast investigation of Anna Nicole Smith.
Culture Shock for French in Quebec: ‘We Smoke Cigarettes, They Smoke Pot’ (Published 2019)Feb 28, 2019
Thousands of French people are coming to live in Quebec and discovering that a common language doesn’t necessarily mean a common culture.
This Picture Has No Red Pixels—So Why Do the Strawberries Still Look Red? -Feb 27, 2019
Color constancy continues to confound us.
The Record Label of The Future is No Label At AllFeb 25, 2019
Spotify’s acquisitions of Gimlet and Anchor signal ambitious plans to disintermediate the music industry.
This Yacht Influencer Has the Perfect Life. Don't You Feel Sorry for Him?Feb 15, 2019
Seated at a table on the rear deck with Lindsay Lohan and her entourage, I spotted Alex Jimenez — a professional yacht influencer.
A Short History of Punk: From Late 50s Rockabilly and Garage Rock to The RaFeb 7, 2019
Seems there was a time when the dominant story of punk was the story of British punk. If you knew nothing else, you knew the name Sid Vicious, and that seemed to sum it up.
First Listen: Hayes Carll, 'What It Is'Feb 7, 2019
On the Americana singer-songwriter's sixth album, Carll unburdens his mind about the volatility of our time so unassumingly, he never comes close to overburdening his songs.
Death and Valor on an American Warship Doomed by its Own NavyFeb 7, 2019
Investigation finds officials ignored warnings for years before one of the deadliest crashes in decades.
The Origins of the “Amen Break,” The Most Sampled Piece of Recorded Music EFeb 6, 2019
You may not find the reference easily in a Google search.
CBGB’s Heyday: Watch The Ramones, The Dead Boys, Bad Brains, Talking HeadsJan 31, 2019
There are, I guess, still many things people can do these days to tap into the legacy of CBGB, but I wouldn’t recommend going near most of them.
Battle of the Ax Men: Who Really Built the First Electric Rock ‘n’ Roll GuiJan 23, 2019
[caption id="attachment_78757" align="alignnone" width="618"] George Fullerton (left) testing a Stratocaster in the Fender factory, sometime in the mid-to...
Diplo, French Montana & Lil Pump ft. Zhavia Ward - Welcome To The Party (Official Music Video)Jan 13, 2019
Official Music Video | Diplo, French Montana & Lil Pump ft. Zhavia Ward - Welcome To The Party (From the Deadpool 2 Motion Picture Soundtrack)
Subscribe to Diplo YouTube Channel - http://diplo.fm/YouTube
Get the song here: http://smarturl.it/wttp
Apple Music – http://smarturl.it/wttp/applemusic
Spotify – http://smarturl.it/wttp/spotify
iTunes – http://smarturl.it/wttp/itunes
Amazon Music – http://smarturl.it/wttp/az
Google Play – http://smarturl.it/wttp/googleplay
Get the soundtrack here: http://smarturl.it/dp2soundtrack
Get tickets to Deadpool 2 here: http://deadpool.com
Production Company: Anonymous Content
Director: Jason Koenig
Executive Producer: Nina Soriano
Producer: Brooke McDaniel
Director of Photography: Jeff Bierman
Editor: Tobias Suhm
Produced by myself and Valentino Khan
#Deadpool2
The 50 Albums That Shaped Punk RockJan 3, 2019
Consequence celebrates the long history of punk rock by honoring the bands that helped shape the rebellious genre.
Stream David Bowie's Complete Discography in a 19-Hour Playlist: From His VDec 21, 2018
Every artist copies; Bowie was at his best when he stole from the best, as this 19-hour playlist shows.
The 65 Best Songs of 2018Dec 10, 2018
One-off collaborations, movie soundtracks and internet upstarts provided some of the most exciting music this year.
An Oral History of Laurel Canyon, the Sixties and Seventies Music MeccaNov 18, 2018
They made music together, took drugs, and slept together. But none of the legends of Laurel Canyon, including Joni Mitchell and David Crosby, remember it the same way.
The Story of Outlaw Country in 33 Songs | PitchforkNov 11, 2018
Starring Johnny Cash, Tanya Tucker, Willie Nelson, Townes Van Zandt, and a host of other hell-raisers
Rosalía: El Mal QuererNov 10, 2018
The second album from the Spanish singer is a remarkable feat, seamlessly linking flamenco’s characteristic melodrama to the heart-wrenching storytelling of modern, woman-flexing R&B.
Heavy Rotation: 10 Songs Public Radio Can't Stop PlayingNov 3, 2018
These recent releases — including French favorite Christine and the Queens and an appropriately spooky single from Thom Yorke — will have you reconsidering your 'Best of 2018' lists.
Heavy Rotation: 10 Songs Public Radio Can't Stop PlayingNov 3, 2018
These recent releases — including French favorite Christine and the Queens and an appropriately spooky single from Thom Yorke — will have you reconsidering your 'Best of 2018' lists.
First Listen: Charles Bradley, 'Black Velvet'Nov 3, 2018
Charles Bradley had boundless love and talent. This posthumous collection of songs is a testimony to his beauty and spirit.
First Listen: Laura Jane Grace & The Devouring Mothers, 'Bought To Rot'Nov 3, 2018
The Against Me! singer bounds around outside the boundaries and margins of punk, while still sounding unfiltered, playfully profane and overstuffed with ideas.
First Listen: Rosanne Cash, 'She Remembers Everything'Oct 28, 2018
Rather than the complexities of inheritance, Rosanne Cash's mind is on what it takes to dislodge entrenched patterns and hierarchies.
Sharon Jones Is The 21st Century's Godmother Of SoulOct 17, 2018
The Augusta-born soul singer's ballads, floor-burners and soaring motivational anthems took the might of Motown's peak and sharpened it to fight the impossible.
Look Now by Elvis Costello & the ImpostersOct 12, 2018
Look Now by Elvis Costello & the Imposters album reviews & Metacritic score: The first album for Costello with the Imposters since 2008's Momofuku was co-produced Sebastian Krys and features a guest appearance from Burt Bacharach....
Janko Nilovic - Drug Song (1975)Oct 12, 2018
From the Montparnasse 2000 Label comes this groovy funky flute track
Elvis Costello Doesn't Want Your Nostalgia, He Wants You To 'Look Now'Oct 12, 2018
Elvis Costello is releasing his first album with The Imposters in nearly a decade, titled Look Now. The legendary musician speaks about his work and surviving a cancer scare that caused him to cancel tour dates earlier this year.
Kurt Vile AbidesOct 11, 2018
Singing the existential blues made him famous. With his great new album, 'Bottle It In,' he's just looking for a good time and a calm mind
Joan Jett’s Raw, Inclusive Rock and RollOct 11, 2018
The pioneering musician talks about sensitivity, vulnerability, and the assertiveness needed to defy gender stereotypes.
Wanderer by Cat PowerOct 9, 2018
Wanderer by Cat Power album reviews & Metacritic score: The first new release from the indie rock artist in six years was self-produced, mixed by Rob Schnapf and features a guest appearance from Lana Del Rey....
This Is Muscle Shoals: The PlaylistOct 9, 2018
Listen to a selection of timeless classics recorded at FAME Studios and Muscle Shoals Sound Studio.
How 'Lofi Hip Hop Radio to Relax/Study to' Became a YouTube PhenomenonOct 8, 2018
The infinitely looped clips of anime set to chill-ass beats have millions of devoted followers. Why?
42 Hours of Ambient Sounds from Blade Runner, Alien, Star Trek and Doctor Who Will Help You Relax & SleepOct 8, 2018
YouTube channel where he 'composes longform space and scifi ambience.' Or what he otherwise calls 'ambient geek sleep aids.' Click on the video above, and you can get lulled to sleep listening to the ambient droning sound--get ready Blade Runner fans!-- heard in Rich Deckard's apartment.
Heavy Rotation: 10 Songs Public Radio Can't Stop PlayingSep 29, 2018
September brought us a single from indie favorite Kurt Vile's upcoming album, a slinky, slow-burn success from the indomitable Neneh Cherry and a razor-sharp Ray Charles cover.
Encounters: Afternoon Beers With a Former Sex PistolSep 29, 2018
John Lydon, the 62-year-old punk legend, was in New York for a new documentary about Public Image Ltd. But first, he wanted to shop and smoke in a bar.
Hear Al Green's First New Recording In Nearly A DecadeSep 14, 2018
The legendary singer returns with a version of the Freddy Fender country weeper "Before the Next Teardrop Falls."
▶ Waypoint - Burning Man Sunrise Set 2018 by TychoSep 6, 2018
Version with visuals: https://www.youtube.com/watch?v=dEP0Gi8kZhg
Tycho Sunrise DJ Set on The Dusty Rhino at Burning Man - Thursday, August 30, 2018
Track Listing:
Fila Brazillia - A Zed And Two L's
King Of Woolworths - Bakerloo (Main Titles)
Squarepusher - Iambic 5 Poetry
DJ Krust - Soul In Motion
Aphex Twin - IZ-US
Tycho - Adrift
PFM - One & Only
Art Feynman - Slow Down
Weval - Thinking Of
Glue70 - Til You Say
Com Truise - Flightwave
Melanie De Biasio - Afro Blue
James Holden - 10101
Voyage - Dynamic
Weval - It'll Be Just Fine
Roman Flügel - 9 Years (DJ Koze Remix)
Jon Hopkins - Emerald Rush
< Sunrise >>>
Pluko - l o v e
Aleksandir - Yamaha
Chrome Sparks - Moonraker
Kölsch & Tiga - HAL
Bicep - Glue Original Mix
Chrome Sparks - All There Is
Tycho - Awake
Thanks to Weval for the inspiration, Rob Garza, Willits, Glue70, Kiyoka and the Dusty Rhino Crew for making it happen every year. Thank you to everyone who made this moment special, it's always a highlight of my year and I'm so grateful to be able to share it with you all.
First Listen: John Prine, 'The Tree Of Forgiveness'Sep 5, 2018
The master craftsman returns with his first new tunes in 13 years.
Madeleine Peyroux’ AnthemSep 3, 2018
Madeleine Peyroux has one of the most extraordinary voices in music today. A friend turned me onto Careless Love years ago, and from there I found Half The Perfect World, then Dreamland, and well, everything after those three albums is simply more ways to showoff her marvelous voice. Here newest, Anthem, was released today (reviews here and here)…Read More
Robert Finley On World CafeAug 31, 2018
He's loved music and performing his whole life. Now, he has finally released his debut album in his early 60s.
Lalah Hathaway: Tiny Desk ConcertAug 31, 2018
The veteran singer showcases her soaring powerfully expressive voice in a performance that bridges several generations of classic soul.
Home Audio Like You’ve Never Heard (Or Seen) ItAug 24, 2018
Designer Chanmi Lee rethinks home entertainment in an all-new, never-before-seen format known as the Wind Sound Bar. Don't be confused by the name, however... this is anything but the sound bar you're probably imagining. The design adopts a shape similar to that of a trumpet or other wind instrument - a familiar form for an
Please Don't Be Dead by Fantastic NegritoAug 14, 2018
Please Don't Be Dead by Fantastic Negrito album reviews & Metacritic score: The follow-up to the Oakland artist's Grammy Award-winning 2016 release was influenced in part by divisive political and social issues....
The Over and Under SpeakerAug 13, 2018
Whoever said wireless audio had to "sit" hasn't seen the Aloft speaker by designer Hyeonil Jeong. The alternative design explores an entirely new way to save valuable counter or desk space. It's A-shaped form and easy-to-install, built-in hanging bracket makes it possible to tuck it under a shelf or ledge. Being wedged underneath one of
After Nearly 30 Years In Exile, This Kashmiri Singer Has A Hit Song Of TheAug 10, 2018
A love song about wildflowers is the song of the summer on both sides of Kashmir's much-disputed border, after getting a push from a popular Pakistani television program funded by a soda company.
Why I Ripped The Same CD 300 TimesAug 5, 2018
The Counterfeit Queen of Soul | Arts & Culture | SmithsonianJul 1, 2018
A strange and bittersweet ballad of kidnapping, stolen identity and unlikely stardom
Free Music ArchiveMay 26, 2018
Free Music Archive is your number 1 resource for royalty free music and 'free to download' music.
At 70, Smithsonian Folkways Is An Antidote To Music AlgorithmsMay 13, 2018
Smithsonian Folkways, known for its broad-based music catalog, wants to surprise you with sounds you didn't even know existed. The treasured American label turns 70 years old on May 1.
First Listen: Ry Cooder, 'The Prodigal Son' : NPRMay 12, 2018
The 71-year-old raconteur returns to the old songs and inhabits the guises of death-haunted bluesmen to speak to the issues of the current era.
Heavy Rotation: 10 Songs Public Radio Can't Stop PlayingApr 28, 2018
This month's playlist includes the soulful stylings of Leon Bridges and River Whyless' sobering meditation on the American Dream.
LMar 22, 2018
Turning The Tables Listening Party: Women Of Roots And AmericanaMar 22, 2018
In this special episode, we discuss two milestone albums in Americana music: Bonnie Raitt's Nick of Time and Lucinda Williams' Car Wheels on a Gravel Road.
A Digital Archive of Heavy Metal, the Influential “Adult Fantasy Magazine”Mar 8, 2018
In making a time capsule of the late 20th century, one would be remiss if they did not include at least an issue or two of Heavy Metal magazine. Yes, it specialized in unapologetically turning women in metal bras into sex objects.
Critic’s Notebook: Pop Keeps Changing. And the Grammys Turn a Deaf Ear, AgaJan 30, 2018
By sticking by its old heroes — and familiar sounds — the awards show risks alienating tomorrow’s stars.
The Long Fall of iHeart, Once the Most Powerful and Feared Player in RadioJan 24, 2018
Launched by two of the biggest names in Texas business, Clear Channel was once the most powerful—and feared—player in radio. Now rebranded as iHeartMedia, it’s on the brink of bankruptcy.
Kimbra Climbs To The 'Top Of The World' In New Single : NPRDec 27, 2017
With angry synths, religious imagery and a symbolic music video, the New Zealand singer provides the empowering song we need at this time of year.
After Six Decades in the Vault, 'Ella at Zardi's' Brings New Shine to EllaDec 27, 2017
Ella Fitzgerald was a big star on the cusp of something bigger when she began an engagement at Zardi’s Jazzland, in the heart of Hollywood, during the…
A 2017 Latin Grammy Preview From 'Alt.Latino'Dec 27, 2017
A look ahead at the 18th annual Latin Grammy Awards.
Rough, smooth or deep: why the sound of a voice is multisensoryNov 16, 2017
Take the rough with the smooth: how the sound of a voice is multisensory, and creates interior meaning through metaphor
The Secret Chord That Makes Pop Music Sound HappyNov 15, 2017
The musical formula for good vibrations.
Brooklyn Academy of Music Puts Online 70,000 Objects Documenting the HistorOct 21, 2017
Yesterday the sad news broke that The Village Voice will discontinue its print edition.
Joni Mitchell: Fear of a Female GeniusOct 19, 2017
One of the greatest living artists in popular music still isn’t properly recognized. Joni transcends gender, genre, and time. Here’s why.
Bop SpotterOct 24, 2002
mvp
Turn Any Idea Into a Validated MVPDec 9, 2025
A step-by-step path to validate your idea fast by defining the problem, testing assumptions, prototyping the critical flow, and shaping a focused MVP you can learn from.
Why You Can't Settle For The "Minimum" In Your Minimum Viable ProductJul 19, 2022
Many startups scramble to create a "minimum viable product," or MVP, to get a version of their product to market quickly for testing. It’s a great way to cost-effectively test a website or app with real users. But be careful, if your MVP is too minimalist, it could torpedo your company's future.
The Ultimate Guide to Minimum Viable Products - Startup GrowthJul 18, 2022
You don’t want to waste your time and money building a product no one will want to use or pay for. So, first get out of the building and talk to your customers. But there’s a world of difference between talk and action. What your customers say, and what they eventually do. Talking, and putting the […]
Building a Minimum Viable Product is Like Serving Burnt Pizza — Build Lovable Products InsteadDec 23, 2019
Product builders should aim for lovable, not just viable. Jiaona Zhang (product leader at Dropbox, Airbnb, WeWork and lecturer at Stanford) shares her tactics for building MLPs that win users' hearts.
Iterative Development: The Secret to Great Product Launches — MindKMar 5, 2019
Elon Musk’s SpaceX is winning the space race. His secret to success lay in the iterative development process, borrowed straight from the software industry.
mysql
MySQL/MariaDB CheatsheetFeb 18, 2026
Quick reference for common MySQL and MariaDB command-line administration tasks
Resetting MySQL Root Password in Ubuntu: A Step-by-Step GuideJul 26, 2023
Introduction: Losing or forgetting the MySQL root password can be a stressful situation, but don't...
How To Install MySQL on Ubuntu 22.04 | DigitalOceanJan 16, 2023
MySQL is an open-source database management system, commonly installed as part of the popular LAMP (Linux, Apache, MySQL, PHP/Python/Perl) stack. It implemen…
Introducing Trilogy: a new database adapter for Ruby on RailsSep 5, 2022
We've open sourced Trilogy, the database adapter we use to connect Ruby on Rails to MySQL-compatible database servers.
Postgres Vs MySQL syntax comparison with cheatsheetJun 22, 2022
When migrating from PostgreSQL to MySQL we often get stuck with syntax between databases. Here are...
How To Install MySQL on Ubuntu 20.04 | DigitalOceanNov 20, 2020
MySQL is an open-source database management system, commonly installed as part of the popular LAMP (Linux, Apache, MySQL, PHP/Python/Perl) stack. It implemen…
mysteries
An Introduction to the Codex Seraphinianus, the Strangest Book Ever PublishedFeb 23, 2026
Imagine you could talk to Hieronymus Bosch, the authors of the Book of Revelation, or of the Voynich Manuscript—a bizarre 15th century text written in an uncrackable code; that you could solve centuries-old mysteries by asking them, “what were you thinking?” You might be disappointed to hear them say, as does Luigi Serafini, author and illustrator of the Codex Seraphinianus, “At the end of the day [it’s] similar to the Rorschach inkblot test.
Gobsmacked! Supernatural Sightings After a Kentucky FloodSep 28, 2025
Lora Eli Smith reports on mysterious goblin-like creatures sightings by Eastern Kentucky residents after the devastating 2022 floods.
Two men fell gravely ill last year; their infections link to deaths in the ’80sAug 23, 2025
The bacterium is known to live in Mississippi, but the new cases may expand its range.
The enduring puzzle of static electricityAug 11, 2025
Even though it lacks a complete explanation, the small-scale, everyday effect is being exploited for various applications.
The Skeletons at the LakeAug 10, 2025
Genetic analysis of human remains found in the Himalayas has raised baffling questions about who these people were and why they were there, Douglas Preston writes.
Unmasking the Sea Star KillerAug 9, 2025
After a decade of carnage, we finally know what’s devastating sea stars along North America’s West Coast. Does that mean scientists can save them?
The Congo’s Dinosaur of DiscordApr 25, 2025
Once a subject of Victorian fascination, the mokele-mbembe myth is now fodder for creationists on a quest to disprove Darwinism
What Is the Voynich Manuscript?Apr 22, 2025
The 15th century Voynich Manuscript is a historical marvel, written in an undecipherable language and intricately illustrated on vellum.
Can a stuffed bird solve a 150-year-old Arctic murder mystery?Nov 25, 2024
The Polaris explorer Charles Francis Hall has long been rumoured to have been poisoned in 1872. A preserved snow bunting might be crucial evidence for the theory
The Shipwreck DetectiveNov 4, 2024
Nigel Pickford has spent a lifetime searching for sunken treasure—without leaving dry land.
What is the “Cyclopean Cave” — and why are these guys hauling buckets of Colorado mud to find it?Oct 31, 2024
Outside Leadville, spelunkers are following a hunch that a pioneer journalist’s fantastical cavern could be right below their feet.
Who Were the Mysterious Moon-Eyed People of Appalachia?Oct 23, 2024
Tales of strange, nocturnal people haunt the region—and so do theories about who they were, from a lost Welsh "tribe" to aliens.
Death as a Child: The Modern Legend of the Black-Eyed ChildrenOct 17, 2024
First described in Texas in the mid-90s, what are these disturbing figures—and what do they want?
The ObsessionMay 12, 2024
A multicultural, interfaith family in 1970s San Francisco reported a series of unexplained phenomena. Then a priest with a dark past stepped up.
Don't Stare at the Dark Watchers - Atlas ObscuraMay 8, 2024
Cryptic characters lurk in California's mountains. Or maybe it's just the weather.
Inside the Decades Long Hunt for the Mongolian Death WormMay 4, 2024
Some say the true death worm has already been found—slithering beneath the sands of the Gobi.
The Family Who Vanished Into the BushApr 12, 2024
The two disappearances of Tom Phillips and his children.
The Mystery of 4,400 Preserved Brains—And One Scientist’s Quest to Solve ItApr 7, 2024
The former undertaker collects human brains, talks to them, and hopes they won’t haunt her.
The Elusive, Maddening Mystery of the Bell Witch - Atlas ObscuraAug 5, 2023
A classic ghost story has something to say about America—200 years ago, 100 years ago, and today.
The Lost Music of Connie ConverseApr 24, 2023
A writer of haunting, uncategorizable songs, she once seemed poised for runaway fame. But only decades after she disappeared has her music found an audience.
The Tunguska Mystery--100 Years LaterMar 5, 2023
Finding a piece of the elusive cosmic body that devastated a Siberian forest a century ago could help save Earth in the centuries to come
Avenging Billy: How amateur sleuths took on a gay porn actor’s haunting Hollywood murderFeb 15, 2023
Local sleuths help find a suspect in gay porn actor Bill Newton's murder. His dismembered head and feet were found in a Hollywood dumpster in 1990.
Stranger Things: A Reading List of Unsolved MysteriesJun 23, 2022
Tales of odd phenomena stoke our imagination even as they tease us.
What Really Happened to Malaysia’s Missing AirplaneJun 23, 2022
Five years ago, the flight vanished into the Indian Ocean. Officials on land know more about why than they dare to say.
The ghostly radio station that no one claims to runJun 22, 2022
“MDZhB” has been broadcasting since 1982. No one knows why.
What Lies BeneathJan 21, 2022
In 1708, the Spanish galleon San José sank in a deadly battle against English warships, taking with it billions in treasure. Centuries passed until a secretive archaeologist found the wreck, but now nations are again warring over who may claim the gold and glory.
The Notorious Mrs. MosslerNov 28, 2021
In the mid-sixties, Candace Mossler was one of the most widely known socialites in Houston. She was in her forties, vivacious and full of charm, with wavy blond hair, deep-blue eyes, and a surgically enhanced figure that was often remarked upon in the many newspaper columns written about her.
The Day Treva Throneberry DisappearedOct 10, 2021
The North Texas teenager went missing in the late eighties. For years, no one knew where she was, or even if she was still alive-no one, that is, except a mysterious young woman two thousand miles away.
Searching for Mr. X - The Atavist MagazineOct 3, 2021
For eight years, a man without a memory lived among strangers at a hospital in Mississippi. But was recovering his identity the happy ending he was looking for?
The Mystery of People Who Speak Dozens of Languages | The New YorkerSep 18, 2021
What can hyperpolyglots teach the rest of us?
The Lost BoysSep 8, 2021
It was the most shocking crime of its day, 27 boys from the same part of town kidnapped, tortured, and killed by an affable neighbor named Dean Corll. Forty years later, it remains one of the least understood—or talked about—chapters in Houston's history.
Decades After Mysteriously Drowning, Pecos Jane Has a Name – Texas MonthlyJun 14, 2021
The young woman who mysteriously drowned in the Ropers Motel pool in 1966 might have remained anonymous forever, if not for cutting-edge genetics, old-fashioned genealogy—and the kindness of a small West Texas town.
DNA Could Identify Somerton Man Exhumed in Australia - The New York TimesMay 23, 2021
This week the police disinterred a body, found on a beach in 1948, that has puzzled investigators for decades. “There’s lots of twists and turns in this case, and every turn is pretty weird,” one said.
'He knew something': The Bay Area flight of Rangers that vanishedMay 12, 2021
The mission, still a secret to this day, was so dangerous many men bid emotional goodbyes...
Out of thin air: the mystery of the man who fell from the sky | Air transpoApr 16, 2021
The long read: In 2019, the body of a man fell from a passenger plane into a garden in south London. Who was he?
Viral Video Captures the Screams of a Mystery Creature - VICEDec 13, 2019
Cryptid enthusiasts say this is evidence of Bigfoot.
The Bizarre Tale of a Cursed Russian Ghost ShipJul 24, 2019
The Russian ship called the Ivan Vassili began its life in St. Petersburg in 1897, where it was built as a civilian steam
Mystery of the cargo ships that sink when their cargo suddenly liquefiesAug 31, 2018
We know how to stop solid minerals converting to a liquid state mid voyage – so why does it still happen?
An abandoned lifeboat at world’s endFeb 1, 2018
Breaking news: a credible solution to the Bouvet Island lifeboat mystery has been found. See comments for 22-27 May 2011, 12 November 2011, 17-20 March & 9 April 2016, and 28 December 2023. The…
n8n
How to Self-Host n8n on Docker in 5 Simple StepsJan 13, 2026
This tutorial will guide you through the complete process of self-hosting n8n on Docker in just 5 simple steps, with detailed explanations and code samples, regardless of your technical background.
naming
How brands get their names, explained by a professional namerOct 30, 2022
A professional explains why brand names have gotten weirder.
Namechk - Username and Domain Name Checker - Search All Domain Names and User Names to see if they're availableJun 28, 2022
There are 351 million registered domain names and counting. Every day, thousands more are registered. Since domain names can only be used by one company or
The Complete Guide To Bidding On Competitor Brand Names & Trademarked TermsJun 24, 2022
It's been long known in the industry that brand term keywords garner a much higher click-through-rate. As a result, marketers often start by bidding on their own brand terms.
Domain Auctions, Expired Domain Names, and Available Aftermarket Domain Names for Sale - NameJetJun 23, 2022
NameJet.com is the largest Domain Name Auction marketplace. Buy Domains even if they are already registered or Sell Domains Names by listing them in our daily marketplace.
The Weird Science of Naming New Products (Published 2015)Jun 7, 2022
To find the perfect brand, leave no word unturned.
Benefits of Using a Random Name GeneratorMar 20, 2021
Do you need to make a prototype for a website or app? The effectiveness of these random name generator benefits may surprise you.
How Spending $20,000 on a Domain Name Uncovered an Incredible Business OppoDec 28, 2017
We explain how we came to spend $20,000 on this domain, and the incredible business opportunities that exist, waiting for someone to bring them to life.
BrandBucket - The Largest Brandable Business Names MarketplaceDec 28, 2017
The original brandable name marketplace with over 100,000 expert-curated business names to choose from. Get the matching .com and a logo, and free branding advice from our team.
navigation
Why Some People Always Get Lost—And Others Never DoApr 12, 2024
Research suggests that experience may matter more than innate ability when it comes to a sense of direction
Why Animals Don’t Get LostApr 4, 2021
Birds do it. Bees do it. Learning about the astounding navigational feats of wild creatures can teach us a lot about where we’re going.
negotiation
Schelling PointSep 7, 2025
In game theory, a Schelling point describes an intuitive focal solution people gravitate towards without direct communication. Named after its progenitor, economist Thomas Schelling, its reach extends to realms like negotiations, economics, and international affairs, driven by common societal frameworks and references.
This World-Renowned Negotiator Says Trump’s Secret Weapon Is EmpathyAug 16, 2025
Chris Voss on our “dealmaker in chief” and the benefit of approaching life as a deal waiting to be made.
Opinion | He Cut a Secret Deal That Cemented U.S. Economic Power — And He Has a Lesson for Donald TrumpMar 24, 2025
A forgotten Nixon-era negotiation offers urgent lessons for our new age of economic
warfare.
How to negotiate with a bullyMay 4, 2024
These five simple techniques can help you successfully negotiate anything—even when that involves speaking with a bully.
Try These Simple Negotiation HacksFeb 29, 2024
Negotiating effectively means proving that you’re a collaborator, not an adversary. To do that, you need to demonstrate that you’re attuned to your counterpart’s logic, emotions, and perspective. These strategies can help. Use short, simple vocal prompts. For example: “And?” “Really?” “Then?” “Mmm,” “Uh huh,” “Go on,” and “Interesting.” The aim is to nudge the […]
How Well Can LLMs Negotiate? Stanford Researchers Developed ‘NegotiationAreFeb 20, 2024
In artificial intelligence, the capacity of Large Language Models (LLMs) to negotiate mirrors a leap toward achieving human-like interactions in digital negotiations. At the heart of this exploration is the NEGOTIATION ARENA, a pioneering framework devised by researchers from Stanford University and Bauplan. This innovative platform delves into the negotiation prowess of LLMs, offering a dynamic environment where AI can mimic, strategize, and engage in nuanced dialogues across a spectrum of scenarios, from splitting resources to intricate trade and price negotiations. The NEGOTIATION ARENA is a tool and a gateway to understanding how AI can be shaped to think, react,
Inside Phil Mickelson’s Backdoor Dealings With the Saudis’ LIV Golf SuperleOct 14, 2023
It was inevitable that the golf legend would be wooed away from the PGA Tour, writes Alan Shipnuck in an excerpt from his new book, LIV and Let Die. The question was who’d come along with him. “Everyone,” as one player puts it, “had a number."
3 negotiating strategies to use when the other person has an advantageJul 17, 2023
The key to finding your power in any negotiation is preparation. Here's what to do.
6 Phrases Good Negotiators Use To Get Whatever They WantMay 19, 2023
Negotiation is tough. While no words work all the time, the following phrases can help keep you on track and serve notice to the other side.
Conversation Skills Essentials – Tynan.comJan 3, 2023
Hostage Negotiating with Barbarians: Some LessonsDec 13, 2022
The lesson in the Griner case is that public pressure can steer hostage negotiations in a direction that is disadvantageous to our side, but at least solves one case.
'Persuasion Fatigue' Is a Unique Form of Social FrustrationNov 18, 2022
When people argue, a kind of frustration called persuasion fatigue can cloud their judgment and harm relationships
How to have better arguments | Psyche GuidesOct 1, 2022
Arguing well isn’t just about winning. A philosophical approach will help you and the other person get much more out of it
How to become a killer negotiator in nine stepsAug 27, 2022
Negotiating is something we do on a daily basis, be it at work or at home, and is key to ensuring that you always get the best outcome.
Beginner's Guide to Arguing ConstructivelyJul 18, 2022
How to turn arguments from vicious battles into productive dialogues.
How to Negotiate with a LiarJul 18, 2022
People, including negotiators, lie every day, so when you’re trying to make a deal, it’s important to defend against deception. The best strategy, says the author, is to focus not on detecting lies but on preventing them. She outlines five tactics that research has shown to be effective: Encourage reciprocity. You can build trust and prompt other parties to disclose strategic information by sharing information yourself. Ask the right questions. Negotiators often lie by omission, keeping mum about relevant facts, but if directly asked, they are more likely to respond honestly. Watch for dodging. Don’t let your counterparts sidestep your questions—write them down in advance, take notes on the answers, and make sure you get the information you’re seeking. Don’t dwell on confidentiality. Studies show that the more you reassure others that you’ll protect their privacy, the more guarded and apt to lie they become. So be nonchalant when discussing sensitive topics. Cultivate leaks. People often reveal information unwittingly, so listen carefully for any slips and try indirect approaches to gaining information.
A classic negotiation framework, still applicable after 50 years | MIT SloanJul 18, 2022
Insights into attitudinal restructuring and intra-organizational negotiations still hold the key to positive outcomes.
book-notes/never-split-the-difference.markdown at master · mgp/book-notesJul 17, 2022
Notes from books and other interesting things that I've read. Table of contents at the end 👇 - mgp/book-notes
MediumJun 28, 2022
6 Hostage Negotiation Techniques That Will Get You What You WantJun 25, 2022
How does hostage negotiation get people to change their minds? The Behavioral Change Stairway Model was developed by the FBI’s hostage negotiation unit, and it...
Negotiate like a pro: how to say ‘No’ to product feature requests… | HackerNoonJun 23, 2022
Imagine you’re a product manager and a co-worker from Marketing comes to you with a feature request. Let’s call her ‘fictitious Annie’. She asks you, “Wouldn’t it be awesome if we built this amazing crypto-blockchain feature into our product?” Well…
How to Ask for a Raise, According to a Hostage NegotiatorJun 23, 2022
It's possible to get a higher salary without taking anyone captive.
What is Negotiation for Product Managers? - The Product AngleJun 13, 2022
In this article, my goal is to show you what is negotiation for Product Managers and share 10 steps to influence without authority.
Negotiate Like A Car Salesman: 5 Tactics To Help You Win Every Time - Fast CompanyJun 12, 2022
Whether you want a raise, different responsibilities, or more resources, knowing how to negotiate is vital. Here are 5 (non-sleazy, promise!) tricks straight from the car lot that will help you get what you want at work.
Learn Street Epistemology To Deal With Difficult People at Work | Code CapsuleMay 28, 2022
Learn the street epistemology conversation technique and how you can apply it at work.
A Gentler, Better Way to Change MindsApr 14, 2022
Stop wielding your values as a weapon and start offering them as a gift.
How to have better arguments onlineFeb 18, 2021
The long read: The troubled times we live in, and the rise of social media, have created an age of endless conflict. Rather than fearing or avoiding disagreement, we need to learn to do it well
How to Talk to People You Disagree WithJan 25, 2021
Bridge the divide with thoughtful conversation techniques, next-level listening, and a dip into the science of changing minds.
To Succeed in a Negotiation, Help Your Counterpart Save FaceNov 2, 2020
Three very different case studies — involving hostages in Afghanistan, a suicidal man in Calgary, and a tug-of-war between Brazilian and French businessmen — point to the importance of face, or reputation, in negotiations. To help you and your negotiating partners succeed, it is important to recognize why face matters, map out all the players involved in a negotiation, ask yourself if the solution being proposed will cause a loss of face for anyone, and work to help avoid that.
Overcoming Bias : How Bees ArgueFeb 19, 2020
The book Honeybee Democracy, published in 2010, has been sitting on my shelf for many years.
How to negotiate anything, according to neuroscientistsAug 30, 2019
Want to ask for a raise, lower your rent or haggle for the best price on a new car? Understanding how your brain works is the first step.
Our 6 Must Reads for Cutting Through Conflict and Tough ConversationsJul 25, 2019
Big ideas, strong-willed characters, impossible deadlines and close quarters — if you wrote out a recipe for conflict, it might bear an uncanny resemblance to the high-stakes, pressure-cooker environment of a startup. We spoke with top engineers, seasoned managers and experts in human behavior to share their experience-tested wisdom on conflict mediation and management in rapidly scaling companies.
A Quick And Easy Survival Guide For Dealing With JerksJul 5, 2019
Because some people never outgrow being bullies.
How to be a World-Class NegotiatorOct 21, 2017
How to be a better negotiator: tips from Christopher Voss, former international FBI hostage negotiator for 24 years
How to ask for more — and get it | Alex CarterSep 24, 2003
How do you get what you want out of a negotiation? United Nations negotiation trainer Alex Carter says the best methods center on recruitment, not rivalry. Whether you're asking for a raise or resolving a family dispute, she offers five simple tips for a successful discussion — starting with one powerful question.
neo4j
Getting Started with Neo4j: Installation and Setup Guide - KDnuggetsAug 12, 2025
Learn how to install and set up Neo4j. This article will help you start using Neo4j to explore connected data.
netlify
The Era Of Platform Primitives Is Finally HereMay 28, 2024
Application frameworks have built whole ecosystems on top of them. Let’s take a closer look at serverless platforms such as Netlify’s [Platform Primitives](https://www.netlify.com/platform/primitives) and explore how they can increase our productivity with a serverless fullstack experience.
Deploy Angular App to Netlify directly from Angular CLIJan 16, 2022
55K subscribers in the angularjs community. A community for the awesome MVC JS framework.
Build configuration overviewDec 13, 2021
Configure build settings for a repository that uses continuous deployment, and understand build image options for your site.
How To Deploy a Full-Stack MERN App with Heroku/NetlifyDec 12, 2021
This post is intended to be a guide for those that want to deploy a full-stack MERN app. It will be v...
Welcome to NetlifyDec 12, 2021
Learn how to build fast and reliable web experiences with our enterprise-ready composable platform.
How To Build A Blog With Gatsby and NetlifyDec 2, 2021
The #1 Blog For Software & Web Developers. Free Tutorials, Tips, Tricks and Learning Resources.
A-Z Guide To Create And Deploy A Website With GatsbyJS GitHub NetlifyJun 10, 2020
Complete guide to build and deploy a blazingly fast and modern website for free (with custom domain).
Netlify: All-in-one platform for automating modern web projects.Dec 22, 2018
Realize the speed, agility and performance of a scalable, composable web architecture with Netlify. Explore the composable web platform now!
network-effects
Can We Fix Social Media? Testing Prosocial Interventions using Generative Social SimulationAug 14, 2025
16 Ways to Measure Network Effects | Andreessen HorowitzNov 25, 2024
Network effects are one of the most important dynamics in software and marketplace businesses. But they’re often spoken of in a binary way: either you have them, or you don’t. In practice, most companies’ network effects are much more complex, falling along a spectrum of different types and strengths. They’re also dynamic and evolve as...
Two Powerful Mental Models: Network Effects and Critical Mass | Andreessen HorowitzJul 18, 2022
This post is all about network effects and critical mass. But it’s also about applying those concepts as important mental models in business, so I will share a short story about a business decision I once made that required me to consider network effects. The Internet bubble had popped by 2002, and a lot...
The Power of Data Network EffectsJul 18, 2022
In the furiously competitive world of tech startups, where good entrepreneurs tend to think of comparable ideas around the same time and "hot spaces" get crowded quickly with well-funded hopefuls, competitive moats matter more than ever. Ideally, as your startup scales, you want to not only be able
The Real Power of Platforms Is Helping People Self-OrganizeJul 5, 2022
Centralized planning is no longer required.
Network Effects Aren’t EnoughJul 5, 2022
In many ways, online marketplaces are the perfect business model. Since they facilitate transactions between independent suppliers and customers rather than take possession of and responsibility for the products or services in question, they have inherently low cost structures and fat gross margins. They are highly defensible once established, owing to network effects. Yet online marketplaces remain extremely difficult to build, say Andrei Hagiu of Harvard Business School and venture capitalist Simon Rothman of Greylock Partners. Most entrepreneurs and investors attribute this to the challenge of quickly attracting a critical mass of buyers and suppliers. But it is wrong to assume that once a marketplace has overcome this hurdle, the sailing will be smooth. Several other important pitfalls can threaten marketplaces: growing too fast too early; failing to foster sufficient trust and safety; resorting to sticks, rather than carrots, to deter user disintermediation; and ignoring the risks of regulation. This article draws on company examples such as eBay, Lending Club, and Airbnb to offer practical advice for avoiding those hazards.
The Network Effects Manual: 16 Different Network Effects (and counting)Jun 12, 2022
The 16 Network Effects & How They Actually Work
Airbnb and the Internet RevolutionJun 4, 2022
Airbnb gets less press than Uber, but in some respects its even more radical: understanding how it works leads one to question many of the premises of modern society from hotels to regulations. It&…
Economies Of Scale As A Service | TechCrunchJun 4, 2022
Credit where it's definitely due: this post was inspired by a Twitter conversation with Box CEO Aaron Levie. Don't look now, but something remarkable is happening. Instagram had twelve employees when it was purchased for $700 million; all of its actual computing power was outsourced to Amazon Web Services. Mighty ARM has only 2300 employees, but there are more than 35 billion ARM-based chips out there. They do no manufacturing; instead they license their designs to companies like Apple, who in turn contract with companies like TSMC for the actual fabrication. Nest Labs and Ubiquiti are both 200-employee hardware companies worth circa $1 billion...who subcontract their actual manufacturing out to China.
The Network Effect Isn’t Good Enough | TechCrunchJun 2, 2022
Editor’s Note: Nir Eyal blogs about the intersection of psychology, technology, and business at NirAndFar.com. Sangeet Paul Choudary analyzes business models for network businesses at Platformed.info. Traditionally defined as a system where each new user on the network increases the value of the service for all others, a network effect often creates a winner-takes-all dynamic, ordaining one dominant company above the rest.
Reverse Network Effects: Why Scale Threatens Today’s Social NetworksJun 2, 2022
To explore the future of online networks, it's important to note how network effects correlate with value and the factors that make these network effects work in reverse.
The power of defaultsJan 14, 2022
The world’s most successful companies all exhibit some form of structural competitive advantage: A defensibility mechanism that protects their margins and profits from competitors over long periods of time. Business strategy books like to refer to these competitive advantages as “economic moats”.
The Dynamics of Network EffectsDec 24, 2018
The most successful companies and products of the internet era have all been predicated on the concept of network effects, where the network becomes more valuable to users as more people use it. This is as true of companies like Amazon and Google as it is for open source projects like Wikipedia and some cryptocurrencies....
networking
Google Brings Quantum-Hardened HTTPS To Chrome In Major Security UpgradeFeb 28, 2026
The changes are aimed at improving the resilience of web security against quantum attacks without burdening performance.
Say Goodbye to the Undersea Cable That Made the Global Internet PossibleFeb 25, 2026
History was unmade last year, as engineers began the massive project of ripping the first-ever transoceanic fiber-optic cable from the ocean floor. Just don’t mention sharks.
Co Packaged Optics (CPO) – Scaling with Light for the Next Wave of InterconnectJan 2, 2026
Co-Packaged Optics (CPO) has long promised to transform datacenter connectivity, but it has taken a long time for the technology to come to market, with tangible deployment-ready products only arriving in 2025.
The Internet is Cool. Thank you, TCPNov 15, 2025
An exploration of TCP, the workhorse of the internet. This deep dive includes detailed examples and a step-by-step walkthrough.
PoE basics and beyond: What every engineer should knowOct 22, 2025
Here is a short primer that walks you through the basics of Power over Ethernet (PoE) technology.
The Wireless Grid: How Power Is Becoming Infrastructure - EE TimesSep 22, 2025
Wireless Power Networks are transforming power from fixed and static into an ambient utility that’s omnipresent.
NNCPApr 26, 2025
What is NNCP? NNCP lets you securely send files, or request remote execution, between systems. It uses asynchronous communication, so the source and destination need never be online simultaneously. NNCP can route requests via intermediate devices – other NNCP nodes, USB sticks, tapes, radios, phones, cloud services, whatever – leading to a network that is highly resilient and flexible. NNCP makes it much easier to communicate with devices that lack Internet connectivity, or have poor Internet.
A Comprehensive Guide to Computer Networking in Linux: Commands, Tools, and Best PracticesDec 20, 2024
Introduction
Linux has become a cornerstone of modern networking, powering everything from personal computers to enterprise servers, firewalls, and network-attached storage (NAS) devices. For beginners venturing into Linux networking, understan...
Why TCP needs 3 handshakesOct 19, 2024
Prerequisite KnowledgeFirst, let's look at the control bits and state machine of TCP, which form the basis for understanding the three-way handshake of TCP.TCP Packet Control BitsThe control bits in t
PAM4: Pulse Amplitude Modulation ExplainedOct 19, 2024
An in-depth look at the high-speed data communication standard's benefits and tradeoffs.
Layer 8: A Semantic Networking Layer for the Age of AIJul 3, 2024
Layer 8 and existing application delivery infrastructure will pave the way for more intelligent, context-aware networks that adapt to AI-driven applications.
A transport protocol’s view of StarlinkMay 23, 2024
How TCP interacts with the characteristics of the Starlink service.
The invisible seafaring industry that keeps the internet afloatApr 17, 2024
How one crew risked radiation, storms, and currents to save Japan from digital isolation.
The quiet plan to make the internet feel fasterMar 6, 2024
L4S could fix a problem that even gigabit connections don’t.
Ethernet For Hackers: The Very Basics | HackadayFeb 20, 2024
Ethernet is ubiquitous, fast, and simple. You only need two diffpairs (four wires) to establish a 100Mbit link, the hardware is everywhere, you can do Ethernet over long distances easily, and tons …
High Performance Browser Networking (O'Reilly)Jul 24, 2023
What every web developer must know about mobile networks, protocols, and APIs provided by browser to deliver the best user experience.
Speed matters: How Ethernet went from 3Mbps to 100Gbps… and beyondJul 3, 2023
One of the biggest computing inventions of all time, courtesy of Xerox PARC.
Beej's Guide to Network ProgrammingMay 27, 2023
Ping Sweep Using nmap on LinuxMar 16, 2023
See what devices are active on your subnetwork using peng sweep with nmap command in Linux.
What Is The AV1 Codec, Which Graphics Cards Support It And Why It MattersSep 24, 2022
There are bold claims of how AV1 will revolutionize streaming video, game streaming and the Internet at large—but what is AV1 and why is it so important?
Common Networking Port Numbers in LinuxSep 8, 2022
Here are the common networking ports you'll encounter in Linux.
IP addresses & routing - Julia EvansAug 31, 2018
How SSH got port number 22Dec 27, 2017
The SSH port is 22. This is the story of how it got that port number. And practical configuration instructions.
neurology
Fed on Reams of Cell Data, AI Maps New Neighborhoods in the Brain | Quanta MagazineFeb 9, 2026
Machine learning is helping neuroscientists organize vast quantities of cells’ genetic data in the latest neurobiological cartography effort.
How the human brain is like a murmuration of starlings | Aeon EssaysJan 2, 2026
The brain is much less like a machine than it is like the murmurations of a flock of starlings or an orchestral symphony
How Your Brain Creates ‘Aha’ Moments and Why They Stick | Quanta MagazineNov 5, 2025
A sudden flash of insight is a product of your brain. Neuroscientists track the neural activity underlying an “aha” and how it might boost memory.
Some People Can’t See Mental Images. The Consequences Are ProfoundNov 5, 2025
Larissa MacFarquhar writes about the recent research into the neurodiverse syndromes known as aphantasia and hyperphantasia, their effects on our experience of trauma and memory, and the sense of identity that has grown up around them.
How a Rare Brain Mutation Spread Across AmericaOct 19, 2025
The Bowlin family knew they had a history of malformations in the brain. But they had no idea how far back it went.
Two billion humans are doing something bizarre right now: sleeping | Aeon EssaysOct 14, 2025
It is our biggest blind spot, a bizarre experience that befalls us every day, and can’t be explained by our need for rest
This Mind-Bending Phenomenon Is Basically Déjà Vu in ReverseSep 14, 2025
Most people have felt déjà vu at least once. Jamais vu is the flip side. It’s rarer, harder to describe, and somehow more off-putting.
The Extraordinary Story of the Teen Who Can Mentally ‘Time Travel’Sep 8, 2025
Most of us forget what we ate for breakfast yesterday, but a teenager known only as TL can relive her life like rewinding a movie reel.
Newfound 'Reality Signal' Helps the Brain Tell Imagination from Real LifeSep 5, 2025
Seeing and imagining use similar brain machinery. New research reveals the brain circuit that identifies what is real, which may help scientists understand conditions such as schizophrenia
The neuroscience of rejection: The surprising way your brain learns from being left outAug 26, 2025
Rejection stings, but scientists suggest it’s more than just emotional pain. New research indicates our brains treat social slights as learning signals, helping us recalibrate who values us and shaping how we navigate relationships and future connections.
The brain’s map of the body is surprisingly stable — even after a limb is lostAug 23, 2025
Study challenges the textbook idea that the brain region that processes body sensations reorganizes itself after limb amputation.
For some people, music doesn’t connect with any of the brain’s reward circuitsAug 22, 2025
Neuroscientists find people who don’t enjoy music, study their brain activity.
Stuttering Has Deep Genetic Roots and May Affect Your Ability to Clap to a BeatAug 15, 2025
A massive genetic study found that stuttering is not just about nurture and may link to processing rhythm itself.
Making Sense of Consciousness Part 4: States of ConsciousnessAug 8, 2025
the red arrow points to the thalamus
In the past 3 entries in my consciousness sequence I was focused on conscious sensory perception — the differen…
The unusual brains of noise-sensitive peopleAug 5, 2025
Though noise sensitivity is often dismissed by doctors, it can have long-term effects on our mental and physical health.
Aphantasia: Thinking That’s Out of SightJul 27, 2025
Aphantasia is a characteristic where you can’t form mental images to “see” things in your head. Learn more about this trait.
Mary Had Schizophrenia—Then Suddenly She Didn’tJul 21, 2025
Some psychiatric patients may actually have treatable autoimmune conditions. But what happens to the newly sane? Rachel Aviv reports.
Is It Cake? How Our Brain Deciphers Materials - NautilusJul 9, 2025
Neuroscientists are discovering how this basic ability, essential to our survival, works
How the Brain Links Smell to Fear—and Why Some Scents Spike Your AnxietyJun 22, 2025
The scent of smoke, chlorine, or even cheap cologne can send your nervous system into overdrive, and now, scientists know why.
Brain Freeze—AsteriskJun 21, 2025
The idea of cryonics — freezing the bodies of the dead in the hopes that they can one day be revived — has existed since the 1960s. We’ve since learned that perfect preservation is much, much harder than any of its founders anticipated.
Where Does Consciousness Come from? Two Neuroscience Theories Go Head-to-HeadApr 30, 2025
Two leading theories of consciousness went head-to-head—and the results may change how neuroscientists study one of the oldest questions about existence
The Case of Anna H.Apr 28, 2025
She called a violin a banjo, a glove a statue, and pliers a banana. Why was she losing her ability to recognize objects?
Choline: The underappreciated nutrient that's vital for our brainsApr 9, 2025
The compound has been linked to improved cognitive performance and reduced anxiety – but are you getting enough of it?
Having epileptic seizures gave me newfound respect for the brainApr 5, 2025
Seizures are often described as both terrifying and enthralling. Mine gave me a wondrous new take on consciousness and agency
Perceptual reality monitoring: Neural mechanisms dissociating imagination from realityMar 29, 2025
There is increasing evidence that imagination relies on similar neural mechanisms as externally triggered perception. This overlap presents a challeng…
What Makes a Memory Real?Mar 28, 2025
Changing the narrative on false memories might be surprisingly simple.
The Mysterious Flow of Fluid in the Brain | Quanta MagazineMar 26, 2025
A popular hypothesis for how the brain clears molecular waste, which may help explain why sleep feels refreshing, is a subject of debate.
How ‘Event Scripts’ Structure Our Personal MemoriesFeb 21, 2025
By screening films in a brain scanner, neuroscientists discovered a rich library of neural scripts — from a trip through an airport to a marriage proposal — that form scaffolds for memories of our experiences.
Living In A Lucid Dream | NOEMAFeb 8, 2025
Recent research on lucid dreams suggests that consciousness exists along a spectrum between sleep and waking, between hallucination and revelation, between dreamworlds and reality.
Aphantasia: Inside The Brains Of People Who Have No Mind’s EyeJan 28, 2025
Did you know some people can’t see images in their minds? It’s a real issue—and it has a name: aphantasia.
MomBoard: E-ink display for a parent with amnesiaNov 15, 2024
Today marks two years since I first set up an e-ink display in my mom’s apartment to help her live on her own with amnesia.
The Roots of Fear: Understanding the AmygdalaNov 5, 2024
Treating anxiety, depression and other disorders may depend on the amygdala, a part of the brain that controls strong emotional reactions, especially fear. But a deep understanding of this structure has been lacking. Now scientists at the University of California, Davis have identified new clusters of cells with differing patterns of gene expression in the amygdala of humans and non-human primates. The work could lead to more targeted treatments for disorders such as anxiety that affect tens of millions of people.
You Don’t Need Words to ThinkOct 19, 2024
Brain studies show that language is not essential for the cognitive processes that underlie thought
How a Rare Disorder Makes People See MonstersAug 3, 2024
A mysterious neurological condition makes faces look grotesque—and sheds new light on the inner workings of the brain.
A protein called Reelin keeps popping up in brains that resist aging and AlJul 30, 2024
Early in life, the protein Reelin helps assemble the brain. Later on, it appears to protect the organ from Alzheimer’s and other threats to memory and thinking.
Electric ‘Ripples’ in the Resting Brain Tag Memories for StorageMay 21, 2024
New experiments reveal how the brain chooses which memories to save and add credence to advice about the importance of rest.
How cuddly robots could change dementia careMay 19, 2024
Researchers are using AI and technological advancements to create companion robots
The Mystery of S., the Man with an Impossible MemoryMay 19, 2024
A famous case study helped spark a myth about a man who could not forget. But the truth is more complicated.
Why We Love MusicMay 11, 2024
Researchers are discovering how music affects the brain, helping us to make sense of its real emotional and social power.
The Most Detailed 3D Reconstruction of Human Brain TissueMay 11, 2024
An anonymous reader quotes a report from Interesting Engineering: Imagine exploring the intricate world within a single cubic millimeter of human brain tissue. It might seem insignificant, but within that tiny space lies a universe of complexity -- 57,000 individual cells, 230 millimeters of blood v...
Visual perception improves in the blink of an eyeMay 10, 2024
Blinking—long considered a problem the brain must overcome to produce seamless vision—may actually be more of a feature than a bug, new research suggests.
I Know the Secret to the Quiet Mind. I Wish I’d Never Learned It.Apr 30, 2024
Of all the injuries we suffered, mine is the worst. My brain injury has shaken my confidence in my own personality, my own existence.
Blinking is more than meets the eyeApr 15, 2024
Eye blinks aren't just a mechanism to keep our eyes moist. Research finds that blinking plays a key role in processing visual information.
My Synesthesia Transforms Speech into Text I ‘See’ in My HeadApr 9, 2024
From the time I learned to read, I have experienced a form of mental closed-captioning called ticker-tape synesthesia
Memories are made by breaking DNA — and fixing itApr 6, 2024
Nature - Nerve cells form long-term memories with the help of an inflammatory response, study in mice finds.
What is it like to remember all the faces you’ve ever seen?Mar 31, 2024
They’ve been studied by researchers and recruited by police forces, but what’s it actually like to be a super-recogniser?
Why Some Songs Makes Everyone Want to DanceMar 27, 2024
A syncopated rhythm may prompt our brain to find the beat
Virtual WalkingMar 1, 2024
When I use my virtual reality gear I do practical zero virtual walking - meaning that I don't have my avatar walk while I am not walking. I general play standing up which means I can move around the space in my office mapped by my VR software - so I am physically walking to
How the brain responds to reward is linked to socioeconomic backgroundFeb 29, 2024
The brain’s sensitivity to rewarding experiences — a critical factor in motivation and attention — can be shaped by socioeconomic conditions, according to an MIT study.
How Being Bilingual Helps Your Brain (Even If You Learn a New Language in AFeb 29, 2024
There was a time in America, not so very long ago, when conventional wisdom discouraged immigrants from speaking the language of the old country at home. In fact, 'it used to be thought that being bilingual was a bad thing, that it would confuse or hold people back, especially children.
Inside a Brain Circuit, the Will to Press OnFeb 15, 2024
A rare brain stimulation study suggests that a brain circuit known as the “salience network” contributes to differences in our ability to overcome challenges and cope with stress.
How Odors Influence Brain’s Decision Making MechanismFeb 7, 2024
Researchers have uncovered a novel function of the hippocampus in decision making, showing that specific brain cells, known as 'time cells,' are stimulated by odors to facilitate rapid 'go, no-go' decisions.
Shari Liu: How babies think about danger | TED TalkFeb 6, 2024
Are babies oblivious to danger? It's not that simple, says cognitive scientist Shari Liu. Sharing surprising insights (and plenty of baby videos) from studies of early human development, Liu highlights the unexpected ways babies perceive and respond to risky situations — and what these findings could unravel about the inner workings of our minds.
Text vs. Images: Which Content Format is Effective?Feb 5, 2024
When we talk about using different ways to share information, it's like picking the one that fits what you need! Words, pictures, and mixes of both have
Why I See Static EverywhereJan 27, 2024
What we know about a mysterious condition called visual snow.
Noisy brain may underlie some of autism’s sensory featuresJan 20, 2024
Random fluctuations in neuronal activity are more variable in a fragile X mouse model than in wildtype mice.
The Happiest Man in the WorldJan 14, 2024
Harry’s psychotic delusions bring him cheer. His psychiatrist embraces them.
My Brain Doesn’t Picture ThingsOct 7, 2023
I can’t imagine sights, smells, or sounds. What’s wrong with me?
Google Researchers Launch an Ambitious Project to Map Mouse Brain: Paving tOct 3, 2023
In a bid to unravel the complexities of the human brain and shed light on the origins of various mental illnesses and neurological disorders, Google Research, in collaboration with a consortium of esteemed institutions, has embarked on an ambitious five-year, $33 million project. The venture aims to pioneer advancements in the field of connectomics, which seeks to chart the intricate network of cellular connections within the brain. This groundbreaking initiative, supported by the Brain Research Through Advancing Innovative Neurotechnologies (BRAIN) Initiative at the National Institutes of Health (NIH), is led by researchers from Harvard University, with contributions from the Allen
The Faulty Weathermen of the MindSep 25, 2023
Could a theory from the science of perception help crack the mysteries of psychosis?
The Usefulness of a Memory Guides Where the Brain Saves It | Quanta MagazineSep 4, 2023
New research finds that the memories useful for future generalizations are held in the brain separately from those recording unusual events.
Aphantasia can be a gift to philosophers and critics like meSep 4, 2023
Aphantasia veils the past and the future from the mind’s eye. That can be a gift to philosophers like Derek Parfit and me
The mystery of what causes ALSAug 27, 2023
Scientists are racing to find out what causes this progressive disease. And they're starting to make some headway.
Book Review: A Neurosurgeon’s Inside Look at the BrainAug 24, 2023
Theodore H. Schwartz's “Gray Matters” explores the evolution of brain surgery, along with its many risks and rewards.
A New Doorway to the BrainAug 16, 2023
Neuroscientists can now explore the “wild west” in our heads in incredible detail—a boon to medicine and understanding what makes us tick.
What is the secret to an evocative smell description?Aug 7, 2023
Many languages have very few odour-related words, so conveying what a scent is like requires knowing your audience
How Psychedelics Can Heal a Broken MindJul 13, 2023
Mind-altering drugs could open the brain to a state of childlike learning, aiding recovery from psychological trauma, brain injury, or paralysis.
Having an out-of-body experience? Blame this sausage-shaped piece of your bJul 13, 2023
An obscure bit of brain tissue appears critical to both out-of-body experiences and our sense of being anchored to a physical self.
How Having Synesthesia Helps This Perfumer Create Unique ScentsJun 1, 2023
When perfumer Frédéric Malle experiences a fragrance, he also perceives it as an array of colors. This is what it's like to see — and smell — the world as someone who has synesthesia.
Their Eyes See Color. Their Brains Can’t Make Sense of It.May 30, 2023
A family in the Netherlands has a rare and perplexing brain condition that helps explain how we recognize color.
Why we sometimes sense invisible othersMay 29, 2023
In times of high stress or effort, people sometimes feel the presence of others – an effect which isn't an hallucination. But what exactly is it?
Patient M: The man who started seeing the world backwards after being shot in the headMay 14, 2023
A study returns to the case of a soldier injured during the Spanish Civil War who inspired doctor Justo Gonzalo’s theory of the human brain
Grounding Large Language Models in a Cognitive Foundation: How to Build SomApr 26, 2023
Many intelligent robots have come and gone, failing to become a commercial success. We’ve lost Aibo, Romo, Jibo, Baxter—even Alexa is reducing staff. Perhaps they failed to reach their potential because you can’t have a meaningful conversation with them. We are now at an inflection point: AI
My left and right eyes see slightly different colors. Is that normal?Mar 31, 2023
Vox is a general interest news site for the 21st century. Its mission: to help everyone understand our complicated world, so that we can all help shape it. In text, video and audio, our reporters explain politics, policy, world affairs, technology, culture, science, the climate crisis, money, health and everything else that matters. Our goal is to ensure that everyone, regardless of income or status, can access accurate information that empowers them.
Imagination Is a Spectrum – and 1% of People Can’t Mentally Visualise Things at AllMar 22, 2023
Some people have subtitles synaesthesia’ which means they see all speech appear as writing in their mind. And they only realised not everyone thinks this way when they saw a research study ad.
Meet the 'glass-half-full girl' whose brain rewired after losing a hemispheMar 22, 2023
Mora Leeb was 9 months old when surgeons removed half her brain. Now 15, she plays soccer and tells jokes. Scientists say Mora is an extreme example of a process known as brain plasticity.
A Cognitive Revolution in Animal ResearchMar 20, 2023
Animal ‘personalities’ are forcing scientists to rethink basic research.
The people who feel they are shrinkingMar 14, 2023
A surprising number of people experience symptoms of this curious condition, which is named after Lewis Carroll's heroine, who changed size after eating and drinking.
How Loneliness Reshapes the Brain | Quanta MagazineMar 2, 2023
Feelings of loneliness prompt changes in the brain that further isolate people from social contact.
Mayfield Brain & SpineFeb 25, 2023
Explore the intricate anatomy of the human brain with detailed illustrations and comprehensive references.
The Art of the Shadow: How Painters Have Gotten It Wrong for CenturiesFeb 25, 2023
The goal is not to expose the “slipups” of the masters but to understand the human brain.
How Does Human Echolocation Work? | Innovation| Smithsonian MagazineFeb 14, 2023
Blind since he was very young, Daniel Kish is the world's foremost proponent of using vocal clicks to navigate
What Causes Déjà Vu?Feb 9, 2023
Does this all feel a little familiar? Called déjà vu, that sensation may be your brain correcting its own errors
Pattern theory: the mathematics of perceptionJan 24, 2023
Is there a mathematical theory underlying intelligence? Control theory addresses the output side, motor control, but the work of the last 30 years has made clear that perception is a matter of...
Why some people can't tell left from rightJan 23, 2023
It can seem like an almost childish mistake, but a surprising number of adults confuse left from right and scientists are only just starting to understand why.
Where does your sense of self come from? A scientific look | Anil AnanthaswJan 22, 2023
Our memories and bodies give us clues about who we are, but what happens when this guidance shifts? In this mind-bending talk, science writer Anil Ananthaswamy shares how the experiences of "altered selves" -- resulting from schizophrenia, Alzheimer's, foreign limb syndrome or other conditions -- shed light on the constructed nature of identity. He breaks down where our sense of self comes from and invites us to challenge our assumptions about who we are, with the aim of building a better you and a better world.
To Build Truly Intelligent Machines, Teach Them Cause and Effect | Quanta MJan 5, 2023
Judea Pearl, a pioneering figure in artificial intelligence, argues that AI has been stuck in a decades-long rut. His prescription for progress? Teach machines to understand the question why.
The Science of Mind ReadingJan 2, 2023
Researchers are pursuing age-old questions about the nature of thoughts—and learning how to read them.
How the Brain Distinguishes Memories From PerceptionsDec 15, 2022
The neural representations of a perceived image and the memory of it are almost the same. New work shows how and why they are different.
What it's like to be a food writer when you can taste everything you seeDec 15, 2022
People with synesthesia experience stimulation in multiple senses: hearing color, feeling sounds—or tasting everything they see. For a food writer, that can lead to some fascinating revelations.
NeurolinguisticsDec 7, 2022
An accessible introduction to the study of language in the brain, covering language processing, language acquisition, literacy, and language disorders.Neurol...
Why Your Brain Isn't Into the Future - NautilusNov 5, 2022
What you can’t imagine clearly, you value less.
It Takes a Lot of Elephant Brains to Solve This MysteryOct 27, 2022
By counting the facial neurons in African savanna and Asian elephants, researchers made a discovery about the animals’ trunks.
CompCogNeuro/book: Computational Cognitive Neuroscience textbookOct 4, 2022
Computational Cognitive Neuroscience textbook.
Huge new dataset pushes limits of neuroscienceOct 4, 2022
The Allen Institute’s release includes recordings from a whopping 300,000 mouse neurons. Now the challenge is figuring out what to do with all that data.
For neuroscience, magic opens a doorway to multiple realities | Psyche IdeasSep 22, 2022
The transition in magic from possible to impossible can answer some of the key questions in philosophy and neuroscience
When a face means nothing: What prosopagnosia looks likeSep 22, 2022
It can be difficult for people with prosopagnosia to get a diagnosis.
Scientists Have Long Dreamed of a Memory Prosthesis. The First Human Trials Look PromisingSep 22, 2022
The central idea is simple: replicate the hippocampus’ signals with a digital replacement. It’s no easy task.
The Realities And Myths Of Contrast And Color — Smashing MagazineSep 8, 2022
In this article, Andrew Somers, a 35-year veteran of the Hollywood film and television industry, shares his experience about the hard-fought battles and lessons learned designing for illuminated presentations.
Newfound Brain Switch Labels Experiences as Good or BadSep 5, 2022
A molecule tells the brain whether to put a positive or negative spin on events. Mental disorders may result when the up/down labeling goes awry
The Curious Hole in My Head (Published 2022)Sep 5, 2022
Born without my left temporal lobe, a brain region thought to be critical for language, I’ve been a research subject for much of my life.
The Neuroscience of Drumming: Researchers Discover the Secrets of DrummingAug 31, 2022
An old musician’s joke goes “there are three kinds of drummers in the world—those who can count and those who can’t.” But perhaps there is an even more global divide. Perhaps there are three kinds of people in the world—those who can drum and those who can’t.
The Neuroscience Behind Bad DecisionsAug 22, 2022
Irrationality may be a consequence of the brain’s ravenous energy needs.
How Your Brain Fills in the Blanks with ExperienceAug 17, 2022
Our neurocircuitry is profoundly shaped by a lifetime of learning.
Animal Magic: Why Intelligence Isn’t Just for HumansAug 13, 2022
Meet the footballing bees, optimistic pigs and alien-like octopuses that are shaking up how we think about minds.
Human Tetrachromacy is Real. Here's What We KnowAug 9, 2022
After decades of exhaustive study, scientists have determined that human tetrachromacy is real. It comes in two forms -- and one can actually be an acquired trait.
How the Brain Links Gestures, Perception and MeaningAug 1, 2022
Neuroscience has found that gestures are not merely important as tools of expression but as guides of cognition and perception.
Under Anesthesia, Where Do Our Minds Go?Jul 27, 2022
To better understand our brains and design safer anesthesia, scientists are turning to EEG.
How the Brain Allows the Deaf to Experience MusicJul 26, 2022
Our sensory systems for hearing and touch overlap to stir a wealth of emotions.
The mysterious inner lives of octopusesJul 25, 2022
Octopuses are problem-solvers, mischief-makers and notorious escape artists. They also appear to have a rich inner life – so what is it like to be an octopus?
Why Do We Even Listen to New Music?Jul 18, 2022
Our brains reward us for seeking out what we already know. So why should we reach to listen to something we don’t?
Is Music Universal?Jul 5, 2022
From a neurological and evolutionary perspective, music is fascinating. There seems to be a deeply rooted biological appreciation for tonality, rhythm, and melody. Not only can people find certain sequences of sounds to be pleasurable, they can powerfully evoke emotions. Music can be happy, sad, peaceful, foreboding, energetic or comical. Why is this? Music is
What the Anthropology of Smell Reveals About HumanityJul 5, 2022
Millions of people have lost their sense of smell to COVID-19. Anthropologists are investigating the significance of this underrated sense.
How ‘The Dress’ Sparked a Neuroscience BreakthroughJul 2, 2022
The color debate that broke the internet raised new questions about the relationship between perception and consciousness.
The human sensory experience is limited. Journey into the world that animals knowJun 25, 2022
In his new book, An Immense World, science writer Ed Yong explores the diversity of perception in the animal world — including echolocation, magnetic fields and ultraviolet vision.
Animal magic: why intelligence isn’t just for humansJun 23, 2022
Meet the footballing bees, optimistic pigs and alien-like octopuses that are shaking up how we think about minds
How Animals Perceive the WorldJun 21, 2022
Every creature lives within its own sensory bubble, but only humans have the capacity to appreciate the experiences of other species. What we’ve learned is astounding.
They Were Cigarette Smokers. Then a Stroke Vanquished Their Addiction.Jun 14, 2022
Patients whose brain injury coincidentally relieved their nicotine cravings may help unravel the neural underpinnings of addiction, a new study suggests.
The Strange and Secret Ways That Animals Perceive the WorldJun 11, 2022
Nonhuman creatures have senses that we’re just beginning to fathom. What would they tell us if we could only understand them?
This Optical Illusion Has a Revelation About Your Brain and Eyes (Published 2022)Jun 11, 2022
Your pupils may be dilating when you see images like this one as your brain tries to anticipate the near future.
The Neuroscience Behind Bad Decisions | Quanta MagazineJun 7, 2022
Irrationality may be a consequence of the brain’s ravenous energy needs.
How the Brain 'Constructs' the Outside WorldJun 7, 2022
Neural activity probes your physical surroundings to select just the information needed to survive and flourish
The Mind-Expanding Ideas of Andy ClarkMay 30, 2022
The tools we use to help us think—from language to smartphones—may be part of thought itself.
3D-printed acoustic holograms against Alzheimer's or Parkinson'sMay 18, 2022
The holograms designed by the team of researchers from UPV and CSIC allow the opening of the blood brain barrier selectively, efficiently and in a highly focused manner, facilitating the administration of therapeutic drugs to treat pathologies that affect the central nervous system.
Why We Remember Music and Forget Everything ElseApr 16, 2022
Psychologists say it's no surprise that we have such a strong memory for music and can easily recall lyrics and melodies, even if we haven’t heard them in years.
How Sugar Affects the Brain, According to a Neuroscience ExpertMar 6, 2022
Not surprisingly, you need sugar to function—but cravings are actually a result of too much.
Everything We See Is a Mash-up of the Brain’s Last 15 Seconds of Visual InformationFeb 20, 2022
The brain is basically a time machine that ensures what we see is stable and continuous.
Weber’s Law - NeuroLogica BlogJan 29, 2022
I confess I have never heard (or at least don't remember ever hearing) about Weber's Law (pronouned vayber) until reading about it with this news item. It is the Law of Just Noticeable Differences. It deals with the minimum difference in a stimulus necessary to notice. While clearly established, and there are many hypotheses to
Design Psychology and the Neuroscience of Awesome UX | Toptal®Jan 17, 2022
Human cognition is complex, and many factors play into instant impressions. Design psychology is coming to the forefront as more and more companies are using neuroscience to design better user experiences. Great user experience design isn’t magic—it’s science.
Neuroscience: Music, silence, and predictionDec 20, 2021
For the first time, the authors of a recent study isolated the electrical neural signals of prediction by studying moments of silence in music.
New Brain Maps Can Predict BehaviorsDec 15, 2021
Rapid advances in large-scale connectomics are beginning to spotlight the importance of individual variations in the neural circuitry. They also highlight the limitations of “wiring diagrams” alone.
Brain scans look stunning, but what do they actually mean? | Psyche IdeasNov 29, 2021
Functional brain scans are a valuable tool but their meaning must be interpreted with caution and scepticism
Brain Damage Saved His Music - Issue 20: Creativity - NautilusNov 8, 2021
After a chunk of his brain was removed, guitarist Pat Martino got his groove back.
How Bionic Gloves Gave a Maestro Pianist His Hands BackNov 3, 2021
A lifetime of brutal injuries and misfortune robbed the world-renowned pianist João Carlos Martins of the ability to play his instrument. And then along came an eccentric designer and his bionic gloves.
The last great mystery of the mind: meet the people who have unusual – or non-existent – inner voicesOct 28, 2021
Does your internal monologue play out on a television, in an attic, as a bickering Italian couple – or is it entirely, blissfully silent?
Researchers analyzed 700-plus songs known to give people chills. Here’s theOct 24, 2021
Researchers studying chills-inducing music inadvertently created an epic, multi-genre list of songs that ought to give you goosebumps. We made a Spotify playlist from it.
Books – Anil SethOct 18, 2021
Our brains exist in a state of “controlled hallucination”Oct 10, 2021
Three new books lay bare the weirdness of how our brains process the world around us.
The miracle molecule that could treat brain injuries and boost your fading memorySep 4, 2021
Discovered more than a decade ago, a remarkable compound shows promise in treating everything from Alzheimer’s to brain injuries—and it just might improve your cognitive abilities.
“I understand what joy is now”: An MDMA trial participant tells his storyAug 26, 2021
One patient in a pioneering trial describes his “life-changing” experience with the psychoactive drug.
Hit songs rely on increasing “harmonic surprise” to hook listeners, study fAug 12, 2021
Childish Gambino’s “This Is America” ranked highest in challenging musical expectations.
Focusing on Blue - 10 ProjectsJul 18, 2021
Why it took us thousands of years to see the colour violet | Psyche IdeasJun 25, 2021
The colour violet was largely missing from art before the Impressionists, and is seen differently by different cultures. Why?
Tomorrow Edition - The Agony and the Ecstasy of Deep Brain Stimulation SurgJun 22, 2021
What deep brain stimulation surgery feels like.
Does the Rorschach Inkblot Test Really Work?Jun 20, 2021
Learn about the Rorschach inkblot test, a type of projective assessment in which subjects look at 10 ambiguous inkblot images and say what they see in the image.
A Lucid, Literary Illustration of the Complex, Beautiful Work of MemoryJun 8, 2021
In “A Sense of Self,” the psychiatrist Veronica O’Keane flashes narrative skill in exploring the science and mystery of memory.
It’s All in Your Head review – enduring mystery of psychosomatic illness |Jun 5, 2021
Suzanne O’Sullivan’s excellent book reveals that medicine remains as much an art as a science
Neuroscience may have a part in why you're playing Taylor Swift's songs onApr 10, 2021
Taylor Swift literally has music down to a science
The Man Who Mistook His Wife for a Hat - WikipediaApr 5, 2021
The Man Who Mistook His Wife for a Hat and Other Clinical Tales is a 1985 book by neurologist Oliver Sacks describing the case histories of some of his patients. Sacks chose the title of the book from the case study of one of his patients who has visual agnosia, a neurological condition that leaves him unable to recognize faces and objects. The book became the basis of an opera of the same name by Michael Nyman, which premiered in 1986.
Juxting – A Fountain of IdeasMar 16, 2021
This is an article about juxting — coming up with ideas by randomly juxtaposing two things and seeing the ways they could relate to each…
How does the brain interpret computer languages?Mar 15, 2021
Neuroscientists detect a distinct brain network that grows stronger with practice.
Scientists Analyzed 24,000 Chess Matches to Understand CognitionMar 14, 2021
Chess could perhaps be the ultimate window through which we might see how our mental powers shift during our lives.
How the Brain Responds to BeautyFeb 5, 2021
Scientists search for the neural basis of an enigmatic experience
The Ultimate Experience: A Guide to the Principles of Sensory DesignJan 27, 2021
Digital design routinely ignores neurological factors beyond sight. Sensory design principles emphasize the interconnection of human perception and prompt designers to explore non-visual solutions. #design #ux #marketing #art #science #innovation
There’s an “Inverse Piano” in Your HeadJan 25, 2021
A Kavli Prize–winning scientist details the magic of transforming vibrations into sound in the inner ear.
A concept in psychology is helping AI to better navigate our world | MIT TeJan 24, 2021
The concept: When we look at a chair, regardless of its shape and color, we know that we can sit on it. When a fish is in water, regardless of its location, it knows that it can swim. This is known as the theory of affordance, a term coined by psychologist James J. Gibson. It…
Your Brain Chooses What to Let You SeeNov 2, 2020
Beneath our awareness, the brain lets certain kinds of stimuli automatically capture our attention by lowering the priority of the rest.
Blindsight: A Strange Neurological Condition Could Help Explain ConsciousnessOct 20, 2020
Some blind people seem to be able to see without being conscious of it.
From fluffy to valuable: How the brain recognises objectsOct 19, 2020
To recognise a chair or a dog, our brain separates objects into their individual properties and then puts them back together. Until recently, it has remained unclear what these properties are. Scientists at the Max Planck Institute for Human Cognitive and Brain Sciences in Leipzig have now identified them - from "fluffy” to “valuable” - and found that all it takes is 49 properties to recognise almost any object.
The Brain Maps Out Ideas and Memories Like SpacesOct 16, 2020
Emerging evidence suggests that the brain encodes abstract knowledge in the same way that it represents positions in space, which hints at a more universal theory of cognition.
Prosopagnosia: The artist in search of her faceAug 18, 2020
Carlotta is a prolific self portrait artist from Munich with prosopagnosia - face blindness.
Why Red Means Red in Almost Every LanguageAug 10, 2020
The confounding consistency of color categories.
If language began in the hands, why did it ever leave? | Aeon EssaysJul 25, 2020
If language began with gestures around a campfire and secret signals on hunts, why did speech come to dominate communication?
Why line-dried laundry smells so goodJul 18, 2020
Why does laundry that dries outdoors in the sunshine smell so nice? Researchers conducted an experiment to find out.
Imagining vs Seeing | NeuroLogica BlogJul 15, 2020
Try to conjure up a mental image of a bicycle (without referencing a picture). Better yet, try to draw a bicycle. Most people (75% or more) cannot draw an accurate bicycle from memory. There are a lot of layers here. First, people tend to grossly overestimate their specific or technical knowledge, especially of everyday objects
The Irony EffectFeb 19, 2020
How the scientist who founded the science of mistakes ended up mistaken.
Unraveling the Enigma of ReasonFeb 19, 2020
What is the relationship between how we reason and the reasons we come up with?
This is How Tiny Changes in the Words You Hear Impact Your ThinkingNov 6, 2019
In a fascinating look at language, a professor lays out how political parties can sway supporters with tiny tweaks in word choice.
Why Red Means Red in Almost Every Language - Issue 76: LanguageOct 4, 2019
Nautilus is a different kind of science magazine. Our stories take you into the depths of science and spotlight its ripples in our lives and cultures.
My life with face blindness: I spent decades unable to recognize people. Then I learned why.Aug 29, 2019
A journey toward seeing myself more clearly.
How the Brain Links Gestures, Perception and Meaning | Quanta MagazineMar 27, 2019
Neuroscience has found that gestures are not merely important as tools of expression but as guides of cognition and perception.
The Brain Maps Out Ideas and Memories Like Spaces | Quanta MagazineJan 20, 2019
Emerging evidence suggests that the brain encodes abstract knowledge in the same way that it represents positions in space, which hints at a more universal theory of cognition.
Truly, neurally, deeplyOct 28, 2018
Scientists are developing AI systems called deep neural nets that can read medical images and detect disease — with astonishing efficiency
A long-overlooked brain region may be key to complex thoughtOct 6, 2018
The thalamus has traditionally been viewed just as the brain’s sensory relay station. But it may also play an important role in higher-level cognition, MIT’s Michael Halassa explains in a Q&A.
Surgeons Identify—And Save—A Patient’s Chess-Playing Brain AreaSep 24, 2018
Neuroscientists at the University of Barcelona set about on a search for brain areas involved in chess-related tasks so that surgeons could avoid them when removing a tumor
Can Crows Make Mental Pictures of Tools? (Published 2018)Jul 2, 2018
New Caledonian crows were trained to seek rewards by tearing paper of a certain size, demonstrating what researchers say is quite advanced toolmaking.
What to Do When Your Brain Insists You’re Always on a Boat - Facts So RomanJan 30, 2018
Zvonimir Orec via Shutterstock Nautilus Members enjoy an ad-free experience. Log in or Join now . Last July, Chris Perry went on an Alaskan cruise with her family to celebrate her parents’ 50th wedding anniversary. When she boarded the massive Norwegian Sun cruise ship, she felt “a little woozy and weird” from the boat’s […]
How many senses do humans have?Dec 1, 2017
The obvious answer is five: vision, hearing, touch, smell, and taste. But the reality may not be so simple.
neuromorphic
Unleashing the Potential of Alternative Deep Learning HardwareJul 12, 2024
To address the limitations of GPUs for AI, engineers are exploring general-purpose hardware, dedicated DL hardware and neuromorphic hardware.
Beyond GPUs: Innatera and the quiet uprising in AI hardwareJul 7, 2024
The brain-inspired architecture gives neuromorphic systems distinct advantages, particularly for edge computing applications in consumer devices and industrial IoT.
Neuromorphic Computing: Algorithms, Use Cases and ApplicationsApr 30, 2024
Neuromorphic computing represents a transformative approach to artificial intelligence, seeking to emulate the human brain's neural structures and processing methods. This computing paradigm offers significant advancements in efficiency and performance for specific tasks, including those requiring real-time processing and low power consumption. Here, we explore the algorithms that drive neuromorphic computing, its potential use cases, and its diverse applications. Algorithms in Neuromorphic Computing Neuromorphic computing leverages unique algorithms to mimic neurobiological architectures inherent to the nervous system. Key algorithms include: Spiking Neural Networks (SNNs): Unlike traditional neural networks, which process continuous data, SNNs manage binary events or 'spikes.' They are
newsletters
Nearly a third of new subscribers to some news publications cancel in the first 24 hoursJul 13, 2022
The same-day cancellation rate likely includes subscribers who only wanted access to one article, or who felt the full paid experience was lacking after a quick look around. New data suggests some just really hate the idea of auto-renewal.
The future of news is conversation in small groups with trusted voices | TechCrunchApr 21, 2019
I feel like I get my news like I pick sushi plates off a passing boat. I sit down, the news streams by and I pick the articles I like. But I’ve been stuck at the sushi boat bar of news for too long.
nextjs
New Project – VercelApr 3, 2021
Create a Next.js App | Learn Next.jsApr 3, 2021
Production grade React applications that scale. The world’s leading companies use Next.js by Vercel to build pre-rendered applications, static websites, and more.
How To Build A Blog With Next And MDXNov 3, 2020
In this guide, Ibrahima Ndaw will be looking at Next.js, a popular React framework that offers a great developer experience and ships with all of the features you need for production. We will also build a blog, step by step, using Next.js and MDX. Finally, we’ll cover why you would opt for Next.js instead of “vanilla” React and alternatives such as Gatsby.
Next.js 8Aug 30, 2019
Next.js 8 introduces Serverless Mode, smaller bundles, performance improvements, and more.
nft
Dead NFTs: The Evolving Landscape of the NFT MarketOct 1, 2023
Are NFTs (Non Fungible Tokens) dead? Maybe so. We analysed over 60.000 NFTs to find out which ones are still valuable.
Andreessen Horowitz Wants To Fix NFT Copyright With Its 'Can't Be Evil' LicSep 13, 2022
Venture capital firm Andreessen Horowitz (a16z) is trying to clean up the messy state of crypto copyright. From a report: Last week, the company introduced what it dubs "Can't Be Evil" licenses: a series of agreements that let creators grant non-fungible token owners partial or near-complete rights ...
The NFT Starter Pack: Tools for Anyone to Analyze NFTsMar 19, 2022
Code to help you pull NFT data directly from the source, transform it in a way that’s more familiar, and analyze important NFT data.
$3.6 billion bitcoin seizure shows how hard it is to launder cryptocurrencyFeb 12, 2022
A couple allegedly used a “laundry list” of technical measures to cover their tracks. They didn’t work.
OpenSea, the largest NFT marketplaceJan 23, 2022
OpenSea is the world's first and largest web3 marketplace for NFTs and crypto collectibles. Browse, create, buy, sell, and auction NFTs using OpenSea today.
Moxie Marlinspike Blog My first impressions of web3Jan 9, 2022
Despite considering myself a cryptographer, I have not found myself particularly drawn to “crypto.” I don’t think I’ve ever actually said the words “get off my lawn,” but I’m much more likely to click on Pepperidge Farm Remembers flavored memes about how “crypto” used to mean “cryptography” than ...
nft's are confusing and dumb. from an entrepreneur's perspective, what problem does nft's solve?Dec 20, 2021
372 votes, 679 comments. nft's are confusing and dumb imo. selling digital art basically... like you own a png image of a frog part of…
What are NFTs? Mapping the NFT EcosystemDec 5, 2021
Deconstructing that $69million NFTNov 29, 2021
"NFTs" have hit the mainstream news with the sale of an NFT based digital artwork for $69 million. I thought I'd write up an explainer. Spec...
nginx
Understanding Nginx: From Simple Concepts to Technical Details and DeployinMay 4, 2024
Imagine you have a little shop where you sell lemonade, and you have a big sign that says "Lemonade...
Should I use Nginx or Apache Server?Apr 7, 2024
Both Nginx and Apache are popular webservers that are used to host applications and websites on the...
How To Set Up Nginx Server Blocks on Ubuntu 22.04Mar 5, 2024
This article describes how to set up Nginx server blocks on Ubuntu 22.04. You'll learn how to set up multiple websites on a single server and customize each site's settings to suit your needs.
ngrok
Prompt caching: 10x cheaper LLM tokens, but how? | ngrok blogDec 19, 2025
A far more detailed explanation of prompt caching than anyone asked for.
Static domains for all ngrok usersApr 9, 2024
All ngrok users can now claim one static domain for free. You no longer need to worry about agent restarts causing broken links, nor updating application URLs.
ngrok - Online in One LineAug 27, 2022
ngrok is the fastest way to put anything on the internet with a single command.
ngrok - secure introspectable tunnels to localhostJun 7, 2021
ngrok is a secure ingress platform that enables developers to add global server load balancing, reverse proxy, firewall, API gateway and Kubernetes Ingress to applications and APIs.
nim
Hacker NewsJun 23, 2022
Nim Writes C Code — And More — For YouDec 25, 2020
When we first heard Nim, we thought about the game. In this case, though, nim is a programming language. Sure, we need another programming language, right? But Nim is a bit different. It is not onl…
Version 0.19.0 releasedAug 31, 2019
The Nim team is happy to announce that the latest release of Nim, version 0.19.0, is now available. Nim is a systems programming language that focuses on performance, portability and expressiveness.
nlp
5 Cutting-Edge Natural Language Processing Trends Shaping 2026Sep 24, 2025
In this article, we discuss five cutting-edge NLP trends that will shape 2026.
explosion/spaCy: 💫 Industrial-strength Natural Language Processing (NLP) in PythonAug 27, 2025
💫 Industrial-strength Natural Language Processing (NLP) in Python - explosion/spaCy
Where Does Meaning Live in a Sentence? Math Might Tell Us. | Quanta MagazineApr 9, 2025
The mathematician Tai-Danae Bradley is using category theory to try to understand both human and AI-generated language.
What is METEOR score? - DataconomyApr 2, 2025
METEOR Score is a metric used to evaluate the quality of machine translation based on precision, recall, word alignment, and linguistic flexibility.
What is stemming? - DataconomyMar 13, 2025
Stemming is the linguistic process of reducing words to their base form, ignoring prefixes and suffixes, to enhance clarity and information retrieval.
A Step by Step Guide to Build a Trend Finder Tool with Python: Web Scraping, NLP (Sentiment Analysis & Topic Modeling), and Word Cloud VisualizationMar 9, 2025
A Step by Step Guide to Build a Trend Finder Tool with Python: Web Scraping, NLP (Sentiment Analysis & Topic Modeling), and Word Cloud Visualization
Text Preprocessing and Feature Engineering with spaCyFeb 12, 2025
In this article, we’ll focus on how to prepare text data for machine learning and statistical modeling using spaCy.
Implementing A Byte Pair Encoding (BPE) Tokenizer From ScratchJan 18, 2025
This is a standalone notebook implementing the popular byte pair encoding (BPE) tokenization algorithm, which is used in models like GPT-2 to GPT-4, Llama 3,...
The 2025 AI Engineering Reading ListJan 14, 2025
We picked 50 paper/models/blogs across 10 fields in AI Eng: LLMs, Benchmarks, Prompting, RAG, Agents, CodeGen, Vision, Voice, Diffusion, Finetuning. If you're starting from scratch, start here.
Hugging Face Releases Sentence Transformers v3.3.0: A Major Leap for NLP EfficiencyNov 11, 2024
Natural Language Processing (NLP) has rapidly evolved in the last few years, with transformers emerging as a game-changing innovation. Yet, there are still notable challenges when using NLP tools to develop applications for tasks like semantic search, question answering, or document embedding. One key issue has been the need for models that not only perform well but also work efficiently on a range of devices, especially those with limited computational resources, such as CPUs. Models tend to require substantial processing power to yield high accuracy, and this trade-off often leaves developers choosing between performance and practicality. Additionally, deploying large models
Python libs for sentiment analysisNov 11, 2024
Sentiment analysis, i.e., determining the emotional tone of a text, has become a crucial tool for researchers, developers, and businesses to comprehend social media trends, consumer feedback, and other topics. With its robust library ecosystem, Python provides a vast choice of tools to improve and streamline sentiment analysis processes. Through the use of these libraries, data scientists can easily create precise sentiment models using pre-trained models and sophisticated machine learning frameworks. In this post, the top 12 Python sentiment analysis libraries have been discussed, emphasizing their salient characteristics, advantages, and uses. TextBlob A popular Python sentiment analysis toolkit, TextBlob is
CS388: Natural Language ProcessingMay 12, 2024
CleaningMay 11, 2024
As part of data preparation for an NLP model, it’s common to need to clean up your data prior to passing it into the model. If there’s unwanted content in your output, for example, it could impact the quality of your NLP model. To help with this, the `unstructured` library includes cleaning functions to help users sanitize output before sending it to downstream applications.
Unlocking the Best Tokenization Strategies: How Greedy Inference and SaGe LMar 18, 2024
The inference method is crucial for NLP models in subword tokenization. Methods like BPE, WordPiece, and UnigramLM offer distinct mappings, but their performance differences must be better understood. Implementations like Huggingface Tokenizers often need to be clearer or limit inference choices, complicating compatibility with vocabulary learning algorithms. Whether a matching inference method is necessary or optimal for tokenizer vocabularies is uncertain. Previous research focused on developing vocabulary construction algorithms such as BPE, WordPiece, and UnigramLM, exploring optimal vocabulary size and multilingual vocabularies. Some studies examined the effects of vocabularies on downstream performance, information theory, and cognitive plausibility. Limited work on
Speech and Language ProcessingMar 12, 2024
Beyond Self-Attention: How a Small Language Model Predicts the Next TokenFeb 22, 2024
A deep dive into the internals of a small transformer model to learn how it turns self-attention calculations into accurate predictions for the next token.
Primers • AISep 24, 2023
Aman's AI Journal | Course notes and learning material for Artificial Intelligence and Deep Learning Stanford classes.
A Taxonomy of Natural Language ProcessingSep 24, 2023
An overview of different fields of study and recent developments in NLP
Introduction to Vector Similarity SearchJul 14, 2023
Learn what vector search is and the metrics pertinent to decide the distance (or similarity) between objects.
4 Ways to Do Question Answering in LangChainApr 14, 2023
Chat with your long PDF docs: load_qa_chain, RetrievalQA, VectorstoreIndexCreator, ConversationalRetrievalChain
Meta unveils a new large language model that can run on a single GPUFeb 25, 2023
LLaMA-13B reportedly outperforms ChatGPT-like tech despite being 10x smaller.
How to Generate GPT Output in JSON Format for Ruby developersJan 14, 2023
I was playing around with OpenAI (GPT-3) today, building a reasonably complicated email parser for a...
Dense Vectors | PineconeDec 28, 2022
ChatGPT and the Imagenet moment — Benedict EvansDec 16, 2022
The wave of enthusiasm around generative networks feels like another Imagenet moment - a step change in what ‘AI’ can do that could generalise far beyond the cool demos. What can it create, and where are the humans in the loop?
2212.03551.pdfDec 11, 2022
AI Homework – Stratechery by Ben ThompsonDec 7, 2022
The first obvious casualty of large language models is homework: the real training for everyone, though, and the best way to leverage AI, will be in verifying and editing information.
Beginner’s Guide to Diffusion ModelsDec 7, 2022
An intuitive understanding of how AI-generated art is made by Stable Diffusion, Midjourney, or DALL-E
What do countries talk about at the UN General Debate — Topic modelings using LDA.Nov 23, 2022
The intuition behind LDA and its limitations, along with python implementation using Gensim.
5 Linguistics Courses for NLP PractitionersNov 21, 2022
This collection of 5 courses is intended to help NLP practitioners or hopefuls acquire some of their lacking linguistics knowledge.
Converting Text Documents to Token Counts with CountVectorizerOct 19, 2022
The post explains the significance of CountVectorizer and demonstrates its implementation with Python code.
Interview: Why Mastering Language Is So Difficult for AIOct 17, 2022
Scientist Gary Marcus argues that “deep learning” is not the only path to true artificial intelligence.
Topic Modeling with LSA, pLSA, LDA, NMF, BERTopic, Top2Vec: a ComparisonOct 14, 2022
A comparison between different topic modeling strategies including practical Python examples
7 spaCy Features To Boost Your NLP Pipelines And Save TimeAug 24, 2022
I’ve never used spaCy beyond simple named entity recognition tasks. Boy was I wrong.
Visualizing Part-of-Speech Tags with NLTK and SpaCyAug 19, 2022
Customizing displaCy’s entity visualizer
Minerva: Solving Quantitative Reasoning Problems with Language ModelsJul 5, 2022
Posted by Ethan Dyer and Guy Gur-Ari, Research Scientists, Google Research, Blueshift Team Language models have demonstrated remarkable performance...
Generating Children's Stories Using GPT-3 and DALL·EJul 5, 2022
We used GPT-3 and DALL·E to generate a children's storybook about Ash and Pikachu vs. Team Rocket. Read the story and marvel at the AI-generated visuals!
GitHub Copilot · Your AI pair programmerJun 22, 2022
GitHub Copilot works alongside you directly in your editor, suggesting whole lines or entire functions for you.
snakers4/silero-models: Silero Models: pre-trained speech-to-text, text-to-speech and text-enhancement models made embarrassingly simpleJun 21, 2022
Silero Models: pre-trained speech-to-text, text-to-speech and text-enhancement models made embarrassingly simple - snakers4/silero-models
AI Virtual Assistant Technology Guide 2022Mar 21, 2022
They can help you get an appointment or order a pizza, find the best ticket deals and bring your...
Text Summarization with NLP: TextRank vs Seq2Seq vs BARTMar 17, 2022
Natural Language Processing with Python, Gensim, Tensorflow, Transformers
Topic Modeling in Python | ToptalFeb 11, 2022
Topic modeling can bring NLP to the next level. Here’s how.
NLP_workshop/NLP_demo.ipynb at master · bjpcjp/NLP_workshopJan 17, 2022
NLP demo code, largely based on https://github.com/hundredblocks/concrete_NLP_tutorial - bjpcjp/NLP_workshop
spaCy_hello_world/spaCy_101.ipynb at master · bjpcjp/spaCy_hello_worldJan 16, 2022
Beginner's tour of spaCy v2.0.
Add Labels to a Dataset for Sentiment AnalysisNov 28, 2021
In this article, I will present a tutorial on how to add labels to a dataset for sentiment analysis using Python. Adding labels to a dataset.
Mastering spaCy | Data | eBookSep 7, 2021
An end-to-end practical guide to implementing NLP applications using the Python ecosystem. 1 customer review. Instant delivery. Top rated Mobile Application Development products.
Semantic Search: Measuring Meaning From Jaccard to BertJul 3, 2021
Similarity search is one of the fastest-growing domains in AI and machine learning. At its core, it is the process of matching relevant pieces of information together.
Wu Dao 2.0: A Monster of 1.75 Trillion Parameters | by Alberto Romero | MedJun 7, 2021
BAAI conference presented Wu Dao 2.0. The most powerful AI to date.
Sentiment Analysis — Comparing 3 Common Approaches: Naive Bayes, LSTM, andMay 31, 2021
Sentiment Analysis, or Opinion Mining, is a subfield of NLP (Natural Language Processing) that aims to extract attitudes, appraisals, opinions, and emotions from text. Inspired by the rapid migration…
RedirectMay 31, 2021
Understanding Transformers, the machine learning model behind GPT-3May 22, 2021
How this novel neural network architecture changes the way we analyze complex data types, and powers revolutionary models like GPT-3 and BERT.
Language models like GPT-3 could herald a new type of search engineMay 18, 2021
The way we search online hasn’t changed in decades. A new idea from Google researchers could make it more like talking to a human expert
How Transformers work in deep learning and NLP: an intuitive introduction | AI SummerMay 18, 2021
An intuitive understanding on Transformers and how they are used in Machine Translation. After analyzing all subcomponents one by one such as self-attention and positional encodings , we explain the principles behind the Encoder and Decoder and why Transformers work so well
Deploy an NLP pipeline. Flask Heroku Bert.May 1, 2021
A simple quick solution for deploying an NLP project and challenges you may faced during the process.
Arabic NLP: Unique Challenges and Their SolutionsApr 8, 2021
Pre-processing Arabic text for machine-learning using the camel-tools Python package
Foundations of NLP Explained Visually: Beam Search, How it Works | by KetanApr 4, 2021
A Gentle Guide to how Beam Search enhances predictions, in Plain English
State of the art NLP at scale with RAPIDS, HuggingFace and DaskApr 4, 2021
See how to build end-to-end NLP pipelines in a fast and scalable way on GPUs — from feature engineering to inference.
OpenAI’s text-generating system GPT-3 is now spewing out 4.5 billion wordsMar 30, 2021
Text-generation is the next big thing in AI.
GPT-3: We’re at the very beginning of a new app ecosystemFeb 27, 2021
The NLP application ecosystem is in its earliest stages, and it's not yet clear whether GPT-3 or a different model will be the foundation.
How to Tell Stories with Sentiment AnalysisFeb 10, 2021
A journalist’s attempt at introducing math to the newsroom while analyzing QAnon
10 NLP Terms Every Data Scientist Should KnowFeb 7, 2021
Knowing the terminology is essential to understanding any tutorial.
Achieving High-Quality Search and Recommendation Results with DeepNLPFeb 5, 2021
Speech and natural language processing (NLP) have become the foundation for most of the AI development in the enterprise today, as textual data represents a significant portion of unstructured content.
12 Twitter Sentiment Analysis Algorithms ComparedFeb 1, 2021
12 sentiment analysis algorithms were compared on the accuracy of tweet classification. The fasText deep learning system was the winner.
Release v3.0.0: Transformer-based pipelines, new training system, project tFeb 1, 2021
📣 NEW: Want to make the transition from spaCy v2 to spaCy v3 as smooth as possible for you and your organization? We're now offering commercial migration support for your spaCy pipelines! We...
Cross-Topic Argument Mining: Learning How to Classify TextsJan 27, 2021
Classifying cross-topic natural language texts based on their argumentative structure using deep learning
6 NLP Techniques Every Data Scientist Should KnowJan 21, 2021
Towards more efficient natural language processing
Browse the State-of-the-Art in Machine Learning | Papers With CodeDec 21, 2020
**Sentiment Analysis** is the task of classifying the polarity of a given text. For instance, a text-based tweet can be categorized into either "positive", "negative", or "neutral". Given the text and accompanying labels, a model can be trained to predict the correct sentiment. **Sentiment Analysis** techniques can be categorized into machine learning approaches, lexicon-based approaches, and even hybrid methods. Some subcategories of research in sentiment analysis include: multimodal sentiment analysis, aspect-based sentiment analysis, fine-grained opinion analysis, language specific sentiment analysis. More recently, deep learning techniques, such as RoBERTa and T5, are used to train high-performing sentiment classifiers that are evaluated using metrics like F1, recall, and precision. To evaluate sentiment analysis systems, benchmark datasets like SST, GLUE, and IMDB movie reviews are used. Further readings: - [Sentiment Analysis Based on Deep Learning: A Comparative Study](https://paperswithcode.com/paper/sentiment-analysis-based-on-deep-learning-a)
A Beginner’s Guide to Use BERT for the First TimeDec 18, 2020
From predicting single sentence to fine-tuning using custom dataset to finding the best hyperparameter configuration.
Linguistic Fundamentals for Natural Language Processing: 100 Essentials froDec 18, 2020
Algorithms for text analytics must model how language works to incorporate meaning in language—and so do the people deploying these algorithms. Bender & Lascarides 2019 is an accessible overview of what the field of linguistics can teach NLP about how meaning is encoded in human languages.
A version of the BERT language model that’s 20 times as fastDec 10, 2020
Determining the optimal architectural parameters reduces network size by 84% while improving performance on natural-language-understanding tasks.
Overview of tokenization algorithms in NLPNov 29, 2020
Introduction to tokenization methods, including subword, BPE and SentencePiece
Amazon shifts some Alexa and Rekognition computing to its own Inferentia chNov 13, 2020
Amazon said it shifted part of the computing for its Alexa voice assistant to its own custom-designed chips.
GPT-3, transformers and the wild world of NLPNov 3, 2020
A review of 20+ deep learning NLP models and how to use them well
Compare Amazon Textract with Tesseract OCR — OCR & NLP Use CaseNov 3, 2020
Comparison of two known engines for optical character recognition (OCR) and Naturtal Language Processing
AI devs created a lean, mean, GPT-3-beating machine that uses 99.9% fewer pNov 3, 2020
AI researchers from the Ludwig Maximilian University (LMU) of Munich have developed a bite-sized text generator capable of besting OpenAI’s state of the art GPT-3 using only a tiny fraction of its parameters. GPT-3 is a monster of an AI sys
AI Democratization in the Era of GPT-3Nov 3, 2020
What does Microsoft getting an "exclusive license" to GPT-3 mean for the future of AI democratization?
3 Natural Language Processing Tools From AWS to PythonNov 3, 2020
Photo by Eric Krull on Unsplash. Parsing and processing documents can provide a lot of value for alm...
HedonometerAug 10, 2020
Hedonometer.org is an instrument that measures the happiness of large populations in real time. The hedonometer is based on people’s online expressions, capitalizing on data-rich social media, and measures how people present themselves to the outside world.
Part 4: Semantic SegmentationJun 24, 2020
Identifying Change Points in Time Series Data with FLUSS and FLOSS
Evolution of Language Models: N-Grams, Word Embeddings, Attention & TransfoMay 20, 2020
This post collates research on the advancements of Natural Language Processing (NLP) over the years.
Good Grams: How to Find Predictive N-Grams for your ProblemMay 15, 2020
Figuring out what words are predictive for your problem is easy!
Natural Language Processing Recipes: Best Practices and ExamplesMay 6, 2020
Here is an overview of another great natural language processing resource, this time from Microsoft, which demonstrates best practices and implementation guidelines for a variety of tasks and scenarios.
Python Libraries for Natural Language Processing - Towards Data ScienceApr 28, 2020
An Overview Of popular python libraries for Natural Language Processing
The Cost of Training NLP Models: A Concise OverviewApr 24, 2020
We review the cost of training large-scale language models, and the drivers of these costs. The intended audience includes engineers and scientists budgeting their model-training experiments, as...
Topic Modeling Articles with NMFApr 19, 2020
Extracting topics is a good unsupervised data-mining technique to discover the underlying relationships between texts. There are many…
TLDR This - Article Summarizer & Online Text Summarizing ToolApr 1, 2020
TLDR This is a Free online text summarizing tool that automatically condenses long articles, documents, essays, or papers into key summary paragraphs using state-of-the-art AI.
google-research/bert: TensorFlow code and pre-trained models for BERTApr 1, 2020
TensorFlow code and pre-trained models for BERT.
The Illustrated BERT, ELMo, and co. (How NLP Cracked Transfer Learning) – JApr 1, 2020
Discussions: Hacker News (98 points, 19 comments), Reddit r/MachineLearning (164 points, 20 comments) Translations: Chinese (Simplified), French 1, French 2, Japanese, Korean, Persian, Russian, Spanish 2021 Update: I created this brief and highly accessible video intro to BERT The year 2018 has been an inflection point for machine learning models handling text (or more accurately, Natural Language Processing or NLP for short). Our conceptual understanding of how best to represent words and sentences in a way that best captures underlying meanings and relationships is rapidly evolving. Moreover, the NLP community has been putting forward incredibly powerful components that you can freely download and use in your own models and pipelines (It’s been referred to as NLP’s ImageNet moment, referencing how years ago similar developments accelerated the development of machine learning in Computer Vision tasks).
[Project] nlp-tutoral repository who is studying NLP(Natural Language ProceMar 24, 2020
219 votes, 26 comments. Hello. This is my first post in reddit I created nlp-tutoral repository who is studying NLP(Natural Language Processing)…
Build a BERT Sci-kit TransformerMar 20, 2020
BERT can get you state-of-the-art results on many NLP tasks and it only takes a few lines of code.
Vincent Boucher on LinkedIn: #transformer #bert #nlpMar 9, 2020
Pre-training SmallBERTa - A tiny model to train on a tiny dataset An end to end colab notebook that allows you to train your own LM (using HuggingFace…
The Big Bad NLP Database: Access Nearly 300 DatasetsMar 9, 2020
Check out this database of nearly 300 freely-accessible NLP datasets, curated from around the internet.
Decoding NLP Attention MechanismsMar 9, 2020
Arguably more famous today than Michael Bay’s Transformers, the transformer architecture and transformer-based models have been breaking all kinds of state-of-the-art records. They are (rightfully) getting the attention of a big portion of the deep learning community and researchers in Natural Language Processing (NLP) since their introduction in 2017 by the Google Translation Team. This architecture has set […]
Over 150 of the Best Machine Learning, NLP, and Python Tutorials I’ve FoundMar 9, 2020
By popular demand, I’ve updated this article with the latest tutorials from the past 12 months. Check it out here
Quick Introduction to Sentiment AnalysisMar 9, 2020
What is sentiment analysis, how to perform it, and how it can help your business.
A Comprehensive Guide to Natural Language GenerationFeb 19, 2020
Follow this overview of Natural Language Generation covering its applications in theory and practice. The evolution of NLG architecture is also described from simple gap-filling to dynamic document creation along with a summary of the most popular NLG models.
How to train a new language model from scratch using Transformers and TokenizersFeb 19, 2020
We’re on a journey to advance and democratize artificial intelligence through open source and open science.
A list of beginner-friendly NLP projects–using pre-trained modelsFeb 19, 2020
Build software with machine learning — no math required.
Top NLP Research Papers With Business Applications From ACL 2019Feb 19, 2020
This year’s annual meeting of the Association for Computational Linguistics (ACL 2019) was bigger than ever. Although the conference received 75% more submissions than last year, the quality of the research papers remained high, and so the acceptance rates are almost the same. It is becoming more and more challenging to keep track of the […]
Exploratory Data Analysis for Natural Language Processing: A Complete Guide to Python ToolsFeb 19, 2020
Explore NLP EDA with Python tools: learn about text statistics, ngrams, topic modeling with pyLDAvis, sentiment analysis, and more
[N] HuggingFace releases ultra-fast tokenization library for deep-learningFeb 19, 2020
336 votes, 25 comments. Huggingface, the NLP research company known for its transformers library, has just released a new open-source library for…
An Introductory Guide to NLP for Data Scientists with 7 Common TechniquesFeb 19, 2020
Data Scientists work with tons of data, and many times that data includes natural language text. This guide reviews 7 common techniques with code examples to introduce you the essentials of NLP, so you can begin performing analysis and building models from textual data.
Turing-NLG: A 17-billion-parameter language model by MicrosoftFeb 19, 2020
This figure was adapted from a similar image published in DistilBERT. Turing Natural Language Generation (T-NLG) is a 17 billion parameter language model by Microsoft that outperforms the state of the art on many downstream NLP tasks. We present a demo of the model, including its freeform generation, question answering, and summarization capabilities, to academics […]
Top NLP Algorithms & Concepts - DataScienceCentral.comFeb 19, 2020
Today, one of the most popular tasks in Data Science is processing information presented in the text form. Exactly this is text representation in the form of mathematical equations, formulas, paradigms, patterns in order to understand the text semantics (content) for its further processing: classification, fragmentation, etc. The general area which solves the described problems… Read More »Top NLP Algorithms & Concepts
10 Common NLP Terms Explained for the Text Analysis Novice - DataScienceCentral.comFeb 19, 2020
If you’re relatively new to the NLP and Text Analysis world, you’ll more than likely have come across some pretty technical terms and acronyms, that are challenging to get your head around, especially, if you’re relying on scientific definitions for a plain and simple explanation. We decided to put together a list of 10 common… Read More »10 Common NLP Terms Explained for the Text Analysis Novice
nlp-recipes/README.md at master · microsoft/nlp-recipesDec 14, 2019
Natural Language Processing Best Practices & Examples - microsoft/nlp-recipes
Lit BERT: NLP Transfer Learning In 3 Steps - Towards Data ScienceDec 14, 2019
In this tutorial we learn to quickly train Huggingface BERT using PyTorch Lightning for transfer learning on any NLP task
Hugging Face – The AI community building the future.Dec 14, 2019
We’re on a journey to advance and democratize artificial intelligence through open source and open science.
BERT Explained: A Complete Guide with Theory and TutorialDec 5, 2019
Unless you have been out of touch with the Deep Learning world, chances are that you have heard about BERT — it has been the talk of the town for the last one year. At the end of 2018 researchers …
How ‘Embeddings’ Encode What Words Mean — Sort OfSep 24, 2019
Machines work with words by embedding their relationships with other words in a string of numbers.
Deconstructing BERT: Distilling 6 Patterns from 100 Million ParametersAug 30, 2019
From BERT’s tangled web of attention, some intuitive patterns emerge.
Advanced NLP with spaCy · A free online courseAug 29, 2019
spaCy is a modern Python library for industrial-strength Natural Language Processing. In this free and interactive online course, you'll learn how to use spaCy to build advanced natural language understanding systems, using both rule-based and machine learning approaches.
Text AnalyticsAug 29, 2019
Medallia's text analytics software tool provides actionable insights via customer and employee experience sentiment data analysis from reviews & comments.
A tour of awesome features of spaCy (part 1/2) – Eliiza-AI – MediumAug 27, 2019
A few weeks ago I started working on a text summarisation project and I needed a Natural Language Processing library with comprehensive…
Word2vec: fish music = bass | graceaveryAug 20, 2019
A tour of awesome features of spaCy (part 2/2) - Eliiza-AI - MediumAug 20, 2019
In the first part of this overview of spaCy we went over the features of the large English pretrained model that spaCy comes with. In this…
Introducing spaCy v2.1 · Blog · Explosion AIApr 1, 2019
Version 2.1 of the spaCy Natural Language Processing library includes a huge number of features, improvements and bug fixes. In this post, we highlight some of the things we're especially pleased with, and explain some of the most challenging parts of preparing this big release.
The Illustrated Word2vecMar 29, 2019
Discussions: Hacker News (347 points, 37 comments), Reddit r/MachineLearning (151 points, 19 comments) Translations: Chinese (Simplified), French, Korean, Portuguese, Russian “There is in all things a pattern that is part of our universe. It has symmetry, elegance, and grace - those qualities you find always in that which the true artist captures. You can find it in the turning of the seasons, in the way sand trails along a ridge, in the branch clusters of the creosote bush or the pattern of its leaves. We try to copy these patterns in our lives and our society, seeking the rhythms, the dances, the forms that comfort. Yet, it is possible to see peril in the finding of ultimate perfection. It is clear that the ultimate pattern contains it own fixity. In such perfection, all things move toward death.” ~ Dune (1965) I find the concept of embeddings to be one of the most fascinating ideas in machine learning. If you’ve ever used Siri, Google Assistant, Alexa, Google Translate, or even smartphone keyboard with next-word prediction, then chances are you’ve benefitted from this idea that has become central to Natural Language Processing models. There has been quite a development over the last couple of decades in using embeddings for neural models (Recent developments include contextualized word embeddings leading to cutting-edge models like BERT and GPT2). Word2vec is a method to efficiently create word embeddings and has been around since 2013. But in addition to its utility as a word-embedding method, some of its concepts have been shown to be effective in creating recommendation engines and making sense of sequential data even in commercial, non-language tasks. Companies like Airbnb, Alibaba, Spotify, and Anghami have all benefitted from carving out this brilliant piece of machinery from the world of NLP and using it in production to empower a new breed of recommendation engines. In this post, we’ll go over the concept of embedding, and the mechanics of generating embeddings with word2vec. But let’s start with an example to get familiar with using vectors to represent things. Did you know that a list of five numbers (a vector) can represent so much about your personality?
Measuring the varied sentiments of good and bad wordsOct 12, 2018
There was a survey a while back that asked people to provide a 0 to 100 percent value to probabilistic words like “usually” and “likely”. YouGov did something similar for wo…
[P] Using T-SNE and word2vec embeddings to create clusters in wordcloudsSep 5, 2018
2.9M subscribers in the MachineLearning community. Beginners -> /r/mlquestions , AGI -> /r/singularity, career advices -> /r/cscareerquestions…
mukund109/word-mesh: A context-preserving word cloud generatorSep 5, 2018
A context-preserving word cloud generator.
Emotion and Sentiment Analysis: A Practitioner’s Guide to NLPAug 30, 2018
Sentiment analysis is widely used, especially as a part of social media analysis for any domain, be it a business, a recent movie, or a product launch, to understand its reception by the people and what they think of it based on their opinions or, you guessed it, sentiment!
NLP's ImageNet moment has arrivedJul 15, 2018
The time is ripe for practical transfer learning to make inroads into NLP.
Deep Meaning Beyond Thought VectorsJun 8, 2018
I ended my last post by saying that I might write a follow-up post on current work that seems to exhibit progress toward natural language understanding. I am going to discuss a couple sampled pap…
How to solve 90% of NLP problems: a step-by-step guideJun 8, 2018
Using Machine Learning to understand and leverage text.
Deep Learning Research Review Week 3: Natural Language Processing – Adit DeJun 8, 2018
Engineering at Forward | UCLA CS '19
NLP Concepts with spaCy. Code examples released under CC0 https://creativecJun 8, 2018
NLP Concepts with spaCy. Code examples released under CC0 https://creativecommons.org/choose/zero/, other text released under CC BY 4.0 https://creativecommons.org/licenses/by/4.0/ · GitHub
agnusmaximus/Word2Bits: Quantized word vectors that take 8x-16x less space than regular word vectorsJun 8, 2018
Quantized word vectors that take 8x-16x less space than regular word vectors - agnusmaximus/Word2Bits
5 Fantastic Practical Natural Language Processing ResourcesJun 8, 2018
This post presents 5 practical resources for getting a start in natural language processing, covering a wide array of topics and approaches.
NLTK 3.3 is outJun 8, 2018
NLTK 3.3 has been released NLTK 3.3 includes the following: Support Python 3.6 New interface to CoreNLP Support synset retrieval by sense key Minor…
Topic Modeling with Gensim (Python) - A Practical GuideMay 12, 2018
Topic Modeling is a technique to understand and extract the hidden topics from large volumes of text. Latent Dirichlet Allocation(LDA) is an algorithm for topic modeling, which has excellent implementations in the Python's Gensim package. This tutorial tackles the problem of finding the optimal number of topics.
Understanding what is behind Sentiment Analysis (Part II)May 1, 2018
Fine-tuning our sentiment classifier
Understanding Feature Engineering (Part 3) — Traditional Methods for Text DApr 9, 2018
Traditional strategies for taming unstructured, textual data
concrete_NLP_tutorial/NLP_notebook.ipynb at master · hundredblocks/concreteFeb 1, 2018
An NLP workshop about concrete solutions to real problems - hundredblocks/concrete_NLP_tutorial
Prodigy - Radically efficient machine teachingFeb 1, 2018
A downloadable annotation tool for LLMs, NLP and computer vision tasks such as named entity recognition, text classification, object detection, image segmentation, evaluation and more.
spacy-notebooks/lightning_tour.ipynb at master · explosion/spacy-notebooksFeb 1, 2018
💫 Jupyter notebooks for spaCy examples and tutorials - explosion/spacy-notebooks
Word TensorsDec 28, 2017
Counting and tensor decompositions are elegant and straightforward techniques. But these methods are grossly underepresented in business contexts. In this p...
Topic Modeling with LDA IntroductionDec 27, 2017
Stay up-to-date on the latest data science and AI news in the worlds of artificial intelligence, machine learning, deep learning, implementation, and more.
nltk
Visualizing Part-of-Speech Tags with NLTK and SpaCyAug 19, 2022
Customizing displaCy’s entity visualizer
NLTK 3.3 is outJun 8, 2018
NLTK 3.3 has been released NLTK 3.3 includes the following: Support Python 3.6 New interface to CoreNLP Support synset retrieval by sense key Minor…
nodejs
Introduction to Redis: A Powerful In-Memory DatabaseFeb 3, 2024
Overview Redis, which stands for Remote Dictionary Server, is an open-source, in-memory...
How to Build an Error Handling Layer in Node.jsMar 15, 2023
Discover how to put an error handling layer in place for your Node.js application using Express.
Mastering Nginx for Node.js: Best Practices and TipsFeb 19, 2023
Nginx is a popular web server that is widely used to serve static content, reverse proxy, and load...
5 Node.js Tools to Learn in 2023Feb 1, 2023
Check out 5 Node.js tools that can help boost your productivity in 2023.
An Introduction to Multithreading in Node.jsJul 20, 2022
Let's dive into multithreading and how to use worker threads in Node.
16 Top NodeJS tools to make you a better developerMay 30, 2022
NodeJS is growing in popularity since its inception. 30 million websites use NodeJS Back in 2018,...
The Most Popular Node.js Frameworks (2023)Apr 29, 2022
This is a comprehensive overview for the most popular Node.js frameworks in the current year. Also covers up and rising stars to keep an eye out for.
Tao of Node - Design, Architecture & Best Practices | Alex Kondov - SoftwarMar 27, 2022
One of the main benefits of JavaScript is that it runs both in the browser and the server. As an engineer you need to master a single language and your skills…
Nodebooks: Introducing Node.js Data Science NotebooksJan 17, 2022
Python and Node.js in the same Jupyter notebook (part 1)
Node.js Under The Hood #1 - Getting to know our toolsJan 16, 2022
I was recently called to speak at a huge Brazilian conference called The Conf. The whole point of...
Hands-On: Build a Node.js-powered Chatroom Web App (#1) | NOUPEJan 16, 2022
This Node.js tutorial series will help you build a Node.js-powered real-time chatroom web app fully deployed in the cloud. In this series, you will learn
sindresorhus/awesome-nodejs: :zap: Delightful Node.js packages and resourcesJan 12, 2022
:zap: Delightful Node.js packages and resources.
Getting Started on Heroku with Node.js | Heroku Dev CenterJan 4, 2022
A step-by-step guide for deploying your first Node app and mastering the basics of Heroku
Express - Node.js web application frameworkDec 17, 2021
max-mapper/art-of-node: :snowflake: a short introduction to node.jsDec 14, 2021
:snowflake: a short introduction to node.js.
A complete guide to threads in Node.js - LogRocket BlogDec 13, 2021
While it is single-threaded, Node.js uses worker threads that allow for a separate execution thread that runs alongside the main thread.
Building a MERN stack simple blog site from absolute scratch ?Dec 3, 2021
Even a few years ago, web application development was not what it is today. Nowadays, there are so...
Building a Restful CRUD API with Node JS, Express, and MongoDBSep 1, 2021
Application Programming Interface is the abbreviation for API. An API is a software interface that...
10 npm Commands that every developer must knowJun 21, 2021
NPM stands for Node Package Manager and it is the package manager for the Node JavaScript platform....
Building Backend | Node, Postgres, GraphQLJun 12, 2021
Hi there 👋 Every application, you'll agree, needs a back-end. And there are many languages and tools...
When to use these Nodejs frameworks? Express, Koa, Nest, Socket.io, Meteor.Dec 18, 2020
According to the Node.js web survey report 2018, Node.js has increased developer productivity by 68%,...
When Should You Not Use Rails?Aug 5, 2020
How To Install Node.js on Ubuntu 18.04 / 16.04 LTS - TecAdminMay 14, 2020
Installing latest node.js ubuntu. How do I Install stable node.js, npm on Ubuntu. Installing Node.js with apt-get package manager on Ubuntu
oldboyxx/jira_clone: A simplified Jira clone built with React/Babel (ClientFeb 19, 2020
A simplified Jira clone built with React/Babel (Client), and Node/TypeScript (API). Auto formatted with Prettier, tested with Cypress. - oldboyxx/jira_clone
How to speed up Node.js matrix computing with Math.js ? - DEV Community ??Feb 10, 2019
In this article, you will learn how performing parallel computations can speed up the multiplication of two matrices.
Keeping Node.js Fast: Tools, Techniques, And Tips For Making High-PerformanJun 7, 2018
When it comes to performance, what works in the browser doesn’t necessarily suit Node.js. So, how do we make sure a Node.js implementation is fast and fit for purpose? Node is a very versatile platform, but one of the predominant applications is creating networked processes. In this article David Mark Clements is going to focus on profiling the most common of these: HTTP web servers.
nosql
What caused the large AWS outage?Oct 23, 2025
On Monday, a major AWS outage hit thousands of sites & apps, and even a Premier League soccer game. An overview of what caused this high-profile, global outage
Installation and Usage of Rails MongoDBJan 17, 2022
Ask HN: What is the SQLite of nosql databases?Jun 13, 2021
The NoSQL Know-It-All Compendium - KDnuggetsMay 18, 2021
Are you a NoSQL beginner, but want to become a NoSQL Know-It-All? Well, this is the place for you. Get up to speed on NoSQL technologies from a beginner's point of view, with this collection of related progressive posts on the subject. NoSQL? No problem!
7 Must-Know Ideas about NoSQLMar 10, 2021
How to avoid those dreaded pitfalls and “gotcha” moments when selecting databases for your next application?
MongoDB Vs SQLMay 19, 2020
MongoDB and SQL databases are two polar opposite sides of the backend world. The former deals with chaotic unstructured data, while the…
notetaking
How to use NotebookLM for personalized knowledge synthesisJan 8, 2025
Two powerful workflows that unlock everything else. Intro: Golden Age of AI Tools and AI agent frameworks begins in 2025.
TiddlyWiki — a non-linear personal web notebookJun 18, 2024
Deepnote - Data science notebook for teamsNov 23, 2022
Explore data with Python & SQL, work together with your team, and share insights that lead to action — all in one place with Deepnote.
How the Ballpoint Pen Killed CursiveJun 19, 2022
Thicker ink meant it didn't smudge as easily as its predecessor, the fountain pen—but it also made writing by hand more physically demanding.
In a world gone digital, Moleskine still believes in the power of paperFeb 9, 2022
"Paper is not going away, it's not going anywhere," CEO Daniela Riccardi said. Here's how she's keeping it relevant for consumers.
A Personal Git Repo as a Knowledge Base WikiFeb 20, 2021
While it's not something that everyone likes to do, I've always found it essential to write notes. Th...
Zettelkasten note-taking in 10 minutes · Tomas VikJun 8, 2020
Enhance your note-taking with permanent, atomic, linked notes.
How to Take Smart Notes: 10 Principles to Revolutionize Your Note-TakingFeb 16, 2020
I long ago stopped reading books on note-taking. They were always too vague and boring, full of platitudes that had little to do with the world outside
Open-sourcing Polynote: an IDE-inspired polyglot notebookDec 14, 2019
Jeremy Smith, Jonathan Indig, Faisal Siddiqi
Get started with Joplin, a note-taking appJan 26, 2019
Learn how open source tools can help you be more productive in 2019. First up, the Joplin note-taking app.
npm
Resolving EACCES permissions errors when installing packages globally | npmJun 23, 2024
Documentation for the npm registry, website, and command-line interface
Package Managers: Understanding npm, npx and yarnMay 27, 2023
In the development scenario using JavaScript/TypeScript, it is unthinkable to build professional...
Npm vs Yarn: What Should you use for managing packages in React?Feb 11, 2023
Both npm (Node Package Manager) and Yarn are popular package managers for JavaScript projects,...
NPM vs Yarn: let's settle things out.Apr 13, 2022
Yarn and NPM are two of the most popular Node.js package managers. They allow downloading,...
2013 04 12 package managers an introductoJan 23, 2022
Why Npm Scripts? | CSS-TricksJan 13, 2022
There has been a growing sentiment (for instance) that using node packages directly, with the command line interfaces they provide, is a good route to take.
Give Grunt the Boot! A Guide to Using npm as a Build Tool — SitePointJan 13, 2022
Peter Dierx demonstrates how flexible and powerful npm can be when used as a build tool and suggests that you might not actually need Grunt, Gulp and co.
NPM vs. YARN: Basic CommandsNov 28, 2021
Here is a quick reference guide for basic commands that we can use when dealing with Node and...
10 npm Commands that every developer must knowJun 21, 2021
NPM stands for Node Package Manager and it is the package manager for the Node JavaScript platform....
nudging
LAug 25, 2022
numba
Writing Your First GPU Kernel in Python with Numba and CUDA - KDnuggetsAug 18, 2025
80x Faster Python? Discover How One Line Turns Your Code Into a GPU Beast!
Numba Fundamentals for Statistical ComputingJan 6, 2025
Let's have a look at the basics of JIT compilation, and how Numba extends NumPy’s universal functions for often dramatic computational speedups.
Numba: A High Performance Python CompilerDec 28, 2022
CUDA by Numba ExamplesOct 14, 2022
Follow this series to learn about CUDA programming from scratch with Python. Part 4 of 4.
A ~5 minute guide to Numba — Numba 0.52.0.dev0+274.g626b40e-py3.7-linux-x86_64.egg documentationJan 16, 2022
Numba: JIT Compilation, But For PythonNov 3, 2020
A quick look at a fantastic tool for making Python better in 2020.
Numba: High-Performance Python with CUDA AccelerationDec 27, 2017
Numba is an open-source Python compiler from Anaconda that can compile Python code for high-performance execution on CUDA-capable GPUs or multicore CPUs.
Seven Things You Might Not Know About Numba | Parallel ForallDec 27, 2017
1.3M subscribers in the Python community. The official Python community for Reddit! Stay up to date with the latest news, packages, and meta…
numpy
How to Calculate and Interpret the Covariance Matrix with NumPySep 17, 2025
In this article, we will explore how to calculate and interpret the covariance matrix using NumPy.
How to Perform Matrix Factorization Using SVD with NumPyAug 25, 2025
In this article, we will learn how to use SVD for matrix factorization with NumPy.
NumPy vs SciPy: When to Use Each for Statistical ComputingAug 22, 2025
Learn when to use NumPy vs SciPy for statistical computing with practical examples and decision frameworks.
Meet neograd: A Deep Learning Framework Created from Scratch Using Python aJan 17, 2024
Understanding how convolutional neural networks (CNNs) operate is essential in deep learning. However, implementing these networks, especially convolutions and gradient calculations, can be challenging. Many popular frameworks like TensorFlow and PyTorch exist, but their complex codebases make it difficult for newcomers to grasp the inner workings. Meet neograd, a newly released deep learning framework developed from scratch using Python and NumPy. This framework aims to simplify the understanding of core concepts in deep learning, such as automatic differentiation, by providing a more intuitive and readable codebase. It addresses the complexity barrier often associated with existing frameworks, making it easier for
Beyond Numpy and Pandas: Unlocking the Potential of Lesser-Known Python LibSep 1, 2023
3 Python libraries for scientific computation you should know as a data professional.
python-data-science-handbook/numpy at master · bjpcjp/python-data-science-handbookJan 16, 2022
Sourced from O'Reilly ebook of the same name.
Five Numpy Functions You Should UnderstandApr 25, 2021
How to stack your array horizontally and vertically, find unique values, split your array and some more tips to use Numpy effectively.
Using PyTorch + NumPy? You're making a mistake.Apr 11, 2021
A bug that plagues thousands of open-source ML projects.
20 NumPy Operations That Every Data Scientist Should KnowNov 30, 2020
NumPy forms the basis of many Python libraries in the data science domain.
Using Q-Learning in Numpy to teach an agent to play a gameMay 15, 2020
Using q-learning for sequential decision making and therefore learning to play a simple game.
A Complete Beginners Guide to Matrix Multiplication for Data Science with PApr 19, 2020
Learn matrix multiplication for machine learning by following along with Python examples
NumPy indexing explainedMar 23, 2020
NumPy is the universal standard for working with Numerical data in Python. Multidimensional NumPy arrays are extensively used in Pandas…
Top 3 Numpy Functions You Don’t Know About (Probably)Mar 20, 2020
The ones not covered in every How-to Guide
12 Amazing Pandas & NumPy FunctionsMar 9, 2020
Make your day to day life easier by using these functions in your analysis
nvidia
Nvidia’s new technique cuts LLM reasoning costs by 8x without losing accuracyFeb 12, 2026
Nvidia researchers developed dynamic memory sparsification (DMS), a technique that compresses the KV cache in large language models by up to 8x while maintaining reasoning accuracy — and it can be retrofitted onto existing models in hours.
NVIDIA Rubin Is The Most Advanced AI Platform On The Planet: Up To 50 PFLOPs With HBM4, Vera CPU With 88 Olympus Cores, And Delivers 5x Uplift Vs BlackwellJan 5, 2026
NVIDIA is formally announcing its Rubin AI platform today which will be the heart of next-gen Data Centers, with a 5x upgrade over Blackwell.
Another Giant Leap: The Rubin CPX Specialized Accelerator & RackSep 15, 2025
Nvidia announced the Rubin CPX, a solution that is specifically designed to be optimized for the prefill phase, with the single-die Rubin CPX heavily emphasizing compute FLOPS over memory bandwidth…
NVIDIA Unveils Its Newest ‘Rubin CPX’ AI GPUs, Featuring 128 GB GDDR7 Memory & Targeted …Sep 10, 2025
NVIDIA has surprisingly unveiled a rather 'new class' of AI GPUs, featuring the Rubin CPX AI chip that offers immense inferencing power.
NVIDIA Blackwell Ultra “GB300” GPU, The Fastest AI Chip, Detailed: Dual Reticle GPU With Ove…Aug 25, 2025
NVIDIA has provided an in-depth look at its fastest chip for AI, the Blackwell GB300, which is 50% faster than GB200 & packs 288 GB memory.
Nvidia just dropped a new AI model that crushes OpenAI’s GPT-4—no big launch, just big resultsOct 17, 2024
Nvidia quietly launched a groundbreaking AI model that surpasses OpenAI’s GPT-4 and Anthropic’s Claude 3.5, signaling a major shift in the competitive landscape of artificial intelligence.
18.04 Screen remains blank after wake up from suspend - Ask UbuntuMar 14, 2022
So, when I suspend my laptop, then wake it up later, my laptop does turn on, I'm able to, for example, turn up and down the volume with audio confirmation using the kepboard, but my screen remains ...
How to Accelerate Signal Processing in PythonApr 9, 2021
This post is the seventh installment of the series of articles on the RAPIDS ecosystem. The series explores and discusses various aspects of RAPIDS that allow its users solve ETL (Extract, Transform…
State of the art NLP at scale with RAPIDS, HuggingFace and DaskApr 4, 2021
See how to build end-to-end NLP pipelines in a fast and scalable way on GPUs — from feature engineering to inference.
Using RAPIDS with PyTorchMar 15, 2021
In this post we take a look at how to use cuDF, the RAPIDS dataframe library, to do some of the preprocessing steps required to get the mortgage data in a format that PyTorch can process so that we…
Beginner’s Guide to Querying Data Using SQL on GPUs in PythonMar 15, 2021
Historically speaking, processing large amounts of structured data has been the domain of relational databases. Databases, consisting of tables that can be joined together or aggregated…
Python Pandas Tutorial – Beginner’s Guide to GPU Accelerated DataFrames forMar 12, 2021
This series on the RAPIDS ecosystem explores the various aspects that enable you to solve extract, transform, load (ETL) problems, build machine learning (ML) and deep learning (DL) models…
Nvidia just dropped a bombshell: Its new AI model is open massive and ready to rival GPT-4Oct 24, 2002
Nvidia has released NVLM 1.0, a powerful open-source AI model that rivals GPT-4 and Google’s systems, marking a major breakthrough in multimodal language models for vision and text tasks.
object-detection
Autonomous Driving: Assessment Of YOLO Algorithms (RMIT et al.)Feb 11, 2026
A new technical paper titled “Advances in You Only Look Once (YOLO) algorithms for lane and object detection in autonomous vehicles” was published by RMIT University, Kyungpook National University, Deakin University and the RCA Robotics Laboratory, Royal College of Art. Abstract “Ensuring the safety and efficiency of Autonomous Vehicles (AVs) necessitates highly accurate perception, especially... » read more
YOLOv10: A new architecture for real-time object detection | Clodoaldo Júnior posted on the topic | LinkedInMay 29, 2024
Yesterday (24/05/2024) marked the launch of the new state-of-the-art architecture named YOLOv10 [1], representing the cutting-edge in real-time object…
Object Detection Basics — A Comprehensive Beginner’s Guide (Part 1)Feb 7, 2024
Learn the basics of this advanced computer vision task of object detection in an easy to understand multi-part beginner’s guide
eBay rolls out a tool that generates product listings from photosSep 7, 2023
eBay's new generative AI tool, rolling out on iOS first, can write a product listing from a single photo -- or so the company claims.
Multi-camera real-time object detection with WebRTC and YOLOJan 5, 2023
Learn how to build a surveillance system using WebRTC for low-latency and YOLO for object detection. This tutorial will guide you through the process of using computer vision and machine learning techniques to detect and track objects in real-time video streams. With this knowledge, you can create a surveillance system for security or other applications. However, there are challenges to consider when using cameras for object detection, including data privacy and security concerns, as well as technical limitations such as low image quality and lighting conditions. This article will teach you how to overcome some of these challenges and build a reliable surveillance system.
YOLOv5 PyTorch TutorialDec 17, 2022
The YOLO algorithm offers high detection speed and performance through its one-forward propagation capability. In this tutorial, we will focus on YOLOv5.
YOLOv7: A deep dive into the current state-of-the-art for object detectionNov 28, 2022
Everything you need to know to use YOLOv7 in custom training scripts
The Basics of Object Detection: YOLO, SSD, R-CNNOct 11, 2022
Overview of how object detection works, and where to get started
Demystifying Object Detection and Instance Segmentation for Data Scientists - MLWhizSep 5, 2022
this post is explaining how permutation importance works and how we can code it using ELI5
YOLOv6: next-generation object detection — review and comparisonJul 5, 2022
eview and comparison of the next generation object detection
Train Mask R-CNN Net for Object Detection in 60 Lines of CodeJun 3, 2022
A step-by-step tutorial using a minimal amount of code
Object Detection Algorithms and Libraries - neptune.aiAug 24, 2021
A guide on object detection algorithms and libraries that covers use cases, technical details, and offers a look into modern applications.
Introduction to Object Detection Model EvaluationMay 29, 2021
Evaluating object detection models is not straightforward because each image can have many objects and each object can belong to different classes. This means that we need to measure if the model…
How to Use Roboflow and Streamlit to Visualize Object Detection OutputMar 3, 2021
Building an app for blood cell count detection.
Pocket - Anchor Boxes — The key to quality object detectionJan 2, 2021
If you have ever had to tinker with anchor boxes, you were probably frustrated, confused and saying to yourself, “There must be another…
Anchor Boxes — The key to quality object detectionJan 2, 2021
A recent article came out comparing public cloud providers’ face detection APIs. I was very surprised to see all of the detectors fail to…
Browse the State-of-the-Art in Machine Learning | Papers With CodeDec 21, 2020
**Object Detection** is a computer vision task in which the goal is to detect and locate objects of interest in an image or video. The task involves identifying the position and boundaries of objects in an image, and classifying the objects into different categories. It forms a crucial part of vision recognition, alongside [image classification](/task/image-classification) and [retrieval](/task/image-retrieval). The state-of-the-art methods can be categorized into two main types: one-stage methods and two stage-methods: - One-stage methods prioritize inference speed, and example models include YOLO, SSD and RetinaNet. - Two-stage methods prioritize detection accuracy, and example models include Faster R-CNN, Mask R-CNN and Cascade R-CNN. The most popular benchmark is the MSCOCO dataset. Models are typically evaluated according to a Mean Average Precision metric. ( Image credit: [Detectron](https://github.com/facebookresearch/detectron) )
Yolo v5 Object Detection TutorialNov 3, 2020
How to set up and train a Yolo v5 Object Detection model?
Object Detection from 9 FPS to 650 FPSNov 3, 2020
Novel object captioning surpasses human performance on benchmarksNov 2, 2020
Visual vocabulary advances novel object captioning by breaking free of paired sentence-image training data in vision and language pretraining. Discover how this method helps set new state of the art on the nocaps benchmark and bests CIDEr scores of humans.
Data Augmentation in YOLOv4Jun 1, 2020
State of the art modeling with image data augmentation and management
Deploy Tensorflow Object Detection API on Kubernetes with Python, Flask andApr 26, 2020
In this article we’ll serve the Tensorflow Object Detection API with Flask, Dockerize the Application and deploy it on Kubernetes.
Object Detection using YoloV3 and OpenCVApr 1, 2020
An Introduction to Object Detection with YoloV3 for beginners
nandinib1999/object-detection-yolo-opencv: Object Detection using Yolo V3 and OpenCVApr 1, 2020
Object Detection using Yolo V3 and OpenCV .
Focal Loss for Dense Object DetectionFeb 19, 2020
The highest accuracy object detectors to date are based on a two-stage approach popularized by R-CNN, where a classifier is applied to a sparse set of candidate object locations. In contrast, one-stage detectors that are applied over a regular, dense sampling of possible object locations have the potential to be faster and simpler, but have trailed the accuracy of two-stage detectors thus far. In this paper, we investigate why this is the case. We discover that the extreme foreground-background class imbalance encountered during training of dense detectors is the central cause. We propose to address this class imbalance by reshaping the standard cross entropy loss such that it down-weights the loss assigned to well-classified examples. Our novel Focal Loss focuses training on a sparse set of hard examples and prevents the vast number of easy negatives from overwhelming the detector during training. To evaluate the effectiveness of our loss, we design and train a simple dense detector we call RetinaNet. Our results show that when trained with the focal loss, RetinaNet is able to match the speed of previous one-stage detectors while surpassing the accuracy of all existing state-of-the-art two-stage detectors. Code is at: https://github.com/facebookresearch/Detectron.
Demystifying Object Detection and Instance Segmentation for Data ScientistsDec 14, 2019
Easy Explanation!!! I tried
A 2019 Guide to Object DetectionAug 24, 2019
Object detection has been applied widely in video surveillance, self-driving cars, and object/people tracking. In this piece, we’ll look at the basics of object detection and review some of the most commonly-used algorithms and a few brand new approaches, as well.
Real-time object detection with deep learning and OpenCV - PyImageSearchJun 8, 2018
In this tutorial I demonstrate how to apply object detection with deep learning and OpenCV + Python to real-time video streams and video files.
Faster R-CNN: Down the rabbit hole of modern object detectionFeb 2, 2018
In this post, I'll explain the architecture of Faster R-CNN, starting with a high level overview, and then go over the details for each of the components. You'll be introduced to base networks, anchors as well as the region proposal network.
objections
The Secrets of Highly Successful Sales People: Objection Handling - The Secret Product Manager HandbookJul 18, 2022
Objection handling is an important skill for sales people. But if that skill is augmented with great product knowledge (provided by product managers) sales take off.
Destroying Objections like a Neuro-Linguistic Programming ExpertMay 20, 2021
Paul Ross is a Master of Neuro-Linguistic Programming. He’s taught people the power of language to sell, heal, and turn pain into passion.
How to Overcome 5 Common B2B Sales ChallengesDec 19, 2020
Generating and retaining business customers makes you deal with longer (and more complicated) sales cycles, more demanding customers, and huge amounts of data.
https://customerobjections.com/Dec 18, 2020
Objections Are GoalsOct 10, 2018
After I published test && commit || revert, I got a variety of responses on Twitter and on Hacker News. The Twitter comments were mostly…
ocaml
ocr
Why extracting data from PDFs is still a nightmare for data expertsMar 11, 2025
Countless digital documents hold valuable info, and the AI industry is attempting to set it free.
Mistral OCRMar 7, 2025
New closed-source specialist OCR model by Mistral - you can feed it images or a PDF and it produces Markdown with optional embedded images. It's available [via their API](https://docs.mistral.ai/api/#tag/ocr), or …
Meet the OCR Toolkit: A Versatile Python Package for Seamlessly IntegratingMar 23, 2024
In the present digital world, converting images of text into editable text, a process known as Optical Character Recognition (OCR), is a common task. However, many people struggle with complicated code to make OCR work for researchers and developers, making what should be a straightforward task much more challenging. There are already some tools and packages available aimed at simplifying OCR tasks. However, these solutions often focus mainly on the inference part of OCR, leaving users to handle other essential tasks like managing image files, parsing results, and integrating with different OCR models independently. This fragmented approach can make the
TextSnatcherMar 19, 2024
How to Copy Text from Images ? Answer is TextSnatcher !. Perform OCR operations in seconds on Linux Desktop. - RajSolai/TextSnatcher
Top 7 Best OCR Tools You Need to Use in 2024Feb 28, 2024
OCR (Optical Character Recognition) tools are software that can identify text, handwriting, and printed characters in images and PDF files. These tools
Confidential Optical Character Recognition Service With CapeMar 11, 2023
Cape has recently deployed a confidential optical character recognition (OCR) service. Anyone can try...
OCR-free document understanding with DonutAug 5, 2022
Use the recently-released Transformers model to generate JSON representations of your document data
How To Use Google OCR APIJul 4, 2022
Every company is searching for a competitive advantage when conducting their business processes,...
Simple Text Extraction Using Python And Tesseract OCRJun 3, 2022
Introduction Hello! In this quick tutorial I will show how to create a simple program...
How to Use Tesseract OCR to Convert PDFs to TextFeb 21, 2022
This is a cross-post from my blog Arcadian.Cloud, go there to see the original post. I have some...
Compare Amazon Textract with Tesseract OCR — OCR & NLP Use CaseNov 3, 2020
Comparison of two known engines for optical character recognition (OCR) and Naturtal Language Processing
An Introduction to Optical Character Recognition for BeginnersJun 1, 2020
Your first step towards reading text from unstructured data
Using Pytesseract to Convert Images into a HTML SiteMar 9, 2020
Convert images to a string with Google Tesseract and then into a static HTML site using python
Building an OCR Engine with Python and TesseractDec 23, 2019
Dive deep into OCR with Tesseract, including Pytesseract integration, training with custom data, limitations, and comparisons with enterprise solutions.
Remember QR Codes? They’re More Powerful Than You Think | Andreessen HorowitzDec 14, 2019
China’s mobile payment ecosystem, the largest in the world, is built upon QR codes. But that technology extends far beyond shopping to ease friction throughout daily life. On a recent trip to China, I personally interacted with QR codes 42 times in a single day—to ride the train, to book a workout, to charge my...
okrs
The Art of the OKRJul 18, 2022
Read the updated post, Art of the OKR Redux instead! A lot has changed since 2014…. Original “Art of the OKR” below, for archival purposes: I wrote a book on…
What is an OKR? Objectives, key results and how to use themJul 18, 2022
Understanding what an Objective and Key Result is, why it's different from traditional goal setting, and what impact a good OKR will can have is vital.
Using OKRs to Increase Organizational LearningJul 5, 2022
This is a draft chapter from the second edition of Radical Focus. It’s coming… eventually. Hopefully soonish. Leave your wishlist for other topics you’d like it to cover, and enjoy the sneak peek! …
Team Objectives – Overview | Silicon Valley Product GroupJun 23, 2022
After many years of being a very vocal advocate for the OKR (Objectives and Key Results) technique, in the majority of companies I meet, I have stopped recommending the practice. That’s because, in so many companies, even though conceptually the technique is simple and sound, it ends up proving a waste of time and effort,...
Use OKRs to Set Goals for Teams, Not IndividualsJun 23, 2022
A popular goal-setting framework, Objectives and key results (or OKRs) are an effective method for planning and measuring success on a team level. They fall short, however, when companies attempt to apply them to individual contributors. Setting individual OKRs generally leads to goals that are either not true indications of meaningful progress or that are easily gameable. Instead, individual contributors should be assessed based on the extent to which their work contributes to team goals that add real value to the company and its customers.
OKRs – The Ultimate Guide to Goal Setting in 2020 - noupeJun 13, 2022
The acronym OKR stands for Objectives and Key Results. Much has been written on the topic over the years yet they still remain a mystery for
How One Hospital Improved Patient Safety in 10 Minutes a DayOct 31, 2018
Clinical and nonclinical staff at the Rotterdam Eye Hospital have improved patient care and raised staff morale at a very modest cost: 10 minutes a day and a special deck of cards. At the start of every shift, the team members get together for a brief “team-start.” Each team member rates his or her own mood as green (I’m good), orange (I’m okay but I have a few things I’m concerned about) or red (I’m under stress). The rest of the team doesn’t need to know that you’re under stress because you’re having a dispute with your landlord or you are worried about your ill toddler. How you feel, however, is important because it affects how you should be treated. Next, the team leader asks if there is anything in particular the team needs to know to work more effectively together that shift: For example, “Is there a delay in public transport so we can expect patients to be late for their appointments?,” or “Is there a patient with some kind of special need coming in?” Sharing the answers or results generated by the card questions and activities with the group ensures that the insights stick.
The Dreaded Weekly Status EmailOct 3, 2016
I remember the first time I had to write one of these puppies. I had just been promoted to manager at Yahoo back in 2000, and was running a small team. I was told to “write a status email covering …
ollama
Ollama's new appJul 31, 2025
Ollama has been one of my favorite ways to run local models for a while - it makes it really easy to download models, and it's smart about keeping them …
What is Ollama? Running Local LLMs Made SimpleJul 4, 2025
Ready to become a certified watsonx AI Assistant Engineer? Register now and use code IBMTechYT20 for 20% off of your exam → https://ibm.biz/Bdnd3dLearn more ...
ollama with docker composeMay 3, 2025
Learn how to use Ollama and Open WebUI inside Docker with Docker compose to run any open LLM and create your own mini ChatGPT.
ollama APIsMay 3, 2025
Learn how to use Ollama APIs like generate, chat and more like list model, pull model, etc with cURL and Jq with useful examples
What is Ollama and how to use it: a quick guide [part 1]May 3, 2025
Learn what Ollama is, its features and how to run it on your local machine with DeepSeek R1 and Smollm2 models
Ollama commands: How to use Ollama in the command line [Part 2]May 3, 2025
Learn about the important Ollama commands to run Ollama on your local machine with Smollm2 and Qwen 2.5 models
onboarding
Onboarding Success: Learn the Cold Start AlgorithmAug 28, 2025
Master the art of onboarding with proactive strategies. Discover how to quickly adapt and make an impact in your new tech role.
How to Build and Scale OnboardingApr 23, 2025
Superhuman became known for its unique approach to onboarding: a highly-personalized, white-glove, human-led experience. Superhuman's Gaurav Vohra, startup advisor and growth leader, gives us a detailed look at how he built and scaled the program.
Improve Developer Onboarding With an Internal Developer PortalDec 1, 2024
Onboarding can be a well-documented, up-to-date, repeatable process that helps new hires become productive quickly without having to ask so many questions.
Build Your Culture Like a Product — Lessons from Asana’s Head of PeopleApr 12, 2024
Anna Binder, Asana's Head of People and the company's first HR hire, shares her step-by-step approach to intentionally building the company culture.
How data can reveal weaknesses in your customer onboarding processSep 5, 2022
Customer retention begins at onboarding, so use these metrics to help you track the success of your customer onboarding processes.
Valve handbook low resJul 19, 2022
A Career Cold Start AlgorithmJul 18, 2022
Starting a new job can be stressful so I've developed an algorithm that has helped me get up to speed quickly.
Welcome Email to New Client | 17 Examples of Highly Effective Welcome EmailsJul 18, 2022
Learn everything you need to know about creating an effective welcome email in these 17 examples. Read more.
User Onboarding: Principles and GuidelinesJan 12, 2022
Web magazine about user experience matters, providing insights and inspiration for the user experience community
A week by week plan for starting to manage a new team – Mike CrittendenDec 10, 2020
Because I’m not good enough to wing it.
Six Lessons from Six Months at ShopifyNov 3, 2020
I’m now six months into Shopify. So far it’s going basically on schedule: as I was told, “Your first couple months you’re going to have zero idea what’s going on. Then around month three you’ll com…
The Definitive Guide to User Onboarding: Part OneDec 23, 2019
Welcome to the largest collection of Product-Led Growth articles, videos, and podcasts all in one place. Whether you're looking for advice on product-led growth, sales, marketing or onboarding, we have it all. Let's turn your product into a powerful growth engine today.
A scalable plan for onboarding your first 500 employeesOct 25, 2019
Employee onboarding is a critical moment when new hires begin integrating into the culture and workflows of their new company.
The Subtle Art of User Onboarding & AdoptionAug 29, 2019
The “traditional” user onboarding flows and walkthroughs are dead. Learn about the next era of user onboarding and how to adapt to the changes in your org.
5 essential onboarding tactics for complex productsAug 29, 2019
The ideal onboarding path is an easy and frictionless path to finding value. But some products include irreducible complexity – so here are 5 techniques that help to create the magic of a consumer onboarding flow in a complex product with considered actions.
Onboarding a product manager – do’s and don’ts in the first few weeksOct 10, 2017
Want to get the most out of your first month as a product manager? Want your new hire to hit the ground running? Here's our best practices.
open-source
Alibaba's small, open source Qwen3.5-9B beats OpenAI's gpt-oss-120B and can run on standard laptopsMar 2, 2026
Whether it is a 0.8B model running on a smartphone or a 9B model powering a coding terminal, the Qwen3.5 series is effectively democratizing the "agentic era."
Motorola confirms GrapheneOS support for a future phone, bringing over featuresMar 2, 2026
Motorola has announced a partnership with GrapheneOS which will see a phone with support, as well as features ported to other devices.
FPGAs Need a New FutureDec 10, 2025
FPGAs are limited by outdated proprietary software. Learn how embracing open-source tools is necessary to modernize FPGA development and unlock their full potential.
That ‘cheap’ open-source AI model is actually burning through your compute budgetAug 15, 2025
New research reveals open-source AI models use up to 10 times more computing resources than closed alternatives, potentially negating cost advantages for enterprise deployments.
May 2024 Crawl Archive Now AvailableJun 4, 2024
The crawl archive for May 2024 is now available. The data was crawled between May 18th and May 31st, and contains 2.7 billion web pages (or 377 TiB of uncompressed content). This is our 100th crawl!
The future of foundation models is closed-sourceMay 26, 2024
if the centralizing forces of data and compute hold, open and closed-source AI cannot both dominate long-term
The xz Hack Revealed a Looming $8.8 Trillion Infrastructure DisasterMay 11, 2024
Just like our roads, bridges, electrical grid and airports will deteriorate without public investment, so will our software infrastructure without action.
OpenTofu: The Open Source Terraform AlternativeApr 11, 2024
What is OpenTofu OpenTofu is an open-source Terraform fork, a drop-in replacement for...
What are the best AI freeware of 2024?Apr 10, 2024
Artificial intelligence (AI) has become an integral part of our daily lives and these best AI freeware of 2024 are
RAG Step-by-Step: Open Source EditionApr 8, 2024
In a previous post, I demonstrated how to implement RAG using the Load-Transform-Embed-Store...
Top Open Source Large Language Models (LLMs) Available For Commercial UseApr 5, 2024
The top open source Large Language Models available for commercial use are as follows. Llama - 2 Meta released Llama 2, a set of pretrained and refined LLMs, along with Llama 2-Chat, a version of Llama 2. These models are scalable up to 70 billion parameters. It was discovered after extensive testing on safety and helpfulness-focused benchmarks that Llama 2-Chat models perform better than current open-source models in most cases. Human evaluations have shown that they align well with several closed-source models. The researchers have even taken a few steps to guarantee the security of these models. This includes annotating
MagmaDec 8, 2022
Magma is an open-source software platform that gives network operators an open, flexible and extensible mobile core network solution.
The 6 Common Open-Source Licenses and What They MeanJun 8, 2021
Open-source software is one of the most influential initiatives ever made in the history of computer science and programming. The phrase “open source” means something that’s open for people to use…
Why I wouldn't invest in open-source companies, even though I ran one.Apr 4, 2021
After more than 12.000 Github stars, two successful open-source projects, a failed open-core company, and a successful prop-tech one*, I feel more than ever that giving your product away for free is just as bad a business strategy as it sounds.
Open Source Supply Chains Can Fix Your Dependency HeadachesOct 24, 2003
Automated updates and community-driven tools like OpenRewrite help developers tackle dependency challenges and streamline software maintenance.
openai
OpenAI’s Windows PlayOct 13, 2025
OpenAI is making a play to be the Windows of AI: the all-encompassing platform that controls both hardware supplier and software developers.
GPT-4.1 Prompting Guide | OpenAI CookbookMay 15, 2025
Open-source examples and guides for building with the OpenAI API. Browse a collection of snippets, advanced techniques and walkthroughs. Share your own examples and guides.
How to respect OpenAI's rate limits in RailsApr 10, 2025
As it turns out, OpenAI’s rate limits are a little more complicated than other APIs.
DeepSeek-R1 vs. OpenAI’s o1: A New Step in Open Source and Proprietary ModelsJan 26, 2025
AI has entered an era of the rise of competitive and groundbreaking large language models and multimodal models. The development has two sides, one with open source and the other being propriety models. DeepSeek-R1, an open-source AI model developed by DeepSeek-AI, a Chinese research company, exemplifies this trend. Its emergence has challenged the dominance of proprietary models such as OpenAI’s o1, sparking discussions on cost efficiency, open-source innovation, and global technological leadership in AI. Let’s delve into the development, capabilities, and implications of DeepSeek-R1 while comparing it with OpenAI’s o1 system, considering the contributions of both spaces. DeepSeek-R1 DeepSeek-R1 is
LangChain vs OpenAI API: When Simplicity Meets Scalability | Aditya Bhattacharya | Blogs WebsiteDec 13, 2024
This blog explores a detailed comparison between the OpenAI API and LangChain, highlighting key differences in performance and developer experience and the low level code for why these differences exist.
Exclusive: OpenAI working on new reasoning technology under code name ‘Strawberry’Jul 14, 2024
ChatGPT maker OpenAI is working on a novel approach to its artificial intelligence models in a project code-named “Strawberry,” according to a person familiar with the matter and internal documentation reviewed by Reuters.
How to Summarize Large Documents with LangChain and OpenAIMay 11, 2024
There are still some limitations when summarizing very large documents. Here are some ways to mitigate these effects.
OpenAI’s ChatGPT-powered search engine to be introduced next weekMay 11, 2024
The search engine war is heating up. ChatGPT may introduce its search engine, which will rival Google, on Monday. Although
SearchGPT: What you need to know about OpenAI’s search engineSep 24, 2012
Unpack the key features and marketing insights of SearchGPT, OpenAI’s innovative search tool and its potential to rival Google’s dominance.
How to prompt on GPT-o1Sep 24, 2012
OpenAI's new reasoning model o1 behaves differently than previous models. So users have to prompt it differently than GPT-4 or even 4o.
openclaw
OpenClaw: The Viral AI Agent that Broke the Internet - Peter Steinberger | Lex Fridman Podcast #491Feb 12, 2026
Peter Steinberger is the creator of OpenClaw, an open-source AI agent framework that's the fastest-growing project in GitHub history.Thank you for listening ...
opencv
How to cartoonize an image with PythonMay 24, 2021
In this tutorial, I will show you how to give a cartoon-effect to an image in Python with OpenCV. Op...
nandinib1999/object-detection-yolo-opencv: Object Detection using Yolo V3 and OpenCVApr 1, 2020
Object Detection using Yolo V3 and OpenCV .
optics-photonics
Say Goodbye to the Undersea Cable That Made the Global Internet PossibleFeb 25, 2026
History was unmade last year, as engineers began the massive project of ripping the first-ever transoceanic fiber-optic cable from the ocean floor. Just don’t mention sharks.
Co Packaged Optics (CPO) – Scaling with Light for the Next Wave of InterconnectJan 2, 2026
Co-Packaged Optics (CPO) has long promised to transform datacenter connectivity, but it has taken a long time for the technology to come to market, with tangible deployment-ready products only arriving in 2025.
LIDAR, optical distance & time of flight sensors | ams OSRAMSep 22, 2025
Fully integrated dToF modules and iToF VCSEL illuminators for short range applications. Laser sources for long range LIDAR systems.
These ‘glass straw’ optical fibres could speed up the InternetSep 2, 2025
A cable design that sends light through air, rather than solid glass, could cut signal loss and make long-distance transmissions cheaper.
X-pSRAM: A Photonic SRAM with Embedded XOR Logic for Ultra-Fast...Jul 28, 2025
Traditional von Neumann architectures suffer from fundamental bottlenecks due to continuous data movement between memory and processing units, a challenge that worsens with technology scaling as electrical interconnect delays become more significant. These limitations impede the performance and energy efficiency required for modern data-intensive applications. In contrast, photonic in-memory computing presents a promising alternative by harnessing the advantages of light, enabling ultra-fast data propagation without length-dependent impedance, thereby significantly reducing computational latency and energy consumption. This work proposes a novel differential photonic static random access memory (pSRAM) bitcell that facilitates electro-optic data storage while enabling ultra-fast in-memory Boolean XOR computation. By employing cross-coupled microring resonators and differential photodiodes, the XOR-augmented pSRAM (X-pSRAM) bitcell achieves at least 10 GHz read, write, and compute operations entirely in the optical domain. Additionally, wavelength-division multiplexing (WDM) enables n-bit XOR computation in a single-shot operation, supporting massively parallel processing and enhanced computational efficiency. Validated on GlobalFoundries' 45SPCLO node, the X-pSRAM consumed 13.2 fJ energy per bit for XOR computation, representing a significant advancement toward next-generation optical computing with applications in cryptography, hyperdimensional computing, and neural networks.
Optical Lens Design Forms: An Ultimate Guide to the types of lens designMay 23, 2025
This Guide is a birds-eye-view of all the optical systems and lens design forms out there, and will be an essential tool for any lens designer's toolbox.
A Crucial Optical Technology Has Finally ArrivedMar 25, 2025
Nvidia's endorsement of co-packaged optics means the time is right
Lumai Tackles Photonic’s Issues with Free Space OpticsDec 12, 2024
Lumai's breakthrough in AI acceleration with free-space optics promises energy cuts and faster processing.
Lessons from Optics, The Other Deep LearningNov 25, 2024
Musings on systems, information, learning, and optimization.
One Laser To Pump Up AI Interconnect Bandwidth By 10XOct 27, 2024
According to rumors, Nvidia is not expected to deliver optical interconnects for its GPU memory-lashing NVLink protocol until the “Rubin Ultra” GPU
Mini Review of Photodetectors and Image Sensors: Materials and FabricationOct 19, 2024
A new technical paper titled “Image Sensors and Photodetectors Based on Low-Carbon Footprint Solution-Processed Semiconductors” was published by researchers at Cardiff University. Abstract “This mini-review explores the evolution of image sensors, essential electronic components increasingly integrated into daily life. Traditional manufacturing methods for image sensors and photodetectors, employing high carbon footprint techniques like thermal evaporation... » read more
Intel Unveils World’s First Optical Interconnect, Utilizing The Power of PhJun 28, 2024
Intel has achieved a breakthrough in silicon photonics,unveiling world's first fully integrated optical compute interconnect for AI markets.
How Do Lasers Work? | ExtremetechMay 13, 2024
We explain how lasers work and all the fascinating ways they're being used.
4 Fiber Optic Networking Spotlights From the Optical Fiber ConferenceApr 2, 2024
Some of the leaders of the networking industry showed up to the Optical Fiber Conference, including Broadcom, MediaTek, Semtech, and MaxLinear.
The Challenges Of Working With PhotonicsApr 1, 2024
From curvilinear designs to thermal vulnerabilities, what engineers need to know about the advantages and disadvantages of photonics.
Photonic Chip Design Rethink Could Cut Data Center Energy UseJul 24, 2023
Leveraging novel photonic circuit designs, researchers hope to lower electricity consumption in data centers.
Photonic Chips Curb AI Training’s Energy AppetiteMay 22, 2023
Stanford team achieves first-ever optical backpropagation milestone
Salience Labs advances its AI agenda using new chip designApr 26, 2023
Vaysh Kewada, CEO and Co-Founder of Salience Labs, advances AI by circumventing finite processing power with a revolutionary new chip design.
4 Ways to Put Lasers on Silicon - IEEE SpectrumApr 9, 2023
You can make many things with silicon photonics, but a laser is not one of them
Lenses Are Being Reinvented, and Cameras Will Never Be the Same | MIT TechnApr 9, 2023
“Metalenses” created with photolithography could change the nature of imaging and optical processing.
Kenneth Finnegan (@kwf@social.afront.org)Dec 13, 2022
Attached: 2 images One of my nice friends at Hurricane Electric gave me a dead 100G-LR4 optic to tear apart for your entertainment, so for the sake of your entertainment, lets dig into it! 🧵
Ayar Labs: Solving Bandwidth and Power Bottlenecks with Optical I/OJul 8, 2022
Ayar Labs solves bandwidth and power bottlenecks by moving data using light. We built the world's first optical I/O chiplets.
Intel® Silicon PhotonicsJul 8, 2022
Intel® Silicon Photonics combines the manufacturing scale and capability of silicon with the power of light onto a single chip.
Intel Showcases a Photonics “First” — an Eight-wavelength Laser Array - NewsJul 8, 2022
Intel Lab researchers push photonics one step further by demonstrating a tightly controlled, highly integrated eight-wavelength laser.
Tutorial: New and Updated - Everything You Always Wanted to Know About OptiJul 8, 2022
NANOG is the professional association for Internet engineering, architecture and operations.
Intel announces silicon photonics advancement towards optical I/OJul 5, 2022
Intel has demonstrated an eight-wavelength laser array on a silicon wafer paving the way for the next generation of integrated silicon photonics products.
Will optics replace copper interconnects? We asked Ayar LabsJun 21, 2022
Star Trek's glowing circuit boards may not be so crazy
The next wave of innovation in photonicsJul 2, 2021
More end products are integrating lasers with sensors and optics, opening new opportunities for photonics manufacturers.
Tutorial Everything You Always Wanted to Know About Optical NetworkingMar 10, 2021
NANOG is the professional association for Internet engineering, architecture and operations.
Optical Antennas Promise ‘Unlimited’ Data CapacityMar 5, 2021
The breakthrough is taking full advantage of the orbital angular momentum properties of a coherent light source, thus enabling multiplexing.
Intro to Fiber-Optic Communication SystemsFeb 4, 2021
Learn some basic, foundational info about fiber optic communication systems in this primer.
Networking at the Speed of Light: Understanding and Using Fiber OpticsDec 18, 2020
Our current networking technology was unfathomable just ten years ago. Now thanks to using fiber optics, data transmits faster than before.
Making Light More ReliableFeb 19, 2020
Silicon photonics is a promising technology, but it may take a while.
Lightelligence releases prototype of its optical AI accelerator chipApr 16, 2019
Boston-based startup Lightelligence's optical machine learning accelerator has entered prototyping stage, the startup announced.
Startup Sheds Some Light On Optical ProcessingMar 14, 2019
Optalysys, a startup based in the United Kingdom, has introduced an entry-level optical coprocessor, the first such system of its kind on the market. The
https://frontnet.eu/new-milestone-661-tbit-s-data-rate-over-a-fiber-optic-cable-reached/Oct 12, 2018
The Beginning of the End for CopperNov 27, 2017
The FCC voted last Thursday to relax the rules for retiring copper wiring. This change was specifically aimed at Verizon and AT&T and is going to make it a lot easier for them to tear down old …
The Long Road to Fiber OpticsSep 24, 2012
Over the past six decades, advances in computers and microprocessors have completely reshaped our world.
optimization
A Coding Guide to Implement Advanced Hyperparameter Optimization with Optuna using Pruning Multi-Objective Search, Early Stopping, and Deep Visual Analysis - MarkTechPostNov 17, 2025
A Coding Guide to Implement Advanced Hyperparameter Optimization with Optuna using Pruning Multi-Objective Search, Early Stopping, and Deep Visual Analysis
QOpt / QOBLIB - Quantum Optimization Benchmarking Library · GitLabApr 26, 2025
This is the ZIB GitLab instance
Optimization-Algorithms-Book/Code-ListingsApr 9, 2025
Code Listings for the book: Optimization Algorithms. Manning Publications, 2024. - Optimization-Algorithms-Book/Code-Listings
What is convex optimization? - DataconomyApr 4, 2025
Convex optimization is a specialized area of optimization focusing on problems where the objective function is convex and exhibits a unique global minimum.
NVIDIA Open-Sources cuOpt for Decision Optimization | NVIDIA BlogMar 19, 2025
Industry leaders advance complex decision-making and supply chain optimization with NVIDIA accelerated computing and cuOpt software.
NVIDIA Open-Sources cuOpt: An AI-Powered Decision Optimization Engine–Unlocking Real-Time Optimization at an Unprecedented ScaleMar 19, 2025
NVIDIA Open-Sources cuOpt: An AI-Powered Decision Optimization Engine--Unlocking Real-Time Optimization at an Unprecedented Scale
Understanding and Implementing Genetic Algorithms in PythonJun 25, 2024
Understanding what genetic algorithms are and how they can be implemented in Python.
The Math behind Adam Optimizer | by Cristian Leo | in Towards Data ScienceMar 5, 2024
Why is Adam the most popular optimizer in Deep Learning? Let's understand it by diving into...
Particle Swarm Optimization (PSO) from scratch. Simplest explanation in pytMar 3, 2024
How to implement PSO
Meet Optuna: An Automatic Hyperparameter Optimization Software Framework DeFeb 25, 2024
In machine learning, finding the perfect settings for a model to work at its best can be like looking for a needle in a haystack. This process, known as hyperparameter optimization, involves tweaking the settings that govern how the model learns. It's crucial because the right combination can significantly improve a model's accuracy and efficiency. However, this process can be time-consuming and complex, requiring extensive trial and error. Traditionally, researchers and developers have resorted to manual tuning or using grid search and random search methods to find the best hyperparameters. These methods do work to some extent but could be
Stop Overusing Scikit-Learn and Try OR-Tools InsteadJan 26, 2024
Many Data Scientists overuse ML and neglect Mathematical Optimisation, even though it’s great for your career and easy to learn
Demand Forecasting and Inventory Optimization using PythonAug 29, 2023
In this article, I'll take you through the task of Demand Forecasting and Inventory Optimization using Python.
Exploring Genetic Algorithms with RubyJul 26, 2023
Introduction: In the quest to solve complex optimization problems and simulate natural evolution,...
A Beginner’s Guide to Linear Programming and the Simplex AlgorithmJan 23, 2023
Tackling a wide range of optimization problems.
Supply Chain Process Optimization using Linear ProgrammingJul 27, 2022
Understand how linear programming can be the most powerful tool for a supply chain continuous improvement engineer
Complete Step-by-step Particle Swarm Optimization Algorithm from ScratchJun 23, 2022
And its implementation for solving a nonlinear control theory problem
Complete Step-by-step Genetic Algorithm from Scratch for Global OptimizationJun 22, 2022
No need to worry about getting stuck in local minima anymore
The Kaggle Way to Tune Hyperparameters with OptunaJan 16, 2022
Easily and efficiently optimize your model’s hyperparameters with Optuna with a mini project
https://ruder.io/optimizing-gradient-descent/May 29, 2021
BFGS in a Nutshell: An Introduction to Quasi-Newton MethodsMar 8, 2021
Demystifying the inner workings of BFGS optimization
Gradient-Free-Optimizers A collection of modern optimization methods in PytMar 1, 2021
Simple and reliable optimization with local, global, population-based and sequential techniques in numerical discrete search spaces. - SimonBlanke/Gradient-Free-Optimizers
10 Stochastic Gradient Descent Optimisation Algorithms Cheat Sheet | by RJan 2, 2021
Stochastic gradient descent optimisation algorithms you should know for deep learning
BFGS in a Nutshell: An Introduction to Quasi-Newton MethodsDec 23, 2020
Demystifying the inner workings of BFGS optimization
Particle Swarm Optimization Visually ExplainedDec 22, 2020
Learn PSO algorithm as a bedtime story with GIFs and python code
Eecs227atJun 8, 2018
Swarm Optimization: Goodbye Gradients - DataScienceCentral.comMay 12, 2018
Fish schools, bird flocks, and bee swarms. These combinations of real-time biological systems can blend knowledge, exploration, and exploitation to unify intelligence and solve problems more efficiently. There’s no centralized control. These simple agents interact locally, within their environment, and new behaviors emerge from the group as a whole. In the world of evolutionary alogirthms… Read More »Swarm Optimization: Goodbye Gradients
origami
A Beginner’s Guide to Origami Techniques (Japanese Paper Folding) | TheCollectorDec 31, 2025
Origami is not just a hobby but also a technique that proved itself useful in mathematics, engineering, and medicine. Here are some origami instructions!
Origami Patterns Solve a Major Physics Riddle | Quanta MagazineOct 6, 2025
The amplituhedron, a shape at the heart of particle physics, appears to be deeply connected to the mathematics of paper folding.
foldMation - Origami Simulator and CreatorFeb 5, 2024
Learn and Create Origami Folding Simulations and Animations Online
Paper Airplane DesignsDec 21, 2022
A database of paper airplanes with easy to follow folding instructions, video tutorials and printable folding plans. Find the best paper airplanes!
The Atomic Theory of OrigamiJul 9, 2022
By reimagining the kinks and folds of origami as atoms in a lattice, researchers are uncovering strange behavior hiding in simple structures.
The Mathematics Behind Origami, the Ancient Japanese Art of Paper FoldingMar 23, 2021
In many cases that understanding is intuitive; in the TED-Ed lesson above, origami artist Evan Zodl makes it explicit.
p2p
PeerTube v3: it’s a live, a liiiiive ! – FramablogJan 14, 2021
Today we are releasing a major new version of PeerTube, our alternative to centralized video platforms like YouTube. Please note: La version Française (originale) de cet article est disponible ici...
packages
How uv got so fastDec 27, 2025
uv’s speed comes from engineering decisions, not just Rust. Static metadata, dropping legacy formats, and standards that didn’t exist five years ago.
uv is the best thing to happen to the Python ecosystem in a decade - Blog - Dr. Emily L. HuntOct 30, 2025
Released in 2024, uv is hands-down the best tool for managing Python installations and dependencies. Here's why.
rv, a new kind of Ruby management toolAug 27, 2025
For the last ten years or so of working on Bundler, I’ve had a wish rattling around: I want a better dependency manager. It doesn’t just manage your gems, it manages your ruby versions, too. It doesn’t just manage your ruby versions, it installs pre-compiled rubies so you don’t have to wait for ruby to compile from source every time. And more than all of that, it makes it completely trivial to run any script or tool written in ruby, even if that script or tool needs a different ruby than your application does.
Introduction to FlatpakAug 17, 2025
The universal packaging system from Fedora is popular among developers and desktop Linux users.
pyx: a Python-native package registry, now in BetaAug 14, 2025
pyx is a Python-native package registry from the creators of uv.
Why Flatpak Apps Use So Much Disk Space On LinuxMay 5, 2025
This tutorial explains why Flatpak apps use so much disk space and are larger in size compared to traditional packages in Linux.
Packaging a Python App to Executable .deb BinaryMar 18, 2025
I am sharing how I packaged my python application into an executable .deb package in this tutorial.
The magic of dependency resolutionJul 15, 2023
Dependency resolution is something programmers usually take for granted. Be it cargo, npm, or whatever package manager you use, no one is actually surprised when this black-box figures out, all by itself, the specific set of packages that should be installed. To me, though, it is a fascinating feat. It feels magical when a machine solves an abstract problem like that, with minimal input from me as a user! I was, therefore, delighted when the nice folks at Prefix.
Package Managers: Understanding npm, npx and yarnMay 27, 2023
In the development scenario using JavaScript/TypeScript, it is unthinkable to build professional...
Npm vs Yarn: What Should you use for managing packages in React?Feb 11, 2023
Both npm (Node Package Manager) and Yarn are popular package managers for JavaScript projects,...
PyPI · The Python Package IndexJan 16, 2023
The Python Package Index (PyPI) is a repository of software for the Python programming language.
What Is Nix and Why You Should Use ItMar 23, 2022
Learn how the Nix package manager can help you make the development process more efficient and simpler.
packaging
Interconnect Innovations In High Bandwidth Memory: Part 2Oct 14, 2025
Bump technologies are being pushed beyond what was thought to be their physical and performance limits.
10 Best Boxed WinesOct 6, 2025
Thoughtful winemakers, motivated by environmental concerns, are turning to boxes.
What Declining Cardboard Box Sales Tell Us About the US EconomyAug 17, 2025
Box demand touches nearly every industry, from flat-screen TVs to packaged food, all of which see sales fluctuate based on how flush shoppers feel.
On-Die And In-Package InterconnectsJul 28, 2025
A 94-page research report on interconnect fundamentals for semiconductor engineers.
TSMC’s Cutting-Edge SoW-X Packaging Set For Mass Production By 2027; Delivering 40x Higher Computi…Apr 24, 2025
TSMC also revealed developments in advanced packaging technologies at the NA Technology Symposium, and they look interesting.
World in a Box: Cardboard Media and the Geographic ImaginationDec 13, 2024
Cardboard boxes hold a world of meaning — a geography of consumption, disposal, and reuse — that spans from Amazon to the Container Corporation of America.
Trendy olive oil brand Graza is cracking open a new way to refill its iconiMay 10, 2024
The go-to olive oil for TikTok chefs and shoppy shops is making a play for sustainability-minded consumers—with characteristic playfulness.
Use ‘Look Inside’ to Sell More ProductsMay 25, 2023
The benefits of Amazon's "Look inside" book label applies to many products. Apparel, bags, housewares, and more could experience more conversions with an inside peek.
How Unnecessary Paper Packaging Creates the Illusion of SustainabilityApr 29, 2023
As global consumers grow increasingly conscious of the environmental toll of plastic packaging, many brands have taken steps to reduce their use of plastic. But at the same time, some brands have adopted a much less productive approach to the anti-plastic movement: They’ve begun adding superfluous paper packaging on top of plastic packaging in order to make their products look more environmentally friendly without actually reducing plastic waste. The authors’ research demonstrates that this sort of overpackaging can indeed be effective in boosting consumers’ perceptions of sustainability, despite the fact that it is demonstrably worse for the environment (not to mention more expensive for manufacturers). However, they also found that simply adding a “minimal packaging” label to plastic packages can reduce the misperception that overpackaged products are more sustainable, enabling brands to attract environmentally-conscious consumers without creating unnecessary paper waste.
Samsung steps up fan-out wafer-level packaging deploymentApr 7, 2023
Samsung Electronics has stepped up its deployment in the fan-out (FO) wafer-level packaging segment with plans to set up related production lines in Japan, according to industry sources.
How A Marketer Started A $500K/Month Custom Packaging BusinessMar 28, 2023
Hello! Who are you and what business did you start?I am Salman Shahid, a digital marketing expert and the founder of OXO Packaging. We are a custom packaging manufacturer for small to medium-scale businesses across the USA and Australia. At OXO Packaging, we provide packaging solutions ...
What cardboard can tell us about the economyFeb 3, 2023
We can learn more from boxes than you might expect.
Where Does All the Cardboard Come From? I Had to Know. (Published 2022)Dec 5, 2022
Entire forests and enormous factories running 24/7 can barely keep up with demand. This is how the cardboard economy works.
NakedPack uses edible, soluble food packaging to give you a complete mealSep 14, 2022
https://vimeo.com/721917759?embedded=true&source=vimeo_logo&owner=125548125 One of the most wasteful and mostly non-biodegradable things we have lying around is food packaging. But if you buy your food or ingredients in "traditional" supermarkets or from the usual brands, you know that sustainable packaging is not their utmost priority. There are product designers and creators out there that are concerned about
How Package Designers Use Science to Influence Your Subconscious MindJul 19, 2022
How do you sell shoppers on duck, a product that’s served in many restaurants but that many people do not feel comfortable cooking at home?
Neil Patel's Digital Marketing BlogJul 18, 2022
Your #1 resource for digital marketing tips, trends, and strategy to help you build a successful online business.
Five Questions Companies Should Ask Before Making an Innovation-Driven AcquisitionJul 5, 2022
The Swiss pharmaceutical giant Roche is nothing if not determined in its quest to acquire Illumina, the San Diego-based leader in genetic-sequencing equipment. In January, after Illumina’s board rebuffed Roche’s initial overtures, Roche made a $5.7 billion tender offer directly to shareholders. When that didn’t succeed, it extended the offer to midnight last Friday. Now […]
Packaging Inserts: Types and How To Create Yours (2024) - ShopifyJun 13, 2022
Increase customer loyalty and take advantage of an additional opportunity to connect with customers by using packaging inserts. Here's why and how to use them in every package you send out.
Awesome Package Design Blogs to Inspire Your WorkFeb 24, 2022
If you’re a creative entrepreneur who understands the power of branding in your packaging design, you’re already
The Package Is the MessageNov 29, 2021
American consumers can’t resist the lure of a well-designed container. Of all the things I’ve purchased during the pandemic, the most useful has been a box cutter.
Marks & Spencer and Whole Foods Show Why Food Package Design Matters - TheNov 29, 2021
European stores like Marks & Spencer and Monoprix, and U.S. chains like Whole Foods, understand the powerful "appetite appeal" of grocery labels.
Finding Memories in Reused Food Containers Like Cool Whip - The New York TiNov 28, 2021
The containers we use over and over, from Cool Whip tubs to Taster’s Choice jars, can evoke stronger feelings than the food that came in them.
Six emerging trends in product packagingJul 25, 2021
In the modern business world, there are several businesses releasing similar products into the market.
Here’s Why Your Ecommerce Subscriptions Aren’t SellingMar 30, 2021
A recurring subscription model is a powerful tool for growth and profit — if you can get subscribers. "A lot of brands install our subscription software
Product Packaging designs so innovative, they make it impossible to say a nJan 7, 2021
In today's consumer-centric world, packaging designs hold a very important place! A unique and attractive packaging design is what captures the interest and attention of your consumer. It pulls the consumer towards the product and even drives them to purchase it. Hence, allocating time, effort, and energy to create an appealing packaging design is extremely
10 basic advanced IC packaging terms to knowDec 29, 2020
Engineers must keep pace with advanced IC packaging technology as it evolves rapidly, starting with understanding the basic terms.
Semiconductor Assembly GlossaryDec 22, 2020
https://www.edn.com/lost-in-the-advanced-ic-packaging-labyrinth-know-these-10-basic-terms/Dec 18, 2020
Explainer on Packaging: Interposers, Bridges and ChipletsNov 29, 2020
The IC industry is renewing its focus on advanced packaging. Chiplets may be the least mature option, but it is also one of the most widely promising. A conversation with Intel's Ramune Nagisetty.
Amazon and Target race to revolutionize the cardboard shipping boxMay 8, 2019
The box has never looked better.
Laundry detergent or boxed wine? How e-commerce is changing packagingFeb 5, 2019
Manufacturers are developing two packaging designs for the same product: those destined for the retail shelf and those sent directly to consumers.
A Machine Learning Approach to Shipping Box Design. (arXiv:1809.10210v1 [stSep 29, 2018
Having the right assortment of shipping boxes in the fulfillment warehouse to pack and ship customer's online orders is an indispensable and integral part of nowadays eCommerce business, as it...
FlipChip Package OverviewNov 27, 2017
If you were uncertain about the term “FlipChip” this tutorial will help you better understand what FlipChip packaging technology is all about. FlipChip package technology has been around for 3-4 decades and started as a package solution for high pin count & high performance package requirements. At the beginning, the majority of FlipChip
paint
The Journey of Lapis Lazuli, Art’s Most Prized Pigment | TheCollectorOct 1, 2025
What is Lapis Lazuli? What are its origins? How has it persisted throughout the history of art?
How a Norwegian chemist defeated lead paintAug 20, 2025
Lead paint was banned. Before that, it was outcompeted by a cheap and safe alternative.
‘Self-Cleaning’ Paint Could Break Down Pollutants on Surfaces and from theMay 21, 2024
Recycled materials contribute to a pollutant-neutralizing paint
Watching Paint Dry - by Ed Conway - Material WorldMay 24, 2023
The unexpectedly interesting story of car coatings and what they tell us about the modern world
pandas
pandas - Python Data Analysis LibraryJan 28, 2026
Statology Sprint: Building Spatial Analysis Skills with GeoPandasMay 16, 2025
Learn to transform geographic data into actionable insights using GeoPandas. From basic maps to finding Chicago's health deserts — complete tutorial inside.
https://www.statology.org/how-to-effectively-work-with-excel-files-in-python-pandas-vs-openpyxl-guide/Mar 19, 2025
In this article, we'll explore when and why you might want to use openpyxl directly, and understand its relationship with pandas.
Lior S.’s PostJul 15, 2024
You can add Generative AI to Pandas and chat with your dataset with a single line of code. The PandasAI library allows you to analyze complex data frames… | 139 comments on LinkedIn
Converting JSONs to Pandas DataFrames: Parsing Them the Right WayFeb 3, 2024
Navigating Complex Data Structures with Python's json_normalize.
Beyond Numpy and Pandas: Unlocking the Potential of Lesser-Known Python LibSep 1, 2023
3 Python libraries for scientific computation you should know as a data professional.
Geospatial Data Analysis with GeoPandasMay 7, 2023
Learn how to manipulate and visualize vector data with Python’s GeoPandas
An Introduction to Polars for Pandas UsersApr 9, 2023
Demonstrating how to use the new blazing fast DataFrame library for interacting with tabular data
40 Open-Source Tools to Supercharge Your Pandas WorkflowFeb 17, 2023
Pandas receives over 3M downloads per day. But 99% of its users are not using it to its full potential.
Seven Killer Memory Optimization Techniques Every Pandas User Should KnowAug 23, 2022
Simple tips to optimize the memory utilization in Pandas
Getting your reading history out of Pocket using Python | by Alex D'Ambra |Jun 23, 2022
I’ve been using Pocket for many years to collate all the articles, blog posts, recipes, etcI’ve found online. I decided it would be…
Breaking Down the Powerful Magic Behind the Pandas GroupBy FunctionMay 4, 2022
A detailed explanation of how groupby works under the hood to help you understand it better.
pandas - Python Data Analysis LibraryJan 16, 2022
python-data-science-handbook/pandas at master · bjpcjp/python-data-science-handbookJan 16, 2022
Sourced from O'Reilly ebook of the same name.
pandas-tips-tricks/pandas-tips-tricks.ipynb at master · bjpcjp/pandas-tips-tricksDec 15, 2021
various tips and tricks.
3 (and Half) Powerful Tricks To Effectively Read CSV Data In PythonDec 7, 2021
Master usecols, chunksize, parse_dates in pandas read_csv().
15 Python Snippets to Optimize your Data Science PipelineAug 28, 2021
Quick Python solutions to help your data science cycle.
Read Excel files with Python. 1000x Faster.Jul 3, 2021
In this article, I’ll show you five ways to load data in Python. Achieving a speedup of 3 orders of magnitude.
Make Pandas 3 Times Faster with PyPolarsMay 31, 2021
Learn how to speed up your Pandas workflow using the PyPolars library.
Dask DataFrames — How to Run Pandas in Parallel With EaseMay 28, 2021
Are you a Data Scientist experienced with Pandas? Then you know its pain points. There's an easy solution - Dask - which enables you to run Pandas computations in parallel.
Vaex: Pandas but 1000x fasterMay 17, 2021
If you are working with big data, especially on your local machine, then learning the basics of Vaex, a Python library that enables the fast processing of large datasets, will provide you with a productive alternative to Pandas.
30 Examples to Get You From a Novice to an Advanced Pandas UserMay 2, 2021
Pandas is a data analysis and manipulation library for Python. It is one of the most popular tools among data scientists and analysts. Pandas can handle an entire data analytics pipeline. It provides…
Geopandas Hands-on: Geospatial Relations and OperationsApr 26, 2021
Part 1: Introduction to geospatial concepts (follow here) Part 2: Geospatial visualization and geometry creation (follow here) Part 3: Geospatial operations (this post) Part 4: Building geospatial…
Data Preprocessing in Python Pandas — Part 6 Dropping DuplicatesApr 3, 2021
A quick tutorial to drop duplicates using the Python Pandas library.
11 Pandas Built-in Functions You Should KnowMar 22, 2021
No need to install, import and initialize — Just use them
How to use loc and iloc for selecting data in PandasMar 19, 2021
Pandas tips and tricks to help you get started with data analysis
8 Things to Know to Get Started with With Pandas GroupbyMar 6, 2021
Groupby is so powerful, which may sound daunting to beginners, but you don’t have to know all of its features.
Are You Still Using Pandas to Process Big Data in 2021?Mar 1, 2021
Pandas doesn’t handle well Big Data. These two libraries do! Which one is better? Faster?
Python Pandas and SQLiteNov 3, 2020
Using SQLite to store your Pandas dataframes gives you a persistent store and a way of easily selecting and filtering your data
Pandas on the Cloud with DaskNov 3, 2020
Scaling your Pythonic data science and machine learning to the cloud using Dask. All from the comfort of your own laptop.
3 Key Differences Between Merge and Concat Functions of PandasJun 24, 2020
When and how to use which.
Aggregation, Transform, Filter — How and When to use them?Jun 3, 2020
Pandas: From Journeyman to Master — Voice from the victim.
Pandas with Dask, For an Ultra-Fast NotebookJun 1, 2020
Use Pandas with Dask to save time and resources. This combination will make your notebook ultra fast
3 Highly Practical Operations of PandasJun 1, 2020
Sample, where, isin explained in detail with examples.
Everything You Need to Know About “loc” and “iloc” of PandasMay 19, 2020
Clearly distinguish loc and iloc
Stop Hurting Your Pandas!May 15, 2020
This post will address the issues that can arise when Pandas slicing is used improperly. If you see the warning that reads "A value is trying to be set on a copy of a slice from a DataFrame", this post is for you.
My Top 5 Pandas Data Manipulation FunctionMay 15, 2020
Know your Pandas library function arsenal as a data scientist
mlmachine - Clean ML Experiments, Elegant EDA & Pandas PipelinesMay 15, 2020
This new Python package accelerates notebook-based machine learning experimentation
7 advanced tricks in pandas for data scienceMay 15, 2020
Pandas is the go-to library for data science. These are the shortcuts I use to do repetitive data science tasks faster and simpler.
A Comprehensive Guide to Pandas’ Advanced Features in 20 MinutesMay 15, 2020
A code-along guide for Pandas’ advanced functionalities.
Pandas tips I wish I knew beforeApr 15, 2020
How does pivot work? What is the main pandas building block? And more …
Lesser-known pandas tricks (2019)Apr 1, 2020
5 lesser-known pandas tricks that help you be more productive
How to Export Pandas DataFrame to CSVApr 1, 2020
In this post, we’ll go over how to write DataFrames to CSV files.
Learn how to read data into a Pandas DataFrame in 5 minutesApr 1, 2020
Extract data from different sources
"Pandas" - KDnuggetsMar 20, 2020
Two Pandas functions you must know for easy data manipulation in PythonMar 19, 2020
Master these pandas functions (and methods) to shorten your code, improve performance and avoid headaches.
Please Stop Doing These 5 Things in PandasMar 9, 2020
These mistakes are super common, and super easy to fix.
12 Amazing Pandas & NumPy FunctionsMar 9, 2020
Make your day to day life easier by using these functions in your analysis
Build pipelines with Pandas using “pdpipe” - Towards Data ScienceFeb 19, 2020
We show how to build intuitive and useful pipelines with Pandas DataFrame using a wonderful little library called pdpipe.
How to Speed up Pandas by 4x with one line of codeDec 14, 2019
While Pandas is the library for data processing in Python, it isn't really built for speed. Learn more about the new library, Modin, developed to distribute Pandas' computation to speedup your data prep.
5 Advanced Features of Pandas and How to Use ThemDec 14, 2019
The pandas library offers core functionality when preparing your data using Python. But, many don't go beyond the basics, so learn about these lesser-known advanced methods that will make handling your data easier and cleaner.
Make your own Super Pandas using MultiprocAug 23, 2019
This post is a part of my series on Python Shorts. Some tips on how to use python. This post is about using the computing power we have at hand and applying it to the data structure we use most.
RAPIDS cuDF Unified Memory Accelerates pandas up to 30x on Large DatasetsAug 24, 2009
NVIDIA has released RAPIDS cuDF unified memory and text data processing features that help data scientists continue to use pandas when working with larger and text-heavy datasets in demanding…
paperswithcode
LLM Research Papers: The 2025 List (July to December)Jan 2, 2026
In June, I shared a bonus article with my curated and bookmarked research paper lists to the paid subscribers who make this Substack possible.
LLM Research Papers: The 2025 List (July to December)Dec 31, 2025
A curated list of LLM research papers from July–December 2025, organized by reasoning models, inference-time scaling, architectures, training efficiency, and...
How To Build an LLM-Powered App To Chat with PapersWithCodeFeb 29, 2024
Keep up with the latest ML research
ArXiv.org Reaches a Milestone and a ReckoningJan 10, 2022
Runaway success and underfunding have led to growing pains for the preprint server
PyTorch vs TensorFlow in 2023Dec 14, 2021
Should you use PyTorch vs TensorFlow in 2023? This guide walks through the major pros and cons of PyTorch vs TensorFlow, and how you can pick the right framework.
louisfb01/best_AI_papers_2021: A curated list of the latest breakthroughs in AI (in 2021) by release date with a clear video explanation, link to a more in-depth article, and code.Dec 3, 2021
A curated list of the latest breakthroughs in AI (in 2021) by release date with a clear video explanation, link to a more in-depth article, and code. - louisfb01/best_AI_papers_2021
Four Deep Learning Papers to Read in December 2021Nov 29, 2021
From Sensory Substitution to Decision Transformers, Persistent Evolution Strategies and Sharpness-Aware Minimization
Papers with Code - Paper with Code NewsletterJul 20, 2021
Papers With Code highlights trending Machine Learning research and the code to implement it.
Papers with Code 2020 ReviewJan 2, 2021
Papers with Code indexes various machine learning artifacts — papers, code, results — to facilitate discovery and comparison. Using this…
Methodology | Papers With CodeDec 21, 2020
**Representation Learning** is a process in machine learning where algorithms extract meaningful patterns from raw data to create representations that are easier to understand and process. These representations can be designed for interpretability, reveal hidden features, or be used for transfer learning. They are valuable across many fundamental machine learning tasks like [image classification](/task/image-classification) and [retrieval](/task/image-retrieval). Deep neural networks can be considered representation learning models that typically encode information which is projected into a different subspace. These representations are then usually passed on to a linear classifier to, for instance, train a classifier. Representation learning can be divided into: - **Supervised representation learning**: learning representations on task A using annotated data and used to solve task B - **Unsupervised representation learning**: learning representations on a task in an unsupervised way (label-free data). These are then used to address downstream tasks and reducing the need for annotated data when learning news tasks. Powerful models like [GPT](/method/gpt) and [BERT](/method/bert) leverage unsupervised representation learning to tackle language tasks. More recently, [self-supervised learning (SSL)](/task/self-supervised-learning) is one of the main drivers behind unsupervised representation learning in fields like computer vision and NLP. Here are some additional readings to go deeper on the task: - [Representation Learning: A Review and New Perspectives](/paper/representation-learning-a-review-and-new) - Bengio et al. (2012) - [A Few Words on Representation Learning](https://sthalles.github.io/a-few-words-on-representation-learning/) - Thalles Silva ( Image credit: [Visualizing and Understanding Convolutional Networks](https://arxiv.org/pdf/1311.2901.pdf) )
Computer Vision | Papers With CodeDec 21, 2020
**Image Retrieval** is a fundamental and long-standing computer vision task that involves finding images similar to a provided query from a large database. It's often considered as a form of fine-grained, instance-level classification. Not just integral to image recognition alongside [classification](/task/image-classification) and [detection](/task/image-detection), it also holds substantial business value by helping users discover images aligning with their interests or requirements, guided by visual similarity or other parameters. ( Image credit: [DELF](https://github.com/tensorflow/models/tree/master/research/delf) )
Computer Vision | Papers With CodeDec 21, 2020
**Denoising** is a task in image processing and computer vision that aims to remove or reduce noise from an image. Noise can be introduced into an image due to various reasons, such as camera sensor limitations, lighting conditions, and compression artifacts. The goal of denoising is to recover the original image, which is considered to be noise-free, from a noisy observation. ( Image credit: [Beyond a Gaussian Denoiser](https://arxiv.org/pdf/1608.03981v1.pdf) )
Computer Vision | Papers With CodeDec 21, 2020
**Domain Adaptation** is the task of adapting models across domains. This is motivated by the challenge where the test and training datasets fall from different data distributions due to some factor. Domain adaptation aims to build machine learning models that can be generalized into a target domain and dealing with the discrepancy across domain distributions. Further readings: - [A Brief Review of Domain Adaptation](https://paperswithcode.com/paper/a-brief-review-of-domain-adaptation) ( Image credit: [Unsupervised Image-to-Image Translation Networks](https://arxiv.org/pdf/1703.00848v6.pdf) )
parquet
Parquet File Format: Everything You Need to KnowJul 28, 2024
New data flavors require new ways of storing them. Learn all you need to know about the Parquet file format
Simple Parquet Tutorial and Best PracticesDec 28, 2022
Hands-on tutorial for starting your Parquet learning
patents
Author granted copyright over book with AI-generated text—with a twistApr 19, 2024
Elisa Shupe was initially rebuffed when she tried to copyright a book she wrote with help from ChatGPT. Now the US Copyright Office has changed course—but there’s a catch.
Why Patents? The History and EvidenceJan 7, 2024
Comparisons with other historical incentives for innovation
Patent Trolls Inbound: Our First LawsuitSep 5, 2022
Notorious AV patent troll Axel Nix is at it again!
United States Patent and Trademark OfficeJul 19, 2022
Home page of the United States Patent and Trademark Office's main web site.
Starting a Physical Product Company? You’re Gonna Need a Lawyer.Jul 18, 2022
My name is Molson Hart. I’m the CEO of a consumer products company I founded 10 years ago, called Viahart. We design and distribute toys…
Can a corporation "own" a color?Jun 29, 2022
A handful of companies have pushed the boundaries of intellectual property law by laying claim to individual colors.
An Entrepreneur’s Guide To Patents: The Basics | TechCrunchMay 28, 2022
Editor's note: Brad Woodcox is a technical specialist focusing on startup development for Novak Druce + Quigg, an intellectual property super boutique law firm. Patents. A single word that incites a fervor in the online tech blogging realm, perhaps only behind the emotional responses with the iPhone vs. Android battle or TechCrunch using expletives in an article title.
How Singer Won the Sewing Machine WarSep 14, 2021
The Singer Sewing Machine changed the way America manufactured textiles, but the invention itself was less important than the company’s innovative business
How to File a Patent in 8 Easy StepsSep 3, 2018
Have you invented something so cool, useful and original that the rest of the world just shouldn’t be forced to live without it any longer…
patience
'Persuasion Fatigue' Is a Unique Form of Social FrustrationNov 18, 2022
When people argue, a kind of frustration called persuasion fatigue can cloud their judgment and harm relationships
What People Hate Most About Waiting in LineJun 25, 2022
Let's say you and your roommate have a little side business baking rhubarb pies at home and selling them on a street corner. Folks love pie, and you're...
pawnshops
What Do Pawn Shops Buy? Answered + Prices Ranges DetailedApr 8, 2025
What can you sell at a pawn shop? We explain what pawn shops buy, plus how to get the most money. Find price details for electronics, clothing, and more.
How PawnGuru Helps Sellers And Pawn Shops Compare Prices OnlineApr 8, 2025
Inside of a pawn shop / Photo Credit: PawnGuru Pawning something you own can be a major challenge. You want to get the highest amount for your item, but you don’t know which pawn shop will pay the most. Reality TV shows like “Hardcore Pawn” and “Pawn Stars” demonstrate how pawn [...]
The Economics of Pawn ShopsApr 8, 2025
Pawn shops are America's lenders of last resort. But even for the same item, the amount pawn shops will loan you can vary more than 1,000%.
payments
Pay As a LocalJan 13, 2026
Pay As a Local How Airbnb rolled out 20+ locally relevant payment methods worldwide in just 14 months By: Gerum Haile, Bo Shi, Yujia Liu, Yanwei Bai, Bo Yuan, Rory MacQueen, Yixia Mao Across the more …
ISO 8583: The language of credit cards — IncreaseDec 19, 2024
Discover the inner workings of ISO 8583, the global standard for credit card transaction messaging. Learn how it powers payment processing across networks and explore its structure, fields, and real-world applications.
Guide to Marketplace Payment ProcessingMar 17, 2024
By Mdu Sibisi One of the biggest challenges for modern e-commerce and fintech developers is building...
ACH vs. Wire Transfers: Which Is Right for You?Sep 8, 2023
Automate complex business processes with Nanonets' intelligent automation AI. Draw actionable insights from unstructured data across multiple sources.
Hacker NewsJan 7, 2023
An eCommerce Guide To Accepting International PaymentsDec 13, 2022
By Anna Smith, freelance writer.Pursuing global markets can be a thrilling and significant step for your business. However, it’d be best to establish a secure and proficient means for accepting payments internationally. The best worldwide payment method for your eCommerce will differ depending on the location or country of your customers.
aynuriev.com - aynuriev Resources and Information.Jun 28, 2022
aynuriev.com is your first and best source for all of the information you’re looking for. From general topics to more of what you would expect to find here, aynuriev.com has it all. We hope you find what you are searching for!
When Payment Processing Becomes A Commodity | TechCrunchJun 23, 2022
One of the big subjects of discussion in the banking industry earlier this year was the publication of the Millennial Disruption Index, stating that millennials view banks as irrelevant and placing traditional retail banking at the highest risk of disruption compared to other B2C industries. Accenture's Banking 2020 report confirms this and draws a parallel to the challenges the telecom industry faced 20 years ago and states that non-banks will take a third of incumbent banks revenues by 2020.
Deep Dive: PaymentsJun 23, 2022
Ninety percent of Americans have used a credit card, but far fewer understand the underlying systems enabling their payments. So let’s dive…
pca
Kernel Principal Component Analysis (PCA): Explained with an Example - MarkTechPostDec 6, 2025
Dive into Kernel PCA: explained with an example demonstrating its effectiveness compared to traditional PCA for nonlinear data.
Understanding Principal Component Analysis in PyTorchFeb 20, 2024
Built-in function vs. numerical methods
A Deep Dive into Autoencoders and Their Relationship to PCA and SVDJul 24, 2023
An in-depth exploration of autoencoders and dimensionality reduction
Feature Transformations: A Tutorial on PCA and LDAJul 23, 2023
Reducing the dimension of a dataset using methods such as PCA
Principal Component Analysis: Everything You Need To KnowSep 24, 2022
Covariance, eigenvalues, variance and everything …
python-data-science-handbook/scikit/SciKit-Principal-Component-Analysis.ipynb at master · bjpcjp/python-data-science-handbookJan 16, 2022
Sourced from O'Reilly ebook of the same name.
Game theory as an engine for large-scale data analysis | DeepMindMay 7, 2021
Modern AI systems approach tasks like recognising objects in images and predicting the 3D structure of proteins as a diligent student would prepare for an exam. By training on many example...
A One-Stop Shop for Principal Component Analysis - Towards Data ScienceMar 11, 2020
At the beginning of the textbook I used for my graduate stat theory class, the authors (George Casella and Roger Berger) explained in the…
Principal component analysis: pictures, code and proofsAug 29, 2019
The code used to generate the plots for this post can be found here.
The mathematics and Intuitions of Principal Component Analysis (PCA) UsingApr 21, 2019
As data scientists or Machine learning experts, we are faced with tonnes of columns of data to extract insight from, among these features…
Understanding Principal Component Analysis – Rishav Kumar – MediumFeb 2, 2018
The purpose of this post is to give the reader detailed understanding of Principal Component Analysis with the necessary mathematical…
Why you should read Nina Zumel’s 3 part series on principal components analDec 27, 2017
Short form: Win-Vector LLC’s Dr. Nina Zumel has a three part series on Principal Components Regression that we think is well worth your time. Part 1: the proper preparation of data (including…
pdfs
A Typical PDF - The Hacker Factor BlogJan 12, 2026
Creating PDF Reports with PythonDec 3, 2025
Creating PDF Reports with Python Introduction Generating PDF reports programmatically can be incredibly useful for automating document creation, especially in a business context. Python offers …
Chapter 1: Introduction - ReportLab DocsDec 3, 2025
Making 10M government PDF documents searchableNov 26, 2025
Government organizations love to distribute documents as PDF files. They are easy to forward and to print. The problem is when you want to find and access them later among millions of other files. …
Building a Custom PDF Parser with PyPDF and LangChain - KDnuggetsJun 12, 2025
PDFs look simple — until you try to parse one. Here’s how to build your own parser.
pdfgrepApr 2, 2025
Why extracting data from PDFs is still a nightmare for data expertsMar 11, 2025
Countless digital documents hold valuable info, and the AI industry is attempting to set it free.
Mistral’s new OCR API turns any PDF document into an AI-ready Markdown fileMar 6, 2025
Large language models work particularly well with raw text. Companies that want to create their own AI workflow know that it has become extremely
5 Ways to Convert .ipynb Files to PDFDec 20, 2024
You cannot share Jupter Notebook's ipynb files with everyone. However, if you convert it to PDF, sharing becomes easier. Here's how to do it.
Build a Document AI pipeline for ANY type of PDF With GeminiDec 15, 2024
Tables, Images, figures or handwriting are not problem anymore ! Full Code provided.
VikParuchuri/marker: Convert PDF to markdown quickly with high accuracyJun 4, 2024
Convert PDF to markdown quickly with high accuracy - VikParuchuri/marker
Best PDF Invoice and Document Generation PluginsMay 21, 2024
In this blog, we'll explore a selection of top-notch plugins designed to simplify your invoicing and document creation processes. Whether you're running a
Marker: A New Python-based Library that Converts PDF to Markdown Quickly anMay 16, 2024
The need to convert PDF documents into more manageable and editable formats like markdowns is increasingly vital, especially for those dealing with academic and scientific materials. These PDFs often contain complex elements such as multi-language text, tables, code blocks, and mathematical equations. The primary challenge in converting these documents lies in accurately maintaining the original layout, formatting, and content, which standard text converters often need help to handle. There are already some solutions available aimed at extracting text from PDFs. Optical Character Recognition (OCR) tools are commonly used to interpret and digitize the text contained within these files. However, while
How to Summarize Large Documents with LangChain and OpenAIMay 11, 2024
There are still some limitations when summarizing very large documents. Here are some ways to mitigate these effects.
ExifTool by Phil HarveyMay 11, 2024
A command-line application and Perl library for reading and writing EXIF, GPS, IPTC, XMP, makernotes and other meta information in image, audio and video files. For Windows, MacOS, and Unix systems.
Extract text from a PDFMay 5, 2024
Extracting text from a PDF file using GNU less or Python's pypdf. Why its not entirely clear just what a text extractor should do.
ISO 19005-1:2005Apr 8, 2024
Document management — Electronic document file format for long-term preservation — Part 1: Use of PDF 1.4 (PDF/A-1)
Pretty Darn FascinatingApr 6, 2024
The story of the PDF, the portable document format that’s become one of the internet’s defining information formats. It’ll be with us after we’re long gone.
About pandocFeb 6, 2024
HomeJan 17, 2024
Mastering PDFs: Extracting Sections, Headings, Paragraphs, and Tables withJan 17, 2024
LlamaIndex is a simple, flexible data framework for connecting custom data sources to large language models (LLMs).
PopplerSep 12, 2023
How to Extract Text from Any PDF and Image for Large Language Model | by ZoAug 7, 2023
Use these text extraction techniques to get quality data for your LLM models
How to use LLMs for PDF parsingAug 6, 2023
Using ChatGPT & OpenAI's GPT API, this code tutorial teaches how to chat with PDFs, automate PDF tasks, and build PDF chatbots.
How to Chat With Any File from PDFs to Images Using Large Language Models —Aug 6, 2023
Complete guide to building an AI assistant that can answer questions about any file
ChatPDF – Chat with Any PDF | Hacker NewsApr 29, 2023
How to Talk to a PDF using LangChain and ChatGPTApr 14, 2023
#langchain #chatgpt #gpt4 #artificialintelligence #automation #python #notion #productivity #datascience #pdf #machinelearning
In this tutorial, learn how to easily extract information from a PDF document using LangChain and ChatGPT. I'll walk you through installing dependencies, loading and processing a PDF file, creating embeddings, and querying the PDF with natural language questions.
00:00 - Introduction
00:21 - Downloading a sample PDF
00:49 - Importing required modules
01:21 - Setting up the PDF path and loading the PDF
01:38 - Printing the first page of the PDF
01:53 - Creating embeddings and setting up the Vector database
02:24 - Creating a chat database chain
02:49 - Querying the PDF with a question
03:27 - Understanding the query results
04:00 - Conclusion
Remember to like and subscribe for more tutorials on learning, research and AI!
- Source code: https://github.com/EnkrateiaLucca/talk_pdf
- Link to the medium article: https://medium.com/p/e723337f26a6
- Subscribe!: https://www.youtube.com/channel/UCu8WF59Scx9f3H1N_FgZUwQ
- Join Medium: https://lucas-soares.medium.com/membership
- Tiktok: https://www.tiktok.com/@enkrateialucca?lang=en
- Twitter: https://twitter.com/LucasEnkrateia
- LinkedIn: https://www.linkedin.com/in/lucas-soares-969044167/
Music from [www.epidemicsound.com](http://www.epidemicsound.com/)
4 Ways to Do Question Answering in LangChainApr 14, 2023
Chat with your long PDF docs: load_qa_chain, RetrievalQA, VectorstoreIndexCreator, ConversationalRetrievalChain
pdfgrep: Use Grep Like Search on PDF Files in Linux Command LineMar 26, 2023
Even if you use the Linux command line moderately, you must have come across the grep command. Grep is used to search for a pattern in a text file. It can do crazy powerful things, like search for new lines, search for lines where there are no uppercase characters, search
ChatPDF - Chat with any PDF!Mar 15, 2023
ChatPDF is the fast and easy way to chat with any PDF, free and without sign-in. Talk to books, research papers, manuals, essays, legal contracts, whatever you have! The intelligence revolution is here, ChatGPT was just the beginning!
How to Create a PDF Report for Your Data Analysis in PythonFeb 20, 2023
Automate PDF generation with the FPDF library as part of your data analysis
How to Scrape and Extract Data from PDFs Using Python and tabula-pyFeb 21, 2022
You want to make friends with tabula-py and Pandas
How to Use Tesseract OCR to Convert PDFs to TextFeb 21, 2022
This is a cross-post from my blog Arcadian.Cloud, go there to see the original post. I have some...
Scrape Data from PDF Files Using Python and PDFQueryFeb 21, 2022
Extract Data from PDF Files Effectively
Create a simple "Hello World" PDF with and with 4 lines of codeFeb 6, 2022
🐍🔥
— Mike Driscoll (@driscollis)
Edouard Klein / falsisign · GitLabJan 23, 2022
For bureaucratic reasons, a colleague of mine had to print, sign, scan and send by email a high number of pages. To save trees, ink, time, and to...
5 Python open-source tools to extract text and tabular data from PDF FilesDec 8, 2021
This article is a comprehensive overview of different open-source tools to extract text and tabular data from PDF Files
Converting PDF preview in Rails 6 using Active Storage and MiniMagicNov 23, 2021
In this demo application we will demonstrate that how you can upload documents using active records and convert preview of PDF pages as images. We have also used action cable to display progress of PDF pages to image conversion inside bootstrap modal. Though this is a simple and basic example but you can learn different concepts here from the code base.
Here you can find the repository for this demo application:
https://github.com/RaviSys/pdf-preview-demo
Hope you enjoy learning this.
PDF Expert is an all-purpose tool for making your PDFs as friendly to editNov 18, 2021
This top-rated PDF tool is an Apple editors' choice winner and will revolutionize the way you work & collaborate with documents.
PDF.toNov 16, 2021
Unlock the power of PDF.to – Your all-in-one converter for transforming PDFs into Word, JPEG, PNG, OCR, DOC, and more. Seamlessly compress PDFs, convert to PDF, and harness the potential with our versatile API. Explore the possibilities with PDF.to!
How to Generate Automated PDF Documents with PythonSep 25, 2021
Leveraging automation to create dazzling PDF documents effortlessly
Extract Tables from PDF file in a single line of Python CodeApr 18, 2021
How to extract and convert tables from PDFs into Pandas Dataframe using Camelot
wkhtmltopdfMar 26, 2021
How to Create PDF Reports with Python — The Essential GuideJan 19, 2021
Create PDF reports with beautiful visualizations in 10 minutes or less.
How to convert pdf to image on Linux command lineDec 18, 2020
Explains how to convert pdf to image or vice versa on Linux command line. Further describes how to add a border using Imagemagick.
This All-in-One PDF Software is Essential for Any EntrepreneurDec 18, 2020
PDFBEAR makes converting and sharing PDFs easy.
How to extract tables from PDF files with CamelotAug 18, 2020
A quick guide for extracting the tables from PDF files in Python using Camelot library
phiresky/ripgrep-all: rga: ripgrep but also search in PDFs E-Books Office documents zip tar.gzSep 24, 2018
rga: ripgrep, but also search in PDFs, E-Books, Office documents, zip, tar.gz, etc. - phiresky/ripgrep-all
Building a RAG Chatbot GUI with the ChatGPT API and PyMuPDFSep 24, 2009
The Artifex blog covers the latest news and updates regarding Ghostscript, MuPDF, and SmartOffice. Subjects cover PDF and Postscript, open source, office productivity, new releases, and upcoming events.
PyMuPDF 1.24.10 documentationSep 24, 2008
PyMuPDF is a high-performance Python library for data extraction, analysis, conversion & manipulation of PDF (and other) documents.
MinerU: An Open-Source PDF Data Extraction ToolOct 24, 2005
Extracting structured data from unstructured sources like PDFs, webpages, and e-books is a significant challenge. Unstructured data is common in many fields, and manually extracting relevant details can be time-consuming, prone to errors, and inefficient, especially when dealing with large amounts of data. As unstructured data continues to grow exponentially, traditional manual extraction methods have become impractical and error-prone. The complexity of unstructured data in various industries that rely on structured data for analysis, research, and content creation. Current methods for extracting data from unstructured sources, including regular expressions and rule-based systems, are often limited by their inability to maintain
perception
This MIT Prototype Translates Images Into Fragrances That Your Mind Remembers Better - Yanko DesignFeb 3, 2026
At a time when memories are increasingly flattened into folders, feeds, and cloud backups, a new experimental device from MIT Media Lab proposes a far more intimate archive: scent. Developed by Cyrus Clarke, the Anemoia Device is a speculative yet functional prototype that translates photographs into bespoke fragrances using generative AI, inviting users not to
Some People Can’t See Mental Images. The Consequences Are ProfoundNov 5, 2025
Larissa MacFarquhar writes about the recent research into the neurodiverse syndromes known as aphantasia and hyperphantasia, their effects on our experience of trauma and memory, and the sense of identity that has grown up around them.
The art of reading mindsOct 24, 2025
Have you ever wanted to read someone's mind? Mentalist Oz Pearlman is billed as one of the world's greatest mind readers ... and yet, he says he doesn't have any special powers. In this spectacular talk meets psychic-inspired magic show, he demonstrates his skills on a live audience in the theater — and shows how anyone can learn the principles of mentalism.
Newfound 'Reality Signal' Helps the Brain Tell Imagination from Real LifeSep 5, 2025
Seeing and imagining use similar brain machinery. New research reveals the brain circuit that identifies what is real, which may help scientists understand conditions such as schizophrenia
Why 'hearing voices' is welcomed in these culturesSep 3, 2025
Western medicine views hearing disembodied voices as a symptom of psychosis. But that's not the case everywhere.
The brain’s map of the body is surprisingly stable — even after a limb is lostAug 23, 2025
Study challenges the textbook idea that the brain region that processes body sensations reorganizes itself after limb amputation.
Making Sense of Consciousness Part 4: States of ConsciousnessAug 8, 2025
the red arrow points to the thalamus
In the past 3 entries in my consciousness sequence I was focused on conscious sensory perception — the differen…
The unusual brains of noise-sensitive peopleAug 5, 2025
Though noise sensitivity is often dismissed by doctors, it can have long-term effects on our mental and physical health.
What Is the ‘Dolly Parton Effect’ and Does It Actually Work?Aug 3, 2025
If the great Dolly Parton ever shouted directions at you in a hurricane, chances are you’d understand every word...
Aphantasia: Thinking That’s Out of SightJul 27, 2025
Aphantasia is a characteristic where you can’t form mental images to “see” things in your head. Learn more about this trait.
Frontiers | Swearing as a Response to Pain: Assessing Hypoalgesic Effects of Novel “Swear” WordsJul 2, 2025
Previous research showing swearing alleviates pain is extended by addressing emotion arousal and distraction as possible mechanisms. We assessed the effects ...
why AI language models like chatGPT can’t understand flowersJun 30, 2025
a study by ohio state university investigates whether large language models can represent human concepts without physically experiencing them.
why you should be smelling more thingsJun 1, 2025
One of the silly little quirks of being human is that we pretend that some experiences are more real than others.
Complex Haptics Deliver a Pinch, a Stretch, or a TapApr 2, 2025
Electromagnetism takes touch feedback beyond simple vibrations
How do we start learning to ‘read’ other people’s minds?Mar 18, 2025
Studies of young children give us insight into the building blocks of an ability that most of us use every day
Learning Human Echolocation with a NeuroscientistMar 6, 2025
Neuroscientist Lore Thaler speaks about her efforts to make echolocation training more accessible
The Stroop Effect: Can Your Brain Glitch?Mar 4, 2025
The brain is our most powerful information-processing machine, but can it sometimes glitch? Enter the Stroop Effect.
Aphantasia: Inside The Brains Of People Who Have No Mind’s EyeJan 28, 2025
Did you know some people can’t see images in their minds? It’s a real issue—and it has a name: aphantasia.
How a Rare Disorder Makes People See MonstersAug 3, 2024
A mysterious neurological condition makes faces look grotesque—and sheds new light on the inner workings of the brain.
How Magic Tricks Help Us Understand Animal MindsJun 12, 2024
By performing tricks for birds, monkeys and other creatures, researchers hope to learn how they perceive and think about their world
Scents and memories at the hospitalJun 3, 2024
Stanford medical student Yoo Jung Kim writes about smells in the hospital and how they can trigger fond memories and provide motivation.
Visual perception improves in the blink of an eyeMay 10, 2024
Blinking—long considered a problem the brain must overcome to produce seamless vision—may actually be more of a feature than a bug, new research suggests.
I Know the Secret to the Quiet Mind. I Wish I’d Never Learned It.Apr 30, 2024
Of all the injuries we suffered, mine is the worst. My brain injury has shaken my confidence in my own personality, my own existence.
perfume
Scents of Self: Why Young Chinese are Obsessed with FragrancesFeb 29, 2024
The fragrance industry in China is on the upswing as younger consumers embrace scents for self-expression and comfort.
Our Pungent History: Sweat, Perfume, and the Scent of DeathMay 20, 2023
Over the last few millennia, as scientific knowledge and social norms have fluctuated, what Westerners considered smelling “good“ has changed drastically.
The French Perfumer Behind the Internet’s Favorite Fragrance Baccarat Rouge 540Sep 24, 2016
Francis Kurkdjian had a runaway hit with Baccarat Rouge 540. Now, at Parfums Christian Dior, he’s trying to make his mark on a storied fashion house.
permission
personas
the-markup/xandr-audience-segmentsJul 30, 2023
From “Heavy Purchasers” of Pregnancy Tests to the Depression-Prone: We FounJul 24, 2023
A spreadsheet on ad platform Xandr’s website revealed a massive collection of “audience segments” used to target consumers based on highly specific, sometimes intimate information and inferences
Why and How to Use Demographics in UXNov 27, 2022
Well-designed questions related to age, gender, race, income and other demographic characteristics help UX researchers screen participants, recruit a diverse participant pool, and segment data. These questions are sensitive and should put research participants at ease.
Psychological profiling for content creation: A deep diveNov 6, 2022
Having a psychological approach to creating content helps you craft more effective messages to the right audience.
Personas: Study GuideOct 9, 2022
Unsure where to start? Use this collection of links to our articles and videos to learn about personas and how to create and apply them.
Antipersonas: What, How, Who, and Why?Sep 12, 2022
Antipersonas help anticipate how products can be misused in ways that can harm users and the business.
A Guide to Behavioral Segmentation MarketingNov 6, 2020
What is behavioral marketing? Here's how email marketing, demographics, and upsells can be used to monitor and act on customer behavior.
philosophy
The 5 Most Significant Non-Abrahamic World Religions and Philosophies | TheCollectorNov 2, 2025
Read on and discover five non-Abrahamic World Religions to better understand yourself and the world you live in.
The Warehouse Worker Who Became a PhilosopherOct 31, 2025
Eleven years ago, the podcast host Stephen West was stocking groceries.
Ancient Taoism Quietly Answers the Chaos of Modern Life | TheCollectorOct 23, 2025
The timeless wisdom of Taoism provides enduring guidance for modern individuals seeking ways to live without stress, stay healthy, and achieve happiness.
Seven Philosophy Books for Beginners: Where to StartAug 26, 2025
One especially appealing aspect of philosophy, as a field of study, is that you don't have to go anywhere to learn it but the library. And these days, you don't necessarily have to go there, now that so many philosophical texts have become freely available on the internet.
Why Are Aristotle’s “Categories” Fundamental to Logic? | TheCollectorJul 5, 2025
Aristotle’s “Categories” are fundamental to logic because they provide the tools and terms for logical analysis and discourse.
Why Gödel, Escher, Bach is the most influential book in my life.Feb 5, 2024
Musings on Hofstadter’s phenomenal book about computation, consciousness, and epistemology.
Why Kids Make the Best PhilosophersApr 28, 2022
Adults have a lot to learn from the questions only children are willing to ask.
Philosophy — Susan RigettiSep 2, 2021
photography
NASA Just Recorded the First High-Res Imagery of a Tsunami From SpaceDec 4, 2025
The mental picture of a tsunami is usually a giant wall of water building across the ocean and crashing onto shore...
Polaroid Death Machine - The Georgia ReviewApr 12, 2025
In late February of 2020 I traveled home to Pittsburgh to salvage what I could of my grandparents’ lives. After caring for them and their things during their final years and after, my aunt was moving to Florida and giving it all away: furniture and dinnerware; my grandmother’s full collection of Emmett Kelly clown figurines;
Luster LostMar 3, 2024
Pondering the way that physical objects, like newspapers and photos, degrade over time, and why digital objects won’t fade in exactly the same way.
A True Story About Bogus Photos of People Making Fake NewsOct 18, 2021
A photographer set out to capture the misinformation producers in a small town in Macedonia. He wound up revealing uncomfortable truths about his own profession.
Storm Chaser Spots Rare Quadruple Microburst in TexasJul 16, 2021
“Suddenly before us were just these four massive columns of rain and hail crashing down, all clearly visibly separated which was unreal.”
خبرگزاری آنا - دنیای مداد رنگیJul 15, 2021
Four Stories from the Russian ArcticJun 25, 2021
Evgenia Arbugaeva’s pictures of isolated figures in harsh terrain look recovered from the deep past or icebound legend.
The 'mind bombs' that changed the whaling industryOct 24, 2003
In the 1970s, a small group of Greenpeace activists had a unique idea for how they could put an end to commercial whaling.
php
Why PHP continues to be a popular but divisive programming languageFeb 27, 2024
PHP is one of the most used programming languages. How has it remained on top and what are some of the pros and cons for developers?
physical-products
Lessons Learned Shipping 500 Units of my First Hardware ProductFeb 4, 2026
Building in consumer hardware as a software engineer
We Are Building the Wrong FactoriesDec 31, 2025
Why Silicon Valley's Defense Obsession is Missing the Real Path to American Reindustrialization
The Rise of Shippable MicrofactoriesJul 26, 2025
Can microfactories solve prefab's economic problem by inverting the factory model?
📈Product Market Fit for Physical ProductsJul 9, 2025
I asked an 🍎 Apple Vision Pro designer turned solopreneur how he sells HW.
The Real Reasons Your Appliances Die YoungJun 21, 2025
Modern appliances pack in more features and efficiency than ever — but you might need to accept that they won’t last as long as Grandma’s old fridge.
What Do Pawn Shops Buy? Answered + Prices Ranges DetailedApr 8, 2025
What can you sell at a pawn shop? We explain what pawn shops buy, plus how to get the most money. Find price details for electronics, clothing, and more.
How PawnGuru Helps Sellers And Pawn Shops Compare Prices OnlineApr 8, 2025
Inside of a pawn shop / Photo Credit: PawnGuru Pawning something you own can be a major challenge. You want to get the highest amount for your item, but you don’t know which pawn shop will pay the most. Reality TV shows like “Hardcore Pawn” and “Pawn Stars” demonstrate how pawn [...]
📈Product Market Fit for Physical ProductsApr 4, 2025
I asked an 🍎 Apple Vision Pro designer turned solopreneur how he sells HW.
I Can’t Stop Thinking About Lenovo’s Brilliant Modular Mouse Concept at CES 2025 - Yanko DesignJan 12, 2025
You go to a tech expo like CES expecting to be absolutely wowed by phones, laptops, GPUs, cars, and all sorts of prominent product categories. I went to CES 2025 and was wowed by a mouse... yes, a wireless mouse that connects to your computer. Designed by the folks at Lenovo, the AdaptX Mouse easily
Browse Manufacturing MethodsNov 26, 2024
Why America’s Largest Tool Company Couldn’t Make a Wrench in America …Jul 23, 2023
archived 22 Jul 2023 03:08:13 UTC
Here’s How Tool Companies Charge Vastly Different Prices for the Same ToolsMar 29, 2023
Sometimes there is a replacement for name brand tools. Knowing who makes what is the best way to save big when building your tool collection.
The other "Phillips" head screwdriver you might not know about - Shop PressJan 29, 2023
Not every Phillips head fastener is a Phillips head fastener. If you don't know about Japanese Industrial Standard, now you'll know.
Durable DesignNov 5, 2022
(1) New Messages!Sep 18, 2022
Hasbro has announced Hasbro Selfie Series figures—a groundbreaking endeavor to use 3D printing to manufacture personalized action figures at scale.
Mode DesignsSep 15, 2022
High-end custom mechanical keyboards designed for Mac and PC. Built with premium typing sound and feel for designers, programmers, gamers, and more.
The Obsessive Pleasures of Mechanical-Keyboard TinkerersSep 5, 2022
On the right machine, typing can be like playing a Steinway grand. Is tactile perfection possible?
Here’s Why Juicero’s Press is So ExpensiveJul 18, 2022
Hidden away in Juicero’s bad week of press is one of the most powerful lessons we preach to hardware startups: unconstrained development is…
How To Price Your Hardware ProductJul 18, 2022
This post originally appeared on Hackthings.com So you have a hardware product in the works? Before you can launch it, one of the most important things you need to figure out is pricing. Unlike software, you can’t AB test your pricing and change it for different customers, which means your product has one price and …
Keurig accidentally created the perfect business model for hardware startupsJul 18, 2022
It’s no secret that investors don’t like hardware businesses. Despite the eternal frustration of startup founders, investor distaste in physical product businesses is actually entirely logical. It’s nearly impossible to build a venture-scale business by selling dumb plastic parts at a 30% gross marg
Starting a Physical Product Company? You’re Gonna Need a Lawyer.Jul 18, 2022
My name is Molson Hart. I’m the CEO of a consumer products company I founded 10 years ago, called Viahart. We design and distribute toys…
Hardware is sexy, but it’s software that mattersJul 5, 2022
You can make software if you choose to. Not just the expected version of software that runs on a computer, but the metaphorical idea of rules and algorithms designed to solve problems and connect p…
Developing a Product Requirements Document for Hardware StartupsJun 25, 2022
I have always avoided writing. As a mechanical engineer, I would rather do just about anything else: sketch parts, build prototypes, or collaborate with manufacturers. Rough sketches for Dor, one of Bolt’s portfolio companies For over 15 years, I have designed and engineered products — mostly a
Why Dyson's robot vacuum took 16 years, and why it's headed to Japan firstJun 23, 2022
Dyson almost launched a robot vacuum. Back in 2001, after three years in development. Its first effort, shown to the British public in London looked nothing (and we mean nothing) like the eventual 360 Eye unveiled today. Sixteen years is a long time in tech. The DC06, as it was called, never made it past home-trial stages in 2012 -- apparently too pricey and heavy. Between then and now, technology got better. A lot better. At the Tokyo launch of its new robot vacuum, Sir James Dyson himself, told us how it all came together, and why it's not his native UK, but Japan, that'll get to buy it first.
Packaging Inserts: Types and How To Create Yours (2024) - ShopifyJun 13, 2022
Increase customer loyalty and take advantage of an additional opportunity to connect with customers by using packaging inserts. Here's why and how to use them in every package you send out.
The Chromecast’s reset button is proof of the reliability of hardware in a digital worldJun 13, 2022
Even the software-focused Chromecast relies on hardware sometimes.
Keep On Connecting: 5 Connectors That Changed The World - OutfunnelMay 11, 2021
Connecting things physically, mechanically or digitally can have profound effects. Here’s a list of 5 connectors that changed the world.
Hacker NewsJan 20, 2021
During quarantine I designed and built my own CNC router from scratch. This is everything you need to know if you want to do the same.
Additive Manufacturing Movement | 2020 Trends ReportJul 15, 2020
Meet the manufacturers capitalizing on 3D printing today, and find out how they are transforming their design and production workflows with additive.
Finding the Unexpected Wonder in More Than 22,000 International StandardsMay 5, 2020
From brewing tea to making shipping containers.
How to Make Almost AnythingDec 26, 2016
This course provides a hands-on introduction to the resources for designing and fabricating smart systems, including CAD/CAM/CAE; NC machining, 3-D printing, injection molding, laser cutting; PCB layout and fabrication; sensors and actuators; analog instrumentation; embedded digital processing; wired and wireless communications. This course also puts emphasis on learning how to use the tools as well as understand how they work.
physics
‘It’s a Mess’: A Brain-Bending Trip to Quantum Theory’s 100th Birthday Party | Quanta MagazineJan 25, 2026
Hundreds of physicists (and a few journalists) journeyed to Helgoland, the birthplace of quantum mechanics, and grappled with what they have and haven’t learned about reality.
Why Satyendra Nath Bose was more than Einstein’s sidekick | Aeon EssaysJan 20, 2026
The life of Indian physicist Satyendra Nath Bose illuminates how scientific genius can emerge from the most unexpected quarters
Helion gives behind-the-scenes tour of secretive fusion prototypeOct 28, 2025
In the city of Everett, inside a vault built with thick concrete blocks is Polaris, a machine that could change the world.
Classical Thermodynamics and Economics – Yuxi on the WiredOct 14, 2025
How to think like a classical thermodynamic-economist, delivered with many illustrations and some sci-fi metaphors. Particular emphasis on what traditional pedagogy gets wrong. Prerequisites: multivariate calculus and mathematical maturity.
Floating electrons on a sea of heliumOct 8, 2025
Yes, it’s another potential qubit. But it’s also some very cool physics.
Origami Patterns Solve a Major Physics Riddle | Quanta MagazineOct 6, 2025
The amplituhedron, a shape at the heart of particle physics, appears to be deeply connected to the mathematics of paper folding.
Chinese physicists produce most powerful stable magnetic field on EarthSep 29, 2025
Development could have implications for power transmission, nuclear fusion and superconducting magnetic levitation.
5 Physics Equations Everyone Should KnowSep 26, 2025
Our physics expert picks his top-five equations, plus a scheme to supply US power needs with a bucket of baseballs. Thanks, Einstein!
5 More Physics Equations Everyone Should KnowSep 26, 2025
These five equations should be part of your mental toolkit. They might even improve your bowling score.
The enduring puzzle of static electricityAug 11, 2025
Even though it lacks a complete explanation, the small-scale, everyday effect is being exploited for various applications.
The biggest perturbation of satellite orbitsJul 7, 2025
The most important factor left out of the two body problem is the J2 effect, due to the fact that the earth is not a sphere of uniform density.
Scientists Just Watched Metal Heal Itself—and They Can’t Explain HowJun 21, 2025
A cracked piece of metal fused itself back together in a lab in front of scientist—and no one was prepared for it.
CERN gears up to ship antimatter across EuropeMay 21, 2025
A portable containment device that can be dropped on a truck.
Physicists magnetize a material with lightJan 7, 2025
MIT physicists created a long-lasting magnetic state in a material, using only light. The results provide a new way to control and switch antiferromagnetic materials, which are of interest for their potential to advance information processing and memory chip technology.
Quantum Computers Cross Critical Error ThresholdDec 9, 2024
In a first, researchers have shown that adding more “qubits” to a quantum computer can make it more resilient. It’s an essential step on the long road to practical applications.
Exotic New Superconductors Delight and Confound | Quanta MagazineDec 6, 2024
Three new species of superconductivity were spotted this year, illustrating the myriad ways electrons can join together to form a frictionless quantum soup.
The Inside Story of Google’s Quiet Nuclear QuestNov 25, 2024
For a decade, Google Research has helped advance nuclear energy R&D
Princeton achieves 10x reduction in tritium needs for nuclear fusionNov 20, 2024
US scientists made a breakthrough in fusion energy, discovering a new fuel mix that could improve efficiency and reduce tritium reliance.
How to Build a Quantum SupercomputerNov 19, 2024
In the span of four decades, quantum computation has evolved from an intellectual curiosity to a potentially realizable technology. Today, small-scale demonstrations have become possible for...
Nuclear Fusion’s New Idea: An Off-the-Shelf StellaratorOct 30, 2024
Fast prototyping revives a 70-year-old reactor design
Marvel Fusion breaks ground on $150M laser facility in ColoradoOct 18, 2024
The ATLAS facility will use three ultra-high intensity lasers to initiate the same reaction that powers the Sun and stars.
What Could Explain the Gallium Anomaly? | Quanta MagazineJul 23, 2024
Physicists have ruled out a mundane explanation for the strange findings of an old Soviet experiment, leaving open the possibility that the results point to a new fundamental particle.
Welcome … — Physics-based Deep LearningJul 14, 2024
Physics — Susan RigettiJul 5, 2024
Will We Ever Get Fusion Power?Jul 2, 2024
“Every one of the stars in the sky uses fusion to generate enormous amounts of energy. Why shouldn’t we?”
Neutrinos: The inscrutable “ghost particles” driving scientists crazyJun 11, 2024
They hold the keys to new physics. If only we could understand them.
An Intuitive Guide to Maxwell’s EquationsJun 4, 2024
An Intuitive and Visual Guide to Maxwell's Equations
How Do Lasers Work? | ExtremetechMay 13, 2024
We explain how lasers work and all the fascinating ways they're being used.
EV batteries could last much longer thanks to new capacitor with 19-times hMay 12, 2024
Electric cars and laptop batteries could charge up much faster and last longer thanks to a new structure that can be used to make much better capacitors in the future.
How realistic is the planetary orbit in Netflix’s ‘3 Body Problem’? A physiApr 28, 2024
A physicist explains the planetary orbit in Netflix's 3 Body Problem based on computational analysis run in more than 10 billion bodies.
What Is Gravity, and How Does It Work?Mar 24, 2024
Your most frequently asked questions about gravity, answered. Now with more spooky action at a distance!
Can a Magnet Ever Have Only One Pole?Mar 1, 2024
Electron tornadoes that mimic “magnetic monopoles” emerge from specks of rust
How a Nuclear Weapons Lab Helped Crack a Serial-Killer CaseFeb 22, 2024
Lawrence Livermore's Forensic Science Center played a crucial role in helping to solve a notorious 1990s murder case.
Inside the Proton, the ‘Most Complicated Thing You Could Possibly Imagine’Feb 18, 2024
The positively charged particle at the heart of the atom is an object of unspeakable complexity, one that changes its appearance depending on how it is probed. We’ve attempted to connect the proton’s many faces to form the most complete picture yet.
The existence of a new kind of magnetism has been confirmedFeb 16, 2024
Altermagnets, theorised to exist but never before seen, have been measured for the first time and they could help us make new types of magnetic computers
Journey to the Invisible PlanetJun 14, 2023
The tangled history of humanity’s search for the solar system’s uncharted planets.
The Physicist Who Glues Together UniversesMay 26, 2023
Renate Loll has helped pioneer a radically new approach to quantum gravity. She assumes that the fabric of space-time is a blend of all possible fabrics, and she has developed the computational tools needed to calculate the far-reaching implications of that assumption.
Qubits 30 meters apart used to confirm Einstein was wrong about quantumMay 14, 2023
Experiment linked qubits using a supercold wire over 30 meters long.
Why the concept of invisibility so captivates the imagination | Psyche IdeasMay 7, 2023
From ancient fables to the latest science theory, invisibility represents some of humankind’s deepest fears and desires
Lenses Are Being Reinvented, and Cameras Will Never Be the Same | MIT TechnApr 9, 2023
“Metalenses” created with photolithography could change the nature of imaging and optical processing.
The Meaning Behind Logistic Classification, from Physics | by Tim Lou, PhDMar 26, 2023
Why do we use the logistic and softmax functions? Thermal physics may have an answer.
This Mirror Reverses How Light Travels in TimeMar 22, 2023
There are already applications in wireless, radar, and optical-computing
Crucial Computer Program for Particle Physics at Risk of ObsolescenceDec 8, 2022
Maintenance of the software that’s used for the hardest physics calculations rests almost entirely with a retiree. The situation reveals the problematic incentive structure of academia.
Physicists Create ‘the Smallest, Crummiest Wormhole You Can Imagine’Nov 30, 2022
Scientists used a quantum computer to explore the ultimate escape route from a black hole.
Introduction to Extrinsic SemiconductorsOct 27, 2022
Extrinsic semiconductors have been doped with specific chemicals. This process helps to modify the electrical properties of a relatively pure semiconductor crystal.
How Bell’s Theorem Proved ‘Spooky Action at a Distance’ Is Real | Quanta MaOct 13, 2022
The root of today’s quantum revolution was John Stewart Bell’s 1964 theorem showing that quantum mechanics really permits instantaneous connections between far-apart locations.
Cats Give the Laws of Physics a Biiiiig StretchOct 2, 2022
They can fall from potentially infinite heights and survive. They can pivot off of nothing to land on their feet. Scientists still can’t fully explain why.
YouTuber Builds Wild-Looking Ion Thruster With No Moving Parts, and It ActuSep 24, 2022
Ionic propulsion is typically pretty weak. However, this setup has potential.
How the Physics of Nothing Underlies Everything | Quanta MagazineAug 27, 2022
The key to understanding the origin and fate of the universe may be a more complete understanding of the vacuum.
How the Higgs Boson Ruined Peter Higgs's LifeJul 5, 2022
A new biography of the physicist and the particle he predicted reveals his disdain for the spotlight
Higgs boson: The 'God Particle' explainedJul 5, 2022
The existence of the Higgs boson completes the standard model of particle physics.
How ‘The Dress’ Sparked a Neuroscience BreakthroughJul 2, 2022
The color debate that broke the internet raised new questions about the relationship between perception and consciousness.
What the Heck Is a Time Crystal, and Why Are Physicists Obsessed With Them?Jun 25, 2022
Some of today’s quantum physicists are tinkering with an esoteric phase of matter that seems to disobey some of our laws of physics.
The Spooky Quantum Phenomenon You’ve Never Heard OfJun 23, 2022
Quantum computers may derive their power from the “magical” way that properties of particles change depending on the context.
The Fermi Paradox - Wait But WhyJun 22, 2022
The Fermi Paradox: There should be 100,000 intelligent alien civilizations in our galaxy — so why haven't we found any of them?
The Magnet That Made the Modern WorldJun 22, 2022
Masato Sagawa and John Croat explain how they invented the neodymium-iron-boron permanent magnet
Behold the Magnetar, nature’s ultimate superweaponJun 21, 2022
Their magnetic fields—the strongest we’ve observed—could melt you from 1,000 km away.
The Quest for Fusion EnergyJun 19, 2022
Despite repeated claims that the prospects for commercialization have never looked brighter, the stark reality is that practical fusion-based electric power remains a very distant prospect.
How the revamped Large Hadron Collider will hunt for new physicsMay 29, 2022
Nature - The particle-smashing machine has fired up again — sparking fresh hope it can find unusual results.
What are nuclear isomers? And why are they so awesome?May 25, 2022
Physicists are investigating if nuclear isomers could build the world’s most accurate clock or support the next generation of batteries.
How to build a wormhole in just 3 (nearly impossible) stepsMay 16, 2022
Planning a trip to the Andromeda Galaxy? Not so fast.
You've probably never heard of terahertz waves, but they could change your lifeApr 1, 2022
In the far infrared band of the electromagnetic spectrum, engineers are exploring the terahertz gap, which could lead to a wave of faster, more sensitive technologies.
Machine Learning Gets a Quantum Speedup | Quanta MagazineFeb 7, 2022
Two teams have shown how quantum approaches can solve problems faster than classical computers, bringing physics and computer science closer together.
What Are Lagrange Points? - DataScienceCentral.comJan 26, 2022
The James Webb Telescope, the long-awaited successor to the Hubble Telescope, was launched on Christmas Day, December 25th, 2021 and has, over the course of several weeks, been heading out to its final destination, an odd point in space called L2. While Lagrange points are well known to astronomers, they, and why the are important,… Read More »What Are Lagrange Points?
Ten things you might not know about antimatter | symmetry magazineJan 15, 2022
Antimatter has fueled many a supernatural tale. It's also fascinating all by itself.
Get to Know Maxwell's Equations—You're Using Them Right NowDec 3, 2021
James Clerk Maxwell's equations are a big deal in physics, explaining the fundamentals of electricity and magnetism. Here's the gist of how they work.
MIT-designed project achieves major advance toward fusion energySep 8, 2021
For the first time, a large high-temperature superconducting electromagnet was ramped to a field strength of 20 tesla, the most powerful magnetic field of its kind ever created. The demonstration helps resolve the greatest uncertainty in the quest to build the first fusion power plant that can produce more energy than it consumes, according to project leaders at MIT and startup Commonwealth Fusion Systems (CFS).
Breakthrough: Quantum computers will soon fit in your phone – SiftedAug 30, 2021
Quantum Brilliance has developed a diamond-based quantum computer that can run at room temperature and be miniaturised.
How a Laser Fusion Experiment Unleashed an Energetic Burst of OptimismAug 17, 2021
Even scientists who were skeptical of work at the National Ignition Facility called the results a success.
The tangled physics of knots, one of our simplest and oldest technologiesAug 3, 2021
Which knot is the strongest?
Star Trek's Warp Drive Leads to New PhysicsJul 22, 2021
Researchers are taking a closer look at this science-fiction staple—and bringing the idea a little closer to reality
AI Designs Quantum Physics Experiments beyond What Any Human Has ConceivedJul 5, 2021
Originally built to speed up calculations, a machine-learning system is now making shocking progress at the frontiers of experimental quantum physics
What Makes Quantum Computing So Hard to Explain?Jun 12, 2021
To understand what quantum computers can do — and what they can’t — avoid falling for overly simple explanations.
The Mystery at the Heart of Physics That Only Math Can SolveJun 10, 2021
The accelerating effort to understand the mathematics of quantum field theory will have profound consequences for both math and physics.
Researchers Levitated a Small Tray Using Nothing but LightFeb 18, 2021
One day a “magic carpet” based on this light-induced flow technology could carry climate sensors high in the atmosphere—wind permitting.
‘It Seems That I Know How the Universe Originated’Feb 11, 2021
The theoretical physicist Andrei Linde may have the world’s most expansive conception of what infinity looks like.
Why Is M-Theory the Leading Candidate for Theory of Everything?Jan 10, 2021
The mother of all string theories passes a litmus test that, so far, no other candidate theory of quantum gravity has been able to match.
Sandia National Laboratories: Z Pulsed Power Facility: How Does the Z MachiJan 4, 2021
Marx Bank Generator Marx Bank. Each Marx bank has sixty 2.6 μF capacitors (43 nF per Marx when erected) that are charged in parallel and discharged in series. When charged to 85 kV its output voltage is 5.1 MV, and stored energy is 20 MJ for all 36. (For a 90 kV charge it is 5.4 MV and 23 MJ.) W...
How to Talk Like a Physicist - Facts So RomanticJan 1, 2021
Theoretical physicist Sabine Hossenfelder, who probably is the smartest person on her block, has fun in her latest video skewering the scientific braggart.Photograph by Francisco De Legarreta C. / Unsplash Nautilus Members enjoy an ad-free experience. Log in or Join now . The other night I was out on our street with the neighbors for […]
The Year in PhysicsDec 26, 2020
Featuring paradoxical black holes, room-temperature superconductors and a new escape from the prison of time.
Gravity, Gizmos, and a Grand Theory of Interstellar Travel | WIREDDec 26, 2020
For decades, Jim Woodward dreamed of a propellantless engine to take humans to the stars. Now he thinks he’s got it. But is it revolutionary—or illusory?
The Admiral of the String Theory WarsAug 5, 2019
After a decade, Peter Woit still thinks string theory is a gory mess.
What is antimatter?Jun 29, 2019
Logic tells us that antimatter should have annihilated the Universe. So why hasn’t it?
Q: Why was it so hard to take a picture of a black hole? What are we even looking at?Apr 16, 2019
Physicist: Black holes and space are both black, so there’s that. But while black holes tend to be very small, space is bonkers big and filled with just enough stuff to give astronomers thin…
One night of telescope time rules out black hole/dark matter ideaApr 8, 2019
Black holes formed right after the Big Bang aren’t common enough to be dark matter.
Boy, 12, said to have created nuclear reaction in playroom labMar 25, 2019
Hobbyists say Jackson Oswalt of Tennessee is youngest person to achieve fusion
The blind spot of science is the neglect of lived experience | Aeon EssaysJan 9, 2019
It’s tempting to think science gives a God’s-eye view of reality. But we forget the place of human experience at our peril
Silent and Simple Ion Engine Powers a Plane with No Moving PartsNov 21, 2018
Researchers fly the first atmospheric aircraft to use space-proven ionic thrust technology
What Does Any of This Have To Do with Physics? - Issue 56: PerspectiveJan 19, 2018
Nautilus is a different kind of science magazine. Our stories take you into the depths of science and spotlight its ripples in our lives and cultures.
Material with helium ‘veins’ paves way for fusion reactorsNov 16, 2017
Helium may not seem harmful, but the gas, a byproduct of fusion, can destroy metal, making fusion power a distant dream. A new material could change that.
[1702.04680v1] Visual Discovery at PinterestDec 21, 2022
Over the past three years Pinterest has experimented with several visual search and recommendation services, including Related Pins (2014), Similar Looks (2015), Flashlight (2016) and Lens (2017)....
How Pinterest drives sustainable growthJul 18, 2022
Marc Andreessen famously said that for startups, “the only thing that matters is getting to product/market fit.” Product/market fit means providing enough value to enough people that the startup can…
Visual Tools To Aid Your Daily Inspirational ProcessFeb 20, 2022
Today we have gathered together a small but interesting toolkit which is going to help you find and harness the inspiration you need on a daily basis. The creative process for web designers is unrelenting,...
Want to ditch Pinterest? Here are the best alternatives for visual inspiration - Fast CompanyJan 29, 2022
If the recent discrimination allegations against Pinterest are leaving you uninspired (if not quesy), here are some great alternatives.
How Pinterest utterly ruined photo search on the internetNov 9, 2021
The social media site is the bane of non-users’ lives, hijacking image search results with a pushy sign-up screen. It needs to stop.
(285) PinterestFeb 4, 2021
16 Tools to Sell Products on PinterestDec 25, 2020
Pinterest provides tools to help merchants promote and sell products. Here is a list of tools for creating shops, product catalogs, ad campaigns, live events, and more.
Want to ditch Pinterest? Here are the best alternatives for visual inspiratNov 3, 2020
If the recent discrimination allegations against Pinterest are leaving you uninspired (if not quesy), here are some great alternatives.
pip
How uv got so fastDec 27, 2025
uv’s speed comes from engineering decisions, not just Rust. Static metadata, dropping legacy formats, and standards that didn’t exist five years ago.
Using pip to install a Large Language Model that’s under 100MBFeb 7, 2025
I just released llm-smollm2, a new plugin for LLM that bundles a quantized copy of the SmolLM2-135M-Instruct LLM inside of the Python package. This means you can now pip install …
How to Create and Use Requirements.txt in PythonApr 12, 2024
After setting up your Python project, creating a requirements.txt file is essential for simplifying...
Clearing Pip CacheJul 1, 2023
Cleaning Pip cache helps you in troubleshooting and getting fresh Python packages.
The one pip config you need to haveJun 4, 2022
Whenever you are installing python packages, you should always use a virtual environment. pip makes...
14 Must-Know pip Commands For Data Scientists and EngineersJul 15, 2021
Exploring some of the most useful pip commands for everyday programming
piracy
Piracy Doubled My App SalesJul 19, 2022
Anatomy Of A PirateJul 18, 2022
Piracy Is What Made Me, Says Ed SheeranJul 18, 2022
While piracy is often demonized as an aspect of the industry which ruins careers before they've even really begun, the reality is that the illicit dissemination of music can in. Continue reading
Protect Your Brand From CybersquattingJul 18, 2022
A new set of top-level domain extensions — .food, .sport, and more — pose challenges for brands.
pivots
The *real* pivotJul 5, 2022
Steve Blank Do Pivots Matter?Jul 5, 2022
There’s a sign on the wall but she wants to be sure
’ Cause you know sometimes words have two meanings Led Zeppelin – Stairway to Heaven In late 2013 Cowboy Ventures did an analysis of …
The Brooks TurnaroundOct 24, 2008
How speciality running shoe brand Brooks refocused on performance running — and turned the company around.
places
Swaziland: The Last Autocratic Monarchy in the World | TheCollectorJan 1, 2026
With a history of expansion, struggle, and scandal, Eswatini’s monarchy continues to make headlines.
The Island Without TimeDec 21, 2025
I traveled above the Arctic Circle to find out whether a town really can live free from the clock.
A Journey Into Rebel-Held MyanmarJul 28, 2024
Seventeen years after I left my post as the U.N.’s representative in Myanmar, I crossed into the rebel-held part of the country to witness new forms of local governance emerge amid a dramatic revolution.
A cool guide to the subregions of Oceania : r/coolguidesJul 4, 2024
154 votes, 19 comments. 5.5M subscribers in the coolguides community. Picture based reference guides for anything and everything. If it seems like…
platforms
Building Long-Lasting Companies with AI Moats | Nicholas Charriere posted on the topic | LinkedInJan 8, 2026
This is a great resource.
Understanding carriageDec 16, 2025
The announcement of the planned Netflix acquisition of Warner Bros, one of the last remaining major studios, is shedding light on a key issue we often overlook when thinking about culture, creativi…
Netflix and the Hollywood End GameDec 15, 2025
Netflix is driving the Hollywood end game, likely confident it can increase the value of IP, and fend off YouTube.
Tokenization And How Is It Changing Traditional Markets - DataconomyDec 12, 2025
The technology of tokenization of real assets is a component of the general digitalization of financial processes in the economy.
Social media users flee X, flock to TikTok and RedditNov 28, 2025
The same fragmentation that reshaped news is now reshaping social media.
The DoorDash problem and the great AI browser fightNov 22, 2025
Amazon sued Perplexity this month over its Comet browser, which uses AI agents to do online shopping on your behalf. This is the first major front in the war over who gets to browse the web.
Robotaxis and SuburbiaNov 18, 2025
Robotaxis are poised to further close the delta between suburbs and the city; the city (and Uber) might never recover.
OpenAI’s Windows PlayOct 13, 2025
OpenAI is making a play to be the Windows of AI: the all-encompassing platform that controls both hardware supplier and software developers.
Can We Fix Social Media? Testing Prosocial Interventions using Generative Social SimulationAug 14, 2025
The best dating apps aren’t even dating appsAug 1, 2025
With dating app fatigue rising, some peopl are finding love in unexpected places – the forums and sites they use to pass idle time online, as opposed to those dedicated to online dating.
The Definitive HBR Strategy GlossaryJul 28, 2025
Our guide to all things strategy, from “adjacency expansion” to “value stick.”
The Rise of Shippable MicrofactoriesJul 26, 2025
Can microfactories solve prefab's economic problem by inverting the factory model?
How to Structure a B2B Marketplace Venture | MIT Sloan Management ReviewApr 13, 2025
Companies that want to launch a B2B marketplace face a choice: own the platform, spin it off, or create a startup.
OnlyFans Sticky Business ModelFeb 17, 2025
PLUS: DoorDash, Apple Intelligence Ads, Walgreens Madness.
TikTok and the Sorting Hat — Remains of the DayJan 29, 2025
NEXT POST: Part II of my thoughts on TikTok, on how the app design is informed by its algorithm and vice versa in a virtuous circle.
An Interview with Daniel Gross and Nat Friedman About Models, Margins, and MoatsJan 23, 2025
An interview with Daniel Gross and Nat Friedman about Stargate, DeepSeek, and where the margins and moats will come with models.
Casual Viewing | Will TavlinDec 20, 2024
A decade before Airbnb persuaded homeowners to transform their homes into hotels, Netflix convinced its users to turn theirs into mini Netflix warehouses. Customers who held onto their DVDs for longer meant fewer shipping costs for Netflix, and fewer DVDs for the company to manage and store. Netflix tracked heavy users of its service — labeling them internally as “pigs” — and secretly throttled their deliveries. It didn’t matter if Netflix rented fewer DVDs than Blockbuster, because the company would keep collecting its monthly fee. The difference between Blockbuster and Netflix was this: Blockbuster punished customers for being forgetful; Netflix rewarded them for being mindless.
16 Ways to Measure Network Effects | Andreessen HorowitzNov 25, 2024
Network effects are one of the most important dynamics in software and marketplace businesses. But they’re often spoken of in a binary way: either you have them, or you don’t. In practice, most companies’ network effects are much more complex, falling along a spectrum of different types and strengths. They’re also dynamic and evolve as...
Why Middlemen Don't Get EliminatedNov 10, 2024
Thoughts on business models that don't seem to make perfect sense
White-label ad exchange platforms: Key features to look forNov 5, 2024
Digital advertising is developing at the speed of light, and things like Attekmi white label ad exchange are becoming an
Building the Bell SystemJul 3, 2024
If someone was making a list of the most important American companies today, it’s unlikely AT&T would be anywhere near the top.
Platform as a Product 101May 28, 2024
By providing a foundation for collaboration, platforms can create network effects, where the value of the platform increases as more participants join.
ISO 19005-1:2005Apr 8, 2024
Document management — Electronic document file format for long-term preservation — Part 1: Use of PDF 1.4 (PDF/A-1)
50 Types of Business Models (2022) – The Best Examples of Companies Using IFeb 14, 2024
Last updated: Jan 30, 2021 Are you looking for ideas to unlock your long-term business value? If you shook your head in yes, remember that business model is one of the ways to streamline your business process. Precisely, a business model is a holistic framework to define, understand, and design your entire business in the…
Business models based on the compiled list at http://news.ycombinator.com/item?id=4924647. I find the link very hard to browse, so I made a simple version in Markdown instead.Feb 14, 2024
Business models based on the compiled list at http://news.ycombinator.com/item?id=4924647. I find the link very hard to browse, so I made a simple version in Markdown instead. · GitHub
How Quora DiedFeb 6, 2024
The once-thriving site used to answer our most specific questions. But users are fleeing.
The New Moats. Why Systems of Intelligence™ are the… | by Jerry Chen | GreyDec 29, 2023
Why Systems of Intelligence™ are the Next Defensible Business Model
The SaaS Opportunity Of Unbundling ExcelOct 16, 2023
The unbundling of Excel is just as important as the unbundling of Craigslist. Here's what you need to know about the Excel Economy and how SaaS companies can take advantage of different verticals and use cases that Excel has dominated.
Platform Adjacency Theory - Infrequently NotedAug 6, 2023
Like other meta-platforms **the web thrives or declines to the extent it can accomplish the lion's share of the things we expect most computers to do**. Platform Adjacency Theory explains how to expand in a principled way and what we risk when natural expansion is prevented mechanisms that prevent effective competition.
208. Ultimate Guide to PlatformsJul 24, 2023
Patterns and Practices in the Creation, Rise, and Fall of Platforms
Inside 4chan’s top-secret moderation machineJun 10, 2023
Internal company documents reveal how the imageboard’s chaotic moderation allowed racism and violence to take over.
Twitter alternative T2 launches new verification program, hires Discord engMar 31, 2023
T2, a new Twitter alternative, is preparing to take flight
OpenAI turns ChatGPT into a platform overnight with addition of pluginsMar 24, 2023
OpenAI today announced its support of new third-party plugins for ChatGPT, and it already has Twitter buzzing about the company's potential platform play.
Matching and Information Design in MarketplacesMar 20, 2023
Two design rules that make products win. - by Thomas DrachMar 19, 2023
The secrets of Zoom, Amazon, and Apple products.
How One Guy’s Car Blog Became a $1 Billion MarketplaceMar 12, 2023
It’s a place for obsessives to buy, sell and geek out over classic cars. The company pops open its hood after 100,000 auctions to explain why.
WTF is Marketplace Liquidity?Mar 12, 2023
Methodologies for understanding and measuring marketplace liquidity
Everyone's app platformJan 16, 2023
Airtable is a low-code platform for building collaborative apps. Customize your workflow, collaborate, and achieve ambitious outcomes. Get started for free.
The platform and the curatorJan 13, 2023
Who has their hand on the dial? Talk with someone who works at Apple, Amazon, Google, Linkedin, Facebook, etc, and they’ll be happy to give you tips on how to work the platform to your advant…
If you like startups you should love anti-trustJan 9, 2023
Why do companies that were once the face of the anti-establishment startup world inexorably become the very sort of business that they were built to destroy?
Hacker NewsJan 7, 2023
Jane Street is a quantitative trading firm and liquidity provider with a unique focus on technology and collaborative problem solving.
The 7 Powers Known to Tesla, Pixar, Netflix, Apple & TwilioDec 13, 2022
There is a fallacy in believing your current performance is indicative of future success: Performance is a trailing indicator. Power is a leading one.
The Art of Profitability by Adrian SlywotzkyNov 5, 2022
This is a book summary of The Art of Profitability by Adrian Slywotzky. Read The Art of Profitability summary to review key ideas and lessons from the book.
Turning non-tradables into tradablesOct 17, 2022
Plus! Grills, Ads, Pricing, Drops, Movies, Diff Jobs
What is Plex? Everything you need to knowSep 5, 2022
Our guide on what Plex is and what you can stream on it
Royalty Exchange: Buy & Sell Music Rights & CopyrightsJul 30, 2022
Royalty Exchange is an online marketplace & auction platform where investors & owners of royalty streams can buy royalties and sell all types of royalties.
Buy Royalties & Intellectual Property Rights Income | Royalty ExchangeJul 30, 2022
Royalty Exchange is a marketplace where investors can buy income-generating intellectual property and other royalty streams as alternative investments.
Two-Sided Networks in Healthcare, a Founder’s PlaybookJul 27, 2022
The most significant bottleneck in the adoption of healthcare technology to date has been distribution. Over the last decade, generations of digital health companies have struggled to reach escape velocity—not because their products and services weren’t transformative, but because they failed to find an executable path for sustainable distribution and value capture. Some of that...
How to protect yourself as middleman in a marketplaceJul 19, 2022
Guest One key risk facing marketplace operators is the threat of disintermediation, when a buyer chooses to work directly with a seller and bypasses your platform. Through our experience investing in several pioneering marketplace companies, we've seen a handful of clever ways to fight this.
Business Model NavigatorJul 19, 2022
Explore powerful business model patterns by iconic firms and leverage our interactive software for business model innovation.
3 Strategies To Building a Marketplace Startup | SaaS AcademyJul 18, 2022
Building a two-sided market is probably the hardest thing you can build as an entrepreneur. It's so hard that a few weeks ago, I organized a Marketplace
Signaling as a ServiceJul 18, 2022
01 Intro One of the best books I have read in the last few years is The Elephant in the Brain by Robin Hanson and Kevin Simler. The book makes two main arguments: a) Most of our everyday actions can be traced back to some form of signaling or status seeking b) Our brains deliberately hi
The 7 marketplace design patternsJul 18, 2022
The rise of on-demand marketplaces has brought with it varied business models, across number of industries. This framework tries to explain how a marketplace’s vertical impacts its business m…
The 3 Competitive Defenses of Enduring SaaS Companies by @ttunguzJul 18, 2022
A technology advantage isn’t enough to build an enduring enterprise SaaS company because at the core, all SaaS software share the same architecture. A relational database stores data and a web site presents the data. This is true for CRM (Salesforce), marketing automation (Marketo), email (Exchange), content management systems (Sharepoint) and so on. Because SaaS apps use standard databases, engineers can easily transfer the data from one database to another. I’m greatly simplifying here because differences in architecture may exist, but in principle it’s simple to extract, transform and load data from one relational database into another.
Why Platform Disruption Is So Much Bigger than Product DisruptionJul 18, 2022
New products change what we buy, but new platforms have much broader effects.
Positional ScarcityJul 18, 2022
Each day on Tech Twitter, we get up in the morning, open up the website, and then go see what it is we’re mad about. A few days ago, it was this: The concept of “pay to get a better place in l…
How to Build a Company That Lasts ForeverJul 18, 2022
At the core of Europe's strongest economy is the Mittelstand, a tier of impeccably run small manufacturers that measure growth not in years but in centuries. Here's how they do it, in five very German lessons.
Crowd Patronage: How A 400 Year Old Model Can Save The Music Ind...Jul 18, 2022
“A lot of people in our industry haven’t had very diverse experiences. So they don’t have enough dots to connect, and they end up with very linear solutions without a broad perspective on the problem. The broader one’s understanding of the human...
Why Uber FightsJul 18, 2022
Ride-sharing is a winner-take-all market that depends on controlling demand more than it does supply.
Everything We Know About Platforms We Learned from Medieval FranceJul 18, 2022
Raise a glass of bubbly to the count of Champagne.
Twilio Segment BlogJul 18, 2022
Three Elements of a Successful Platform StrategyJul 18, 2022
Building a better mousetrap isn’t enough.
The Power of Data Network EffectsJul 18, 2022
In the furiously competitive world of tech startups, where good entrepreneurs tend to think of comparable ideas around the same time and "hot spaces" get crowded quickly with well-funded hopefuls, competitive moats matter more than ever. Ideally, as your startup scales, you want to not only be able
What’s Next for Marketplace Startups? | Andreessen HorowitzJul 18, 2022
Goods versus Services: The next trillion dollar opportunity Marketplace startups have done incredibly well over the first few decades of the internet, reinventing the way we shop for goods, but less so for services. In this essay, we argue that a breakthrough is on its way: The first phase of the internet has been...
Why Figma Wins - kwokchainJul 17, 2022
Companies are a sequencing of loops. While it’s possible to stumble into an initial core loop that works, the companies that are successful in the long term are the ones that can repeatedly find the next loop. However, this evolution is poorly understood relative to its existential impact on a company’s trajectory. Figma is a … Continue reading Why Figma Wins →
All Markets Are Not Created Equal: 10 Factors To Consider When Evaluating Digital MarketplacesJul 17, 2022
Since Benchmark’s investment in Ebay 15 years ago, we have been fascinated by online marketplaces. Entrepreneurs accurately recognize that the connective tissue of the Internet provides an opportunity to link the players in a particular market, reducing friction in both the buying and selling experience. For example, my car tax check is an online platfrom that allows you to book a slot for a complete history and guidance of your car taxes and other details. The arrival of the smartphone amplifies these opportunities, as the Internet’s connective tissue now extends deeper and deeper into an industry with the participants connected…
How Artists Get Paid From StreamingJul 13, 2022
We explain how your money gets from you to a streaming platform, and finally to an artist.
Nearly a third of new subscribers to some news publications cancel in the first 24 hoursJul 13, 2022
The same-day cancellation rate likely includes subscribers who only wanted access to one article, or who felt the full paid experience was lacking after a quick look around. New data suggests some just really hate the idea of auto-renewal.
Thoughts on Building Weatherproof Companies | Andreessen HorowitzJul 6, 2022
You can't build a weatherproof company if you don’t constantly gather challenges to your thinking, learn to listen to them, and then test those learnings out.
The Marketplace Glossary | Andreessen HorowitzJul 5, 2022
This week, we published the a16z Marketplace 100, a ranking of the largest and fastest-growing consumer-facing marketplace startups and private companies. See the full index and analysis here, and visit a16z.com/marketplace-100 for more marketplace-related content. From a business standpoint, we know marketplaces are challenging to scale; from a conversational perspective, we’ve come to realize they’re...
In times of change, make tiresJul 5, 2022
Innovation is not a binary choice between the old and the new. The answer is often to contribute to evolution — by making parts that work…
The Real Power of Platforms Is Helping People Self-OrganizeJul 5, 2022
Centralized planning is no longer required.
Network Effects Aren’t EnoughJul 5, 2022
In many ways, online marketplaces are the perfect business model. Since they facilitate transactions between independent suppliers and customers rather than take possession of and responsibility for the products or services in question, they have inherently low cost structures and fat gross margins. They are highly defensible once established, owing to network effects. Yet online marketplaces remain extremely difficult to build, say Andrei Hagiu of Harvard Business School and venture capitalist Simon Rothman of Greylock Partners. Most entrepreneurs and investors attribute this to the challenge of quickly attracting a critical mass of buyers and suppliers. But it is wrong to assume that once a marketplace has overcome this hurdle, the sailing will be smooth. Several other important pitfalls can threaten marketplaces: growing too fast too early; failing to foster sufficient trust and safety; resorting to sticks, rather than carrots, to deter user disintermediation; and ignoring the risks of regulation. This article draws on company examples such as eBay, Lending Club, and Airbnb to offer practical advice for avoiding those hazards.
A Dozen Attributes of a Scalable BusinessJul 5, 2022
“A startup is a company designed to grow fast. Being newly founded does not in itself make a company a startup. Nor is it necessary for a startup to work on technology, or take venture fundin…
“Platform” risk — Remains of the DayJul 5, 2022
Last night, Twitter curtailed Meerkat's access to its graph . I saw lots of discussion on Twitter (I'd say this was ironic but it's just expected) about why and whether Twitter should just compete on its own merits with its recent acquisition Periscope . Some have termed what happened to Meerkat
http://platformed.info/platform-metrics/Jul 5, 2022
Use Co-opetition to Build New Lines of RevenueJul 5, 2022
Just don’t pretend you’re all on the same side.
How to Make a Good Secret SauceJun 28, 2022
Knowledge moats (secret sauces) are one of the most fundamental type of moat in business. They consist of the information, data and…
Is There a Platform in Your Product?Jun 28, 2022
Five of the 10 most valuable companies in the world today—Apple, Alphabet, Amazon, Facebook, and Microsoft—derive much of their worth from their multisided platforms, which facilitate interactions or transactions between parties. Many MSPs are more valuable than companies in the same industries that provide only products or services: For instance, Airbnb is now worth more than Marriott, the world’s largest hotel chain. However, companies that weren’t born as platform businesses rarely realize that they can—at least partially—turn their offerings into one, say the authors. And even if they do realize it, they often wander in the dark searching for a strategy to achieve this transformation. In this article, Hagiu and Altman provide a framework for doing so. They lay out four specific ways in which products and services can be turned into platforms and examine the strategic advantages and pitfalls of each: (1) opening the door to third parties; (2) connecting customers; (3) connecting products to connect customers; and (4) becoming a supplier to a multisided platform. These ideas can be used by physical as well as online businesses.
Three-Dimensional Strategy: Winning the Multisided PlatformJun 25, 2022
Done right, companies competing as a multi-sided platform often win with higher percentage profit margins than those enjoyed by traditional resellers. The problem is that a winning strategy is far from self-evident. Professor Andrei Hagiu explains the potential and the pitfalls for life as an MSP.
Beyond DisruptionJun 23, 2022
Clayton Christensen claims that Uber is not disruptive, and he’s exactly right. In fact, disruption theory often doesn’t make sense when it comes to understanding how companies succeed …
Snapchat’s LadderJun 23, 2022
Snapchat is on the verge of conquering the toughest messaging market in the world: the United States. The way they did it is by laddering-up.
10 Places to Find Product-Market FitJun 23, 2022
Startups fail because they run out of money before achieving product-market fit. NFX Managing Partner Gigi Levy-Weiss identifies 10 places to look for product-market fit in startup ideas.
Full Stack Music: 1 Trillion Streams, 200 Million Tickets | TechCrunchJun 23, 2022
At present, there are three distinct music industries: radio, on-demand music, and concert ticketing. However, we are starting to enter a new phase, where these industries will converge and produce one integrated experience for artists and fans. I’ve taken to calling this full stack music, because at heart it speaks to a holistic experience that integrates these industries through data.
Strategy Letter VJun 23, 2022
When I was in college I took two intro economics courses: macroeconomics and microeconomics. Macro was full of theories like “low unemployment causes inflation” that never quite stood u…
Tidal and the Future of MusicJun 23, 2022
Predicting success and failure is about understanding who has leverage. In the case of music, the winners will be the labels, not the artist. But perhaps there is hope for tomorrow
How To Structure A Marketplace | TechCrunchJun 23, 2022
Editor's Note: The following is a guest post by Simon Rothman of Greylock Partners. Rothman is particularly passionate about Marketplace technology (Etsy, Kickstarter, Airbnb, etc) and how to garner success in that category. Marketplaces are endemic to the consumer web: Largely popularized by eBay, we've recently seen quite a few variations on the theme, like young guns Etsy, oDesk, Airbnb, and Kickstarter. Old or new, the two elements that bind all marketplaces are network effects (a good thing) and the chicken-and-egg problem (not such a good thing).
The Empty Promise of Data Moats | Andreessen HorowitzJun 13, 2022
Data has long been lauded as a competitive moat for companies, and that narrative’s been further hyped with the recent wave of AI startups. Network effects have been similarly promoted as a defensible force in building software businesses. So of course, we constantly hear about the combination of the two: “data network effects” (heck, we’ve...
Anatomy of a managed marketplace | TechCrunchJun 13, 2022
Managed marketplaces have been one of the hottest categories of venture investment over the past several years. They garner a lot of press because the consumer experiences are often radically different than what’s previously been available in the market. But there is confusion over what a true “managed” marketplace is. It’s fairly easy to spot if you know what to look for.
The New Curated Consumer Marketplace Model: 10 Criteria For SuccessJun 13, 2022
By Stephanie Tilenius, an entrepreneur in residence at Kleiner Perkins Caufield & Byers The Wild West of online marketplaces is over. From 1999 until 2006, eBay and Amazon Marketplaces dominated the field, offering platforms that brought buyers and sellers together. But over the last seven years, more than 20 new marketplace [...]
Defining AggregatorsJun 12, 2022
Building on Aggregation Theory, this provides a precise definition of the characteristics of aggregators, and a classification system based on suppliers. Plus, how to think about aggregator regulat…
Alexa: Amazon’s Operating SystemJun 7, 2022
Money is made at chokepoints, and the most valuable chokepoints are operating systems; Amazon is building exactly that with Alexa.
Economies Of Scale As A Service | TechCrunchJun 4, 2022
Credit where it's definitely due: this post was inspired by a Twitter conversation with Box CEO Aaron Levie. Don't look now, but something remarkable is happening. Instagram had twelve employees when it was purchased for $700 million; all of its actual computing power was outsourced to Amazon Web Services. Mighty ARM has only 2300 employees, but there are more than 35 billion ARM-based chips out there. They do no manufacturing; instead they license their designs to companies like Apple, who in turn contract with companies like TSMC for the actual fabrication. Nest Labs and Ubiquiti are both 200-employee hardware companies worth circa $1 billion...who subcontract their actual manufacturing out to China.
Aggregation and the New RegulationJun 2, 2022
Because of the Internet realities described by Aggregation Theory a smaller number of companies hold an increasing amount of power. However, an increasing focus on market forces reduces the latitud…
Reverse Network Effects: Why Scale Threatens Today’s Social NetworksJun 2, 2022
To explore the future of online networks, it's important to note how network effects correlate with value and the factors that make these network effects work in reverse.
The Intentional Network Effects of UberMay 28, 2022
Few realize that Uber's core network effects aren't as strong as they seem. At this point, we count no less than 9 additional defensibilities Uber is pursuing to reinforce their core network effect.
A Taxonomy of MoatsMay 28, 2022
Value is created through innovation, but how much of that value accrues to the innovator depends partly on how quickly their competitors imitate the innovation. Innovators must deter competition to…
Zapier: The $5B unbundling opportunityApr 15, 2022
Zapier has 3M+ users and generates $125M in ARR. At a $5B valuation, its fast-growing horizontal platform is unable to meet the demands of all of its customers. The increase of underserved Zapier customers presents an opportunity.
The Economics of Data BusinessesMar 10, 2022
How data businesses start, and how they keep going, and growing, and growing.
Twitter Wants to Reinvent Itself, by Merging the Old With the New (Published 2022)Mar 7, 2022
The company is undertaking a far-reaching effort to change how it works. For some, it is an echo of their early idealism and a vision for what the internet could have been.
Five Reasons to Sell End-to-End Products in Early Markets by @ttunguzFeb 10, 2022
In early and developing markets, selling complete products is often a superior go to market strategy, rather than selling an innovation in a layer in the stack. This is true for five reasons. First, for early customers to generate value from a novel technology, that technology must solve a business problem completely. End-to-end products do that. Layers in the stack don’t. They optimize existing systems. In early markets, customers want to buy a car, not a better camshaft.
Shopify and the Power of PlatformsFeb 10, 2022
It is all but impossible to beat an Aggregator head-on, as Walmart is trying to do with Amazon. The solution instead is to build a platform like Shopify.
The Tribal Network Effect (nfx #15)Feb 10, 2022
Today, we’re sharing the newest social nfx we've identified—the 15th type of network effect: Tribal Network Effects.
The economics of SpotifyFeb 8, 2022
Spotify’s recent Joe Rogan controversy has also deepened a rift between the platform and artists over pay.
Storming Reddit's MoatFeb 8, 2022
A Guide to Reddit, Its Key Competitive Advantages, and How to Unbundle It
How we crack the chicken and the egg problemJan 16, 2022
Hatching a Design Marketplace from Scratch at Visually
The power of defaultsJan 14, 2022
The world’s most successful companies all exhibit some form of structural competitive advantage: A defensibility mechanism that protects their margins and profits from competitors over long periods of time. Business strategy books like to refer to these competitive advantages as “economic moats”.
White Label Designs – All About Implementation, Design Systems, and New TecOct 15, 2021
Building white label products is more profitable than starting a new design every time. Learn how to properly implement white labelling.
The Emergence of B2B Raw Material MarketplacesSep 26, 2021
Business-to-business marketplaces are among ecommerce's leading growth trends, yet many industries remain under-served, especially for raw materials.
What Spotify and Apple can learn from Chinese podcasting appsSep 14, 2021
Western platforms are still way behind in giving creators (and fans) the tools to succeed.
The thriving business of ‘Ikea hacking’Jun 25, 2021
A growing number of companies are offering design tweaks for old Ikea furniture — and business is booming.
The Great Game of Risk Played in Category Creation, and Why the Winning StrJun 21, 2021
Suppose you’ve started a company that’s creating a category. Most buyers in your target market haven’t heard of your business or the kind of software you sell. There’s no budget line item, no Magic Quadrant, no G2 High Performer Award, no conference. You have an idea, a vast blue ocean in front of you, and a pile of greenbacks stashed in a bank account from your last financing. Do you spend aggressively to create the category or conserve capital, knowing education will take time?
Can Apple change ads? — Benedict EvansJun 14, 2021
20 years ago Apple seized music, and turned it into a lever for its broader business. It failed to do the same to TV, and lost control of music, but won massively in games, where it now makes more money than the entire global digital music industry. Now, perhaps, it’s looking at advertising.
7 Powers: The Foundations of Business Strategy by Hamilton Helmer – The RabJun 9, 2021
Summary Helmer sets out to create a simple, but not simplistic, strategy compass. His 7 powers include: scale economics, switching costs, cornered resource, counter positioning, branding, network effects, and process. Key Takeaways Strategy: the study of the fundamental determinants of potential business value The objective here is both positive—to reveal the foundations of business value—and […]
Distribution and DemandJun 3, 2021
Distribution on the Internet is free; what matters is controlling demand. AT&T and Verizon didn’t understand the distinction.
App Store ArgumentsJun 3, 2021
There are all kinds of arguments to make about the App Store, and nearly all of them are good ones; that’s why the best solution can only come from Apple.
Spotify’s SurpriseMay 1, 2021
Spotify’s new subscription podcast offerings embrace the open ecosystem of podcasts in multiple ways.
Why I wouldn't invest in open-source companies, even though I ran one.Apr 4, 2021
After more than 12.000 Github stars, two successful open-source projects, a failed open-core company, and a successful prop-tech one*, I feel more than ever that giving your product away for free is just as bad a business strategy as it sounds.
Enterprise Gateway Marketplaces Will Turn Large Organizations Inside-OutMar 2, 2021
The marketplace revolution is still just beginning and the enterprise gateway is the newest type of marketplace.
How to Eat an Elephant, One Atomic Concept at a Time - kwokchainFeb 6, 2021
How Figma and Canva are taking on Adobe—and winning In 2010, Photoshop was ubiquitous. Whether you were editing a photo, making a poster, or designing a website, it happened in Photoshop. Today, Adobe looks incredibly strong. They’ve had spectacular stock performance, thanks to clear-eyed management who’ve made bold bets that have paid off. Their transition … Continue reading How to Eat an Elephant, One Atomic Concept at a Time →
Laws of Tech: Commoditize Your ComplementJan 3, 2021
A classic pattern in technology economics, identified by Joel Spolsky, is layers of the stack attempting to become monopolies while turning other layers into perfectly-competitive markets which are commoditized, in order to harvest most of the consumer surplus; discussion and examples.
Sustainable Sources of Competitive Advantage · Collaborative FundJan 2, 2021
This article originally appeared on Fortune.com.
Why Competitive Advantages Die · Collaborative FundJan 2, 2021
A few factors I’ve seen pull winners off the podium…
Dan McKinley :: Choose Boring TechnologyJan 2, 2021
Five Lessons From Dave Chappelle – Stratechery by Ben ThompsonDec 18, 2020
Dave Chappelle has a new special about his old show that includes fundamental lessons about how the Internet has changed the content business.
Come for the Network, Pay for the ToolAug 10, 2020
Paid groups, bespoke social networks, and the meaning of community for internet-native businesses.
10 Best Ecommerce Platforms Compared & Rated For 2020Jul 26, 2020
Our top ecommerce builders are based on objective performance data, feature set & value. Check out ecommerce platforms now.
Moats Before (Gross) MarginsJun 1, 2020
In 2019, long before the outbreak of COVID-19, many lower gross margin tech companies were not being well-received by the public markets, and an excessive spotlight was cast by many on company gross margins. In the present moment, that attention has only grown for both public and private companies. We’ve observed a bifurcation in the...
How Cameo Turned D-List Celebs Into a Monetization MachineMar 18, 2020
Inside the surreal and lucrative two-sided marketplace of mediocre famous people
When Distribution Trumps ProductFeb 24, 2020
If you polled a cross-section of companies about their most important software, accounts payable and accounts receivable software would likely not rank high on their lists. It’s the kind of unglamorous, workhorse software that’s necessary, but often taken for granted. Then, late last year, the cloud-based b2b payments company Bill.com went public—and became the second...
How interchangeable parts revolutionised the way things are madeDec 23, 2019
One man's desire to create the perfect gun profoundly changed manufacturing.
8 Things to Consider When Building Managed Marketplace Companies - AndreessDec 23, 2019
There might be no more beloved image of the American entrepreneurial spirit than that of neighborhood kids who open a sidewalk lemonade stand on a hot summer day. With a little bit of “capital” from their parents — lemons, water, sugar, a card table, some markers and paper — hard work, and good sidewalk placement,...
The Story of a Great Monopoly - The AtlanticDec 23, 2019
”These incidents in railroad history show most of the points where we fail ... to maintain the equities of ‘government’—and employment—‘of the people, by the people, for the people.’”
HBO’s Corpus of Content and Apple’s Lack ThereofNov 2, 2019
Apple TV+ is cheap and barren. HBO Max is expensive and cheapening their brand. Everyone is confused.
Japanese manufacturers use decades of experience to dominate key chemical mOct 9, 2019
Tokyo Ohka Kogyo Co., JSR Corp. and Shin-Etsu Chemical Co.: Three seemingly inconspicuous companies suddenly came into the spotlight in early July when Japan announced it would slap tightened export controls to South Korea on three key chemicals — photoresists, fluorinated polyimide and hydrogen fluoride...
The Rickety Economics of Food TrucksSep 3, 2019
Whenever food trucks materialize to serve often-indulgent food out of a little kitchen with a big engine, more than a few of us wonder: How...
Netflix and the Economics of BundlingAug 30, 2019
How does Netflix get away with releasing its movies in theaters on the same day it makes them available for “free” on its streaming platform? The answer is that Netflix is pursuing a fundamentally different business model from everyone else in the industry. Netflix is not in the business of selling individual movies to many different customers. Instead, it’s in the business of selling many different movies to individual customers—in bundles. Bundled subscriptions allow Netflix to practice a different kind of price discrimination from the movie studios. The company doesn’t have to figure out how much a consumer values any individual movie on the service. The bundle does that for them—very profitably.
Disruptive Interfaces & The Emerging Battle To Be The DefaultAug 29, 2019
A new battle is brewing to be the default of every choice we make. As modern interfaces like voice remove options, augmented reality…
Product innovation is not enough to beat a competitor’s network effectsAug 20, 2019
Bird recently announced a new form factor for micromobility, the Bird Cruiser. It’s a cross between an electric scooter, a bicycle and a…
A Framework for ModerationAug 11, 2019
The question of what should be moderated, and when, is an increasingly frequent one in tech. There is no bright line, but there are ways to get closer to an answer.
Amazon is a boring retailer — Benedict EvansAug 9, 2019
Amazon is so new, and so dramatic in its speed and scale and aggression, that we can easily forget how many of the things it’s doing are actually very old.
Hidden Networks: Network Effects That Don’t Look Like Network Effects – AndAug 2, 2019
Many of the most consequential projects of the internet era — from Wikipedia to Facebook and bitcoin — have all been predicated on network effects, where the network becomes more valuable to users as more people use it. As a result, we’ve become really good at analyzing and measuring network effects. Whether it’s decreasing customer...
10 Quirky Families That Still Rule the WorldJul 17, 2019
You’d never confuse them for the Rockefellers. But you also wouldn’t have curling without ’em.
Ahead of Its Time, Behind the Curve: Why Evernote Failed to Realize Its PotApr 21, 2019
Evernote has been plagued by a series of managerial missteps and failed product launches. The company’s future is far from certain.
The Truth About the Scooter Economy — An Insider’s PerspectiveApr 20, 2019
There is a story arc of the electric scooter market that took the world by storm in 2018, was second-guessed late in the year and has…
$9 Marketing Stack: A Step-by-Step GuideMar 16, 2019
Update 2016-10-18: This tutorial has been updated to reflect the latest version of my stack (now with Drip!). I’ve also updated pricing info (it’s technically a $0 stack now) and screenshots. The original outdated article is archived here. “Just tell me what to do so I can stop
The Dynamics of Network EffectsDec 24, 2018
The most successful companies and products of the internet era have all been predicated on the concept of network effects, where the network becomes more valuable to users as more people use it. This is as true of companies like Amazon and Google as it is for open source projects like Wikipedia and some cryptocurrencies....
Shopify App Store: Ecommerce App MarketplaceDec 22, 2018
Shopify App Store: customize your online store and grow your business with Shopify-approved apps for marketing, store design, fulfillment, and more.
‘It’s their moat’: How Shopify built an $800 million partner ecosystemDec 21, 2018
Shopify is partnering with a network of more than 20,000 app developers and agency partners to build profitable businesses.
Do platforms work?May 28, 2018
The distributed network has gobbled the hierarchical firm. Only by seizing the platform can workers avoid digital serfdom
The Moat MapMay 20, 2018
The Moat Map describes the correlation between the degree of supplier differentiation and the externalization (or internalization) of a company’s network effect.
The pains of growing a platform - Inside IntercomDec 27, 2017
Hundreds of startups are pitching themselves as "platforms". While platforms make compelling businesses, they're nearly impossible to create from scratch.
Goodbye GatekeepersOct 22, 2017
Harvey Weinstein was a gate-keeper — a position that existed in multiple industries, including the media. That entire structure, though, is untenable on the Internet, and that’s a good thing.…
play
Hanging on to Your Inner Child Might Be the Secret to Health and HappinessFeb 22, 2026
New evidence suggests that adults never outgrow the need for play, but we definitely do forget how to make room for it.
Why did the metaverse die? Because Silicon Valley doesn’t understand the coOct 15, 2023
To have fun, you have to be okay with the idea of wasting time.
The swing has a universal history of transgression | Aeon EssaysMay 2, 2023
Now associated with childhood fun, the swing has a near-universal history of ritual transgression and transformation
The puzzle of playApr 18, 2023
The purpose of play — for children, monkeys, rats or meerkats — has proved surprisingly hard to pin down. Scientists continue to toss around ideas.
How Do You Make the Perfect Toy? | The WalrusSep 29, 2022
Fads come and go, but how to create a toy that stands the test of time is the billion-dollar question
How 10 Classic Toys Were InventedAug 27, 2022
Ever wonder how Lincoln Logs or Sea Monkeys found their way into 20th-century toy stores? Here are the little-known origins of 10 classic toys.
The mystery of the world's oldest toysAug 17, 2022
The world's oldest toys date back thousands of years – but determining whether ancient children played with them, and how, remains a mystery archaeologists are piecing together.
HomeJul 18, 2022
Play May Be a Deeper Part of Human Nature Than We ThoughtJul 18, 2022
An animal study brings us closer to understanding our own behavior
10 Tips for Cultivating Creativity, From the Director of the Lifelong Kindergarten Group at MITFeb 25, 2022
The challenge is not how to “teach creativity” to children, but rather how to create a fertile environment in which their creativity will take root, grow, and flourish.
Dolls help children create wonderfully vivid and imaginative worlds while also serving as unsettlinSep 24, 2018
Dolls help children create wonderfully vivid and imaginative worlds, while also serving as unsettling reminders of the abyss
plex
PlexJul 23, 2023
Hacker NewsNov 13, 2022
Why I uninstalled Plex Media Server after over a decade and migrated my movie and TV show collection to Jellyfin instead of Emby.
Placeholder.com: Placeholder.com – The Free Image Placeholder Service FavouSep 16, 2022
One place to search and find your next commercial real estate rental. List your property on Placeholder and get get access to our wide distribution channel network.
What is Plex? Everything you need to knowSep 5, 2022
Our guide on what Plex is and what you can stream on it
Where is the Plex Media Server data directory located? | Plex SupportAug 31, 2022
The main Plex Media Server data directory location will vary based on your operating system. Below are the default locations....
Kiss the streaming struggle goodbye with Plex | PlexApr 7, 2022
Ahhh the app dance. You know the one—where you sit down with the best intentions of watching a movie but...
plotly
Understanding Dash: How to Transform Plotly Charts into Interactive Web DashboardsOct 1, 2025
Transform your Plotly charts into shareable web applications using Python Dash with minimal code changes.
Grow a Treemap with Python and Plotly ExpressJan 17, 2024
Turn a government PDF into a financial planning tool
11 Less Used but Important Plots for Data ScienceNov 23, 2022
Some Unique Data Visualization Techniques for Getting High-Level Insight into the Data
Choropleth Maps — 101 using PlotlyNov 3, 2020
I have been working as a Data Analyst for almost 5 years now but, in this time I have mostly used business intelligence software for all…
mheap/pocket-auth-cliJun 24, 2024
Export archived article data from PocketFeb 2, 2023
Export archived article data from Pocket · GitHub
python - Why Pocket API returns 403 Forbidden always? - Stack OverflowJan 22, 2023
I'm trying to call this line:
curl https://getpocket.com/v3/oauth/authorize --insecure -X POST -H "Content-Type: application/json" -H "X-Accept: application/json" -d "{\"consumer_key\":\"61999-
Getting your reading history out of Pocket using Python | by Alex D'Ambra |Jun 23, 2022
I’ve been using Pocket for many years to collate all the articles, blog posts, recipes, etcI’ve found online. I decided it would be…
podcast
Jump, Jive and Fail: The ’90s Swing CrazeJan 29, 2025
How did retro sounds, dance moves, and vintage suits come to dominate before suddenly disappearing?
Success 2.0: Taking the Leap | Hidden Brain MediaMay 4, 2023
American culture celebrates those who persevere in the face of adversity. So how do we know when to walk away from something that’s not working? Today, we kick off our new “Success 2.0” series with economist John List. He says in every domain of our lives, it’s important to know when to pivot to something new.
Spotify shows how the live audio boom has gone bust - The VergeApr 5, 2023
Spotify Live is getting the ax.
How Spotify's podcast bet went wrongFeb 15, 2023
Inside Spotify's turn away from podcasting, which has triggered a harsh winter for the small studios it helped support as they consolidate and lavish narrative productions wane.
40,000 Recipes for MurderSep 10, 2022
Two scientists inadvertently open the Pandora’s Box of WMDs. What now?
Open Broadcaster Software®️ | OBSJun 24, 2022
OBS (Open Broadcaster Software) is free and open source software for video recording and live streaming. Stream to Twitch, YouTube and many other providers or record your own videos with high quality H264 / AAC encoding.
How SiriusXM bought and bungled a beloved podcast networkMar 23, 2022
Stitcher and Earwolf are beloved by fans — then they started losing hosts and talent.
How the Alien Languages in Foundation Were CreatedJan 16, 2022
“It was a matter of really reading between the lines of the script.”
What Spotify and Apple can learn from Chinese podcasting appsSep 14, 2021
Western platforms are still way behind in giving creators (and fans) the tools to succeed.
The Tim Ferriss Show Transcripts: Jerry Seinfeld — A Comedy Legend’s Systems, Routines, and Methods for Success (#485) - The Blog of Author Tim FerrissApr 11, 2021
Please enjoy this transcript of my interview with entertainment icon Jerry Seinfeld (@jerryseinfeld). Jerry’s comedy career took off after his first appearance on The Tonight Show with Johnny Carson in 1981. Eight years later, he teamed up with fellow comedian Larry David to create what was to become the most successful comedy series in the … Continue reading "The Tim Ferriss Show Transcripts: Jerry Seinfeld — A Comedy Legend’s Systems, Routines, and Methods for Success (#485)"
podman
Switching from Docker to PodmanSep 6, 2025
Podman offers better security, uses fewer resources, and integrates seamlessly with Linux and Kubernetes, making it a superior Docker alternative
Container Management With PodmanAug 22, 2025
Podman is the Docker alternative from Red Hat. It is similar to Docker. You can easily start using it if you know Docker already.
Linux HandbookJan 28, 2021
An independent, reader-supported publication focusing on Linux Command Line, Server, Self-hosting, DevOps and Cloud Learning
poker
Why 52 Cards Is the Perfect Number for Poker—MathematicallyJan 13, 2026
A traditional card deck happens to dodge a tricky poker paradox. Other poker variants aren’t so lucky
How Game Theory and AI Have Raised the Stakes in Top-Level PokerJul 20, 2024
Poker players can now employ AI to find the optimal playing strategy, but they often don’t use it. Here’s why
At 88, Poker Legend Doyle Brunson Is Still Bluffing. Or Is He?Jun 13, 2022
The Texas gambler has been winning at poker for seventy years—long enough to become an icon and watch an outlaw’s game become an industry.
policy-gradients
Policy Gradient Methods in Reinforcement LearningMay 30, 2024
Teaching a Car to Cross a Mountain using Policy Gradient Methods in Python: A Mathematical Deep Dive into Reinforcement Learning
Policy Gradients: The Foundation of RLHFFeb 19, 2024
Understanding policy optimization and how it is used in reinforcement learning
MrSyee/pg-is-all-you-need: Policy Gradient is all you need! A step-by-stepDec 14, 2019
Policy Gradient is all you need! A step-by-step tutorial for well-known PG methods. - MrSyee/pg-is-all-you-need
politeness
Conversation Skills Essentials – Tynan.comJan 3, 2023
MediumJan 17, 2022
MediumJan 30, 2021
polymaths
The Power of Being an AmateurSep 3, 2025
Strategically trying something new can help leaders break free from entrenched ways of thinking.
BehanceJul 14, 2022
https://salman.io/posts/polymath-playbook/Jul 14, 2020
The case for general excellenceMay 15, 2019
In his new book, Range, David Epstein argues that although specialization has its virtues, businesses need people with wide horizons and ranges of interests in order to succeed.
The Generalized Specialist: How Shakespeare, Da Vinci, and Kepler ExcelledDec 27, 2017
Should we generalize or specialize? This article explores how Shakespeare and Da Vinci excelled by branching out from their core competencies.
pose-estimation
On-Device, Real-Time Hand Tracking with MediaPipeApr 21, 2025
Posted by Valentin Bazarevsky and Fan Zhang, Research Engineers, Google Research The ability to perceive the shape and motion of hands can be a v...
A Code Implementation for Advanced Human Pose Estimation Using MediaPipe, OpenCV and MatplotlibMar 26, 2025
A Code Implementation Guide to Advanced Human Pose Estimation using MediaPipe, OpenCV and Matplotlib
Meet SwimXYZ: A Synthetic Dataset of Swimming Motions and Videos ContainingOct 20, 2023
Human motion capture has emerged as a key tool in various industries, including sports, medical, and character animation for the entertainment sector. Motion capture is utilized in sports for multiple purposes, including injury prevention, injury analysis, video game industry animations, and even generating informative visualization for TV broadcasters. Traditional motion capture systems provide solid results in the majority of circumstances. Still, they are expensive and time-consuming to set up, calibrate, and post-process, making them difficult to utilize on a broad scale. These concerns are made worse for aquatic activities like swimming, which bring up unique problems such as marker reflections
HRNet explained: Human Pose Estimation, Semantic Segmentation and Object DeOct 7, 2021
Revealing whats behind the state-of-the art algorithm HRNet
Gentle introduction to 2D Hand Pose Estimation: Approach ExplainedApr 26, 2021
Detailed tutorial on where to find a dataset, how to preprocess data, what model architecture and loss to use, and, finally, how to…
Browse the State-of-the-Art in Machine Learning | Papers With CodeDec 22, 2020
**Pose Estimation** is a computer vision task where the goal is to detect the position and orientation of a person or an object. Usually, this is done by predicting the location of specific keypoints like hands, head, elbows, etc. in case of Human Pose Estimation. A common benchmark for this task is [MPII Human Pose](https://paperswithcode.com/sota/pose-estimation-on-mpii-human-pose) ( Image credit: [Real-time 2D Multi-Person Pose Estimation on CPU: Lightweight OpenPose](https://github.com/Daniil-Osokin/lightweight-human-pose-estimation.pytorch) )
FORTH-ModelBasedTracker/MocapNET: We present MocapNET, an ensemble of SNN eJul 11, 2020
We present MocapNET, a real-time method that estimates the 3D human pose directly in the popular Bio Vision Hierarchy (BVH) format, given estimations of the 2D body joints originating from monocula...
Feature Boosting Network For 3D Pose EstimationFeb 19, 2020
In this paper, a feature boosting network is proposed for estimating 3D hand pose and 3D body pose from a single RGB image. In this method, the features learned by the convolutional layers are boosted with a new long short-term dependence-aware (LSTD) module, which enables the intermediate convolutional feature maps to perceive the graphical long short-term dependency among different hand (or body) parts using the designed Graphical ConvLSTM. Learning a set of features that are reliable and discriminatively representative of the pose of a hand (or body) part is difficult due to the ambiguities, texture and illumination variation, and self-occlusion in the real application of 3D pose estimation. To improve the reliability of the features for representing each body part and enhance the LSTD module, we further introduce a context consistency gate (CCG) in this paper, with which the convolutional feature maps are modulated according to their consistency with the context representations. We evaluate the proposed method on challenging benchmark datasets for 3D hand pose estimation and 3D full body pose estimation. Experimental results show the effectiveness of our method that achieves state-of-the-art performance on both of the tasks.
Machine learning for everyone: How to implement pose estimation in a browseFeb 19, 2020
The 20th century turned out to be an era of exponential growth in the field of machine learning. The 3000-year-old ancient game of ‘Go’ that computer scientists predicted will take another decade to crack was made possible by Google Brai
positioning
Competitive Battlecard Benchmark ToolNov 25, 2024
Download this free Competitive Battlecard Benchmark tool to see how your organization's competitive battlecards stack up against industry best practices.
What is the Blemishing Effect? Why Imperfections Aren’t Always BadApr 16, 2024
What is the Blemishing Effect? This psychological principle says that when we show a little negative information alongside the positive, we can make something seem more attractive. Lots of brands use this effect to make themselves more lovable. Just take Pringles who’s 2023 Super Bowl ad showed people getting their hands stuck at the bottom
Steve Blank A New Way to Look at CompetitorsJul 19, 2022
Every startup I see invariably puts up a competitive analysis slide that plots performance on a X/Y graph with their company in the top right. The slide is a holdover from when existing companies l…
Obviously Awesome: a product positioning exercise | HackerNoonJul 18, 2022
Scroll down for a template — but I recommend you read the post before you try to use it.
Neil Patel's Digital Marketing BlogJun 28, 2022
Your #1 resource for digital marketing tips, trends, and strategy to help you build a successful online business.
Finding Language/Market Fit: How to Make Customers Feel Like You’ve Read ThNov 17, 2021
After more than a decade of running B2B growth teams at PayPal and investing at 500 Startups, Matt Lerner now spends his days helping early-stage startups with growth. He's seen firsthand how changes in a handful of words can yield jaw-dropping differences in conversion — and accelerate a startup's course to product/market fit. Here, he makes the case for starting with language/market fit first, and offers up his 4-step process for getting there.
A Quickstart Guide to Positioning - April DunfordOct 21, 2021
Want to improve your product's positioning but not sure where to start? This article is going to give you everything you need to get started including what positioning is, why it matters, and how to improve it.
post-mortems
Loot Drop - The Startup GraveyardFeb 7, 2026
Explore 925+ failed startups and learn from $32.5B+ in burned venture capital. Discover why they failed, their market potential, and how to rebuild them.
What caused the large AWS outage?Oct 23, 2025
On Monday, a major AWS outage hit thousands of sites & apps, and even a Premier League soccer game. An overview of what caused this high-profile, global outage
Anki is already deadSep 1, 2025
what 98,000 flashcard reviews and japanese taught me about learning with llms
Trial by Fire: The crash of Aeroflot flight 1492May 13, 2025
Six years after 41 people died aboard a Sukhoi Superjet on a Moscow runway, the full story of that horrible day can finally be told.
Acids to Ashes: The crash of Pan Am flight 160 - Admiral Cloudberg - MediumApr 5, 2025
On the 3rd of November 1973, the crew of a Pan Am cargo plane lined up to land at Boston’s Logan International Airport, struggling desperately to reach the runway as a fire raged in the cargo deck…
4 Instructive Postmortems on Data Downtime and LossMar 5, 2024
Learn from GitLab's 2017 incident: 300GB of data lost in seconds, but their transparent recovery is a masterclass in accountability.
Why You’ve Never Been In A Plane Crash—AsteriskFeb 1, 2024
The United States leads the world in airline safety. That’s because of the way we assign blame when accidents do happen.
Fail Better with Win/Loss AnalysisJul 18, 2022
If you're in sales, you'll fail sometimes. Failing is great if you learn from why you lost deals. Win/Loss Analysis can help you fail better.
Why Did I Lose the Sale? 6 Win-Loss Analysis QuestionsJul 5, 2022
I’ve had the privilege of conducting “Win/Loss/No Decision Sales Cycle Analysis Studies” for leading companies including IBM, EMC, ATT, Acxiom, and PayPal. To accomplish these studies I have interviewed hundreds of C-level executives and countless mid-level managers and lower-level personnel....
Eight disciplines problem solvingJul 5, 2022
Eight Disciplines Methodology (8D) is a method or model developed at Ford Motor Company used to approach and to resolve problems, typically employed by quality engineers or other professionals. Focused on product and process improvement, its purpose is to identify, correct, and eliminate recurring problems.[1] It establishes a permanent corrective action based on statistical analysis of the problem and on the origin of the problem by determining the root causes. Although it originally comprised eight stages, or 'disciplines', it was later augmented by an initial planning stage. 8D follows the logic of the PDCA cycle. The disciplines are:
How to Write Better with The Why, What, How FrameworkJun 14, 2022
Three documents I write (one-pager, design doc, after-action review) and how I structure them.
postgres
PostgreSQL 16.4 DocumentationOct 19, 2024
PostgreSQL 16.4 Documentation The PostgreSQL Global Development Group Copyright © 1996–2024 The PostgreSQL Global Development Group Legal Notice Table of …
High Performance PostgreSQL for Rails: Reliable Scalable Maintainable DatOct 19, 2024
Build fast, scalable PostgreSQL and Rails apps. Solve data growth, quality, and reliability challenges, for workloads from consumer Internet to enterprise SaaS.
The Great Migration from MongoDB to PostgreSQLMar 31, 2024
How Infisical migrated from MongoDB to PostgreSQL.
How To Install and Use PostgreSQL on Ubuntu 20.04 | DigitalOceanFeb 29, 2024
PostgreSQL, or Postgres, is a relational database management system that provides an implementation of the SQL querying language. This guide demonstrates how…
Active Record and PostgreSQL — Ruby on Rails GuidesFeb 29, 2024
Active Record and PostgreSQLThis guide covers PostgreSQL specific usage of Active Record.After reading this guide, you will know: How to use PostgreSQL's datatypes. How to use UUID primary keys. How to include non-key columns in indexes. How to use deferrable foreign keys. How to use unique constraints. How to implement exclusion constraints. How to implement full text search with PostgreSQL. How to back your Active Record models with database views.
Effective Queries with Rails and PostgreSQL - Honeybadger Developer BlogFeb 23, 2024
Getting data *into* your database is easy, but querying large datasets is challenging—especially without the right indexes. Pavel Tkachenko teaches how to write performant SQL queries with EXPLAIN and ANALYZE.
How to Start Using psql in Terminal (for Beginners)Jun 18, 2023
Intro Hello guys! Today I try to write about how to start using psql in Terminal app,...
The Internals of PostgreSQL: Database Cluster, Databases, and TablesMay 31, 2023
PostgreSQL, a widely adopted open-source relational database management system (RDBMS), offers robust...
dhamaniasad/awesome-postgres: A curated list of awesome PostgreSQL software, libraries, tools and resources, inspired by awesome-mysqlApr 8, 2023
A curated list of awesome PostgreSQL software, libraries, tools and resources, inspired by awesome-mysql - dhamaniasad/awesome-postgres
mathesar-foundation/mathesar: Web application providing an intuitive user experience to databases.Mar 16, 2023
Web application providing an intuitive user experience to databases. - mathesar-foundation/mathesar
Mastering PostgreSQL Views and CTEs for Rails Developers: A Comprehensive GMar 15, 2023
Introduction Views and Common Table Expression or CTE are two important concept in...
How To Use PostgreSQL with Your Ruby on Rails Application on Ubuntu 18.04 |Jan 14, 2023
A PostgreSQL database is a robust and flexible choice for your Ruby on Rails application. In this tutorial, you will set up a Ruby on Rails development envir…
Advanced Database Programming with Rails and PostgresAug 19, 2022
Learn about Active Record and subqueries, views and materialized views, and domain types and composite types in Postgres and Ruby on Rails.
PostgreSQL 14 InternalsJul 14, 2022
Postgres Professional is a PostgreSQL company delivering Postgres Pro DBMS and all kinds of PostgreSQL professional services worldwide
Postgres Vs MySQL syntax comparison with cheatsheetJun 22, 2022
When migrating from PostgreSQL to MySQL we often get stuck with syntax between databases. Here are...
Apt - PostgreSQL wikiMay 29, 2022
How To Install PostgreSQL on Ubuntu 20.04 [Quickstart] | DigitalOceanMay 29, 2022
PostgreSQL, or Postgres, is a relational database management system that provides an implementation of the SQL querying language. This quickstart guide demon…
SQLite on Heroku | Heroku Dev CenterMay 29, 2022
A guide to SQLite on Heroku - explaining why using SQLite on Heroku's ephemeral file system is a bad fit, and looking at alternatives.
Full Text Search in Milliseconds with Rails and PostgreSQLJan 17, 2022
This article shows how to optimize a Full Text Search implementation with Rails and PostgreSQL, taking a single query from 130ms to 7ms.
PostgreSQL PythonJan 16, 2022
This PostgreSQL Python section shows how to work with PostgreSQL from Python programming language using the psycopg2 database driver.
PostgreSQL Command Line Cheat SheetJan 12, 2022
PostgreSQL: AboutDec 17, 2021
How To Install and Use PostgreSQL on Ubuntu 14.04 | DigitalOceanDec 14, 2021
PostgreSQL is one of the most powerful and popular relational database management systems available for open source platforms. In this guide, we’ll talk abo…
How To Set Up An Express API Backend Project With PostgreSQL — Smashing MagazineDec 13, 2021
In this article, Chidi Orji will create a set of API endpoints using [Express](https://expressjs.com/) from scratch in ES6 syntax, and cover some development best practices. Find out how all the pieces work together as you create a small project using Continuous Integration and Test-Driven Development before deploying to Heroku.
Developer | TechRepublicDec 13, 2021
PostgreSQL ExercisesDec 13, 2021
Linux Tutorial: PostgreSQL Database and LinuxDec 2, 2021
Using the PostgreSQL database with Linux. This tutorial also covers some of the pitfalls users may experience.
10 Essential Psql Commands For Data EngineersOct 27, 2021
Learn how to interact with PostgreSQL databases through the command line using PSQL.
pgMustard - review Postgres query plans quicklyOct 1, 2021
pgMustard is a Postgres EXPLAIN visualisation tool that also gives performance advice, scored based on its potential to speed up your query.
How to build a search engine with Ruby on RailsOct 1, 2021
Implementing search in your Rails app can be vexing. Here's a great pattern to use that combines the best parts of ActiveRecord and Postgres.
Building Backend | Node, Postgres, GraphQLJun 12, 2021
Hi there 👋 Every application, you'll agree, needs a back-end. And there are many languages and tools...
PostgreSQL Tutorial - Learn PostgreSQL from ScratchNov 18, 2020
Learn PostgreSQL quickly through a practical PostgreSQL tutorial designed for database administrators and application developers.
Install PostgreSQL on Linux (Ubuntu)Nov 18, 2020
In this tutorial, you will learn how to download and install PostgreSQL on Linux. You also learn how to load the sample database to the PostgreSQL Database Server.
psql command line tutorial and cheat sheet | postgresNov 17, 2020
The least you need to know about Postgres
SQL Query Cheatsheet for PostgresApr 19, 2020
The SQL queries I use as a data scientist and software engineer
How GIN Indices Can Make Your Postgres Queries 15x FasterApr 1, 2020
With query examples you can run on your laptop
PostgreSQL Python: Connect To PostgreSQL Database ServerMar 23, 2020
In this tutorial, you will learn how to connect to the PostgreSQL database server from Python using the psycopg2 package.
ruby on rails - Postgres permission denied to create database on rake db:crMar 19, 2020
I am trying to create postgres databases for development and tests. I'm using:
OSX Yosemite
Rails version: 4.2.0
git version: 2.2.2
psql version: 9.4.0
ruby version: 2.1.0p0
HomeBrew version: 0.9.5
Postgres is a great pub/sub & job serverNov 13, 2019
If you need a publish/subscribe or job server at any point in your project, try using Postgres. It'll give you lots of data integrity and performance guarantees, and it doesn't require you or your team learning any new technology.
pot
Hunting for the world's most mythical cannabis: Big Sur Holy WeedFeb 20, 2026
California is racing to save historic cannabis strains before legalization erases them.
Hunting for the World's Most Mythical Cannabis: Big Sur Holy Weed - LongreadsFeb 20, 2026
"California is racing to save iconic cannabis strains before legalization kills them."
practice
Embrace the Grind - Jacob Kaplan-MossApr 12, 2021
Sometimes, programming feels like magic: you chant some arcane incantation and a fleet of robots do your bidding. But sometimes, magic is mundane. If you’re willing to embrace the grind, you can pull off the impossible.
What I Learned from Doing 100 Wheelies a DayMar 16, 2021
In her quest to master a quintessential cool-kid trick, Outside contributor Kim Cross found the sweet spot at the crossroads of work and play
prds-requirements
The PRD Isn’t Dead: New Best Practices for Digital Product DevelopmentJan 12, 2023
Reap the benefits of an optimized product requirements document.
Writing Good RequirementsDec 11, 2022
Requirements Experts is known for being the leading resource for requirements methodologies, training, tools, and templates
Software Requirement Specification: How to make SRS for your project [with examples]Jul 24, 2022
How to write SRS? What its key characteristics? To deliver a successful and robust software product, you should know an in-depth description of what to be developed. That’s why writing a clear, concise and easy to follow SRS documentation is a must.
What is the best way to write a PRD? With PRD examples from companies you look upto!Jul 24, 2022
Always looking for learning opportunities in product and life.
https://docs.idew.org/principles-and-practices/practices/design-practices/design-requirementsJul 24, 2022
Discovery vs. Documentation | Silicon Valley Product GroupJul 24, 2022
The problem that I want to write about today has always been a problem, but in truth, the pandemic has made this problem substantially worse. In particular, I am worried about teams reverting back to the heavy use of artifacts such as product requirements documents (e.g. PRD’s). I was afraid this would happen, and I...
Developing a Product Requirements Document for Hardware StartupsJun 25, 2022
I have always avoided writing. As a mechanical engineer, I would rather do just about anything else: sketch parts, build prototypes, or collaborate with manufacturers. Rough sketches for Dor, one of Bolt’s portfolio companies For over 15 years, I have designed and engineered products — mostly a
Learn TLA+ — Learn TLA+Dec 13, 2021
premature-optimization
presentations-presenting
How to Give a Good TalkSep 3, 2025
In computer science, conferences are a focal point of academic attention. Conferences are a moment where computing communities—distributed over the globe—come together. Giving a talk at a conferenc…
Storytelling as a Craft: Advice from 5 Experts on How to Tell a CompellingMar 3, 2024
Every startup leader should practice flexing their storytelling muscles. To help warm these muscles up, we’ve rounded up some of our best advice about storytelling in business that’s been featured in the Review.
The Psychology of Camera ConfidenceFeb 16, 2024
In a world dominated by video, we know we’d benefit from communicating effortlessly through video content. But many of us struggle with camera confidence. This is because our fear of talking to a camera is deeply rooted in our survival instincts.
Seven Things I Learnt Doing Stand-Up Comedy | Michael Gomes VieiraAug 15, 2022
I took part in a 6 week stand-up comedy course for beginners at The Comedy Store in Central London. At the end of the course, myself and the other co...
Block Your TalkJul 18, 2022
This one of a series of essays on speaking. Find more here. You’ve written a great talk, you’ve made your deck (or not!) and you’ve practiced. But have you considered how you’ll move while speaking…
Bad at public speaking? The trick is to distill your message to these 15 words, says speech trainerJul 18, 2022
Mastering the art of public speaking has nothing to do with your personality, with overcoming shyness or learning to act confident. It's a technical skill that nearly anyone can acquire — just like cooking.
9 Ways This Introvert Polished His Public Speaking SkillsJul 18, 2022
Not all introverts suffer from public speaking anxiety. But if you do, here are some ideas to eliminate it and become a strong communicator.
Tap into the power to persuade by using these 6 techniques of clear and compelling speechJul 18, 2022
Politicians and other public figures deploy particular rhetorical devices to communicate their ideas and to convince people, and it’s time that we all learned how to use them, says speechwriter Sim…
Pitch deck: An inside peek at how Hulu is selling its pause adsFeb 19, 2020
Hulu is allowing just four advertisers to run pause ads each month, which helps to explain why this new type of inventory is selling out several months in advance.
How to Give a Great Presentation: Timeless Advice from a Legendary Adman, 1Feb 1, 2020
“No speech was ever too short.”
pressure
MediumJul 18, 2022
pricing
PC parts picker - CPUsFeb 26, 2026
Designing Prediction Markets — LessWrongFeb 11, 2026
Prerequisite: basic familiarity with what a prediction market is …
Van Westendorp's Price Sensitivity MeterJan 3, 2026
market technique for determining consumer price preferences
CFP bowl ticket prices have collapsed over the past 2 weeks (Cotton -90%, Rose -69%, Orange -78%, Sugar -11%)Jan 1, 2026
Posted by alpswd - 620 votes and 361 comments
The Perils of Algorithmic PricingNov 4, 2025
Hotels and landlords can mitigate legal risks by choosing decentralized revenue management systems that use public data.
The Game Theory of How Algorithms Can Drive Up Prices | Quanta MagazineOct 22, 2025
Recent findings reveal that even simple pricing algorithms can make things more expensive.
What If Dynamic Pricing Was Solely Used To Reduce Prices? - RetailWireAug 19, 2025
Dynamic pricing remains a hotly contested concept in retail, particularly grocery. What if the pricing model was deployed solely to the benefit of consumers?
Pricing Pages — A Curated Gallery of Pricing Page DesignsAug 11, 2025
Discover handpicked pricing page examples from SaaS companies, ecommerce brands, and digital agencies. Find design inspiration for your next pricing page design
AI-Driven Antitrust and Competition Law: Algorithmic Collusion, Self-Learning Pricing Tools, and Legal Challenges in the US and EUAug 10, 2025
AI algorithmic collusion challenges traditional antitrust law. Legal AI frameworks adapt to prosecute self-learning pricing tools
Many prediction markets would be better off as batched auctionsAug 2, 2025
All prediction market platforms trade continuously, which is the same mechanism the stock market uses. Buy and sell limit orders can be posted at any…
Setting a Pricing Strategy Amid Ever-Changing TariffsApr 23, 2025
There are options beyond simply raising your prices or absorbing extra costs.
What Do Pawn Shops Buy? Answered + Prices Ranges DetailedApr 8, 2025
What can you sell at a pawn shop? We explain what pawn shops buy, plus how to get the most money. Find price details for electronics, clothing, and more.
How PawnGuru Helps Sellers And Pawn Shops Compare Prices OnlineApr 8, 2025
Inside of a pawn shop / Photo Credit: PawnGuru Pawning something you own can be a major challenge. You want to get the highest amount for your item, but you don’t know which pawn shop will pay the most. Reality TV shows like “Hardcore Pawn” and “Pawn Stars” demonstrate how pawn [...]
The Economics of Pawn ShopsApr 8, 2025
Pawn shops are America's lenders of last resort. But even for the same item, the amount pawn shops will loan you can vary more than 1,000%.
Beyond Human Intervention: Algorithmic Collusion through Multi-Agent Learning StrategiesJan 29, 2025
Our paper, Beyond Human Intervention: Algorithmic Collusion through Multi-Agent Learning Strategies, with Suzie Grondin and Philipp Ratz is now available online Collusion in market pricing is a concept associated with human actions to raise market prices through artificially limited supply. Recently, the idea of algorithmic collusion was put forward, where the human action in the … Continue reading Beyond Human Intervention: Algorithmic Collusion through Multi-Agent Learning Strategies →
Ecommerce Benefits of Dynamic PricingJan 9, 2025
AI-powered platforms transform a decades-old pricing practice.
Mistakes from my Failed Startup in Scalping Concert TicketsNov 10, 2024
And why you will never get Taylor Swift tickets at face value
What Companies Do Well is Not Necessarily How They Make MoneyNov 2, 2024
Thoughts on business models that don't seem to make perfect sense
StubHub vs. Ticketmaster vs. SeatGeek: What’s the Difference?Aug 2, 2024
Tickets are almost entirely bought and sold (and resold) online. What is the difference between Ticketmaster, StubHub, SeatGeek and other brokers?
How to Get Rich From Peeping Inside People’s FridgesJul 31, 2024
Forget the S&P 500. Look at the ice cream. This investor visits homes around the world to see where diets—and economies—will go next.
How annual pre-pay creates an infinite marketing budgetJul 15, 2024
Dozens of founders have used this technique to transform the cash-flow of their businesses. Now it's your turn.
Shipt’s Pay Algorithm Squeezed Gig Workers. They Fought Back - IEEE SpectruJul 5, 2024
When their pay suddenly dropped, delivery drivers audited their employer
Information as a Universal Complement and Universal SubstituteJun 11, 2024
Plus! Diff Jobs; Making a Market; Financial Innovation; IRL; Open-Ended Liabilities; Meme Stock Relapse
Maximizing Value: How to Leverage Psychology to Raise Your PricesMay 18, 2024
Clients often ask me, "How can we charge more?" The answer is simple: Make the value you offer crystal clear.In economics this is called value exchange.Many brands provide the value, but they don't communicate it clearly, consistently, or in language that resonates with their buyer. So how can we use principles from marketing psychology and
Simplicity is An Advantage but Sadly Complexity Sells BetterMay 7, 2024
Pushing back on the cult of complexity.
Paris F.C. Set Tickets To $0. Should Others Do the Same?May 4, 2024
When Paris F.C. made its tickets free, it began an experiment into the connection between fans and teams, and posed a question about the value of big crowds to televised sports.
Collusive Outcomes Without CollusionApr 30, 2024
Equitable Pricing in AuctionsApr 23, 2024
Pricing | HerokuApr 16, 2024
Heroku offers simple, flexible pricing to meet the needs of every app and every organization. Add data stores, cloud services, support, and more.
Algorithms can aid price collusion, even if no humans actually talk to eachMar 30, 2024
The DOJ and FTC weighed in on a case about hotel pricing.
Uber-style pricing is coming for everythingMar 27, 2024
More and more industries are adopting “dynamic pricing” — and consumers aren’t happy.
Lessons from More Than 1,000 E-Commerce Pricing TestsMar 19, 2024
At most small and medium-sized e-commerce retailers, prices are typically set and updated in an ad hoc fashion without one clear owner. The process often starts by using a gross margin target, followed by some comparison with competitors, and then some adjustments from there. Many of these retailers would quickly admit that this isn’t an optimal strategy, and that they are likely leaving money on the table — and they’re often right. The authors’ experience with price testing has shown that there is actually a significant amount of money left on the table when pricing is left un-optimized.
The Ultimate Guide to B2B SaaS Pricing & PackagingMar 6, 2024
The pricing models of the top B2B SaaS companies, the strategies to iterate on, case studies of successful changes, and everything else you need to know
Dynamic Pricing with Multi-Armed Bandit: Learning by Doing!Aug 19, 2023
Applying Reinforcement Learning strategies to real-world use cases, especially in dynamic pricing, can reveal many surprises
The secret economics of the Birkin bagJul 29, 2023
On a flight from Paris to London in 1983 Jane Birkin, an Anglo-French chanteuse and actress, spilled the contents of her overstuffed straw...
Everything Must Be Paid for TwiceJun 19, 2023
One financial lesson they should teach in school is that most of the things we buy have to be paid for twice. There’s the first price, usually paid in dollars, just to gain possession of the desired thing, whatever it is: a book, a budgeting app, a unicycle, a bundle of kale. But then, in order to make use of
Retail Price Optimization using PythonApr 17, 2023
In this article, I will walk you through the task of Retail Price Optimization with Machine Learning using Python. Retail Price Optimization.
Why Does a Plastic-Wrapped Turkey Sandwich Cost $15 at the Airport? - Hell GateApr 16, 2023
We filed a public records request, but the Port Authority is treating airport pricing like a state secret.
The Art and Science of Spending MoneyApr 8, 2023
Former General Electric CEO Jack Welch once nearly died of a heart attack.
Here’s How Tool Companies Charge Vastly Different Prices for the Same ToolsMar 29, 2023
Sometimes there is a replacement for name brand tools. Knowing who makes what is the best way to save big when building your tool collection.
Telfar’s Dynamic Pricing Model Offers a New Way to Gauge Luxury Item DemandMar 28, 2023
Telfar has introduced a “Live Price” pricing model based on customer demand.
Shoppers say secondhand stores like Goodwill are getting too expensive as GMar 26, 2023
The US thrift market has grown substantially in recent years as thrifting has become a popular pursuit of Gen Z shoppers.
How One Guy’s Car Blog Became a $1 Billion MarketplaceMar 12, 2023
It’s a place for obsessives to buy, sell and geek out over classic cars. The company pops open its hood after 100,000 auctions to explain why.
Why so many people undercharge for their workFeb 7, 2023
Setting a rate can be a minefield for folks navigating an industry alone.
The Alchian-Allen EffectJan 29, 2023
How it explains cheap luxuries, strong pricing power, and good careers.
Who Sets the Prices?Jan 26, 2023
The legal decision that fostered the idea of the manufacturer’s suggested retail price, and why it still sticks around even though that decision was overturned.
?? Why billing systems are a nightmare for engineersJan 26, 2023
This article was initially published on Lago's blog, an open-source billing API, and was ranked #1 on...
3 Flaws of Cost-plus Pricing - Practical EcommerceJan 22, 2023
Cost-plus pricing on the surface seems straightforward. But then market forces intervene.
DigiTimes: TSMC 3nm wafer price breaks $20,000. Expect price increase for iPhone 15, GPU,...Jan 14, 2023
— RetiredEngineer® (@chiakokhua)
TSMC Might Cut 3nm Prices to Lure AMD, NvidiaJan 14, 2023
Industry sources say TSMC is considering lowering 3nm prices to stimulate interest from chip designers
TSMC’s Wafer Prices Revealed: 300mm Wafer at 5nm Is Nearly $17,000 | Tom'sJan 13, 2023
High performance and high transistor density come at a cost
7 Lessons on Dynamic Pricing (Courtesy of Bruce Springsteen)Oct 1, 2022
Some fans were outraged when man-of-the-people Bruce Springsteen charged more than $5,000 per seat for his upcoming concert. The high prices were the result of a dynamic pricing system, in which prices are adjusted upward in response to strong demand. This controversy illustrates seven lessons that managers should keep in mind when adjusting prices, including the need for clear communications, longtime customers’ expectation that they deserve a discount, and the fact that high prices will raise expectations about quality and service.
Pricing Novel GoodsSep 25, 2022
https://pcpartpicker.com/trends/Sep 16, 2022
An Old-Fashioned Economic Tool Can Tame Pricing Algorithms - Scientific AmeAug 22, 2022
Left unchecked, pricing algorithms might unintentionally discriminate and collude to fix prices
The value of not flyingJul 28, 2022
Why might people decline an offer of up to $10,000 just to keep their feet on the ground?
Neil Patel's Digital Marketing BlogJul 19, 2022
Your #1 resource for digital marketing tips, trends, and strategy to help you build a successful online business.
Pricing | HeavybitJul 19, 2022
Pricing is sometimes thought of as a math problem but to Harrison Metal founder Michael Dearing, it’s a judgment problem. Says Dearing, “The standard economic model of supply and demand is powerful for understanding pricing, but it’s less useful when managing it. In this talk, Dearing shows about how behavioural economics can modify the standard model & provide simple tools to improve your pricing judgment.
Pricing Psychology Test: Shopping Guide Lifts Order Value 35%Jul 18, 2022
Consumers are watching their spending, which means marketers must find creative ways to appeal to cost-conscious buyers without hurting their own bottom lines. One marketing team found a solution in the work of a behavioral economist. Read how they adapted a psychological experiment about the impact of arbitrary price benchmarks on a consumer’s spending habits. They created a
Why We’re Dropping Freemium as a Business Model: Value vs. Cost - Blog | evercontactJul 18, 2022
This past week our Community / Growth Manager, Brad Patterson, spoke at the European Cloud Expo in London on the topic Try Before You Buy – Successes and Misgivings in the European Cloud Ecosystem. Also speaking were Jason Turner, director of Business development at Cedexis, António Ferreira, CEO at Luna Cloud, Lee […]
How to Price Shipping and Handling FeesJul 18, 2022
Today's consumers expect free shipping for most items. But it's not always obvious for merchants to know when and how to offer it. Here's our all-new update for analyzing shipping costs and free delivery.
Why Is Art Expensive? - PriceonomicsJul 18, 2022
How do you sell a six-figure painting? Branding and a heavily "curated" marketplace.
The 30 Elements of Consumer Value: A HierarchyJul 18, 2022
What consumers truly value can be difficult to pin down and psychologically complicated. But universal building blocks of value do exist, creating opportunities for companies to improve their performance in existing markets or break into new markets. In the right combinations, the authors’ analysis shows, those elements will pay off in stronger customer loyalty, greater consumer willingness to try a particular brand, and sustained revenue growth. Three decades of experience doing consumer research and observation for corporate clients led the authors—all with Bain & Company—to identify 30 “elements of value.” Their model traces its conceptual roots to Abraham Maslow’s “hierarchy of needs” and extends his insights by focusing on people as consumers: describing their behavior around products and services. They arrange the elements in a pyramid according to four kinds of needs, with “functional” at the bottom, followed by “emotional,” “life changing,” and then “social impact” at the peak. The authors provide real-world examples to demonstrate how companies have used the elements to grow revenue, refine product design to better meet customers’ needs, identify where customers perceive strengths and weaknesses, and cross-sell services.
Pricing psychologyJul 18, 2022
Price Increase By Any Other NameJul 18, 2022
Increasing price is not easyIt requires careful review of customers you want to serve, their needs and alternatives available to them. Increasing price of an extremely popular product is even harde…
How Pricing Bots Could Form Cartels and Make Things More ExpensiveJul 18, 2022
Antitrust law will have to evolve to cope.
Pricing Strategy for CreativesJul 18, 2022
Strategic pricing helps your brand and helps you to make more money. Issuing a price is like handing out a business card—it’s a great branding tool, but be careful about what it says to…
How Netflix did pricing rightJul 18, 2022
Netflix rolled out its new pricing it had announced during its last earnings call. A very simple, almost poetic, blog post in their corporate blog explains the new pricing. In fact the post is so …
How Our Brain Determines if the Product is Worth the PriceJul 18, 2022
Are consumers more likely to buy if they see the price before the product, or vice versa? Uma Karmarkar and colleagues scan the brains of shoppers to find out.
Pay What You Want: The Ultimate Sales StrategyJul 18, 2022
How Letting People Choose Their Price Can Make You a Millionaire
Product Pricing PrimerJul 18, 2022
Pricing Experiments You Might Not Know, But Can Learn FromJul 18, 2022
Pricing is hard. Make it too low and you miss out on profit; too high and you miss out on sales. These pricing experiments will help you get it right.
Neil Patel's Digital Marketing BlogJul 18, 2022
Your #1 resource for digital marketing tips, trends, and strategy to help you build a successful online business.
How To Price Your Hardware ProductJul 18, 2022
This post originally appeared on Hackthings.com So you have a hardware product in the works? Before you can launch it, one of the most important things you need to figure out is pricing. Unlike software, you can’t AB test your pricing and change it for different customers, which means your product has one price and …
The Surprising Upside of Expensive Products That Don’t SellJul 18, 2022
Many businesses are managing a sharp decline in sales during the ongoing coronavirus crisis. An instinctive reaction may be to cut low-performing products from their menu of offerings — but this isn’t always the best way forward. The authors lay out a case for adding an ultra-expensive product to their portfolio. There are five reasons to do it: To increase sales across other products; to communicate expertise; to convey prestige; to garner publicity; and to move upmarket.
The Risks of Changing Your Prices Too OftenJul 18, 2022
Technology has made it easier, but strategic rules still apply.
How repositioning a product allows you to 8x its priceJul 18, 2022
You can charge much more than you think, if you reposition your value-proposition. Here's how.
Price Unbundling Vs. Product UnbundlingJul 18, 2022
We are all too familiar with price unbundling. Remember the first time Airlines charged for checkin bags? Or a restaurant charged for salad dressing? The simple recipe for price unbundling is to s…
7 Pricing Strategies Based on Research StudiesJul 18, 2022
Explore a few tips on ways to improve the pricing of your services by looking at a few research studies on people's buying behaviors.
The State of SaaS Pricing [Infographic] - OpenViewJul 18, 2022
After surveying more than 1,000 software executives about their SaaS pricing habits, we've uncovered some alarming gaps. View the results here.
A Quick Guide to Value-Based PricingJul 18, 2022
Reviewing how to calculate it and dispelling misconceptions.
If You Want to Raise Prices, Tell a Better StoryJul 18, 2022
In a world of abundance, an authentic, meaning-rich story can drive a company’s margins up.
Neil Patel's Digital Marketing BlogJul 18, 2022
Your #1 resource for digital marketing tips, trends, and strategy to help you build a successful online business.
How Artists Get Paid From StreamingJul 13, 2022
We explain how your money gets from you to a streaming platform, and finally to an artist.
5 Pricing Resolutions for 2019 - OpenViewJul 11, 2022
Pricing is a good place to make a few critical resolutions for businesses. Learn the 5 resolutions as you shape your pricing strategy for 2019.
If Your Customers Don't Care What You Charge, What Should You Charge?Jul 10, 2022
Consumer inertia is the tendency of some customers to buy a product, even when superior options exist. Alexander J. MacKay discusses how that habit affects competitive strategy and even regulatory oversight.
There are 7 Types of Freemium and Why That Matters...Jul 6, 2022
Freemium - especially in B2B SaaS - has evolved and there are now seven distinct types of Freemium in the market.
Don't Leave Money on the Table with This Crash Course in PricingJul 5, 2022
Alex Rampell, CEO of TrialPay, explains how startups can be strategic about pricing their products so they don't lose out.
A Rake Too Far: Optimal Platform Pricing StrategyJul 5, 2022
In a casino, the term “rake” refers to the commission that the house earns for operating a poker game. With each hand, a small percentage of the pot is scraped off by the dealer, which in essence becomes the “revenue” for the casino. While casinos use the term “rake,” a plethora of interesting word choices exist which all describe the same thing – keeping a little bit of the revenue for the company that is running the service. Examples include “commission,” “fee,” “toll,” “tax,” “vig” or “vigorish,” “juice,” “the take”, and “graft” (although this last one is typically associated with…
It’s OK to Move Down (Yes, Down) the Value ChainJul 5, 2022
There is increased efficiency and other benefits to doing so.
The Most Effective Price Discovery Question for Your Startup by @ttunguzJul 5, 2022
Pricing is one of the most challenging decisions for any startup. One of the simplest ways of discovering customer willingness to pay is simply to ask them. At first blush, that might seem a reasonable and effective solution, it is prone to wild inaccuracy. Absolute pricing judgments are hard without reference points. For example: How much would you be willing to pay for a new iPhone? It’s a very challenging question to answer in the abstract.
A Deeper Look at Uber’s Dynamic Pricing ModelJul 5, 2022
Over the course of the past year, many writers have offered their perspectives on Uber’s dynamic pricing strategy. Perhaps the only consistency is that people have deeply passionate views on this topic. However, there are still many misperceptions about how the model works, and the purpose of this post is to clarify some of those misperceptions. I am an Uber investor and board member, and therefore expect that many will dismiss these thoughts as naked bias. But consider that as a result of my role I have access to more information that might enable a deeper perspective. I also have…
Secrets Of Freemium Pricing: Make The Cheapskates PayJul 5, 2022
The following is a guest post by Andy Singleton Andy is the founder and CEO of Assembla a company that provides bug tracking and hosted GIT and SVN
Five dynamic pricing issues retailers should considerJul 5, 2022
From social media sentiment analysis to digital ad buying, faster is increasingly seen as better, or at least necessary. So it’s no surprise that the ability to generate lots of data and analyze it…
How to Increase SaaS Pricing (and Quickly Triple Your Growth) - ExtendsLogicJul 5, 2022
Last month Bidsketch had the biggest increase in revenue it’s ever had. Before that, the biggest increase in revenue came when FreshBooks emailed a million people and mentioned Bidsketch as a new integration for sales proposals. I got so many new sales notifications that day, I thought someone had hacked my server. It was nuts.… Continue reading How to Increase SaaS Pricing (and Quickly Triple Your Growth) →
Could This Be The End Of Hidden Ticket Charges For Concert Tickets?Jul 4, 2022
Hidden ticket charges and more have been outlawed in New York State thanks to new legislature that just passed.
1980 Sears Spring Summer Catalog, Page 729 - Catalogs & WishbooksJul 4, 2022
1980 Sears Spring Summer Catalog, Page 729
How to Sell High-priced (and High-quality) ProductsJun 28, 2022
In the 1950s, most products were built to last. Companies knew that manufacturing long-lasting products would spread word-of-mouth referrals, which meant
Pricing Strategies: 16 Articles You Need to ReadJun 28, 2022
Pricing can be incredibly challenging to get right. Here are 16 articles that can help you with your pricing strategy.
How Much Is Michael Bolton Worth to You? (Published 2013)Jun 28, 2022
There’s a reason scalpers have confused economists for decades.
Neil Patel's Digital Marketing BlogJun 28, 2022
Your #1 resource for digital marketing tips, trends, and strategy to help you build a successful online business.
Neuro-Menus and Restaurant PsychologyJun 28, 2022
Restaurants are great test labs for testing neuromarketing techniques. It's easy to change offerings, menus, and pricing, and one gets immediate feedback on what's working and what's not. Today, many eateries are employing sophisticated menu psychology to maximize sales and profits.
Busting Six Myths About Customer Loyalty ProgramsJun 25, 2022
Low-margin retailers argue they can't afford customer loyalty programs, but is that true? Rajiv Lal and Marcel Corstjens make the case that such programs are profit-enhancing differentiators.
5 Questions to Consider When Pricing Smart ProductsJun 25, 2022
The revenue model is one of the most important elements of a firm’s strategy. It defines the ways in which a firm gets compensated for the value that its products or services generate. In the old days, revenue models primarily consisted of picking a “good” price. Connected, smart devices are changing this paradigm. To think systematically about revenue models and to spot opportunities for improvement, consider: what is paid for, when the payment is made, who is paying, why the customers are paying, and what currency the customer is paying with.
How do you put a price on your source code?Jun 25, 2022
Selling software isn’t like selling cars or real estate. Don’t sell yourself short.
Price Bundling in CouponingJun 25, 2022
Take a look at these two coupons Target stores printed out at checkout at the same time. What is your take on the reasoning behind this? If you have the read the famous Target Big Data story about …
Pro sport team sales are driven by the law of scarcityJun 25, 2022
This is a luxury toy collection at a level above yachts or private islands.
We raised prices to preserve our business modelJun 24, 2022
This quote comes to us from Ms. Allie Webb, the Founder and CEO of Drybar a blow dry only salon. A blow dry salon is not like any hair salon. It offers, just as name indicates, blow dry and styling…
The most beautiful price fenceJun 24, 2022
Fences are never beautiful. May be the picket fences are. But when designed to keep two sides from moving easily from one side to the other they are not usually described as beautiful. Price fences…
How Perfect Pricing got me 1500 Sales in 2 DaysJun 24, 2022
Ask HN: How do you set prices? | Hacker NewsJun 24, 2022
Risk Discounts and Usage-Based Pricing - OpenViewJun 24, 2022
You’re probably not aware of it, but the price of your product includes a risk discount.
The Dollar-Store Economy (Published 2011)Jun 23, 2022
The ubiquitous dollar store is the American dream writ small.
https://thestack.com/world/2015/04/17/netflix-to-set-prices-according-to-local-piracy-levels/Jun 23, 2022
The unpredictable economics of pawn shopsJun 23, 2022
Take the same item to 4 different pawn shops and you might get offers that vary by hundreds of dollars. Here’s why.
SeatGeek will calculate how much that ticket is worth | TechCrunchJun 23, 2022
Have you ever bought sweet tickets for a ballgame, a concert or some other live event, only to find out that you couldn't make it? The internet certainly
When Freemium FailsJun 23, 2022
A growing number of new businesses are following in the footsteps of successful companies such as Dropbox and Skype, by giving away their products and services free to build a customer base. But for some, that 'freemium' strategy is turning out to be costly.
It Costs $2.50 to Make Lipstick — Here’s Why You’re Charged So Much MoreJun 23, 2022
This is not a matter of "you get what you pay for."
How To Design Products For People Making $2 A Day - Fast CompanyJun 23, 2022
Proximity Designs is a for-profit design company whose goal is to create products cheap enough--and good enough--that they can be bought by poor farmers, instead of just giving them aid.
What are value metrics? How value metrics optimize pricingJun 13, 2022
See why evaluating your value metric and aligning it with your pricing strategy is the key to optimizing your SaaS business for profits and growth.
21 Examples of Pricing Pages in Web DesignJun 13, 2022
https://www.fastcompany.com/3000999/takeaway/what-dead-squirrel-taught-me-about-value-pricingJun 13, 2022
Why You’re Never Really Happy With the Things You Buy AnymoreJun 12, 2022
Constant bargain hunting makes us value all the wrong things about shopping.
Pricing Your ProductJun 12, 2022
The Engineering of the Chain Restaurant MenuJun 7, 2022
At IHOP and Applebee's, menus are sales documents. And navigational guides. And explainers.
The Pricing Model That Increased Our Free Trial Signups by 358% (and Revenue by 25%)May 28, 2022
We thought we were being smart with innovative pricing models. We were wrong, but we finally righted the ship.
Pricing on Purpose (Summary)May 28, 2022
getAbstract Summary: Get the key points from this book in less than 10 minutes.Ronald J. Baker makes a sound economic case that the traditional method of generating prices by calculating costs and figuring in an acceptable profit is outdated and u...
Pricing Psychology: A List of TacticsMay 28, 2022
Free Online Guide - Which digits to choose? How high should it be? Should it be rounded or precise? Plus other techniques.
AWS Data Transfer Costs: Solving Hidden Network Transfer CostsApr 13, 2022
Hidden AWS data transfer costs can lead to higher than expected cloud service bills. This post will help track hidden fees and show you how to control them.
The Welfare Effects of Dynamic Pricing: Evidence From Airline Markets - WilMar 28, 2022
Airfares fluctuate due to demand shocks and intertemporal variation in willingness to pay. I estimate a model of dynamic airline pricing accounting for both sources of price adjustments using flight-...
http://limedaring.com/articles/how-i-run-a-marketplace-with-eleven-different-properties-and-5000-vendors/Mar 16, 2022
Implementing Usage-Based Pricing: What Your Financial Teams Need to KnowMar 14, 2022
I joined Datadog as VP Finance back in 2015 when the company was still very small. Back then, the company had about 100 employees, was making around $20
Tearing Down the Pricing of Dollar Shave Club and GilletteFeb 24, 2022
This week we teardown the pricing of Dollar Shave Club and Gillette. Will Dollar Shave Club win out by taking over the bathroom, or can Gillette fight back with over 100 years of brand awareness? We find out in this week's Pricing Page Teardown.
How Artists Use Psychology to Price a PaintingFeb 10, 2022
Driven by buyers' need for consistency and explanation, the most popular pricing method uses a surprisingly simple formula based on size.
The Wild, Wonderful World of Estate SalesJan 15, 2022
The estate-sale industry is fragile and persistent in a way that doesn’t square with the story of the world as we have come to expect it.
The Behavioral Economics of Price-SettingDec 8, 2021
Prospect theory proposes that when making decisions people use a reference point to frame prospective alternative outcomes as either potential gains or losses; when considering prospective gains, they are risk-averse and prefer certainty, but when considering prospective losses, they are risk-prone and prefer to risk the possibility of larger but uncertain losses. However, when setting
There’s Still Profit Potential in Your Low-Profit CustomersNov 11, 2021
Profit desert customers — small, low-profit customers often numbering in the tens of thousands — are an important business segment in most companies. They often amount to about 50–80% of customers and consume about 40–60% of the company’s costs. In some companies, they’re assigned to territory reps as low-revenue “C” accounts, which distracts the reps from selling more lucrative business. In all companies, they create costly complexity in functions ranging from order-taking to fulfilment to after-sales service and returns because these customers are numerous and often inexperienced. The best way to manage your profit desert customers is to cluster them under a unified management structure — a profit desert customer team — rather than having them scattered in sales reps’ portfolios throughout the company. This team should be composed of specialized sales and marketing managers who are solely focused on this customer segment. The author presents three steps these managers should take to bring latent profits to the bottom line.
Why Charging for Plastic Bags Makes People Give Them UpJul 4, 2021
It's all about setting up psychological tripping blocks
Why Are People Getting Worse at “The Price Is Right”?Jun 21, 2021
The typical guess is much worse today than it was in the 1970s. It could be because people don't really need to keep track of prices anymore.
Science SaysJun 17, 2021
3-min marketing recommendations from the latest scientific research. Join 30,000+ marketers, for $0.
SaaS for component pricing: Q&A with Lytica chairman Ken BradleyMar 26, 2021
How much should one pay for a chip or a component? Lytica, a Canadian supply-chain pricing analytics company, has the answer. Founded by former Nortel chief procurement officer Ken Bradley, who, like many others in the IT industry, was once bemused by component pricing, Lytica is transforming itself into a software-as-a-service (SaaS) company, helping OEM and EMS make well-informed deals when buying or selling.
When should you kill a product? 4 lessons from GitLab’s subscription changeMar 15, 2021
Earlier this year, GitLab got rid of a paid starter offering, trimming its product catalog from 4 subscription tiers to 3 — here's why it makes sense.
How a 10-second video clip sold for $6.6 million | ReutersMar 1, 2021
In October 2020, Miami-based art collector Pablo Rodriguez-Fraile spent almost $67,000 on a 10-second video artwork that he could have watched for free online. Last week, he sold it for $6.6 million.
Sneakerheads have turned Jordans and Yeezys into an asset classFeb 27, 2021
When the pandemic presented a buy-low opportunity, one college dropout hit the road and filled his truck with $200,000 worth of kicks.
Buyer beware: Massive experiment shows why ticket sellers hit you with last-second fees | Haas News | Berkeley HaasFeb 23, 2021
There’s a reason that online ticket sellers hit you with those extra fees after you’ve picked your seats and are ready to click “buy.” Pure profit. A
Veblen good - WikiwandFeb 23, 2021
A Veblen good is a type of luxury good, named after American economist Thorstein Veblen, for which the demand increases as the price increases, in apparent cont...
It's going to cost four figuresFeb 18, 2021
Let's talk about pricing commissioned work (on existing open source projects). Or: things I learned the hard way from past mistakes.
Hacker NewsFeb 18, 2021
How A Retail Chain Without A Website Powered Through The PandemicFeb 18, 2021
Burlington shut down online sales in March right before coronavirus lockdowns. But it's among the discount retailers that have endured the pandemic surprisingly well, even opening new stores.
Auction Catalogue Symbols, DecodedFeb 11, 2021
Collectors fluent in catalogue symbology can see which lots are locked in, which might lead to surprising results, and how an entire auction is likely to go.
The art and science of SaaS pricing: True usage-based pricingJan 10, 2021
Usage-based pricing can be incredibly powerful, particularly in cases where the SaaS solution handles the flow of money.
The art and science of SaaS pricing: Finding the right model fitJan 10, 2021
Part 1 in this 3-part series: Find the pricing model that fits with your particular options for expansion once you've made that first sale.
How grading agencies drove the trading card boomDec 18, 2020
They standardized value, which helped collectors to get a sense of the market.
Mark Stiving on Value Based Pricing and Price SegmentationDec 18, 2020
Video and slides from Mark Stiving's talk on value based pricing and price segmentation at the Aug-26-2020 Lean Culture Online event.
Auction Prices That Take Your Breath AwayNov 3, 2020
Prices for works by some relatively new artists have skyrocketed, seemingly overnight.
How I learned to charge my customersNov 3, 2020
After I completed my first programming class, I went straight to Craigslist. I advertised my programming services. I called myself an experienced programmer who could code anything. I posted a link to
Pricing with 4 & 9 Scientific StrategiesJun 1, 2020
Sunday Strategist: Why So Many Things Cost Exactly ZeroJan 21, 2020
Breaking down the boldest bets in business
A 2020 guide to smart discountingDec 31, 2019
Polly Wong, managing partner at Belardi Wong, offers tips for crafting customer offers while avoiding discount fatigue and harm to the bottom line.
Pricing algorithms can learn to collude with each other to raise pricesDec 28, 2019
If you shop on Amazon, an algorithm rather than a human probably set the price of the service or item you bought. Pricing algorithms have become ubiquitous in online retail as automated systems have grown increasingly affordable and easy to implement. But while companies like airlines and hotels have long used machines to set their…
Pricing experiments and how they can help you increase revenue : ProductManDec 23, 2019
Classical economics is built on the assumption that people act rationally, which means their decisions are aimed at maximizing their benefits. This…
The falling price of a TV set is the story of the American economy | The OuDec 19, 2019
A 50-inch TV for $300 comes with some trade-offs.
Changing Your Pricing Model: How Hired Went from a Transactional to a SubscOct 18, 2019
Hired's Head of Global Revenue, John Kelly, explains how the company successfully transitioned from a transactional to a subscription model.
Applying Discounts and Promotions on Ecommerce WebsitesAug 29, 2019
Coupons and other discounts should be easy to apply and shopping carts should clearly display how the total was affected by the promotion.
How to Negotiate the Price of a Pricey Premium DomainAug 29, 2019
Buying a domain at the asking price? That's like buying a used car at the asking price. Doing your homework pays off.
Value Delivery Patterns Shape Your Pricing ChoicesAug 29, 2019
When you deliver value to your customer is as important as how you deliver value. The when becomes a critical input into designing your pricing model. Learn more here.
Veblen good - WikipediaAug 20, 2019
A Veblen good is a type of luxury good, named after American economist Thorstein Veblen, for which the demand increases as the price increases, in apparent contradiction of the law of demand, resulting in an upward-sloping demand curve. The higher prices of Veblen goods may make them desirable as a status symbol in the practices of conspicuous consumption and conspicuous leisure. A product may be a Veblen good because it is a positional good, something few others can own.
How Retailers Use Personalized Prices to Test What You’re Willing to PayJul 3, 2019
Orbitz, the travel website, offers slightly different prices to customers who are shopping through its app or a computer, and even between two different users on the same platform. Some of this may be due to experimentation and testing, but it’s also a sign that web retailers are using technology to try to offer personalized pricing — a practice some might consider a form of price profiling. The goal of this practice is to try to identify an individual’s willingness to pay and adjust the price upward or downward to maximize profits. It’s something shoppers should be aware of as more purchases are made online.
Dynamic pricing: Using digital and analytics to take value pricing in the cMay 29, 2019
Rapid, customer-tailored dynamic pricing adjustments being made possible by new digital and advanced-analytics capabilities can generate substantial margin improvement for chemical companies.
Average Cost: One Ounce of High Quality MarijuanaMay 9, 2019
This is not surprising, but still kind of interesting: The three least expensive states for marijuana, however, are all in the West region and all allow for legal recreational use: Oregon ($210.75), Washington ($232.90), and Colorado ($241.74). The national average is $326.06. Table of prices by state after the jump. Source: Oxford Treatment Center…Read More
5 Pricing Resolutions for 2019Dec 20, 2018
Pricing is a good place to make a few critical resolutions for businesses. Learn the 5 resolutions as you shape your pricing strategy for 2019.
The Power of Price PointsOct 17, 2018
Customer segmentation is not just a revenue tool, but also a way to achieve excellence in execution.
Why You Don’t Know the Price Until You SellSep 30, 2018
On abnormal markets and how to prevent forced selling.
'I'm getting ripped off': A look inside Ticketmaster's price-hiking bag ofSep 25, 2018
Buying a ticket for Saturday's Bruno Mars concert in Toronto was probably never going to be cheap, but what many of the star's 17,000 fans who scored a seat might not realize is it wasn't just scalpers driving up prices.
Creating value at industrial companies through advanced pricing techniquesAug 27, 2018
Faced with tough competition and uncertainty in raw-material prices, industrial companies must reset their pricing architecture.
Forever 21 visual search tool boosted purchase value by 20%Aug 24, 2018
The fast-fashion retailer has debuted, and quickly expanded, an AI-based visual search and navigation tool for its mobile and e-commerce business.
When Cost-Plus Pricing Is a Good IdeaJul 17, 2018
Cost-plus pricing is a lot like the romance novel genre, in that it’s widely ridiculed yet tremendously popular. The idea behind cost-plus pricing is straightforward. The seller calculates all costs, fixed and variable, that have been or will be incurred in manufacturing the product, and then applies a markup percentage to these costs to estimate the asking price. Though currently out of fashion among pricing experts (for good reason), there are sometimes strategic and pragmatic reasons to use cost-plus pricing. When implemented with forethought and prudence, cost-plus pricing can lead to powerful differentiation, greater customer trust, reduced risk of price wars, and steady, predictable profits for the company.
10 ways to offer shoppers a discountMay 30, 2018
Many online retailers unintentionally train consumers to expect discounts. Clothing stores are amongst the worst offenders. Constant discounting makes full-price shoppers believe they’re being overcharged. They often won’t shop until the next sale, which leads to a vicious cycle. It is a rare company that doesn’t get asked for discounts. In this post, I'll review 10 ways to offer clients a discount.
Why Online Retailers Should Hide Their Best DiscountsMay 8, 2018
Online retailers should take a tip from brick-and-mortar stores: shove your best deals to the back of the store. Research by Thales Teixeira and Donald Ngwe.
Growing One's Consulting BusinessJan 23, 2018
How I got started consulting and the advice which changed my (business) life.
How restaurant menus play tricks on youNov 22, 2017
Great thought and effort go into creating restaurant menus – and there are some very powerful psychological tricks employed to make you choose.
Why Grandfathering Your Pricing is Terrible for Your BusinessNov 7, 2017
Legacy plans and pricing kneecaps your growth and can crush your relationships with your customers.
printing
Beth Mathews Design — Parts List TypefaceDec 12, 2025
A typeface inspired by vintage forms, lists and gas station ephemera.
HP wants you to pay up to $36/month to rent a printer that it monitorsMar 1, 2024
“Never own a printer again.”…
A California Type Foundry Is Keeping Vintage Printing AliveJul 15, 2020
“It’s a really neat feeling to help people be able to print from hot metal.”
prioritization
How to Say "No" to Your CEO's Random Product IdeasJul 19, 2022
The reality is that you will never prioritize the CEO’s "great" new idea. Here's how to let your strategy say "no" for you.
20 Product Prioritization Techniques: A Map and Guided Tour | Folding BurritosJul 18, 2022
An in-depth overview of 20 product prioritization techniques and a periodic table to make sense of them all.
privacy
How WhatsApp Took Over the Global ConversationJan 13, 2026
The platform has become a core technology around the world, relied on by governments and extended families alike, Sam Knight writes. What are we all doing there?
How to Disappear: Secrets of the World’s Greatest Privacy ExpertsDec 27, 2025
Inside the world of extreme-privacy consultants, who, for the right fee, will make you and your personal information very hard to find
A Brief History of NSA Backdoors.Nov 28, 2025
k-anonymity, the parent of all privacy definitions - Ted is writing thingsNov 17, 2025
How a privacy researcher proved a politician wrong, and how she created the first ever definition of anonymity in the process.
Privacy-Safe Attribution Avoids User TrackingAug 18, 2025
A new attribution approach uses large sets of anonymized data to infer which channels and campaigns led to conversions.
The Secret History of Tor: How a Military Project Became a Lifeline for PrivacyAug 8, 2025
A story of secrecy, resistance, and the fight for digital freedom.
The 18 HIPAA Safe Harbor identifiers explainedFeb 3, 2024
Summarizing and explaining the 18 rules for HIPAA Safe Harbor (and the so-called 19th rule). What are the rules and their rationale? Alternative to Safe Harbor.
Privacy-focused Brave Search grew by 5,000% in a yearJun 22, 2022
Brave Search, the browser developer's privacy-centric Internet search engine, is celebrating its first anniversary after surpassing 2.5 billion queries and seeing almost 5,000% growth in a year.
‘Every message was copied to the police’: the inside story of the most daring surveillance sting in historySep 13, 2021
Billed as the most secure phone on the planet, An0m became a viral sensation in the underworld. There was just one problem for anyone using it for criminal means: it was run by the police
prob-stats
Understanding Standard Deviation vs Standard ErrorJan 22, 2026
Understand the key differences between standard deviation and standard error with clear examples and practical applications.
Why 52 Cards Is the Perfect Number for Poker—MathematicallyJan 13, 2026
A traditional card deck happens to dodge a tricky poker paradox. Other poker variants aren’t so lucky
Implementing Softmax From Scratch: Avoiding the Numerical Stability Trap - MarkTechPostJan 7, 2026
Learn about implementing Softmax from scratch and discover how to avoid the numerical stability trap in deep learning projects.
5 Effect Size Measures You’ll Actually UseOct 27, 2025
Learn to calculate and interpret five essential effect size measures with Python examples and clear guidance.
Explaining Gibrat's Law: Why Growth Creates Lognormal DistributionsOct 9, 2025
Gibrat's Law explains why proportional growth processes create lognormal distributions across economics, biology, and social systems.
Softmax in Statistics: Turning Scores into ProbabilitiesSep 24, 2025
Learn how softmax converts raw scores into probability distributions that power AI decision-making.
How to Calculate and Interpret the Covariance Matrix with NumPySep 17, 2025
In this article, we will explore how to calculate and interpret the covariance matrix using NumPy.
p-values Explained in Plain English (with Visuals)Sep 4, 2025
In this article, we'll explore what p-values really mean, what they do not mean, and how to interpret them correctly.
Understanding Occam's Razor: Why Simpler Models Usually WinAug 26, 2025
Learn why simpler statistical models often outperform complex alternatives and when to apply this principle.
5 Real-Life Examples of the Poisson DistributionJul 7, 2025
Image by Editor | ChatGPT The Poisson distribution might sound like one of those things you only deal with in a stats class, but it actually shows up in
How to Visualize Skewness and Kurtosis in PythonJun 12, 2025
In this article, you will learn how to visualize skewness and kurtosis using Python.
10 Python One-Liners to Run Common Statistical TestsMay 20, 2025
In this article, we'll explore 10 Python one-liners that showcase the progression from basic statistical tests to sophisticated analyses.
7 Statistical Concepts Machine Learning Engineers MisunderstandMay 8, 2025
Let’s break down seven statistical concepts that even seasoned machine learning engineers often trip over — and why getting them right matters more than you think.
Concise Guide to Survival AnalysisApr 18, 2025
So, if you’ve ever asked, “How long until X happens?” and wanted to back that up with solid data, you’re in the right place.
Introduction to statsmodelsApr 14, 2025
This article explains its features, installation, and how to use it with examples.
The Concise Guide to Chi-Square DistributionApr 8, 2025
Let's clarify this important statistical pattern and understand its significance in analysis.
The Concise Guide to Poisson DistributionApr 1, 2025
The Poisson distribution is a discrete probability distribution that expresses the likelihood of a specific number of events occurring within a fixed time or space interval.
What is Hellinger distance? - DataconomyMar 12, 2025
Hellinger Distance is a statistical measure that quantifies the similarity between two probability distributions, useful in data analysis and machine learning applications.
Learning curve: The Kaplan-Meier estimator | The ActuaryMar 9, 2025
The Kaplan-Meier survival curve estimator is one of the most cited ideas in science
The Concise Guide to LeverageMar 3, 2025
Leverage helps us identify observations that could significantly influence our regression results, even in ways that aren't immediately obvious.
The Concise Guide to HeteroscedasticityFeb 17, 2025
Heteroscedasticity might seem like just the opposite of homoscedasticity, but understanding it in its own right is crucial for any data analyst.
The Concise Guide to HomoscedasticityFeb 13, 2025
Homoscedasticity stands as one of those statistical terms that can seem unnecessarily complex at first glance.
Time Series Decomposition: Extracting Seasonal, Trend, and Residual ComponentsFeb 7, 2025
Still, the exact application, challenges and shortcuts related to this technique are relatively unknown, and that’s what this article seeks to change.
The Concise Guide to Statistical PowerFeb 6, 2025
Statistical power might be the most frequently misunderstood concept in research design. While many researchers know they "need" it, few truly understand
Understanding Degrees of Freedom in StatisticsJan 9, 2025
Degrees of freedom (df) represent the number of independent values in a dataset that are free to vary while still satisfying the statistical constraints imposed on the data.
Statology's Most Popular Articles of 2024Dec 31, 2024
Have a look at Statology's most popular articles of the year!
Beyond the Mask: A Comprehensive Study of Discrete Diffusion ModelsDec 15, 2024
Masked diffusion has emerged as a promising alternative to autoregressive models for the generative modeling of discrete data. Despite its potential, existing research has been constrained by overly complex model formulations and ambiguous relationships between different theoretical perspectives. These limitations have resulted in suboptimal parameterization and training objectives, often requiring ad hoc adjustments to address inherent challenges. Diffusion models have rapidly evolved since their inception, becoming a dominant approach for generative media and achieving state-of-the-art performance across various domains. Significant breakthroughs have been particularly notable in image synthesis, audio generation, and video production, demonstrating the transformative potential of this innovative
Distribution Calculator Guide: From Basic Probabilities to Statistical TestsNov 30, 2024
The calculators in this guide follow a natural progression, starting with basic probabilities and z-scores, moving through hypothesis testing tools, and concluding with specialized distributions.
Extreme Value Theory: Understanding and Predicting Rare EventsNov 12, 2024
Let's have a closer look at EVT, its applications, and its challenges.
How to Use the Cauchy Distribution in PythonNov 11, 2024
In this tutorial, we’ll learn more about the Cauchy distribution, visualize its probability density function, and learn how to use it in Python.
Welch’s t-Test: The Reliable Way to Compare 2 Population Means with UnequalJun 17, 2024
Discover why Welch’s t-Test is the go-to method for accurate statistical comparison, even when variances differ.
Computing Minimum Sample Size for A/B Tests in Statsmodels: How and WhyMay 31, 2024
A deep-dive into how and why Statsmodels uses numerical optimization instead of closed-form formulas
How the Guinness Brewery Invented the Most Important Statistical Method inMay 27, 2024
The most common test of statistical significance originated from the Guinness brewery. Here’s how it works
9 key probability distributions in data science: Easy explanationDec 29, 2023
Understanding probability distributions in data science is crucial. They provide a mathematical framework for modeling and analyzing data.
Beyond the Bell Curve: An Introduction to the t-distributionSep 4, 2023
Discover the origins, theory and uses behind the famous t-distribution
Mastering Monte Carlo: How To Simulate Your Way to Better Machine LearningAug 3, 2023
How a Scientist Playing Solitaire Forever Changed the Game of Statistics
SynthDiD 101: A Beginner’s Guide to Synthetic Difference-in-DifferencesApr 26, 2023
On the method’s advantages and disadvantages, demonstrated with the synthdid package in R
How to Understand and Use the Jensen-Shannon DivergenceMar 2, 2023
A primer on the math, logic, and pragmatic application of JS Divergence — including how it is best used in drift monitoring
There are more ways to arrange a deck of cards than there are atomsFeb 2, 2023
Think of your last card game – euchre, poker, Go Fish, whatever it was. Would you believe every time you gave the whole deck a proper shuffle, you were holding a sequence of cards which had never
How to Select the Right Statistical Tests for Different A/B MetricsDec 10, 2022
A Discussion of the go-to methods for 5 Types of A/B Metrics
Chi-Square Test to Compare Categorical VariablesOct 1, 2022
Complete Guideline to Find Dependencies among Categorical Variables with Chi-Square Test
The statistical magic behind the bootstrapSep 5, 2022
How to use the bootstrap for tests or confidence intervals and why it works
Fully Mastering Fisher’s Exact Test for A/B TestingJul 30, 2022
While Fisher’s exact test is a convenient tool for A/B testing, the idea and results of the test are often hard to grasp and difficult to…
Understanding CUPEDJul 4, 2022
An in-depth guide to the state-of-the-art variance reduction technique for A/B tests
DAGs and Control VariablesJun 21, 2022
How to select control variables for causal inference using Directed Acyclic Graphs
Sobol Indices to Measure Feature ImportanceJun 21, 2022
Understanding the model’s output plays a major role in business-driven projects, and Sobol can help
Statistical T-Test Simply ExplainedMar 17, 2022
An introduction to the Student’s t-distribution and the Student’s t-test
Log-normal Distribution — A simple explanationFeb 19, 2022
How to calculate μ & σ, the mode, mean, median & variance
30 Probability and Statistics Interview Questions for Data ScientistsDec 9, 2021
Top 30 Probability and Statistics Interview Questions that can help you sharpen your skills to ace your data science interview
Probability Distributions with Python’s SciPyOct 23, 2021
How to Model random Processes with Distributions and Fit them to Observational Data
The curious case of Simpson’s ParadoxMay 5, 2021
In 1996, Appleton, French, and Vanderpump conducted an experiment to study the effect of smoking on a sample of people. The study was conducted over twenty years and included 1314 English women…
Resource Round-Up: Causal Inference | Emily RiedererMar 14, 2021
Free books, lectures, blogs, papers, and more for a causal inference crash course
8 Common Pitfalls of Running A/B TestsFeb 22, 2021
How not to fail your online controlled experimentation
Using strip charts to visualize dozens of time series at onceJan 19, 2021
Strip charts are extremely useful to make heads or tails from dozens (and up to several hundred) of time series over very long periods of…
Project Lighthouse — Part 1: P-sensitive k-anonymityDec 18, 2020
Part one of a series on how we will measure discrepancies in Airbnb guest acceptance rates using anonymized perceived demographic data.
Log-Normal DistributionDec 18, 2020
A Log-Normal Distribution is a continuous probability distribution of a random variable whose logarithm is normally distributed.
Understanding Parametric Tests, Skewness, and KurtosisDec 10, 2020
This article introduces important subcategories of inferential statistical tests and discusses descriptive statistical measures related to the normal distribution.
7 Statistical Distributions that every Data Scientist should know— with intuitive explanationsNov 3, 2020
Intuitive explanations for the Normal, Bernoulli, Binomial, Poisson, Exponential, Gamma and Weibull distribution — with Python example code
10 Normality Tests-Python (Step-By-Step Guide 2020)Nov 3, 2020
Normality tests to check if a variable or sample has a normal distribution.
How to Calculate the KL Divergence for Machine Learning - MachineLearningMastery.comNov 3, 2020
It is often desirable to quantify the difference between probability distributions for a given random variable. This occurs frequently in machine learning, when we may be interested in calculating the difference between an actual and observed probability distribution. This can be achieved using techniques from information theory, such as the Kullback-Leibler Divergence (KL divergence), or relative entropy, and the Jensen-Shannon…
Seven Must-Know Statistical Distributions and Their Simulations for Data ScOct 16, 2020
Assumptions, relationships, simulations, and so on
Overview of data distributionsJun 24, 2020
With so many types of data distributions to consider in data science, how do you choose the right one to model your data? This guide will overview the most important distributions you should be familiar with in your work.
A quick refresher of statistical powerJun 24, 2020
An easy-to-follow guide next time you forget how to do power calculations
NIST Handbook of Engineering StatisticsJun 1, 2020
Lognormal, Weibull, and Gamma distribution in One Picture - DataScienceCentral.comJun 1, 2020
At first glance, the Lognormal, Weibull, and Gamma distributions distributions look quite similar to each other. Selecting between the three models is “quite difficult” (Siswadi & Quesenberry) and the problem of testing which distribution is the best fit for data has been studied by a multitude of researchers. If all the models fit the data fairly well,… Read More »Lognormal, Weibull, and Gamma distribution in One Picture
The Student t-DistributionJun 1, 2020
The Power-Law DistributionJun 1, 2020
Classic Probability Problem #2: The Coupon ProblemJun 1, 2020
Data Science & Machine Learning Interviews
A Complete Guide to Hypothesis TestingMay 17, 2020
From Controlling for Testing Errors to Selecting the Right Test
Understanding Probability And Statistics: Chi-Squared, Student-T, And F DisApr 21, 2020
A Must Know Topic For Data Scientists Who Work With Data And Statistical Inference
Lies, Damned Lies, and Averages: Perc50, Perc95 explained for ProgrammersMar 19, 2020
I got a customer ticket the other day that said they weren’t worried about response time because “New Relic is showing our average response time to be sub 20...
Hypothesis Testing Explained as Simply as PossibleMar 9, 2020
One of the most important concepts for Data Scientists
The seven deadly sins of statistical misinterpretation, and how to avoid them - DataScienceCentral.comFeb 19, 2020
By Winnifred Louis, Associate Professor, Social Psychology, The University of Queensland, and Cassandra Chapman,PhD Candidate in Social Psychology, The University of Queensland. Here are the 7 sins: Assuming small differences are meaningful Equating statistical significance with real-world significance Neglecting to look at extremes Trusting coincidence Getting causation backwards Forgetting to consider outside causes Deceptive graphs To read… Read More »The seven deadly sins of statistical misinterpretation, and how to avoid them
The Little Handbook of Statistical PracticeDec 23, 2019
Statistical Thinking for Industrial Problem Solving – a free online courseDec 23, 2019
Data Science, Machine Learning, AI & Analytics
Markov Chain Analysis and Simulation using Python - Towards Data ScienceDec 14, 2019
Solving real-world problems with probabilities
P-value Explained Simply for Data ScientistsDec 14, 2019
This post is about various evaluation metrics and how and when to use them.
29 Statistical Concepts Explained in Simple English - Part 3Aug 30, 2019
This resource is part of a series on specific topics related to data science: regression, clustering, neural networks, deep learning, decision trees, ensembles, correlation, Python, R, Tensorflow, SVM, data reduction, feature selection, experimental design, cross-validation, model fitting, and many more. To keep receiving these articles, sign up on DSC. The full series is accessible here. 29 Statistical Concepts… Read More »29 Statistical Concepts Explained in Simple English – Part 3
15 Statistical Hypothesis Tests in Python (Cheat Sheet)Feb 12, 2019
Quick-reference guide to the 17 statistical hypothesis tests that you need in applied machine learning, with sample code in Python. Although there are hundreds of statistical hypothesis tests that you could use, there is only a small subset that you may need to use in a machine learning project. In this post, you will discover a cheat sheet for the…
Explaining the 68-95-99.7 rule for a Normal DistributionJul 25, 2018
This post explains how those numbers were derived in the hope that they can be more interpretable for your future endeavors.
Frequency Distribution Analysis using Python Data Stack – Part 1Jun 8, 2018
During my years as a Consultant Data Scientist I have received many requests from my clients to provide frequency distribution
Skewness vs Kurtosis – The Robust DuoMay 5, 2018
Kurtosis and Skewness are very close relatives of the “data normalized statistical moment” family – Kurtosis being the fourth and Skewness the third moment, and yet they are often used to detect very different phenomena in data. At the same time, it is typically recommendable to analyse the outputs of…
Counting Bloom Filter in C – Tony Allen – MediumDec 27, 2017
I recently ran across this bloom filter post by Michael Schmatz and it inspired me to write about a neat variation on the bloom filter that…
Removing Outliers Using Standard Deviation in PythonDec 27, 2017
Standard Deviation is one of the most underrated statistical tools out there. It’s an extremely useful metric that most people know how to calculate but very few know how to use effectively.
Your Guide to Master Hypothesis Testing in Statistics - DataScienceCentral.comDec 27, 2017
This article was written by Sunil Ray. Sunil is a Business Analytics and Intelligence professional with deep experience. Introduction – the difference in mindset I started my career as a MIS professional and then made my way into Business Intelligence (BI) followed by Business Analytics, Statistical modeling and more recently machine learning. Each of these transition has required… Read More »Your Guide to Master Hypothesis Testing in Statistics
The 10 Statistical Techniques Data Scientists Need to MasterNov 20, 2017
The author presents 10 statistical techniques which a data scientist needs to master. Build up your toolbox of data science tools by having a look at this great overview post.
Fisher's method - WikipediaOct 4, 2017
In statistics, Fisher's method, also known as Fisher's combined probability test, is a technique for data fusion or "meta-analysis" (analysis of analyses). It was developed by and named for Ronald Fisher. In its basic form, it is used to combine the results from several independence tests bearing upon the same overall hypothesis (H0).
Relative error distributions, without the heavy tail theatricsDec 3, 2016
Nina Zumel prepared an excellent article on the consequences of working with relative error distributed quantities (such as wealth, income, sales, and many more) called “Living in A Lognormal…
procrastination
The psychology of unfinished tasksJun 22, 2022
Unfinished tasks can overwhelm us or motivate us. These contradictory experiences are due to the Zeigarnik and the Ovsiankina effects.
Why procrastination is about managing emotions, not time - BBC WorklifeJan 1, 2021
Address the real reasons you procrastinate and you’re more likely to start achieving your goals.
prod-mkt-fit
📈Product Market Fit for Physical ProductsJul 9, 2025
I asked an 🍎 Apple Vision Pro designer turned solopreneur how he sells HW.
The Heart of Innovation: Why Most Startups Fail - CommoncogMay 23, 2025
A theory of demand (and product market fit) that explains it all, and does NOT require ‘pain’ to do it.
0-$5M: How to Identify Your ICP — Lessons from Vanta, Clay, RetoolMay 15, 2025
How do you spot the wrong customer before they burn your roadmap? First Round Partner Meka Asonye digs into how now-massively successful startups cracked the code.
📈Product Market Fit for Physical ProductsApr 4, 2025
I asked an 🍎 Apple Vision Pro designer turned solopreneur how he sells HW.
Product Market Fit Collapse: The AI Tipping PointMar 3, 2025
Historically product market fit evolved gradually. But we are now seeing established products collapse overnight.
How to Measure Product-Market FitOct 19, 2024
Ready to nail product-market fit? We found expert advice for creating a product with widespread demand.
20 Lessons From 20 Different Paths to Product-Market Fit — Advice for FoundMay 7, 2024
After interviewing dozens of founders, we pulled together the biggest lessons on finding PMF that stuck with us.
The Arc PMF FrameworkApr 14, 2024
This framework outlines three distinct archetypes of PMF which help you understand your product’s place in the market and determine how your company operates.
GOAT’s Path to Product-Market Fit — How a Fake Sneaker Sparked a $4B IdeaMar 6, 2024
GOAT co-founder and CEO Eddy Lu sits down with First Round Partner Todd Jackson to tell the story of how a decade of middling entrepreneurial ideas finally culminated in the $4B idea for a sneaker marketplace.
Vercel’s Path to Product-Market Fit — From Open-Source Project to Billion-DMar 6, 2024
Guillermo Rauch, raised in Buenos Aires and fascinated by computers since age 7, taught himself to code and moved to San Francisco at 18. His company, Vercel — the frontend cloud service behind open-source development framework Next.js — was recently valued at $2.5 billion.
Pilot’s Path to Product-Market Fit — Three-Peat Founders on Picking the RigJan 18, 2024
The founders of Pilot have started three times over, starting with Ksplice (sold to Oracle in 2011) and then Zulip (acquired by Dropbox in 2014).
WTF is Marketplace Liquidity?Mar 12, 2023
Methodologies for understanding and measuring marketplace liquidity
Retool’s Path to Product-Market Fit — Lessons for Getting to 100 Happy CustJan 26, 2023
In our "Paths to Product-Market Fit," Retool founder and CEO David Hsu sits down with First Round partner Todd Jackson to share how the internal tools company hypothesized, tested and iterated its way to 100 happy customers
What Does Product-Market Fit Feel Like?Jan 24, 2023
Top Hacks from a PM Behind Two of Tech's Hottest ProductsJul 18, 2022
Todd Jackson has experience managing products at Google, Facebook and his own startup. Here's what he learned.
The Sharp Startup: When PayPal Found Product-Market FitJul 18, 2022
Reflections on the 20th anniversary of a $100+ billion product
Babe Ruth and Feature ListsJul 6, 2022
Prioritized lists are essential for product managers, right? Yes, but be careful. Ken Norton illustrates why.
Picking a MarketJun 28, 2022
In the Creative Founder, students are paired semi-randomly, and then spend a semester trying to get to product-market fit. I always start them with market selection. A market has three key elements…
A Quantitative Approach to Product Market Fit - Tribe CapitalJun 14, 2022
A overview on the basics behind how we quantify product-market fit at Tribe Capital. These are the underpinnings of our underwriting framework.
Non-Obvious Signs of Early Startup Traction — And How to Spot ThemSep 24, 2012
We gathered the most surprising anecdotes from seasoned founders about when things clicked into place.
prodmgmt
Loot Drop - The Startup GraveyardFeb 7, 2026
Explore 925+ failed startups and learn from $32.5B+ in burned venture capital. Discover why they failed, their market potential, and how to rebuild them.
Lessons Learned Shipping 500 Units of my First Hardware ProductFeb 4, 2026
Building in consumer hardware as a software engineer
The Psychology Gap: Why Teams Misinterpret User Behavior - UX MagazineJan 21, 2026
Your product isn't failing because of bad design. It's failing because your team is designing in clarity while your users are drowning in chaos. The gap between how you think users behave and how they actually feel their way through your product is quietly breaking every flow, feature, and conversion you build. And it starts long before any user ever clicks a button.
Understanding carriageDec 16, 2025
The announcement of the planned Netflix acquisition of Warner Bros, one of the last remaining major studios, is shedding light on a key issue we often overlook when thinking about culture, creativi…
Why Small-Footprint Stores are Shaping Big City Retail - Retail Focus Magazine - Retail DesignDec 12, 2025
Large cities move fast and need retail spaces that can keep up with shifting demand. Brands have started to rely on smaller stores that fit busy streets, tight corners, and varied foot traffic. Customers respond well to shops that feel simple, quick, and easy to use. These compact spaces help retailers reach people who want […]
Turn Any Idea Into a Validated MVPDec 9, 2025
A step-by-step path to validate your idea fast by defining the problem, testing assumptions, prototyping the critical flow, and shaping a focused MVP you can learn from.
The Merger Playbook: Crossbeam’s CEO Breaks Down Every Detail of the Deal That WorkedDec 2, 2025
A founder's firsthand account of how he merged with a competitor to materially change the trajectory of his company.
OpenAI’s Windows PlayOct 13, 2025
OpenAI is making a play to be the Windows of AI: the all-encompassing platform that controls both hardware supplier and software developers.
Is Your Startup Idea Any Good? Borrow These Validation Tactics from the Founders of Linear, Mercury and MoreSep 9, 2025
Founders share the unconventional ways they found conviction in their startup ideas.
Do Things that Don't ScaleAug 15, 2025
The Definitive HBR Strategy GlossaryJul 28, 2025
Our guide to all things strategy, from “adjacency expansion” to “value stick.”
The Jobs to be Done Framework (to Understand Demand)Jul 9, 2025
How and why the Jobs to be Done Framework can help you sell more, faster, and accelerate your understanding of demand.
Merchandising Lessons from Top MarketplacesJun 24, 2025
We analyze the home pages of 10 marketplaces to spot common merchandising traits.
The Man Who Beat IBMJun 21, 2025
Compaq’s Rod Canion broke Big Blue’s hold on the PC market—and changed computing forever
Cross-sell Tactics of Top DTC BrandsJun 1, 2025
Our just-completed analysis of 40 direct-to-consumer brands revealed several cross-selling techniques.
Flash Sales without Brand DamageMay 19, 2025
The best flash sales build urgency that aligns with long-term goals, brand positioning, and channel constraints.
Product Purgatory: When they love it but still don't buyMay 5, 2025
When even "free" is too expensive.
The 6 Forces of FailureApr 30, 2025
Sean Jacobsohn, founder of the Failure Museum, shares notable product failures and the lessons we can learn from them.
Speedrunning the Skill of DemandApr 21, 2025
How to get better, faster at the skill of uncovering demand, which underpins the skill domains of sales, marketing, and product.
How to Structure a B2B Marketplace Venture | MIT Sloan Management ReviewApr 13, 2025
Companies that want to launch a B2B marketplace face a choice: own the platform, spin it off, or create a startup.
📈Product Market Fit for Physical ProductsApr 4, 2025
I asked an 🍎 Apple Vision Pro designer turned solopreneur how he sells HW.
Are Product Images Vital for Brick-and-Mortar Stores?Apr 2, 2025
Regarding marketing and selling products to consumers, product imagery is unquestionably one of the most important selling points. When considering the prevalence and dominance of e-commerce and digital shopping channels, traditional brick-and-mortar retail stores may question where this leaves them. There is an argument to be made regarding the benefits of seeing physical products up […]
Startup-CTO-Handbook/StartupCTOHandbook.md at main · ZachGoldberg/Startup-CTO-HandbookMar 13, 2025
The Startup CTO's Handbook, a book covering leadership, management and technical topics for leaders of software engineering teams - ZachGoldberg/Startup-CTO-Handbook
TikTok and the Sorting Hat — Remains of the DayJan 29, 2025
NEXT POST: Part II of my thoughts on TikTok, on how the app design is informed by its algorithm and vice versa in a virtuous circle.
An Interview with Daniel Gross and Nat Friedman About Models, Margins, and MoatsJan 23, 2025
An interview with Daniel Gross and Nat Friedman about Stargate, DeepSeek, and where the margins and moats will come with models.
Ecommerce Benefits of Dynamic PricingJan 9, 2025
AI-powered platforms transform a decades-old pricing practice.
Taxonomy as a serviceDec 26, 2024
When the truck makes a delivery at the nearby True Value hardware store, Danny needs to figure out which shelf to put it on. Should the extension cords go next to the hoses? After all, they both do…
7 Tips for Successful DiscoveriesNov 26, 2024
Discovery is challenging; it can be hard to know what to research, how to do discovery as a team, and how to get buy-in. Follow these 7 tips for smoother discovery efforts.
Competitive Battlecard Benchmark ToolNov 25, 2024
Download this free Competitive Battlecard Benchmark tool to see how your organization's competitive battlecards stack up against industry best practices.
Why Middlemen Don't Get EliminatedNov 10, 2024
Thoughts on business models that don't seem to make perfect sense
Mistakes from my Failed Startup in Scalping Concert TicketsNov 10, 2024
And why you will never get Taylor Swift tickets at face value
What Companies Do Well is Not Necessarily How They Make MoneyNov 2, 2024
Thoughts on business models that don't seem to make perfect sense
Product & UX GlossaryOct 25, 2024
Use this glossary to quickly clarify key terms and concepts related to product management and UX.
An Introduction to Experiment Pairing — PrecoilOct 21, 2024
How to build upon a previous experiment, without throwing it all away.
How annual pre-pay creates an infinite marketing budgetJul 15, 2024
Dozens of founders have used this technique to transform the cash-flow of their businesses. Now it's your turn.
The Amazon Weekly Business ReviewJul 10, 2024
The authoritative guide on how Amazon does WBRs (from former exec Colin Bryar): how it works, how to do it, and how Amazon uses it to win.
Becoming Data Driven, From First PrinciplesJul 4, 2024
People often say things like "become data driven" without explaining what that means or how to do it. This is everything you need to know to actually become data driven, from scratch, using the same first principles that Amazon, Koch, and Toyota used back in their day.
LVMH: Guardians of Tradition, Engineers of DesirabilityJul 3, 2024
From royal connections to succession plans, explore LVMH's journey in mastering desirability and achieving global dominance in the luxury industry.
The return of pneumatic tubesJun 20, 2024
Pneumatic tubes were supposed to revolutionize the world but have fallen by the wayside. Except in hospitals.
How to use Perplexity in your PM workJun 12, 2024
27 examples (with actual prompts) of how product managers are using Perplexity today
Who Still Buys Wite-Out, and Why?Jun 1, 2024
Correction fluids have improbably outlasted the typewriter and survived the rise of the digital office.
ttt30ga/awesome-product-design: A collection of bookmarks, resources, articMay 30, 2024
A collection of bookmarks, resources, articles for product designers. - ttt30ga/awesome-product-design
Streamlining E-commerce: Leveraging Entity Resolution for Product MatchingMay 28, 2024
How Google figures out the price of a product across websites
Product Management Insights: Understanding Your UsersMay 28, 2024
This is a series where we delve into the world of product management. This week we discuss the art of understanding your users.
Platform as a Product 101May 28, 2024
By providing a foundation for collaboration, platforms can create network effects, where the value of the platform increases as more participants join.
Amazon Marketplace FearsMay 27, 2024
Amazon's marketplace accounts for most of the revenue for thousands of merchants. Therein lies the fear.
Fantastic Industrial Design Student Work: "How Long Should Objects Last?"May 13, 2024
This incredibly ambitious and thoroughly-executed project is by Charlie Humble-Thomas, done while pursuing his Masters in the Design Products program at the RCA. Called Conditional Longevity, it asks the question: "How long should objects last?" Seeking the answer, Humble-Thomas tackles an oft-discarded object, the umbrella, and designs three variants: Recyclable,
20 Lessons From 20 Different Paths to Product-Market Fit — Advice for FoundMay 7, 2024
After interviewing dozens of founders, we pulled together the biggest lessons on finding PMF that stuck with us.
Simplicity is An Advantage but Sadly Complexity Sells BetterMay 7, 2024
Pushing back on the cult of complexity.
Paris F.C. Set Tickets To $0. Should Others Do the Same?May 4, 2024
When Paris F.C. made its tickets free, it began an experiment into the connection between fans and teams, and posed a question about the value of big crowds to televised sports.
Exclusive | Inside Amazon’s Secret Operation to Gather Intel on RivalsApr 18, 2024
Staff went undercover on Walmart, eBay and other marketplaces as a third-party seller called ‘Big River.’ The mission: to scoop up information on pricing, logistics and other business practices.
The Arc PMF FrameworkApr 14, 2024
This framework outlines three distinct archetypes of PMF which help you understand your product’s place in the market and determine how your company operates.
The Value Of A PromiseApr 6, 2024
When you hear a company like Substack or Canva make a promise, you may get pretty cynical that they’re going to keep it. Honestly, I get that.
The Streaming Purge Has Started As Deezer Deletes 26 Million “Useless” TracApr 4, 2024
Deezer has deleted 26 million of what it terms as "useless" tracks, which could be an indicator of what's to come from other platforms.
To Make Your Product a Habit, Start With These Powerful TriggersMar 25, 2024
Learn how to create customer habits using powerful triggers like time, mood, location, and social influences. Discover techniques to boost product usage.
Lessons from More Than 1,000 E-Commerce Pricing TestsMar 19, 2024
At most small and medium-sized e-commerce retailers, prices are typically set and updated in an ad hoc fashion without one clear owner. The process often starts by using a gross margin target, followed by some comparison with competitors, and then some adjustments from there. Many of these retailers would quickly admit that this isn’t an optimal strategy, and that they are likely leaving money on the table — and they’re often right. The authors’ experience with price testing has shown that there is actually a significant amount of money left on the table when pricing is left un-optimized.
How Snapple Got Its Juice BackMar 16, 2024
Its number one priority: repair relations with disgruntled distributors. Then revive the funky packaging, adventurous flavors, and anything-goes attitude that first made the brand soar.
The Ultimate Guide to B2B SaaS Pricing & PackagingMar 6, 2024
The pricing models of the top B2B SaaS companies, the strategies to iterate on, case studies of successful changes, and everything else you need to know
How to Take Bigger, Bolder Product Bets — Lessons from Slack’s Chief ProducMar 1, 2024
Seasoned product leader and Slack’s CPO Noah Desai Weiss shares the three-step framework he leans on to make quality product decisions with just the right amount of risk.
Picking Unfair Fights | The WoodSheddFeb 29, 2024
I’ve learned early in life that game selection is a HUGE determinant of success. Let me tell you about the worst game I’ve fought & the easiest bet I’ve ever won. Both taught me about choosing unfair fights and playing by your own rules… Let’s start with the entertaining worst game. In high school I played football. I was an offensive/defensive lineman. I was half way decent enough to play in the Ernie Davis All-Star game my senior year.
‘There’s endless choice, but you’re not listening’: fans quitting Spotify tFeb 22, 2024
Former streaming service subscribers on why they have ditched mod cons for MP3s, CDs and other DIY music formats
Customer Attrition: How to Define Churn When Customers Do Not Tell They’reFeb 22, 2024
The author details two examples of defining customer churn in contexts where it is not explicit: Retail and Banking.
Moving Data May Become Software's Best Feature - Practical EcommerceFeb 22, 2024
The commerce technology stack is changing. And the ability to move information from one system or platform to another is, perhaps, the essential feature mid-sized or enterprise businesses should look for in software providers.
Peter Yang’s 10 rules for making products that customers loveFeb 19, 2024
Product lead Peter Yang taps into his decade-plus career to explain why staying focused on the craft is a product manager’s superpower.
50 Types of Business Models (2022) – The Best Examples of Companies Using IFeb 14, 2024
Last updated: Jan 30, 2021 Are you looking for ideas to unlock your long-term business value? If you shook your head in yes, remember that business model is one of the ways to streamline your business process. Precisely, a business model is a holistic framework to define, understand, and design your entire business in the…
Business models based on the compiled list at http://news.ycombinator.com/item?id=4924647. I find the link very hard to browse, so I made a simple version in Markdown instead.Feb 14, 2024
Business models based on the compiled list at http://news.ycombinator.com/item?id=4924647. I find the link very hard to browse, so I made a simple version in Markdown instead. · GitHub
Ten Examples of the Mandela EffectFeb 1, 2024
Did Tom Cruise really dance in his underwear and a pair of Ray-Bans in “Risky Business”? If you answered “yes,” you might be suffering from the Mandela Effect.
Disruptive InnovationJan 31, 2024
Some examples of disruptive innovation include: Disruptor Disruptee Personal computers Mainframe and mini computers Mini mills Integrated steel mills Cellular phones Fixed line telephony Community colleges Four-year colleges Discount retailers Full-service department stores Retail medical clinics Traditional doctor’s offices As companies tend to innovate faster than their customers’ needs evolve, most […]
Why strip malls are having a revivalJan 29, 2024
As shopping malls across America struggle to attract customers, fill floor space and ultimately stay open, strip malls are apparently seeing a surge in value and popularity.
The size of your backlog is inversely proportional to how often you talk toJan 23, 2024
Lessons learned from a year of startup life.
ChatGPT Prompts for Customer PersonasJan 23, 2024
Identify and target personas of keywords, competitors, Reddit discussions, and more.
Pilot’s Path to Product-Market Fit — Three-Peat Founders on Picking the RigJan 18, 2024
The founders of Pilot have started three times over, starting with Ksplice (sold to Oracle in 2011) and then Zulip (acquired by Dropbox in 2014).
‘Let’s Go Shopping (LGS)’ Dataset: A Large-Scale Public Dataset with 15M ImJan 17, 2024
Developing large-scale datasets has been critical in computer vision and natural language processing. These datasets, rich in visual and textual information, are fundamental to developing algorithms capable of understanding and interpreting images. They serve as the backbone for enhancing machine learning models, particularly those tasked with deciphering the complex interplay between visual elements in images and their corresponding textual descriptions. A significant challenge in this field is the need for large-scale, accurately annotated datasets. These are essential for training models but are often not publicly accessible, limiting the scope of research and development. The ImageNet and OpenImages datasets, containing human-annotated
Psychology for UX: Study GuideJan 17, 2024
Unsure where to start? Use this collection of links to our articles and videos to learn about some principles of human psychology and how they relate to UX design.
Why asking your customers what they want doesn't workJan 1, 2024
And how can you figure it out what they really need
19 Open Source Ecommerce PlatformsJan 1, 2024
Open-source platforms are flexible, composable, and highly customizable. Here's the all-new update to our longstanding list.
The New Moats. Why Systems of Intelligence™ are the… | by Jerry Chen | GreyDec 29, 2023
Why Systems of Intelligence™ are the Next Defensible Business Model
Planning poker - WikipediaOct 20, 2023
Planning poker, also called Scrum poker, is a consensus-based, gamified technique for estimating, mostly used for timeboxing in Agile principles. In planning poker, members of the group make estimates by playing numbered cards face-down to the table, instead of speaking them aloud. The cards are revealed, and the estimates are then discussed. By hiding the figures in this way, the group can avoid the cognitive bias of anchoring, where the first number spoken aloud sets a precedent for subsequent estimates.
Back to Basics: How to operate a successful private label brandOct 19, 2023
Proprietary items work best if retailers differentiate them through either cost or innovation and are thoughtful about choosing categories, experts say.
2,851 Miles // Bill Gurley (Transcript + Slides)Oct 17, 2023
Hey everyone! I’ve mostly started sharing my favorite memos and transcripts over at A Letter a Day, but as it’s more of a tasting menu, I’m reticent to post multiple memos or tran…
The SaaS Opportunity Of Unbundling ExcelOct 16, 2023
The unbundling of Excel is just as important as the unbundling of Craigslist. Here's what you need to know about the Excel Economy and how SaaS companies can take advantage of different verticals and use cases that Excel has dominated.
What is RGSP? Google’s Randomized Generalized Second-Price ad auctions explOct 15, 2023
A deep dive into why the DOJ thinks RGSP makes ad auctions unfair, and why Google believes it creates a better user experience.
What’s an Operational Definition Anyway?Oct 4, 2023
Two principles on collecting data, from the field of Statistical Process Control. As with most principles in SPC, this is both simpler and more important than you might think.
SaaS Competitive Advantage Through Elegant LLM Feedback MechanismsOct 4, 2023
Eliciting product feedback elegantly is a competitive advantage for LLM-software. Over the weekend, I queried Google’s Bard, & noticed the elegant feedback loop the product team has incorporated into their product. I asked Bard to compare the 3rd-row leg room of the leading 7-passenger SUVs. At the bottom of the post is a little G button, which double-checks the response using Google searches. I decided to click it. This is what I would be doing in any case ; spot-checking some of the results.
The Rise and Fall of ESPN’s LeverageSep 12, 2023
Charting ESPN’s rise, including how it build leverage over the cable TV providers, and its ongoing decline, caused by the Internet.
eBay rolls out a tool that generates product listings from photosSep 7, 2023
eBay's new generative AI tool, rolling out on iOS first, can write a product listing from a single photo -- or so the company claims.
How to Implement Hierarchical Clustering for Direct Marketing Campaigns— wiAug 28, 2023
Understand the ins and outs of hierarchical clustering, and how it applies to marketing campaign analysis in the banking industry.
Congrats on your Customer Lifetime Value prediction model — now what are yoAug 20, 2023
An obsessively detailed guide to Customer Lifetime Value techniques and real-world applications
Trader Joe's: The Anti-GrocerAug 20, 2023
The grocer created a cult brand with sales of $16B+ a year by doing the opposite of industry best-practices (from wages to product to ads).
Dynamic Pricing with Multi-Armed Bandit: Learning by Doing!Aug 19, 2023
Applying Reinforcement Learning strategies to real-world use cases, especially in dynamic pricing, can reveal many surprises
11 free tools for PPC campaign managementAug 14, 2023
These tools can help you analyze PPC competitors, track search trends or design ad creative – all without spending a dime.
Four Types of Ecommerce Merchandising That Business Owners Should KnowAug 6, 2023
By Sam Cortez, managing editor and outreach specialist for Scalefluence.comMerchandising is the process and practice of displaying and arranging products for the best customer experience. The concept of merchandising is based on guiding prospective customers through the buyer’s journey and presenting them with the right products, at the right time and place, in the right quantity, and with the best prices.
How to Compete with “Free” Products and ServicesAug 6, 2023
Companies make two key mistakes when they try to compete with a free entrant.
Platform Adjacency Theory - Infrequently NotedAug 6, 2023
Like other meta-platforms **the web thrives or declines to the extent it can accomplish the lion's share of the things we expect most computers to do**. Platform Adjacency Theory explains how to expand in a principled way and what we risk when natural expansion is prevented mechanisms that prevent effective competition.
List: Marketing Mix Modeling | Curated by Abhijeet Talaulikar | MediumJul 29, 2023
8 stories · A guide to building an end-to-end marketing mix optimization solution for your organization.
The secret economics of the Birkin bagJul 29, 2023
On a flight from Paris to London in 1983 Jane Birkin, an Anglo-French chanteuse and actress, spilled the contents of her overstuffed straw...
208. Ultimate Guide to PlatformsJul 24, 2023
Patterns and Practices in the Creation, Rise, and Fall of Platforms
Uplift Modeling — A Data Scientist’s Guide to Optimizing a Credit Card ReneJul 23, 2023
Applying causal machine learning to trim the campaign target audience
Why America’s Largest Tool Company Couldn’t Make a Wrench in America …Jul 23, 2023
archived 22 Jul 2023 03:08:13 UTC
What Do We Owe Our Teams?Jul 19, 2023
Many of my discussions with product leaders (CPOs, VPs and others who manage teams of product folks) are about the substance of product management: portfolios, competing stakeholders, pricing & packaging, tarot cards as a revenue forecasting model. Last week, though, in my product leadership workshop, we had an extended discussion about
It's Hard to Build a Durable Business Selling Durable GoodsJul 18, 2023
Plus! Wrappers and Layoffs; The Movies; Evaporating Sanctions; Bonds; Errors in Translation; Diff Jobs
Are you a “harbinger of failure”?Jul 16, 2023
An MIT study finds the same consumers tend to purchase failed products. Dubbed “harbingers of failure,” these buyers may provide new window into consumer behavior and behavioral economics.
Fast · Patrick CollisonJul 7, 2023
Lean CanvasJun 19, 2023
Lean Canvas is a 1-page business plan template created by Ash Maurya that helps you deconstruct your idea into its key assumptions.
You need to add some friction to your growth funnelJun 12, 2023
One of the biggest misconceptions when it comes to user experience is that we must eliminate as many questions and barriers as possible.
Using the Needs Stack for competitive strategyJun 5, 2023
This simple method positions your product to be more valuable, especially against competitors who aim to disrupt you, or you them.
Steve Jobs, Rick Rubin and "taste"May 28, 2023
The Apple co-founder and the super-producer share similar ideas regarding taste and creativity.
Use ‘Look Inside’ to Sell More ProductsMay 25, 2023
The benefits of Amazon's "Look inside" book label applies to many products. Apparel, bags, housewares, and more could experience more conversions with an inside peek.
How to Apologize to a Customer When Something Goes WrongMay 7, 2023
Businesses are bound to make mistakes and disappoint their customers. But how you build your apology message and your careful attention to executing it appropriately can make the difference between losing those customers or increasing their loyalty. When delivered well, your apology message can improve the customer relationship to the point where it is stronger than if the mistake had never happened — a phenomenon known as the service recovery paradox. In this article, the author outlines five steps for writing an effective apology message, and explains why it’s important to share the apology process internally and with external stakeholders. It not only shows vulnerability from the organization, but also shows other customers that the company can be relied upon in times of distress.
What is Cohort Analysis in Data ScienceMay 4, 2023
This article will take you through everything about Cohort Analysis that you should know. What is Cohort Analysis in Data Science?
Thrift shops thrive when disorder is balanced with high seller knowledgeMay 2, 2023
One person's trash may well be another's "come up," or what the rapper Macklemore calls hidden treasures in the song "Thrift Shop," but only if secondhand shoppers follow the rapper's lead and dig through ...
The Magic of Knowing When to Use Concrete vs. Abstract Language - By Jonah Berger - Behavioral ScientistApr 25, 2023
When trying to make language either more concrete or more abstract, one helpful approach is to focus on either the how or the why.
Five Powerful Prioritization Techniques from Product ManagementApr 9, 2023
How Data Scientists can learn from how a Product Manager prioritizes features and requirements to build a successful product.
10 open-source alternatives to run your businessesMar 29, 2023
By choosing open-source alternatives to commercial proprietary software, it not only save money but...
Here’s How Tool Companies Charge Vastly Different Prices for the Same ToolsMar 29, 2023
Sometimes there is a replacement for name brand tools. Knowing who makes what is the best way to save big when building your tool collection.
Telfar’s Dynamic Pricing Model Offers a New Way to Gauge Luxury Item DemandMar 28, 2023
Telfar has introduced a “Live Price” pricing model based on customer demand.
Shoppers say secondhand stores like Goodwill are getting too expensive as GMar 26, 2023
The US thrift market has grown substantially in recent years as thrifting has become a popular pursuit of Gen Z shoppers.
OpenAI turns ChatGPT into a platform overnight with addition of pluginsMar 24, 2023
OpenAI today announced its support of new third-party plugins for ChatGPT, and it already has Twitter buzzing about the company's potential platform play.
The Future of Ecommerce: How a Product Becomes a PurchaseMar 24, 2023
General Partner Connie Chan on how leading brands are using AI and other technology to combine the serendipitous discovery of offline shopping with the infinite options of online shopping. Today, most of the Western world revolves around search-based online commerce. This means that most shoppers type directly what they want into a store search bar,...
10 Best Practices for Ecommerce Checkout DesignMar 22, 2023
Optimizing your ecommerce checkout process is crucial to reduce cart abandonment rates, as it affects...
Matching and Information Design in MarketplacesMar 20, 2023
🤖 50+ Product Management Prompts for ChatGPT-4Mar 20, 2023
Quote "ChatGPT is like a genie in a bottle, but instead of granting you three wishes, it gives you endless responses until you realize you've been chatting with a machine for hours." 😂
Uplift Modeling with Cost OptimizationMar 19, 2023
How to adjust CATE to consider costs associated with your treatments
Two design rules that make products win. - by Thomas DrachMar 19, 2023
The secrets of Zoom, Amazon, and Apple products.
Sponsorship Definition & Meaning | Dictionary.comMar 19, 2023
The world's leading online dictionary: English definitions, synonyms, word origins, example sentences, word games, and more. A trusted authority for 25+ years!
Meet the 16 members of the EDA Alliance underpinning TSMC dominanceMar 13, 2023
Kuo-Hua Chou, special to DIGITIMES Asia
How One Guy’s Car Blog Became a $1 Billion MarketplaceMar 12, 2023
It’s a place for obsessives to buy, sell and geek out over classic cars. The company pops open its hood after 100,000 auctions to explain why.
WTF is Marketplace Liquidity?Mar 12, 2023
Methodologies for understanding and measuring marketplace liquidity
How 20 years of Google’s AdSense changed the internetMar 10, 2023
Google's targeted ad initiative AdSense was initially launched as “content targeting advertising” 20 years ago this month. Here’s how it changed the internet.
Target Just Announced Something Brilliant That Amazon Can't Compete WithMar 10, 2023
Make it easy for your customers to do business with you.
21 Product Management Frameworks - ProductfolioFeb 26, 2023
21 Product Management Frameworks Effective product management is critical to the success of any product development process. It helps to ensure that everything to be done matches the needs or pain points of customers and
Tools to Create, Optimize Meta DescriptionsFeb 16, 2023
Meta descriptions do not influence organic rankings. But the descriptions appear in search snippets more often than not and thus impact clicks on organic listings.
Advanced image SEO: A secret manualFeb 7, 2023
Learn how search engines process images and key image SEO tactics to implement from this comprehensive overview.
How to create a product roadmap using the PriX methodJan 31, 2023
If you got to here, it means your project is moving forwards. That is great! As you probably know, organisation is vital in mobile apps development. That is why the development process includes important tools and concepts, such as roadmaps and prioritisation, that help developers build valuable pro
Retool’s Path to Product-Market Fit — Lessons for Getting to 100 Happy CustJan 26, 2023
In our "Paths to Product-Market Fit," Retool founder and CEO David Hsu sits down with First Round partner Todd Jackson to share how the internal tools company hypothesized, tested and iterated its way to 100 happy customers
25 A/B Testing Concepts — Interview Cheat SheetJan 26, 2023
Questions on A/B testing are being increasingly asked in interviews but reliable resources to prepare for these are still far and few…
Who Sets the Prices?Jan 26, 2023
The legal decision that fostered the idea of the manufacturer’s suggested retail price, and why it still sticks around even though that decision was overturned.
?? Why billing systems are a nightmare for engineersJan 26, 2023
This article was initially published on Lago's blog, an open-source billing API, and was ranked #1 on...
What Does Product-Market Fit Feel Like?Jan 24, 2023
3 Flaws of Cost-plus Pricing - Practical EcommerceJan 22, 2023
Cost-plus pricing on the surface seems straightforward. But then market forces intervene.
The platform and the curatorJan 13, 2023
Who has their hand on the dial? Talk with someone who works at Apple, Amazon, Google, Linkedin, Facebook, etc, and they’ll be happy to give you tips on how to work the platform to your advant…
The PRD Isn’t Dead: New Best Practices for Digital Product DevelopmentJan 12, 2023
Reap the benefits of an optimized product requirements document.
Hacker NewsJan 7, 2023
Data on correlated products and sellers helps improve demand forecasting -Dec 28, 2022
Graph-based models capture correlations efficiently enough to enable machine learning at scale.
mgp/book-notes: Notes from books and other interesting things that I've reaDec 22, 2022
Notes from books and other interesting things that I've read. Table of contents at the end 👇 - mgp/book-notes
The 7 Powers Known to Tesla, Pixar, Netflix, Apple & TwilioDec 13, 2022
There is a fallacy in believing your current performance is indicative of future success: Performance is a trailing indicator. Power is a leading one.
Writing Good RequirementsDec 11, 2022
Requirements Experts is known for being the leading resource for requirements methodologies, training, tools, and templates
GitHub - kuchin/awesome-cto: A curated and opinionated list of resources foDec 10, 2022
A curated and opinionated list of resources for Chief Technology Officers, with the emphasis on startups - kuchin/awesome-cto
Why you should start a companyDec 9, 2022
Few things are more liberating or intoxicating than controlling your own fate.
The Uses of FrictionDec 6, 2022
Plus! Market-Making; Poaching and Equity Currency; China's Covid Economy; The Cost of AI; Friendshoring; Diff Jobs
How can you tell if the company you’re interviewing with is rotten on the inside?Dec 4, 2022
How can you tell the companies who are earnestly trying to improve apart from the ones who sound all polished and healthy from the outside, whilst rotting on the inside? This seems to be on a lot o…
Basically everything on Amazon has become an adNov 15, 2022
Inside the under-the-radar business that makes more money than Amazon Prime.
13 Easy-to-use CRMsNov 8, 2022
A customer relationship management tool can help a business grow and scale at an affordable price. Here is a list of simple CRMs for businesses of all sizes.
Psychological profiling for content creation: A deep diveNov 6, 2022
Having a psychological approach to creating content helps you craft more effective messages to the right audience.
The Art of Profitability by Adrian SlywotzkyNov 5, 2022
This is a book summary of The Art of Profitability by Adrian Slywotzky. Read The Art of Profitability summary to review key ideas and lessons from the book.
prodmgmt-art-of-profitability-booknotes.mdNov 5, 2022
prodmgmt-art-of-profitability-booknotes.md · GitHub
How brands get their names, explained by a professional namerOct 30, 2022
A professional explains why brand names have gotten weirder.
A Complete Taxonomy of Internet Chum - The AwlOct 29, 2022
by John MahoneyThis is a bucket of chum. Chum is decomposing fish matter that elicits a purely neurological brain stem response in its target consumer: larger fish, like sharks. It signals that they should let go, deploy their nictitating ...
How Steve Jobs Fleeced Carly FiorinaOct 24, 2022
The former HP CEO boasted of her friendship with Apple’s leader — but he took her to the cleaners with the iPod
Pollen’s enormous debt left behind: exclusive detailsOct 22, 2022
Two months after the startup went bankrupt, administrators have summarized the $80M+ debt the company has accumulated, most of which will not be paid. The highest offer to buy Pollen’s business assets - but without its liabilities - currently stands at only $250K. Details.
Turning non-tradables into tradablesOct 17, 2022
Plus! Grills, Ads, Pricing, Drops, Movies, Diff Jobs
GoodwillFinds.com gives shoppers more reasons to feel good about buying secOct 5, 2022
A new recommerce venture offers all of the benefits of buying second hand plus a means to help fund social service programs in local communities, such as job training and youth mentorship. Do you see retailers trying to raise the visibility of their secondhand offerings in light of rising prices?
Why Everyone—From Mechanics to Crust Punks—Wears DickiesOct 4, 2022
The Fort Worth apparel company celebrates a century as a blank cultural canvas.
How one of America’s last piano manufacturers stays aliveOct 2, 2022
Piano-building was once one of the country’s largest industries. Today, only two companies remain in business.
How Product Strategy Fails in the Real World — What to Avoid When BuildingOct 1, 2022
Why does strategy tend to stall when the rubber hits the road? Nate Stewart, Chief Product Officer of Cockroach Labs, shares an essential guide for creating a resilient strategy that’s still standing next year.
7 Lessons on Dynamic Pricing (Courtesy of Bruce Springsteen)Oct 1, 2022
Some fans were outraged when man-of-the-people Bruce Springsteen charged more than $5,000 per seat for his upcoming concert. The high prices were the result of a dynamic pricing system, in which prices are adjusted upward in response to strong demand. This controversy illustrates seven lessons that managers should keep in mind when adjusting prices, including the need for clear communications, longtime customers’ expectation that they deserve a discount, and the fact that high prices will raise expectations about quality and service.
The Disappearing Art Of Maintenance | NOEMAOct 1, 2022
The noble but undervalued craft of maintenance could help preserve modernity’s finest achievements, from public transit systems to power grids, and serve as a useful framework for addressing climate change and other pressing planetary constraints.
Pricing Novel GoodsSep 25, 2022
Steve Blank Mapping the Unknown – The Ten Steps to Map Any IndustrySep 24, 2022
A journey of a thousand miles begins with a single step Lǎozi 老子 I just had lunch with Shenwei, one of my ex-students who had just taken a job in a mid-sized consulting firm. After a bit of catch…
Be critical or be corruptedSep 24, 2022
I recently rewatched "The Wire". The show's central theme is about counter-productive metrics and their corrupting influence on institutions. I've noticed hints of this pattern in software engineering, too
Pay Attention to Deviations from Mainstream IncentivesSep 19, 2022
The second part of a three part piece on incentives. It turns out that if you've grokked the primary incentives of an industry, you can do one other thing: identify aberrations, and use that as a guide to dig further.
Subscriptions are out, refills are in.Sep 18, 2022
Everything these days is a subscription. And honestly, on reflection, subscriptions are complete horseshit.
A Taxonomy of DrawdownsSep 15, 2022
Plus! Watercooler Shows; Smart Thermostats; Substitutes and Complements; Monetization; Apple Ads; Diff Jobs
Design System Glossary – 34 Powerful Terms You Should KnowSep 14, 2022
What is pattern library, UI kit, and brand voice? Learn all the terms that you need to build and use a long-lasting design system.
Why Fast Food Is Racing to Ditch the Dining RoomSep 14, 2022
America traded eating out for ordering ahead during the pandemic—and chains noticed.
Multi-Objective Ranking for Promoted Auction ItemsSep 13, 2022
Determining which promoted auction items to display in a merchandising placement is a multi-sided customer challenge that presents opportunities to both surface amazing auction inventory to buyers and help sellers boost visibility on their auction listings.
SaaS spend ratios on R&D/S&M/G&ASep 12, 2022
How Automation is Changing Freight Bill of Lading Data EntrySep 11, 2022
Automating a bill of landing is like automating any other process in your system. It will save you money and time.
PPC management for e-commerce: 28 tools to exploreSep 10, 2022
Software and tools not only help you manage your time better but provide helpful insights that you wouldn't otherwise see in a Google or Facebook interface.
Why public chats are better than direct messagesSep 10, 2022
How we communicate makes an enormous impact on our work. One of the best strategies for improving communication in a team is making it open
Customer experience and product are equally important: SaaS lessons learnedSep 10, 2022
CX trends will continue to influence B2B software as the importance of leading with experience and product becomes more critical for success.
Putting Amazon’s PR/FAQ to PracticeSep 8, 2022
What it's like putting Amazon's famed Working Backwards process to practice in a small company context, and what was surprising and difficult about it.
[OC] The Most Watched Netflix ShowsSep 5, 2022
33K votes, 2.3K comments. 21M subscribers in the dataisbeautiful community. DataIsBeautiful is for visualizations that effectively convey…
How data can reveal weaknesses in your customer onboarding processSep 5, 2022
Customer retention begins at onboarding, so use these metrics to help you track the success of your customer onboarding processes.
Find The Fast Moving WaterSep 5, 2022
We work with our NFX Guild on this mental model for greatness from day 1. Now, we are sharing it with the rest of the startup community.
The Anatomy of an Amazon 6-pagerSep 3, 2022
A deep dive into writing detailed planning docs from one of the most successful companies in the world
Why Do So Many Zippers Say YKK?Sep 1, 2022
The zipper is one of those inventions—along with the bicycle—that seems as though it should have occurred much earlier in history. How complicated...
Types Of Barcodes - 1D & 2D - Scanbot SDKAug 25, 2022
An essential overview on the most-used barcode types. 1D- and 2D-barcodes for retail, logistics, ticketing and more. ➜ Learn more now.
Salvage stores achieve sales growth by selling ‘unsellable’ goodsAug 24, 2022
In an inflationary era when customers are increasingly strapped for cash and hunting for discounts, a category of ultra-low-priced grocers that sell the unsellable is growing in popularity. Do you expect mainstream grocers to change their protocols for "unsellable" CPG items if inflation persists?
7 useful Excel formulas and functions for PPCAug 24, 2022
Use these tips to quickly analyze performance data and identify high-impact PPC optimizations that will move the needle.
Inventing DemandAug 22, 2022
Plus! BNPL; Coopetition; Marketplaces and Ads; Last Mile, Last Users; Value and Rates; Diff Jobs
Elided Branches: The Product Culture ShiftAug 22, 2022
Technology, startups, programming, technical management and software architecture
An Old-Fashioned Economic Tool Can Tame Pricing Algorithms - Scientific AmeAug 22, 2022
Left unchecked, pricing algorithms might unintentionally discriminate and collude to fix prices
Pipeline Analysis PlaybookAug 19, 2022
In many board rooms, the most important go-to-market number this quarter is pipeline health. For some companies, the pipeline may be less clear than a quarter or two ago. Summer seasonality may play a role. Macroeconomics might also be lurking within the numbers. Pipeline fluctuations are normal. But any meaningful & unexpected surprise warrants introspection. Pipeline analysis often has four parts: Craft the sales sandwich to predict your GTM conversion rates & determine if close rates have changed in parallel.
The two types of quality // Zeno RochaAug 17, 2022
The Japanese define quality in two ways — atarimae hinshitsu and miryokuteki hinshitsu. Understanding the difference between them is the key to building products that users love.
Elevate Your E-commerce Journey With Animated UX MicrointeractionsAug 17, 2022
Microinteraction best practices that improve e-commerce UX.
How to design a referral programAug 17, 2022
Acceptance Criteria vs Requirements: Definition and Examples | ProjectPractical.comAug 15, 2022
When you’re defining your software or new product’s requirements, a set of criteria come into play. Acceptance criteria are one part of those criteria that are either agreed upon or come out of client/customer discussions. Unlike requirements, acceptance criteria define what must happen when a decision point such as an objective has been met. Acceptance ... Read more
The Key to Successful Innovation? Progress Over ProductAug 14, 2022
Tap into people's unspoken needs to create breakthrough innovations.
The hidden makers of Costco’s Kirkland Signature and Trader Joe’s O’s | CNN BusinessAug 14, 2022
Store brands are shrouded in secrecy. Who makes them?
The Very Sincere Economics of Greeting CardsAug 12, 2022
Believe it or not, the biggest demographic driving the greeting card industry is millennials.
Bricked Epson Printers Make a Strong Case For User Repairability - SlashdotAug 11, 2022
Epson has gained some scrutiny in recent weeks after the company disabled a printer that was otherwise working fine, leading to accusations of planned obsolescence. Epson knows its printers will stop working without simple maintenance at a predictable point in the future, and it knows that it won't ...
5 Amazon product listing optimization must-havesAug 5, 2022
Amazon will continue to be highly competitive. Want to be successful? Optimize your product listings to the fullest with these tips.
Opportunity Solution TreeJul 31, 2022
What is an Opportunity Solution Tree? Learn more about opportunity solution trees and the 4 steps involved in creating them.
Test Your Product On A Crappy Laptop | CSS-TricksJul 29, 2022
There is a huge and ever-widening gap between the devices we use to make the web and the devices most people use to consume it. It’s also no secret
The value of not flyingJul 28, 2022
Why might people decline an offer of up to $10,000 just to keep their feet on the ground?
Overexposed: A History of FotomatJul 28, 2022
The tiny photo processing kiosks could be found everywhere in the 1970s and 1980s. And that was the problem.
Two-Sided Networks in Healthcare, a Founder’s PlaybookJul 27, 2022
The most significant bottleneck in the adoption of healthcare technology to date has been distribution. Over the last decade, generations of digital health companies have struggled to reach escape velocity—not because their products and services weren’t transformative, but because they failed to find an executable path for sustainable distribution and value capture. Some of that...
How to Structure Your Sales Compensation Plan to Deliberately Undersell by @ttunguzJul 27, 2022
In Deliberately Underselling as Sales Strategy, I wrote about the importance of sizing contracts below customer needs to ensure customer success. “A key part of the formula: crafting the right account executive compensation structure to reward this strategy.” I received a pile of questions asking for more detail. Since then, I’ve spoken to many sales leaders & Lee Kirkpatrick who originally surfaced the concept during Office Hours on how to do this well.
5 tips for writing amazingly jargon-free product copyJul 22, 2022
These five tactics will help simplify and clarify your technical copy.
How Paper Catalogs Remain Relevant in a Digital AgeJul 19, 2022
Whether or not you should pursue a catalog strategy is a question that deserves significant thought. As digital marketing becomes more complex, it may make a lot of sense to send out correctly designed catalogs to the right customers. For e-commerce retailers without physical stores, catalogs can effectively mimic stores’ sensory experiences to enhance customer affinity. For multichannel retailers, by understanding the channel preferences of current customers through transactional data, multichannel retailers can add an effective catalog marketing channel to their store and e-commerce channel strategies.
IndexJul 19, 2022
Sundown products need love too 69ed2136fd36Jul 19, 2022
The 11 Risks VCs Evaluate by @ttunguzJul 19, 2022
Though the industry is called venture capital, the goal of a VC isn’t to maximize every risk. Instead, we try to understand all the risks a business might face and weigh those risks with the reward - the exit. Here are the major risks that I typically review when a startup pitches. Market timing risk - Is now the right time for the business? It’s often hard to evaluate this risk, but nevertheless, it’s an important consideration.
Running Marketing Experiments with PurposeJul 19, 2022
Over the past few years, marketing on the web has become way too much fun. I remember trying to figure out what “hits” on awstats [http://awstats.sourceforge.net/] meant in high school, and I distinctly can recall how disappointed I was when I found out the true meaning. Nowadays,
Why You Can't Settle For The "Minimum" In Your Minimum Viable ProductJul 19, 2022
Many startups scramble to create a "minimum viable product," or MVP, to get a version of their product to market quickly for testing. It’s a great way to cost-effectively test a website or app with real users. But be careful, if your MVP is too minimalist, it could torpedo your company's future.
A New Approach to Feature RequestsJul 19, 2022
A few months ago, I got this email from a customer: It would be wonderful if there was a way to tag/assign forwarded emails to specific task lists within client projects. The “email forwards” secti…
How Two Companies Hooked Customers On Products They Rarely UseJul 19, 2022
Not every business needs to have habit-forming products. Here's how two companies hooked customers and formed habits with products they rarely used.
Elon Musk’s Genius: Understanding the Cost of a Screw and the Value of a Photo by @ttunguzJul 19, 2022
 programs is like speaking out against motherhood and apple pie. The last time I criticized VOC programs, someone left a comment chastising me for presuming that a bank could know what its customers wanted without asking them.
Marketing StacksJul 19, 2022
One of my favorite things about Ruby on Rails is that it’s a very opinionated framework. It makes key decisions up and down the technology stack so that I don’t have to. As DHH puts it, Rails is omakase: A team of chefs picked out the ingredients, designed
Jobs To Be Done: A BoS Playlist – Business of SoftwareJul 19, 2022
Get 3 talks to help you understand how to use Jobs To Be Done in your business.
Cost Per Reasonable Decision (CPRD)Jul 19, 2022
Note: With the arrival of my son, I’m slowing down on the blogging. Give me a couple months (or more sleepless nights), and I’ll be back…
Piracy Doubled My App SalesJul 19, 2022
Test your startup idea!Jul 19, 2022
Hubstaff founder Dave Nevogt shares how to test your startup idea by analyzing model, market and concept.
Product Management Is a Company, Not a DepartmentJul 19, 2022
Do you rely too heavily on product management to ensure your product is successful? Joe Kinsella explores the importance of everyone in a startup being in PM.
Inner Workings of Product Management at Product Led Growth Companies - OpenViewJul 19, 2022
Product is at the epicenter of everything a product led growth (PLG) company does. So how does the product organization and its PMs need to adapt? Find out here.
Ask a Repair Shop - Philip YurchukJul 19, 2022
This is the story of how you’re buying your enterprise software the wrong way. Probably your appliances, too. This is an excerpt from my guide, “Enterprise Software Confidential.” This post is also available in Chinese thanks to Xu Zhi. Some years ago, I had a broken GE washer. Pretty sure I knew the culprit, but if […]
The right type of customer conversationsJul 19, 2022
Conversations with customers are valuable, but they have to be the right type of conversations – not merely questions about forgotten passwords and the like. They have to add value, for you, and them.
Product strategy means saying noJul 19, 2022
If you're building a product, you have to be great at saying No. Not 'maybe' or 'later'. The only word is No. Building a great product isn't about creating tons of tactically useful features which are tangentially related. It's about delivering a cohesive product with well defined parameters.
Amazon’s Friction-Killing Tactics To Make Products More SeamlessJul 19, 2022
Amazon director Kintan Brahmbhatt, who's helped develop and refine the product strategy behind the Alexa and Amazon Music, explains the ways in which friction can live in your product, throwing roadblocks in a user's path to becoming a customer. He explains how to uncover counterintuitive insights that can pinpoint friction points, and spells out the three-step process for eliminating them.
Steve Blank A New Way to Look at CompetitorsJul 19, 2022
Every startup I see invariably puts up a competitive analysis slide that plots performance on a X/Y graph with their company in the top right. The slide is a holdover from when existing companies l…
Six Lessons from Six Months at ShopifyJul 19, 2022
I’m now six months into Shopify. So far it’s going basically on schedule: as I was told, “Your first couple months you’re going to have zero idea what’s going on. Then around month three you’ll com…
Decentralized Reputation in OpenBazaar | by OpenBazaar | OB1 — Trade Free |Jul 19, 2022
Decentralized reputation is one of the most sought after prizes in the cypherpunk community: to invent a censorship-resistant protocol to make and parse unforgeable trust relationships between…
3 Strategies To Building a Marketplace Startup | SaaS AcademyJul 18, 2022
Building a two-sided market is probably the hardest thing you can build as an entrepreneur. It's so hard that a few weeks ago, I organized a Marketplace
An Enterprise PrimerJul 18, 2022
So perhaps you’re burned out in the consumer software game, or are just considering a pivot into the enterprise (“B2B”) market. You’ve heard that there’s a lot of opportunity in “selling to enterpr…
The short head, the long tail and buying expensive scaffoldingJul 18, 2022
Hits are more valuable than ever, mostly because they're more rare than ever. The Zipf Distribution, also described in Chris Anderson's Long Tail, helps us understand just how valuable hi…
Neil Patel's Digital Marketing BlogJul 18, 2022
Your #1 resource for digital marketing tips, trends, and strategy to help you build a successful online business.
Clay Christensen’s Milkshake MarketingJul 18, 2022
Many new products fail because their creators use an ineffective market segmentation mechanism, according to HBS professor Clayton Christensen. It's time for companies to look at products the way customers do: as a way to get a job done.
Why We’re Dropping Freemium as a Business Model: Value vs. Cost - Blog | evercontactJul 18, 2022
This past week our Community / Growth Manager, Brad Patterson, spoke at the European Cloud Expo in London on the topic Try Before You Buy – Successes and Misgivings in the European Cloud Ecosystem. Also speaking were Jason Turner, director of Business development at Cedexis, António Ferreira, CEO at Luna Cloud, Lee […]
Product Leaders: User Acquisition SeriesJul 18, 2022
I can be pedantic about user acquisition. The truth is that consumer web and mobile applications are under increasing pressure to demonstrate explosive exponential traction. Building a great prod…
How to use 12 micro intents for SEO and content journey mappingJul 18, 2022
Analyzing the SERPs for these micro intents will help you create the right content that a searcher will want to find.
How to Price Shipping and Handling FeesJul 18, 2022
Today's consumers expect free shipping for most items. But it's not always obvious for merchants to know when and how to offer it. Here's our all-new update for analyzing shipping costs and free delivery.
Nobody likes self-checkout. Here’s why it’s everywhere | CNN BusinessJul 18, 2022
Why has this problematic, unloved technology taken over retail?
UserTesting BlogJul 18, 2022
Get the best insights into the latest trends and all things human insight, CX, UX , product, marketing and research on our blog.
Products Over ProjectsJul 18, 2022
Projects are a popular way of organizing software efforts, but long-running product teams are often superior
Signaling as a ServiceJul 18, 2022
01 Intro One of the best books I have read in the last few years is The Elephant in the Brain by Robin Hanson and Kevin Simler. The book makes two main arguments: a) Most of our everyday actions can be traced back to some form of signaling or status seeking b) Our brains deliberately hi
Consumers Are Becoming Wise to Your Nudge - Behavioral ScientistJul 18, 2022
New research indicates that consumers are catching on and may be annoyed by certain nudges, potentially limiting their effectiveness.
How to Make Your Product Scientifically Irresistible | Gainsight SoftwareJul 18, 2022
Your product can’t suck. That’s a given. But it’s also not enough to be a good product that doesn’t hook your customer and connect to their pain points.
David Nicholas WilliamsJul 18, 2022
Obviously Awesome: a product positioning exercise | HackerNoonJul 18, 2022
Scroll down for a template — but I recommend you read the post before you try to use it.
What It Takes to Become a Great Product ManagerJul 18, 2022
For an aspiring product manager (PM), there are three primary considerations when evaluating the role: core competencies, emotional intelligence (EQ), and company fit. The best PMs have mastered the core competencies, have a high EQ, and work for the right company for them. The last requires thinking about the level of technical skill the company requires, its philosophy of the PM role, the stage of the company, and the relationship you’ll have with senior management.
How to Build an Amazon Affiliate Website - 2024 Guide - Make A Website HubJul 18, 2022
When it comes to making money online you’re going to have a lot of options at your disposal. Frankly, it can be quite overwhelming just choosing an online
The 30 Elements of Consumer Value: A HierarchyJul 18, 2022
What consumers truly value can be difficult to pin down and psychologically complicated. But universal building blocks of value do exist, creating opportunities for companies to improve their performance in existing markets or break into new markets. In the right combinations, the authors’ analysis shows, those elements will pay off in stronger customer loyalty, greater consumer willingness to try a particular brand, and sustained revenue growth. Three decades of experience doing consumer research and observation for corporate clients led the authors—all with Bain & Company—to identify 30 “elements of value.” Their model traces its conceptual roots to Abraham Maslow’s “hierarchy of needs” and extends his insights by focusing on people as consumers: describing their behavior around products and services. They arrange the elements in a pyramid according to four kinds of needs, with “functional” at the bottom, followed by “emotional,” “life changing,” and then “social impact” at the peak. The authors provide real-world examples to demonstrate how companies have used the elements to grow revenue, refine product design to better meet customers’ needs, identify where customers perceive strengths and weaknesses, and cross-sell services.
Pricing psychologyJul 18, 2022
Two Powerful Mental Models: Network Effects and Critical Mass | Andreessen HorowitzJul 18, 2022
This post is all about network effects and critical mass. But it’s also about applying those concepts as important mental models in business, so I will share a short story about a business decision I once made that required me to consider network effects. The Internet bubble had popped by 2002, and a lot...
Price Increase By Any Other NameJul 18, 2022
Increasing price is not easyIt requires careful review of customers you want to serve, their needs and alternatives available to them. Increasing price of an extremely popular product is even harde…
I spent $6 Million On Google Ads Last YearJul 18, 2022
I spent a lot of money on Google ads last year across Search, Display, Youtube, Discovery, and Gmail. Here's what I learned.
Human Curation Is BackJul 18, 2022
The limitations of algorithmic curation of news and culture has prompted a return to the use of actual humans to select, edit, and explain. Who knows, this might spread to another less traditional…
Advanced list buildingJul 18, 2022
Your Traffic Sources Have a Half-Life - Rob Walling - Serial EntrepreneurJul 18, 2022
Rob Walling looks at how traffic sources have a half-life, and that recognizing this is a key to successful startup marketing.
The 7 marketplace design patternsJul 18, 2022
The rise of on-demand marketplaces has brought with it varied business models, across number of industries. This framework tries to explain how a marketplace’s vertical impacts its business m…
A Recipe for Growth: Adding Layers to the Cake | Andreessen HorowitzJul 18, 2022
Adding new layers of complementary businesses on top of your core product can fight the “gravity effect” of scaling and boost long-term growth.
The 3 Competitive Defenses of Enduring SaaS Companies by @ttunguzJul 18, 2022
A technology advantage isn’t enough to build an enduring enterprise SaaS company because at the core, all SaaS software share the same architecture. A relational database stores data and a web site presents the data. This is true for CRM (Salesforce), marketing automation (Marketo), email (Exchange), content management systems (Sharepoint) and so on. Because SaaS apps use standard databases, engineers can easily transfer the data from one database to another. I’m greatly simplifying here because differences in architecture may exist, but in principle it’s simple to extract, transform and load data from one relational database into another.
How Pricing Bots Could Form Cartels and Make Things More ExpensiveJul 18, 2022
Antitrust law will have to evolve to cope.
10 marketplace monetisation strategiesJul 18, 2022
This post is meant to list and briefly explain the successful marketplace monetisation strategies we have seen across our portfolio and…
Customers Don't Know What They Want—Until They See ItJul 18, 2022
This copy is for your personal, non-commercial use only. Distribution and use of this material are governed by
our Subscriber Agreement and by copyright law. For non-personal use or to order multiple copies, please contact
Dow Jones Reprints at 1-800-843-0008 or visit www.djreprints.com.
Why Platform Disruption Is So Much Bigger than Product DisruptionJul 18, 2022
New products change what we buy, but new platforms have much broader effects.
How Our Brain Determines if the Product is Worth the PriceJul 18, 2022
Are consumers more likely to buy if they see the price before the product, or vice versa? Uma Karmarkar and colleagues scan the brains of shoppers to find out.
Feature vs ProductJul 18, 2022
When you understand the difference between a feature and a product, designing that successful product will be easier.
Positional ScarcityJul 18, 2022
Each day on Tech Twitter, we get up in the morning, open up the website, and then go see what it is we’re mad about. A few days ago, it was this: The concept of “pay to get a better place in l…
Pay What You Want: The Ultimate Sales StrategyJul 18, 2022
How Letting People Choose Their Price Can Make You a Millionaire
Product Pricing PrimerJul 18, 2022
The Sharp Startup: When PayPal Found Product-Market FitJul 18, 2022
Reflections on the 20th anniversary of a $100+ billion product
The Ultimate Guide to Minimum Viable Products - Startup GrowthJul 18, 2022
You don’t want to waste your time and money building a product no one will want to use or pay for. So, first get out of the building and talk to your customers. But there’s a world of difference between talk and action. What your customers say, and what they eventually do. Talking, and putting the […]
Making Good Decisions as a Product ManagerJul 18, 2022
While product managers may not build the actual product, they do produce something very tangible for a team: decisions.
Decentralized Reputation in OpenBazaar — Part 1Jul 18, 2022
Decentralized reputation is one of the most sought after prizes in the cypherpunk community: to invent a censorship-resistant protocol to create and parse unforgeable trust relationships between…
Pricing Experiments You Might Not Know, But Can Learn FromJul 18, 2022
Pricing is hard. Make it too low and you miss out on profit; too high and you miss out on sales. These pricing experiments will help you get it right.
Neil Patel's Digital Marketing BlogJul 18, 2022
Your #1 resource for digital marketing tips, trends, and strategy to help you build a successful online business.
‘Give Away Your Legos’ and Other Commandments for Scaling StartupsJul 18, 2022
Molly Graham helped forge a work culture at Facebook that's withstood huge amounts of growth. Today, she's something of a rapid scaling expert. Here's the key to doing it right, she says.
How To Price Your Hardware ProductJul 18, 2022
This post originally appeared on Hackthings.com So you have a hardware product in the works? Before you can launch it, one of the most important things you need to figure out is pricing. Unlike software, you can’t AB test your pricing and change it for different customers, which means your product has one price and …
Jonah Berger’s 75 Examples Of Infectious MarketingJul 18, 2022
Make your brand messages viral with the 6 STEPPS from Jonah Berger's Contagious, including 75 real-life marketing examples to learn from.
http://platformed.info/how-to-get-startup-ideas/Jul 18, 2022
The Surprising Upside of Expensive Products That Don’t SellJul 18, 2022
Many businesses are managing a sharp decline in sales during the ongoing coronavirus crisis. An instinctive reaction may be to cut low-performing products from their menu of offerings — but this isn’t always the best way forward. The authors lay out a case for adding an ultra-expensive product to their portfolio. There are five reasons to do it: To increase sales across other products; to communicate expertise; to convey prestige; to garner publicity; and to move upmarket.
Why Uber FightsJul 18, 2022
Ride-sharing is a winner-take-all market that depends on controlling demand more than it does supply.
The Risks of Changing Your Prices Too OftenJul 18, 2022
Technology has made it easier, but strategic rules still apply.
It's OK To Ask "Would You Use This" in Customer DiscoveryJul 18, 2022
It's OK to ask a B2B prospect if they would use your product during customer discovery. Just don't to stop at "Yes" and assume validation or a likely sale.
Neil Patel's Digital Marketing BlogJul 18, 2022
Your #1 resource for digital marketing tips, trends, and strategy to help you build a successful online business.
How repositioning a product allows you to 8x its priceJul 18, 2022
You can charge much more than you think, if you reposition your value-proposition. Here's how.
Everything We Know About Platforms We Learned from Medieval FranceJul 18, 2022
Raise a glass of bubbly to the count of Champagne.
Price Unbundling Vs. Product UnbundlingJul 18, 2022
We are all too familiar with price unbundling. Remember the first time Airlines charged for checkin bags? Or a restaurant charged for salad dressing? The simple recipe for price unbundling is to s…
Everything Must Go: A Strategy for Store LiquidationJul 18, 2022
Closing stores requires a deliberate, systematic approach to price markdowns and inventory transfers. The result, say Ananth Raman and Nathan Craig, is significant value for the retailer and new opportunities for others.
User Acquisition: The Five Sources of TrafficJul 18, 2022
This is the first post in a three post series on user acquisition. The topic of this blog post may seem simplistic to those of you who have been in the trenches, working hard to grow visits and vis…
Moneyball for engineers: What the semiconductor industry can learn from sportsJul 18, 2022
R&D leaders can boost productivity by using advanced analytics to create stronger, faster engineering teams.
20 Product Prioritization Techniques: A Map and Guided Tour | Folding BurritosJul 18, 2022
An in-depth overview of 20 product prioritization techniques and a periodic table to make sense of them all.
Steve Blank How to Be Smarter than Your Investors – Continuous Customer DiscoveryJul 18, 2022
Teams that build continuous customer discovery into their DNA will become smarter than their investors, and build more successful companies. — Awhile back I blogged about Ashwin, one of my ex…
Three Elements of a Successful Platform StrategyJul 18, 2022
Building a better mousetrap isn’t enough.
The Power of Data Network EffectsJul 18, 2022
In the furiously competitive world of tech startups, where good entrepreneurs tend to think of comparable ideas around the same time and "hot spaces" get crowded quickly with well-funded hopefuls, competitive moats matter more than ever. Ideally, as your startup scales, you want to not only be able
Top Two Reasons for Churn - For EntrepreneursJul 18, 2022
In working with a number of SaaS portfolio companies, I have found that there are two causes of churn that occur more frequently than any others. They are: Failure to successfully onboard the customer Loss of the champion who drove the purchase Looking at these in order: Failure to successfully onboard It’s easy to understand […]
57 startup lessonsJul 18, 2022
There are already very good lists of startup lessons written by really talented, experienced people (here and here). I’d like to add another one. I learned these lessons the hard way in the past four years. If you’re starting a company, I hope you have an easier path.
9 Ways to Build Virality into your ProductJul 18, 2022
If your startup is building a consumer product, your product has to be viral. For consumer products, the average revenue per user tends to…
The Art of Decision Making as a Product ManagerJul 18, 2022
Product managers have to make many decisions every day, including product prioritization decisions, product design decisions, bug triage decisions, and many more. And the process by which a product
A Quick Guide to Value-Based PricingJul 18, 2022
Reviewing how to calculate it and dispelling misconceptions.
If You Want to Raise Prices, Tell a Better StoryJul 18, 2022
In a world of abundance, an authentic, meaning-rich story can drive a company’s margins up.
Starting a Physical Product Company? You’re Gonna Need a Lawyer.Jul 18, 2022
My name is Molson Hart. I’m the CEO of a consumer products company I founded 10 years ago, called Viahart. We design and distribute toys…
How Do Dollar Stores Make Money?Jul 18, 2022
In good times and bad, dollar stores seem to thrive. But how are they are able to make so much money selling things so cheaply?
Growth Hacking: 100 Hacks, Strategies & Techniques - Wishpond BlogJul 18, 2022
Try these 100 growth hacking strategies and techniques to grow your business with minimal investment or effort.
What’s Next for Marketplace Startups? | Andreessen HorowitzJul 18, 2022
Goods versus Services: The next trillion dollar opportunity Marketplace startups have done incredibly well over the first few decades of the internet, reinventing the way we shop for goods, but less so for services. In this essay, we argue that a breakthrough is on its way: The first phase of the internet has been...
Neil Patel's Digital Marketing BlogJul 18, 2022
Your #1 resource for digital marketing tips, trends, and strategy to help you build a successful online business.
Are you outspoken at work? How to use your voice – and not get firedJul 18, 2022
Hello, my name is Andrew, and I can’t stop disagreeing.
Why Figma Wins - kwokchainJul 17, 2022
Companies are a sequencing of loops. While it’s possible to stumble into an initial core loop that works, the companies that are successful in the long term are the ones that can repeatedly find the next loop. However, this evolution is poorly understood relative to its existential impact on a company’s trajectory. Figma is a … Continue reading Why Figma Wins →
Quizzes are free data mining tools for brands - MarketplaceJul 17, 2022
An online Game of Thrones quiz got a million online hits for HBO.
Traction PDF Summary - Gabriel Weinberg & Justin Mares | 12min BlogJul 17, 2022
Traction PDF Summary by Gabriel Weinberg & Justin Mares pinpoints how startups can climb the ladder at lightning speed and learn how to expand your company.
30 Useful Tools for Growth Hackers and StartupsJul 17, 2022
I’m a startup product growth guy with a social gaming background. I currently work as VP of Growth at Relcy, a mobile search engine. A few companies I’ve worked with on growth in the past (HIRED $702…
Lessons learned from scaling a product teamJul 17, 2022
There's lots written about how you should build software, but few concrete examples of the messy reality as implemented by startups. Here's our process.
All Markets Are Not Created Equal: 10 Factors To Consider When Evaluating Digital MarketplacesJul 17, 2022
Since Benchmark’s investment in Ebay 15 years ago, we have been fascinated by online marketplaces. Entrepreneurs accurately recognize that the connective tissue of the Internet provides an opportunity to link the players in a particular market, reducing friction in both the buying and selling experience. For example, my car tax check is an online platfrom that allows you to book a slot for a complete history and guidance of your car taxes and other details. The arrival of the smartphone amplifies these opportunities, as the Internet’s connective tissue now extends deeper and deeper into an industry with the participants connected…
Nearly a third of new subscribers to some news publications cancel in the first 24 hoursJul 13, 2022
The same-day cancellation rate likely includes subscribers who only wanted access to one article, or who felt the full paid experience was lacking after a quick look around. New data suggests some just really hate the idea of auto-renewal.
5 Pricing Resolutions for 2019 - OpenViewJul 11, 2022
Pricing is a good place to make a few critical resolutions for businesses. Learn the 5 resolutions as you shape your pricing strategy for 2019.
10 Data Acquisition Strategies for StartupsJul 11, 2022
The “unreasonable effectiveness” of data for machine-learning applications has been widely debated over the years (see here, here and…
If Your Customers Don't Care What You Charge, What Should You Charge?Jul 10, 2022
Consumer inertia is the tendency of some customers to buy a product, even when superior options exist. Alexander J. MacKay discusses how that habit affects competitive strategy and even regulatory oversight.
Catalogs & WishbooksJul 7, 2022
336 Vintage Christmas Catalogs & Holiday Wish Books with 302,605 total catalog pages from Sears, Montgomery Ward and JCPenney over the years.
Babe Ruth and Feature ListsJul 6, 2022
Prioritized lists are essential for product managers, right? Yes, but be careful. Ken Norton illustrates why.
Thoughts on Building Weatherproof Companies | Andreessen HorowitzJul 6, 2022
You can't build a weatherproof company if you don’t constantly gather challenges to your thinking, learn to listen to them, and then test those learnings out.
The Marketplace Glossary | Andreessen HorowitzJul 5, 2022
This week, we published the a16z Marketplace 100, a ranking of the largest and fastest-growing consumer-facing marketplace startups and private companies. See the full index and analysis here, and visit a16z.com/marketplace-100 for more marketplace-related content. From a business standpoint, we know marketplaces are challenging to scale; from a conversational perspective, we’ve come to realize they’re...
Cash is a fact, profit is an opinionJul 5, 2022
Apologies in advance: If you’re fluent in the language of accounting, please skip to the bonus Verizon iPhone feature at the end. What I’m about to describe will strike you as oversimplified and…
Five Questions Companies Should Ask Before Making an Innovation-Driven AcquisitionJul 5, 2022
The Swiss pharmaceutical giant Roche is nothing if not determined in its quest to acquire Illumina, the San Diego-based leader in genetic-sequencing equipment. In January, after Illumina’s board rebuffed Roche’s initial overtures, Roche made a $5.7 billion tender offer directly to shareholders. When that didn’t succeed, it extended the offer to midnight last Friday. Now […]
A Rake Too Far: Optimal Platform Pricing StrategyJul 5, 2022
In a casino, the term “rake” refers to the commission that the house earns for operating a poker game. With each hand, a small percentage of the pot is scraped off by the dealer, which in essence becomes the “revenue” for the casino. While casinos use the term “rake,” a plethora of interesting word choices exist which all describe the same thing – keeping a little bit of the revenue for the company that is running the service. Examples include “commission,” “fee,” “toll,” “tax,” “vig” or “vigorish,” “juice,” “the take”, and “graft” (although this last one is typically associated with…
In times of change, make tiresJul 5, 2022
Innovation is not a binary choice between the old and the new. The answer is often to contribute to evolution — by making parts that work…
The *real* pivotJul 5, 2022
10-Steps to a Friction-Free App.Jul 5, 2022
How to improve your product experience to eliminate confusion and frustration for your users.
How to sunset a featureJul 5, 2022
When it's time to call a feature quits, how should you announce end of life? Here's how to sunset a feature while minimizing customer impact.
The Real Power of Platforms Is Helping People Self-OrganizeJul 5, 2022
Centralized planning is no longer required.
How Modern Marketplaces Like Uber and Airbnb Build Trust to Achieve LiquidityJul 5, 2022
Anand Iyer, former Head of Product at Threadflip, on how marketplaces can build trust in order to build their businesses.
It’s OK to Move Down (Yes, Down) the Value ChainJul 5, 2022
There is increased efficiency and other benefits to doing so.
The Power of Reference Customers | Silicon Valley Product GroupJul 5, 2022
Our job in the product organization is to create products that can sustain a business. Make no mistake about it: everything depends on strong products. Without these strong products, our marketing programs require customer acquisition costs that are too high; our sales organization is forced to get creative which drives up cost of sales, lengthens...
User Acquisition: Viral Factor BasicsJul 5, 2022
This is the second post in a three post series on user acquisition. In the first post in this series, we covered the basics of the five sources of traffic to a web-based product. This next post co…
The Most Effective Price Discovery Question for Your Startup by @ttunguzJul 5, 2022
Pricing is one of the most challenging decisions for any startup. One of the simplest ways of discovering customer willingness to pay is simply to ask them. At first blush, that might seem a reasonable and effective solution, it is prone to wild inaccuracy. Absolute pricing judgments are hard without reference points. For example: How much would you be willing to pay for a new iPhone? It’s a very challenging question to answer in the abstract.
A Deeper Look at Uber’s Dynamic Pricing ModelJul 5, 2022
Over the course of the past year, many writers have offered their perspectives on Uber’s dynamic pricing strategy. Perhaps the only consistency is that people have deeply passionate views on this topic. However, there are still many misperceptions about how the model works, and the purpose of this post is to clarify some of those misperceptions. I am an Uber investor and board member, and therefore expect that many will dismiss these thoughts as naked bias. But consider that as a result of my role I have access to more information that might enable a deeper perspective. I also have…
Six Principles for Making New ThingsJul 5, 2022
Customer Loyalty Is OverratedJul 5, 2022
Why do companies routinely succumb to the lure of rebranding? The answer, say A.G. Lafley and Roger L. Martin, the authors of “Customer Loyalty Is Overrated,” is rooted in serious misperceptions about the nature of competitive advantage—namely, that companies need to continually update their business models, strategies, and communications to respond to the explosion of options that sophisticated consumers face. Research suggests that what makes competitive advantage truly sustainable is helping consumers avoid having to make a choice. They choose the leading product in the market primarily because that is the easiest thing to do. And each time they select it, its advantage increases over that of the products or services they didn’t choose, creating what the authors call cumulative advantage. Lafley and Martin offer guidance for building cumulative advantage: Become popular early. Back in 1946, Procter & Gamble gave away a box of Tide with every washing machine sold in America. Design for habit. When P&G introduced Febreze, consumers liked it but didn’t use it much. The problem, it turned out, was that the product came in what looked like a glass-cleaner bottle, so users kept it under the sink. When the company redesigned the bottle so that customers would keep it in a more visible spot, they ended up using it more often. Innovate inside the brand. Efforts to “relaunch” brands can lead people to break their habits. Changes in product features should be introduced in a way that retains cumulative advantage. For customers, “improved” is much more comfortable than “new.” Keep communication simple. A clever ad may win awards, but if its message is too complex, it will backfire.
Batman Is A Growth HackerJul 5, 2022
B.J. Mendelson breaks down how Batman is a growth hacker, and what we can learn about the field from him.
Secrets Of Freemium Pricing: Make The Cheapskates PayJul 5, 2022
The following is a guest post by Andy Singleton Andy is the founder and CEO of Assembla a company that provides bug tracking and hosted GIT and SVN
Network Effects Aren’t EnoughJul 5, 2022
In many ways, online marketplaces are the perfect business model. Since they facilitate transactions between independent suppliers and customers rather than take possession of and responsibility for the products or services in question, they have inherently low cost structures and fat gross margins. They are highly defensible once established, owing to network effects. Yet online marketplaces remain extremely difficult to build, say Andrei Hagiu of Harvard Business School and venture capitalist Simon Rothman of Greylock Partners. Most entrepreneurs and investors attribute this to the challenge of quickly attracting a critical mass of buyers and suppliers. But it is wrong to assume that once a marketplace has overcome this hurdle, the sailing will be smooth. Several other important pitfalls can threaten marketplaces: growing too fast too early; failing to foster sufficient trust and safety; resorting to sticks, rather than carrots, to deter user disintermediation; and ignoring the risks of regulation. This article draws on company examples such as eBay, Lending Club, and Airbnb to offer practical advice for avoiding those hazards.
All Revenue is Not Created Equal: The Keys to the 10X Revenue ClubJul 5, 2022
[Follow Me on Twitter] “ Don't you know that you are a shooting star, And all the world will love you just as long, As long as you are.” -- Paul Rodgers, Shooting Star With the IPO market now blown wide-open, and the media completely infatuated with frothy trades in the bubbly late stage private market, it is common to see articles that reference both “valuation” and “revenue” and suggest that there is a correlation between the two. Calculating or qualifying potential valuation using the simplistic and crude tool of a revenue multiple (also known as the price/revenue or price/sales ratio)…
Who is good at discovery?Jul 5, 2022
Apple has carefully guarded the podcast directory, persuading podcasters that ‘winning’ here is the shortcut to building a popular podcast. But they’re terrible at introducing pod…
A Dozen Attributes of a Scalable BusinessJul 5, 2022
“A startup is a company designed to grow fast. Being newly founded does not in itself make a company a startup. Nor is it necessary for a startup to work on technology, or take venture fundin…
How to Master The Discipline of Product Management (Not the job of Product Manager)Jul 5, 2022
The three skills that are necessary to craft a successful product, and how to create and perpetuate them throughout a company.
“Platform” risk — Remains of the DayJul 5, 2022
Last night, Twitter curtailed Meerkat's access to its graph . I saw lots of discussion on Twitter (I'd say this was ironic but it's just expected) about why and whether Twitter should just compete on its own merits with its recent acquisition Periscope . Some have termed what happened to Meerkat
6 decision-making techniques all Product Managers should knowJul 5, 2022
How to productively make collaborative decisions
Hardware is sexy, but it’s software that mattersJul 5, 2022
You can make software if you choose to. Not just the expected version of software that runs on a computer, but the metaphorical idea of rules and algorithms designed to solve problems and connect p…
The Design Sprint — GVJul 5, 2022
The sprint is a 5-day process for answering critical business questions through design, prototyping, and testing with customers. Learn to run your own sprints, and read about our book on sprints.
Five dynamic pricing issues retailers should considerJul 5, 2022
From social media sentiment analysis to digital ad buying, faster is increasingly seen as better, or at least necessary. So it’s no surprise that the ability to generate lots of data and analyze it…
If your product is Great, it doesn't need to be Good.Jul 5, 2022
By now, everyone is tired of hearing about the iPad, but the negative responses are so perfectly misguided that it would be wrong to waste t...
Use Co-opetition to Build New Lines of RevenueJul 5, 2022
Just don’t pretend you’re all on the same side.
How to Increase SaaS Pricing (and Quickly Triple Your Growth) - ExtendsLogicJul 5, 2022
Last month Bidsketch had the biggest increase in revenue it’s ever had. Before that, the biggest increase in revenue came when FreshBooks emailed a million people and mentioned Bidsketch as a new integration for sales proposals. I got so many new sales notifications that day, I thought someone had hacked my server. It was nuts.… Continue reading How to Increase SaaS Pricing (and Quickly Triple Your Growth) →
Steve Blank Do Pivots Matter?Jul 5, 2022
There’s a sign on the wall but she wants to be sure
’ Cause you know sometimes words have two meanings Led Zeppelin – Stairway to Heaven In late 2013 Cowboy Ventures did an analysis of …
Why Your eCommerce Business Should Have a Pop-Up ShopJul 5, 2022
Ecommerce is booming, and there’s no doubt about that. The numbers speak for themselves. After all, in 2017, ecommerce sales reached $2.3 trillion, and
Asking Users to Complete Tough Mudders to Use Your ProductJul 5, 2022
Funnel optimization for web3 companies will become critical to their success. Token grants cost 4-7x than traditional customer acquisition techniques. Other techniques, like incentivized referral, improve the economics but still tally 19 month payback periods. A year-and-a-half might be fine for a SaaS company selling a $50k to $100k ARR product, but long-term viability demands achieving 3-6 month paybacks of modern web2 consumer companies. Why are the payback periods so high?
Anatomy of a Product Placement (Published 2022)Jul 5, 2022
As consumers skip ads and streaming content balloons, brands aim to be everywhere all at once.
Watching an acquirer ruin your company - by Jon ChristensenJul 4, 2022
What happens on the other side of the acquisition doesn't get much startup press
Cross-chain Deals and Adversarial CommerceJun 29, 2022
This paper appeared in VLDB'19 and is authored by Maurice Herlihy, Barbara Liskov, and Liuba Shrira. How can autonomous, mutually-distrust...
12 signs youre working in a feature factoryJun 29, 2022
Understanding Products Through StorytellingJun 28, 2022
Storytelling is a powerful technique for building data-informed products.
How to Sell High-priced (and High-quality) ProductsJun 28, 2022
In the 1950s, most products were built to last. Companies knew that manufacturing long-lasting products would spread word-of-mouth referrals, which meant
How to build B2B recommendation engines from competitor’s alternativesJun 28, 2022
Without driving yourself crazy
How Much Is Michael Bolton Worth to You? (Published 2013)Jun 28, 2022
There’s a reason scalpers have confused economists for decades.
16 Tools to Manage Your ReputationJun 28, 2022
Reputation management is essential for any brand. Your company's future may depend on what’s been said about it in posts, comments, reviews, and rankings. Fortunately, there are affordable tools to help. Here is a list of tools to manage your brand’s reputation.
How to Make a Good Secret SauceJun 28, 2022
Knowledge moats (secret sauces) are one of the most fundamental type of moat in business. They consist of the information, data and…
Is There a Platform in Your Product?Jun 28, 2022
Five of the 10 most valuable companies in the world today—Apple, Alphabet, Amazon, Facebook, and Microsoft—derive much of their worth from their multisided platforms, which facilitate interactions or transactions between parties. Many MSPs are more valuable than companies in the same industries that provide only products or services: For instance, Airbnb is now worth more than Marriott, the world’s largest hotel chain. However, companies that weren’t born as platform businesses rarely realize that they can—at least partially—turn their offerings into one, say the authors. And even if they do realize it, they often wander in the dark searching for a strategy to achieve this transformation. In this article, Hagiu and Altman provide a framework for doing so. They lay out four specific ways in which products and services can be turned into platforms and examine the strategic advantages and pitfalls of each: (1) opening the door to third parties; (2) connecting customers; (3) connecting products to connect customers; and (4) becoming a supplier to a multisided platform. These ideas can be used by physical as well as online businesses.
Nautilus | Science ConnectedJun 28, 2022
Nautilus is a different kind of science magazine. Our stories take you into the depths of science and spotlight its ripples in our lives and cultures.
A Product Manager’s JobJun 28, 2022
Product management is one of the hardest jobs to define in any organization, partially because it’s different in every company. I’ve had several recent conversations about “what is a product…
How Self-Service Kiosks Are Changing Customer BehaviorJun 28, 2022
From ATMs to automated checkouts to fast food.
This Product Prioritization System Nabbed Pandora 70 Million Monthly Users with Just 40 EngineersJun 28, 2022
Pandora CTO Tom Conrad explains how Pandora picks the most important features to build with its limited engineering power.
Good Products Have Features, Great Products Have Stories.Jun 28, 2022
Getting people to notice your product on the web is hard. Getting them to understand what you do is even harder. One of the biggest challenges startups face is cutting through the noise and…
Make Operations Your Secret Weapon - Here’s HowJun 28, 2022
Etsy COO Linda Kozlowski knows an operations leader is critical to the success of a company. Here, she sheds light on the most mysterious role in the C-suite — and how startups can hire and empower the right COO for their company.
Steve Blank Fear of Failure and Lack of Speed In a Large CorporationJun 28, 2022
I just spent a day working with Bob, the Chief Innovation Officer of a very smart large company I’ll call Acme Widgets. Bob summarized Acme’s impediments to innovation. “At our company we have a cu…
Neuro-Menus and Restaurant PsychologyJun 28, 2022
Restaurants are great test labs for testing neuromarketing techniques. It's easy to change offerings, menus, and pricing, and one gets immediate feedback on what's working and what's not. Today, many eateries are employing sophisticated menu psychology to maximize sales and profits.
Picking a MarketJun 28, 2022
In the Creative Founder, students are paired semi-randomly, and then spend a semester trying to get to product-market fit. I always start them with market selection. A market has three key elements…
Growth Hacking ChecklistJun 28, 2022
“My biggest surprise was when we launched the Facebook app and it didn’t go viral” -Startup CEO quote “The month after we ...
Applying Luxury Principles to Ecommerce DesignJun 27, 2022
Luxury brands should use their digital channels to support and enhance their high-quality customer experiences. This requires providing product details that spark interest, balancing visual design with other priorities, and avoiding interruptions that risk cheapening the brand.
How Lumosity Spiked Active Users 10% with Complexity, Not SimplicityJun 25, 2022
It's not always true that simplicity makes the best product. Sometimes making things less simple will get you the users you truly want.
Neil Patel's Digital Marketing BlogJun 25, 2022
Your #1 resource for digital marketing tips, trends, and strategy to help you build a successful online business.
When One Category Works Against Most Of Your CategoriesJun 25, 2022
Database Marketing, Data Mining, Analytics, Big Data, Forecasting, Segmentation, Predictive Modeling, Measurement, Catalog, Business
Top 10 Product Leadership LessonsJun 25, 2022
On Sunday, I was fortunate enough to give a talk at the 9th annual Harvard Business School Entrepreneurship Conference. I’m trying to be better about posting the slides from these talks as t…
Three-Dimensional Strategy: Winning the Multisided PlatformJun 25, 2022
Done right, companies competing as a multi-sided platform often win with higher percentage profit margins than those enjoyed by traditional resellers. The problem is that a winning strategy is far from self-evident. Professor Andrei Hagiu explains the potential and the pitfalls for life as an MSP.
Busting Six Myths About Customer Loyalty ProgramsJun 25, 2022
Low-margin retailers argue they can't afford customer loyalty programs, but is that true? Rajiv Lal and Marcel Corstjens make the case that such programs are profit-enhancing differentiators.
How to get your first 10 customersJun 25, 2022
Preface: the assumption for this essay is that you're building a B2B app, and you have something built but you're having trouble getting people to pay for it There are three problems with getting your first few customers: You (probably) don't know how to sell things You don't know who you're selling to You don't even really know what you're selling Nobody tells you how to answers these questions, and so most people go out
How do you put a price on your source code?Jun 25, 2022
Selling software isn’t like selling cars or real estate. Don’t sell yourself short.
Developing a Product Requirements Document for Hardware StartupsJun 25, 2022
I have always avoided writing. As a mechanical engineer, I would rather do just about anything else: sketch parts, build prototypes, or collaborate with manufacturers. Rough sketches for Dor, one of Bolt’s portfolio companies For over 15 years, I have designed and engineered products — mostly a
3 pitfalls of PPC experimentsJun 25, 2022
Knowing what to test and how to interpret the results based on nuances and oddities of experiments is an important skill for people, not automations.
Price Bundling in CouponingJun 25, 2022
Take a look at these two coupons Target stores printed out at checkout at the same time. What is your take on the reasoning behind this? If you have the read the famous Target Big Data story about …
Top 10 Reasons for Weak Product | Silicon Valley Product GroupJun 25, 2022
In my last article I discussed the top reasons for slow product, and here I wanted to highlight the top reasons for weak product. I am defining weak product here as product that fails to meet its objectives and provide new and expanded sources of revenue and/or growth for your company. Lack of product vision. ...
An Exercise to Help Your Team Feel More Comfortable with ConflictJun 25, 2022
The ability to get issues on the table and work through them constructively is critical to having a healthy culture. Managers can normalize productive conflict on your team by using an exercise to map out the unique value of each role and the tensions that should exist among them. Draw a circle and divide that circle into enough wedges to represent each role on your team. For each role, ask: What is the unique value of this role on this team? On which stakeholders is this role focused? What is the most common tension this role puts on team discussions? Answer those questions for each member of the team, filling in the wedges with the answers. As you go, emphasize how the different roles are supposed to be in tension with one another. With heightened awareness and a shared language, your team will start to realize that much of what they have been interpreting as interpersonal friction has actually been perfectly healthy role-based tension.
'Get in the Van' and Other Tips for Getting Meaningful Customer FeedbackJun 24, 2022
Michael Sippey has been building tech products for over 20 years. His most valuable ideas, though? They came from speaking with customers. Here's how.
We raised prices to preserve our business modelJun 24, 2022
This quote comes to us from Ms. Allie Webb, the Founder and CEO of Drybar a blow dry only salon. A blow dry salon is not like any hair salon. It offers, just as name indicates, blow dry and styling…
The most beautiful price fenceJun 24, 2022
Fences are never beautiful. May be the picket fences are. But when designed to keep two sides from moving easily from one side to the other they are not usually described as beautiful. Price fences…
The problem with ‘5 whys’Jun 24, 2022
‘The Problem with…’ series covers controversial topics related to efforts to improve healthcare quality, including widely recommended but deceptively difficult strategies for improvement and pervasive problems that seem to resist solution. The ‘5 whys’ technique is one of the most widely taught approaches to root-cause analysis (RCA) in healthcare. Its use is promoted by the WHO,1 the English National Health Service,2 the Institute for Healthcare Improvement,3 the Joint Commission4 and many other organisations in the field of healthcare quality and safety. Like most such tools, though, its popularity is not the result of any evidence that it is effective.5–8 Instead, it probably owes its place in the curriculum and practice of RCA to a combination of pedigree, simplicity and pedagogy. In terms of pedigree, ‘5 whys’ traces its roots back to the Toyota Production System (TPS).9 It also plays a key role in Lean10 (a generic version of TPS) as well as Six Sigma,11 another popular quality improvement (QI) methodology. Taiichi Ohno describes ‘5 whys’ as central to the TPS methodology:The basis of Toyota's scientific approach is to ask why five times whenever we find a problem … By repeating why five times, the nature of the problem as well as its solution becomes clear. The solution, or the how-to, is designated as ‘1H.’ Thus, ‘Five whys equal one how’ (5W=1H). (ref. 9, p. 123) This quote also makes the case for the technique's simplicity. Asking ‘why’ five times allows users to arrive at a single root cause that might not have been obvious at the outset. It may also inspire a single solution to address that root cause (though it is not clear that the ‘1H’ side of the equation has been adopted as widely). The pedagogical argument for …
Ask HN: How do you set prices? | Hacker NewsJun 24, 2022
70 meetings and calls later: How I achieved customer interview management superpowersJun 24, 2022
I’ve been working on a marketing automation tool (more on that at the end of the post). Or rather, I’ve been working on an idea for a marketing automation tool as I don’t want a single line of code written before I’d experienced a notable pull from target customers. (This may sound like I am clever/…
Guide to Product Planning: Three Feature BucketsJun 24, 2022
In the spirit of capturing some of the observations that I find myself repeating, I’m adding this one to the mix tonight. Unlike the previous two, this is really a piece of concrete advice f…
Liquidity hacking: Solving the chicken-egg dilemma with marketplace startupsJun 24, 2022
Guest How to get a two-sided marketplace startup like Airbnb, Exec, or eBay up and running -- the painless way.
Risk Discounts and Usage-Based Pricing - OpenViewJun 24, 2022
You’re probably not aware of it, but the price of your product includes a risk discount.
Ideation Sprints for New Products & ServicesJun 24, 2022
Part Two of the Needfinding/Ideation/MVP Creation Charette This is the second part of a three part essay on rapid MVP creation to start testing assumptions. Part One is here. It was written for my …
Reddit Was Built On Legions of Fake Accounts | The Mary SueJun 24, 2022
Reddit has never been a place where you could necessarily connect one user with one account. Parody accounts are commonplace -- to a fault if you ask some -- and there have been more than one fiasco involving users who pretend to be different people with different accounts; it's crazy. It's also extremely fitting. Why? Because when Reddit was first started, it was populated almost entirely with content submitted by fake users.
Don’t be a product person, be a merchantJun 23, 2022
Founders and product managers alike wear this proudly on their sleeves (or twitter bios) The Ultimate Product Person – who loves products, building products and sweating the details. Skim thr…
Negotiate like a pro: how to say ‘No’ to product feature requests… | HackerNoonJun 23, 2022
Imagine you’re a product manager and a co-worker from Marketing comes to you with a feature request. Let’s call her ‘fictitious Annie’. She asks you, “Wouldn’t it be awesome if we built this amazing crypto-blockchain feature into our product?” Well…
Beyond DisruptionJun 23, 2022
Clayton Christensen claims that Uber is not disruptive, and he’s exactly right. In fact, disruption theory often doesn’t make sense when it comes to understanding how companies succeed …
Best Product Management Tools in 2024[Review]Jun 23, 2022
We compiled this official guide based on conversations with hundreds of product managers in our PMHQ community who revealed the most popular product management tools and product management tools that they currently use on the job. 64 Best Product Management Tools 2024 The following are the best tools for product management according to their main functions. They are divided into different categories such as collaboration, product roadmap, product management, etc. Product Management...
Multivariate vs. A/B Testing: Incremental vs. Radical ChangesJun 23, 2022
Multivariate tests indicate how various UI elements interact with each other and are a tool for making incremental improvements to a design.
Snapchat’s LadderJun 23, 2022
Snapchat is on the verge of conquering the toughest messaging market in the world: the United States. The way they did it is by laddering-up.
Why Dyson's robot vacuum took 16 years, and why it's headed to Japan firstJun 23, 2022
Dyson almost launched a robot vacuum. Back in 2001, after three years in development. Its first effort, shown to the British public in London looked nothing (and we mean nothing) like the eventual 360 Eye unveiled today. Sixteen years is a long time in tech. The DC06, as it was called, never made it past home-trial stages in 2012 -- apparently too pricey and heavy. Between then and now, technology got better. A lot better. At the Tokyo launch of its new robot vacuum, Sir James Dyson himself, told us how it all came together, and why it's not his native UK, but Japan, that'll get to buy it first.
Customer Interviews: How To Organize FindingsJun 23, 2022
A conversation with Bruce La Fetra on customer interviews. We compare notes on how to organize findings and take best advantage of the insights gleaned.
Neil Patel's Digital Marketing BlogJun 23, 2022
Your #1 resource for digital marketing tips, trends, and strategy to help you build a successful online business.
Argue with your customers - Rockstar CodersJun 23, 2022
Video Tools ArchivesJun 23, 2022
The Startup Marketing ChecklistJun 23, 2022
The Startup Marketing Checklist is a comprehensive, chronologically ordered list of marketing tactics and ideas that you can try with your early stage startup. The checklist is free and open to suggestions.
We Wasted $50K on Google Ads So You Don't Have To – Indie HackersJun 23, 2022
Ever wondered if Google Ads are really worth it, but don't have the cash for an experiment? One's been done for you!
10 Places to Find Product-Market FitJun 23, 2022
Startups fail because they run out of money before achieving product-market fit. NFX Managing Partner Gigi Levy-Weiss identifies 10 places to look for product-market fit in startup ideas.
Team Objectives – Overview | Silicon Valley Product GroupJun 23, 2022
After many years of being a very vocal advocate for the OKR (Objectives and Key Results) technique, in the majority of companies I meet, I have stopped recommending the practice. That’s because, in so many companies, even though conceptually the technique is simple and sound, it ends up proving a waste of time and effort,...
Luxury groups ponder ways to get rid of their unsold inventoryJun 23, 2022
Other than slashing prices
The unpredictable economics of pawn shopsJun 23, 2022
Take the same item to 4 different pawn shops and you might get offers that vary by hundreds of dollars. Here’s why.
SeatGeek will calculate how much that ticket is worth | TechCrunchJun 23, 2022
Have you ever bought sweet tickets for a ballgame, a concert or some other live event, only to find out that you couldn't make it? The internet certainly
The One Conversational Tool That Will Make You Better At Absolutely Everything - Fast CompanyJun 23, 2022
Great insight moves your career, organization, or business forward. The problem? Most people are terrible at asking questions. Learn from the pros how to do it right.
When Freemium FailsJun 23, 2022
A growing number of new businesses are following in the footsteps of successful companies such as Dropbox and Skype, by giving away their products and services free to build a customer base. But for some, that 'freemium' strategy is turning out to be costly.
Q: What Makes a Product Attract Early Adopters? - SKMurphy, Inc.Jun 23, 2022
This is an edited version of a recent online conversation I had with a team of bootstrappers about how to make their product attract early adopters.
13 Platforms for Shoppable VideoJun 23, 2022
Video is increasingly impacting ecommerce. Consumers use it for purchase decisions. Influencers live-stream product endorsements. And brands deploy video for engagement and product offerings. Here is a list of platforms for shoppable video.
16 Rules for Effective Decision-Making | The Leading Blog: A Leadership BlogJun 23, 2022
Leadership Now is a leading source for leadership development and analysis. We believe that anyone can make a difference by leading from where they are.
The 9 Habits of Ultra-Fast IterationsJun 23, 2022
One sector has an unfair number of elite product minds. These 9 habits are their underlying behaviors that result in product success.
Strategy Letter VJun 23, 2022
When I was in college I took two intro economics courses: macroeconomics and microeconomics. Macro was full of theories like “low unemployment causes inflation” that never quite stood u…
The Dark Science of Pop MusicJun 23, 2022
Record companies are tracking download and search data to predict which new songs will be hits. This has been good for business—but is it bad for music?
Deep Dive: PaymentsJun 23, 2022
Ninety percent of Americans have used a credit card, but far fewer understand the underlying systems enabling their payments. So let’s dive…
How to Market Taboo ProductsJun 23, 2022
Tips from successful campaigns promoting everything from shapewear to prostate health.
Every Company Is Up For Disruption, So Keep Your Products Simple | TechCrunchJun 23, 2022
Editor's note: Victor Belfor is the vice president of business development at Influitive. He recently started angel investing and mentoring at 500 startups. As products mature, companies continue to compete in heated battles with their competitors by adding more features and more functionality. However, a lot of customers would prefer fewer features because extra features tend to make products clunky and difficult to use. Still, companies become feature-producing machines.
ForresterJun 23, 2022
Forrester is a leading global market research company that helps organizations exceed customer demands and excel with technology. Learn how Forrester can help.
19 Tactics to Solve the Chicken-or-Egg Problem and Grow Your MarketplaceJun 23, 2022
An inside look at 19 tactics top marketplaces have used to solve the chicken-or-egg problem and kickstart growth.
How To Structure A Marketplace | TechCrunchJun 23, 2022
Editor's Note: The following is a guest post by Simon Rothman of Greylock Partners. Rothman is particularly passionate about Marketplace technology (Etsy, Kickstarter, Airbnb, etc) and how to garner success in that category. Marketplaces are endemic to the consumer web: Largely popularized by eBay, we've recently seen quite a few variations on the theme, like young guns Etsy, oDesk, Airbnb, and Kickstarter. Old or new, the two elements that bind all marketplaces are network effects (a good thing) and the chicken-and-egg problem (not such a good thing).
How We Redesigned Our Product in Less Than a WeekJun 23, 2022
The 6-step process is an adapted version of the process Google Ventures taught us. It's applicable whether you’re a startup or a Fortune 500 company.
How To Design Products For People Making $2 A Day - Fast CompanyJun 23, 2022
Proximity Designs is a for-profit design company whose goal is to create products cheap enough--and good enough--that they can be bought by poor farmers, instead of just giving them aid.
Twitter partners with Shopify to bring merchants' products to Twitter Shopping | TechCrunchJun 22, 2022
As part of its ongoing efforts to expand into e-commerce, Twitter today announced a new partnership with Shopify. The deal will see Twitter launching a
The Problem with Feature BranchesJun 21, 2022
As more companies strive to deliver software faster it becomes clear what legacy processes are...
6 Email Triggers for Max ConversionsJun 21, 2022
Shoppers' actions on an ecommerce site create opportunities for automated, triggered emails. Such behavior-based email automation is a sure-fire tactic to drive revenue.
Forget Virality, Selling Enterprise Software Is Still Old School | TechCrunchJun 14, 2022
Editor's note: Roman Stanek is CEO and founder of GoodData. Lately, in Silicon Valley and its counterparts around the world, disappointment has ruled the halls of companies that had a huge impact with consumers, but then fizzled as investments when they went public—Facebook’s and Zynga’s IPOs being the most notorious examples. Attention quickly moved from the consumer to the enterprise market, where Splunk, Palo Alto Networks, Workday, and LinkedIn are all humming along just fine. Entrepreneurs seeking to sell to enterprise customers should recognize that the business-to-business (B2B) market, especially with respect to IT, plays by a different set of rules than the business-to-consumer (B2C) space.
When Growth Hacking Goes Bad | TechCrunchJun 14, 2022
Andreessen Horowitz-backed music lyrics and annotations Rap Genius was the latest to stray over to the darker side of so-called "growth hacking," with its spammy SEO tactics disguised as an affiliate program. Called out, exposed and now punished by Google, the site's traffic has tanked. But Rap Genius, thanks in part to that $15 million investment, will probably recover. They'll clean up their links, make amends, and maybe even get back into Google's good graces. End users will once again land on Rap Genius's pages, many of them none the wiser for the time the site spent in the penalty box. Other startups may not be as lucky.
A Quantitative Approach to Product Market Fit - Tribe CapitalJun 14, 2022
A overview on the basics behind how we quantify product-market fit at Tribe Capital. These are the underpinnings of our underwriting framework.
Personalization Is Not A Feature | TechCrunchJun 14, 2022
We’ve all watched from the sidelines as companies have come out in a burst of glory, and then, two years later, spent their venture capital, lost their user base, and failed to monetize. This begs the question - what are the factors that drive a company’s survival, differentiate it, and ultimately make it a winner? In today’s online world, personalization is increasingly making or breaking companies. The companies that win are the ones making personalization a key company value – not just a feature. In the early days of the web, consumers were happy just to gain access to information. However, as technology became more sophisticated, and as more consumers and companies came online, we quickly moved out of the access age and into a state of information overload, often leaving consumers frustrated and confused. Companies that helped consumers cut through the clutter to reveal relevant information had a critical and sustainable competitive advantage in their respective areas. The concept of relevance is critical to the success of Google, for example.
Features Tell, But Benefits Sell - Help ScoutJun 14, 2022
Founders and marketers must go beyond selling products, and instead sell what their product will allow customers to do.
Customer-Channel Fit: How to Identify the Right B2B SaaS Marketing ChannelsJun 14, 2022
A deep dive into our process for identifying the optimal B2B SaaS Marketing Channels for our clients, or Customer-Channel Fit.
MomtestbookJun 13, 2022
The Adjacent User TheoryJun 13, 2022
The Empty Promise of Data Moats | Andreessen HorowitzJun 13, 2022
Data has long been lauded as a competitive moat for companies, and that narrative’s been further hyped with the recent wave of AI startups. Network effects have been similarly promoted as a defensible force in building software businesses. So of course, we constantly hear about the combination of the two: “data network effects” (heck, we’ve...
Welcome to the Era of Fake ProductsJun 13, 2022
Counterfeit goods have proliferated along with e-commerce. Here’s your primer on the growing world of fake products—and the forces working to combat them.
Packaging Inserts: Types and How To Create Yours (2024) - ShopifyJun 13, 2022
Increase customer loyalty and take advantage of an additional opportunity to connect with customers by using packaging inserts. Here's why and how to use them in every package you send out.
ReforgeJun 13, 2022
What are value metrics? How value metrics optimize pricingJun 13, 2022
See why evaluating your value metric and aligning it with your pricing strategy is the key to optimizing your SaaS business for profits and growth.
Anatomy of a managed marketplace | TechCrunchJun 13, 2022
Managed marketplaces have been one of the hottest categories of venture investment over the past several years. They garner a lot of press because the consumer experiences are often radically different than what’s previously been available in the market. But there is confusion over what a true “managed” marketplace is. It’s fairly easy to spot if you know what to look for.
Four types of product management skillsJun 13, 2022
In recent years, we’ve seen new definitions for old titles and many new titles being created. We’ve got product managers, product marketing managers, product owners, business analysts, product strategists, product line managers, and portfolio managers.
21 Examples of Pricing Pages in Web DesignJun 13, 2022
What is Negotiation for Product Managers? - The Product AngleJun 13, 2022
In this article, my goal is to show you what is negotiation for Product Managers and share 10 steps to influence without authority.
Sometimes It’s Not the Change They Hate — Users KnowJun 13, 2022
There has been a lot of discussion in the design world recently about "change aversion." Most of the articles about it seem to be targeting the new Google redesign, but I've certainly seen this same discussion happen at many companies when big changes aren't universally embraced by users.
The New Curated Consumer Marketplace Model: 10 Criteria For SuccessJun 13, 2022
By Stephanie Tilenius, an entrepreneur in residence at Kleiner Perkins Caufield & Byers The Wild West of online marketplaces is over. From 1999 until 2006, eBay and Amazon Marketplaces dominated the field, offering platforms that brought buyers and sellers together. But over the last seven years, more than 20 new marketplace [...]
The 87 Most Essential Tools For Data-Driven Product ManagementJun 13, 2022
Like CEOs, data-driven product managers need a variety of different tools, skills, and capabilities. Here's the tools product managers need to succeed.
Bayesian Product Ranking at WayfairJun 13, 2022
Wayfair has a huge catalog with over 14 million items. Our site features a diverse array of products for people’s homes, with product categories ranging from “appliances” to “décor and pillows” to “outdoor storage sheds.” Some of these categories include hundreds of thousands of products; this broad offering ensures that we have something for every style and home. However, the large size of our product catalog also makes it hard for customers to find the perfect item among all of the possible options.
Defining A Growth Hacker: Growth Is Not A Marketing Strategy | TechCrunchJun 13, 2022
“Viral marketing is not a marketing strategy,” Andrew Chen wrote back in 2007. “Successful viral products don’t have viral marketing bolted on once the product has been developed. It’s not a marketing strategy. Instead, it’s designed into the product from the very beginning as part of the fundamental architecture of the experience.”
The Chromecast’s reset button is proof of the reliability of hardware in a digital worldJun 13, 2022
Even the software-focused Chromecast relies on hardware sometimes.
1/ A few weeks back I asked folks for suggestions on the best writing on product management. I promised to compile & share back everything I've found, so here goes:Jun 13, 2022
— Kenton Kivestu 🤔🤔🤔 (@kivestu)
Why You’re Never Really Happy With the Things You Buy AnymoreJun 12, 2022
Constant bargain hunting makes us value all the wrong things about shopping.
Reselling Software: Don’t Start a SaaS — White Label Someone Else’sJun 12, 2022
Reselling software can mean recurring revenue and great profit margins. But how do you choose a niche and find your first customers?
How to Identify Keywords That Signal Shoppers’ IntentJun 12, 2022
Keyword phrases are the fuel that drives many online marketing efforts, including search engine optimization, paid search advertising, and even content ideas. If marketers do a better job in selecting keyword phrases, they may do a better job promoting their products and content.
The Network Effects Manual: 16 Different Network Effects (and counting)Jun 12, 2022
The 16 Network Effects & How They Actually Work
Defining AggregatorsJun 12, 2022
Building on Aggregation Theory, this provides a precise definition of the characteristics of aggregators, and a classification system based on suppliers. Plus, how to think about aggregator regulat…
Product Descriptions: 17 Fresh Writing AnglesJun 12, 2022
Need to spice up descriptions for bland products? Use these themes and examples the next time you’re describing a back-to-school backpack or plain white t-shirt. You’ll soon understand how to look at ordinary products differently.
Baking mischief and delight into your products will make people love themJun 12, 2022
You should never underestimate the power of making people happy. Here are four tips from Techstars' Eamonn Carey to help you build products people love.
40 Tips for B2B Customer Development Interviews - SKMurphy, Inc.Jun 12, 2022
This post on B2B customer development interviews offers my lessons learned from several thousand interviews over the last 16 years.
A Guide To Validating Product Ideas With Quick And Simple Experiments — Smashing MagazineJun 12, 2022
If you are building a product, you should always speak with customers and test your idea before. But you probably don’t know that *you *might be making some of the most common mistakes when running your experiments. Mistakes include testing the wrong aspect of your business, asking the wrong questions and neglecting to define a criterion for success. In this article, Grace Ng will show you a guide to designing quick, effective, low-cost experiments.
Pricing Your ProductJun 12, 2022
Digital Advertising Platform for Brands and Agencies | AdRollJun 12, 2022
Boost brand awareness, increase site visitors, and drive conversions with personalized advertising. AdRoll's been trusted by 140,000+ brands for over 15 years.
Instagram Co-Founder Mike Krieger's 8 Principles For Building Products People Want | TechCrunchJun 11, 2022
Mike Krieger, Instagram's founder thinks you can build apps that fit the real world by watching what people want, not guessing. He presented his eight core product design insights today at 500 Startups' Warm Gun conference. Here's the cheat sheet to his talk.
What Is Conjoint Analysis, and How Can It Be Used?Jun 11, 2022
Conjoint analysis is a highly effective means of market research, capable of informing a company’s pricing strategy and product development.
9 Common Types of Conjoint Analysis and How To Use ThemJun 11, 2022
Conjoint analysis is the optimal market research approach for measuring the value that consumers place on features of a product or service. Learn more!
Leading Cross-Functional TeamsJun 7, 2022
This is the legendary presentation about cross-functional teams from Ken Norton that made donuts and product management synonymous.
Alexa: Amazon’s Operating SystemJun 7, 2022
Money is made at chokepoints, and the most valuable chokepoints are operating systems; Amazon is building exactly that with Alexa.
Curation and AlgorithmsJun 7, 2022
More and more companies are announcing new products based on human curation, even as the most important content players — Google and Facebook — rely on algorithms. When does curation make sense, an…
The Weird Science of Naming New Products (Published 2015)Jun 7, 2022
To find the perfect brand, leave no word unturned.
The Engineering of the Chain Restaurant MenuJun 7, 2022
At IHOP and Applebee's, menus are sales documents. And navigational guides. And explainers.
Past Behavior Does Not Determine Future Purchases | TechCrunchJun 7, 2022
Ever wonder why after buying shoes online (or any other consumer goods), for the next few weeks or months, you can be sure to spot ads or promotions for those same shoes on nearly every website you visit? What’s more, you'll see which shoes your Facebook friends bought, which shoes their friends bought and which shoes “others like you” bought. You already bought shoes, so why are you still being bombarded with ads for them?
DesignJun 7, 2022
Find the latest Design news from Fast company. See related business and technology articles, photos, slideshows and videos.
Setting UX Roles and Responsibilities in Product Development: The RACI TempJun 7, 2022
Use a flexible responsibility-assignment matrix to clarify UX roles and responsibilities, anticipate team collaboration points, and maintain productivity in product development.
Airbnb and the Internet RevolutionJun 4, 2022
Airbnb gets less press than Uber, but in some respects its even more radical: understanding how it works leads one to question many of the premises of modern society from hotels to regulations. It&…
Economies Of Scale As A Service | TechCrunchJun 4, 2022
Credit where it's definitely due: this post was inspired by a Twitter conversation with Box CEO Aaron Levie. Don't look now, but something remarkable is happening. Instagram had twelve employees when it was purchased for $700 million; all of its actual computing power was outsourced to Amazon Web Services. Mighty ARM has only 2300 employees, but there are more than 35 billion ARM-based chips out there. They do no manufacturing; instead they license their designs to companies like Apple, who in turn contract with companies like TSMC for the actual fabrication. Nest Labs and Ubiquiti are both 200-employee hardware companies worth circa $1 billion...who subcontract their actual manufacturing out to China.
Aggregation and the New RegulationJun 2, 2022
Because of the Internet realities described by Aggregation Theory a smaller number of companies hold an increasing amount of power. However, an increasing focus on market forces reduces the latitud…
9 Qualities of World Class Growth Hacking TeamsJun 2, 2022
Here's our guide for assembling a growth team who strive for constant improvement, with a commitment to understanding why experiments succeed or fail.
How Netflix Reverse-Engineered HollywoodJun 2, 2022
To understand how people look for movies, the video service created 76,897 micro-genres. We took the genre descriptions, broke them down to their key words … and built our own new-genre generator.
Dollar Shave Club and the Disruption of EverythingJun 2, 2022
Dollar Shave Club is a textbook example of how the new Internet economy will destroy value in incumbent industries.
33 powerful tools to get the most out of your usersJun 2, 2022
Check this unique list of handy apps that can help you multiply your website’s visitor or paying customer count without bleeding too much cash.
Rithum: End-to-End E-commerce Solutions for Brands & RetailersJun 2, 2022
CommerceHub and ChannelAdvisor are now united as Rithum. We empower top brands, suppliers, and retailers with durable, profitable e-commerce solutions.
The Network Effect Isn’t Good Enough | TechCrunchJun 2, 2022
Editor’s Note: Nir Eyal blogs about the intersection of psychology, technology, and business at NirAndFar.com. Sangeet Paul Choudary analyzes business models for network businesses at Platformed.info. Traditionally defined as a system where each new user on the network increases the value of the service for all others, a network effect often creates a winner-takes-all dynamic, ordaining one dominant company above the rest.
Reverse Network Effects: Why Scale Threatens Today’s Social NetworksJun 2, 2022
To explore the future of online networks, it's important to note how network effects correlate with value and the factors that make these network effects work in reverse.
Choose Boring TechnologyJun 1, 2022
Why So Many Luxury Brands Are Terrible at EcommerceMay 30, 2022
Until recently, a lack of digital prioritization and desire to control access have led to sub-par luxury ecommerce experiences. Many luxury brands are struggling to improve.
Ted Sarandos Talks About That Stock Drop, Backing Dave Chappelle, and HollyMay 29, 2022
The Netflix executive says he — and the company he helped build — will survive a bout of bad earnings numbers.
The Pricing Model That Increased Our Free Trial Signups by 358% (and Revenue by 25%)May 28, 2022
We thought we were being smart with innovative pricing models. We were wrong, but we finally righted the ship.
The Intentional Network Effects of UberMay 28, 2022
Few realize that Uber's core network effects aren't as strong as they seem. At this point, we count no less than 9 additional defensibilities Uber is pursuing to reinforce their core network effect.
5 Effective Customer Loyalty Programs for Small Businesses - Help ScoutMay 28, 2022
All you need to know about the benefits of customer loyalty programs for small business + examples of 5 types of programs to consider.
How to Hire a Product ManagerMay 28, 2022
What makes a great product manager and how do you become one?
Pricing on Purpose (Summary)May 28, 2022
getAbstract Summary: Get the key points from this book in less than 10 minutes.Ronald J. Baker makes a sound economic case that the traditional method of generating prices by calculating costs and figuring in an acceptable profit is outdated and u...
Pricing Psychology: A List of TacticsMay 28, 2022
Free Online Guide - Which digits to choose? How high should it be? Should it be rounded or precise? Plus other techniques.
SEO: Product Descriptions Are a Blind Spot for Ecommerce MerchantsMay 28, 2022
Why does the ecommerce community have such a blind spot when it comes to unique product descriptions? Syndicated descriptions produce duplicate content. Why is duplicate product copy accepted so blindly? The answer depends on whether you’re the syndicator or the site using the syndicated content.
A Taxonomy of MoatsMay 28, 2022
Value is created through innovation, but how much of that value accrues to the innovator depends partly on how quickly their competitors imitate the innovation. Innovators must deter competition to…
13 marketing automation tools that can help you boost your salesMay 27, 2022
The way we live our lives has an impact on our work. Long lists of typical chores may turn your
When Keyword Poaching Pays OffMay 20, 2022
Competitive poaching refers to the practice of bidding on ads for a competitor’s search terms, in order to poach customers searching for that brand. It’s a common tactic in the world of digital ads — but is it effective? The author shares results from the first-ever empirical study of this practice, which found that poaching can work well for higher-end brands, but may backfire for lower-end or mass market offerings. Specifically, the study found that when an ad poached customers who searched for a high-end brand, users clicked on it more, but when an ad poached a low-end or mass market target, users were less likely to click. Of course, the author notes that clickthrough rate is just one metric, and there may be other ways in which a poaching campaign could be harmful or beneficial. But these findings can help marketers add a bit of science to the art that is digital advertising, helping them to optimize campaigns for their unique products and customers.
Why people hated shopping carts when they first came out | CNN BusinessMay 19, 2022
We live in a world shaped by shopping carts. The ubiquitous, unloved contraptions are a key feature of US economy. (Yes, really.)
Hacker NewsMay 15, 2022
The story of See’s Candies reminds us of the importance of consistency, quality, and long-term growth in investing.
3 Keyword Tools for Search IntentMay 12, 2022
Optimizing content for organic rankings requires knowing how Google will interpret searchers' intent — informational, commercial, or navigational.
Fast, Cheap, and Out of Control: Inside Shein’s Sudden RiseMay 9, 2022
The Chinese company has become a fast-fashion juggernaut by appealing to budget-conscious Gen Zers. But its ultralow prices are hiding unacceptable costs.
PURSUIT: A framework for your next great product idea. | UX CollectiveMay 4, 2022
TLDR: Use this quick framework to help you think about product questions. I’ve learned through building product at startups and in large…
Zapier: The $5B unbundling opportunityApr 15, 2022
Zapier has 3M+ users and generates $125M in ARR. At a $5B valuation, its fast-growing horizontal platform is unable to meet the demands of all of its customers. The increase of underserved Zapier customers presents an opportunity.
Best Practices for Outbound Sales SequencesApr 14, 2022
Darryl Praill joins the Predictable Revenue Podcast to share best practices and common mistakes companies make when implementing outbound sales sequences.
I stopped advertising everywhere and nothing happened.Apr 8, 2022
What happens when you turn off all of your Internet advertising? Apparently, nothing. This post explores how I came to the decision to turn off all ads, and what I found as a result.
Improving Shopping Recommendations for Customers Through eBay’s Relevance CApr 7, 2022
Under the new machine learning model, buyers are recommended items that are more aligned to their shopping interests on eBay.
A case study in early-stage startup executionMar 27, 2022
Before joining Wave four years ago, I spoke to a former employee about his experience. He said something that has stayed in my memory ever since: “Wave is really good at execution, so by working at Wave, you’ll learn how to execute very well.” Now that I’ve been here a while, I thought it would be good to write down what really good execution actually looks like in practice and the counterintuitive lessons I’ve learned along the way.
23 Tactical Company Building Lessons, Learned From Scaling Stripe & NotionMar 23, 2022
From Stripe to Notion, Cristina Cordova has worked on some of the biggest products in tech. She shares tactical tidbits on what she’s learned about about scaling companies and shaping your career.
Google brand SERPs: Why you must dominate People Also AskMar 19, 2022
It's time to optimize for People Also Asked questions asked around and about your brand in Google's SERPs. Here's why.
http://limedaring.com/articles/how-i-run-a-marketplace-with-eleven-different-properties-and-5000-vendors/Mar 16, 2022
5 Surprising Findings About How People Actually Buy Clothes and ShoesMar 16, 2022
Retail has been constantly reinventing itself, and participants race to keep up with what feels like a series of epic shifts in consumer preferences. To get a clearer, more-complete picture, we studied the actual decisions made by 1,500 apparel and footwear shoppers in the United States. Our five most surprising findings: shopping is not yet truly omnichannel; when consumers buy online, they purchase more; online journeys take longer than in-store; brand stores and website generate higher spend than multibrand stores; and, very often, consumers just want to buy new versions of an item they already own.
3 Practices That Set Resilient Teams ApartMar 16, 2022
New research reveals that how we perform work as a team contributes more to resilience than external stressors. On resilient teams, individuals feel responsible for energizing each other. This is in stark contrast to teams who are challenged by frustrating ways of working and fractured relationships. As we move into the third year of pandemic uncertainty, adopting three simple practices will help managers build more resilient — and re-energized — teams.
Implementing Usage-Based Pricing: What Your Financial Teams Need to KnowMar 14, 2022
I joined Datadog as VP Finance back in 2015 when the company was still very small. Back then, the company had about 100 employees, was making around $20
The Economics of Data BusinessesMar 10, 2022
How data businesses start, and how they keep going, and growing, and growing.
Set “Non-Goals” and Build a Product Strategy Stack — Lessons For Product LeMar 8, 2022
Ravi Mehta, former CPO at Tinder & Product Exec at TripAdvisor, shares his framework for crafting a crisp product strategy for startups — a 5-step system called the "Product Strategy Stack." He also makes the case for setting "non-goals" and using an alternative to OKRs.
Tearing Down the Pricing of Dollar Shave Club and GilletteFeb 24, 2022
This week we teardown the pricing of Dollar Shave Club and Gillette. Will Dollar Shave Club win out by taking over the bathroom, or can Gillette fight back with over 100 years of brand awareness? We find out in this week's Pricing Page Teardown.
Awesome Package Design Blogs to Inspire Your WorkFeb 24, 2022
If you’re a creative entrepreneur who understands the power of branding in your packaging design, you’re already
The Sales Sandwich by @ttunguzFeb 19, 2022
The most consistent sales leader I’ve worked with hit plan 27 consecutive quarters. How can a sales leader develop similar repeatability? Much goes into it here are the reports he used to manage his team at the board level. The PQR (pipeline-to-quota) funnel is first. Pipeline is the total value of the accounts within a stage or later. Quota is the aggregate quota on the street for the quarter. Divide P by Q to get PQR.
Here’s what actually happens to all your online shopping returnsFeb 18, 2022
Ordering clothes from Chinese fast-fashion brands like Shein is easy. Sending them back is a lot more complicated
Why I changed my mind about advertising | The Sample blogFeb 10, 2022
I used to be very anti-advertising. Fast forward two years and several pivots, and my slightly-less-early-stage business is doing $900 per month in revenue... from ads.
The 4 Main Types of Intellectual Property and Related CostsFeb 10, 2022
There are four primary ways that businesses can protect their intellectual property (IP) assets: patents, trademarks, copyrights, and trade secrets.
How Artists Use Psychology to Price a PaintingFeb 10, 2022
Driven by buyers' need for consistency and explanation, the most popular pricing method uses a surprisingly simple formula based on size.
The Accidental Invention of Bubble WrapFeb 10, 2022
Two inventors turned a failed experiment into an irresistibly poppable product that revolutionized the shipping industry
How to Build an Ecommerce Keyword ListFeb 10, 2022
Keywords are an important building block for ecommerce marketing. Developing and maintaining a keyword list may help an ecommerce business understand shoppers and do a better job of marketing to them. In the context of search engine optimization, searchers' words or phrases summarize their thoughts, questions, or needs. Those keywords represent the language people use to ask for help finding resources online.
Five Reasons to Sell End-to-End Products in Early Markets by @ttunguzFeb 10, 2022
In early and developing markets, selling complete products is often a superior go to market strategy, rather than selling an innovation in a layer in the stack. This is true for five reasons. First, for early customers to generate value from a novel technology, that technology must solve a business problem completely. End-to-end products do that. Layers in the stack don’t. They optimize existing systems. In early markets, customers want to buy a car, not a better camshaft.
What might Amazon’s six-page narrative structure look like?Feb 10, 2022
If you want to move to a Jeff Bezos–style executive meeting without PowerPoint, with a six-page narrative memo, you mustn't forget the narrative. Here's why
The 87 Most Essential Tools For Data-Driven Product ManagementFeb 10, 2022
Like CEOs, data-driven product managers need a variety of different tools, skills, and capabilities. Here's the tools product managers need to succeed.
The Tribal Network Effect (nfx #15)Feb 10, 2022
Today, we’re sharing the newest social nfx we've identified—the 15th type of network effect: Tribal Network Effects.
Storming Reddit's MoatFeb 8, 2022
A Guide to Reddit, Its Key Competitive Advantages, and How to Unbundle It
10 UX lessons I learned building my product from scratchJan 29, 2022
So you like our media brand Growth Quarters? You should join our Growth Quarters event track at TNW2020, where you’ll hear how the most successful founders kickstarted and grew their companies. This article was originally published by Buil
Eight Habits of Expert Software Designers: An Illustrated GuideJan 29, 2022
The best designers employ specific habits, learned practices, and observed principles when they work. Here are a few of them.
The Experience EconomyJan 29, 2022
SAP’s acquisition of Qualtrics shows how the shift in technology has changed business; it is a perfect example of using the Internet to one’s advantage.
Getting the most out of personas - UXMJan 29, 2022
Personas are great, but they are all too often under utilised, or worse mis-used. Find out some tips for creating and using your personas, so that you can get the most out of them.
The Power of a Free PopsicleJan 29, 2022
If you Run a Small Business Park In the Back of the Parking LotJan 29, 2022
As a rule of thumb business owners should be primarily focused on delighting their customers in any way possible. Every subtle interaction should be closely optimized for customer enchantment, and a decision as simple as where to park your car can subconsciously attract or detract a customer.
Do We Create Shoplifters? - Unintended ConsequencesJan 29, 2022
The history of technology is one of subtracting humans and replacing them with machines. Do the unintended consequences include creating shoplifters?
The customers who repeatedly buy doomed productsJan 23, 2022
‘Harbinger customers’ are really good at picking out things that fail — and in the product marketing business, they can be a kiss of death.
Great products do less, but betterJan 17, 2022
When feature bloat can hurt more than help your business goals.
'The most effective technology is technology that no one sees': Lowe's CEOJan 17, 2022
Coming out of a banner year, Marvin Ellison discusses how initiatives put in place years ago contributed to the retailer's success.
Why You Only Need to Test with 5 UsersJan 17, 2022
Elaborate usability tests are a waste of resources. The best results come from testing no more than 5 users and running as many small tests as you can afford.
How we crack the chicken and the egg problemJan 16, 2022
Hatching a Design Marketplace from Scratch at Visually
The Wild, Wonderful World of Estate SalesJan 15, 2022
The estate-sale industry is fragile and persistent in a way that doesn’t square with the story of the world as we have come to expect it.
The power of defaultsJan 14, 2022
The world’s most successful companies all exhibit some form of structural competitive advantage: A defensibility mechanism that protects their margins and profits from competitors over long periods of time. Business strategy books like to refer to these competitive advantages as “economic moats”.
Moxie Marlinspike Blog My first impressions of web3Jan 9, 2022
Despite considering myself a cryptographer, I have not found myself particularly drawn to “crypto.” I don’t think I’ve ever actually said the words “get off my lawn,” but I’m much more likely to click on Pepperidge Farm Remembers flavored memes about how “crypto” used to mean “cryptography” than ...
Be curious, not judgmental - shubhro.comDec 27, 2021
People Don’t Buy Products, They Buy Better Versions of Themselves – ZanderDec 27, 2021
What Apple, Samsung, and Starbucks learned from Pepsi Photo by John Fornander on Unsplash The year was 1957, and Pepsi — like many of the youth at that time — was dealing with an ide…
Recognize Strategic Opportunities with Long-Tail DataDec 12, 2021
Be a strategic thinker by recognizing opportunities at scale with seemingly small and insignificant data.
7 Ways Experiments BreakDec 9, 2021
Common mistakes to avoid when you’re getting started with experimentation
The Design Leadership Playbook: How to Hire, Onboard & Manage a High-ImpactDec 8, 2021
From the high-level perspective of what makes for a great design leader, to the tactical suggestions around the slide that needs to be in your portfolio presentation, Twilio & Segment's Hareem Mannan shares useful advice for every stage of a designer's career.
The Package Is the MessageNov 29, 2021
American consumers can’t resist the lure of a well-designed container. Of all the things I’ve purchased during the pandemic, the most useful has been a box cutter.
The Vinyl Renaissance: Take Those Old Records Off the ShelfNov 29, 2021
If listeners today can stream just about any song they want, why are so many music aficionados still buying records? Ryan Raffaelli and Gold Rush Vinyl CEO Caren Kelleher discuss the resurgence of vinyl.
Product Photography, Part 14: Optimizing for Speed, SearchNov 29, 2021
The final step in product photography is optimizing the images for search engines and page speed. This is the 14th installment in my series on helping ecommerce merchants create better product images. In this post, I'll address making your photos faster to download and more visible in Google's image search.
Marks & Spencer and Whole Foods Show Why Food Package Design Matters - TheNov 29, 2021
European stores like Marks & Spencer and Monoprix, and U.S. chains like Whole Foods, understand the powerful "appetite appeal" of grocery labels.
Finding Memories in Reused Food Containers Like Cool Whip - The New York TiNov 28, 2021
The containers we use over and over, from Cool Whip tubs to Taster’s Choice jars, can evoke stronger feelings than the food that came in them.
Concepts – Stratechery by Ben ThompsonNov 23, 2021
Explore Stratechery by: Concepts | Companies | Topics | Search Aggregation Theory Disruption Theory Incentives Technology and Society Evolution of Technology Media Strategy and Product Management
Commoditizing SuppliersNov 23, 2021
Aggregators, by virtue of owning demand, gain power over suppliers which become modularized and commoditized. The Moat Map The Moat Map describes the correlation between the degree of supplier diff…
Aggregation Theory – Stratechery by Ben ThompsonNov 23, 2021
Aggregation Theory provides a framework to understand the impact of the Internet on nearly all industries.
The end of “click to subscribe, call to cancel”? One of the news industry’sNov 17, 2021
Most U.S. news organizations won't let readers cancel online. The Federal Trade Commission wants that to change.
Finding Language/Market Fit: How to Make Customers Feel Like You’ve Read ThNov 17, 2021
After more than a decade of running B2B growth teams at PayPal and investing at 500 Startups, Matt Lerner now spends his days helping early-stage startups with growth. He's seen firsthand how changes in a handful of words can yield jaw-dropping differences in conversion — and accelerate a startup's course to product/market fit. Here, he makes the case for starting with language/market fit first, and offers up his 4-step process for getting there.
The Highest Paid Person's OpinionNov 13, 2021
Every company makes decisions based on the highest paid person's opinion. It turns out it's just a hypothesis. Here's how to tame it.
There’s Still Profit Potential in Your Low-Profit CustomersNov 11, 2021
Profit desert customers — small, low-profit customers often numbering in the tens of thousands — are an important business segment in most companies. They often amount to about 50–80% of customers and consume about 40–60% of the company’s costs. In some companies, they’re assigned to territory reps as low-revenue “C” accounts, which distracts the reps from selling more lucrative business. In all companies, they create costly complexity in functions ranging from order-taking to fulfilment to after-sales service and returns because these customers are numerous and often inexperienced. The best way to manage your profit desert customers is to cluster them under a unified management structure — a profit desert customer team — rather than having them scattered in sales reps’ portfolios throughout the company. This team should be composed of specialized sales and marketing managers who are solely focused on this customer segment. The author presents three steps these managers should take to bring latent profits to the bottom line.
The “ghost stores” of InstagramNov 3, 2021
That cute dress you bought off Instagram could be found on Shein, AliExpress, or Amazon for much cheaper.
Failure Is An Option: How To Unwind An Unsuccessful Startup The Right Way –Oct 28, 2021
Unwind An Unsuccessful Startup The Right Way - Many startups fail, but few founders prepare for unwinding. Find out how to do this & deal with investors.
A Quickstart Guide to Positioning - April DunfordOct 21, 2021
Want to improve your product's positioning but not sure where to start? This article is going to give you everything you need to get started including what positioning is, why it matters, and how to improve it.
White Label Designs – All About Implementation, Design Systems, and New TecOct 15, 2021
Building white label products is more profitable than starting a new design every time. Learn how to properly implement white labelling.
There's a Giant Warehouse Full of Product Launches That FailedOct 14, 2021
Not open to the public, this expansive archive schools marketers in the art of pitchmanship
The Stories Behind 20 Inventions That Changed the WorldSep 29, 2021
From blood banks and barcodes to the Super Soaker and the pizza box, here are the fascinating stories behind inventions that changed the world.
The Emergence of B2B Raw Material MarketplacesSep 26, 2021
Business-to-business marketplaces are among ecommerce's leading growth trends, yet many industries remain under-served, especially for raw materials.
Food fraud and counterfeit cotton: the detectives untangling the global supply chainSep 22, 2021
The long read: Amid the complex web of international trade, proving the authenticity of a product can be near-impossible. But one company is taking the search to the atomic level
What Spotify and Apple can learn from Chinese podcasting appsSep 14, 2021
Western platforms are still way behind in giving creators (and fans) the tools to succeed.
How Singer Won the Sewing Machine WarSep 14, 2021
The Singer Sewing Machine changed the way America manufactured textiles, but the invention itself was less important than the company’s innovative business
Why payment apps that thrive in India struggle to succeed in MexicoAug 31, 2021
One fintech veteran from India found out the hard way why “Mexicans love cash.”
Speed as a HabitAug 6, 2021
All things being equal, speed will determine whether your company succeeds or not. Here's how to make it core to your culture.
Report Card Writer: What I’ve Learned from One Year of User Interviews and Customer FeedbackJul 29, 2021
Almost exactly a year ago, I started a little boutique software company called Report Card Writer. As the name suggests, my flagship software product does pretty much one thing: it helps teachers write report card comments faster. Its core technical functionality is part survey form, part template-filler-inner, with a few extra bolt-on features that make it easy to create and populate the form and template, respectively.
Why Japan Didn’t Create the iPod (2008)Jul 26, 2021
https://dev-alloy.pantheonsite.io/wp-content/uploads/2020/11/Guide_NoNonsenseForecasting_Alloy_022019.pdfJul 25, 2021
Six emerging trends in product packagingJul 25, 2021
In the modern business world, there are several businesses releasing similar products into the market.
16 Tools to Manage Your ReputationJul 20, 2021
Reputation management is essential for any brand. Your company's future may depend on what’s been said about it in posts, comments, reviews, and rankings. Fortunately, there are affordable tools to help. Here is a list of tools to manage your brand’s reputation.
Why Build ToysJul 13, 2021
I first wrote this essay a few years ago. A founder mentioned it to me over the weekend, and so I decided to re-publish it here. One thing that's bothered me in the time since I wrote it is the way...
The unique culture of Japanese convenience stores - BBC TravelJul 10, 2021
The true star of the Akutagawa Prize-winning novel Convenience Store Woman is the convenience store itself. But what is it that makes these shops so magical?
We replaced rental brokers with softwareJul 10, 2021
Check the requirements, book the viewing, let yourself in, and submit your application, all without emails or phone tag.
Policy Pages, Done Well, Enhance a BrandJul 7, 2021
Shoppers search an online store's policy pages for details on shipping, returns, and more. Rarely are these vital pages engaging. But they should be.
The life cycle of a viral productJul 7, 2021
The video app is causing products to blow up — and flame out — faster than ever.
The Right Way to Ship Software | First Round ReviewJul 5, 2021
An open letter from a former Facebook and VMware engineering executive on how startups can best structure their release processes.
What is Revenue Operations? Your Guide to RevOps SuccessJul 3, 2021
Explore all you need know to make better decisions for your revenue operations team. Learn KPI's and key term that will drive success.
The Great Game of Risk Played in Category Creation, and Why the Winning StrJun 21, 2021
Suppose you’ve started a company that’s creating a category. Most buyers in your target market haven’t heard of your business or the kind of software you sell. There’s no budget line item, no Magic Quadrant, no G2 High Performer Award, no conference. You have an idea, a vast blue ocean in front of you, and a pile of greenbacks stashed in a bank account from your last financing. Do you spend aggressively to create the category or conserve capital, knowing education will take time?
Science SaysJun 17, 2021
3-min marketing recommendations from the latest scientific research. Join 30,000+ marketers, for $0.
Can Apple change ads? — Benedict EvansJun 14, 2021
20 years ago Apple seized music, and turned it into a lever for its broader business. It failed to do the same to TV, and lost control of music, but won massively in games, where it now makes more money than the entire global digital music industry. Now, perhaps, it’s looking at advertising.
We're leaking, and everything's fine: How and why companies deliberately leak secretsJun 12, 2021
Although the protection of secrets is often vital to the survival of organizations, at other times organizations can benefit by deliberately leaking secrets to outsiders. We explore how and why this is the case. We identify two dimensions of leaks:
The Art Of Deliberately Leaking Corporate SecretsJun 12, 2021
Although there may be risks for companies in leaking secrets, the researchers make a strong case for doing so when appropriate. It appears that some of the most prolific and careful leakers are also among the most profitable companies in the world.
How To Leverage a Beta Product Leak | CentercodeJun 12, 2021
You’re a few weeks into managing a beta test for a new product your company plans to release soon. You get an email from someone on your beta team that there has been a leak online. One of your testers took a picture of your company’s new gadget fresh out of the box and posted […]
7 Powers: The Foundations of Business Strategy by Hamilton Helmer – The RabJun 9, 2021
Summary Helmer sets out to create a simple, but not simplistic, strategy compass. His 7 powers include: scale economics, switching costs, cornered resource, counter positioning, branding, network effects, and process. Key Takeaways Strategy: the study of the fundamental determinants of potential business value The objective here is both positive—to reveal the foundations of business value—and […]
Want a killer product? Become more opinionated | by Adil Aijaz | Jun, 2021Jun 5, 2021
I laugh at this tweet every time I remember it:
Distribution and DemandJun 3, 2021
Distribution on the Internet is free; what matters is controlling demand. AT&T and Verizon didn’t understand the distinction.
App Store ArgumentsJun 3, 2021
There are all kinds of arguments to make about the App Store, and nearly all of them are good ones; that’s why the best solution can only come from Apple.
Improving The Performance Of An Online Store (Case Study)Jun 3, 2021
Getting a good performance score from Google is hard for any website — but doing so for an online store is even harder. We achieved green scores — even several for mobile. Here is how we did it.
Boxes, trucks and bikesMay 29, 2021
Should we still be talking about online and offline retail, or about trucks versus boxes versus bikes?
We Can’t Schedule Innovation, But We Can Schedule DiscoveryMay 25, 2021
Every week, I talk with CEOs who tell me they want to speed up innovation. In fact, they want to schedule it. Recently a product leader shared with me an OKR to ship one major innovation each quarter, measured as “users will give each innovative feature a top rating.” This
Predict Customer Churn (the right way) using PyCaretMay 24, 2021
A step-by-step guide on how to predict customer churn the right way using PyCaret that actually optimizes the business objective and improves ROI for the business.
3 Keys for High-converting Product DescriptionsMay 21, 2021
Writing product descriptions sounds simple. But it takes planning. The best descriptions address a broad audience, which is why many companies employ marketers to help. When writing descriptions for the masses, focus on the following three elements.
The Two Flavors Of Churn You Need To Know - Crunchbase NewsMay 18, 2021
Net dollar churn is a more value-driven way of looking at churn.
How TikTok Chooses Which Songs Go ViralMay 12, 2021
When Megan Thee Stallion took off her bright orange mask and walked onstage to accept her Grammy on March 14, she fought back tears and thanked God, her mother, and her managers for helping her become the first female rapper to win the award for best new artist in two decades.
Keep On Connecting: 5 Connectors That Changed The World - OutfunnelMay 11, 2021
Connecting things physically, mechanically or digitally can have profound effects. Here’s a list of 5 connectors that changed the world.
The economics of movie product placementsMay 10, 2021
Today’s films are brimming with products from big-name brands. How exactly do these partnerships work? And is the payoff worth it?
13 eCommerce Site Search Strategies to Boost Revenue from Existing VisitorsMay 7, 2021
Let's be clear about something right at the start: If you're not optimizing your site search to convert more visitors into buyers, you're missing out on
Spotify’s SurpriseMay 1, 2021
Spotify’s new subscription podcast offerings embrace the open ecosystem of podcasts in multiple ways.
Ariyh | Practical marketing tips based on evidenceApr 30, 2021
3-min practical marketing insights based on the latest science from top business schools. No opinions, no flawed data, no BS.
How to think like a detective | Psyche GuidesApr 22, 2021
The best detectives seem to have almost supernatural insight, but their cognitive toolkit is one that anybody can use
15 Years of Spotify: How the Streaming Giant Has Changed and Reinvented the Music IndustryApr 18, 2021
As Spotify turns 15 this month, we look at 15 ways the streaming giant has changed, reinvented and reshaped music and the music business.
Working Backwards - Commonplace - The Commoncog BlogApr 6, 2021
Working Backwards is the first book that explains how Amazon really works.
Research: How to Get Better at Killing Bad ProjectsApr 5, 2021
Most innovation managers know that few of their initiatives will succeed, so they keep multiple projects running at the same time and create processes for quickly separating winners from losers. One popular way to make decisions about what stays and what goes is the use of stage gates. Yet, even with stage gates, firms struggle to kill bad projects. The authors undertook a decade-long review of the product development portfolio at former handset maker Sony Ericsson. They found that that the conventional use of stage gates can actually be part of the problem, impeding project discontinuation in counterintuitive ways.
Why I wouldn't invest in open-source companies, even though I ran one.Apr 4, 2021
After more than 12.000 Github stars, two successful open-source projects, a failed open-core company, and a successful prop-tech one*, I feel more than ever that giving your product away for free is just as bad a business strategy as it sounds.
Evaluating Search AlgorithmsApr 2, 2021
The three-step framework Shopify's Data Science & Engineering team built for evaluating new search algorithms.
Here’s Why Your Ecommerce Subscriptions Aren’t SellingMar 30, 2021
A recurring subscription model is a powerful tool for growth and profit — if you can get subscribers. "A lot of brands install our subscription software
Measure Your Record Release Campaign With These Key Performance IndicatorsMar 28, 2021
Regardless what kind of campaign you're running, being aware of these key performance indicators are necessary for success.
How Shopify Payments Work: All You Want To Know?Mar 22, 2021
Well, if you are planning to sell your stuff online and make money, then there are a few top eCommerce platforms that would help you out. Shopify is the
Oliver Palmer | You probably don’t need A/B testingMar 22, 2021
The best way to optimise your website is usually the simplest.
What I wish I knew before building a Shopify AppMar 21, 2021
The Very Sincere Economics of Greeting CardsMar 21, 2021
It seems like absolutely nobody except your grandmother sends greeting cards anymore, which makes sense, because a text message is so much more immediate and...
How brands are using TikTok as a channel for customer service and product fMar 16, 2021
Brands have unsolicited feedback in their TikTok comments, allowing them to answer customer questions, see trends, and make product changes.
A Thread from @Tocelot: "The best apps today are games in disguise @calm @tMar 15, 2021
Get a selection of good threads from Twitter every day
When should you kill a product? 4 lessons from GitLab’s subscription changeMar 15, 2021
Earlier this year, GitLab got rid of a paid starter offering, trimming its product catalog from 4 subscription tiers to 3 — here's why it makes sense.
No New Categories | Greg KoganMar 8, 2021
In college, I took a self-defense class, taught by Sensei Flagg. The next semester, I took a kickboxing class, taught by Sensei Flagg. The next and final semester, I took an Isshin-Ryū Karate class, taught by Sensei Flagg. It was the exact same class each time. The administrators just couldn’
The 3 Minutes It Takes To Read This Will Improve Your Conversations ForeverMar 4, 2021
How to ask better questions.
Enterprise Gateway Marketplaces Will Turn Large Organizations Inside-OutMar 2, 2021
The marketplace revolution is still just beginning and the enterprise gateway is the newest type of marketplace.
11 TikTok Video Ideas for MerchantsMar 2, 2021
You’ve downloaded TikTok and browsed the videos. Now you’re wondering what content to create for your ecommerce business. There are many types of videos to attract leads without dancing on camera. Here are 11 ideas for all types of merchants.
Reddit: Organized Lightning | The GeneralistMar 1, 2021
One of social media's oldest companies is also its most undervalued.
How to identify your products for GoogleFeb 27, 2021
Manufacturers, retailers and publishers should use structured data and provide an accurate GTIN whenever possible.
Buyer beware: Massive experiment shows why ticket sellers hit you with last-second fees | Haas News | Berkeley HaasFeb 23, 2021
There’s a reason that online ticket sellers hit you with those extra fees after you’ve picked your seats and are ready to click “buy.” Pure profit. A
Start with a NicheFeb 22, 2021
The most popular products don’t become mass popular overnight. It’s a process. Usually they popularity is uneven, they are unknown in some niches, but very popular in another niches.
The Decoy Effect: How You Are Influenced to Choose Without Really Knowing IFeb 21, 2021
Think you got a good deal? Look again.
How to Build an Invention Machine — 6 Lessons That Powered Amazon’s SuccessFeb 19, 2021
Former Amazon execs Colin Bryar and Bill Carr helped build the "invention machine" that enabled the company to successfully launch everything from AWS to the Kindle. Here, they share granular advice and concrete takeaways for startups looking to alter their own trajectories.
How to be more productive without forcing yourselfFeb 19, 2021
Imagine you could work more and be wildly productive. And you wouldn’t need to force yourself to work.
What leader(s) over your product career truly changed how you approach prodFeb 19, 2021
I learned from bosses & peers, including some famous peeps like Reed Hastings, Patty McCord, and Dan Rosensweig. But mainly I learned by doing, supercharged by feedback from many "Friends of Gib."
How A Retail Chain Without A Website Powered Through The PandemicFeb 18, 2021
Burlington shut down online sales in March right before coronavirus lockdowns. But it's among the discount retailers that have endured the pandemic surprisingly well, even opening new stores.
How to Eat an Elephant, One Atomic Concept at a Time - kwokchainFeb 6, 2021
How Figma and Canva are taking on Adobe—and winning In 2010, Photoshop was ubiquitous. Whether you were editing a photo, making a poster, or designing a website, it happened in Photoshop. Today, Adobe looks incredibly strong. They’ve had spectacular stock performance, thanks to clear-eyed management who’ve made bold bets that have paid off. Their transition … Continue reading How to Eat an Elephant, One Atomic Concept at a Time →
Instacart Survived Covid Chaos — But Can It Keep Delivering After The Pandemic?Jan 30, 2021
Apoorva Mehta’s grocery delivery app is now an essential—and booming—business. Now the 34-year-old billionaire has to show he can outfox Bezos, dodge an avalanche of new competitors and calm his rebellious workers and restless partners.
Survival Metrics Are a Powerful Product Tool. Here’s How They Work.Jan 25, 2021
Product teams often know that a project needs to change direction, but they don’t have a way to make that change safely and quickly. Survival metrics empower them to do just that.
When Every Employee Is a Risk ManagerJan 25, 2021
Risk management needs to be part of the daily lives of all employees up, down, and across an organization. Here’s how the Swiss electricity network achieves that.
What Bill Gurley Saw - Commonplace - The Commoncog BlogJan 14, 2021
Some careers can be made on the back of a single, wonderful idea. We take a look at what that looks like, through Bill Gurley's VC career.
The art and science of SaaS pricing: True usage-based pricingJan 10, 2021
Usage-based pricing can be incredibly powerful, particularly in cases where the SaaS solution handles the flow of money.
The art and science of SaaS pricing: Finding the right model fitJan 10, 2021
Part 1 in this 3-part series: Find the pricing model that fits with your particular options for expansion once you've made that first sale.
Product Packaging designs so innovative, they make it impossible to say a nJan 7, 2021
In today's consumer-centric world, packaging designs hold a very important place! A unique and attractive packaging design is what captures the interest and attention of your consumer. It pulls the consumer towards the product and even drives them to purchase it. Hence, allocating time, effort, and energy to create an appealing packaging design is extremely
How Amazon’s Business Practices Harm American Consumers: Why Amazon Needs aJan 6, 2021
Why Amazon Needs a Competitor and Why Walmart Ain’t It
Looks vs. Results: My ugly ad got 150% more clicks than a professional desiJan 4, 2021
Making things look nice can take a long time, either due to lack of resources or abundance of opinions. This could delay launches, frustrate people, and waste precious energy. Those are high costs for startups or companies hoping to move fast. Is it worth it? Long ago I got fed
Laws of Tech: Commoditize Your ComplementJan 3, 2021
A classic pattern in technology economics, identified by Joel Spolsky, is layers of the stack attempting to become monopolies while turning other layers into perfectly-competitive markets which are commoditized, in order to harvest most of the consumer surplus; discussion and examples.
Sustainable Sources of Competitive Advantage · Collaborative FundJan 2, 2021
This article originally appeared on Fortune.com.
Why Competitive Advantages Die · Collaborative FundJan 2, 2021
A few factors I’ve seen pull winners off the podium…
The Top Affiliate Marketing NetworksJan 2, 2021
Looking to grow your affiliate marketing site but aren't sure which affiliate network is right for you? Here's everything you need to know.
Dan McKinley :: Choose Boring TechnologyJan 2, 2021
Status as a Service (StaaS) — Remains of the DayDec 29, 2020
Editor's Note 1 : I have no editor. Editor’s Note 2 : I would like to assure new subscribers to this blog that most my posts are not as long as this one. Or as long as my previous one . My long break from posting here means that this piece is a collection of what would’ve normally been a series
Top Product Management and UX Articles of 2020Dec 22, 2020
These were my favorite product management and UX articles of 2020, which is the 5th year I’ve compiled this list. Though 2020 was a…
You Are Solving The Wrong Problem | UX MagazineDec 19, 2020
When solving a difficult problem, re-ask the problem so the solution helps you learn faster.
Five Lessons From Dave Chappelle – Stratechery by Ben ThompsonDec 18, 2020
Dave Chappelle has a new special about his old show that includes fundamental lessons about how the Internet has changed the content business.
Decisiveness is Just as Important as DeliberationDec 18, 2020
Sometimes, deciding what to do is the easiest part of a decision. Being decisive on an issue you hate is a whole different ballgame.
Startup Idea Validation ToolsDec 18, 2020
Mark Stiving on Value Based Pricing and Price SegmentationDec 18, 2020
Video and slides from Mark Stiving's talk on value based pricing and price segmentation at the Aug-26-2020 Lean Culture Online event.
Lessons from Running a Sale that Earned 3 Month's Profit in a WeekDec 10, 2020
Tips on running successful Black Friday sales for creators and Indie Hackers
The difference between efficacy, effectiveness and efficiencyDec 10, 2020
Efficacy, effectiveness, efficiency… These terms sound confusingly similar. Commonly used in medical research, project management, and decision science, they are often mixed up in everyday conversations. If you’re in a hurry, here’s the difference: Efficacy means getting things done Effectiveness means doing the right things Efficiency means doing things right Sounds confusing? Don’t worry, I ... Read More
With first-party data, Allrecipes is able to bake reader comments into adveDec 10, 2020
Publisher comment sections are not only seen has hotbeds for toxicity, but historically have been very difficult to monetize.
SEO horror stories: Here’s what not to doNov 29, 2020
These three real-life case studies are anonymized to share textbook examples of how not to approach search engine optimization.
Parked Domain name on Hostinger DNS systemNov 29, 2020
Playing on Hard ModeNov 22, 2020
Airbnb and DoorDash both created new markets where ones did not previously exist; they are startups played on “hard” mode.
The 11 Best Dropshipping ToolsNov 20, 2020
How can dropshipping tools give you the edge in the competitive world of e-commerce? We take a look at the 11 best dropshipping tools you should be using.
12 Leadership Lessons from DocuSign CEO Dan SpringerNov 19, 2020
How the Silicon Valley veteran transformed the e-signature pioneer Into a $37 billion powerhouse
As its ecosystem grows, companies are becoming reliant on Shopify for moreNov 13, 2020
Read more in the DTC Briefing, a weekly Modern Retail column about the biggest challenges and trends facing the DTC startup world.
'Growing two times faster than the rest of the market': Inside L'Oreal's e-Nov 10, 2020
If e-commerce was a market for L’Oreal, then it would be the biggest in terms of market value, worth nearly €5 billion ($5.9 billion).
How to develop perfect product using conjoint analysisNov 9, 2020
Make data your unfair competitive advantage
A Guide to Behavioral Segmentation MarketingNov 6, 2020
What is behavioral marketing? Here's how email marketing, demographics, and upsells can be used to monitor and act on customer behavior.
The economics of vending machinesNov 5, 2020
The pandemic has boosted interest in vending machine ownership. We surveyed 20+ operators to find out how much they make.
Forming Experimental Product Hypotheses | by Chris Compston | Agile InsiderNov 3, 2020
An introduction to forming hypothesis statements for product experimentation.
Four Ways to Use Psychology to Win Your Competition's CustomersNov 3, 2020
Some products sell themselves, but habits don’t. They require a bit of finesse.
The amazing value of early and cheap product experiments | by Caroline ParnNov 3, 2020
It’s so important to test your new product idea long before you feel ready.
Six Lessons from Six Months at ShopifyNov 3, 2020
I’m now six months into Shopify. So far it’s going basically on schedule: as I was told, “Your first couple months you’re going to have zero idea what’s going on. Then around month three you’ll com…
Managing your product feeds to thrive in a new retail landscapeNov 3, 2020
To succeed in today’s e-commerce environment, companies must craft an online experience that meshes with the brick-and-mortar brand experience in their physical stores.
The Guide to Product Analytics - Introduction | MixpanelNov 3, 2020
The Guide to Product Analytics taps dozens of product leaders (from companies like Google, Twitter, and LinkedIn) to break down how PMs can use product analytics to drive product-led growth.
Principles for Naming a BrandNov 3, 2020
Finding a brand name can be a painful process but these eight rules, based on brand naming examples, cover everything to get it right.
Video Advertising Glossary - SelectMediaNov 3, 2020
View our video advertising glossary and learn common terms that will help you understand better the world of video advertising.
4 Payment Methods to Integrate for the HolidaysNov 3, 2020
Convenience and security increasingly impact online selling. That's especially the case for the upcoming holiday season, as consumers will likely seek flexible, seamless payment options. Here are four payment methods to consider for this year's holiday selling.
Auction Prices That Take Your Breath AwayNov 3, 2020
Prices for works by some relatively new artists have skyrocketed, seemingly overnight.
6 methods for touch-free and remote paymentsNov 3, 2020
Checking out should be easier, especially now.
How I learned to charge my customersNov 3, 2020
After I completed my first programming class, I went straight to Craigslist. I advertised my programming services. I called myself an experienced programmer who could code anything. I posted a link to
Heuristics to Generate Startup Ideas – Avichal GargNov 3, 2020
I regularly help pre-seed entrepreneurs identify and evaluate potential startup opportunities. The following is a set of heuristics I’ve developed and collected over the years that might of u…
Multi-Armed Bandits and the Stitch Fix Experimentation PlatformNov 3, 2020
We've recently built support for multi-armed bandits into the Stitch Fix experimentation platform. This post will explain how and why.
14 Tools to Sell on Facebook and InstagramNov 3, 2020
Shopping on Facebook and Instagram is finally here. With the recent launches of Shops on both apps and Live Shopping, Facebook is facilitating easier commerce across its platform. Here is a list of tools to help you sell on Facebook and Instagram.
A Business Practical Guide on Churn AnalysisNov 3, 2020
The right way of being practical, theoretical and technical when analyzing churn
Multinomial Mixture Model for Supermarket Shoppers Segmentation (A completeNov 2, 2020
Complete analysis and implementation of a multinomial mixture model for supermarket shopper segmentation and predictive profiles prediction
Instacart Users Segmentation and Market Basket AnalysisNov 2, 2020
Xin Yu, Yingyuan (Valerie) Zhang, Yutong (Grace) Zhu
User Stories | Examples and Template | AtlassianNov 2, 2020
User stories are system requirements often expressed as “persona + need + purpose.” Learn how stories drive agile programs & how to get started.
The cheap pen that changed writing foreverNov 1, 2020
Fountain pens were a stylish statement but messy and impractical. Their replacement was a stroke of design genius perfectly in time for the era of mass production.
Are you outspoken at work? How to use your voice – and not get firedOct 28, 2020
Hello, my name is Andrew, and I can’t stop disagreeing.
Starting a Physical Product Company? You’re Gonna Need a Lawyer.Oct 20, 2020
My name is Molson Hart. I’m the CEO of a consumer products company I founded 10 years ago, called Viahart. We design and distribute toys…
‘Stop asking for a ‘viral’ anything’: Why Ocean Spray’s successful meme canOct 12, 2020
As much as marketers would like to control the narrative around their brands doing so is a fallacy.
The business of ice cream truck musicOct 11, 2020
How a small, family-owned electronics company came to control 97% of the ice cream truck music market.
How a brand of chalk achieved cult status among mathematicians | CNNAug 27, 2020
Hagoromo chalk has developed a cult following among mathematicians. When the company went out of business, chaos ensued.
The 9 best landing page builders in 2020 | ZapierAug 18, 2020
With a great landing page builder, you can get results. We tested dozens of apps, and here are our picks for the 7 best.
Pricing, Packaging and Product: how to use conjoint and maxdiff to get it rAug 11, 2020
I bet your company’s pricing is all wrong. Here’s a 4 step method to get it right.
How the Custom Ringtone Industry Paved the Way for the App Store — and Then VanishedAug 11, 2020
Why I miss Crazy Frog
Inside the Turkish start-up that wants to be your “personal butler” - RestAug 11, 2020
Local shops in Turkey have been transporting groceries for centuries. Getir promises to bring them to your doorstep in 13 minutes or less.
Why Are Toys Such a Bad Business?Aug 10, 2020
Inflections in finance and tech. Click to read The Diff, by Byrne Hobart, a Substack publication.
The Technium: 1,000 True FansAug 10, 2020
This is an edited, updated version of an essay I wrote in 2008 when this now popular idea was embryonic and ragged. I recently rewrote it to convey the core ideas, minus out-of-date details. This revisited essay appears in Tim … Continue reading →
The power of dopey ideas – Tech ReflectAug 10, 2020
RIP Segway, the Dorky Grandfather of MicromobilityAug 10, 2020
The “personal transporter” promised to change cities back in 2001. It didn’t. But its demise should be a warning for today’s urban mobility disrupters.
Come for the Network, Pay for the ToolAug 10, 2020
Paid groups, bespoke social networks, and the meaning of community for internet-native businesses.
The Next Phase of the Retail Apocalypse: Stores Reborn as E-Commerce WarehousesAug 10, 2020
As the demand for in-person shopping diminishes, landlords, startups and retailers are converting abandoned stores into online fulfillment centers.
Sweatpants Forever: How the Fashion Industry Collapsed (Published 2020)Aug 8, 2020
Even before the pandemic, it had started to unravel. What happens now that no one has a reason to dress up?
SEO How-to, Part 10: Redesigns, Migrations, URL Changes | Practical EcommerAug 4, 2020
Changes in content, linking, and URL structure can dramatically impact organic search performance. Thus it's critical to understand the search engine risks and rewards from a new design before you start developing it. This is the 10th installment in my "SEO How-to" series.
Forget virality: This company is betting on podcasts that almost no one wilAug 4, 2020
Artifact is producing podcasts that only you and 4 friends will ever want.
The First Steps in Adding Ecommerce to a Brick-and-mortar StoreAug 2, 2020
Brick-and-mortar retail businesses are turning toward ecommerce to generate revenue — online and click-and-collect. As they make this digital transformation, those merchants will likely have questions about ecommerce platforms, themes, and design. While all of these are important, a company's focus should be on products and marketing first, in my experience.
Product Metrics: Key Insights for DiscoveryJul 26, 2020
Unlock valuable insights for effective discovery by decoding product metrics. Learn how to leverage these metrics to make informed decisions and optimize your product development process.
10 Best Ecommerce Platforms Compared & Rated For 2020Jul 26, 2020
Our top ecommerce builders are based on objective performance data, feature set & value. Check out ecommerce platforms now.
To Get More Replies, Say LessJul 25, 2020
This is a story of how a software company was able to start a conversation with 8x more of their users by cutting the length of their emails by 90%. You could set up a test of this method in less than an hour. The Problem One of the most
How Japan’s pop culture became the ‘lingua franca’ of the internetJul 17, 2020
From toy jeeps and karaoke machines to the Game Boy and Tamagotchi, “Pure Invention” explores how Japan's cultural influence has spread across the globe.
How Nespresso's coffee revolution got ground down | Coffee | The GuardianJul 16, 2020
The long read: Nestlé’s sleek, chic capsule system changed the way we drink coffee. But in an age when everyone’s a coffee snob and waste is wickedness, can it survive?
https://salman.io/posts/polymath-playbook/Jul 14, 2020
Want to build a side business? Just buy a great Domain Name | Deep South VeJul 11, 2020
[updated April, 2022] So you wanna start a side business while holding down a full-time job. Kool. Dang smart move – that’s the same route I took – ten years ago now. Self-funded, no VC to appease, no angel investor to update. Just you, and your sandbox of ambition. Hmm, but where to start? Which ... Read more
How Dixie cups became the breakout startup of the 1918 pandemicJul 9, 2020
Dixie cups were the Zoom of the 1918 pandemic, and they can teach startups a lot about adapting and surviving during hard times.
The Most Famous Loop – alexdanco.comJun 24, 2020
Kevin Kwok had a great essay the other day on Figma, and how its runaway success is based on hundreds of successful loops baked into its product and business model: Why Figma Wins | Kevin Kwok It g…
10 Marketplaces to Buy and Sell Ecommerce SitesJun 23, 2020
A ecosystem of buyers, sellers, and brokers creates a thriving M&A market for digital businesses.
Why Tacit Knowledge is More Important Than Deliberate PracticeJun 14, 2020
What tacit knowledge is, and why it is the most interesting topic in the study of expertise today.
Lateral thinking and "Flintstoning" your way around technical problems - Grid7Jun 9, 2020
Sometimes the best solution to a problem is to step around it. When was the last time you butted your head against a technical challenge and had several failed attempts to solve it? Maybe it was due to limitations of the platform you're using or limitations of your own technical ability. Or ma
Amazon’s New Competitive Advantage: Putting Its Own Products FirstJun 8, 2020
Brands have long been able to bid for the premier slot at the top left of Amazon’s listings, but during the pandemic the online retailer has begun using this position for its private-label items, raising antitrust concerns.
the-high-price-of-dollar-stores | Babson CollegeJun 8, 2020
Learn to build and maintain strong corporate innovation programs via innovation training and innovation infrastructure, with in-person and online innovation courses and advising.
How Auction Houses Orchestrate Sales for Maximum DramaJun 3, 2020
Insiders may already know who’s going to buy what for how much, and lots are presented in a certain order just to build excitement.
ProductHired/open-product-management: A curated list of product managementJun 1, 2020
A curated list of product management advice for technical people. - ProductHired/open-product-management
Good Synthesis is the Start of Good SensemakingJun 1, 2020
When you're faced with uncertainty, the best thing you can do is analyse your inputs, synthesise a new model, and then destroy it to start over again.
goabstract/Marketing-for-Engineers: A curated collection of marketing articles & tools to grow your product.Jun 1, 2020
A curated collection of marketing articles & tools to grow your product. - GitHub - goabstract/Marketing-for-Engineers: A curated collection of marketing articles & tools to grow y...
Not a Funnel! Use Sankey to represent your sales processJun 1, 2020
Traditional sales visualizations miss critical information about what is happening in the sales process.
Habits of High-Functioning TeamsJun 1, 2020
I often struggle to explain what it means to be part of a high-functioning software team. Sure, there are mountains of literature, and an entire genre of LinkedIn thought leadership that professes all kinds of guidelines and heuristics about what makes teams work, but in my experience, it’s hard to internalize these ideas and follow someone else’s model if you’ve never seen what good looks like.
Classic Probability Problem #2: The Coupon ProblemJun 1, 2020
Data Science & Machine Learning Interviews
Pricing with 4 & 9 Scientific StrategiesJun 1, 2020
Idea GenerationJun 1, 2020
The most common question prospective startup founders ask is how to get ideas for startups. The second most common question is if you have any ideas for their startup. But giving founders an idea...
Moats Before (Gross) MarginsJun 1, 2020
In 2019, long before the outbreak of COVID-19, many lower gross margin tech companies were not being well-received by the public markets, and an excessive spotlight was cast by many on company gross margins. In the present moment, that attention has only grown for both public and private companies. We’ve observed a bifurcation in the...
Mental models for designers | Dropbox DesignJun 1, 2020
Curious about product design at Dropbox? Here’s a look at tools we use for solving problems, making decisions, and communicating ideas.
How Tuesday Morning went bankruptMay 29, 2020
After more than 45 years as an off-pricer, the retailer hit the skids when COVID-19 forced its doors shut and zeroed out revenue. Now it hopes to slim down in Chapter 11.
Inside the Flour Company Supplying America’s Sudden Baking ObsessionMay 24, 2020
How King Arthur Flour found itself in the unlikely crosshairs of a pandemic
7 Powers: The Foundations of Business Strategy by Hamilton Wright Helmer |May 20, 2020
7 Powers breaks fresh ground by constructing a comprehe…
Search | StackShare | StackShareMay 17, 2020
Search and browse cloud infrastructure services such as PaaS, IaaS, log management, exception monitoring, realtime backend APIs, and more. Find the right tools and services to build your next app.
Complete guide to machine learning and deep learning in retailMay 16, 2020
The stores aren’t dead yet
Optimization with constraints using Lagrange Multiplier in PythonMay 16, 2020
Lagrange Multiplier on a function with 2 variables with 1 equality constraint
How ceramics brand East Fork transitioned to a pre-sale only modelMay 15, 2020
2020 was the year East Fork ceramics planned to become profitable. Now, that's likely no longer on the table, but the company is using a new model to better handle its balance sheet: pre-sales. Now, new product lines will all be for sale before they're manufactured, as a way to get capital in as early as possible.
The Checklist Manifesto: How to Get Things Right: Gawande, Atul: 9780805091748: Amazon.com: BooksMay 15, 2020
The Checklist Manifesto: How to Get Things Right [Gawande, Atul] on Amazon.com. *FREE* shipping on qualifying offers. The Checklist Manifesto: How to Get Things Right
Patio11’s LawMay 14, 2020
@mmcgrana: Patio11’s Law: The software economy is bigger than you think, even when you take into account Patio11’s Law.1 A few years ago, I woke up in Sunriver, OR, and went to make coffee. The house had one of those bed-and-breakfast-type coffee trays. Drip machine. A stack
5 Principles for Responding to Customer ReviewsMay 14, 2020
In an age where customer word of mouth can quickly go viral, managers can take five proactive actions to get the most lift out of their customers’ good reviews and minimize the bad ones. For positive reviews, managers should delay their response and–when they do respond– make sure the response is generic and short. The authors found that more customized responses — perceived as promotional and thus viewed as disingenuous — negatively affected future reviews. For negative reviews, it’s important to quickly respond to every one with a tailored solution to the specific complaint.
Web Monetization - The EcosystemMay 14, 2020
Greetings, everyone. This post begins a series on Web Monetization and serves to document my learning...
Two lessons on reducing sign-up frictionMay 14, 2020
I learned the hard way how important a carefully designed sign-up process is. I saw a large percentage of interested people fail to sign up because of easily preventable flaws in the flow.
Names, Legal Names, and Fractally Deferred ResponsibilityMay 12, 2020
Don't store legal names, at least not as the default. Here's why, and why it matters.
Finding the Unexpected Wonder in More Than 22,000 International StandardsMay 5, 2020
From brewing tea to making shipping containers.
To Come Up with a Good Idea, Start by Imagining the Worst Idea PossibleMay 3, 2020
Working backwards and breaking free from the norm exposes new and unique opportunities you probably haven’t considered.
AliExpress - Online Shopping for Popular Electronics, Fashion, Home & GardeMay 2, 2020
AliExpress lets you unlock top brands' bestselling electronics, clothing, homewares, toys, sporting equipment, auto parts and more so you can live better for less.
‘It’s bullshit’: Inside the weird, get-rich-quick world of dropshippingMay 1, 2020
In Bali, western immigrants are selling products they've never handled, from countries they've never visited, to consumers they've never met
Can we forget about gamification once and for all? - UX CollectiveApr 28, 2020
If I got a dollar every time I hear about gamification in a meeting, I would be rich. Very rich. And the funny thing is, I don’t really…
The Forgotten Uses of 8 Everyday ObjectsApr 24, 2020
Have you ever actually thrown a pair of gloves in the glove compartment?
How the Game-Changing George Foreman Grill Made HistoryApr 21, 2020
It's been 25 years since an aging prizefighter, a quirky gadget, and iconic ’90s marketing combined to take over the world.
How OKRs can make you a better leaderApr 20, 2020
Leaders need to lead by example using OKRs, showing that they are equally as committed to successful outcomes as anyone on the front lines of the business.
The Rise and Fall of China's Cycling EmpiresApr 17, 2020
China’s bike-sharing firms were supposed to be the next big thing. What happened?
The unsung customer-loyalty hero? The post-purchase experienceMar 27, 2020
See how brands can re-imagine the post-purchase experience to create loyal customers globally.
Why you need customer developmentMar 27, 2020
We should invest at least as much time in understanding our customers as we do in optimizing our product development process.
How Cameo Turned D-List Celebs Into a Monetization MachineMar 18, 2020
Inside the surreal and lucrative two-sided marketplace of mediocre famous people
The Warby Parker clones are implodingMar 10, 2020
How venture capital became the most dangerous thing to happen to now-troubled DTCs like Outdoor Voices, Harry’s, and Casper
How to brainstorm great business ideasMar 9, 2020
It's been said that ideas don't matter, and that only execution does. I wholeheartedly disagree. You need both to succeed, but you can only get so good...
Introducing the Periodic Table of Digital Commerce MarketingMar 9, 2020
Packing an astonishing amount of information into an easy-to-digest visual, it's well worth the download.
The dark side of the platform economy - Platforms, AI, and the Economics ofMar 3, 2020
Channel control, predatory contracting, vertical integration, and the 'God View'
Wayfair is all in on logisticsFeb 29, 2020
Executives insist 2020 is the year Wayfair's logistics investments will show their worth.
‘The Whole System Collapsed’: Inside the Music Industry’s Ongoing Distribution CrisisFeb 25, 2020
After a behind-the-scenes business decision, labels and record stores are having trouble stocking shelves with CDs and vinyl
When Distribution Trumps ProductFeb 24, 2020
If you polled a cross-section of companies about their most important software, accounts payable and accounts receivable software would likely not rank high on their lists. It’s the kind of unglamorous, workhorse software that’s necessary, but often taken for granted. Then, late last year, the cloud-based b2b payments company Bill.com went public—and became the second...
Costco is refreshingly boringFeb 21, 2020
The company's values used to just be considered good business sense. Not anymore.
Startup Economic Lessons from Shen Yun’s Empire — Packy McCormickFeb 19, 2020
You probably think startups have nothing in common with a classical Chinese dance performance. You’re wrong.
How to Ruin a Company with One Bad Process (2014)Feb 19, 2020
“Real quick, whole squad on that real sh*t 0 to 100, n***a, real quick” —Drake, “0 to 100/The Catch Up” I am a giant advocate for technical founders running their own companies, but one consistent way that technical founders deeply harm their businesses is by screwing up the budgeting process. Yes, the budgeting process. How...
Ask a researcher: How do needs drive intent?Feb 19, 2020
Consumer needs spark consumer journeys. How can marketers identify those needs and address them? The latest consumer research from Google will help.
Trademarking color is absurd. But not for the reasons you thinkFeb 19, 2020
Trying to crush other companies' use of color is not only petty; it completely misses the point of branding.
This product has an unpronounceable name. Now what? (from Ask HN)Feb 9, 2020
177K subscribers in the ProductManagement community. Product Management
A startup built around building materials: Yesler marketplace is like ExpedFeb 3, 2020
Matt Meyers spent two decades at Weyerhaeuser dealing with product engineering, manufacturing, software engineering, product development, sales and
Sunday Strategist: Why So Many Things Cost Exactly ZeroJan 21, 2020
Breaking down the boldest bets in business
The Untold Story of the Vegetable Peeler That Changed the WorldJan 20, 2020
The origin story of one of the great icons of 20th-century industrial design.
Sound Decision | The VergeJan 14, 2020
Inside the world of audio branding with Skype’s new pings, bounces, and pops
Canva’s Digital Growth StrategyJan 12, 2020
Canva are one of Australia's most successfull startups. In this case study we analyse how they use digital channels to attract and acquire new users
Elad Blog: A Brief Guide To Startup Pivots (4 Types Of Pivots)Jan 12, 2020
Most of the times, startup don't work. At some point it may make sense to either (1) give up on your original product and to sell the company, (2) shut down what you are doing and return money to investors, or (3) to pivot. You can read more on making the decision to give up in a future article. This post focuses on pivoting for small, early stage companies (e.g. 10 or fewer people).
A 2020 guide to smart discountingDec 31, 2019
Polly Wong, managing partner at Belardi Wong, offers tips for crafting customer offers while avoiding discount fatigue and harm to the bottom line.
Pricing algorithms can learn to collude with each other to raise pricesDec 28, 2019
If you shop on Amazon, an algorithm rather than a human probably set the price of the service or item you bought. Pricing algorithms have become ubiquitous in online retail as automated systems have grown increasingly affordable and easy to implement. But while companies like airlines and hotels have long used machines to set their…
I've Built Multiple Growth Teams. Here's Why I Won't Do It Again. | CXLDec 23, 2019
Big success. Bigger failure. And lots of lessons. Learn why building a growth team may be a multi-million dollar mistake.
How to use returns to build customer loyaltyDec 23, 2019
Returns are on the rise – here’s what you can do to make it your competitive advantage.
Everyone Thinks They’re Managing by Outcomes. Here’s How to Actually Do it.Dec 23, 2019
Have you heard? My new book Continuous Discovery Habits is now available. Get the product trio's guide to a structured and sustainable approach to continuous discovery. Last month, I spoke […]
How interchangeable parts revolutionised the way things are madeDec 23, 2019
One man's desire to create the perfect gun profoundly changed manufacturing.
8 Things to Consider When Building Managed Marketplace Companies - AndreessDec 23, 2019
There might be no more beloved image of the American entrepreneurial spirit than that of neighborhood kids who open a sidewalk lemonade stand on a hot summer day. With a little bit of “capital” from their parents — lemons, water, sugar, a card table, some markers and paper — hard work, and good sidewalk placement,...
Beginner's Guide to Product-Qualified LeadsDec 23, 2019
Unleash the power of Product Qualified Leads to skyrocket your SaaS business growth. Learn to identify, nurture, and convert PQLs now with our guide.
Tails, You Win · Collaborative FundDec 23, 2019
Steamboat Willie put Walt Disney on the map as an animator.
Building a Minimum Viable Product is Like Serving Burnt Pizza — Build Lovable Products InsteadDec 23, 2019
Product builders should aim for lovable, not just viable. Jiaona Zhang (product leader at Dropbox, Airbnb, WeWork and lecturer at Stanford) shares her tactics for building MLPs that win users' hearts.
Why Meetings Go Wrong (And How to Fix Them)Dec 23, 2019
Steven Rogelberg, a professor at UNC Charlotte, has spent decades researching workplace meetings and reports that many of them are a waste of time. Why? Because the vast majority of managers aren’t trained in or reviewed on effective meeting management. He explains how leaders can improve meetings — for example, by welcoming attendees as if they were party guests or banning use of the mute button on conference calls — and how organizations can support these efforts with better practices and policies, from creating meeting-free days to appointing a Chief Meeting Officer. Rogelberg is the author of the book “The Surprising Science of Meetings: How You Can Lead Your Team to Peak Performance” and the HBR article “Why Your Meetings Stink — And What To Do About It.”
Hacks, Methods and Tools to Keyword Research for eCommerce StoresDec 23, 2019
Learn the exact way that I perform keyword research that generates profitable, scalable ROI for eCommerce stores.
How To Design Profitable Sales Funnels On MobileDec 23, 2019
Every website or PWA you build should automate as much prospecting and selling as possible. The only thing is that visitors enter websites with various mindsets, depending on which part of the buying stage they’re at. This means that you can’t just take every person who enters the site through the same path. You have to design a custom sales funnel (or pathway) for each kind of buyer. In this article, Suzanna Scacca will tell you what you need to keep in mind.
There’s an App for That: A Guide to the Product Management Stack | ProductCDec 23, 2019
Purpose-built tools have emerged to help product managers do their jobs more effectively. These make up the product management stack, composed of more than a dozen categories. But what is the actual function of each category? We drill down on everything from roadmapping to onboarding.
Why This Opportunity Solution Tree is Changing the Way Product Teams Work - Product TalkDec 14, 2019
Have you heard? My new book Continuous Discovery Habits is now available. Get the product trio's guide to a structured and sustainable approach to continuous discovery. I’ve found a visual […]
Two Things to Do After Every MeetingNov 6, 2019
To make sure productivity doesn’t slow after you walk out of the room, do two things after and in between meetings.
Startup BenchmarksNov 3, 2019
I joked the other day that some of the best fairytales are written in Excel. While there isn’t a single magic number or set formula, understanding industry benchmarks can be really helpful to…
HBO’s Corpus of Content and Apple’s Lack ThereofNov 2, 2019
Apple TV+ is cheap and barren. HBO Max is expensive and cheapening their brand. Everyone is confused.
Changing Your Pricing Model: How Hired Went from a Transactional to a SubscOct 18, 2019
Hired's Head of Global Revenue, John Kelly, explains how the company successfully transitioned from a transactional to a subscription model.
Visual guide to Agile methodologies for modern product managementOct 18, 2019
Agile methodologies theory, practice, examples, and free templates for product development and product management teams.
Japanese manufacturers use decades of experience to dominate key chemical mOct 9, 2019
Tokyo Ohka Kogyo Co., JSR Corp. and Shin-Etsu Chemical Co.: Three seemingly inconspicuous companies suddenly came into the spotlight in early July when Japan announced it would slap tightened export controls to South Korea on three key chemicals — photoresists, fluorinated polyimide and hydrogen fluoride...
Free Shipping — Real LifeAug 31, 2019
Delivery robots will redefine the meaning of every object they transport
Hooked on Loot Boxes: How Behavioral Design Gets GamersAug 31, 2019
Nir Eyal’s Hooked Model explains how games keep players coming back.
This researcher studied 400,000 knitters and discovered what turns a hobbyAug 31, 2019
An MIT Sloan Ph.D. candidate discovered what turned skilled hobbyists into entrepreneurs.
How exactly Stitch Fix’s “Tinder for clothes” learns your styleAug 30, 2019
Each customer has an individualized style map, laying out her feelings about peasant blouses, A-line dresses, or pencil skirts.
Assembly required – 45 sales tools to build the ultimate tech stackAug 30, 2019
As your sales team grows, your tech stack almost always does too. But figuring out which sales tools you should buy can be a daunting task.
Using Experiments to Launch New ProductsAug 30, 2019
Increasingly, companies are using experiments to guide them in their decision making—but many are still missing opportunities, or are failing to implement experiments well. When it comes to the rollout of new products, one particularly effective new kind of experiment involves randomizing the introduction of new products across a set of markets. Uber used this strategy before rolling out its Express Pool service, and Airbnb did the same before rollout out a new landing-page design. In both cases, the companies gathered data that allowed them to roll out their products with confidence that they would succeed—as indeed they did. Many companies, even those not in the tech sector, can benefit from this kind of experimentation, especially if they follow a few basic guidelines.
Shopping Cart or Wishlist? Saving Products for Later in EcommerceAug 30, 2019
On ecommerce sites, saving shopping-cart items for possible later purchase must be discoverable and low-effort.
Netflix and the Economics of BundlingAug 30, 2019
How does Netflix get away with releasing its movies in theaters on the same day it makes them available for “free” on its streaming platform? The answer is that Netflix is pursuing a fundamentally different business model from everyone else in the industry. Netflix is not in the business of selling individual movies to many different customers. Instead, it’s in the business of selling many different movies to individual customers—in bundles. Bundled subscriptions allow Netflix to practice a different kind of price discrimination from the movie studios. The company doesn’t have to figure out how much a consumer values any individual movie on the service. The bundle does that for them—very profitably.
How to Display Taxes, Fees, and Shipping Charges on Ecommerce SitesAug 30, 2019
Unexpected service fees and special-delivery costs should be disclosed early in the shopping process to avoid losing customers.
Network Effects: Measure Them, Nurture Them (3 of 3)Aug 29, 2019
Some of the most successful companies and products have been predicated on the concept of network effects, where the network becomes more valuable to users as more people use it… if managed well. But you can’t manage what you can’t measure. So, what metrics should you look at to determine if you even have network...
Network Effects: Categories & Debates (2 of 3)Aug 29, 2019
We’ve defined network effects — from what they are and aren’t to how to measure and manage them in practice — but network effects have still always been hotly debated: Where are they, are they real, are they enduring… and so on. So in this second video of our three-part miniseries on network effects, a16z...
Network Effects: So, Is It a Network Effect? (1 of 3)Aug 29, 2019
Some of the most successful companies and products — from the phone era to the internet era — have all been predicated on the concept of network effects, where the network becomes more valuable to users as more people use it. But how do you tell network effects apart from scale effects, brand preference, or...
Unleashing Innovation With Collaboration PlatformsAug 29, 2019
Effective leadership of virtual teams matters more than which collaboration platform you choose.
Applying Discounts and Promotions on Ecommerce WebsitesAug 29, 2019
Coupons and other discounts should be easy to apply and shopping carts should clearly display how the total was affected by the promotion.
Principles for decision-making in a flat organizationAug 29, 2019
Practical thoughts from a back-end team leader
The Subtle Art of User Onboarding & AdoptionAug 29, 2019
The “traditional” user onboarding flows and walkthroughs are dead. Learn about the next era of user onboarding and how to adapt to the changes in your org.
How to Manage Product Strategy and Prioritize Like a Pro? Guide for Product Managers | HackerNoonAug 29, 2019
What will you do in product management if you can not deal with strategic planning? How will you succeed if you are not able to prioritize correctly?
Good decisions don’t have to be slow onesAug 29, 2019
Executives often assume that speed comes at the cost of quality in good decision making. A survey challenges this belief and offers tips on getting the best of both worlds.
Three keys to faster, better decisionsAug 29, 2019
Frustrated decision makers take heart. Three practices can help companies make better decisions more quickly.
How to Negotiate the Price of a Pricey Premium DomainAug 29, 2019
Buying a domain at the asking price? That's like buying a used car at the asking price. Doing your homework pays off.
4 Online Merchandising Hacks to Increase ProfitsAug 29, 2019
Retailers seek to avoid markdowns and sell out of the season at full margin, but it isn’t easy to predict how much inventory to acquire. In this post, I'll address four online merchandising tactics that balance consumer demand with inventory levels, to maximize profits.
How to avoid losses and prune projects proactivelyAug 29, 2019
It’s common for companies to hang on for too long to projects or parts of the business that are underperforming. Two effective techniques can help executives make project investment decisions on when to hold on to an asset and when to let it go.
Value Delivery Patterns Shape Your Pricing ChoicesAug 29, 2019
When you deliver value to your customer is as important as how you deliver value. The when becomes a critical input into designing your pricing model. Learn more here.
The 4 Stages of 0->1 ProductsAug 29, 2019
This was first published on my mailing list The Looking Glass. Every week, I answer a reader’s question.
Disruptive Interfaces & The Emerging Battle To Be The DefaultAug 29, 2019
A new battle is brewing to be the default of every choice we make. As modern interfaces like voice remove options, augmented reality…
5 essential onboarding tactics for complex productsAug 29, 2019
The ideal onboarding path is an easy and frictionless path to finding value. But some products include irreducible complexity – so here are 5 techniques that help to create the magic of a consumer onboarding flow in a complex product with considered actions.
The Ultimate Product Led Growth Resources GuideAug 29, 2019
OpenView's Kyle Poyar presents an inclusive guide featuring the best resources available to help you execute a successful product-led growth strategy.
Beginner’s Guide to Product Qualified Leads (PQLs)Aug 29, 2019
A product qualified lead (PQL) is a lead who has experienced meaningful value using your product through a free trial or freemium model. Learn how to use them in your organization here.
amborle/featmap: The simple user story mapping toolAug 22, 2019
The simple and open source user story mapping tool. - amborle/featmap
Product innovation is not enough to beat a competitor’s network effectsAug 20, 2019
Bird recently announced a new form factor for micromobility, the Bird Cruiser. It’s a cross between an electric scooter, a bicycle and a…
The Shady World of Repair Manuals: Copyrighting for Planned Obsolescence (2Aug 20, 2019
Toshiba has discovered a new way to enforce such planned obsolescence by cutting the repair market off from critical service information. But the cost to society is significant: The e-waste problem is growing; we’re losing thousands of domestic jobs as independent repair shops shut down; and consumers are being forced to replace their hardware much frequently than they should have to.
All the best engineering advice I stole from non-technical peopleAug 20, 2019
As I focus on becoming a better manager of engineers, I have been reflecting more and more on the advice that produced a 10X boost in my…
How SaaS Products Ascend the “Trust Pyramid”Aug 20, 2019
SaaS products may be the future of how we work, but that future will only happen if we can learn how to build trust with your customers.
The Psychology of Prediction · Collaborative FundAug 9, 2019
This report describes 12 common flaws, errors, and misadventures that occur in people’s heads when predictions are made.
Amazon is a boring retailer — Benedict EvansAug 9, 2019
Amazon is so new, and so dramatic in its speed and scale and aggression, that we can easily forget how many of the things it’s doing are actually very old.
How Duolingo Built a $700 Million Company Without Charging UsersAug 5, 2019
“We believe true equality is when spending more can’t buy you a better education.” – Duolingo founders When the language learning software company Rosetta Stone went public in 2009, they… Keep reading
Hidden Networks: Network Effects That Don’t Look Like Network Effects – AndAug 2, 2019
Many of the most consequential projects of the internet era — from Wikipedia to Facebook and bitcoin — have all been predicated on network effects, where the network becomes more valuable to users as more people use it. As a result, we’ve become really good at analyzing and measuring network effects. Whether it’s decreasing customer...
The Art of Saying No to Invites When You REALLY Don't Want to Do SomethingJul 26, 2019
Plus how to actually do it—with sample scripts
Free SaaS tools for companies on a budget (and a pre-formatted budgeting sheet) - Canny BlogJul 25, 2019
Not every SaaS company has endless spare money. One of the biggest piggy bank breakers are the tools we use—and it adds up fast.
Bias Busters: Knowing when to kill a projectJul 23, 2019
You’re keen on encouraging innovation and letting a thousand flowers bloom, but how do you sort the weeds from the seeds?
How to assess the quality of garments: A Beginner's Guide {Part I} — AnuschJul 23, 2019
What's the number one prerequisite to building a high-quality wardrobe? Exactly: You need to be able to recognize a quality garment when you see one. You need to be able to tell the difference between a durable, well-crafted piece and one that looks pretty on the rack but won't last more than half a
A framework for First Principles ThinkingJul 15, 2019
Improve your thinking, become smarter and pioneer the future
The Future of Television | I, CringelyJul 15, 2019
I’ll be surprised if broadcast television in the U.S. survives another decade.
That Time a Guy Cornered the Liquid Soap Market by Sneakily Buying Nearly Every Hand Soap Pump Available in the WorldJul 4, 2019
Robert R. Taylor is a name you’ve probably never heard before. But this serial entrepreneur made his mark on the world of business by coming up with several products you are almost certainly very familiar with. Today we’re going to talk about, on the surface, the most boring of those- liquid hand soap. Something you can thank Mr. Taylor and [...]
How Retailers Use Personalized Prices to Test What You’re Willing to PayJul 3, 2019
Orbitz, the travel website, offers slightly different prices to customers who are shopping through its app or a computer, and even between two different users on the same platform. Some of this may be due to experimentation and testing, but it’s also a sign that web retailers are using technology to try to offer personalized pricing — a practice some might consider a form of price profiling. The goal of this practice is to try to identify an individual’s willingness to pay and adjust the price upward or downward to maximize profits. It’s something shoppers should be aware of as more purchases are made online.
7 Gaps in Google Analytics That Require Additional ToolsJun 23, 2019
Google Analytics is a powerful, free web analytics platform. However, it has gaps that are better served by other tools. I'll address those gaps and tools in this post.
The inherent value of identifiable store trafficMay 29, 2019
Many attributes of the customer journey are very predictable and can be planned for to create and convert inbound store footfall.
Dynamic pricing: Using digital and analytics to take value pricing in the cMay 29, 2019
Rapid, customer-tailored dynamic pricing adjustments being made possible by new digital and advanced-analytics capabilities can generate substantial margin improvement for chemical companies.
Kinds of truthMay 22, 2019
“Gravity’s not just a good idea, it’s the law.” A truth is a useful, reliable statement of how the world is. You can ignore it, but it will cost you, because the world won&#…
The case for general excellenceMay 15, 2019
In his new book, Range, David Epstein argues that although specialization has its virtues, businesses need people with wide horizons and ranges of interests in order to succeed.
The Camera as the App LayerMay 12, 2019
Your phone increasingly knows what you’re taking a picture of. And which apps you have installed. So…
MIT CSAIL details technique for shrinking neural networks without compromisMay 9, 2019
Researchers at MIT's CSAIL have developed a new technique that identifies high-performance subnetworks within neural networks.
Amazon and Target race to revolutionize the cardboard shipping boxMay 8, 2019
The box has never looked better.
What Seven Years at Airbnb Taught Me About Building a BusinessApr 27, 2019
Create strong culture, stay laser-focused on problems, and set wildly ambitious goals
The 3 most effective ways to build trust as a leaderApr 27, 2019
Based on data from 597 people, the best ways to build trust as a leader aren’t what you think they are. How do you build trust as a leader? The answer seems intuitive enough. For many of us, …
Why Isn’t Hulu Better?Apr 26, 2019
When Hulu was launched, in 2008, it had the backing of three major motion-picture studios—21st Century Fox, NBC Universal, and Walt Disney Studios/ABC Television. The service seemed poised to dominate video distribution online—but today it ranks only 8th among streaming services, far behind Netflix, YouTube, and Amazon Prime Video. What happened? From its inception, it turns out, the service faced two major obstacles to success: its ownership structure, which discouraged its members from sharing their most valuable content; and the organizational structure of its members, which focused on their traditional model of doing business, rather than on streaming. But streaming is the future of the entertainment industry, the authors write, and Hulu will only succeed if it acknowledges that truth and adapts its business model accordingly—which, promisingly, it has begun to do.
The Anatomy of a Great DecisionApr 23, 2019
Making better decisions is one of the best skills we can develop. Good decisions save time, money, and stress. Here, we break down what makes a good decision and what we can do to improve our decision-making processes.
Ahead of Its Time, Behind the Curve: Why Evernote Failed to Realize Its PotApr 21, 2019
Evernote has been plagued by a series of managerial missteps and failed product launches. The company’s future is far from certain.
Hustle As StrategyApr 21, 2019
In a world where there are no secrets, where innovations are quickly imitated or become obsolete, the theory of competitive advantage may have had its day. Realistically, ask yourself, If all your competitors gave their strategic plans to each other, would it really make a difference? In 1986, Amar Bhide wrote “Hustle as Strategy” for the Harvard Business Review. At the time, he was an assistant professor at HBS. He examined the dynamics within the financial services market.
People, Products, and Epiphanies – Google Design – MediumApr 21, 2019
How a user-first culture led to a decade of eureka moments at Google UX
The Truth About the Scooter Economy — An Insider’s PerspectiveApr 20, 2019
There is a story arc of the electric scooter market that took the world by storm in 2018, was second-guessed late in the year and has…
A ferocious tank battle in the desert explains how to prepare for the unexpApr 2, 2019
The key is flexibility, according to Trump's former National Security Advisor.
How to Deliver Constructive Feedback in Difficult SituationsMar 28, 2019
Thoughtful, empathetic language can make or break your business relationships
ART OF MONEY GETTINGMar 28, 2019
15 Steps to Understand & Influence User Behavior: A Deep DiveMar 22, 2019
Understanding user behavior is key to understanding how users interact with your product. Here are 15 steps to analyze & change their interactions to your benefit.
$9 Marketing Stack: A Step-by-Step GuideMar 16, 2019
Update 2016-10-18: This tutorial has been updated to reflect the latest version of my stack (now with Drip!). I’ve also updated pricing info (it’s technically a $0 stack now) and screenshots. The original outdated article is archived here. “Just tell me what to do so I can stop
How to Respond to Skepticism of Testing Small Groups of UsersMar 12, 2019
“That’s just one person” and “Our real users aren’t like that” are common objections to findings from qualitative usability testing. Address these concerns proactively to ensure your research is effective.
The Jobs to be Done Data ModelMar 12, 2019
A way to communicate, quantify, validate, and design for a Job to be Done
Why Dollar Tree has struggled to grow Family DollarMar 7, 2019
Dollar Tree has struggled to grow Family Dollar because of its different business model.
The Aldi effect: how one discount supermarket transformed the way Britain sMar 6, 2019
The long read: When Aldi arrived in Britain, Tesco and Sainsbury’s were sure they had nothing to worry about. Three decades later, they know better
The GIST Board — A New Way to Do Planning and Execution | HackerNoonFeb 27, 2019
Done right, GIST keeps the team, management and stakeholders aligned on the why (goals), what (ideas) and how (steps and tasks), and every task we execute is connected to a business goal. A full quarterly plan creates a GIST tree per goal:
The Surprising Value of Obvious InsightsFeb 21, 2019
Confirming what people already believe can sometimes help organizations overcome barriers to change.
Four Key Product Principles from WeChat’s Creator | Andreessen HorowitzFeb 17, 2019
Throughout China, Allen Zhang is known as the “father of WeChat”. Zhang’s public persona has much the same cultural importance and weight as the American legacy of Steve Jobs. He is renowned in China’s tech scene as an artist and philosopher, as well as for his fierce mission against anything that degrades user experience. Product...
Evidence scores — the acid test of your ideasFeb 6, 2019
Finding and building the next big idea is the holy grail of any tech company. Unfortunately the statistics are against us: when subjected…
9 Habits of World Class StartupsFeb 5, 2019
A discussion of the 9 core operating principles that world class companies tend to embrace, by NFX Managing Partner James Currier.
Laundry detergent or boxed wine? How e-commerce is changing packagingFeb 5, 2019
Manufacturers are developing two packaging designs for the same product: those destined for the retail shelf and those sent directly to consumers.
Don't Pay to Acquire Your First UsersJan 26, 2019
Recently, a founder asked to chat with me about SEO. During our call, the founder - whose startup is backed by a top-tier VC - said to me “I assume that you acquired your first users through paid marketing.” Really? Is this an assumption nowadays? Since we’ve raised money
Untuckit is using Amazon to offload older stylesJan 22, 2019
Untuckit is using Amazon to offload older styles -- preferring the marketplace as an alternative over the traditional outlet store.
How PopSockets Prospered after Leaving AmazonJan 13, 2019
PopSockets opted not to be a direct vendor to Amazon. Instead, it chose one major reseller to represent it on the marketplace. But, Amazon would not allow it. So, PopSockets walked away.
Speed as a HabitJan 13, 2019
All things being equal, speed will determine whether your company succeeds or not. Here's how to make it core to your culture.
https://t.co/jaEWMYfgXr?ssr=trueJan 12, 2019
The Dynamics of Network EffectsDec 24, 2018
The most successful companies and products of the internet era have all been predicated on the concept of network effects, where the network becomes more valuable to users as more people use it. This is as true of companies like Amazon and Google as it is for open source projects like Wikipedia and some cryptocurrencies....
Shopify App Store: Ecommerce App MarketplaceDec 22, 2018
Shopify App Store: customize your online store and grow your business with Shopify-approved apps for marketing, store design, fulfillment, and more.
‘It’s their moat’: How Shopify built an $800 million partner ecosystemDec 21, 2018
Shopify is partnering with a network of more than 20,000 app developers and agency partners to build profitable businesses.
5 Pricing Resolutions for 2019Dec 20, 2018
Pricing is a good place to make a few critical resolutions for businesses. Learn the 5 resolutions as you shape your pricing strategy for 2019.
Pain Points - Studio FellowDec 18, 2018
Dear designers/marketers (and innocent person reading this note), So, you’re doing customer interviews and user research, good for you! You’ve joined the fold of responsible, empathetic, and effective product design and marketing professionals. But you sound like a robot when you email me. Here are some questions from user testing emails & surveys I’ve received […]
Op-Ed | How Premium Mediocre Conquered FashionDec 10, 2018
Brands are giving the masses the illusion that they are consuming luxury, when in reality they are doing nothing of the sort, argues Eugene Rabkin.
Inner Workings of Product Management at Product Led Growth CompaniesDec 1, 2018
Product is at the epicenter of everything a product led growth (PLG) company does. So how does the product organization and its PMs need to adapt? Find out here.
25 Ecommerce A/B Testing Ideas For Your 5 Top Store PagesNov 26, 2018
The biggest question in ecommerce A/B testing is not “how.”
Why the Sharing Economy Has Come to ApparelNov 13, 2018
Express and Ann Taylor are just two of several established retailers that have launched clothing rental subscriptions in recent months.
5 Concepts That Will Help Your Team Be More Data-DrivenNov 3, 2018
Data is invading every nook and cranny of every team, department, and company in every industry, everywhere. Developing the talent needed to take full advantage must be a high priority. Indeed, everyone must be able to contribute to improving data quality, interpreting analyses, and conducting their own experiments. It will take decades for the public education systems to churn out enough people with the needed skills — far too long for companies to wait. Fortunately, managers, aided by a senior data scientist engaged for a few hours a week can introduce five powerful “tools” that will help their teams start to use analytics to solve important business problems.
Why so may hip startups advertise with snail mailNov 2, 2018
Casper, Glossier, Harry’s, and Away love to send you mail.
Lumpers and splittersOct 24, 2018
There are two interesting ways to solve a problem, find a startup or even write a blog post. You can lump two previously disparate categories into one. Or you can split a previously coherent catego…
The Power of Price PointsOct 17, 2018
Customer segmentation is not just a revenue tool, but also a way to achieve excellence in execution.
Objections Are GoalsOct 10, 2018
After I published test && commit || revert, I got a variety of responses on Twitter and on Hacker News. The Twitter comments were mostly…
Lessons from Robert Smith of Vista Equity PartnersOct 7, 2018
Robert Smith is the Founder, Chairman, and Chief Executive Officer of Vista Equity Partners. A March 2018 Forbes profile described Vista’s performance: “Since the firm’s inception in 2000, Vi…
dbt Labs Blog | Learn from the experts | dbt LabsSep 29, 2018
Learn more about the data analytics industry, dbt Cloud and dbt Core, as well as company news and updates.
The strength of a monopoly can be guessed at by calling customer supportSep 23, 2018
If you were an alien hovering above planet earth on a quick visit and trying to find out quickly which were its most dominant companies, you could probably do worse than try to reach their customer…
Forget the new iPhones, Apple's best product is now privacySep 15, 2018
Forget the new iPhones, Apple best product is now privacy.
Why we buy the things we buySep 12, 2018
The mysteries of consumer behavior, explained by ice cream and independent bookstores.
Why U.S. Grocery Chains Need More (and Better) Store-Brand ProductsSep 9, 2018
The U.S. grocery industry has reached an uncertain crossroads, facing competition from many sources, but especially German discount stores ALDI and LIDL, who are aggressively expanding across the United States. Whether U.S. retailers will maintain their market share hinges on how they use private-label products (also called white-label goods or store brands) to fight back. In France, grocers were able to repel ALDI and LIDL by offering private-label goods that were both affordable and high quality, but in the UK, retailers chose to offer super-budget private-label items. They might have been cheap, but they were very low-quality, and consumers punished them. The U.S. doesn’t have a lot of experience with private-label goods, so American retailers will have to come up to speed quickly if they hope to maintain their advantage.
Why Adding More Products Isn’t Always the Best Way to GrowAug 28, 2018
Product expansion is often used as a path to growth, but it can have unintended consequences for other aspects of the business — including the customer experience central to the company’s value proposition. Indeed, current trends are moving away from broad offerings in many industries. A recent poll had 64% of consumers saying they would pay more for a simpler, more convenient experience. The trick is, growth strategies have to fit the company’s current context, especially its brand promise and its target market. Once the company has a strategy to fit the context, it can sequence out the various steps to implement it. For example, McDonald’s had known for years that customers wanted all-day breakfast, but to be able to offer it, it first had to streamline and revamp its kitchens.
A Counterintuitive Way to Shape DemandAug 27, 2018
Investing in more efficient ways for consumers to use your core commodity as it faces disruptive competition can be a smart move.
Creating value at industrial companies through advanced pricing techniquesAug 27, 2018
Faced with tough competition and uncertainty in raw-material prices, industrial companies must reset their pricing architecture.
eCommerce 101: Understanding Shopping Cart Abandonment [with Infographic]Aug 23, 2018
An illuminating infographic highlights 10 e-commerce pain points that ruin the user experience and lead to shopping cart abandonment.
Service as a SKU | Andreessen HorowitzAug 21, 2018
Editor’s note: This article by now-a16z general partner Alex Rampell was originally published in 2012 in TechCrunch. The biggest ecommerce opportunity today involves taking offline services and offering them for sale online (O2O commerce). The first generation of O2O commerce was driven by discounting, push-based engagements, and artificial scarcity. The still-unfulfilled opportunity in O2O today is tantamount to...
What PopSugar learned from selling products through text messagesAug 13, 2018
PopSugar said it expects to have 20,000 subscribers by year's end to its text message program, which it's used to sell protein bars and housewares.
Strategy vs. TacticsAug 12, 2018
Strategy and tactics are two terms that get thrown around a lot, often used interchangeably. But what exactly do they mean, what is the difference, and why is it important? In this article, we look at the contrast between strategy and tactics, and the most effective ways to use each, whether you're trying to win a war, start a business, or reach any other important objective.
When Cost-Plus Pricing Is a Good IdeaJul 17, 2018
Cost-plus pricing is a lot like the romance novel genre, in that it’s widely ridiculed yet tremendously popular. The idea behind cost-plus pricing is straightforward. The seller calculates all costs, fixed and variable, that have been or will be incurred in manufacturing the product, and then applies a markup percentage to these costs to estimate the asking price. Though currently out of fashion among pricing experts (for good reason), there are sometimes strategic and pragmatic reasons to use cost-plus pricing. When implemented with forethought and prudence, cost-plus pricing can lead to powerful differentiation, greater customer trust, reduced risk of price wars, and steady, predictable profits for the company.
The Real Benefit of Amazon ReviewsJul 5, 2018
I'm a longtime seller on Amazon's marketplace. I also mentor many sellers and help brands to improve their marketplace sales. And I belong to various
Strategy & Implementation of Third-Party Connections in ProductsJun 5, 2018
Building a product that connects to multiple third-party products is a common approach — an annotated twitter thread exploring strategic…
10 ways to offer shoppers a discountMay 30, 2018
Many online retailers unintentionally train consumers to expect discounts. Clothing stores are amongst the worst offenders. Constant discounting makes full-price shoppers believe they’re being overcharged. They often won’t shop until the next sale, which leads to a vicious cycle. It is a rare company that doesn’t get asked for discounts. In this post, I'll review 10 ways to offer clients a discount.
The Moat MapMay 20, 2018
The Moat Map describes the correlation between the degree of supplier differentiation and the externalization (or internalization) of a company’s network effect.
Indie Hackers: Work Together to Build Profitable Online BusinessesMay 7, 2018
Connect with developers sharing the strategies and revenue numbers behind their companies and side projects.
http://try.instabug.com/product-managersMay 5, 2018
Why sell barbells?May 4, 2018
I'm often asked why I started FringeSport. People inquire, "Of all the things to do, why sell barbells?" I tell them that if I wanted only to make money,
How Spending $20,000 on a Domain Name Uncovered an Incredible Business OppoDec 28, 2017
We explain how we came to spend $20,000 on this domain, and the incredible business opportunities that exist, waiting for someone to bring them to life.
Friction – Stratechery by Ben ThompsonDec 18, 2017
The Internet has removed friction: that means a whole new set of possibilities; it doesn’t mean they are all good.
From Product/Market Fit to Language/Market Fit: A New Brand Storytelling FrDec 15, 2017
LIKE THIS ARTICLE SO FAR? THEN YOU’LL REALLY WANT TO SIGN UP FOR MY NEWSLETTER. IT’S DELIVERED ONCE A WEEK AND PACKED WITH IDEAS ON…
Understanding the value of your customer: CLV 101Nov 24, 2017
At some point, almost every company faces questions like How good are the customers that we acquire? How do they
Amazon’s systematic approachNov 24, 2017
Amazon turned an event into a blockbuster. Here’s a roadmap for retailers who want to replicate its success.
4 Marketing Lessons from Opening a Brick-and-mortar StoreNov 15, 2017
Lessons learned from opening a brick-and-mortar retail store may apply to online merchants, providing insights about promoting products, driving sales,
Selling Products Is Good. Selling Projects Can Be Even BetterOct 26, 2017
Rather than simply selling products, more and more companies have begun to sell projects, helping customers achieve a specific goal on a specific timeframe. For example, consider the evolution of medical device maker Philips. After more than a century of profitable existence, the company has become an intricate, blurred matrix organization. Accountabilities and responsibilities were shared between products, segments, countries, regions, functions, and headquarters. To simplify this convoluted and archaic organization structure, as well as protect its products against commoditization, Philips put projects at center stage. Shifting from selling products or experiences to selling projects requires fundamental shifts across your business — but in a rapidly evolving industry, it can make your company more nimble and responsive to the market.
Useless design features that live onOct 24, 2017
Meet the hidden pressures shaping design, from the waistlines of kings to the whims of 18th Century wagon drivers.
24 Tips for a Winning Win / Loss AnalysisOct 11, 2017
Running a win loss analysis can greatly impact your bottom line. But how do you do so effectively? Get all the tips here.
Onboarding a product manager – do’s and don’ts in the first few weeksOct 10, 2017
Want to get the most out of your first month as a product manager? Want your new hire to hit the ground running? Here's our best practices.
Design the Team You Need to SucceedMay 17, 2017
Part One: Types of Teams Written to sort out my thoughts for my UXDC keynote. If you’d like me to speak at your conference on high performing teams, check out cwodtke.com “High Performing Team” is …
Be Wrong the Right Number of TimesNov 13, 2016
Update, Dec 12, 2016: There is a follow up post discussing the outcome of all of this after the election results were known.
Building an Empire with a Single Brick: Meet Patrick McKenzie — Bench — BloOct 3, 2016
Accounting, bookkeeping, and tax tips to help you understand your small business finances.
What to Do When Satisfied B2B Customers Refuse to Recommend YouOct 3, 2016
To build word of mouth, try these strategies.
The Psychological Difference Between $12.00 and $11.67 - The AtlanticOct 3, 2016
Consumers are primed to see ".99," but prices that deviate from that format can affect the way they interpret the cost.
5 mistakes we all make with product feedbackOct 3, 2016
It rarely makes sense to take product feedback from all users and it never makes sense to get it all at once. Five fixes feedback for your product.
The Dreaded Weekly Status EmailOct 3, 2016
I remember the first time I had to write one of these puppies. I had just been promoted to manager at Yahoo back in 2000, and was running a small team. I was told to “write a status email covering …
The Brooks TurnaroundOct 24, 2008
How speciality running shoe brand Brooks refocused on performance running — and turned the company around.
How to Conduct a Win/Loss Analysis with Zach GoldenAug 24, 2008
Collin interviews Zach Golden, from Anova Consulting Group, to uncover the value and intricacies of win-loss analysis in sales.
productivity-gtd
How to Do Great WorkJan 10, 2026
Embracing the parallel coding agent lifestyleOct 6, 2025
Plus prompt injection attacks against Sora 2 cameos and notes on DSPy and Litestream 0.5.0
AI is a Floor Raiser, not a Ceiling Raiser - ElroyAug 1, 2025
An AI assistant that remembers and sets goals
Improve Developer Onboarding With an Internal Developer PortalDec 1, 2024
Onboarding can be a well-documented, up-to-date, repeatable process that helps new hires become productive quickly without having to ask so many questions.
How to Build Anything Extremely Quickly - Learn How To LearnAug 4, 2024
Do "outline speedrunning": Recursively outline an MVP, speedrun filling it in, and only then go back and perfect. This is a ~10x speed up over the 'loading-bar' style (more on that below) Don't just read this article and move on. Go out and do this for the very next thing you make so y
Use A Work Journal To Recover Focus Faster And Clarify Your ThoughtsJul 15, 2024
You’re working on the most complex problem in computer science: fixing permissions on a deployment pipeline. It’s been 4 days you started on that simple task...
Efficiency: The Transformative Power of Time-BoxingFeb 3, 2024
In the fast-paced rhythm of today's world, managing time effectively is not just an advantage; it's a...
ShoshikantetsuMar 16, 2023
Vectors of ActionFeb 3, 2023
Thinking about your actions as vectors instead of scalars is a helpful mental model to manage your goals. Considering your vectors of action can help you objectively assess your progress, your impact, and your well-being.
Escape the perfectionist trap with the Japanese philosophy of "wabi sabi"Sep 22, 2022
Perfectionism is on the rise, and its consequences for mental health can be devastating. The Japanese philosophy of "wabi sabi" can help.
Henry Rollins on defining successJul 18, 2022
Henry Rollins talks about not labelling what you do, why he’s not interested in advice, the need to make things constantly, and why he’s never had a creative block.
Scott Hanselman's Complete List of Productivity TipsJul 18, 2022
Note Scott Hanselman (me): I had been meaning to write up my productivity tips ...
In Praise of Pointless GoalsJul 9, 2022
These achievements aren’t about productive self-improvement. They’re designed to make the pursuit of joy a deliberate practice.
Productivity 101: How to Use Personal Kanban to Visualize Your WorkJul 5, 2022
The best productivity methods keep your to-dos in front of you and prioritized so you never wonder what to work on next. Some are complicated, but oth
Life Is Not Short | DKB ShowJun 29, 2022
The most surprising thing is that you wouldn’t let anyone steal your property, but you consistently let people steal your time, which is infinitely more valuable.
Getting things doneJun 28, 2022
Alex Vermeer — Life-Hacking. Climbing. Striving for awesome. Coffee.Jun 14, 2022
Life-Hacking. Climbing. Striving for awesome. Coffee.
KanbanJun 13, 2022
An introduction to kanban methodology for agile software development and its benefits for your agile team.
My productivity app is a single .txt fileDec 27, 2021
Something small, every day - Austin KleonDec 24, 2021
The 5 Whys: get to the root of your productivity problemsDec 6, 2021
If you're having trouble with your productivity, consider finding the root using the 5 Whys technique.
Timeboxing: Why It Works and How to Get Started in 2024Jul 18, 2021
Timeboxing is the nearest thing we have to productivity magic, yet most people don’t utilize it. It amounts to boxing out periods of time to work on distinct tasks each day. But when I recommend perhaps the most effective technique ever devised to help people stay on track, most of them balk.
OKAY | Engineering productivity can be measured - just not how you'd expectApr 4, 2021
Bring all your engineering data in one place and build dashboards in minutes
the diminishing returns of productivity cultureFeb 9, 2021
This is the midweek edition of Culture Study — the newsletter from Anne Helen Petersen, which you can read about here. If you like it and want more like it in your inbox, consider subscribing.
What Silicon Valley "Gets" about Software Engineers that Traditional CompanJan 11, 2021
I've worked at various tech companies: from "traditional" shops and consultancies, through an investment bank, to high-growth tech firms. I've also talked with software engineers working at startups, banking, automotive, big tech, and more "traditional" companies. This mix had a healthy sample of Silicon-Valley companies and ones headquartered outside this
Productivity Lessons from Artists and EntrepreneursFeb 19, 2020
A few timeless productivity lessons that apply no matter what you’re doing.
One man’s obsessive, 40-year pursuit of the productive lifeJan 9, 2020
Stephen Wolfram, creator of Mathematica and WolframAlpha, on his carefully-crafted techniques for being effective at work.
The Best Productivity Apps for 2020 – A Complete ListDec 23, 2019
Productivity inspiration and tactical advice that’s actually useful.
Work is a Queue of QueuesDec 23, 2019
Do you ever get that feeling like no matter how hard you work, you just can't keep up? This isn't a problem uniquely faced by modern knowledge workers. It's also a characteristic of certain software systems. This state — of being perpetually behind on intended work-in-progress — can fall naturally…
How to conquer work paralysis like Ernest HemingwayDec 9, 2019
The author wasn’t all about literary masterpieces, dry martinis and rakish charm – he also invented a technique that can beat procrastination and boost productivity.
Two Things to Do After Every MeetingNov 6, 2019
To make sure productivity doesn’t slow after you walk out of the room, do two things after and in between meetings.
I’m Not a Good Web Developer, I’m Just Good at Googling ThingsJun 24, 2019
Dev diaries is a development community providing daily tips and tricks about web development. Learn about how to become a better dev, and get a refreshed perspective on what it means to be a web developer. We share daily web development tips on Instagram, Twitter, Facebook, & Pinterest. Being a good web developer comes down to a lot of things, but one of the major skills is being able to Google and find the right answer on Stackoverflow...
Hustle As StrategyApr 21, 2019
In a world where there are no secrets, where innovations are quickly imitated or become obsolete, the theory of competitive advantage may have had its day. Realistically, ask yourself, If all your competitors gave their strategic plans to each other, would it really make a difference? In 1986, Amar Bhide wrote “Hustle as Strategy” for the Harvard Business Review. At the time, he was an assistant professor at HBS. He examined the dynamics within the financial services market.
Getting Ahead By Being InefficientFeb 5, 2019
Inefficient does not mean ineffective, and it is certainly not the same as lazy. You get things done – just not in the most effective way possible. You’re a bit sloppy, and use more energy. But don’t feel bad about it. There is real value in not being the best.
30 Behaviors That Will Make You Unstoppable In 2019Dec 14, 2018
“Anyone who lives within their means suffers from a lack of imagination.” — Oscar Wilde
How Timeboxing Works and Why It Will Make You More ProductiveDec 14, 2018
In a recent survey of 100 productivity hacks, timeboxing — migrating to-do lists into calendars — was ranked the most useful. Timeboxing can give you a much greater sense of control over your workday. You decide what to do and when to do it, block out all distractions for that timeboxed period, and get it done. The benefits of calendarized timeboxing are many, varied, and highly impactful. The practice improves how we feel (control), how much we achieve as individuals (personal productivity), and how much we achieve in the teams we work in (enhanced collaboration). This may be the single most important skill or practice you can possibly develop as a modern professional, as it buys you so much time to accomplish anything else. It’s also straightforwardly applied and at no cost. Box some time to implement a version of this that works for you.
My magic response to "Hey, can I pick your brain?"Sep 12, 2018
The first few times it happens, it feels like a positive signal. Somebody wants your advice and perspective. You must be good at what you do. And th
LJun 10, 2018
Designing High Performing TeamsMay 17, 2017
This is Part 2 of a three part series on high performing teams. Part one is of Design the Team You Need to Succeed Now you’ve decided you want more than a workgroup, what should you do? What does i…
The Dreaded Weekly Status EmailOct 3, 2016
I remember the first time I had to write one of these puppies. I had just been promoted to manager at Yahoo back in 2000, and was running a small team. I was told to “write a status email covering …
Do Quests Not GoalsAug 24, 2008
South Island, New Zealand, a.k.a. Middle-Earth If you were to make a list of what you want to get done this week, it would mostly consist of things you have to do. Get groceries. Book a hair appointment. Get back to so-and-so. Read that health and safety thing for work. If you were to make a list of things you
projmgmt
Task estimation: Conquering Hofstadter's LawMay 13, 2025
How to turn your time estimates into reliable predictions — and communicate them.
Airbus – A380 – Why Do Projects Fail?Nov 25, 2024
The following entry is a record in the “Catalogue of Catastrophe” - a list of failed or troubled projects from around the world. Airbus SAS - France Project name : A380 Project type : Commercial aircraft development Date : Dec 2000 - Oct 2007 Cost : $6.
Study Finds 268% Higher Failure Rates For Agile Software ProjectsJun 6, 2024
Richard Speed reports via The Register: A study has found that software projects adopting Agile practices are 268 percent more likely to fail than those that do not. Even though the research commissioned by consultancy Engprax could be seen as a thinly veiled plug for Impact Engineering methodology...
Six essential elements of the project discovery phaseMay 21, 2024
Embarking on a new software development project is similar to setting sail on uncharted waters. While the destination might be
The Adventures of ACTION ITEM, Professional Superhero!Apr 18, 2024
The Adventures of Action Item, Professional Superhero - Official Homepage
Planning poker - WikipediaOct 20, 2023
Planning poker, also called Scrum poker, is a consensus-based, gamified technique for estimating, mostly used for timeboxing in Agile principles. In planning poker, members of the group make estimates by playing numbered cards face-down to the table, instead of speaking them aloud. The cards are revealed, and the estimates are then discussed. By hiding the figures in this way, the group can avoid the cognitive bias of anchoring, where the first number spoken aloud sets a precedent for subsequent estimates.
Top 10 reasons why Darth Vader was an amazing project managerDec 21, 2022
The Sith Lord Darth Vader, of Star Wars fame, often gets a bad rap, particularly in what we all think of as his 'dark years'. From a certain perspective his mass murder, brutal oppression, and frequent deception to serve his own ends makes him seem like a pretty bad guy.
Why public chats are better than direct messagesSep 10, 2022
How we communicate makes an enormous impact on our work. One of the best strategies for improving communication in a team is making it open
Acceptance Criteria vs Requirements: Definition and Examples | ProjectPractical.comAug 15, 2022
When you’re defining your software or new product’s requirements, a set of criteria come into play. Acceptance criteria are one part of those criteria that are either agreed upon or come out of client/customer discussions. Unlike requirements, acceptance criteria define what must happen when a decision point such as an objective has been met. Acceptance ... Read more
Products Over ProjectsJul 18, 2022
Projects are a popular way of organizing software efforts, but long-running product teams are often superior
Evidence Based SchedulingJun 23, 2022
Software developers don’t really like to make schedules. Usually, they try to get away without one. “It’ll be done when it’s done!” they say, expecting that such a brave, funny zinger will reduce t…
Setting UX Roles and Responsibilities in Product Development: The RACI TempJun 7, 2022
Use a flexible responsibility-assignment matrix to clarify UX roles and responsibilities, anticipate team collaboration points, and maintain productivity in product development.
42 things I learned from building a production databaseNov 29, 2021
In 2017, I went to Facebook on a sabbatical from my faculty position at Yale. I created a team to build a storage system called Delos at the bottom of the Facebook stack (think of it as Facebook’s version of Chubby). We hit production with a 3-person team in less than a year; and subsequently scaled the team to 30+ engineers spanning multiple sub-teams. In the four years that I led the team (until Spring 2021), we did not experience a single severe outage (nothing higher than a SEV3). The Delos design is well-documented in two academic papers (in OSDI 2020 and SOSP 2021). Delos is currently replacing all uses of ZooKeeper at Facebook.
Research: How to Get Better at Killing Bad ProjectsApr 5, 2021
Most innovation managers know that few of their initiatives will succeed, so they keep multiple projects running at the same time and create processes for quickly separating winners from losers. One popular way to make decisions about what stays and what goes is the use of stage gates. Yet, even with stage gates, firms struggle to kill bad projects. The authors undertook a decade-long review of the product development portfolio at former handset maker Sony Ericsson. They found that that the conventional use of stage gates can actually be part of the problem, impeding project discontinuation in counterintuitive ways.
Make Boring Plans. You’re probably familiar with the… | by Camille FournierJan 24, 2021
You’re probably familiar with the concept of Choose Boring Technology. If you’re not, I’ll wait for you to read the excellent blog post by…
Agile vs. Scrum vs. Kanban: Which Project Management Methodology is Right FAug 11, 2020
Choose the ideal project management methodology. Discover the difference between agile, scrum, and kanban for project management.
How to avoid losses and prune projects proactivelyAug 29, 2019
It’s common for companies to hang on for too long to projects or parts of the business that are underperforming. Two effective techniques can help executives make project investment decisions on when to hold on to an asset and when to let it go.
Trusting the ProcessAug 29, 2019
I am a firm believer that success starts with the statement of work (SOW). An appropriate and attainable SOW determines whether my team of UX designers and researchers get the time and activities we require to fully understand a client’s needs and fashion a suitable solution. Regrettably, we often work within overly prescriptive SOWs that dictate a solution before we have a chance to understand the problem. One reason projects are poorly scoped is our clients’ discomfort with ambiguity. Clients
Project Management Tools Comparison: Jira vs Trello vs MS Project vs BasecaMar 13, 2019
Project management software comparison websites list about 600 different project management tools and choosing the right one can be head-spinning. We provide a list of 6 essential Project Management tools and insights on which types of projects they are most suited for.
prompt-engineering
𝗖𝗹𝗮𝘂𝗱𝗲 𝗦𝗸𝗶𝗹𝗹𝘀 𝗶𝘀 𝗽𝗿𝗼𝗯𝗮𝗯𝗹𝘆 𝘁𝗵𝗲 𝗺𝗼𝘀𝘁 𝘂𝗻𝗱𝗲𝗿𝗿𝗮𝘁𝗲𝗱 𝗳𝗲𝗮𝘁𝘂𝗿𝗲 𝗖𝗹𝗮𝘂𝗱𝗲 𝗵𝗮𝘀 𝗯𝘂𝗶𝗹𝘁. If you’re still writing the same prompts in Claude every day… | Andreas Horn | 13 commentsFeb 23, 2026
𝗖𝗹𝗮𝘂𝗱𝗲 𝗦𝗸𝗶𝗹𝗹𝘀 𝗶𝘀 𝗽𝗿𝗼𝗯𝗮𝗯𝗹𝘆 𝘁𝗵𝗲 𝗺𝗼𝘀𝘁 𝘂𝗻𝗱𝗲𝗿𝗿𝗮𝘁𝗲𝗱 𝗳𝗲𝗮𝘁𝘂𝗿𝗲 𝗖𝗹𝗮𝘂𝗱𝗲 𝗵𝗮𝘀 𝗯𝘂𝗶𝗹𝘁.
If you’re still writing the same prompts in Claude every day, you’re doing extra work. Skills fix that. They package your best instructions once, then you reuse them on demand. Result: less repetition, more consistency, and higher quality outputs because the rules stay stable.
𝗕𝗨𝗧
I can only warn you to install Skills you have not vetted. Read the markdown files carefully - or, if it’s outside your expertise, have someone you trust review them. Yes, there are security risks. But the bigger risk is that the Skill is simply bad. And you end up with worse, more generic outputs than if you had just used the model without it.
I wrote a comprehensive full guide on Claude Skills. Subscribe here to get it: https://lnkd.in/dbf74Y9E
𝗔𝗻𝗱 𝗵𝗲𝗿𝗲 𝗮𝗿𝗲 𝗮𝗹𝗹 𝗿𝗲𝘀𝗼𝘂𝗿𝗰𝗲𝘀 𝘁𝗼 𝗵𝗲𝗹𝗽 𝘆𝗼𝘂 𝗴𝗼 𝗱𝗲𝗲𝗽𝗲𝗿 (𝗮𝗹𝗹 𝗳𝗿𝗲𝗲) 𝘁𝗼 𝗲𝗻𝘀𝘂𝗿𝗲 𝘁𝗵𝗲 𝗵𝗶𝗴𝗵𝗲𝘀𝘁 𝗾𝘂𝗮𝗹𝗶𝘁𝘆 𝗼𝘂𝘁𝗽𝘂𝘁: ⬇️
𝘖𝘍𝘍𝘐𝘊𝘐𝘈𝘓 𝘋𝘖𝘊𝘚
The Unofficial Guide: https://lnkd.in/eNC5QsJp
Best Practices Guide: https://lnkd.in/emxu8Vsr
Skills Documentation: https://lnkd.in/eSzfnUNc
API Reference: https://lnkd.in/erjGW9q5
MCP Documentation: https://lnkd.in/ejKJuNEX
𝘉𝘓𝘖𝘎 𝘗𝘖𝘚𝘛𝘚
Introducing Agent Skills: https://lnkd.in/enrM2tWr
Engineering Blog: https://lnkd.in/eRn5aYyQ
Skills Explained: https://lnkd.in/e8zEX2Fe
How to Create Skills: https://lnkd.in/eDaug-WJ
Skills for Claude Code: https://lnkd.in/eQpjSyBW
Frontend Design Skills: https://lnkd.in/efPCkgWb
𝘌𝘟𝘈𝘔𝘗𝘓𝘌 𝘚𝘒𝘐𝘓𝘓𝘚
Anthropic's Official Library: https://lnkd.in/er2tG4ZB
Partner Skills Directory: https://lnkd.in/ejUcTPjT
𝘊𝘖𝘔𝘔𝘜𝘕𝘐𝘛𝘠 𝘓𝘐𝘉𝘙𝘈𝘙𝘐𝘌𝘚
Skills.sh: skills.sh
SkillsMP: skillsmp.com
Smithery: smithery.ai/skills
SkillHub: skillhub.club
| 13 comments on LinkedIn
🐣(Claude Code Beginners Guide) Multi-Agent Orchestration: Run Claude Code Like a 5-Person Team | NotionFeb 21, 2026
Quick note before you jump in:
Add Reasoning Skills to Your LLM Apps | Aman KharwalJan 20, 2026
In this article, I’ll walk you through a guided project to add reasoning skills to your LLM apps. Add Reasoning Skills to Your LLM Apps.
Prompt caching: 10x cheaper LLM tokens, but how? | ngrok blogDec 19, 2025
A far more detailed explanation of prompt caching than anyone asked for.
https://venturebeat.com/ai/researchers-find-adding-this-one-simple-sentence-to-prompts-makes-ai-modelsOct 17, 2025
Just Talk To It - the no-bs Way of Agentic Engineering | Peter SteinbergerOct 14, 2025
A practical guide to working with AI coding agents without the hype.
These psychological tricks can get LLMs to respond to “forbidden” promptsSep 3, 2025
Study shows how patterns in LLM training data can lead to “parahuman” responses.
Method Iteration: An LLM Prompting TechniqueAug 30, 2025
TLDR: Method Iteration is a prompting technique that gives better responses to hard problems. …
A Technical Roadmap to Context Engineering in LLMs: Mechanisms, Benchmarks, and Open ChallengesAug 3, 2025
Context engineering for large language models—frameworks, architectures, and strategies to optimize AI reasoning, and scalability
Simon Willison on system-promptsJul 26, 2025
42 posts tagged ‘system-prompts’. The hidden prompts that LLM applications use to specify how they should behave.
🔍 Perplexity 101: Ultimate Guide to Deep Search, Labs, Templates & 53 Pro PromptsJul 13, 2025
Your complete playbook for transforming how you research with AI's most powerful search engine
Build a 'Memory' for Your AI: The No-Code Guide to System PromptingJun 28, 2025
AI Rabbit Hole | Date: June 21, 2025
ai-agent-starter-kit/expert-guides/07-google-prompt-engineering.pdf at main · HeyNina101/ai-agent-starter-kitJun 22, 2025
A collection of expert guides and tutorials on how to build real AI agents. Includes resources from OpenAI, Anthropic, Google, and others working on production-level systems - HeyNina101/ai-agent-s...
Highlights from the Claude 4 system promptMay 27, 2025
Anthropic publish most of the system prompts for their chat models as part of their release notes. They recently shared the new prompts for both Claude Opus 4 and Claude …
GPT-4.1 Prompting Guide | OpenAI CookbookMay 15, 2025
Open-source examples and guides for building with the OpenAI API. Browse a collection of snippets, advanced techniques and walkthroughs. Share your own examples and guides.
22365_3_Prompt Engineering_v7 (1).pdfMay 7, 2025
Prompt Engineering | KaggleMay 7, 2025
Kaggle is the world’s largest data science community with powerful tools and resources to help you achieve your data science goals.
How To Build An Agent | AmpApr 16, 2025
Building a fully functional, code-editing agent in less than 400 lines.
An LLM Query Understanding ServiceApr 10, 2025
Doug Turnbull recently wrote about how [all search is structured now](https://softwaredoug.com/blog/2025/04/02/all-search-structured-now): Many times, even a small open source LLM will be able to turn a search query into reasonable …
Function calling with GemmaMar 26, 2025
Google's Gemma 3 model (the 27B variant is particularly capable, I've been trying it out [via Ollama](https://ollama.com/library/gemma3)) supports function calling exclusively through prompt engineering. The official documentation describes two recommended …
5 Principles for Writing Effective Prompts (2025 Update)Feb 24, 2025
Solid techniques to get really good results from any LLM
Greg Brockman shared this template for promptingFeb 24, 2025
OpenAI's president Greg Brockman recently shared this cool template for prompting their reasoning models o1/o3. Turns out, this is great for ANY reasoning… | 32 comments on LinkedIn
ChatGPT Operator system promptJan 26, 2025
Johann Rehberger snagged a copy of the [ChatGPT Operator](https://simonwillison.net/2025/Jan/23/introducing-operator/) system prompt. As usual, the system prompt doubles as better written documentation than any of the official sources. It asks users …
Inbox | SubstackJan 22, 2025
7 Next-Generation Prompt Engineering Techniques - MachineLearningMastery.comJan 9, 2025
[caption align=
A Comprehensive Overview of Prompt Engineering for ChatGPTJun 30, 2024
Prompt engineering is crucial to leveraging ChatGPT's capabilities, enabling users to elicit relevant, accurate, high-quality responses from the model. As language models like ChatGPT become more sophisticated, mastering the art of crafting effective prompts has become essential. This comprehensive overview delves into prompt engineering principles, techniques, and best practices, providing a detailed understanding drawn from multiple authoritative sources. Understanding Prompt Engineering Prompt engineering involves the deliberate design and refinement of input prompts to influence the output of a language model like ChatGPT. The efficacy of a prompt directly impacts the relevance and coherence of the AI's responses. Effective prompt engineering
ChatGPT Prompt for an Evidence-Based Narrative | by Brad Porter | Jun, 2024Jun 30, 2024
Amazon trained me to write evidence-based narratives. I love the format. It’s a clear and compelling way to present information to drive…
Some Commonly Used Advanced Prompt Engineering Techniques Explained Using SJun 22, 2024
In the developing field of Artificial Intelligence (AI), the ability to think quickly has become increasingly significant. The necessity of communicating with AI models efficiently becomes critical as these models get more complex. In this article we will explain a number of sophisticated prompt engineering strategies, simplifying these difficult ideas through straightforward human metaphors. The techniques and their examples have been discussed to see how they resemble human approaches to problem-solving. Chaining Methods Analogy: Solving a problem step-by-step. Chaining techniques are similar to solving an issue one step at a time. Chaining techniques include directing the AI via a systematic
How to use Perplexity in your PM workJun 12, 2024
27 examples (with actual prompts) of how product managers are using Perplexity today
Three Things to Know About Prompting LLMsJun 11, 2024
Apply these techniques when crafting prompts for large language models to elicit more relevant responses.
Intro & Table of ContentsMay 20, 2024
Anthropic AI Launches a Prompt Engineering Tool that Generates Production-RMay 11, 2024
Generative AI (GenAI) tools have come a long way. Believe it or not, the first generative AI tools were introduced in the 1960s in a Chatbot. Still, it was only in 2014 that generative adversarial networks (GANs) were introduced, a type of Machine Learning (ML) algorithm that allowed generative AI to finally create authentic images, videos, and audio of real people. In 2024, we can create anything imaginable using generative AI tools like ChatGPT, DALL-E, and others. However, there is a problem. We can use those AI tools but can not get the most out of them or use them
Unlocking AI’s Potential: A Comprehensive Survey of Prompt Engineering TechFeb 29, 2024
Prompt engineering has burgeoned into a pivotal technique for augmenting the capabilities of large language models (LLMs) and vision-language models (VLMs), utilizing task-specific instructions or prompts to amplify model efficacy without altering core model parameters. These prompts range from natural language instructions that provide context to guide the model to learning vector representations that activate relevant knowledge, fostering success in myriad applications like question-answering and commonsense reasoning. Despite its burgeoning use, a systematic organization and understanding of the diverse prompt engineering methods still need to be discovered. This survey by researchers from the Indian Institute of Technology Patna, Stanford University,
17 Tips to Take Your ChatGPT Prompts to the Next LevelFeb 28, 2024
Sure, anyone can use OpenAI’s chatbot. But with smart engineering, you can get way more interesting results.
The Art of Engineering AI PromptsFeb 22, 2024
In the rapidly evolving world of artificial intelligence, the ability to communicate effectively with AI tools has become an indispensable skill. Whether you're generating content, solving complex data problems, or creating stunning digital art, the quality of the outcomes you receive is directly…
Unlocking GPT-4 Summarization with Chain of Density PromptingOct 20, 2023
Unlock the power of GPT-4 summarization with Chain of Density (CoD), a technique that attempts to balance information density for high-quality summaries.
Parallel Processing in Prompt Engineering: The Skeleton-of-Thought TechniquOct 7, 2023
Explore how the Skeleton-of-Thought prompt engineering technique enhances generative AI by reducing latency, offering structured output, and optimizing projects.
A Prompt Pattern CatalogOct 3, 2023
Large Language Model Prompt Engineering for Complex Summarization - ISE DevSep 25, 2023
Learn how to use GPT / LLMs to create complex summaries such as for medical text
Promptpack: Using Code Interpreter to crack your marketing funnelSep 25, 2023
Our first Promptpack for businesses
Prompt Engineering — How to trick AI into solving your problemsAug 31, 2023
7 prompting tricks, Langchain, and Python example code
Chaining PromptsAug 14, 2023
In this chapter, you'll learn how to concatenate multiple endpoints in order to generate text. You'll apply this by creating a story.
Chain of Thought Prompting for LLMsJul 28, 2023
A practical and simple approach for “reasoning” with LLMs
Edge 309: What is Active Prompting?Jul 22, 2023
Understanding one of the most effective techniques to improve the effectiveness of prompts in LLM applications.
Unraveling the Power of Chain-of-Thought Prompting in Large Language ModelsJul 12, 2023
This article delves into the concept of Chain-of-Thought (CoT) prompting, a technique that enhances the reasoning capabilities of large language models (LLMs). It discusses the principles behind CoT prompting, its application, and its impact on the performance of LLMs.
10 Tools for ChatGPT Prompt Ideas - Practical EcommerceJul 12, 2023
An effective prompt is the first step in benefitting from ChatGPT. That's the challenge — an effective prompt.
ChatGPT Prompts: A Guide for Developers ??Jul 10, 2023
In this article, we will demonstrate how to use different prompts to ask ChatGPT for help and make...
The Art of Prompt Design: Use Clear SyntaxMay 28, 2023
Explore how clear syntax can enable you to communicate intent to language models, and also help ensure that outputs are easy to parse
ChatGPT Prompts for Text AnalysisMay 28, 2023
ChatGPT can generate usable content. But it can also analyze existing content — articles, descriptions — and suggest improvements for SEO and social media.
The Art of Prompt Design: Prompt Boundaries and Token HealingMay 28, 2023
Learn how standard greedy tokenization introduces a subtle and powerful bias that can have all kinds of unintended consequences.
The Emerging Art of Prompt EngineeringMay 27, 2023
Our weekly selection of must-read Editors’ Picks and original features
WTF is prompt engineering?May 27, 2023
Prompt engineering is an emerging skill and one companies are looking to hire for as they employ more AI tools. And yet dedicated prompt engineering roles may be somewhat short-lived as workforces become more proficient in using the tools.
Prompt EngineeringApr 14, 2023
Prompt Engineering, also known as In-Context Prompting, refers to methods for how to communicate with LLM to steer its behavior for desired outcomes without updating the model weights. It is an empirical science and the effect of prompt engineering methods can vary a lot among models, thus requiring heavy experimentation and heuristics. This post only focuses on prompt engineering for autoregressive language models, so nothing with Cloze tests, image generation or multimodality models.
NirDiamant/Prompt_EngineeringOct 24, 2010
This repository offers a comprehensive collection of tutorials and implementations for Prompt Engineering techniques, ranging from fundamental concepts to advanced strategies. It serves as an essen...
A Word Please: Coffee-shop prompt stirs ChatGPT to brew up bland copySep 24, 2009
A comparison between a report written by a human and one composed by AI reveals the weaknesses of the latter when it comes to journalism.
propaganda
Winning with misinformation: New research identifies link between endorsing easily disproven claims and prioritizing symbolic strengthOct 15, 2025
Conversations around misinformation that assume everyone cares about literal truth may be missing the point.
How to Tackle Truth DecayMar 5, 2024
The social contract of trust between experts and society is in danger of dissolving. We need to start putting it back together.
51 Propaganda Techniques Explained in 11 Minutes: From Cognitive DissonanceJan 10, 2024
The concept of propaganda has a great deal of power to fascinate. So does the very word propaganda, which to most of us today sounds faintly exotic, as if it referred mainly to phenomena from distant places and times.
The Story Behind BanksyNov 20, 2022
On his way to becoming an international icon, the subversive and secretive street artist turned the art world upside-down
Twitter analysis: identifying a propaganda bot networkDec 23, 2019
Conducting a Twitter network analysis uncovers a widespread bot network targeting West Papua with pro-Indonesian Government content on major social platforms.
prophet
Getting started predicting time series data with Facebook ProphetFeb 19, 2024
This article aims to take away the entry barriers to get started with time series analysis in a hands-on tutorial using Prophet
Real-world website visitor forecast with Facebook Prophet: A Complete TutorMar 10, 2022
As a data analyst at Microsoft, I must investigate and understand time-series data every day. Besides looking at some key performance…
fb-prophet/01_docs.ipynb at master · bjpcjp/fb-prophetJan 17, 2022
Prophet (FB time series prediction package) docs to Python code. - bjpcjp/fb-prophet
Prophet | Forecasting at scale.May 5, 2021
Prophet is a forecasting procedure implemented in R and Python. It is fast and provides completely automated forecasts that can be tuned by hand by data scientists and analysts.
Forecasting the Copper Producer Price Index with ProphetDec 18, 2020
Using Prophet to forecast commodity prices
prospect-theory
The Behavioral Economics Of AI Agents - Why Consistency Doesn't Equal Trust - DataconomyDec 15, 2025
The AI industry has a trust problem that mirrors a paradox Daniel Kahneman identified decades ago in human decision-making: people
How to avoid cognitive biases when you get paid to think - Inverted PassionJul 18, 2022
One of the major findings in last 50 years has been what people had suspected all along: human thinking and judgment often isn’t rational. By this, I mean given a situation where someone has to make a decision, she will often take a decision that “leaps” to her immediately rather taking than a decision that… Read More
Prospect Theory: What It Is and How It Works, With ExamplesJul 18, 2022
Prospect theory argues that if given the option, people prefer more certain gains rather than the prospect of larger gains with more risk.
Risk Discounts and Usage-Based Pricing - OpenViewJun 24, 2022
You’re probably not aware of it, but the price of your product includes a risk discount.
The Behavioral Economics of Price-SettingDec 8, 2021
Prospect theory proposes that when making decisions people use a reference point to frame prospective alternative outcomes as either potential gains or losses; when considering prospective gains, they are risk-averse and prefer certainty, but when considering prospective losses, they are risk-prone and prefer to risk the possibility of larger but uncertain losses. However, when setting
Making the Fogg Behavior Model actionableApr 19, 2019
Whether you are helping your users establish habits, engage in something new or unknown, onboard, or just want to motivate your users into giving your product a try, the Fogg Behavior Model can guide you.
Reciprocity DecayMar 12, 2019
Our desire to give back wanes rapidly with time - Why if you want people to return a favor, you need to act fast
How To Get Precisely What You WantJan 7, 2019
“Imagination is absolutely critical to the quality of our lives.
psychology
A Defense Against Gaslighting SociopathsDec 30, 2025
If you can recognize their signature move, then forewarned is forearmed.
The Psychology of FashionDec 22, 2025
Leslie Jamison reviews “Dress, Dreams, and Desire,” a new book by the fashion historian Valerie Steele, and discusses the accompanying exhibition at the Museum at the Fashion Institute of Technology, and the place that clothing had in the works of Freud and Lacan.
Why are we curious about some things and indifferent to others? | Psyche IdeasDec 9, 2025
Many of us crave trivial details while ignoring much of the world around us. Research helps explain this selective curiosity
The neuroscience of rejection: The surprising way your brain learns from being left outAug 26, 2025
Rejection stings, but scientists suggest it’s more than just emotional pain. New research indicates our brains treat social slights as learning signals, helping us recalibrate who values us and shaping how we navigate relationships and future connections.
A New Doorway to the BrainAug 16, 2023
Neuroscientists can now explore the “wild west” in our heads in incredible detail—a boon to medicine and understanding what makes us tick.
Brainwashing has a grim history that we shouldn’t dismiss | Psyche IdeasNov 29, 2021
Scientific research and historical accounts can help us identify and dissect the threat of ‘coercive persuasion’
The 10 Must-Read Psychology Books Every Human Being Should Read | DurmonskiJul 13, 2021
Regardless of where you are in the pathway of understanding how the human psyche works, this list of must-read psychology books will upgrade your personal library.
Why do you feel lonely? Neuroscience is starting to find answers.May 29, 2021
A neuroscientist’s hunt for loneliness could help us better understand the costs of social isolation.
All Personal FeedsFeb 9, 2021
Iga Swiatek of Poland came out of nowhere to win the French Open in October. A sports psychologist was with her all the way.
Navigating the mind: 40 major fields of psychology and neuroscienceFeb 6, 2021
Psychology and neuroscience are such rapidly growing fields of research, it’s easy to get confused. If you’ve sometimes been scratching your head trying to figure out who does what, this guide is for you. We will cover 40 major fields of psychology and neuroscience using plain language explanations.
How the Brain Responds to BeautyFeb 5, 2021
Scientists search for the neural basis of an enigmatic experience
Hacker NewsJan 25, 2021
Feeling stressed, irritable, or moody? Doing something productive with your hands might be just the thing that your brain and body need.
How to be lucky | Psyche GuidesJan 22, 2021
Most of us think that luck just happens (or doesn’t) but everyone can learn to look for the unexpected and find serendipity
A Quick And Easy Survival Guide For Dealing With JerksJul 5, 2019
Because some people never outgrow being bullies.
When Your Child Is a PsychopathFeb 9, 2019
The condition has long been considered untreatable. Experts can spot it in a child as young as 3 or 4. But a new clinical approach offers hope.
public-policy
The ‘Godmother’ of Weed vs. Her Uncle, the DEA Agent | THE CITY — NYC NewsFeb 17, 2026
Cannabis officials courted a rising pot star to join New York’s legal market. Then a stunning police raid upended everything and shattered her family.
https://www.lesswrong.com/posts/FreZTE9Bc7reNnap7/life-at-the-frontlines-of-demographic-collapseFeb 14, 2026
Who Is Paying for the 2025 U.S. Tariffs? - Liberty Street EconomicsFeb 13, 2026
Over the course of 2025, the average tariff rate on U.S. imports increased from 2.6 to 13 percent. In this blog post, we ask how much of the tariffs were paid by the U.S., using import data through November 2025. We find that nearly 90 percent of the tariffs’ economic burden fell on U.S. firms and consumers.
Who are the Top 100 Landowners in the US? | Land Report 100Feb 9, 2026
Land Report 100
Explore the 2025 Top 100 U.S. Landowners. View Top 100
Presented by:
Land Report 100
Explore the 2025 Top 100
U.S. Landowners. View Top 100
Presented by:
Land Report 100
Who is America's
Largest Landowner?
This question is the quest
Stop incentivizing surface parking lotsFeb 4, 2026
They are draining the economic potential of our cities. We need to make them financially unsustainable.
Why American needs fewer bus stopsJan 20, 2026
Removing them can turn a service people tolerate into one they’re happy to use.
How a small island capital reimagines the bureaucratic state | Aeon EssaysJan 20, 2026
Buka Town in Bougainville shows how bureaucratic states could be reimagined, not as concrete buildings but as living gardens
How to spot a monopoly - Works in Progress MagazineDec 4, 2025
Competition makes capitalism work. A new method for measuring it may be the holy grail of economic regulation.
How Co-Ops Electrified America—AsteriskSep 29, 2025
In the 1930s, private utilities balked at the task of bringing electricity to rural America. A New Deal agency figured out how to do it more quickly and more cheaply than anyone expected.
A Team Tries to Prevent Another Mass ShootingSep 28, 2025
A threat on a school bus from an alienated young man united dozens of agencies to answer a single question: Is it possible to stop potential mass shooters before they commit a crime?
How America cut deadly city fires in halfSep 28, 2025
The major decline in city fires, explained in two charts.
The death rays that guard lifeSep 18, 2025
We disinfect water before we drink it. Why don’t we disinfect the air before we breathe it?
How market design can feed the poorSep 15, 2025
America's largest non-profit had a broken distribution system. University of Chicago economists fixed it.
Ecommerce after De Minimis Tariff ExemptionAug 31, 2025
What began as a convenience rule in the 1930s grew into a key component of global ecommerce.
The Virtue of IntegrityAug 13, 2025
The only way out of our wreckage is to rewrite the cultural script, to make excellence in character admired again.
How price increases are adding up at SheinJul 28, 2025
Evidence for the impact of Trump’s trade war has shown up at the popular China-founded online retailer.
How Much Freedom of Speech is Too Much? (From a Philosophy of Language Point of View)Jul 24, 2025
On February 14, 2025, the Vice President of the United States, J.D. Vance, accused European countries of being too restrictive in their approach to freedom of speech at the Security Conference in Munich. The message: the United States should be taken as an example, especially under the Trump administration. In fact, the United States has
Disneyland of the DeadJul 22, 2025
London’s Highgate Cemetery shows us just how hard it is to keep the dead buried.
Why Are Homes in Western States So Expensive?Jun 26, 2025
Earlier this month I came across the following graphic, originally posted on Reddit in 2022, showing the state of housing affordability in the US.
How to redraw a cityJun 12, 2025
Japan faced some of the world’s toughest planning problems. It solved them by letting homeowners redesign neighborhoods together.
A grassroots effort brought public transit to Monroe CountyJun 1, 2025
Monroe County has three new bus routes operated by the Mountain Transit Authority as a result of grassroots organizing efforts.
A Spring in Every Kitchen — The New AtlantisMay 1, 2025
We know how to produce clean water. Why don't we have enough of it?
How Will the Trump Tariffs Affect Construction?Feb 12, 2025
Earlier this month the Trump administration announced hefty 25% tariffs on Canadian and Mexican imports, along with an additional 10% tariffs on Chinese imports.
America Doesn’t Just Have a Housing Crisis. It Has a Moving Crisis.Feb 10, 2025
The U.S. was once the world’s most geographically mobile society. Now we’re stuck in place—and that’s a very big problem.
I tried living without a car in rural America—I lasted only 2 weeksJan 17, 2025
I’m already looking to buy an EV.
I saw the Hurricane Helene response up close. This is how disaster relief actually works.Nov 17, 2024
Volunteers, not FEMA, are the bedrock of disaster response. How do we best support them?
What Is “Fusion Voting”? Just a Way to Save the Country, That’s AllJun 15, 2024
Minor-party candidates are a waste of time. But minor parties that can cross-endorse major-party candidates have real juice—and can make a huge difference.
Five Section 230 Cases That Made Online Communities BetterMay 23, 2024
The House Energy and Commerce Committee is holding a hearing tomorrow on “sunsetting” Section 230. Despite facing criticism, Section 230 has undeniably been a cornerstone in the architect…
Biden has brought the ban hammer down on US export of AI chips to ChinaApr 17, 2024
Datacenter GPUs and some consumer cards now exceed performance limits
Intel preps export-friendly lower-power Gaudi 3 AI chips made for ChinaApr 17, 2024
Beijing will be thrilled by this nerfed silicon
The US doesn’t have universal health care — but these states (almost) doApr 1, 2024
Ten states have uninsured rates below 5 percent. What are they doing right?
Change would exempt West Virginia private schools from state vaccination reFeb 29, 2024
As of now, the West Virginia Department of Education boasts that the state has one of the most effective school-entry vaccine preventable laws in the nation.
The quest to depave the world's citiesFeb 29, 2024
From Australia to Ontario, cities are taking up unnecessary stretches of concrete and asphalt, allowing nature to take hold in their place.
Safety NetFeb 29, 2024
These days, when you work as a librarian in America, there is no lack of emergencies.
Liberals Love Ranked-Choice Voting. Will Conservatives?Feb 10, 2024
Ranked-choice voting could be on the November ballot in four states, a sign of the system’s rising popularity. Most conservatives have opposed it. But some say that could be changing.
The One Climate Policy All 2024 Candidates Support Is Actually TerribleFeb 3, 2024
Ethanol is a comically inefficient form of solar energy—and a toxic one. Putting regular solar panels on some of that land would be better.
THE 9 DOMAINS OF GNH – GNH Centre BhutanJan 27, 2024
The Holdouts in the Quest for a Better Power GridJan 26, 2024
Farmers in Missouri are opposing the Grain Belt Express, a transmission line that will connect wind farms in Kansas with cities in the East.
How to Make Russia Really Pay for Invading UkraineSep 21, 2023
The United States and our allies have every legal right to transfer frozen Russian assets to Kyiv.
The Rutters of Athens CountySep 9, 2023
An Appalachian school district’s daring experiment in economic integration.
Parisians Are Pledging Allegiance to the ‘Republic of Super Neighbors.’ TheSep 6, 2023
A grass-roots movement aims to recast urban living in Paris and other cities around the world through a hyperlocal prism of neighborliness.
Appalachia’s North–South DivideSep 1, 2023
Economic dynamism is vaulting the southern portion of the vast region ahead of its northern cousin.
‘We’re going to get messy’: Inside the ‘Depave’ movement that’s swapping asAug 31, 2023
“We've had a love affair with paving things for several generations." The Depave movement is trying to change that.
In Opposing Gun Program, Lawmaker Omitted His Store Was Subject to ItAug 25, 2023
One of two gun stores owned by Representative Andrew Clyde in Georgia, Clyde Armory in Athens, was placed in a monitoring program in 2020 and 2021.
The hidden force that shapes everything around us: ParkingAug 6, 2023
It’s fueling the affordable housing crisis, worsening flooding, and driving us nuts.
How a mobile-home park saved its community from a corporate buyout — High CAug 4, 2023
In southwest Colorado, a cooperative and a land trust partnered to preserve affordable housing.
‘An Act of War’: Inside America’s Silicon Blockade Against ChinaJul 19, 2023
The Biden administration thinks it can preserve America’s technological primacy by cutting China off from advanced computer chips. Could the plan backfire?
This Is One Republican Strategy That Isn’t Paying OffJul 13, 2023
Voter suppression isn’t what it’s cracked up to be.
I’m in Wyoming to celebrate the next nuclear breakthroughMay 7, 2023
Bill Gates writes about visiting Kemmerer, Wyoming, the future site of the fourth-generation Natrium nuclear power plant being designed by TerraPower.
Biden Expected to Move Ahead on a Major Oil Project in AlaskaMar 12, 2023
The decision would allow an enormous $8 billion drilling project in the largest expanse of pristine wilderness in the United States.
The Surprising Reason Europe Came Together Against PutinMar 4, 2023
A major advance in translation technology means that Ukrainians can inform and debunk in real time. The world hasn’t seen a weapon quite like it before.
Why Medicare and Social Security Are SustainableFeb 22, 2023
Reports of their inevitable collapse are greatly exaggerated.
Facebook’s Bridge to Nowhere (Published 2023)Jan 9, 2023
The tech giant had already remade the virtual world. For a brief period, it also tried to make it easier for people in the Bay Area to get to work. Then it gave up.
Biden Just Clobbered China’s Chip IndustryOct 21, 2022
The latest American trade restrictions could significantly set back China’s semiconductor ambitions.
Victor Shi: We don’t need a third party. We need ranked choice voting.Oct 2, 2022
Earlier this summer, a group of anti-Trump and moderate Republicans and Democrats launched a new political party called the Forward Party. On the surface, this movement echoes recent polls indicati…
PocketSep 19, 2022
Study: More Than 335,000 Lives Could Have Been Saved During Pandemic if U.S. Had Universal Health CareSep 18, 2022
If the U.S. had had a single-payer universal health care system in 2020, nearly 212,000 American lives would have been saved that year, according to a new study
Insurers force change on police departments long resistant to itSep 18, 2022
Insurance companies are successfully dictating reforms in police departments, a movement driven by the large settlements out of use-of-force cases.
Blocked persons and letters of marqueJul 5, 2022
What are letters of marque and reprisal, and who is on the US’s list of Block Persons?
24 charts that show we’re (mostly) living better than our parentsJul 3, 2022
Ignore the haters: living standards have improved a lot since the 1980s.
Ten Ways Billionaires Avoid Taxes on an Epic ScaleJul 1, 2022
After a year of reporting on the tax machinations of the ultrawealthy, ProPublica spotlights the top tax-avoidance techniques that provide massive benefits to billionaires.
The Dollar-Store Economy (Published 2011)Jun 23, 2022
The ubiquitous dollar store is the American dream writ small.
We are not in a recession, nor is one inevitable.Jun 21, 2022
Americans are rightly angry about inflation. A strong labor market is not enough reason to celebrate. But, we are coming out of, not going into the hurricane.
Inside the experimental world of animal infrastructureJun 21, 2022
Wildlife crossings cut down on roadkill. But are they really a boon for conservation?
Timing a Recession vs. Timing the Stock MarketJun 11, 2022
It's not always easy to predict the timing of a recession and what that means for the stock market.
The Police Have No Reason to Help YouJun 1, 2022
Cops have been given an incredible set of legal powers immunizing them from the fatal errors of their own decisions—including their decision to do nothing in Uvalde, Texas.
A Movement That’s Quietly Reshaping Democracy For The Better | NOEMAMay 15, 2022
Citizens’ assemblies can help us better address societal challenges, overcome polarization and strengthen trust.
Quadratic VotingMar 31, 2022
We are a community of activists, artists, entrepreneurs, and scholars committed to using mechanism design to inspire radical social change.
The Games We Play: Understanding Strategic Culture Through Games - Modern War InstituteMar 27, 2022
This article is part of the contribution made by the US Army War College to the series “Compete and Win: Envisioning a Competitive Strategy for the Twenty-First Century.” The series […]
Russia’s Aggression Against Ukraine Is BackfiringDec 29, 2021
Putin’s military moves are rallying Ukrainians and unifying NATO.
Qassem Suleimani and How Nations Decide to KillDec 28, 2021
The political, moral, and visceral considerations behind assassination.
The Looming Threat of a Nuclear Crisis with IranDec 28, 2021
The Biden Administration faces a potential confrontation with a longtime rival that is better armed and more hard-line than at any time in its modern history.
Can we actually "brain-drain" China? - by Noah SmithDec 27, 2021
No. But we can give America a big economic boost while boosting our moral image.
The Triumph and Terror of Wang HuningDec 26, 2021
In the Tales Told by Sewage, Public Health and Privacy CollideApr 26, 2021
Sewage epidemiology has been embraced in other countries for decades, but not in the U.S. Will Covid change that?
West Virginia Has Everyone’s Attention. What Does It Really Need? - The NewFeb 8, 2021
With the right federal response, it could become a model of renewal for other places around the country that prosperity has left behind.
The Denver STAR program that replaces police with mental and behavioral heaFeb 5, 2021
DPD Chief Pazen, who is fond of the STAR program, says it frees up officers to do their jobs: fight crime.
The Egghead Gap — The New AtlantisFeb 4, 2021
If America wants to keep China from setting the global course of science, we need a crash program to recruit international talent.
Why Did America Give Up on Mass Transit? (Don't Blame Cars.)Nov 12, 2020
Streetcar, bus, and metro systems have been ignoring one lesson for 100 years: Service drives demand.
An AI can simulate an economy millions of times to create fairer tax policyNov 2, 2020
Deep reinforcement learning has trained AIs to beat humans at complex games like Go and StarCraft. Could it also do a better job at running the economy?
Some shirts hide you from cameras—but will anyone wear them?Apr 17, 2020
It’s theoretically possible to become invisible to cameras. But can it catch on?
basics: walking distance to transit — Human TransitApr 17, 2020
The question of walking distance in transit is much bigger than it seems. A huge range of consequential decisions — including stop spacing, network structure, travel time, reliability standards, frequency and even mode choice — depend on assumptions about how far customers will be willing to walk. The same issue also governs the amount of […]
What Happened When Oslo Decided to Make its Downtown Basically Car-Free?Oct 26, 2019
If you decide to drive in downtown Oslo, be forewarned: You won’t be able to park on the street.
Teaching Ethics in Appalachia Taught Me About Bridging America’s Partisan DOct 17, 2019
There’s a language for talking about hot-button issues. And we’re not learning it.
Spain's Happy Little Carless City - Reasons to be CheerfulOct 17, 2019
Wherever you find advocates for saner transportation, their dream scenario usually hinges on the same outcome: making cities blissfully free of cars. To this end, the Spanish city of Pontevedra, population 84,000, has done something remarkable: it has reduced car use in its historic core by 90 percent, and citywide...
Here Are the Urban Highways That Deserve to DieOct 9, 2019
The Congress for New Urbanism ranks the most-loathed urban freeways in North America—and makes the case for tearing them down.
Something Special Is Happening in Rural AmericaSep 17, 2019
There is a “brain gain” afoot that suggests a national homecoming to less bustling spaces.
Palaces for the People - 99% InvisibleAug 30, 2019
Eric Klinenberg is the author of a book called Palaces for the People: How Social Infrastructure Can Help Fight Inequality, Polarization, and the Decline of Civic Life. The phrase “palaces for the people” actually comes from Andrew Carnegie who was known as a titan of the Gilded Age and one of the wealthiest people in
US Workers Are Highly Taxed If You Count Premiums – People's Policy ProjectApr 9, 2019
Only the Netherlands has a higher average compulsory payment wedge than the US.
Opting Out of Vaccines Should Opt You Out of American SocietyApr 9, 2019
People who are able to take vaccines but refuse to do so are the moral equivalent of drunk drivers
What a beautiful tiny house in rural Japan can teach us about the health ofMar 20, 2019
Guests are transforming the sleepy town into a major destination for tourists seeking the "real Japan."
Why ‘micropolitan’ cities may be the key to rural resurgenceOct 31, 2018
A development expert says small cities and towns can be catalysts for lagging rural counties
What I learned from a Taipei alley — Remains of the DayOct 7, 2018
I was in Taipei the past few weeks working on a documentary with friends. Because of a busy schedule, it wasn't like my usual travels abroad for fun, it felt more like a work trip. Still, even if I'd been there purely for vacation, I would've wanted to try a different mode of travel, one less focuse
Can Car-free Living Make You Happier?Sep 24, 2018
The community of Culdesac, Arizona, was designed for pedestrians and cyclists. And residents love it.
But Rich People Live Here, So We Can't Be Going Broke!Sep 6, 2018
If your growth strategy only works as long as wealthy people live in your town, your growth strategy is deeply fragile.
Locking A LoopholeSep 24, 2017
The Biden administration’s push to close an obscure loophole on imports highlights just how disruptive the Temu model really is.
The Misery Bomb—AsteriskSep 24, 2002
Children across the Western world are getting less happy. If we can’t find a way to reverse the trend, it might have an outsized impact on their future.
pufs
Addressing Quantum Computing Threats With SRAM PUFsJun 8, 2024
The impact of quantum algorithms on different cryptographic techniques and what can be done about it.
Design and Analysis of Stability-Guaranteed PUFsDec 1, 2021
The lack of stability is one of the major limitations that constrains PUF from being put in widespread practical use. In this paper, we propose a weak PUF and a strong PUF that are both completely...
purpose
Your purpose isn’t something to find, it’s something you form | Psyche IdeasDec 19, 2025
In my therapy office, I’ve found that to live with greater purpose, we must think differently about where it comes from
Leading a Meaningful Life through Storytelling SkillsMar 7, 2025
People who are rated as good storytellers exhibit a purpose-oriented mindset and big-picture thinking more often than others
The Purpose Of Life Is Not Happiness: It’s UsefulnessApr 5, 2023
Happiness as an achievable goal is an illusion, but that doesn't mean happiness itself is not attainable.
“What do you do around here?”Jan 25, 2023
There are lots of useful, honest answers. Some might include: I do what I’m told I challenge the status quo I show up on time I solve complicated problems I absorb nonsense and create calm fo…
Urban Dictionary: Bumping the lampJun 28, 2022
To go above and beyond expectations when completing a given task/project. A genericized phrase originally used within the animation industry and the film industry as a whole. Based on a scene from the 1988 mixed live-action/animated film 'Who Framed Roger Rabbit' in which the main live-action character, Eddie Valiant, bumps into a ceiling lamp whilst handcuffed to the main animated character, Roger Rabbit, causing the lamp to continually swing back and forth throughout the remainder of the scene. The term refers to how the animators went on to meticulously hand-draw unique shadows for the animated character for every frame of the scene. The phrase went on to become a company mythos for the Walt Disney Company, then as a guiding principle within the greater film industry, and now sees use generally.
How to Discover your Why: What I Learned from my Transition from CEO | LinkOct 23, 2019
Mark Twain once said that the two most important days in your life are the day you are born, and the day that you discover why. My goal for writing this article is to share an approach to discover (or in my case, rediscover) your “why”.
How to set smart goals: What science says about getting what you wantJan 1, 2018
A lot of people set goals. A lot of people fail to achieve those goals. That's a shame. Here's what science and research reveal about how to set good goals.
To Find Meaning in Your Work, Change How You Think About ItDec 31, 2017
For most people, purpose at work is built not found. Working with a sense of purpose day-in and day-out is an act of will that takes thoughtfulness and practice. How do you consciously endow your work with purpose? First, connect work to service. Ask yourself, who do I serve? Connecting your day-to-day jobs — consciously and concretely — to those we’re ultimately serving makes completing that work more purposeful. Next, craft your work – and make work a craft. Shape your tasks to make them more meaningful, and dedicate yourself to learning perfecting key skills in the role. Then, invest in positive relationships by developing collegial relationships at work. Finally, remember why you work. Identify the person or group of people in your personal life that your work is in service for, and keep them in mind when you work through even the most tedious of tasks. Purpose isn’t magic — it’s something we must consciously pursue and create. With the right approach, almost any job can be meaningful.
You Don’t Find Your Purpose — You Build ItOct 21, 2017
We’re all looking for purpose. Most of us feel that we’ve never found it, we’ve lost it, or in some way we’re falling short. But in the midst of all this angst, we’re also suffering from fundamental misconceptions about purpose. Challenging these misconceptions could help us develop a more rounded vision of purpose. The first misconception is that purpose is a thing you find. Purpose is a thing you build, not a thing you find. The second misconception is that purpose is a single thing. Most of us will have multiple sources of purpose in our lives — in our work, family, or community, for instance. Acknowledging these multiple sources of purpose takes the pressure off of finding a single thing to give our lives meaning. The last misconception is that purpose is stable over time. Just as we all find meaning in multiple places, the sources of that meaning can and do change over time.
pycaret
How to Create Custom Performance Metrics in PyCaretFeb 18, 2025
This article illustrates defining and using custom metrics through a code example.
How to Implement Early Stopping in PyCaretFeb 14, 2025
This article explains early stopping and how to use it in PyCaret for classification.
Announcing PyCaret 3.0: Open-source, Low-code Machine Learning in PythonMar 31, 2023
Exploring the Latest Enhancements and Features of PyCaret 3.0
Topic Modeling on PyCaret — ReduxSep 5, 2022
A beginner’s guide to PyCaret’s natural language processing module.
A Practical Guide to ARIMA Models using PyCaret — Part 4Dec 20, 2021
Combining the “Trend” and “Difference” Terms
Clustering Made Easy with PyCaretOct 17, 2021
Low-code Machine Learning with a Powerful Python Library
Supercharge Your Machine Learning Experiments with PyCaret and Gradio - KDnuggetsMay 31, 2021
A step-by-step tutorial to develop and interact with machine learning pipelines rapidly.
Predict Customer Churn (the right way) using PyCaretMay 24, 2021
A step-by-step guide on how to predict customer churn the right way using PyCaret that actually optimizes the business objective and improves ROI for the business.
Time Series Forecasting with PyCaret Regression ModuleApr 22, 2021
PyCaret is an alternate low-code library that can be used to replace hundreds of lines of code with few lines only. See how to use PyCaret's Regression Module for Time Series Forecasting.
How to use PyCaret — the library for lazy data scientistsMar 6, 2021
Train, visualize, evaluate, interpret, and deploy models with minimal code.
PyCaret — pycaret 2.2.0 documentationFeb 25, 2021
Home - PyCaretFeb 25, 2021
[et_pb_section fb_built=”1″ admin_label=”Header” _builder_version=”4.12.0″ background_color=”#01012C” collapsed=”on” global_colors_info=”{}”][et_pb_row column_structure=”1_2,1_2″ _builder_version=”4.12.0″ collapsed=”on” global_colors_info=”{}”][et_pb_column type=”1_2″ _builder_version=”4.12.0″ z_index=”10″ custom_padding=”18%||||false|false” global_colors_info=”{}”][et_pb_text _builder_version=”4.14.7″ text_font=”Montserrat|800|||||||” text_text_color=”#01012C” text_font_size=”470px” text_line_height=”1em” positioning=”absolute” custom_margin=”|-30%||-10%|false|false” custom_margin_tablet=”|0%||-5%|false|false” custom_margin_phone=”|0%|||false|false” custom_margin_last_edited=”on|desktop” text_font_size_tablet=”40vw” text_font_size_phone=”40vw” text_font_size_last_edited=”on|tablet” text_text_shadow_style=”preset5″ text_text_shadow_horizontal_length=”-1.5px” text_text_shadow_vertical_length=”-1.5px” text_text_shadow_color=”#DB0EB7″ global_colors_info=”{}”] pc [/et_pb_text][et_pb_text _builder_version=”4.14.7″ header_font=”Barlow Condensed|500|||||||” header_text_color=”#FFFFFF” header_font_size=”122px” custom_margin=”||0px||false|false” header_font_size_tablet=”42px” header_font_size_phone=”26px” header_font_size_last_edited=”on|tablet” global_colors_info=”{}”] low-code machine learning [/et_pb_text][et_pb_button button_url=”https://pycaret.gitbook.io” url_new_window=”on” button_text=”GET STARTED” _builder_version=”4.14.7″ […]
Modeling in Seconds: Using PyCaret as a Tool for Data Science Fast DecisionMay 15, 2020
I came across Pycaret while I was browsing on a slack for data scientists. It's a versatile library in which you can apply/evaluate/tune…
pyspark
How to Use PySpark for Data AggregationApr 30, 2025
We will discover how you can use basic or advanced aggregations using actual interview datasets.
PySpark Practical GuideFeb 20, 2024
In this article, I'll take you through a practical guide to PySpark that will help you get started with PySpark. PySpark Practical Guide.
Complete Introduction to PySpark-Part 4 | by Himanshu Sharma | Nov, 2020 |Nov 17, 2020
Performing Data Visualization using PySpark
Examples of Using Apache Spark with PySpark Using PythonMay 15, 2020
Apache Spark is one of the hottest new trends in the technology domain. It is the framework with probably the highest potential to realize…
The Benefits & Examples of Using Apache Spark with PySpark - KDnuggetsApr 28, 2020
Apache Spark runs fast, offers robust, distributed, fault-tolerant data objects, and integrates beautifully with the world of machine learning and graph analytics. Learn more here.
100x faster Hyperparameter Search Framework with PysparkMar 9, 2020
This post is about setting up a hyperparameter tuning framework for Data Science using scikit-learn/xgboost/lightgbm and pySpark
How to Install PySpark and Integrate It In Jupyter Notebooks: A TutorialDec 14, 2019
Here's how to install PySpark on your computer and get started working with large data sets using Python and PySpark in a Jupyter Notebook.
A Brief Introduction to PySpark - Towards Data ScienceDec 14, 2019
PySpark is a great language for performing exploratory data analysis at scale, building machine learning pipelines, and creating ETLs for…
PySpark Cheat Sheet: Spark in PythonAug 30, 2019
This PySpark cheat sheet with code samples covers the basics like initializing Spark in Python, loading data, sorting, and repartitioning.
mahmoudparsian/pyspark-tutorial: PySpark-Tutorial provides basic algorithmsAug 30, 2019
PySpark-Tutorial provides basic algorithms using PySpark - mahmoudparsian/pyspark-tutorial
pytest
pytest documentationSep 28, 2025
Debugging Made Easy: Use Pytest to Track Down and Fix Python CodeApr 18, 2023
How to use Pytest fixtures and mock for unit testing
Learn How to Test Flask Applications with PytestMar 22, 2023
Welcome to this tutorial on how to test Flask applications with Pytest. Flask is a popular web...
13 Tips for using PyTestNov 28, 2022
Unit-testing is a really important skill for software development. There are some great Python libraries to help us write and run unit-test…
Pytest with Marking, Mocking, and Fixtures in 10 MinutesAug 1, 2022
Write robust unit tests with Python pytest
How to Parameterize Python Tests Using PytestJul 13, 2021
Passing Arguments to Fixtures and Test Functions
python
12 Python Libraries You Need to Try in 2026 - KDnuggetsFeb 13, 2026
These are 12 Python libraries that made waves in 2025, and that every developer should try in 2026.
How to Design Production-Grade Mock Data Pipelines Using Polyfactory with Dataclasses, Pydantic, Attrs, and Nested Models - MarkTechPostFeb 8, 2026
How to Design Production-Grade Mock Data Pipelines Using Polyfactory with Dataclasses, Pydantic, Attrs, and Nested Models
pandas - Python Data Analysis LibraryJan 28, 2026
The Complete Guide to Logging for Python DevelopersJan 13, 2026
Stop using print statements and start logging like a pro. This guide shows Python developers how to log smarter and debug faster.
Network Clustering and Triadic Closure: Revealing Relationship Patterns with PythonJan 13, 2026
Learn how to measure network clustering and triadic closure in Python to identify tightly-knit groups and bridge nodes.
Implementing Softmax From Scratch: Avoiding the Numerical Stability Trap - MarkTechPostJan 7, 2026
Learn about implementing Softmax from scratch and discover how to avoid the numerical stability trap in deep learning projects.
Python Coding (CLCODING) (@clcoding.bsky.social)Jan 3, 2026
These 9 Python features separate beginners from professionals
pythonclcoding.gumroad.com/l/bfyxw
10 Lesser-Known Python Libraries Every Data Scientist Should Be Using in 2026Dec 31, 2025
Want to level up your data science toolkit? Here are some Python libraries that'll make your work easier.
How uv got so fastDec 27, 2025
uv’s speed comes from engineering decisions, not just Rust. Static metadata, dropping legacy formats, and standards that didn’t exist five years ago.
Getting Started with OpenBB: The Ultimate Python Toolkit for Financial and Economic DataDec 20, 2025
Streamline your financial data workflow with OpenBB. Learn setup, data extraction, and automation using Python—perfect for analysts and economists.
Creating PDF Reports with PythonDec 3, 2025
Creating PDF Reports with Python Introduction Generating PDF reports programmatically can be incredibly useful for automating document creation, especially in a business context. Python offers …
Chapter 1: Introduction - ReportLab DocsDec 3, 2025
How to Find Frequent Itemsets with the Apriori Algorithm in PythonNov 7, 2025
Learn how to use Python's Apriori algorithm to find frequent itemsets in transaction data automatically.
uv is the best thing to happen to the Python ecosystem in a decade - Blog - Dr. Emily L. HuntOct 30, 2025
Released in 2024, uv is hands-down the best tool for managing Python installations and dependencies. Here's why.
Reference — NetworkX 3.5 documentationOct 23, 2025
Community Detection in Networks: Finding Hidden Groups with PythonOct 7, 2025
Discover hidden group structures in networks using Python's NetworkX library with Louvain and Girvan-Newman algorithms.
A Gentle Introduction to TypeScript for Python ProgrammersOct 6, 2025
Why every Python developer should give TypeScript a serious look (and how to get productive fast)
A Coding Guide to Build an Autonomous Agentic AI for Time Series Forecasting with Darts and Hugging FaceOct 4, 2025
A Coding Guide to Build an Autonomous Agentic AI for Time Series Forecasting with Darts and Hugging Face. A Step by step guide
Generate a Full EDA Report in One Line of Python CodeOct 4, 2025
In this article, I'll explain how to automate 80% of the initial analysis and generate an EDA report with just one line of Python code.
pytest documentationSep 28, 2025
The Concise Guide to Monte Carlo SimulationSep 26, 2025
In this concise guide, we'll break down the essentials of Monte Carlo simulation, explain how it works, and provide a simple example using Python.
10 Python One-Liners to Optimize Your Hugging Face Transformers Pipelines - KDnuggetsSep 22, 2025
In this article, we present 10 powerful Python one-liners that will help you optimize your Hugging Face pipeline() workflows.
How to Calculate Support, Confidence, and Lift in PythonSep 8, 2025
Learn to calculate support, confidence, and lift metrics for market basket analysis using Python's mlxtend library.
How to Use Redis with PythonAug 20, 2025
We'll learn how to use Redis in Python with a step-by-step tutorial.
Mircus/HyperCat: a python library for cats and hypercatsAug 18, 2025
a python library for cats and hypercats
Writing Your First GPU Kernel in Python with Numba and CUDA - KDnuggetsAug 18, 2025
80x Faster Python? Discover How One Line Turns Your Code Into a GPU Beast!
pyx: a Python-native package registry, now in BetaAug 14, 2025
pyx is a Python-native package registry from the creators of uv.
google/langextract: A Python library for extracting structured information from unstructured text using LLMs with precise source grounding and interactive visualization.Aug 12, 2025
A Python library for extracting structured information from unstructured text using LLMs with precise source grounding and interactive visualization. - google/langextract
How Python is Fighting Open Source's 'Phantom' Dependencies Problem - SlashdotAug 11, 2025
Since 2023 the Python Software Foundation has had a Security Developer-in-Residence (sponsored by the Open Source Security Foundation's vulnerability-finding "Alpha-Omega" project). And he's just published a new 11-page white paper about open source's "phantom dependencies" problem — suggestin...
The Case for Makefiles in Python Projects (And How to Get Started)Aug 5, 2025
Most Python projects rely on scattered scripts and commands. Learn how makefiles pulls it all together into one clean, repeatable workflow.
10 Python One-Liners for Statistical PlottingJul 29, 2025
Master fast, powerful ways to visualize data with these compact, ready-to-use Python one-liners.
I’m Switching to Python and Actually Liking ItJul 16, 2025
I’ve started writing more Python code lately (because of… AI, you know). In this post, I share the tools, libraries, configs, and other integrations I use for building production-grade Python applications following a frontend-backend architecture.
Python functools & itertools: 7 Super Handy Tools for Smarter CodeJul 2, 2025
Want to code smarter, not harder? Start using these 7 utilities from Python's functools and itertools that are useful, practical, and elegant!
How to Manage Python Virtual Environments for Data ProjectsJun 25, 2025
Tired of breaking your Python setup? Learn how virtual environments keep everything organized and working smoothly.
10 Must-Know Python Libraries for MLOps in 2025Jun 21, 2025
In this article, we’ll explore 10 Python libraries that every machine learning professional should know in 2025.
How to Visualize Skewness and Kurtosis in PythonJun 12, 2025
In this article, you will learn how to visualize skewness and kurtosis using Python.
How to Use Kalman Filters for Time Series Analysis in PythonJun 10, 2025
The Kalman filter records the system's estimated state and the estimate's variance or uncertainty.
Why and How to Containerize Your Existing Python AppsMay 29, 2025
Containerize your Python apps to eliminate environment issues and simplify deployment. This guide shows you why it helps and how to get started with Docker.
10 Python One-Liners to Run Common Statistical TestsMay 20, 2025
In this article, we'll explore 10 Python one-liners that showcase the progression from basic statistical tests to sophisticated analyses.
7 Python Functions You're Probably Misusing (And Don't Realize It) - KDnuggetsMay 20, 2025
These common Python functions seem simple… until they aren’t. Avoid subtle bugs by learning how to use them the right way.
Statology Sprint: Building Spatial Analysis Skills with GeoPandasMay 16, 2025
Learn to transform geographic data into actionable insights using GeoPandas. From basic maps to finding Chicago's health deserts — complete tutorial inside.
Building End-to-End Data Pipelines with Dask - KDnuggetsMay 5, 2025
Learn how to implement a parallelization process in your data pipeline.
Advanced Python Error Handling in PythonApr 29, 2025
In this article, we’ll look at advanced error-handling techniques that go beyond the standard try-except mechanism with practical examples and tips to help you improve the robustness of your Python applications.
Python Patterns for Intermediate Data ScientistsApr 28, 2025
Learn to leverage Python patterns like a professional.
14 Advanced Python FeaturesApr 23, 2025
Python is one of the most widely adopted programming languages in the world. Yet, because of it’s ease and simplicity to just “get something working”, it’s also one of the most underappreciated.
If you search for Top 10 Advanced Python Tricks on Google or any other search engine, you’ll find tons of blogs or LinkedIn articles going over trivial (but still useful) things like generators or tuples.
However, as someone who’s written Python for the past 12 years, I’ve come across a lot of really interesting, underrated, unique, or (as some might say) “un-pythonic” tricks to really level up what Python can do.
Geospatial Clustering with PythonApr 22, 2025
In this article, I'll take you through a practical guide to geospatial clustering with Python. Geospatial Clustering with Python.
Statology Sprint: Advanced Synthetic Data Generation with FakerApr 18, 2025
This Statology Sprint brings together our most valuable content on Faker, Python's powerful synthetic data generation library, to help you create realistic, privacy-compliant test data for your projects.
Introduction to statsmodelsApr 14, 2025
This article explains its features, installation, and how to use it with examples.
pydantic-ai/mcp-run-python at main · pydantic/pydantic-aiApr 6, 2025
Agent Framework / shim to use Pydantic with LLMs
How to Vectorize in Python (With Example)Apr 2, 2025
In this article, we will explore different vectorized operations with examples.
10 Must-Know Python Libraries for LLMs in 2025Mar 26, 2025
In this article, we explore 10 of the Python libraries every developer should know in 2025.
https://www.statology.org/how-to-effectively-work-with-excel-files-in-python-pandas-vs-openpyxl-guide/Mar 19, 2025
In this article, we'll explore when and why you might want to use openpyxl directly, and understand its relationship with pandas.
Packaging a Python App to Executable .deb BinaryMar 18, 2025
I am sharing how I packaged my python application into an executable .deb package in this tutorial.
Data Analytics Projects on Various DomainsMar 15, 2025
In this article, I'll walk you through a list of 50 Data Analytics projects on various domains to help you gain practical expertise.
Getting Started with Python’s asyncio Library - KDnuggetsMar 12, 2025
Check out this guide to learn how you can use asyncio for asynchronous programming in Python.
A Step-by-Step Guide to Setting Up a Custom BPE Tokenizer with Tiktoken for Advanced NLP Applications in PythonFeb 17, 2025
A Step-by-Step Guide to Setting Up a Custom BPE Tokenizer with Tiktoken for Advanced NLP Applications in Python
10 Little-Known Python Libraries That Will Make You Feel Like a Data Wizard - KDnuggetsFeb 11, 2025
In this article, I will introduce you to 10 little-known Python libraries every data scientist should know.
sqlite-s3vfsFeb 7, 2025
Neat open source project on the GitHub organisation for the UK government's Department for Business and Trade: a "Python virtual filesystem for SQLite to read from and write to S3." …
Using pip to install a Large Language Model that’s under 100MBFeb 7, 2025
I just released llm-smollm2, a new plugin for LLM that bundles a quantized copy of the SmolLM2-135M-Instruct LLM inside of the Python package. This means you can now pip install …
50+ Projects to Learn Data Analysis | Aman KharwalFeb 7, 2025
In this article, I'll take you through a list of 50+ Data Analysis Projects you should try to learn Data Analysis.
80+ Data Science Projects | Aman KharwalJan 31, 2025
In this article, I'll take you through a list of 80+ hands-on Data Science projects you should try to learn everything in Data Science.
50+ AI & ML Projects with Python | Aman KharwalJan 24, 2025
In this article, I'll take you through a list of 50+ AI & ML projects solved & explained with Python that you should try.
Implementing A Byte Pair Encoding (BPE) Tokenizer From ScratchJan 18, 2025
This is a standalone notebook implementing the popular byte pair encoding (BPE) tokenization algorithm, which is used in models like GPT-2 to GPT-4, Llama 3,...
Image Processing With the Python Pillow Library – Real PythonJan 8, 2025
In this step-by-step tutorial, you'll learn how to use the Python Pillow library to deal with images and perform image processing. You'll also explore using NumPy for further processing, including to create animations.
Demand Forecasting with Darts: A TutorialJan 2, 2025
A hands-on tutorial with Python and Darts for demand forecasting, showcasing the power of TiDE and TFT
CMU Researchers Introduce TNNGen: An AI Framework that Automates Design of Temporal Neural Networks (TNNs) from PyTorch Software Models to Post-Layout NetlistsDec 30, 2024
Designing neuromorphic sensory processing units (NSPUs) based on Temporal Neural Networks (TNNs) is a highly challenging task due to the reliance on manual, labor-intensive hardware development processes. TNNs have been identified as highly promising for real-time edge AI applications, mainly because they are energy-efficient and bio-inspired. However, available methodologies lack automation and are not very accessible. Consequently, the design process becomes complex, time-consuming, and requires specialized knowledge. It is through overcoming these challenges that one can unlock the full potential of TNNs for efficient and scalable processing of sensory signals. The current approaches to TNN development are fragmented workflows, as
Welcome to Flask — Flask Documentation (3.1.x)Dec 24, 2024
75 Data Science Projects with Python | Aman KharwalDec 20, 2024
In this article, I’ll take you through a list of 75 guided projects to master Data Science with Python. 75 Data Science Projects with Python.
An Introduction to Dask: The Python Data Scientist's Power Tool - KDnuggetsDec 16, 2024
Ever wondered how to handle large data without slowing down your computer? Let’s learn about Dask, a tool that helps you work with large data quickly.
7 Essential Python Libraries for MLOps - KDnuggetsDec 10, 2024
Popular MLOps Python tools that will make machine learning model deployment a piece of cake.
A Curated List of 57 Amazing GitHub Repositories for Every Python DeveloperNov 25, 2024
Photo by Luke Chesser on Unsplash
10 Essential Python Libraries for Data Science in 2024Oct 31, 2024
The richness of Python’s ecosystem has one downside – it makes it difficult to decide which libraries are the best for your needs. This article is an attempt to amend this by suggesting ten (and some more, as a bonus) libraries that are an absolute must in data science.
What Are Python Ternary Operators and How Do You Use Them?Oct 24, 2024
When you need to assign a value to a variable, based on a single condition, and you want to keep your code short and sweet, a ternary operator might be your best option.
Document Analysis using LLMs with Python | Aman KharwalOct 21, 2024
In this article, I'll take you through the task of document analysis using LLMs with Python. Document Analysis using LLMs with Python.
Everything you need to know about Python 3.13 – JIT and GIL went up the hill | drew's dev blogOct 19, 2024
All you need to know about the latest Python release including Global Interpreter Lock and Just-in-Time compilation.
Python's GIL, Multithreading and MultiprocessingOct 19, 2024
This tutorial explains the Python global interpreter lock (GIL), which prevents multiple threads from executing Python code at the same time.
Marketing Mix Modeling (MMM): How to Avoid Biased Channel EstimatesOct 16, 2024
Learn which variables you should and should not take into account in your model.
rerankers: A Lightweight Python Library to Unify Ranking Methods – Answer.AISep 24, 2024
Re-ranking is an integral component of many retrieval pipelines; however, there exist numerous approaches to it, all with different implementation methods. To mitigate this, we propose rerankers, a Python library which provides a simple, easy-to-use interface to all commonly used re-ranking approaches.
A Python Engineer’s Introduction To 3D Gaussian Splatting (Part 1)Aug 2, 2024
Understanding and coding Gaussian Splatting from a Python Engineer’s perspective
A Python Engineer’s Introduction to 3D Gaussian Splatting (Part 2)Aug 2, 2024
Understanding and coding how Gaussian’s are used within 3D Gaussian Splatting
A Python Engineer’s Introduction to 3D Gaussian Splatting (Part 3)Aug 2, 2024
Part 3 of our Gaussian Splatting tutorial, showing how to render splats onto a 2D image.
Full Guide to Building a Professional Portfolio with Python, Markdown, Git,Aug 2, 2024
This article is a end-to-end guide to build a professional portfolio for developpers and data workers based on github page.
PacktPublishing/Modern-Graph-Theory-Algorithms-with-PythonAug 2, 2024
Modern Graph Theory Algorithms with Python, published by Packt - PacktPublishing/Modern-Graph-Theory-Algorithms-with-Python
Customer Satisfaction Analysis with PythonAug 1, 2024
In this article, I'll take you through the task of Customer Satisfaction Analysis with Python. Customer Satisfaction Analysis with Python.
Introducing ‘Mark’, a Markdown CLI tool for GPT4o | Ryan ElstonJul 9, 2024
Introduction In this post, I want to introduce Mark, a simple CLI tool that uses Markdown and its syntax to interact naturally with the GPT4-vision/GPT4o models.
Understanding and Implementing Genetic Algorithms in PythonJun 25, 2024
Understanding what genetic algorithms are and how they can be implemented in Python.
BM25S: A Python Package that Implements the BM25 Algorithm for Ranking DocuJun 23, 2024
In the era of vast data, information retrieval is crucial for search engines, recommender systems, and any application that needs to find documents based on their content. The process involves three key challenges: relevance assessment, document ranking, and efficiency. The recently introduced Python library that implements the BM25 algorithm, BM25S addresses the challenge of efficient and effective information retrieval, particularly the need for ranking documents in response to user queries. The goal is to enhance the speed and memory efficiency of the BM25 algorithm, a standard method for ranking documents by their relevance to a query. Current methods for implementing
Lessons Learned from Scaling to Multi-Terabyte DatasetsJun 22, 2024
This post is meant to guide you through some of the lessons I’ve learned while working with multi-terabyte datasets. The lessons shared are focused on what someone may face as the size of the…
Recommendation Algorithms You Should KnowJun 19, 2024
In this article, I'll take you through the recommendation algorithms you should know and how to implement them using Python.
Python's many command-line utilitiesJun 4, 2024
Every command-line tool included with Python. These can be run with python -m module_name.
Computing Minimum Sample Size for A/B Tests in Statsmodels: How and WhyMay 31, 2024
A deep-dive into how and why Statsmodels uses numerical optimization instead of closed-form formulas
Python venv: How To Create, Activate, Deactivate, And Delete • Python LandMay 29, 2024
How to create, activate, use, and delete a Python venv on Windows, Linux, and MacOS. We'll also look at how a Python venv works internally.
A Guide to Working with SQLite Databases in PythonMay 22, 2024
Get started with SQLite databases in Python using the built-in sqlite3 module.
Mastering Python: 7 Strategies for Writing Clear, Organized, and EfficientMay 19, 2024
Optimize Your Python Workflow: Proven Techniques for Crafting Production-Ready Code
10 Python Packages Revolutionizing Data Science WorkflowMay 15, 2024
In the vast world of data science, countless tools are available to help analysts and researchers make sense of data and build powerful machine-learning models. While some tools are widely known and used, others might not be as familiar to many. Here are the ten great Python packages that can significantly enhance your workflow. 1. LazyPredict: LazyPredict is all about efficiency. It allows the training, testing, and evaluation of multiple machine-learning models simultaneously with just a few lines of code. Whether one is working on regression or classification tasks, LazyPredict streamlines the process and helps find the best model for
How To Use Pyscript To Create Python Web AppsMay 13, 2024
With the help of PyScript, you can develop rich frontends with Python for the web and even make use of various Python modules.
Extract text from a PDFMay 5, 2024
Extracting text from a PDF file using GNU less or Python's pypdf. Why its not entirely clear just what a text extractor should do.
How to Create and Use Requirements.txt in PythonApr 12, 2024
After setting up your Python project, creating a requirements.txt file is essential for simplifying...
Advanced Data Structures: Sets, Tuples, and ComprehensionsApr 6, 2024
Advanced Data Structures: Sets, Tuples, and Comprehensions In the world of programming,...
The Best Python Cheat SheetApr 5, 2024
A dense Python cheat sheet with just what you need. Comprehensive but selective coverage of core Python, with links to detailed documentation and resources. Responsive design with light and dark modes. Download and print PDF. Feedback is welcome.
Essential Formulas for Data Science in FinanceApr 5, 2024
In this article, I'll take you through a guide to some essential formulas for Data Science in finance with implementation using Python.
Modular Open-Sources Mojo: The Programming Language that Turns Python intoApr 2, 2024
In the rapidly evolving world of technology and artificial intelligence, a new development has emerged that promises to impact the Python and AI communities significantly. Modular, a pioneering tech firm, has announced the open-sourcing of Mojo, a programming language designed to enhance Python's capabilities, allowing developers to write code that scales 'all the way down to metal code.' This move is set to transform Python programming, offering unprecedented speed and efficiency. Modular has long championed open-source principles, and the release of Mojo under the Apache 2 license represents a significant step towards fulfilling its vision. Since its initial release in
Tiny Python ProjectsMar 11, 2024
Particle Swarm Optimization (PSO) from scratch. Simplest explanation in pytMar 3, 2024
How to implement PSO
Duck Typing in Python: Writing Flexible and Decoupled CodeFeb 29, 2024
In this tutorial, you'll learn about duck typing in Python. It's a typing system based on objects' behaviors rather than on inheritance. By taking advantage of duck typing, you can create flexible and decoupled sets of Python classes that you can use together or individually.
30 Python Libraries that I Often UseFeb 17, 2024
30 Python libraries to solve most AI problems, including GenAI, data videos, synthetization, model evaluation, computer vision and more.
The Power of Geospatial Intelligence and Similarity Analysis for Data MappiFeb 17, 2024
Strategically enhancing address mapping during data integration using geocoding and string matching
Getting started with Elasticsearch PythonFeb 10, 2024
This blog will introduce you to some core concepts and building blocks of working with the official...
The Perfect Way to Smooth Your Noisy DataJan 18, 2024
Insanely fast and reliable smoothing and interpolation with the Whittaker-Eilers method.
Mastering PDFs: Extracting Sections, Headings, Paragraphs, and Tables withJan 17, 2024
LlamaIndex is a simple, flexible data framework for connecting custom data sources to large language models (LLMs).
Meet neograd: A Deep Learning Framework Created from Scratch Using Python aJan 17, 2024
Understanding how convolutional neural networks (CNNs) operate is essential in deep learning. However, implementing these networks, especially convolutions and gradient calculations, can be challenging. Many popular frameworks like TensorFlow and PyTorch exist, but their complex codebases make it difficult for newcomers to grasp the inner workings. Meet neograd, a newly released deep learning framework developed from scratch using Python and NumPy. This framework aims to simplify the understanding of core concepts in deep learning, such as automatic differentiation, by providing a more intuitive and readable codebase. It addresses the complexity barrier often associated with existing frameworks, making it easier for
skfolio/skfolioJan 15, 2024
Python library for portfolio optimization built on top of scikit-learn - skfolio/skfolio
Business Forecasting Project IdeasJan 12, 2024
This article will take you through some of the best Business Forecasting project ideas you should try. Business Forecasting Project Ideas.
FastAPIJan 12, 2024
FastAPI framework, high performance, easy to learn, fast to code, ready for production
Mastering Python Development Environments: A Comprehensive Guide to VirtualDec 28, 2023
Python has been my go-to programming language since I started coding. Python, as a programming...
Market Basket Analysis using PythonOct 30, 2023
In this article, I'll take you through the task of Market Basket Analysis using Python. Market Basket Analysis using Python.
Python "magic" methods - part 2Oct 27, 2023
Let's continue our exploration of Python's magic methods in this second part of the series. This part...
python - Using virtualenv on Jupyter Notebook - Stack OverflowOct 15, 2023
I trying to use virtualenv on jupyter notebook, to use all packages installed in an environment, but inside jupyter they are not recognized.
Already tried:
pip install tornado==4.5.3
pip install
venv — Creation of virtual environments — Python 3.12.0 documentationOct 15, 2023
Source code: Lib/venv/ The venv module supports creating lightweight “virtual environments”, each with their own independent set of Python packages installed in their site directories. A virtual en...
Unleashing the Power of Flask: A Guide to Building Web Applications with PyOct 15, 2023
Introduction In the vast landscape of web development, Flask stands out as a lightweight yet...
Hey, Computer, Make Me a FontOct 4, 2023
This is a story of my journey learning to build generative ML models from scratch and teaching a computer to create fonts in the process.
Two Powerful Python Features to Streamline Your Code and Make It More ReadaSep 30, 2023
Enhance your code quality with the beauty of match statements and object slicing.
youtube_channel/Python Tutorial Series/fourier_transform1.ipynb at main · lukepolson/youtube_channelSep 29, 2023
Notebooks for the python tutorials of my youtube channel. See specific youtube video for link to specifc notebook. - lukepolson/youtube_channel
New Book: Gentle Introduction To Chaotic Dynamical SystemsSep 25, 2023
In less than 100 pages, the book covers all important topics about discrete chaotic dynamical systems and related time series and stochastic processes, ranging from introductory to advanced, in one and two dimensions. State-of-the art methods and new results are presented in simple English. Yet, some mathematical proofs appear for the first time in this
Meet PyGraft: An Open-Sourced Python-Based AI Tool that Generates Highly CuSep 25, 2023
An increasingly popular method for representing data in a graph structure is the usage of knowledge graphs (KGs). A KG is a group of triples (s, p, o), where s (subject) and o (object) are two graph nodes, and p is a predicate that describes the type of connection that exists between them. KGs are often supported by a schema (such as an ontology) that outlines the key ideas and relationships in a field of study and the constraints that govern how these ideas and relationships can interact. Many of the activities for which KGs are employed have a small
Cracking Open the OpenAI (Python) APISep 25, 2023
A complete beginner-friendly introduction with example code
Python Virtual Environments: A Primer – Real PythonSep 24, 2023
In this tutorial, you'll learn how to use a Python virtual environment to manage your Python projects. You'll also gain a deep understanding of the structure of virtual environments created with the venv module, as well as the rationale behind using virtual environments.
Beyond Numpy and Pandas: Unlocking the Potential of Lesser-Known Python LibSep 1, 2023
3 Python libraries for scientific computation you should know as a data professional.
4 Python Itertools Filter Functions You Probably Didn’t KnowAug 31, 2023
And why you should learn how to use them to filter Python sequences more elegantly.
What is EDI? Electronic Data InterchangeAug 30, 2023
Explore how Electronic Data Interchange (EDI) facilitates modern supply chain management.
Generating a Requirements.txt File from a Jupyter NotebookAug 30, 2023
A much overlooked way to save some time.
Demand Forecasting and Inventory Optimization using PythonAug 29, 2023
In this article, I'll take you through the task of Demand Forecasting and Inventory Optimization using Python.
Microsoft Introduces Python in Excel: Bridging Analytical Prowess with FamiAug 24, 2023
The realm of data analysis has long struggled with seamlessly integrating the capabilities of Python—a powerful programming language widely used for analytics—with the familiar interface and functionalities of Microsoft Excel. This challenge has hindered efficient decision-making and data processing for professionals who rely on both tools for their tasks. The need for a cohesive solution that bridges this gap is evident. Existing attempts to merge Python and Excel have often been cumbersome and involved complex setups. Analysts resorted to using external scripts, third-party tools, or manual data transfers between the two environments. These methods introduced inefficiencies, raised security concerns, and
Simulation 104: Electromagnetic Mapping with Vector FieldsAug 22, 2023
Modeling electric and magnetic fields
Python Global Interpreter Lock (GIL): Understanding, Workarounds, and ParalAug 17, 2023
Introduction: Python, a popular programming language known for its simplicity and versatility,...
How to Extract Text from Any PDF and Image for Large Language Model | by ZoAug 7, 2023
Use these text extraction techniques to get quality data for your LLM models
List: Marketing Mix Modeling | Curated by Abhijeet Talaulikar | MediumJul 29, 2023
8 stories · A guide to building an end-to-end marketing mix optimization solution for your organization.
CLI tools hidden in the Python standard libraryJul 28, 2023
Seth Michael Larson pointed out that the Python gzip module can be used as a CLI tool like this:
The Complete Introduction to Survival Analysis in Python | by Marco PeixeirJul 24, 2023
Understand survival analysis, its use in the industry, and how to apply it in Python
Mastering Sequence Filtering in Python: Comprehensive Guide to Effective FiJul 24, 2023
Filtering sequences, like lists, is a common task for developers. However, the code can become...
Uplift Modeling — A Data Scientist’s Guide to Optimizing a Credit Card ReneJul 23, 2023
Applying causal machine learning to trim the campaign target audience
Clearing Pip CacheJul 1, 2023
Cleaning Pip cache helps you in troubleshooting and getting fresh Python packages.
Why not tell people to "simply" use pyenv, poetry or anacondaJun 19, 2023
You keep using that word. I don’t think it means what you think it means.
Sklearn Pipelines for the Modern ML Engineer: 9 Techniques You Can’t IgnoreMay 31, 2023
Master Sklearn pipelines for effortless and efficient machine learning. Discover the art of building, optimizing, and scaling models with ease. Level up your data preprocessing skills and supercharge your ML workflow today
What Are *args And **kwargs In Python - Guide With ExamplesMay 15, 2023
When we see the documentation of any function that contains *args and **kwargs, have you ever...
Geospatial Data Analysis with GeoPandasMay 7, 2023
Learn how to manipulate and visualize vector data with Python’s GeoPandas
From Spotify to YouTube: How I Built a Python Script to Convert PlaylistsApr 26, 2023
I developed the script to convert the Spotify playlist to YouTube playlist. I am here to share how I...
Debugging Made Easy: Use Pytest to Track Down and Fix Python CodeApr 18, 2023
How to use Pytest fixtures and mock for unit testing
Retail Price Optimization using PythonApr 17, 2023
In this article, I will walk you through the task of Retail Price Optimization with Machine Learning using Python. Retail Price Optimization.
Goodbye os.path: 15 Pathlib Tricks to Quickly Master The File System in PythonApr 16, 2023
No headaches and unreadable code from os.path
Supply Chain Analysis using PythonApr 9, 2023
In this article, I will take you through the task of Supply Chain Analysis using Python. Supply Chain Analysis using Python.
An Introduction to Polars for Pandas UsersApr 9, 2023
Demonstrating how to use the new blazing fast DataFrame library for interacting with tabular data
Exception Handling in Python: From Basic to Advanced, Then TricksApr 8, 2023
Discover the Hidden Secrets of Python Exception Handling
A Guide to Association Rule MiningApr 5, 2023
Create insights from frequent patterns using market basket analysis with Python
Finding Patterns in Convenience Store Locations with Geospatial AssociationApr 1, 2023
Understanding spatial trends in the location of Tokyo convenience stores
Announcing PyCaret 3.0: Open-source, Low-code Machine Learning in PythonMar 31, 2023
Exploring the Latest Enhancements and Features of PyCaret 3.0
Exploring the Power of Decorators in Python: A Comprehensive GuideMar 26, 2023
Introduction If you're a Python developer looking to take your code to the next level,...
Configuring the spyrograph trace method to explore stunning geometric visuaMar 25, 2023
DISCLAIMER: This blog post was written by a human with the help of AI Hypotrochoids and epitrochoids...
Table of contents — voila 0.5.0a0 documentationMar 24, 2023
Learn How to Test Flask Applications with PytestMar 22, 2023
Welcome to this tutorial on how to test Flask applications with Pytest. Flask is a popular web...
3 Unique Charts You Wouldn’t Think Were Created with MatplotlibMar 21, 2023
Utilising Python’s Matplotlib to Create Advanced Data Visualisations
Python YAML: How to Load, Read, and Write YAML • Python Land TutorialMar 19, 2023
YAML is easy to write for humans, and read for computers. Learn how to open, parse, and read YAML with Python. With lots of example code!
How to make 40 interactive plots to analyze your machine learning pipelineMar 19, 2023
A quick guide on how to make clean-looking, interactive Python plots to validate your data and model
Make your sklearn models up to 100 times fasterMar 17, 2023
How to considerable reduce training time changing only 1 line of code
PyTorch 2.0: Our next generation release that is faster, more Pythonic and Dynamic as everMar 16, 2023
We are excited to announce the release of PyTorch® 2.0 which we highlighted during the PyTorch Conference on 12/2/22! PyTorch 2.0 offers the same eager-mode development and user experience, while fundamentally changing and supercharging how PyTorch operates at compiler level under the hood with faster performance and support for Dynamic Shapes and Distributed.
How virtual environments workMar 13, 2023
After needing to do a deep dive on the venv module (which I will explain later in this blog post as to why), I thought I would explain how virtual environments work to help demystify them. Why do virtual environments exist? Back in my the day, there was no concept
5 Python Decorators I Use in Almost All My Data Science ProjectsMar 13, 2023
Decorators provide a new and convenient way for everything from caching to sending notifications.
Write Readable Tests for Your Machine Learning Models with BehaveMar 12, 2023
Use natural language to test the behavior of your ML models
Plotting Network Graphs using PythonMar 7, 2023
Learn how to use the NetworkX package to visualize complex networks
35 Hidden Python Libraries That Are Absolute GemsMar 4, 2023
I reviewed 1,000+ Python libraries and discovered these hidden gems I never knew even existed.
Python’s multiprocessing performance problemMar 3, 2023
While multiprocessing allows Python to scale to multiple CPUs, it has some performance overhead compared to threading.
Using PyGWalker to Enhance Your Jupyter Notebook EDA ExperienceMar 3, 2023
An Introduction to the PyGWalker Library for Easy Data Visualisation
Getting Started with Python GeneratorsMar 1, 2023
Learn about Python generators and write memory-efficient and Pythonic code.
SymPy makes math fun againFeb 26, 2023
An introduction into symbolic computations in Python. Don't worry, it's much simpler than it sounds. It's about making Python do your math for you with very little investment in the technology.
Automate the Boring Stuff with PythonFeb 17, 2023
40 Open-Source Tools to Supercharge Your Pandas WorkflowFeb 17, 2023
Pandas receives over 3M downloads per day. But 99% of its users are not using it to its full potential.
Image Filters with PythonFeb 10, 2023
A concise computer vision project for building image filters using Python
Building a Recommender System for Amazon Products with PythonFeb 10, 2023
I built a recommender system for Amazon’s electronics category
10 Python Decorators To Take Your Code To The Next Level | by Ahmed BesbesFeb 10, 2023
Do more things with less code without compromising on quality
How to Perform Multivariate Outlier Detection in Python PyOD For Machine LeFeb 9, 2023
Discover how to effectively detect multivariate outliers in machine learning with PyOD in Python. Learn to convert anomaly scores to probability confidence, choose the best outlier classifier and determine the right probability threshold for improved model accuracy.
Introducing the new JupyterLab Desktop!Feb 9, 2023
We are pleased to announce a major update to JupyterLab Desktop which adds many new features with main focus on the user experience…
3 Simple Ways to Create a Waterfall Plot in PythonFeb 9, 2023
Learn how to quickly create a presentation-ready plot to aid your data storytelling
How to Create Beautiful Waffle Charts for Data Visualisation in PythonFeb 9, 2023
A Great Alternative to Pie Charts for Data Visualisation
Export archived article data from PocketFeb 2, 2023
Export archived article data from Pocket · GitHub
skops: a new library to improve scikit-learn in productionFeb 2, 2023
There are various challenges in MLOps and model sharing, including, security and reproducibility. To tackle these for scikit-learn models, we've developed a new open-source library: skops. In this article, I will walk you through how it works and how to use it with an end-to-end example.
pythondocument/Fluent Python.pdf at master · hiddenJuliet/pythondocumentJan 30, 2023
translate python documents to Chinese for convenient reference 简而言之,这里用来存放那些Python文档君们,并且尽力将其翻译成中文~~ - hiddenJuliet/pythondocument
Hyperparameter Optimization: 10 Top Python LibrariesJan 27, 2023
Become familiar with some of the most popular Python libraries available for hyperparameter optimization.
Introducing PyCircular: A Python Library for Circular Data AnalysisJan 24, 2023
Circular data can present unique challenges when it comes to analysis and modeling
PyPI · The Python Package IndexJan 16, 2023
The Python Package Index (PyPI) is a repository of software for the Python programming language.
SHAP: Explain Any Machine Learning Model in PythonJan 14, 2023
Your Comprehensive Guide to SHAP, TreeSHAP, and DeepSHAP
7 Scikit-Learn Best Practices For Data ScientistsJan 13, 2023
Tips for taking full advantage of this machine learning package
Why TensorFlow for Python is dying a slow deathJan 13, 2023
Many developers who use Python for machine learning are now switching to PyTorch. Find out why and what the future could hold for TensorFlow.
Malicious PyPI Packages Using Cloudflare Tunnels to Sneak Through FirewallsJan 9, 2023
Six malicious Python packages distributed via PyPI deploying info stealers and use Cloudflare tunnels to sneak through firewalls.
Geometric KernelsJan 1, 2023
A cross-framework package for kernels and Gaussian processes on manifolds, graphs, and meshes
Numba: A High Performance Python CompilerDec 28, 2022
PacktPublishing/Python-Feature-Engineering-Cookbook-Second-Edition: PythonDec 25, 2022
Python Feature Engineering Cookbook Second Edition, published by Packt - PacktPublishing/Python-Feature-Engineering-Cookbook-Second-Edition
How to Anonymise Places in PythonDec 18, 2022
A ready-to-run code which identifies and anonymises places, based on the GeoNames database
Media Mix Modeling: How to measure the effectiveness of advertising with PyDec 17, 2022
Media Mix modeling, its implementation, and practical tips
How to use Python LambdasDec 16, 2022
Discover the power of anonymous functions and functional programming in Python
13 Tips for using PyTestNov 28, 2022
Unit-testing is a really important skill for software development. There are some great Python libraries to help us write and run unit-test…
11 Less Used but Important Plots for Data ScienceNov 23, 2022
Some Unique Data Visualization Techniques for Getting High-Level Insight into the Data
3 Useful Python Automation ScriptsNov 8, 2022
The post highlights three useful applications of using python to automate simple desktop tasks. Stay tuned till the end of the post to find the reference for a bonus resource.
Last Mile Delivery From Multiple Depots in PythonNov 7, 2022
Mathematical Modeling, Solution, and Visualization Using PuLP and VeRoViz
5 Ways to use a Seaborn Heatmap (Python Tutorial)Oct 30, 2022
Using a heatmap to visualise a confusion matrix, time-series movements, temperature changes, correlation matrix and SHAP interaction values
How to Create a GIF from Matplotlib Plots in PythonOct 30, 2022
A data visualization technique for 2-dimensional time series data using imageio
5 Ways to Transform Your Seaborn Data VisualisationsOct 30, 2022
Simple and easy pieces of code to enhance your seaborn scatter plots
Step Up Your Game in Making Beautiful Choropleth MapsOct 30, 2022
A guide on how to make different types of maps using Python
Basic to Advanced Logging with Python in 10 MinutesOct 30, 2022
Logging crash course with common logging issues addressed
Python Decorator: What, Why, and HowOct 30, 2022
Python decorator is a very useful tool to help us code efficiently. As I mentioned in my previous article, coding efficiently is one of the…
Hands-on Guide to Create beautiful Sankey Charts in d3js with Python.Oct 21, 2022
The Sankey chart is a great way to discover the most prominent contributions just by looking at how individual items flow across states.
12 Essential Visualizations and How to Implement Them, Part 2Oct 19, 2022
We look at how to create the 12 most useful graphs and charts in Python and Streamlit
Converting Text Documents to Token Counts with CountVectorizerOct 19, 2022
The post explains the significance of CountVectorizer and demonstrates its implementation with Python code.
Introducing IceCream: Never Use Print() To Debug Your Python Code AgainOct 19, 2022
Why I stopped using print() statements for debugging and why you should too
matsui528/nanopq: Pure python implementation of product quantization for nearest neighbor searchOct 14, 2022
Pure python implementation of product quantization for nearest neighbor search - matsui528/nanopq
How to Create Storytelling Moving Bubbles Charts in d3js with Python.Oct 14, 2022
The MovingBubble chart is one of those mind-blowing charts to look at. Learn how to create them using your own data set and Python!
CUDA by Numba ExamplesOct 14, 2022
Follow this series to learn about CUDA programming from scratch with Python. Part 4 of 4.
Product Quantization for Similarity SearchOct 14, 2022
How to compress and fit a humongous set of vectors in memory for similarity search with asymmetric distance computation (ADC)
Bayesian Hierarchical Marketing Mix Modeling in PyMCOct 14, 2022
Learn how to build MMMs for different countries the right way
Signal Processing, beyond the Fourier Transform: Introduction to the ChirplSep 24, 2022
From a theoretical introduction to the hands-on implementation: here’s what you need to know about the Chirplet Transform
D3Blocks: The Python Library to Create Interactive and Standalone D3js CharSep 22, 2022
Create interactive, and stand-alone charts that are built on the graphics of d3 javascript (d3js) but configurable with Python.
Want to find the N largest or N smallest values in a list? Use the `heapq` module! 🐍🔥Sep 16, 2022
— Mike Driscoll (@driscollis)
A Comprehensive Tutorial on Stereo Geometry and Stereo Rectification with PSep 16, 2022
Everything you need to know about Stereo Geometry
30 PyTricks I've Learned By Joining the Real Python Mailing List.Sep 15, 2022
I subscribed to the Real Python mailing list two years ago, and I learned a lot of tips and tricks...
Accelerate Python code 100x by import taichi as ti | Taichi DocsSep 9, 2022
Python has become the most popular language in many rapidly evolving sectors, such as deep learning and data sciences. Yet its easy readability comes at the cost of performance. Of course, we all complain about program performance from time to time, and Python should certainly not take all the blame. Still, it's fair to say that Python's nature as an interpreted language does not help, especially in computation-intensive scenarios (e.g., when there are multiple nested for loops).
4 Basic Commands When Working with Python TuplesSep 9, 2022
Making you understand the characteristics of Python Tuples and how you deal with them
Topic Modeling on PyCaret — ReduxSep 5, 2022
A beginner’s guide to PyCaret’s natural language processing module.
What Happens When you Import a Python Module? | by Xiaoxu Gao | Aug, 2022 |Aug 31, 2022
Deep dive into the import system
7 spaCy Features To Boost Your NLP Pipelines And Save TimeAug 24, 2022
I’ve never used spaCy beyond simple named entity recognition tasks. Boy was I wrong.
Seven Killer Memory Optimization Techniques Every Pandas User Should KnowAug 23, 2022
Simple tips to optimize the memory utilization in Pandas
Most Important Python Modules for BeginnersAug 23, 2022
This article will take you through some of the most important Python modules for beginners. Most Important Python Modules for Beginners.
Uncommon Uses of Python in Commonly Used LibrariesAug 20, 2022
Some off-the-beaten uses of Python learned from reading libraries.
How to Create File System Triggers in PythonAug 19, 2022
How to painlessly monitor file creation, modification, and deletion programmatically.
A Guide to Python Itertools Like No OtherAug 19, 2022
Crystalise your understanding of this amazing library through animated GIFs and learn how to write more elegant code
Visualizing Part-of-Speech Tags with NLTK and SpaCyAug 19, 2022
Customizing displaCy’s entity visualizer
How to get your home folder with using 2️⃣ lines of code and the pathlib module! 🐍🔥Aug 17, 2022
— Mike Driscoll (@driscollis)
9 Visualizations with Python that Catch More Attention than a Bar ChartAug 8, 2022
Creating eye-catching graphs with Python to use instead of bar charts.
An Introduction to Graph Partitioning Algorithms and Community DetectionAug 4, 2022
Graph partitioning has been a long-lasting problem and has a wide range of applications. This post shares the methodology for graph…
5 Less-Known Python Libraries That Can Help in Your Next Data Science ProjeAug 4, 2022
Reduce time in your data science workflow with these libraries.
Parallel Processing Large File in Python - KDnuggetsAug 1, 2022
Learn various techniques to reduce data processing time by using multiprocessing, joblib, and tqdm concurrent.
Pytest with Marking, Mocking, and Fixtures in 10 MinutesAug 1, 2022
Write robust unit tests with Python pytest
Stream Graphs Basics with Python's MatplotlibJul 26, 2022
The good-looking cousin of stacked area charts
4 Quick Tricks For Better Plots in MatplotlibJul 26, 2022
Easily adding arrows, multiple axes, gradient fill, and more
How to Make a Database Connection in Python for Absolute BeginnersJul 23, 2022
3 steps (+examples) to connect to MS SQL Server, MySQL, Oracle and many other databases
codecrafters-io/build-your-own-x: Master programming by recreating your favorite technologies from scratch.Jul 20, 2022
Master programming by recreating your favorite technologies from scratch. - codecrafters-io/build-your-own-x
Welcome | Handbook of Graphs and Networks in People AnalyticsJul 20, 2022
A technical manual of graphs, networks and their applications in the people and social sciences
Modeling Marketing Mix Using Smoothing SplinesJul 18, 2022
Capturing non-linear advertising saturation and diminishing returns without explicitly transforming media variables
Hands on introduction to reinforcement learning in PythonJul 18, 2022
One of the biggest barriers to traditional machine learning is that most supervised and unsupervised machine learning algorithms need huge amounts of data to be useful in real world use cases. Even…
Build Complex Time Series Regression Pipelines with sktimeJul 13, 2022
How to forecast with scikit-learn and XGBoost models with sktime
githublog/2022/6/15/rolling-your-own-crypto-aes.md at main · francisrstokes/githublogJul 13, 2022
I'm sick of complex blogging solutions, so markdown files in a git repo it is - francisrstokes/githublog
Understanding Self-Organising Map Neural Network with Python CodeJul 13, 2022
Brain-inspired unsupervised machine learning through competition, cooperation and adaptation
How to Solve Scheduling Problems in PythonJul 11, 2022
Use linear programming to minimize the difference between required and scheduled resources
Need to turn your code into an executable for Windows, Mac or Linux? Try PyInstaller! 🐍🔥Jul 7, 2022
— Mike Driscoll (@driscollis)
Gif Creation in Python.Jul 6, 2022
Here you can add multiple Images and duration as well in the code.
— Python Coding (@clcoding)
Learn the Python Anvil FrameworkJul 5, 2022
Python for Data Analysis, 3EJul 2, 2022
FIGS: Attaining XGBoost-level performance with the interpretability and speJun 24, 2022
The BAIR Blog
Usage · ArchiveBox/ArchiveBox Wiki · GitHubJun 23, 2022
🗃 Open source self-hosted web archiving. Takes URLs/browser history/bookmarks/Pocket/Pinboard/etc., saves HTML, JS, PDFs, media, and more... - ArchiveBox/ArchiveBox
Getting your reading history out of Pocket using Python | by Alex D'Ambra |Jun 23, 2022
I’ve been using Pocket for many years to collate all the articles, blog posts, recipes, etcI’ve found online. I decided it would be…
A Guide to Python's Secret Superpower: Magic MethodsJun 23, 2022
Python has a secret superpower with a similarly stupendous name: Magic Methods. These methods can...
The Battle of Choropleths — Part 3 — FoliumJun 22, 2022
Using the Folium Package to Create Stunning Choropleths
Creating Choropleth Maps with Python’s Folium LibraryJun 22, 2022
How to make choropleths with different data structures in Python
Neighborhood Analysis, KD-Trees, and Octrees for Meshes and Point Clouds inJun 22, 2022
How to use Python libraries like Open3D, PyVista, and Vedo for neighborhood analysis of point clouds and meshes through KD-Trees/Octrees
The one pip config you need to haveJun 4, 2022
Whenever you are installing python packages, you should always use a virtual environment. pip makes...
Simple Text Extraction Using Python And Tesseract OCRJun 3, 2022
Introduction Hello! In this quick tutorial I will show how to create a simple program...
3 Ways to Create a Multi-Page Streamlit AppJun 3, 2022
Streamlit may not have been designed for full-blown websites, but it is fairly straightforward to create multiple pages in a single app
Cython for absolute beginners: 30x faster code in two simple stepsJun 1, 2022
Easy Python code compilation for blazingly fast applications
faif/python-patterns: A collection of design patterns/idioms in PythonJun 1, 2022
A collection of design patterns/idioms in Python.
A Python Tutorial on Geomapping using Folium and GeoPandasMay 28, 2022
Maps and geography have been a long passion of mine, especially in my International Relations background. A side goal of mine as I grow as…
Python's fileinput module makes it easy to write CLI tools that operate on files or as a filter.May 28, 2022
(BTW, bat: )
— Ned Batchelder (@nedbat)
An In-Depth Tutorial to Python Decorators That You Can Actually UseMay 28, 2022
Going knee-deep into the internals of Python
Useful Python decorators for Data ScientistsMay 28, 2022
I show toy implementations of Python decorator patterns that may be useful for Data Scientists.
One Line of Code to Accelerate Your Sklearn Algorithms on Big DataMay 27, 2022
The introduction of the intel sklearn extension. Make your Random Forest even faster than XGBoost.
Why We Switched from Python to Go - Software Engineering DailyMay 26, 2022
Switching to a new language is always a big step, especially when only one of your team members has prior experience with that language. Early this year, we switched Stream’s primary programming language from Python to Go. This post will explain some of the reasons why we decided to leave Python behind and make the switch to
10 Must-know Seaborn Functions for Multivariate Data Analysis in PythonMay 7, 2022
Learn how to visualize data using Seaborn’s axes-level and figure-level plots
Sparse Autoencoder Neural Networks — How to Utilise Sparsity for Robust InfMay 4, 2022
A comparison between Undercomplete and Sparse AE with a detailed Python example
Breaking Down the Powerful Magic Behind the Pandas GroupBy FunctionMay 4, 2022
A detailed explanation of how groupby works under the hood to help you understand it better.
Python is About to Become 64% Faster — Python 3.10 vs. Python 3.11 BenchmarApr 28, 2022
Let’s compare Python 3.10 vs. Python 3.11 in an extensive benchmark test. Spoiler alert: Python 3.11 is up to 64% faster!
Louvain’s Algorithm for Community Detection in PythonApr 8, 2022
Apply Louvain’s Algorithm in Python for Community Detection
Everything About Python Tuple Data Structure: Beginner’s GuideApr 7, 2022
In this article we will focus on a complete walk through of a Python tuple data structure
Amazing Functools Features in PythonApr 3, 2022
I was recently reading Django’s Source Code, and I came across the @wraps decorator, which led me to...
How To Create a SQL Practice Database with PythonMar 26, 2022
Finally, start practicing SQL with your own database
7 Useful Examples of Python’s itertoolsMar 26, 2022
Saving time and code with flexible utility functions and paradigms
D-Tale: One of the Best Python Libraries You Have Ever SeenMar 23, 2022
Here is my take on this must-have Python library and why you should give it a try
Glossary — Python 3.10.3 documentationMar 23, 2022
>>>, The default Python prompt of the interactive shell. Often seen for code examples which can be executed interactively in the interpreter.,,..., Can refer to:- The default Python prompt of the i...
Explore and Visualize Geospatial Data using Leafmap Python PackageMar 23, 2022
Create interactive maps with just a few lines of Python code
vinta/awesome-python: A curated list of awesome Python frameworks, librarieMar 23, 2022
An opinionated list of awesome Python frameworks, libraries, software and resources. - vinta/awesome-python
20 Python Interview Questions To Challenge Your KnowledgeMar 21, 2022
A peek into data structures, programming concepts, and best practices.
What is The Difference Between requirements.txt and setup.pyMar 19, 2022
Understanding the purpose of requirements.txt, setup.py and setup.cfg in Python when developing and distributing packages
A Gentle Introduction to Testing with PyTestMar 17, 2022
A test is code that executes code. When you start developing a new feature for your Python project,...
Real-world website visitor forecast with Facebook Prophet: A Complete TutorMar 10, 2022
As a data analyst at Microsoft, I must investigate and understand time-series data every day. Besides looking at some key performance…
How to Scrape and Extract Data from PDFs Using Python and tabula-pyFeb 21, 2022
You want to make friends with tabula-py and Pandas
How to Use Tesseract OCR to Convert PDFs to TextFeb 21, 2022
This is a cross-post from my blog Arcadian.Cloud, go there to see the original post. I have some...
Scrape Data from PDF Files Using Python and PDFQueryFeb 21, 2022
Extract Data from PDF Files Effectively
Understanding Attributes, Dicts and Slots in PythonFeb 20, 2022
Understanding Attributes in Python Python is a very dynamic language by nature. Variables...
Bipartite — NetworkX 2.6.2 documentationFeb 20, 2022
Topic Modeling in Python | ToptalFeb 11, 2022
Topic modeling can bring NLP to the next level. Here’s how.
Create a simple "Hello World" PDF with and with 4 lines of codeFeb 6, 2022
🐍🔥
— Mike Driscoll (@driscollis)
Data Scientists, The 5 Graph Algorithms that you should knowFeb 2, 2022
Because Graph Analytics is the future
scikit-and-tensorflow-workbooks/ch03-classification.ipynb at master · bjpcjp/scikit-and-tensorflow-workbooksJan 29, 2022
based on "Hands-On Machine Learning with Scikit-Learn & TensorFlow" (O'Reilly, Aurelien Geron) - bjpcjp/scikit-and-tensorflow-workbooks
5 Advanced Tips on Python DecoratorsJan 26, 2022
Do you want to write concise, readable, and efficient code? Well, python decorators may help you on your journey.
Survival Analysis in Python: A Quick Guide to The Weibull AnalysisJan 21, 2022
A Quick Guide to The Weibull Analysis
fb-prophet/01_docs.ipynb at master · bjpcjp/fb-prophetJan 17, 2022
Prophet (FB time series prediction package) docs to Python code. - bjpcjp/fb-prophet
category-scatterplot/demo.ipynb at master · bjpcjp/category-scatterplotJan 17, 2022
Based on scatterplot by Myriam Barnes. A simple to viz categories in a scatter plot. - bjpcjp/category-scatterplot
Creating Beautiful Topography Maps with PythonJan 17, 2022
Who needs GIS when you can build eye-catching 3D topography maps with Python?
PostgreSQL PythonJan 16, 2022
This PostgreSQL Python section shows how to work with PostgreSQL from Python programming language using the psycopg2 database driver.
python-data-science-handbook/seaborn at master · bjpcjp/python-data-science-handbookJan 16, 2022
Sourced from O'Reilly ebook of the same name.
scikit-and-tensorflow-workbooks/ch05-support-vector-machines.ipynb at master · bjpcjp/scikit-and-tensorflow-workbooksJan 16, 2022
based on "Hands-On Machine Learning with Scikit-Learn & TensorFlow" (O'Reilly, Aurelien Geron) - bjpcjp/scikit-and-tensorflow-workbooks
python-data-science-handbook/numpy at master · bjpcjp/python-data-science-handbookJan 16, 2022
Sourced from O'Reilly ebook of the same name.
A ~5 minute guide to Numba — Numba 0.52.0.dev0+274.g626b40e-py3.7-linux-x86_64.egg documentationJan 16, 2022
pandas - Python Data Analysis LibraryJan 16, 2022
python-data-science-handbook/pandas at master · bjpcjp/python-data-science-handbookJan 16, 2022
Sourced from O'Reilly ebook of the same name.
The Kaggle Way to Tune Hyperparameters with OptunaJan 16, 2022
Easily and efficiently optimize your model’s hyperparameters with Optuna with a mini project
Blankly - Rapidly Build Quant Models Across ExchangesJan 15, 2022
Build in minutes. Deploy in seconds. Quant workflow reimagined. Built by developers for developers 🚀
Trading Algos - 5 Key Metrics and How to Implement Them in PythonJan 15, 2022
Metrics surround us. Whether you're building the next big thing and need to measure customer churn,...
Release of IPython 8.0. IPython is a powerful Python REPL that… | by MatthiJan 12, 2022
IPython is a powerful Python REPL that gives you tab completion, better tracebacks, multiline editing, and several useful features on top…
pandas-tips-tricks/pandas-tips-tricks.ipynb at master · bjpcjp/pandas-tips-tricksDec 15, 2021
various tips and tricks.
5 Python open-source tools to extract text and tabular data from PDF FilesDec 8, 2021
This article is a comprehensive overview of different open-source tools to extract text and tabular data from PDF Files
3 (and Half) Powerful Tricks To Effectively Read CSV Data In PythonDec 7, 2021
Master usecols, chunksize, parse_dates in pandas read_csv().
Mito: One of the Coolest Python Libraries You Have Ever SeenDec 4, 2021
Here is my take on this cool Python library and why you should give it a try
A Guide to Dimensionality Reduction in PythonDec 3, 2021
Dimensionality reduction is a vital tool for data scientists across industries. Here is a guide to getting started with it.
A Complete Machine Learning Project From Scratch: Setting UpNov 3, 2021
In this first post in a series on how to build a complete machine learning product from scratch, I describe how to setup your project and tooling.
Probability Distributions with Python’s SciPyOct 23, 2021
How to Model random Processes with Distributions and Fit them to Observational Data
functools — Higher-order functions and operations on callable objectsOct 19, 2021
Source code: Lib/functools.py The functools module is for higher-order functions: functions that act on or return other functions. In general, any callable object can be treated as a function for t...
Understanding all of Python, through its builtinsOct 18, 2021
Python has a whole lot of builtins that are unknown to most people. This guide aims to introduce you to everything that Python has to offer, through its seemingly obscure builtins.
Getting Started with Streamlit for Data ScienceOct 18, 2021
Create, deploy, and test your Python applications, analyses, and models with ease using Streamlit Key Features Learn how to showcase machine learning models in a Streamlit application effectively and efficiently … - Selection from Getting Started with Streamlit for Data Science [Book]
Python Assert Statement — Everything You Need To Know Explained in 5 MinuteOct 17, 2021
Why, when, and how — Learn assert statements in Python right now.
Clustering Made Easy with PyCaretOct 17, 2021
Low-code Machine Learning with a Powerful Python Library
Streamlit, which helps data scientists build apps, hits version 1.0Oct 12, 2021
Streamlit releases v1.0 of its DataOps platform for data science apps to make it easier for data scientists to share code and components.
Python/DIRECTORY.md at master · TheAlgorithms/PythonOct 3, 2021
All Algorithms implemented in Python.
How to deploy streamlit app to HerokuOct 1, 2021
Hello everyone, This is a step by step tutorial about how to deploy your Streamlit app to Heroku. ...
Create a Web App in Under Thirty Minutes with Streamlit, MongoDB and HerokuOct 1, 2021
An aspiring Full Stack Developer’s guide to quickly developing and deploying scalable web applications
A Practical Introduction to 9 Regression AlgorithmsSep 28, 2021
Hands-on tutorial to effectively use different Regression Algorithms
If You Can Write Functions, You Can Use DaskSep 25, 2021
This article is the second article of an ongoing series on using Dask in practice. Each article in this series will be simple enough for beginners, but provide useful tips for real work. The first article in the series is about using LocalCluster.
How to Generate Automated PDF Documents with PythonSep 25, 2021
Leveraging automation to create dazzling PDF documents effortlessly
Scikit-Learn Version 1.0Sep 14, 2021
For a short description of the main highlights of the release, please refer to Release Highlights for scikit-learn 1.0. Legend for changelogs something big that you couldn’t do before., something t...
ABZ-Aaron/CheatSheets: Just a place to store cheatsheetsSep 6, 2021
Just a place to store cheatsheets.
15 Python Snippets to Optimize your Data Science PipelineAug 28, 2021
Quick Python solutions to help your data science cycle.
Python Imaging Library (PIL) TutorialAug 21, 2021
In this article, I will introduce you to a tutorial on the Python Imaging Library. Learn how to use Python Imaging Library or PIL.
How to Create a Geofence with PythonAug 17, 2021
Taking Advantage of Your Location Data for an Expansive Range of Possibilities
scikit-learn-intelex · PyPIJul 20, 2021
Intel(R) Extension for Scikit-learn is a seamless way to speed up your Scikit-learn application.
PyMOL | pymol.orgJul 18, 2021
14 Must-Know pip Commands For Data Scientists and EngineersJul 15, 2021
Exploring some of the most useful pip commands for everyday programming
How to Parameterize Python Tests Using PytestJul 13, 2021
Passing Arguments to Fixtures and Test Functions
Martin Heinz | Functools - The Power of Higher-Order Functions in PythonJul 10, 2021
There are lots of great Python libraries, but most of them don't come close to what built-in itertools and also
Why decorators in Python are pure geniusJul 5, 2021
Analyze, test, and re-use your code with little more than an @ symbol
Hands-on Survival Analysis with PythonJul 4, 2021
What companies can learn from employee turnover data
fairseq/examples/stories at main · facebookresearch/fairseqJul 3, 2021
Facebook AI Research Sequence-to-Sequence Toolkit written in Python. - facebookresearch/fairseq
Read Excel files with Python. 1000x Faster.Jul 3, 2021
In this article, I’ll show you five ways to load data in Python. Achieving a speedup of 3 orders of magnitude.
TheAlgorithms/Python: All Algorithms implemented in PythonJun 28, 2021
All Algorithms implemented in Python.
Turn Excel Into a Beautiful Web Application Using StreamlitJun 26, 2021
Present your data as an interactive dashboard web application using the python library Streamlit
The torch.linalg module: Accelerated Linear Algebra with Autograd in PyTorchJun 25, 2021
Linear algebra is essential to deep learning and scientific computing, and it’s always been a core part of PyTorch. PyTorch 1.9 extends PyTorch’s support for linear algebra operations with the torch.linalg module. This module, documented here, has 26 operators, including faster and easier to use versions of older PyTorch operators, every function from NumPy’s linear algebra module extended with accelerator and autograd support, and a few operators that are completely new. This makes the torch.linalg immediately familiar to NumPy users and an exciting update to PyTorch’s linear algebra support.
GPBoost: Combining Tree-Boosting with Gaussian Process and Mixed Effects MoJun 25, 2021
Combining tree-boosting with Gaussian process and mixed effects models - fabsig/GPBoost
Introduction - Hugging Face NLP CourseJun 21, 2021
We’re on a journey to advance and democratize artificial intelligence through open source and open science.
Functioning with python functional programming- lambda, map, filter, zip, reduce, accumulateJun 21, 2021
In this post, we will understand how python functional programming can be used efficiently to achieve tasks artistically as it is rightly said programming is indeed an art. We prefer using higher-order functions than simply looping because internally these are implemented in C making them more effic
How to Schedule Python Scripts With Cron — The Only Guide You’ll Ever NeedJun 19, 2021
Automate your Python script execution — works on Linux and macOS.
Virtual environments for absolute beginners — what is it and how to create one (+ examples)Jun 19, 2021
A deep dive into Python virtual environments, pip and avoiding entangled dependencies
The Quick Guide To Using Environment Variables in PythonJun 14, 2021
Set your application secrets, load, and retrieve them easily in your Data Science apps.
Web Development with Python: Dash (complete tutorial)Jun 14, 2021
Draw with Plotly, Embed Bootstrap CSS, Upload & Download files, Change Inputs after selection, Navbars, Spinners, and more…
Mastering Web Applications with StreamlitJun 14, 2021
Using Streamlit to Build an ML-based Web Application
Python Factories for Scalable, Reusable, and Elegant CodeJun 8, 2021
In a real-life factory, the production of identical or similar objects is not done individually but rather streamlined in assembly lines. Similarly, the factory design pattern allows you to create…
Make Pandas 3 Times Faster with PyPolarsMay 31, 2021
Learn how to speed up your Pandas workflow using the PyPolars library.
Interpreting Scattertext: a seductive tool for plotting textMay 30, 2021
Scroll down to see how to interpret a plot created by a great tool for comparing two classes and their corpora.
Dask DataFrames — How to Run Pandas in Parallel With EaseMay 28, 2021
Are you a Data Scientist experienced with Pandas? Then you know its pain points. There's an easy solution - Dask - which enables you to run Pandas computations in parallel.
Understanding *args and **kwargs in PythonMay 28, 2021
If you are a beginning Python programmer, you might come across function declarations with parameters that look like this: The * and the ** operators above allow you to pass in variable number of…
Quantra — a Python coding platform to learn quantitative financeMay 27, 2021
To be honest, the title of the article does quite a good job in describing what Quantra actually is. It’s a platform that helps potential students with their journey of learning about quantitative…
How to cartoonize an image with PythonMay 24, 2021
In this tutorial, I will show you how to give a cartoon-effect to an image in Python with OpenCV. Op...
Predict Customer Churn (the right way) using PyCaretMay 24, 2021
A step-by-step guide on how to predict customer churn the right way using PyCaret that actually optimizes the business objective and improves ROI for the business.
Handling exceptions in Python like a pro ? ?May 22, 2021
In this post, I show you a real-life example of how to create, handle and log exceptions effectively in Python.
Web Scraping to Create a Dataset using PythonMay 18, 2021
In this article, I'm going to walk you through a tutorial on web scraping to create a dataset using Python and BeautifulSoup.
Show HN: MPL Plotter – Python library to make technical plots more efficienMay 18, 2021
Publication-quality data representation library based on Matplotlib. - alopezrivera/mpl_plotter
An Introduction to PyTorch LightningMay 18, 2021
Word on the street is that PyTorch lightning is a much better version of normal PyTorch. But what could it possibly have that it brought such consensus in our world? Well, it helps researchers scale…
Vaex: Pandas but 1000x fasterMay 17, 2021
If you are working with big data, especially on your local machine, then learning the basics of Vaex, a Python library that enables the fast processing of large datasets, will provide you with a productive alternative to Pandas.
Top 5 Python libraries for Computer visionMay 7, 2021
Computer vision is the field of computer science that focuses on replicating parts of the complexity...
My Favorite One Liners | MuhammadMay 5, 2021
Commandline one liners that makes your workflow more productive
Prophet | Forecasting at scale.May 5, 2021
Prophet is a forecasting procedure implemented in R and Python. It is fast and provides completely automated forecasts that can be tuned by hand by data scientists and analysts.
Make Beautiful Spatial Visualizations with Plotly and MapboxMay 5, 2021
I recently wrote a post about visualizing weather data from NOAA. We walked through processing the data and making some basic interactive maps with Plotly. In this article I want to use the same data…
How to start with streamlit web framework.May 5, 2021
Sometimes you make a data science , machine learning or computer vision projects but suddenly you stu...
What is Dask and How Does it Work?May 5, 2021
This article will first address what makes Dask special and then explain in more detail how Dask works. So: what makes Dask special? Python has a rich ecosystem of data science libraries including…
A Hitchhiker's Guide to SQLite with PythonMay 5, 2021
To explore SQLite along with Python, which is a user-friendly and no-nonsense language, we are going...
Simple but Stunning: Animated Cellular Automata in PythonMay 2, 2021
Automation epitomizes the last few decades of rapid technological development where many processes take place without human intervention. But what exactly does it mean? These are the two most common…
30 Examples to Get You From a Novice to an Advanced Pandas UserMay 2, 2021
Pandas is a data analysis and manipulation library for Python. It is one of the most popular tools among data scientists and analysts. Pandas can handle an entire data analytics pipeline. It provides…
Nine Emerging Python Libraries You Should Add to Your Data Science Toolkit in 2022May 1, 2021
As Data Science continues to grow and develop, it’s only natural for new tools to emerge, especially considering the fact that data…
A Summary of Active Learning FrameworksApr 28, 2021
If you are dealing with a classification task, I recommend the modAL. As for the sequence labeling task, the AlpacaTag is the only choice for you. Active learning could decrease the number of labels…
Geopandas Hands-on: Geospatial Relations and OperationsApr 26, 2021
Part 1: Introduction to geospatial concepts (follow here) Part 2: Geospatial visualization and geometry creation (follow here) Part 3: Geospatial operations (this post) Part 4: Building geospatial…
Five Numpy Functions You Should UnderstandApr 25, 2021
How to stack your array horizontally and vertically, find unique values, split your array and some more tips to use Numpy effectively.
Time Series Forecasting with PyCaret Regression ModuleApr 22, 2021
PyCaret is an alternate low-code library that can be used to replace hundreds of lines of code with few lines only. See how to use PyCaret's Regression Module for Time Series Forecasting.
Basic Music Theory in ~200 Lines of PythonApr 20, 2021
A basic introduction to Western music theory using the Python programming language to derive scales, chords, and modes in every key.
Use Python to Design Automation Tools for Excel UsersApr 18, 2021
Design of Excel Automation Tools for Sales Analytics ready to be used by your colleagues without any prior knowledge of Python
Extract Tables from PDF file in a single line of Python CodeApr 18, 2021
How to extract and convert tables from PDFs into Pandas Dataframe using Camelot
DIY XGBoost library in less than 200 lines of pythonApr 13, 2021
XGBoost explained as well as gradient boosting method and HP tuning by building your own gradient boosting library for decision trees.
Using PyTorch + NumPy? You're making a mistake.Apr 11, 2021
A bug that plagues thousands of open-source ML projects.
How to Accelerate Signal Processing in PythonApr 9, 2021
This post is the seventh installment of the series of articles on the RAPIDS ecosystem. The series explores and discusses various aspects of RAPIDS that allow its users solve ETL (Extract, Transform…
Wicked Fast Python With ItertoolsApr 9, 2021
A quick look at an easy way to make Python faster and more effective for machine-learning by using the itertools module.
Data Preprocessing in Python Pandas — Part 6 Dropping DuplicatesApr 3, 2021
A quick tutorial to drop duplicates using the Python Pandas library.
Building a full-text search engine in 150 lines of Python code · Bart de GoedeMar 28, 2021
Full-text search is everywhere. From finding a book on Scribd, a movie on Netflix, toilet paper on Amazon, or anything else on the web through Google (like [how to do your job as a software engineer](https://localghost.dev/2019/09/everything-i-googled-in-a-week-as-a-professional-software-engineer/)), you've searched vast amounts of unstructured data multiple times today. What's even more amazing, is that you've even though you searched millions (or [billions](https://www.worldwidewebsize.com/)) of records, you got a response in milliseconds. In this post, we are going to build a basic full-text search engine that can search across millions of documents and rank them according to their relevance to the query in milliseconds, in less than 150 lines of code!
Xgboost regression training on CPU and GPU in pythonMar 23, 2021
GPU vs CPU training speed comparison for xgboost
11 Pandas Built-in Functions You Should KnowMar 22, 2021
No need to install, import and initialize — Just use them
How to use loc and iloc for selecting data in PandasMar 19, 2021
Pandas tips and tricks to help you get started with data analysis
10 powerful built-in functions from the Python standard libraryMar 6, 2021
Photo by Divide By Zero on Unsplash There are a ton of awesome packages available in the Python ecos...
How to use PyCaret — the library for lazy data scientistsMar 6, 2021
Train, visualize, evaluate, interpret, and deploy models with minimal code.
8 Things to Know to Get Started with With Pandas GroupbyMar 6, 2021
Groupby is so powerful, which may sound daunting to beginners, but you don’t have to know all of its features.
Jupyter: Get ready to ditch the IPython kernel | by Dimitris Poulopoulos |Mar 4, 2021
JupyterLab moves closer to becoming a full-fledged IDE with xeus-python.
Gradient-Free-Optimizers A collection of modern optimization methods in PytMar 1, 2021
Simple and reliable optimization with local, global, population-based and sequential techniques in numerical discrete search spaces. - SimonBlanke/Gradient-Free-Optimizers
Are You Still Using Pandas to Process Big Data in 2021?Mar 1, 2021
Pandas doesn’t handle well Big Data. These two libraries do! Which one is better? Faster?
PyCaret — pycaret 2.2.0 documentationFeb 25, 2021
Home - PyCaretFeb 25, 2021
[et_pb_section fb_built=”1″ admin_label=”Header” _builder_version=”4.12.0″ background_color=”#01012C” collapsed=”on” global_colors_info=”{}”][et_pb_row column_structure=”1_2,1_2″ _builder_version=”4.12.0″ collapsed=”on” global_colors_info=”{}”][et_pb_column type=”1_2″ _builder_version=”4.12.0″ z_index=”10″ custom_padding=”18%||||false|false” global_colors_info=”{}”][et_pb_text _builder_version=”4.14.7″ text_font=”Montserrat|800|||||||” text_text_color=”#01012C” text_font_size=”470px” text_line_height=”1em” positioning=”absolute” custom_margin=”|-30%||-10%|false|false” custom_margin_tablet=”|0%||-5%|false|false” custom_margin_phone=”|0%|||false|false” custom_margin_last_edited=”on|desktop” text_font_size_tablet=”40vw” text_font_size_phone=”40vw” text_font_size_last_edited=”on|tablet” text_text_shadow_style=”preset5″ text_text_shadow_horizontal_length=”-1.5px” text_text_shadow_vertical_length=”-1.5px” text_text_shadow_color=”#DB0EB7″ global_colors_info=”{}”] pc [/et_pb_text][et_pb_text _builder_version=”4.14.7″ header_font=”Barlow Condensed|500|||||||” header_text_color=”#FFFFFF” header_font_size=”122px” custom_margin=”||0px||false|false” header_font_size_tablet=”42px” header_font_size_phone=”26px” header_font_size_last_edited=”on|tablet” global_colors_info=”{}”] low-code machine learning [/et_pb_text][et_pb_button button_url=”https://pycaret.gitbook.io” url_new_window=”on” button_text=”GET STARTED” _builder_version=”4.14.7″ […]
A Complete Guide To Survival Analysis In Python, part 3 - KDnuggetsFeb 24, 2021
Concluding this three-part series covering a step-by-step review of statistical survival analysis, we look at a detailed example implementing the Kaplan-Meier fitter based on different groups, a Log-Rank test, and Cox Regression, all with examples and shared code.
A/B Testing — A complete guide to statistical testingFeb 18, 2021
Optimizing web marketing strategies through statistical testing
AB_Testing/AB_Testing.ipynb at main · bjpcjp/AB_TestingFeb 18, 2021
A/B Testing — A complete guide to statistical testing - bjpcjp/AB_Testing
Generative Graph Models with NetworkXFeb 10, 2021
A comprehensive guide on standard generative graph approaches with implementation in NetworkX
8 Must-Know File System Operations In PythonFeb 7, 2021
The essential for Python in tasks automation apps
Image Processing with Python — Using RG ChromaticityFeb 1, 2021
How to use the Gaussian Distribution for Image Segmentation
Image Processing with Python — Template Matching with Scikit-ImageJan 30, 2021
How to identify similar objects in your image
Image Processing with Python — Blob Detection using Scikit-ImageJan 28, 2021
How to identify and segregate specific blobs in your image
SVM Classifier and RBF Kernel — How to Make Better Models in PythonJan 19, 2021
A complete explanation of the inner workings of Support Vector Machines (SVM) and Radial Basis Function (RBF) kernel
How to Create PDF Reports with Python — The Essential GuideJan 19, 2021
Create PDF reports with beautiful visualizations in 10 minutes or less.
Python Parallelism: Essential Guide to Speeding up Your Python Code in MinuJan 17, 2021
Essential guide to multiprocessing with Python.
New Features of Scikit-Learn. An Overview of the Most Important… | by AnkitJan 8, 2021
An Overview of the Most Important Features in Version 0.24
6 Cool Python Tricks You Should Know | by Soner Yıldırım | Jan, 2021 | TowaJan 4, 2021
Go beyond the usual
Image Processing with Python — Blurring and Sharpening for BeginnersJan 2, 2021
How do you apply convolution kernels to colored images?
Pylift: A Fast Python Package for Uplift Modeling – WayfairJan 2, 2021
Uplift models seek to predict the incremental value attained in response to a treatment. For example, if we want to know the value of showing an advertisement to someone, typical response models will only tell us that a person is likely to purchase after being given an advertisement, though they may have been likely to purchase already. Uplift models will predict how much more likely they are to purchase after being shown the ad. The most scalable uplift modeling packages to date are theoretically rigorous, but, in practice, they can be prohibitively slow. We have written a Python package, pylift, that implements a transformative method wrapped around scikit-learn to allow for (1) quick implementation of uplift, (2) rigorous uplift evaluation, and (3) an extensible python-based framework for future uplift method implementations.
Introduction to Image Processing with Python — Dilation and Erosion for BegDec 29, 2020
A deeper look into the fundamentals of image dilation and erosion with the use of kernels.
Annotated Heatmaps of a Correlation Matrix in 5 Simple Steps | by Julia KhoDec 26, 2020
A heatmap is a graphical representation of data in which data values are represented as colors. That is, it uses color in order to…
KMP Algorithm (String Matching) DemystifiedDec 24, 2020
The string matching problem also known as “the needle in a haystack” is one of the classics. This simple problem has a lot of application…
BFGS in a Nutshell: An Introduction to Quasi-Newton MethodsDec 23, 2020
Demystifying the inner workings of BFGS optimization
Top 10 Python libraries of 2020 you should know about | Tryolabs BlogDec 22, 2020
There are so many amazing Python libraries out there that it's hard to keep track of all of them. That's why we share with you our hand-picked selection of some top libraries.
shutil — High-level file operationsDec 18, 2020
Source code: Lib/shutil.py The shutil module offers a number of high-level operations on files and collections of files. In particular, functions are provided which support file copying and removal...
Quickstart: Create a Python app - Azure App Service | Microsoft DocsDec 18, 2020
Get started with Azure App Service by deploying your first Python app to Azure App Service.
How to make an animated GIF map in Python using Folium and ImageioDec 18, 2020
A visual analysis of Brazilian Higher Education history
Improve Warehouse Productivity using Order Batching with PythonDec 18, 2020
Design a simulation model to estimate the impact of several Single Picker Routing Problem strategies in your Picking Productivity
Forecasting the Copper Producer Price Index with ProphetDec 18, 2020
Using Prophet to forecast commodity prices
Matching of Bipartite Graphs using NetworkXDec 18, 2020
A simple introduction to matching in bipartite graphs with Python code examples
Visualizing and Animating Optimization Algorithms with Matplotlib - DataScienceCentral.comDec 10, 2020
This article was written by Louis Tiao. In this series of notebooks, we demonstrate some useful patterns and recipes for visualizing animating optimization algorithms using Matplotlib. We shall restrict our attention to 3-dimensional problems for right now (i.e. optimizing over only 2 parameters), though what follows can be extended to higher dimensions… Read More »Visualizing and Animating Optimization Algorithms with Matplotlib
How to Install Flask on Ubuntu 20.04Dec 10, 2020
In this article we'll discuss how to install Flask on Ubuntu 20.04 inside a Python virtual environment.
Hands-on guide to Python Optimal Transport toolbox: Part 2Dec 10, 2020
Color transfer, Image editing and Automatic Translation
A Step by Step Guide to Interactive Choropleth Map in PythonDec 10, 2020
Learn to Develop Choropleth Map Easily Using Python’s Folium Library
Data Visualization Using Pandas BokehDec 10, 2020
Create stunning visualizations for Pandas DataFrames
FavoritesDec 9, 2020
Pywedge helps in visualizing the data, preprocessing, and creating baseline models
20 NumPy Operations That Every Data Scientist Should KnowNov 30, 2020
NumPy forms the basis of many Python libraries in the data science domain.
Introduction to PyMC3: A Python package for probabilistic programmingNov 29, 2020
An introduction to PyMC3 through a concrete example
Optimization in Python — PeepholeNov 29, 2020
A brief introduction to Python’s Peephole optimization technique
Show HN: A list of 470 static analysis toolsNov 29, 2020
Find static code analysis tools and linters for Java, JavaScript, PHP, Python, Ruby, C/C++, C#, Go, Swift, and more. All tools and linters are peer-reviewed by fellow developers to select the best tools available. Avoid bugs in production, outages on weekends, and angry customers.
Optimization in Python — InterningNov 29, 2020
Understand Python’s optimization technique — Interning.
Five Advanced Python FeaturesNov 29, 2020
Curly brace scopes, autovivification, and other methods for writing better code
Speech Recognition with Python. Learn which of the 9 most prominent… | by SNov 19, 2020
Learn which of the 9 most prominent automatic speech recognition engines is best for your needs, and how to use it in Python programs.
Complete Introduction to PySpark-Part 4 | by Himanshu Sharma | Nov, 2020 |Nov 17, 2020
Performing Data Visualization using PySpark
How-To: using Python Virtual Environments - DebuntuNov 3, 2020
A nice thing about Python is that there is tons of modules available out there. Not all those modules are readily available for your distro and even if there were, chances are that a newer release with new features is already out there.
Achieving asynchronous behavior using asyncio in PythonNov 3, 2020
Asyncio helps you to write asynchronous functions using python making your application a lot faster with better user experience with its easy to use syntax.
System status : Stanford LibrariesNov 3, 2020
Numba: JIT Compilation, But For PythonNov 3, 2020
A quick look at a fantastic tool for making Python better in 2020.
An Introduction to Python Higher Order FunctionsNov 3, 2020
In a previous post, I created a guide for JavaScript higher-order functions to make dealing with arra...
What is Perspective Warping ? | OpenCV and PythonNov 3, 2020
A step-by-step guide to apply perspective transformation on images
fastcore: An Underrated Python LibraryNov 3, 2020
A unique python library that extends the python programming language and provides utilities that enhance productivity.
Python Pro Tip: Start using Python defaultdict and Counter in place of dictionaryNov 3, 2020
How you could use defaultdict and Counter to make your code short and readable
Python behind the scenes #2: how the CPython compiler worksNov 3, 2020
In the first post of the series we've looked at the CPython VM. We've learned that it works by executing a series of instructions called bytecode....
Making Python Programs Blazingly FastNov 3, 2020
Let’s look at the performance of our Python programs and see how to make them up to 30% faster!
Vectorizing code mattersNov 3, 2020
I come from the world of MATLAB and numerical computing, where for loops are shorn and vectors are king. During my PhD at UVM, Professor…
Latent Dirichlet Allocation: Intuition, math, implementation and visualisatNov 3, 2020
A tour of one of the most popular topic modelling techniques and a guide to implementing and visualising it using pyLDAvis
Six Python Tips for Geospatial Data ScienceNov 3, 2020
How to easily and effectively incorporate spatial features in Python using Geopandas
Manage Files and Database Connections in Python Like a ProNov 3, 2020
How to manage external resources in Python with your custom context managers
Pandas on the Cloud with DaskNov 3, 2020
Scaling your Pythonic data science and machine learning to the cloud using Dask. All from the comfort of your own laptop.
Choropleth Maps — 101 using PlotlyNov 3, 2020
I have been working as a Data Analyst for almost 5 years now but, in this time I have mostly used business intelligence software for all…
Elegant Geographic plots in Python and R using GeoPandas and Leaflet | by KNov 2, 2020
How to use GeoPandas and Leaflet?
PySDR: A Guide to SDR and DSP Using PythonNov 2, 2020
DASK: A Guide to Process Large Datasets using ParallelizationNov 2, 2020
A simple solution for data analytics for big data parallelizing computation in Numpy, Pandas, and Scikit-Learn Frameworks.
NumPy Array Processing With Cython: 1250x FasterNov 2, 2020
This article was originally published on the Paperspace blog. You can run the code for my tutorials for free on Gradient.
Python For Feature FilmOct 20, 2020
A look into how Python is used to bring your favorite movies to the big screen.
How to extract tables from PDF files with CamelotAug 18, 2020
A quick guide for extracting the tables from PDF files in Python using Camelot library
How to integrate Excel with PythonAug 10, 2020
Top 3 Excel-Python integration methods and what you can do with them
Get Started With PyTorch With These 5 Basic Functions.Aug 10, 2020
As the ever-growing demand for deep learning continues to rise, more developers and data scientists are joining the deep-learning…
3 Advanced Python Features You Should KnowAug 10, 2020
As a Data Scientist, you are already spending most of your time getting your data ready for prime time. Follow these real-world scenarios to learn how to leverage the advanced techniques in Python of list comprehension, Lambda expressions, and the Map function to get the job done faster.
5 Obscure Python Libraries Every Data Scientist Should KnowAug 10, 2020
Enhance your data science project
Brownian motion with PythonAug 10, 2020
We show how to emulate Brownian motion, the most famous stochastic process used in a wide range of applications, using simple Python code.
Top 6 Python Libraries for Visualization: Which one to Use?Jul 25, 2020
Confused about which Visualization Tool to Use? I Broke Down the Pros and Cons of Each Libary for You
3 Key Differences Between Merge and Concat Functions of PandasJun 24, 2020
When and how to use which.
10 Techniques to Speed Up Python RuntimeJun 24, 2020
Compare good writing style and bad writing style with the code runtime
Using Enumerated Types in PythonJun 24, 2020
Polymorphism in Python: Fundamentals For Data ScientistsJun 17, 2020
Understand the basics with a concrete example!
Martin Heinz - Personal Website & BlogJun 3, 2020
Even if you write clear and readable code, even if you cover your code with tests, even if you are very experienced developer, weird bugs will inevitab...
Aggregation, Transform, Filter — How and When to use them?Jun 3, 2020
Pandas: From Journeyman to Master — Voice from the victim.
5 Fabulous Python Packages For Data-Science Nobody Knows AboutJun 2, 2020
Do you know about these packages?
Financial Independence — Simulating ODEs With PythonJun 1, 2020
Use Python to set your path towards it.
Automated Data Import with PythonJun 1, 2020
A different approach to import data files automatically in python.
Creating High Resolution Satellite Images with Mapbox and PythonJun 1, 2020
Ultra high resolution satellite and elevation imagery
Eigenfaces — Face Classification in PythonJun 1, 2020
Not enough data for Deep Learning? Try Eigenfaces.
The Python Standard Library — modules you should know as a data scientistJun 1, 2020
with usage examples
Iris Classifier Flask AppJun 1, 2020
Hey guys this my first blog on Medium. This is an Iris classification ML model turned into a flask app for hosting on Heroku.
Creating typography using word cloud in pythonJun 1, 2020
A Picture is worth a thousand words. Literally! there are 2200+ words in this picture. 😱
Pandas with Dask, For an Ultra-Fast NotebookJun 1, 2020
Use Pandas with Dask to save time and resources. This combination will make your notebook ultra fast
Venvs & Pyenvs & Pipenvs, OH MY!Jun 1, 2020
A deep dive beginner’s guide into different python virtual environments, the benefits of each, and how to get started using them
Five Cool Python Libraries for Data Science - KDnuggetsJun 1, 2020
Check out these 5 cool Python libraries that the author has come across during an NLP project, and which have made their life easier.
Dot Product in Linear Algebra for Data Science using PythonJun 1, 2020
Building up the intuition for how matrices help to solve a system of linear equations and thus regressions problems
Recursive Feature Elimination (RFE) for Feature Selection in PythonJun 1, 2020
Recursive Feature Elimination, or RFE for short, is a popular feature selection algorithm. RFE is popular because it is easy to configure and use and because it is effective at selecting those features (columns) in a training dataset that are more or most relevant in predicting the target variable. There are two important configuration options when using RFE: the choice…
A Simplified approach using PyCaret for Anomaly DetectionJun 1, 2020
Explaining outlier detection with PyCaret library in python
All About Python List ComprehensionJun 1, 2020
Elegant, comfortable, concise, and fast way to build lists
Guide to Concurrency in Python with AsyncioJun 1, 2020
This is a quick guide to Python’s asyncio module and is based on Python version 3.8. Introduction Why focus on asyncio? A quick asyncio summary A quick concurrent.futures summary Green Threads? Event Loop Awaitables Coroutines Tasks Futures Running an asyncio program Running Async Code in the REPL Use another Event Loop Concurrent Functions Deprecated Functions Examples gather wait wait_for as_completed create_task Callbacks Pools Executors asyncio.Future vs concurrent.futures.Future asyncio.wrap_future Introduction So let’s start by addressing the elephant in the room: there are many modules provided by the Python standard library for handling asynchronous/concurrent/multiprocess code…
3 Highly Practical Operations of PandasJun 1, 2020
Sample, where, isin explained in detail with examples.
Hypermodern Python · Claudio JolowiczJun 1, 2020
A guide to modern Python tooling with a focus on simplicity and minimalism.
Everything You Need to Know About “loc” and “iloc” of PandasMay 19, 2020
Clearly distinguish loc and iloc
Optimization with constraints using Lagrange Multiplier in PythonMay 16, 2020
Lagrange Multiplier on a function with 2 variables with 1 equality constraint
10 Interesting Python Tricks to knock your socks offMay 15, 2020
Important list of 10 python snippets to make your code efficient
Stop Hurting Your Pandas!May 15, 2020
This post will address the issues that can arise when Pandas slicing is used improperly. If you see the warning that reads "A value is trying to be set on a copy of a slice from a DataFrame", this post is for you.
My Top 5 Pandas Data Manipulation FunctionMay 15, 2020
Know your Pandas library function arsenal as a data scientist
mlmachine - Clean ML Experiments, Elegant EDA & Pandas PipelinesMay 15, 2020
This new Python package accelerates notebook-based machine learning experimentation
Using Q-Learning in Numpy to teach an agent to play a gameMay 15, 2020
Using q-learning for sequential decision making and therefore learning to play a simple game.
Basic Curve Fitting of Scientific Data with PythonMay 15, 2020
A basic guide to using Python to fit non-linear functions to experimental data points
Why and How to Use Dask with Big DataMay 15, 2020
The Pandas library for Python is a game-changer for data preparation. But, when the data gets big, really big, then your computer needs more help to efficiency handle all that data. Learn more about how to use Dask and follow a demo to scale up your Pandas to work with…
Modeling in Seconds: Using PyCaret as a Tool for Data Science Fast DecisionMay 15, 2020
I came across Pycaret while I was browsing on a slack for data scientists. It's a versatile library in which you can apply/evaluate/tune…
Hyperspectral Image Analysis — Getting StartedMay 15, 2020
A Walkthrough on Hyperspectral Image Analysis Using Python.
Solving a Quadratic Problem (QP) in an open source linear solverMay 15, 2020
How to linearize a quadratic function to use it in a linear solver, (a.k.a. I don’t have money to pay for Gurobi) using a retail example
Examples of Using Apache Spark with PySpark Using PythonMay 15, 2020
Apache Spark is one of the hottest new trends in the technology domain. It is the framework with probably the highest potential to realize…
A Comprehensive Guide to Pandas’ Advanced Features in 20 MinutesMay 15, 2020
A code-along guide for Pandas’ advanced functionalities.
Computational Category Theory in Python III: Monoids, Groups, and PreordersMay 15, 2020
Parts 1 and 2 are found here and here
Python Power Tip: Enumerated TypesMay 15, 2020
The right way to represent a finite set of alternatives
Open Source Spatial Analysis Tools for Python: A Quick GuideApr 30, 2020
The ultimate guide on open source GIS tools for spatial analysis. Find the tools you need to support your next spatial data project!
Python Libraries for Natural Language Processing - Towards Data ScienceApr 28, 2020
An Overview Of popular python libraries for Natural Language Processing
How to Master Python Command Line ArgumentsApr 21, 2020
A simple guide to create your own Python script with command line arguments
3 Python Visualization Libraries You MUST Know as A Data ScientistApr 19, 2020
In real life, data preprocessing is really a pain for most data scientists. But with the help of data visualization libraries, it actually…
A Complete Beginners Guide to Matrix Multiplication for Data Science with PApr 19, 2020
Learn matrix multiplication for machine learning by following along with Python examples
Pandas tips I wish I knew beforeApr 15, 2020
How does pivot work? What is the main pandas building block? And more …
Visualize Categorical Relationships With CatscatterApr 8, 2020
What if you can create a scatter plot for categorical features?
The Art of Geofencing in PythonApr 1, 2020
Tutorial — Triggering notifications and Nudging GPS locations from users.
Computer Vision 101: Working with Color Images in PythonApr 1, 2020
Learn the basics of working with RGB and Lab images to boost your computer vision projects!
Lesser-known pandas tricks (2019)Apr 1, 2020
5 lesser-known pandas tricks that help you be more productive
How to Export Pandas DataFrame to CSVApr 1, 2020
In this post, we’ll go over how to write DataFrames to CSV files.
Probability Learning: Monte Carlo MethodsApr 1, 2020
Learn Monte Carlo Methods with three simple examples
[P] PyCM 2.6 released : Multi-class confusion matrix library in PythonApr 1, 2020
https://github.com/sepandhaghighi/pycm https://www.pycm.ir custom_rounder function added #279 complement function added sparse_matrix attribute added…
Learn how to read data into a Pandas DataFrame in 5 minutesApr 1, 2020
Extract data from different sources
Hyperparameter Tuning with Python: Complete Step-by-Step GuideMar 31, 2020
Why and How to use with examples of Keras/XGBoost
NumPy indexing explainedMar 23, 2020
NumPy is the universal standard for working with Numerical data in Python. Multidimensional NumPy arrays are extensively used in Pandas…
PostgreSQL Python: Connect To PostgreSQL Database ServerMar 23, 2020
In this tutorial, you will learn how to connect to the PostgreSQL database server from Python using the psycopg2 package.
"Pandas" - KDnuggetsMar 20, 2020
Top 3 Numpy Functions You Don’t Know About (Probably)Mar 20, 2020
The ones not covered in every How-to Guide
Two Pandas functions you must know for easy data manipulation in PythonMar 19, 2020
Master these pandas functions (and methods) to shorten your code, improve performance and avoid headaches.
Top 3 Python Functions You Don’t Know About (Probably)Mar 14, 2020
Cleaner Code and Fewer Loops? Count me in.
Finding cyclic patterns: a tutorial on how to implement STFT in PythonMar 9, 2020
If you have ever heard Python and Fourier nouns, chances are you’ll find this post useful: here I will explore a simple way to implement…
Rahul Agarwal on LinkedIn: #regex #python #datascience #nlpMar 9, 2020
"The Ultimate Guide to using the Python regex module" https://lttr.ai/Nt5c #regex #Python #datascience #nlp
Please Stop Doing These 5 Things in PandasMar 9, 2020
These mistakes are super common, and super easy to fix.
Advanced usage of Python requests: timeouts, retries, hooksMar 9, 2020
Learn about the advanced features the requests library hides under the hood. DRY base URLs, hooks, retry on failure, default timeouts and mocking.
PyTorch internalsMar 9, 2020
12 Amazing Pandas & NumPy FunctionsMar 9, 2020
Make your day to day life easier by using these functions in your analysis
Using Pytesseract to Convert Images into a HTML SiteMar 9, 2020
Convert images to a string with Google Tesseract and then into a static HTML site using python
Data animations with Python and MoviePy - __del__( self )Feb 19, 2020
Python has some great data visualization librairies, but few can render GIFs or video animations. This post shows how to use MoviePy as a generic …
Automate the Boring Stuff with PythonFeb 19, 2020
Python String Processing PrimerFeb 19, 2020
Try this string processing primer cheatsheet to gain an understanding of using Python to manipulate and process strings at a basic level.
Build pipelines with Pandas using “pdpipe” - Towards Data ScienceFeb 19, 2020
We show how to build intuitive and useful pipelines with Pandas DataFrame using a wonderful little library called pdpipe.
10 Python Tips and Tricks You Should Learn Today - KDnuggetsFeb 19, 2020
Check out this collection of 10 Python snippets that can be taken as a reference for your daily work.
Martin Heinz - Personal Website & BlogFeb 19, 2020
Python haters always say, that one of reasons they don't want to use it, is that it's slow. Well, whether specific program - regardle...
Learn Metaflow in 10 mins — Netflix’s Python/R Framework for Data ScienceFeb 19, 2020
Spend more time modeling, and less time managing infrastructures. A hands-on tutorial.
SciPy 1.0: fundamental algorithms for scientific computing in Python | NatuFeb 12, 2020
Nature Methods - This Perspective describes the development and capabilities of SciPy 1.0, an open source scientific computing library for the Python programming language.
HTML Parser: How to scrap HTML content | Python CentralDec 23, 2019
A tutorial about a HTML parser for Python 3. Learn about the basic of a library for easily parsing web pages and extracting useful information.
Building an OCR Engine with Python and TesseractDec 23, 2019
Dive deep into OCR with Tesseract, including Pytesseract integration, training with custom data, limitations, and comparisons with enterprise solutions.
Python Tuples and Tuple MethodsDec 14, 2019
Brush up on your Python basics with this post on creating, using, and manipulating tuples.
How to Speed up Pandas by 4x with one line of codeDec 14, 2019
While Pandas is the library for data processing in Python, it isn't really built for speed. Learn more about the new library, Modin, developed to distribute Pandas' computation to speedup your data prep.
When your data doesn’t fit in memory: the basic techniquesDec 14, 2019
You can process data that doesn’t fit in memory by using four basic techniques: spending money, compression, chunking, and indexing.
How to Extend Scikit-learn and Bring Sanity to Your Machine Learning Workflow - KDnuggetsDec 14, 2019
In this post, learn how to extend Scikit-learn code to make your experiments easier to maintain and reproduce.
5 Advanced Features of Pandas and How to Use ThemDec 14, 2019
The pandas library offers core functionality when preparing your data using Python. But, many don't go beyond the basics, so learn about these lesser-known advanced methods that will make handling your data easier and cleaner.
Counting FLOPS and other CPU counters in PythonNov 24, 2019
On the Linux command line it is fairly easy to use the perf command to measure number of floating point operations (or other performance metrics). (See for example this old blog post ) with this approach it is not easy to get a fine grained view of how different stages of processings within a single process. In this short note I describe how the python-papi package can be used to measure the FLOP requirements of any section of a Python program.
What’s New In Python 3.8 — Python 3.8.0 documentationNov 3, 2019
Editor, Raymond Hettinger,. This article explains the new features in Python 3.8, compared to 3.7. Python 3.8 was released on October 14, 2019. For full details, see the changelog. Summary – Releas...
PyPy's New JSON ParserOct 9, 2019
Introduction In the last year or two I have worked on and off on making PyPy's JSON faster, particularly when parsing large JSON files. I...
Partial Functions in Python: A Guide for DevelopersSep 24, 2019
Learn how to simplify your Python code using partial functions to create more flexible, reusable, and concise function calls
Async IO in Python: A Complete Walkthrough – Real PythonAug 30, 2019
This tutorial will give you a firm grasp of Python’s approach to async IO, which is a concurrent programming design that has received dedicated support in Python, evolving rapidly from Python 3.4 through 3.7 (and probably beyond).
PySpark Cheat Sheet: Spark in PythonAug 30, 2019
This PySpark cheat sheet with code samples covers the basics like initializing Spark in Python, loading data, sorting, and repartitioning.
Installation — Datashader v0.16.3Aug 30, 2019
Arima Model – Complete Guide to Time Series Forecasting in PythonAug 30, 2019
Using ARIMA model, you can forecast a time series using the series past values. In this post, we build an optimal ARIMA model from scratch and extend it to Seasonal ARIMA (SARIMA) and SARIMAX models. You will also see how to build autoarima models in python
Python at NetflixAug 29, 2019
By Pythonistas at Netflix, coordinated by Amjith Ramanujam and edited by Ellen Livengood
LAug 29, 2019
Make your own Super Pandas using MultiprocAug 23, 2019
This post is a part of my series on Python Shorts. Some tips on how to use python. This post is about using the computing power we have at hand and applying it to the data structure we use most.
How to Use C Functions in PythonAug 23, 2019
Did you know you can write functions in C and then call them directly from Python? Isn't that cool? L...
yzhao062/pyod: A Python Toolbox for Scalable Outlier Detection (Anomaly DetJul 25, 2019
A Python Library for Outlier and Anomaly Detection, Integrating Classical and Deep Learning Techniques - yzhao062/pyod
10 Simple Hacks to Speed up Your Data Analysis in PythonJul 13, 2019
This article lists some curated tips for working with Python and Jupyter Notebooks, covering topics such as easily profiling data, formatting code and output, debugging, and more. Hopefully you can find something useful within.
CythonMay 21, 2019
Build software that combines Python’s expressivity with the performance and control of C (and C++). It’s possible with Cython, the compiler and hybrid programming language used by foundational packages such … - Selection from Cython [Book]
Designing a RESTful API with Python and Flask - miguelgrinberg.comApr 21, 2019
In recent years REST (REpresentational State Transfer) has emerged as the standard architectural design for web services and web APIs.In this article I'm going to show you how easy it is to create a…
Talking to Python from JavaScript (and Back Again!)Apr 17, 2019
Something a lot of beginners struggle with is the concept of passing data between different programmi...
Welcome to Bokeh — Bokeh 1.0.4 documentationApr 2, 2019
Bokeh is a Python library for creating interactive visualizations for modern web browsers. It helps you build beautiful graphics, ranging from simple plots to complex dashboards with streaming data...
Forecasting in Python with Prophet | Reports - ModeMar 5, 2019
A guided walkthrough of how to use the Prophet python library to solve a common forecasting problem.
15 Statistical Hypothesis Tests in Python (Cheat Sheet)Feb 12, 2019
Quick-reference guide to the 17 statistical hypothesis tests that you need in applied machine learning, with sample code in Python. Although there are hundreds of statistical hypothesis tests that you could use, there is only a small subset that you may need to use in a machine learning project. In this post, you will discover a cheat sheet for the…
Why you should be using pathlibJan 8, 2019
When I discovered Python’s new pathlib module a few years ago, I initially wrote it off as being a slightly more awkward and unnecessarily …
Top Python Libraries in 2018 in Data Science, Deep Learning, Machine Learning - KDnuggetsDec 21, 2018
Here are the top 15 Python libraries across Data Science, Data Visualization. Deep Learning, and Machine Learning.
Python Data Visualization 2018: Why So Many Libraries?Nov 26, 2018
Anaconda is the birthplace of Python data science. We are a movement of data scientists, data-driven enterprises, and open source communities.
The Ultimate Guide to 12 Dimensionality Reduction Techniques (with Python cSep 6, 2018
Learn how these 12 dimensionality reduction techniques can help you extract valuable patterns and insights from high-dimensional datasets.
An A-Z of useful Python tricksSep 6, 2018
By Peter Gleeson Python is one of the world’s most popular, in-demand programming languages. This is for many reasons: it’s easy to learn it’s super versatile it has a huge range of modules and libraries I use Python daily as an integral part of my...
mukund109/word-mesh: A context-preserving word cloud generatorSep 5, 2018
A context-preserving word cloud generator.
Cookbook — Bayesian Modelling with PyMC3Aug 31, 2018
Recently I’ve started using PyMC3 for Bayesian modelling, and it’s an amazing piece of software! The API only exposes as much of heavy machinery of MCMC as you need — by which I mean, just the pm.sample() method (a.k.a., as Thomas Wiecki puts it, the Magic Inference Button™). This really frees up your mind to think about your data and model, which is really the heart and soul of data science! That being said however, I quickly realized that the water gets very deep very fast: I explored my data set, specified a hierarchical model that made sense to me, hit the Magic Inference Button™, and… uh, what now? I blinked at the angry red warnings the sampler spat out.
A Feature Selection Tool for Machine Learning in PythonAug 30, 2018
Using the FeatureSelector for efficient machine learning workflows
Introduction to Market Basket Analysis in PythonJun 8, 2018
Using mlxtend to perform market basket analysis on online retail data set.
Python For Finance: Algorithmic TradingJun 8, 2018
Originally published at https://www.datacamp.com/community/tutorials/finance-python-trading
Frequency Distribution Analysis using Python Data Stack – Part 1Jun 8, 2018
During my years as a Consultant Data Scientist I have received many requests from my clients to provide frequency distribution
Elliptic Curves as Python Objects | Math ∩ ProgrammingJun 8, 2018
Last time we saw a geometric version of the algorithm to add points on elliptic curves. We went quite deep into the formal setting for it (projective space $ \mathbb{P}^2$), and we spent a lot of time talking about the right way to define the “zero” object in our elliptic curve so that our issues with vertical lines would disappear. With that understanding in mind we now finally turn to code, and write classes for curves and points and implement the addition algorithm.
Python decorators, the right way: the 4 audiences of programming languagesJun 8, 2018
Python decorators are a useful but flawed language feature. Intended to make source code easier to write, and a little more readable, they neglect to address another use case: that of the programmer who will be calling the decorated code. If you’re a Python programmer, the following post will show you why decorators exist, and how to compensate for their limitations. And even if you’re not a Python a programmer, I hope to demonstrate the importance of keeping in mind all of the different audiences for the code you write.
scikit-surprise 1.0.5 : Python Package IndexJun 8, 2018
An easy-to-use library for recommender systems.
(1) Cohort Analysis with Python | LinkedInJun 8, 2018
Discover 100 collaborative articles on domains such as Marketing, Public Administration, and Healthcare. Our expertly curated collection combines AI-generated content with insights and advice from industry experts, providing you with unique perspectives and up-to-date information on many skills and their applications.
Topic Modeling with Gensim (Python) - A Practical GuideMay 12, 2018
Topic Modeling is a technique to understand and extract the hidden topics from large volumes of text. Latent Dirichlet Allocation(LDA) is an algorithm for topic modeling, which has excellent implementations in the Python's Gensim package. This tutorial tackles the problem of finding the optimal number of topics.
Python: How to import other Python files - Stack OverflowFeb 9, 2018
How do I import files in Python? I want to import:
a file (e.g. file.py)
a folder
a file dynamically at runtime, based on user input
one specific part of a file (e.g. a single function)
Introduction to Python GeneratorsJan 23, 2018
Generators make it easy to create iterations in Python and in return write less code. This tutorial will introduce you to Python generators, their benefits, and how they work. Basics A generator...
Getting Started on Heroku with Python | Heroku Dev CenterJan 2, 2018
A step-by-step guide for deploying your first Python app and mastering the basics of Heroku
keon/algorithms: Minimal examples of data structures and algorithms in PythonDec 27, 2017
Minimal examples of data structures and algorithms in Python - keon/algorithms
Removing Outliers Using Standard Deviation in PythonDec 27, 2017
Standard Deviation is one of the most underrated statistical tools out there. It’s an extremely useful metric that most people know how to calculate but very few know how to use effectively.
Numba: High-Performance Python with CUDA AccelerationDec 27, 2017
Numba is an open-source Python compiler from Anaconda that can compile Python code for high-performance execution on CUDA-capable GPUs or multicore CPUs.
Understanding Args and Kwargs in PythonDec 27, 2017
In this tutorial, I will be focusing on arguments (*args) and keyword arguments (*kwargs) in Python. I will teach you what args and kwargs are and, most importantly, how to use them—that is...
vestuto/reusable-python: A tutorial on organizing python code into reusableDec 27, 2017
A tutorial on organizing python code into reusable units, building packages, and using conda. - vestuto/reusable-python
The Python Graph Gallery – Visualizing data – with PythonNov 11, 2017
The Python Graph Gallery displays hundreds of charts made with Python, always with explanation and reproduciible code
Anvil: Web Apps with Nothing but PythonOct 31, 2017
Yes, really, nothing but Python! Anvil has a drag-and-drop editor, Python in the browser and on the server, and one-click deployment.
Making a Static Blog with Pelican | EFOct 27, 2017
Beginner’s Guide to FastAPIOct 24, 2014
FastApi is a contemporary web framework designed for creating RESTful APIs with Python 3.8 or later.
Graphiti: A Python Library for Building Temporal Knowledge Graphs Using LLMsSep 24, 2014
The challenge of managing and recalling facts from complex, evolving conversations is a key problem for many AI-driven applications. As information grows and changes over time, maintaining accurate context becomes increasingly difficult. Current systems often struggle to handle the evolving nature of relationships and facts, leading to incomplete or irrelevant results when retrieving information. This can affect the effectiveness of AI agents, especially when dealing with user memories and context in real-time applications. Some existing solutions have attempted to address this problem. One common approach is using a Retrieval-Augmented Generation (RAG) pipeline, which involves storing extracted facts and using techniques
AI & ML Projects with PythonOct 24, 2011
In this article, I'll take you through a list of guided projects to master AI & ML with Python. AI & ML Projects with Python.
PyMuPDF 1.24.10 documentationSep 24, 2008
PyMuPDF is a high-performance Python library for data extraction, analysis, conversion & manipulation of PDF (and other) documents.
Lesser known parts of Python standard library – Trickster DevSep 24, 2008
Code level discussion of web scraping, gray hat automation, growth hacking and bounty hunting
MinerU: An Open-Source PDF Data Extraction ToolOct 24, 2005
Extracting structured data from unstructured sources like PDFs, webpages, and e-books is a significant challenge. Unstructured data is common in many fields, and manually extracting relevant details can be time-consuming, prone to errors, and inefficient, especially when dealing with large amounts of data. As unstructured data continues to grow exponentially, traditional manual extraction methods have become impractical and error-prone. The complexity of unstructured data in various industries that rely on structured data for analysis, research, and content creation. Current methods for extracting data from unstructured sources, including regular expressions and rule-based systems, are often limited by their inability to maintain
pytorch
Building Transformer Models from Scratch with PyTorch (10-day Mini-Course)Oct 30, 2025
You've likely used ChatGPT, Gemini, or Grok, which demonstrate how large language models can exhibit human-like intelligence. While creating a clone of these large language models at home is unrealistic and unnecessary, understanding how they work helps demystify their capabilities and recognize their limitations. All these modern large language models are decoder-only transformers. Surprisingly, their architecture is not overly complex.…
PyTorch in One Hour: From Tensors to Training Neural Networks on Multiple GPUsJul 4, 2025
A curated introduction to PyTorch that gets you up to speed in about an hour.
Meta Introduces KernelLLM: An 8B LLM that Translates PyTorch Modules into Efficient Triton GPU KernelsMay 20, 2025
Introducing the New PyTorch Landscape: Your Guide to the PyTorch EcosystemMar 13, 2025
We’re excited to reveal our brand new PyTorch Landscape. The PyTorch Landscape helps researchers, developers, and organizations easily locate useful, curated, community-built tools that augment the PyTorch core framework.
Why PyTorch Gets All the LoveNov 26, 2024
PyTorch has emerged as a top choice for researchers and developers due to its relative ease of use and continuing improvement in performance.
PyTorch 101, Understanding Graphs, Automatic Differentiation and AutogradNov 19, 2024
In this article, we dive into how PyTorch’s Autograd engine performs automatic differentiation.
Triton Kernel Compilation StagesOct 30, 2024
The Triton open-source programming language and compiler offers a high-level, python-based approach to create efficient GPU code. In this blog, we highlight the underlying details of how a triton program is compiled and the intermediate representations. For an introduction to Triton, we refer readers to this blog.
PyTorch 2.5 Released: Advancing Machine Learning Efficiency and ScalabilityOct 18, 2024
The PyTorch community has continuously been at the forefront of advancing machine learning frameworks to meet the growing needs of researchers, data scientists, and AI engineers worldwide. With the latest PyTorch 2.5 release, the team aims to address several challenges faced by the ML community, focusing primarily on improving computational efficiency, reducing start up times, and enhancing performance scalability for newer hardware. In particular, the release targets bottlenecks experienced in transformer models and LLMs (Large Language Models), the ongoing need for GPU optimizations, and the efficiency of training and inference for both research and production settings. These updates help PyTorch
FlashAttention-3: Fast and Accurate Attention with Asynchrony and Low-preciJul 14, 2024
Attention, as a core layer of the ubiquitous Transformer architecture, is a bottleneck for large language models and long-context applications. FlashAttention (and FlashAttention-2) pioneered an approach to speed up attention on GPUs by minimizing memory reads/writes, and is now used by most libraries to accelerate Transformer training and inference. This has contributed to a massive increase in LLM context length in the last two years, from 2-4K (GPT-3, OPT) to 128K (GPT-4), or even 1M (Llama 3). However, despite its success, FlashAttention has yet to take advantage of new capabilities in modern hardware, with FlashAttention-2 achieving only 35% utilization of theoretical max FLOPs on the H100 GPU. In this blogpost, we describe three main techniques to speed up attention on Hopper GPUs: exploiting asynchrony of the Tensor Cores and TMA to (1) overlap overall computation and data movement via warp-specialization and (2) interleave block-wise matmul and softmax operations, and (3) incoherent processing that leverages hardware support for FP8 low-precision.
This Is How To Optimize PyTorch for Faster Model TrainingJul 13, 2024
These six tips will help you significantly accelerate your model training.
Comprehensive Guide to Datasets and Dataloaders in PyTorchJun 22, 2024
The full guide to creating custom datasets and dataloaders for different models in PyTorch
Understanding Principal Component Analysis in PyTorchFeb 20, 2024
Built-in function vs. numerical methods
How AMD May Get Across the CUDA MoatOct 7, 2023
When discussing GenAI, the term "GPU" almost always enters the conversation and the topic often moves toward performance and access. Interestingly, the word "GPU" is assumed to mean "Nvidia" products. (As an aside, the popular Nvidia hardware used in GenAI are not technically...
Inside the Matrix: Visualizing Matrix Multiplication, Attention and BeyondSep 25, 2023
Use 3D to visualize matrix multiplication expressions, attention heads with real weights, and more.
PyTorch Model Performance Analysis and Optimization — Part 6Sep 24, 2023
How to Identify and Analyze Performance Issues in the Backward Pass with PyTorch Profiler, PyTorch Hooks, and TensorBoard
Variational Autoencoder (VAE) with Discrete Distribution using Gumbel SoftmAug 10, 2023
Theory and PyTorch Implementation
Optimizing Memory Usage for Training LLMs and Vision Transformers in PyTorcJul 23, 2023
This article provides a series of techniques that can lower memory consumption in PyTorch (when training vision transformers and LLMs) by approximately 20x without sacrificing modeling performance and prediction accuracy.
PyTorch 2.0: Our next generation release that is faster, more Pythonic and Dynamic as everMar 16, 2023
We are excited to announce the release of PyTorch® 2.0 which we highlighted during the PyTorch Conference on 12/2/22! PyTorch 2.0 offers the same eager-mode development and user experience, while fundamentally changing and supercharging how PyTorch operates at compiler level under the hood with faster performance and support for Dynamic Shapes and Distributed.
Some Techniques To Make Your PyTorch Models Train FasterFeb 24, 2023
This blog post outlines techniques for improving the training performance of your PyTorch model without compromising its accuracy. To do so, we will wrap a P...
Comparing Different Automatic Image Augmentation Methods in PyTorchJan 30, 2023
Data augmentation is a key tool in reducing overfitting, whether it's for images or text. This article compares three Auto Image Data Augmentation techniques...
Torch and Torchvision C installation and debugging on LinuxJan 16, 2023
Example debugging RoIAlign from Torchvision
Why TensorFlow for Python is dying a slow deathJan 13, 2023
Many developers who use Python for machine learning are now switching to PyTorch. Find out why and what the future could hold for TensorFlow.
lucidrains/vit-pytorch: Implementation of Vision Transformer, a simple way to achieve SOTA in vision classification with only a single transformer encoder, in PytorchDec 18, 2022
Implementation of Vision Transformer, a simple way to achieve SOTA in vision classification with only a single transformer encoder, in Pytorch - lucidrains/vit-pytorch
Artificial Intelligence for Geospatial Analysis with Pytorch’s TorchGeo (paDec 18, 2022
An end-to-end deep learning geospatial segmentation project using Pytorch and TorchGeo packages
YOLOv5 PyTorch TutorialDec 17, 2022
The YOLO algorithm offers high detection speed and performance through its one-forward propagation capability. In this tutorial, we will focus on YOLOv5.
How to Accelerate your PyTorch GPU Training with XLAOct 20, 2022
The Power of PyTorch/XLA and how Amazon SageMaker Training Compiler Simplifies its use
fastai/fastbook: The fastai book, published as Jupyter NotebooksJul 24, 2022
The fastai book, published as Jupyter Notebooks.
How Computational Graphs are Executed in PyTorchJul 5, 2022
Welcome to the last entry into understanding the autograd engine of PyTorch series! If you haven’t read parts 1 & 2 check them now to understand how PyTorch creates the computational graph for the backward pass!
How to Build an Image-Captioning Model in PytorchJun 23, 2022
A detailed step-by-step explanation of how to build an image-captioning model in Pytorch
Taking Datasets, DataLoaders, and PyTorch’s New DataPipes for a SpinJun 14, 2022
The PyTorch team recently announced TorchData, a prototype library focused on implementing composable and reusable data loading utilities for PyTorch. I hone...
A Comprehensive Guide to Image Augmentation using PytorchMay 28, 2022
A way to increase the amount of data and make the model more robust
Introducing TorchRec, a library for modern production recommendation systemFeb 25, 2022
We are excited to announce TorchRec, a PyTorch domain library for Recommendation Systems. This new library provides common sparsity and parallelism primitives, enabling researchers to build state-of-the-art personalization models and deploy them in production.
Writing Custom Datasets, DataLoaders and Transforms — PyTorch Tutorials 2.4.0+cu121 documentationJan 12, 2022
Engineering Trade-Offs in Automatic Differentiation: from TensorFlow and PyDec 27, 2021
To understand the differences between automatic differentiation libraries, let’s talk about the engineering trade-offs that were made. I would personally say that none of these libraries are “better” than another, they simply all make engineering trade-offs based on the domains and use cases they were aiming to satisfy. The easiest way to describe these trade-offs is to follow the evolution and see how each new library tweaked the trade-offs made of the previous. Early TensorFlow used a graph building system, i.e. it required users to essentially define variables in a specific graph language separate from the host language. You had to define “TensorFlow variables” and “TensorFlow ops”, and the AD would then be performed on this static graph. Control flow constructs were limited to the constructs that could be represented statically. For example, an `ifelse` function statement is very different from ... READ MORE
PyTorch vs TensorFlow in 2023Dec 14, 2021
Should you use PyTorch vs TensorFlow in 2023? This guide walks through the major pros and cons of PyTorch vs TensorFlow, and how you can pick the right framework.
An Introduction to PyTorch LightningOct 17, 2021
PyTorch Lightning has opened many new possibilities in deep learning and machine learning with a high level interface that makes it quicker to work with PyTorch.
The torch.linalg module: Accelerated Linear Algebra with Autograd in PyTorchJun 25, 2021
Linear algebra is essential to deep learning and scientific computing, and it’s always been a core part of PyTorch. PyTorch 1.9 extends PyTorch’s support for linear algebra operations with the torch.linalg module. This module, documented here, has 26 operators, including faster and easier to use versions of older PyTorch operators, every function from NumPy’s linear algebra module extended with accelerator and autograd support, and a few operators that are completely new. This makes the torch.linalg immediately familiar to NumPy users and an exciting update to PyTorch’s linear algebra support.
Introduction - Hugging Face NLP CourseJun 21, 2021
We’re on a journey to advance and democratize artificial intelligence through open source and open science.
29 Pytorch Snippets to Speed Up Your Machine Learning CycleMay 24, 2021
From creating tensors to writing neural networks
An Introduction to PyTorch LightningMay 18, 2021
Word on the street is that PyTorch lightning is a much better version of normal PyTorch. But what could it possibly have that it brought such consensus in our world? Well, it helps researchers scale…
Beginner guide to Variational Autoencoders (VAE) with PyTorch Lightning (Part 2)May 3, 2021
This blog post is part of a mini-series that talks about the different aspects of building a PyTorch Deep Learning project using Variational Autoencoders. In Part 1, we looked at the variational…
Using PyTorch + NumPy? You're making a mistake.Apr 11, 2021
A bug that plagues thousands of open-source ML projects.
VISSL · A library for state-of-the-art self-supervised learning from imagesMar 22, 2021
A library for state-of-the-art self-supervised learning from images
Image Feature Extraction Using PyTorchMar 22, 2021
Case Study: Image Clustering using K-Means Algorithm
Using RAPIDS with PyTorchMar 15, 2021
In this post we take a look at how to use cuDF, the RAPIDS dataframe library, to do some of the preprocessing steps required to get the mortgage data in a format that PyTorch can process so that we…
Semantic hand segmentation using PytorchDec 18, 2020
Semantic segmentation is the task of predicting the class of each pixel in an image. This problem is more difficult than object detection…
Start Locally | PyTorchDec 11, 2020
The Most Complete Guide to PyTorch for Data ScientistsNov 3, 2020
PyTorch has sort of became one of the de facto standards for creating Neural Networks now, and I love its interface.
PyTorch vs. TensorFlow – a detailed comparisonNov 2, 2020
Delve into the comprehensive comparison of PyTorch and TensorFlow, two leading machine learning frameworks. This article covers vital differences in ease of use, graph definition, and deployment capabilities, including insights on transitioning from PyTorch to TensorFlow Lite.
Get Started With PyTorch With These 5 Basic Functions.Aug 10, 2020
As the ever-growing demand for deep learning continues to rise, more developers and data scientists are joining the deep-learning…
Matrix Operations Using PyTorch- A Beginner’s GuideAug 10, 2020
Application of different PyTorch functions on tensors
Automate Your Neural Network Training With PyTorch LightningAug 10, 2020
PyTorch Lightning will automate your neural network training while staying your code simple, clean and flexible. If you’re a researcher you
Federated Learning using PyTorch and PySyft | LearnOpenCVJun 1, 2020
A gentle introduction to federated learning using PyTorch and PySyft with the help of a real life example.
Build PyTorch Models Easily Using torchlayersApr 15, 2020
torchlayers aims to do what Keras did for TensorFlow, providing a higher-level model-building API and some handy defaults and add-ons useful for crafting PyTorch neural networks.
[P] pytorch-optimizer -- collections of ready to use optimization algorithmMar 9, 2020
249 votes, 21 comments. pytorch-optimizer -- collections of ready to use optimization algorithms for PyTorch, includes: AccSGD, AdaBound, AdaMod…
3D Deep Learning Made Easier — A Brief Introduction to Facebook’s PyTorch3DMar 9, 2020
Facebook released the PyTorch3D framework that supports deep learning in 3D environments. Find out what it is.
From PyTorch to PyTorch Lightning — A gentle introductionMar 9, 2020
This post walks through a side-by-side comparison of MNIST implemented using both PyTorch and PyTorch Lightning.
PyTorch internalsMar 9, 2020
BloodAxe/pytorch-toolbelt: PyTorch extensions for fast R&D prototyping and Kaggle farmingFeb 19, 2020
PyTorch extensions for fast R&D prototyping and Kaggle farming - BloodAxe/pytorch-toolbelt
Tessellate-Imaging/Pytorch_Tutorial: A set of jupyter notebooks on pytorch functions with examplesFeb 19, 2020
A set of jupyter notebooks on pytorch functions with examples - Tessellate-Imaging/Pytorch_Tutorial
kornia/kornia: Open Source Differentiable Computer Vision Library for PyTorFeb 19, 2020
Geometric Computer Vision Library for Spatial AI.
(32) PyTorch Lightning - William Falcon - YouTubeDec 14, 2019
In recent years, techniques such as 16-bit precision, accumulated gradients and distributed training have allowed models to train in record times.
In this talk William Falcon goes through the implementation details of the 10 most useful of these techniques, including DataLoaders, 16-bit precision, accumulated gradients and 4 different ways of distributing model training across hundreds of GPUs. We’ll also show how to use these already built-in in PyTorch Lightning, a Keras-like framework for ML researchers.
William is the creator of PyTorch-Lightning and an AI PhD student at Facebook AI Research and NYU CILVR lab advised by Kyunghyun Cho. Before his PhD, he Co-founded AI startup NextGenVest (acquired by Commonbond). He also spent time at Goldman Sachs and Bonobos. He received his BA in Stats/CS/Math from Columbia University.
Every month the deep learning community of New York gathers at the AWS loft to share discoveries and achievements and describe new techniques.
https://github.com/williamFalcon/pytorch-lightning
Deep Learning with PyTorch: A 60 Minute Blitz — PyTorch Tutorials 2.4.0+cu121 documentationOct 15, 2019
Getting Started with PyTorch Part 1: Understanding How Automatic DifferentiJun 8, 2018
PyTorch has emerged as a major contender in the race to be the king of deep learning frameworks. What makes it really luring is it’s dynamic computation graph paradigm.
PyTorch Tensor BasicsJun 8, 2018
This is an introduction to PyTorch's Tensor class, which is reasonably analogous to Numpy's ndarray, and which forms the basis for building neural networks in PyTorch.
PyTorchDec 27, 2017
Run PyTorch locally or get started quickly with one of the supported cloud platforms
wiseodd/generative-models: Collection of generative models, e.g. GAN, VAE iNov 11, 2017
Collection of generative models, e.g. GAN, VAE in Pytorch and Tensorflow. - wiseodd/generative-models
Highly Technical Reference Page: The Incredible PyTorchNov 11, 2017
A blog about Compressive Sensing, Computational Imaging, Machine Learning. Using priors to avoid the curse of dimensionality arising in Big Data.
yunjey/pytorch-tutorial: PyTorch Tutorial for Deep Learning ResearchersNov 11, 2017
PyTorch Tutorial for Deep Learning Researchers.
qr
Quishing: The hidden danger lurking in the QR codesJul 28, 2025
More than 26 million Americans have been directed to malicious sites after scanning QR codes without verification, a practice engaged in by 73% of the
QR codes | Dan Hollick ??Sep 15, 2022
Ever wondered how a QR code works? No, me neither but it's low-key fascinating. (Warning, there is some extremely nerdy shit here.👇 )
How QR Codes Work and What Makes Them Dangerous—a Computer Scientist ExplainsMay 2, 2022
Here’s what happens when you scan one of those ubiquitous two-dimensional black-and-white patterns.
Remember QR Codes? They’re More Powerful Than You Think | Andreessen HorowitzDec 14, 2019
China’s mobile payment ecosystem, the largest in the world, is built upon QR codes. But that technology extends far beyond shopping to ease friction throughout daily life. On a recent trip to China, I personally interacted with QR codes 42 times in a single day—to ride the train, to book a workout, to charge my...
quality
Opinion | Everyone Wants High-Quality Clothes. That’s Become Its Own Trend.Dec 7, 2025
Being a smart consumer has never been easier. Influencers and the fashion industry are all taking advantage of that.
Backblaze, owner of 317,230 HDDs, says HDDs are “lasting longer”Oct 17, 2025
Backup firm brings a unique, informed perspective to HDD failure rates.
The Real Reasons Your Appliances Die YoungJun 21, 2025
Modern appliances pack in more features and efficiency than ever — but you might need to accept that they won’t last as long as Grandma’s old fridge.
Has Clothing Declined in Quality?May 6, 2025
The Office of the U.S. Trade Representative (USTR) recently tweeted that they wanted to bring back apparel manufacturing to the United States. Why would anyone want more jobs with long hours and low pay, whether historically in the US or currently in places like Bangladesh? Thanks in part to international trade, the real price of […]
98 Hardware Security Failure Scenarios (NIST)Dec 3, 2024
A new technical paper titled “Hardware Security Failure Scenarios: Potential Hardware Weaknesses” was published by NIST. Abstract “Hardware is often assumed to be robust from a security perspective. However, chips are both created with software and contain complex encodings (e.g., circuit designs and firmware). This leads to bugs, some of which compromise security. This publication... » read more
Five Nine ProblemsJun 22, 2024
Shattered in Seconds: The crash of China Airlines flight 611May 27, 2024
The catastrophic breakup of a Boeing 747 sends investigators back to a botched repair 22 years earlier.
Half of Russian-Made Chips Are DefectiveMar 31, 2024
Anton Shilov reports via Tom's Hardware: About half of the processors packaged in Russia are defective. This has prompted Baikal Electronics, a Russian processor developer, to expand the number of packaging partners in the country, according to a report in Vedomosti, a Russian-language business dai...
The Uncomfortable Truth About Why Buying Furniture Is So MiserableMar 28, 2023
Shopping for a simple couch or dresser is driving Americans mad. What does the future hold for one of North Carolina's most important industries?
Most failed disk drives fail just before they hit 3 years’ use, says data rMar 17, 2023
Secure Data Recovery found that average failed hard drive spun for 25,233 hours before failing. That’s 1,051 days, or two years and ten months. Failed drive data recovery biz Secure Data Recovery has produced a report giving its experience of hard disk drive life expectancy from 2,007 damaged and defective drives it has received for […]
What Is an IP Rating?Nov 23, 2022
Many devices come equipped with an IP rating. It's not the only thing you need to know, but it is important. Here's what it means.
Why Everyone—From Mechanics to Crust Punks—Wears DickiesOct 4, 2022
The Fort Worth apparel company celebrates a century as a blank cultural canvas.
The two types of quality // Zeno RochaAug 17, 2022
The Japanese define quality in two ways — atarimae hinshitsu and miryokuteki hinshitsu. Understanding the difference between them is the key to building products that users love.
Eight disciplines problem solvingJul 5, 2022
Eight Disciplines Methodology (8D) is a method or model developed at Ford Motor Company used to approach and to resolve problems, typically employed by quality engineers or other professionals. Focused on product and process improvement, its purpose is to identify, correct, and eliminate recurring problems.[1] It establishes a permanent corrective action based on statistical analysis of the problem and on the origin of the problem by determining the root causes. Although it originally comprised eight stages, or 'disciplines', it was later augmented by an initial planning stage. 8D follows the logic of the PDCA cycle. The disciplines are:
Failure mode and effects analysisJun 28, 2022
Failure mode and effects analysis is the process of reviewing as many components, assemblies, and subsystems as possible to identify potential failure modes in a system and their causes and effects. For each component, the failure modes and their resulting effects on the rest of the system are recorded in a specific FMEA worksheet. There are numerous variations of such worksheets. An FMEA can be a qualitative analysis, but may be put on a quantitative basis when mathematical failure rate models are combined with a statistical failure mode ratio database. It was one of the first highly structured, systematic techniques for failure analysis. It was developed by reliability engineers in the late 1950s to study problems that might arise from malfunctions of military systems. An FMEA is often the first step of a system reliability study.
The problem with ‘5 whys’Jun 24, 2022
‘The Problem with…’ series covers controversial topics related to efforts to improve healthcare quality, including widely recommended but deceptively difficult strategies for improvement and pervasive problems that seem to resist solution. The ‘5 whys’ technique is one of the most widely taught approaches to root-cause analysis (RCA) in healthcare. Its use is promoted by the WHO,1 the English National Health Service,2 the Institute for Healthcare Improvement,3 the Joint Commission4 and many other organisations in the field of healthcare quality and safety. Like most such tools, though, its popularity is not the result of any evidence that it is effective.5–8 Instead, it probably owes its place in the curriculum and practice of RCA to a combination of pedigree, simplicity and pedagogy. In terms of pedigree, ‘5 whys’ traces its roots back to the Toyota Production System (TPS).9 It also plays a key role in Lean10 (a generic version of TPS) as well as Six Sigma,11 another popular quality improvement (QI) methodology. Taiichi Ohno describes ‘5 whys’ as central to the TPS methodology:The basis of Toyota's scientific approach is to ask why five times whenever we find a problem … By repeating why five times, the nature of the problem as well as its solution becomes clear. The solution, or the how-to, is designated as ‘1H.’ Thus, ‘Five whys equal one how’ (5W=1H). (ref. 9, p. 123) This quote also makes the case for the technique's simplicity. Asking ‘why’ five times allows users to arrive at a single root cause that might not have been obvious at the outset. It may also inspire a single solution to address that root cause (though it is not clear that the ‘1H’ side of the equation has been adopted as widely). The pedagogical argument for …
Learn TLA+ — Learn TLA+Dec 13, 2021
Food fraud and counterfeit cotton: the detectives untangling the global supply chainSep 22, 2021
The long read: Amid the complex web of international trade, proving the authenticity of a product can be near-impossible. But one company is taking the search to the atomic level
Lessons learned in incident managementJan 6, 2021
Why Japan's Rail Workers Can't Stop Pointing at Things - Atlas ObscuraJan 19, 2019
A seemingly silly gesture is done for the sake of safety.
5 Concepts That Will Help Your Team Be More Data-DrivenNov 3, 2018
Data is invading every nook and cranny of every team, department, and company in every industry, everywhere. Developing the talent needed to take full advantage must be a high priority. Indeed, everyone must be able to contribute to improving data quality, interpreting analyses, and conducting their own experiments. It will take decades for the public education systems to churn out enough people with the needed skills — far too long for companies to wait. Fortunately, managers, aided by a senior data scientist engaged for a few hours a week can introduce five powerful “tools” that will help their teams start to use analytics to solve important business problems.
Seams Pretty Good: How to Know You’re Buying Quality ClothesOct 24, 2002
From rubbing fabric on your neck to checking stitch size, there are ways to test how well made clothes are before you try on.
quantum
‘It’s a Mess’: A Brain-Bending Trip to Quantum Theory’s 100th Birthday Party | Quanta MagazineJan 25, 2026
Hundreds of physicists (and a few journalists) journeyed to Helgoland, the birthplace of quantum mechanics, and grappled with what they have and haven’t learned about reality.
Floating electrons on a sea of heliumOct 8, 2025
Yes, it’s another potential qubit. But it’s also some very cool physics.
Oak Ridge National Laboratory deploys diamond-based quantum compute cluster in TennesseeSep 3, 2025
The Quantum Brilliance system will be housed at the lab’s Oak Ridge Leadership Computing Facility
America's Secretive X-37B Space Plane Will Test a Quantum Alternative to GPS for the US Space Force - SlashdotAug 24, 2025
The mysterious X-37B space-plane — the U.S. military's orbital test vehicle — "serves partly as a platform for cutting-edge experiments," writes Space.com
And "one of these experiments is a potential alternative to GPS that makes use of quantum science as a tool for navigation: a quan...
Cloud quantum computing: A trillion-dollar opportunity with dangerous hidden risksJun 21, 2025
Guest Join the event trusted by enterprise leaders for nearly two decades. VB Transform brings together the people building real enterprise AI strategy. Learn more Quantum computing (QC) brings with it a mix of groundbreaking possibilities and significant risks. Major tech players like IBM, Google, Microsoft and Amazon have already rolled out commercial QC cloud services, while […]
QOpt / QOBLIB - Quantum Optimization Benchmarking Library · GitLabApr 26, 2025
This is the ZIB GitLab instance
Matty Bakkeren on LinkedIn: #quantum #momenthesis #quantumcomputing #techinnovation | 11 commentsFeb 23, 2025
The recent advancements in Quantum computing by Microsoft, Google, IBM and Intel Corporation are fascinating to me and I've compiled a quick overview to keep… | 11 comments on LinkedIn
Microsoft Makes Quantum Computing Breakthrough With New ChipFeb 20, 2025
Microsoft’s breakthrough with the first topological qubits and its own quantum chip, Majorana 1, could outpace Google’s brute force approach.
Measuring Quantum Noise in IBM Quantum ComputersJan 8, 2025
A discussion around measuring error rates in IBM quantum processors, with code examples, using Qiskit
China Unveils Xiaohong-504: a 504-Qubit Quantum Computing ProcessorDec 10, 2024
China has announced the development of its latest quantum system, combining the Xiaohong-504, a 504-qubit superconducting quantum chip, with the Tianyan-504 quantum computer. The breakthrough comes from China Telecom Quantum Group (CTQG), which will use the new supercomputer to boost national teleco...
Google Claims Quantum Error Correction Milestone With “Willow” ChipDec 9, 2024
There is no shortage of top-name – and even lesser known – companies pursuing the white whale of developing a quantum computer that can run workloads and
Quantum Computers Cross Critical Error ThresholdDec 9, 2024
In a first, researchers have shown that adding more “qubits” to a quantum computer can make it more resilient. It’s an essential step on the long road to practical applications.
How to Build a Quantum SupercomputerNov 19, 2024
In the span of four decades, quantum computation has evolved from an intellectual curiosity to a potentially realizable technology. Today, small-scale demonstrations have become possible for...
Quantinuum Successfully Teleports a Logical QubitOct 19, 2024
The ability to instantaneously “teleport” information over long distances is one of the strange phenomena that could make quantum computers uniquely powerful. Researchers at Quantinuum have now shown they can achieve the feat with a “logical qubit”, which they say is a major milestone towards large-
An Introduction to Post-Quantum Cryptography AlgorithmsJun 11, 2024
By Christos Kasparis, EnSilica EETimes (May 15, 2024) The rise of quanum computing paints a significant challenge for the cryptography we rely on today. The modern encryption standards we currently use to safeguard sensitive data and communications, such as DSA, public key RSA and those based on elliptic curves, will eventually be broken by
An Introduction to Post-Quantum Cryptography AlgorithmsMay 15, 2024
Current encryption methods will likely be broken by 2030. Embedded systems in development now will have a reasonable chance of encountering attacks.
Beyond GPUs: How Quantum Processing Units (QPUs) Will Transform ComputingMay 8, 2024
The rise of quantum computing has opened the doors to transformative innovations that transcend the limits of classical computing. The quantum processing unit (QPU) represents a paradigm shift in computational science, akin to how the GPU revolutionized the world of computing in the 2000s. Let’s delve into how QPUs are poised to complement and potentially surpass GPUs, unlocking a new era of computational power. What is a Quantum Processing Unit (QPU)? A QPU harnesses the principles of quantum mechanics to solve problems that classical computing finds difficult to handle. Utilizing qubits and quantum circuit models, QPUs aim to transform how
Quantum Computing for Complete BeginnersOct 21, 2023
A guide to the basics of quantum computing with no prior knowledge required
How Tiny Schrödinger’s Cats Could Upend Quantum AgainSep 24, 2023
The Paris-based company's strategy depends on so-called “cat states,” pairs of very different quantum states as diametrically opposed to one another as the “alive” and “dead” feline once famously postulated by Erwin Schrödinger.
Why does the quantum world behave in that strange, spooky way? Here’s our sJul 30, 2023
Why does the quantum world behave in that strange, spooky way? Here’s our simple, four-step explanation (no magic needed)
Qubits 30 meters apart used to confirm Einstein was wrong about quantumMay 14, 2023
Experiment linked qubits using a supercold wire over 30 meters long.
The World-Changing Race to Develop the Quantum ComputerDec 19, 2022
Such a device could help address climate change and food scarcity, or break the Internet. Will the U.S. or China get there first?
After a Quantum Clobbering, One Approach Survives UnscathedDec 7, 2022
A quantum approach to data analysis that relies on the study of shapes will likely remain an example of a quantum advantage — albeit for increasingly unlikely scenarios.
Physicists Create ‘the Smallest, Crummiest Wormhole You Can Imagine’Nov 30, 2022
Scientists used a quantum computer to explore the ultimate escape route from a black hole.
What are quantum-resistant algorithms—and why do we need them?Oct 22, 2022
When quantum computers become powerful enough, they could theoretically crack the encryption algorithms that keep us safe. The race is on to find new ones.
How Bell’s Theorem Proved ‘Spooky Action at a Distance’ Is Real | Quanta MaOct 13, 2022
The root of today’s quantum revolution was John Stewart Bell’s 1964 theorem showing that quantum mechanics really permits instantaneous connections between far-apart locations.
Cloudflare’s post-quantum cryptography protects almost a fifth of the interOct 3, 2022
Today, Content Delivery Network (CDN) vendor Cloudflare announced it's enabling post-quantum cryptography across all protected sites.
What the Heck Is a Time Crystal, and Why Are Physicists Obsessed With Them?Jun 25, 2022
Some of today’s quantum physicists are tinkering with an esoteric phase of matter that seems to disobey some of our laws of physics.
The Spooky Quantum Phenomenon You’ve Never Heard OfJun 23, 2022
Quantum computers may derive their power from the “magical” way that properties of particles change depending on the context.
Machine Learning Gets a Quantum Speedup | Quanta MagazineFeb 7, 2022
Two teams have shown how quantum approaches can solve problems faster than classical computers, bringing physics and computer science closer together.
How Classical Cryptography Will Survive Quantum ComputersDec 8, 2021
Quantum Lab: Scientists are fabricating quantum photonic circuits—consisting of waveguides and other elements—to manipulate single photons for future quantum communications and processing.Oak Ridge National Laboratory / Flickr Nautilus Members enjoy an ad-free experience. Log in or Join now . Justin Trudeau, the Canadian prime minister, certainly raised the profile of quantum computing a few notches […]
Breakthrough: Quantum computers will soon fit in your phone – SiftedAug 30, 2021
Quantum Brilliance has developed a diamond-based quantum computer that can run at room temperature and be miniaturised.
AI Designs Quantum Physics Experiments beyond What Any Human Has ConceivedJul 5, 2021
Originally built to speed up calculations, a machine-learning system is now making shocking progress at the frontiers of experimental quantum physics
How a quantum computer could break 2048-bit RSA encryption in 8 hours | MITJun 27, 2021
A new study shows that quantum technology will catch up with today’s encryption standards much sooner than expected. That should worry anybody who needs to store data securely for 25 years or so.
What Makes Quantum Computing So Hard to Explain?Jun 12, 2021
To understand what quantum computers can do — and what they can’t — avoid falling for overly simple explanations.
The Mystery at the Heart of Physics That Only Math Can SolveJun 10, 2021
The accelerating effort to understand the mathematics of quantum field theory will have profound consequences for both math and physics.
Honeywell says quantum computers will outpace standard verification in ’18Mar 30, 2021
Honeywell says quantum computing platforms are approaching a processing milestone that conventional computers can't simulate.
Why Is M-Theory the Leading Candidate for Theory of Everything?Jan 10, 2021
The mother of all string theories passes a litmus test that, so far, no other candidate theory of quantum gravity has been able to match.
The quest for quantum-proof encryption just made a leap forwardJan 3, 2021
Quantum computers could make encryption a thing of the past, but 15 contenders are trying to prove they have what it takes to safeguard your data.
Inside the race to build the best quantum computer on EarthMar 5, 2020
IBM thinks quantum supremacy is not the milestone we should care about.
Quantum computing for the very curiousDec 23, 2019
Presented in an experimental mnemonic medium which makes it almost effortless to remember what you read
Quantum Supremacy Is Coming: Here’s What You Should Know | Quanta MagazineJul 21, 2019
Researchers are getting close to building a quantum computer that can perform tasks a classical computer can’t. Here’s what the milestone will mean.
Finally, a Problem That Only Quantum Computers Will Ever Be Able to Solve | Quanta MagazineJun 25, 2018
Computer scientists have been searching for years for a type of problem that a quantum computer can solve but that any possible future classical computer cannot. Now they’ve found one.
Quantum algorithms: an overviewFeb 6, 2018
queues
The Perplexing Dominance of Self-CheckoutDec 4, 2025
Many Americans would rather wait for it than interact with a human.
A Whimsical Journey Through Wait TimesMay 15, 2024
From Microwave Countdowns to Never-Ending Call Holds, with Python
Why Disaster Happens at the Edges: An Introduction to Queue Theory – The NeNov 15, 2021
What We Talk about When We Talk about Performance.
rack
The Definitive Guide to Rack for Rails DevelopersApr 14, 2023
This article explains Rack, including both the protocol and the gem, as well as the concept of middleware.
radar
The Evolution of Radar Technology: Shaping Autonomous Driving - Industry ArticlesDec 19, 2024
Radar technology in vehicles has evolved from the early days of basic bulky sensors to the advanced 4D imaging radar and sensor fusion of today. Learn how the underlying technology is opening new capabilities.
Exploring State-of-the-Art Commercial Automotive Radar SolutionsJul 10, 2024
Digital radar, satellite configurations, distributed apertures and all range radar.
How Automotive Radar uses Chirp Signals for SensingJul 10, 2024
Understanding the engineering behind how your car can see, adapt and save your life.
How Automotive Radar Measures the Velocity of ObjectsJul 10, 2024
How to design the perfect chirp signal for distance and velocity measurement.
radiation
The natural clocks that can pinpoint someone's time of deathOct 2, 2025
When something dies, a telltale radioactive signal ticks like a natural clock. Discovering it helped us solve all sorts of natural mysteries.
Norway to Monitor Airborne Radioactivity in SvalbardSep 27, 2025
From October 1st, the Norwegian Radiation and Nuclear Safety Authority will take over the operations of an air filter station near Ny-Ålesund in Svalbard. “This will be particularly important for nuclear preparedness in the north,” says section leader in the agency.
The Chernobyl Disaster May Have Also Built a ParadiseMay 11, 2024
Some scientists think the radioactive, human-free landscape might now be a haven for plants and animals.
Low-background steelAug 27, 2022
Post-nuclear steel is a little bit radioactive, so for some specialist jobs we need to find a source of steel from before the bomb
Antenna Basics: Radiation Patterns, Permittivity, Directivity, and Gain - Technical ArticlesDec 11, 2021
Antennas allow information to be transferred to distant locations. In the second part of this Antenna Basics series, you will learn more about the physics of how antennas work.
The man who hunts 'hidden' radioactive objectsAug 4, 2021
Most of us try to avoid radiation, but not Andrew Walker, who collects radioactive objects. The surprising part? These items can be found in a variety of common places.
radio
Meshtastic: A Comprehensive Guide to Off-Grid CommunicationJan 4, 2026
The Power of Decentralized, Long-Range Networks for Adventure, Emergency, and Preparedness
Estimating FM Bandwidth: Solved ExamplesAug 10, 2025
In this article, we'll illustrate the usefulness of Carson's rule for bandwidth estimation by working through a series of example problems.
Exploring the Relationship Between FM Wave Bandwidth and the Modulation IndexAug 3, 2025
In this article, we'll investigate how varying the amplitude and frequency of the modulating tone impacts the bandwidth of FM signals. We'll also compare the modulation index in AM and FM schemes.
Three Methods for Estimating the Transmission Bandwidth of FM SignalsJul 27, 2025
Along with introducing Carson's rule for bandwidth estimation, this article explains how to calculate the required transmission bandwidth based on either the sidebands or the total power of the signal.
Exploring Bessel Functions: Understanding the Spectrum of Tone-Modulated FMJul 20, 2025
In this article, we’ll learn about the essential properties of Bessel functions and what they can tell us about the bandwidth of practical FM signals.
Introduction to Wideband FM SignalsJul 13, 2025
Learn how Bessel functions and the modulation index can help us understand the bandwidth of wideband frequency-modulated (FM) signals.
The United States Frequency Allocation ChartFeb 4, 2025
This crazy, beautiful chart illustrates the incredible complexity of managing one of our nation’s most crucial – and invisible – national assets: the radio spectrum.
Understanding Conventional Amplitude ModulationDec 15, 2024
Learn about conventional AM, an amplitude modulation technique commonly used in commercial radio broadcasting.
Radios, how do they work?Jul 8, 2024
A brief introduction to antennas, superheterodyne receivers, and signal modulation schemes.
Slow Listening: Dive Into These Independent Radio Stations From Across theApr 10, 2024
Whether you have diverse tastes or a niche one, there are independent radio stations out there that could feel like home.
KOTO RADIOJul 14, 2023
Non-commercial, non-underwritten community radio serving the San Juan Mountains and beyond.
synthwave radio 🌌 - beats to chill/game toApr 29, 2023
🎼 | Listen on Spotify, Apple music and more
→ https://fanlink.to/ChillSynthwave
🎶 Subscribe to this channel for more synthwave music
→ https://bit.ly/synthwave-channel
🌎 | Lofi Girl on all social media
→ https://fanlink.to/lofigirl-social
👕 | Lofi Girl merch
→ https://bit.ly/Iofigirl-shop
🎭 | Create your lofi avatar now
→ https://lofigirl.com/generator/
💬 | Join the Lofi Girl community
→ https://bit.ly/lofigirl-discord
→ https://bit.ly/lofigirl-reddit
🎨 | Art by Lofi Studio (full list of artists here)
→ https://www.instagram.com/p/CrlCU3msh49/
📝 | Submit your music / art
→ https://bit.ly/lofi-submission
TuneIn Explorer - Discover New Radio Stations & Songs from Around the WorldMar 4, 2023
Explore music, culture, and sounds from around the globe with TuneIn Explorer. Discover new songs and bands for free on desktop, mobile, and tablet devices.
YouTube Music will let you make your own custom radio stationsFeb 22, 2023
You can choose artists, variability, moods, and more.
http://www.americanaboogie.com/radio/?fbclid=IwAR1BA6We3kB4Qlg501kSzeai1wSaqOMfshcJgkx-iLNPta6SfBmMTzHkVSsOct 25, 2022
List of United States radio networksJul 14, 2022
The following is a list of commercial radio broadcasters and radio networks in the United States.
List of international radio broadcastersJul 14, 2022
International radio broadcasters are legally licensed stations that broadcast from a host nation to another nation or nations. Such stations are operated both as non-commercial enterprises such as the BBC World Service, and commercial operations such as WWCR. The following is a list of such stations with links to entries about each one:
The ghostly radio station that no one claims to runJun 22, 2022
“MDZhB” has been broadcasting since 1982. No one knows why.
How SiriusXM bought and bungled a beloved podcast networkMar 23, 2022
Stitcher and Earwolf are beloved by fans — then they started losing hosts and talent.
On Air with the Greatest Radio Station in the WorldAug 16, 2021
WPKN-FM—on which you can hear a Stevie Wonder song performed by an all-women jazz septet or twenty minutes of Tuvan throat singing—moves to a new location in downtown Bridgeport, Connecticut.
How to Listen to Radio Stations From Around the WorldNov 2, 2020
Radio programming from around the world is available on the internet or through apps.
KEXP Show ScheduleMay 17, 2020
KUT Radio ScheduleMay 16, 2020
KUT 90.5 FM Austin on-air program schedule for local news, NPR, National Public Radio, BBC World Service and Newshour, American Public Media, Texas Standard and other radio programming
10 Most Influential College Radio Stations In The USAug 29, 2019
Many a legend tells of the big breakout that came as the result of an early pickup by a college radio station, and while radio may not have the grip. Continue reading
War of the WorldsNov 3, 2018
For the 80th anniversary of Orson Welles' 1938 radio play "The War of the Worlds," we take a deep dive into one of the most controversial moments in broadcasting history.
Building a Time Machine for RadioOct 28, 2018
The Radio Spectrum Archive will let you listen to old broadcasts as if they were live
Free E-Book: Software Defined Radio for EngineersJun 30, 2018
We really like when a vendor finds a great book on a topic — probably one they care about — and makes it available for free. Analog Devices does this regularly and one you should probab…
The Long Fall of iHeart, Once the Most Powerful and Feared Player in RadioJan 24, 2018
Launched by two of the biggest names in Texas business, Clear Channel was once the most powerful—and feared—player in radio. Now rebranded as iHeartMedia, it’s on the brink of bankruptcy.
railroads-trains
Strap RailNov 6, 2025
The early history of the United States runs along with the first years of the railroad.
A Union Pacific-Norfolk Southern combination would redraw the railroad map - TrainsJul 26, 2025
Combining Union Pacific and Norfolk Southern into the first transcontinental railroad in the U.S. would create a 52,215-mile colossus that could offer seamless service from coast to coast, bypassing longtime interchange choke points in Chicago and at gateways along the Mississippi River.
The two railroads confirmed today that they are in advanced merger discussions. The talks, they said, may not result
How to redraw a cityJun 12, 2025
Japan faced some of the world’s toughest planning problems. It solved them by letting homeowners redesign neighborhoods together.
The Hobo Handbook by Jeremiah DavidMay 14, 2025
May 9, 2025 – “The Guide is either the train hopper’s Bible or an outdated relic, a must-have or a crutch, depending on whom you ask.”
Ride the Rails to Discover Hidden History and Incredible Hiking in ColoradoJun 13, 2024
Follow the footsteps of cowboys and coal miners—and catch a rare glimpse of the state’s wild inner core.
25 Days, 9 Countries, 1,959 Miles: Seeing Europe by TrainOct 20, 2022
For one British writer left adrift by Brexit, a cross-continental train trip might be the best way to reconnect with her European neighbors.
Why high speed rail hasn’t caught on – Casey Handmer's blogOct 16, 2022
High Speed Rail (HSR) has been in the news, with a recent New York Times article listing some of the reasons that the California HSR project seems unlikely to ever be completed. Quite aside from Ca…
National Rail Network MapSep 14, 2022
AWS for Industry, But Better: The Railroad Investment CaseJun 13, 2022
Plus! Smart Margin; Peak College?; Two-Sided Markets; Bonds; Diff Jobs
Europe jumps on the trainSep 24, 2014
More and more people are using this form of travel to get around the continent, using high-speed routes and a network of night trains that continues to expand. We traveled from Madrid to Prague and witnessed how the future of European transportation is clean and fast
rake
How to Write a Custom Rake Task | Sean C DavisJan 8, 2023
Rake provides a great way to automate repetitive or complex tasks. Here's a look at creating a simple and a more complex task.
Episode 365 - Automate Rake Tasks | Drifting RubySep 5, 2022
When rake tasks need to be part of a deployment, you could find yourself in a situation where the rake task was forgotten about or have to go through the process of shelling into the environment to execute the tasks. In this episode, we look at addressing these issues by creating a way to have rake tasks execute automatically.
The 4 days Guide to RakeJun 5, 2022
Blog and website of Greg Molnar, Ruby Developer, Rails Developer, IT Security Consultant, Penetration Tester, Ethical hacker. Opinions expressed are mine.
Customizing Rails rake tasksJan 17, 2022
Motivation Rails rake tasks are commands that automate specific acti...
Rake 201Dec 25, 2020
In this second article about Rake, we dive a little deeper and cover slightly advanced topics like file tasks, rules, multitasks and more that will improve your Rake chops...
custom rake task in rails | codedecoderDec 25, 2020
rake command is explained in this post. rails provide a number of inbuilt tasks, but you can create your own task also as explained here. => Understanding the basics : When you create any new ra…
rbenv
rv, a new kind of Ruby management toolAug 27, 2025
For the last ten years or so of working on Bundler, I’ve had a wish rattling around: I want a better dependency manager. It doesn’t just manage your gems, it manages your ruby versions, too. It doesn’t just manage your ruby versions, it installs pre-compiled rubies so you don’t have to wait for ruby to compile from source every time. And more than all of that, it makes it completely trivial to run any script or tool written in ruby, even if that script or tool needs a different ruby than your application does.
How To Install Ruby on Rails with rbenv on Ubuntu 20.04 | DigitalOceanMay 25, 2022
Ruby on Rails is one of the most popular application stacks for developers looking to create sites and web apps. Using rbenv will provide you with a solid en…
ruby - Rbenv and Rails mismatches - Stack OverflowJul 25, 2021
Good morning everyone,
I've installed Ruby 3.0.2 via rbenv in order to test-drive a Rails 6.0 app. It seems like rbenv's Rails shiv is not working properly.
$ rbenv install 3.0.2
Downloading ruby-3...
Understanding How Rbenv, RubyGems And Bundler Work TogetherJul 7, 2021
Rbenv, RubyGems, and Bundler work together to give us a lot of control over our code's environment. If you know how they work, you'll be better prepared to troubleshoot any problems you encounter. In this article, Ol...
reactance
Reactance: Why People Ignore Expert Advice (and How Psychology Can Help Them Listen)Jan 8, 2026
Behavior is the end result of a prevailing story in one’s mind: change the story and the behavior will change.”― Dr. Jacinta Mpalyenkana In 2020 we were all asked to change our behavior in some way, in service of “flattening the curve” — using social distancing measures to slow the spread of an illness so that fewer
When Red Means “Go”: Color and Cultural Reactance in Risk PreferencesApr 13, 2021
Color can affect judgment and decision making, and its effects may vary across cultures. Research reported in this article shows that cross-cultural color effects on risk preferences are influenced by personal associations of color-gain/loss. Our research finds a cultural reactance effect, a phenomenon in which people who hold culturally incongruent (vs. cultural mainstream) color associations
The Real Reason Why You Sabotage Your Own GoalsFeb 19, 2021
How to overcome psychological reactance, the rarely-discussed psychological reflex that’s holding you back
Reactance (psychology) - WikipediaFeb 19, 2020
In psychology, reactance is an unpleasant motivational reaction to offers, persons, rules, regulations, advice, or recommendations that are perceived to threaten or eliminate specific behavioral freedoms. Reactance occurs when an individual feels that an agent is attempting to limit one's choice of response and/or range of alternatives.
reactjs
How to integrate React with Rails 7Apr 29, 2024
Want to setup React on your Rails 7 app but don’t know how do it? Read this post to explore options to consider when using React with Ruby on Rails.
kauffecup/react-bubble-chart: A React+D3 animated bubble chartFeb 11, 2023
A React+D3 animated bubble chart.
Connect a Ruby on Rails App with React in a MonolithAug 6, 2022
Learn about the three main types of app architecture, then connect React with your monolith Ruby on Rails app.
Starting Out in Software Engineering? Don’t Bother Learning React JS. | Built InJul 9, 2022
React JS has been an important framework in developers’ toolkits for a decade now. But if you’re just starting your career, you’re probably better off not spending time learning it.
reactjs/react-basic: A description of the conceptual model of React without implementation burden.Jan 17, 2022
A description of the conceptual model of React without implementation burden. - reactjs/react-basic
ReasonML - React as first intendedJan 16, 2022
ReasonML is a tech Facebook uses to develop React applications, also see as a futuristic version of JavaScript. Here's what you should know about it.
React PatternsJan 16, 2022
React patterns from beginners to advanced developers. Simple examples, short descriptions, and quality advice.
The Beginner's Guide to ReactJan 16, 2022
React got that name for a reason. It’s a component-based JavaScript library that renders smartly and can seriously simplify your work. This course is f...
React JS Introduction - React EnlightenmentJan 12, 2022
A JavaScript library for building user interfaces. React Enlightenment, the most famous guide to examine and understand the building blocks of React apps.
btholt/complete-intro-to-react: A Complete Intro to React, as Given for Frontend MastersJan 12, 2022
A Complete Intro to React, as Given for Frontend Masters - btholt/complete-intro-to-react
How (and why) to use D3 with React | HackerNoonDec 26, 2021
If you’re planning to build a React app with more than a few simple data visualizations, you’ll probably want to pick an approach that:
Getting started with React GraphQLDec 16, 2021
Read a GraphQL Editor blogpost titled : 'Getting started with React GraphQL'. Originally contributed by Tomek on 1/15/2019.
A Complete React Boilerplate Tutorial — From Zero to HeroDec 16, 2021
This article will teach you how you can build your own boilerplate from scratch with the main dependencies used in the React community today.
krishl/fullstack-react: Working through FullStack React BookDec 16, 2021
Working through FullStack React Book.
Redux Tutorial #1 - React js tutorial - How Redux WorksDec 14, 2021
This Redux tutorial series will show you the schematics of a Redux application. Redux is AWESOME, but it takes a bit to get it setup. There really aren't a lot of moving parts, but there are a lot of ways that you can configure it - namely - configure the store.
Redux is like Flux in several ways, but it's different as well. It has these pieces:
- Provider: wraps your application, injecting the store
- Store: one large store that contains the state for your entire application
- Reducers: reducers listen to actions and make changes on the store values. They also cannot mutate the data on the store in any way, but must return a new set of data.
- Actions: pretty much just like flux actions, the only difference is that async can be handled in multiple different ways depending on store "middleware"
- Components: React components can be injected with various pieces of store data. React components also trigger Redux actions. This is what makes it all come together.
-~-~~-~~~-~~-~-
Also watch: "Tailwind CSS - why CSS utility classes save so much time"
https://www.youtube.com/watch?v=oU5ar0dmQEY
-~-~~-~~~-~~-~-
8 Key React Component DecisionsDec 14, 2021
By Cory House Standardize your React development with these key decisions React was open-sourced in 2013. Since then, it has evolved. As you search the web, you’ll stumble across old posts with dated approaches. So, here are eight key decisions your ...
Building a MERN stack simple blog site from absolute scratch ?Dec 3, 2021
Even a few years ago, web application development was not what it is today. Nowadays, there are so...
React TutorialMay 31, 2021
React Tutorial - This React tutorial is intended to assist you in learning the fundamentals to advance of ReactJS. Learn all about ReactJS from basics to advanced concepts like Component, State, Props, Router, Fragmentation, Redux, etc.
React Tutorial From Scratch: A Step-by-Step Guide (2021 Update)Feb 11, 2021
Learn React and build this todos project with this course. Do you want to learn React and build...
No One Ever Got Fired for Choosing React — jake lazaroffDec 5, 2020
If you spend a lot of time on Hacker News, it’s easy to get taken by the allure of building a project without a framework.
Angular v/s React v/s Vue: The Complete ComparisonAug 27, 2020
"Framework is heart of every technology." Whether you are a beginner, a senior developer, a freela...
oldboyxx/jira_clone: A simplified Jira clone built with React/Babel (ClientFeb 19, 2020
A simplified Jira clone built with React/Babel (Client), and Node/TypeScript (API). Auto formatted with Prettier, tested with Cypress. - oldboyxx/jira_clone
Build your own ReactDec 23, 2019
We are going to rewrite React from scratch. Step by step. Following the architecture from the real React code but without all the…
Maintain Control: A Guide to Webpack and React, Pt. 1Dec 23, 2019
Escape Create React App's orbit with this Webpack customization tutorial!
Maintain Control: A Guide to Webpack and React, Pt. 2Dec 23, 2019
Optimize Webpack for TypeScript, CSS, web workers, and service workers.
Getting Started with React (2019 Edition) ― Scotch.ioDec 14, 2019
See why React is the most popular JavaScript library for building frontends, and use it to build sites and apps.
Getting started with React GraphQLAug 30, 2019
426K subscribers in the reactjs community. A community for discussing anything related to the React UI framework and its ecosystem. Join the…
Full series of 11 posts is out: Build an end-to-end Movie Store App with ReAug 30, 2019
426K subscribers in the reactjs community. A community for discussing anything related to the React UI framework and its ecosystem. Join the…
React.js cheatsheetJan 3, 2019
React.Component · render() · componentDidMount() · props/state · dangerouslySetInnerHTML · React is a JavaScript library for building user interfaces. This guide targets React v15 to v16.
A Guide to Custom Elements for React DevelopersDec 10, 2018
I had to build a UI recently and (for the first time in a long while) I didn't have the option of using React.js, which is my preferred solution for UI these
EvergreenOct 17, 2018
Evergreen is a React UI Framework for building ambitious products on the web. Made by Segment in San Francisco, CA.
Realtime with React and Rails - via @codeship | via @codeshipJun 8, 2018
To showcase using ActionCable in a Rails app with React
Creating a Blogging App Using React, Part 5: Profile PageJun 8, 2018
In the previous part of this tutorial series, you saw how to implement the update and delete post feature for our React blog application. In this tutorial, you'll implement the profile page for...
React Crash Course for Beginners, Part 3Jun 8, 2018
So far in this React series, we've created a working sample app as a starting point for our 'Movie Mojo' gallery app, and we've seen how using props allows us to customize the appearance of...
Using React, Firebase, and Ant Design to Quickly Prototype Web ApplicationsJun 8, 2018
In this guide I will show you how to use Firebase, React, and Ant Design as building blocks to build functional, high-fidelity web applications. To illustrate this, we’ll go through an example of building a todo list app. These days, there are so many tools available for web development
React Crash Course for Beginners, Part 1Dec 27, 2017
In this tutorial series we'll dive right into using React as we build a fully working app to display a gallery of movies. Learning how to build an app from scratch is a great opportunity to...
readability
Claude Wrote Me a 400-Commit RSS Reader App — LessWrongJan 5, 2026
In the last few weeks, I've been playing around with the newest version of Claude Code, which wrote me a read-it-later service including RSS, email n…
reading
The Electric TypewriterFeb 7, 2026
Great articles and essays by the world's best journalists and writers.
What Exactly Is E-Ink—and How Does It Do Its Thing?Sep 30, 2025
You see it mentioned on almost every e-reader device—that is, tablet specialized for reading e-books—but what is it, really?
Read 20 Short Stories From Nobel Prize-Winning Writer Alice Munro (RIP) FreMay 17, 2024
Note: Back in 2013, when Alice Munro won the Nobel Prize in Literature, we published a post featuring 20 short stories written by Munro.
F-Shape Pattern And How Users ReadApr 23, 2024
Scrolling, scanning, skipping: How do users consume content online? Here’s what you need to know about reading behavior and design strategies to prevent harmful scanning patterns. An upcoming part of Smart Interface Design Patterns.
Welcome to Open Library | Open LibraryFeb 10, 2024
Open Library is an open, editable library catalog, building towards a web page for every book ever published. Read, borrow, and discover more than 3M books for free.
Building an antilibrary: the power of unread booksJan 11, 2024
Unread books are as powerful as the ones we read. An antilibrary is a private collection of unread books capturing the vastness of the unknown.
Tyler Cowen on reading fast, reading well, and reading widely - Driverless CrocodileAug 28, 2022
This is a great riff on how reading works and on the network effects of reading. Links below. Tyler says: … I go through five or ten books a day. And which parts of them I’ve read you can debate – maybe it washes out to be two or three books a day. Some good… Read More »Tyler Cowen on reading fast, reading well, and reading widely
The Japanese call this practice tsundoku, and it may provide lasting benefitsAug 13, 2022
Or, how I learned to stop worrying and love my tsundoku.
Eight of Literature's Most Powerful Inventions—and the Neuroscience Behind How They WorkJun 13, 2022
These reoccuring story elements have proven effects on our imagination, our emotions and other parts of our psyche
BookTok Book List With 43 Billion Views Has Sent Barnes & Noble Sales SoaringMar 21, 2022
Barnes & Noble has found new life in a community of TikTokers that has taken the publishing industry by storm.
20 Short Novels To Stay Up All Night ReadingJan 15, 2022
Unputdownable books you can finish in bed tonight.
How to study effectively | Psyche GuidesSep 2, 2021
Forget cramming, ditch the highlighter, and stop passively rereading. The psychology of learning offers better tactics
From teen wizards to Harry Styles romances: How Wattpad created a user-geneMay 21, 2021
Wattpad is turning these user-generated stories into books, TV shows, and movies.
Why we remember more by reading – especially print – than from audio or videoMay 12, 2021
People tend to think of digital media as entertainment, so they devote less mental effort than when they’re reading a printed book.
Reading, That Strange and Uniquely Human ThingDec 28, 2020
How we evolved to read is a story of one creative species.
Reading Comprehension: How to Retain More of Every Book You ReadDec 24, 2020
It's important to read books, but it's just as important to remember what you read. Read this article to learn three reading comprehension strategies.
realestate
Who are the Top 100 Landowners in the US? | Land Report 100Feb 9, 2026
Land Report 100
Explore the 2025 Top 100 U.S. Landowners. View Top 100
Presented by:
Land Report 100
Explore the 2025 Top 100
U.S. Landowners. View Top 100
Presented by:
Land Report 100
Who is America's
Largest Landowner?
This question is the quest
Why Are Homes in Western States So Expensive?Jun 26, 2025
Earlier this month I came across the following graphic, originally posted on Reddit in 2022, showing the state of housing affordability in the US.
Project: U.S. Land Values - PLACES labFeb 22, 2025
High-resolution prediction and uncertainty estimation of land value and conservation costs in the contiguous United States (NSF) National Science Foundation, Human-Environment and Geographical Sciences, Award #2149243 Accurate estimates of the fair market value of private land rights are key inputs for many public policy choices, including property taxation and conservation planning. However, this estimation task […]
The Real Cost of New York City Office Real EstateJul 22, 2023
The city’s mega-office landlords are panicking, pivoting, and shedding what’s worthless. One opens his books.
The American Mall's Long Goodbye - The Sunday Long ReadSep 12, 2022
As painful as it might be for millennials like myself to admit, malls are now viewed through historians' rear-view mirrors.
Shanghai’s Real Estate Agents Are in Trouble. Buyers Don’t Mind.Dec 25, 2021
As house sales plummet, the local government is encouraging individuals to trade houses without agents.
These Texas Homes Designed by Lake Flato Blend Dreamily Into Their SurroundSep 14, 2021
A new book explores the recent work and landscape-driven philosophy of the esteemed San Antonio architecture firm.
We replaced rental brokers with softwareJul 10, 2021
Check the requirements, book the viewing, let yourself in, and submit your application, all without emails or phone tag.
386 S Fox Cove Rd, Boone, NC 28607 | realtor.com®Nov 20, 2018
View 27 photos for 386 S Fox Cove Rd, Boone, NC 28607, a 3 bed, 2 bath, 1,678 Sq. Ft. single family home built in 2012 that was last sold on 04/30/2019.
reasoning
Nvidia’s new technique cuts LLM reasoning costs by 8x without losing accuracyFeb 12, 2026
Nvidia researchers developed dynamic memory sparsification (DMS), a technique that compresses the KV cache in large language models by up to 8x while maintaining reasoning accuracy — and it can be retrofitted onto existing models in hours.
MIT’s new ‘recursive’ framework lets LLMs process 10 million tokens without context rotJan 20, 2026
While standard models suffer from context rot as data grows, MIT’s new Recursive Language Model (RLM) framework treats prompts like code variables, unlocking infinite context without the retraining costs.
Add Reasoning Skills to Your LLM Apps | Aman KharwalJan 20, 2026
In this article, I’ll walk you through a guided project to add reasoning skills to your LLM apps. Add Reasoning Skills to Your LLM Apps.
The State of Reinforcement Learning for LLM ReasoningDec 31, 2025
Understanding GRPO and New Insights from Reasoning Model Papers
Build a Reasoning Model (From Scratch) - Sebastian RaschkaOct 5, 2025
Understand LLM reasoning by creating your own reasoning model–from scratch!
LLM reasoning models have the power to tackle truly challenging problems that require finding the right path through multiple steps. In Build A Reasoning Model (From Scratch) you’ll learn how to build a working reasoning model from the ground up. You will start with an existing pre-trained LLM and then implement reasoning-focused improvements from scratch.
Sebastian Raschka, the bestselling author of Build a Large Language Model (From Scratch), is your guide on this exciting journey. Sebastian mentors you every step of the way with clear explanations, practical code, and a keen focus on what really matters.
In Build A Reasoning Model (From Scratch) you’ll learn how to:
Implement core reasoning improvements for LLMs
Evaluate models using judgment-based and benchmark-based methods
Improve reasoning without updating model weights
Use reinforcement learning to integrate external tools like calculators
Apply distillation techniques to learn from larger reasoning models
Understand the full reasoning model development pipeline
Reasoning models break problems into steps, producing more reliable answers in math, logic, and code. These improvements aren’t just a curiosity–they’re already integrated into top models like Grok 4 and GPT-5. Build A Reasoning Model (From Scratch) demystifies these complex models with a simple philosophy: the best way to learn how something works is to build it yourself! You’ll begin with a pre-trained LLM, adding and improving its reasoning capabilities in ways you can see, test, and understand.
Understanding the 4 Main Approaches to LLM Evaluation (From Scratch)Oct 5, 2025
Multiple-Choice Benchmarks, Verifiers, Leaderboards, and LLM Judges with Code Examples
Hierarchical Reasoning ModelJul 28, 2025
Reasoning, the process of devising and executing complex goal-oriented action sequences, remains a critical challenge in AI. Current large language models (LLMs) primarily employ Chain-of-Thought (CoT) techniques, which suffer from brittle task decomposition, extensive data requirements, and high latency. Inspired by the hierarchical and multi-timescale processing in the human brain, we propose the Hierarchical Reasoning Model (HRM), a novel recurrent architecture that attains significant computational depth while maintaining both training stability and efficiency. HRM executes sequential reasoning tasks in a single forward pass without explicit supervision of the intermediate process, through two interdependent recurrent modules: a high-level module responsible for slow, abstract planning, and a low-level module handling rapid, detailed computations. With only 27 million parameters, HRM achieves exceptional performance on complex reasoning tasks using only 1000 training samples. The model operates without pre-training or CoT data, yet achieves nearly perfect performance on challenging tasks including complex Sudoku puzzles and optimal path finding in large mazes. Furthermore, HRM outperforms much larger models with significantly longer context windows on the Abstraction and Reasoning Corpus (ARC), a key benchmark for measuring artificial general intelligence capabilities. These results underscore HRM's potential as a transformative advancement toward universal computation and general-purpose reasoning systems.
XiaomiMiMo/MiMo: MiMo: Unlocking the Reasoning Potential of Language Model – From Pretraining to PosttrainingMay 1, 2025
MiMo: Unlocking the Reasoning Potential of Language Model – From Pretraining to Posttraining - XiaomiMiMo/MiMo
The State of Reinforcement Learning for LLM ReasoningApr 20, 2025
A lot has happened this month, especially with the releases of new flagship models like GPT-4.5 and Llama 4. But you might have noticed that reactions to these releases were relatively muted. Why? One reason could be that GPT-4.5 and Llama 4 remain conventional models, which means they were trained without explicit reinforcement learning for reasoning. However, OpenAI's recent release of the o3 reasoning model demonstrates there is still considerable room for improvement when investing compute strategically, specifically via reinforcement learning methods tailored for reasoning tasks. While reasoning alone isn't a silver bullet, it reliably improves model accuracy and problem-solving capabilities on challenging tasks (so far). And I expect reasoning-focused post-training to become standard practice in future LLM pipelines. So, in this article, let's explore the latest developments in reasoning via reinforcement learning.
First Look at Reasoning From Scratch: Chapter 1Mar 29, 2025
As you know, I've been writing a lot lately about the latest research on reasoning in LLMs. Before my next research-focused blog post, I wanted to offer something special to my paid subscribers as a thank-you for your ongoing support. So, I've started writing a new book on how reasoning works in LLMs, and here I'm sharing the first Chapter 1 with you. This ~15-page chapter is an introduction reasoning in the context of LLMs and provides an overview of methods like inference-time scaling and reinforcement learning. Thanks for your support! I hope you enjoy the chapter, and stay tuned for my next blog post on reasoning research!
Understanding Reasoning LLMsFeb 5, 2025
In this article, I will describe the four main approaches to building reasoning models, or how we can enhance LLMs with reasoning capabilities. I hope this p...
How LLMs Store and Use Knowledge? This AI Paper Introduces Knowledge Circuits: A Framework for Understanding and Improving Knowledge Storage in Transformer-Based LLMsDec 15, 2024
Large language models (LLMs) can understand and generate human-like text by encoding vast knowledge repositories within their parameters. This capacity enables them to perform complex reasoning tasks, adapt to various applications, and interact effectively with humans. However, despite their remarkable achievements, researchers continue to investigate the mechanisms underlying the storage and utilization of knowledge in these systems, aiming to enhance their efficiency and reliability further. A key challenge in using large language models is their propensity to generate inaccurate, biased, or hallucinatory outputs. These problems arise from a limited understanding of how such models organize and access knowledge. Without clear
Four Cutting-Edge Methods for Evaluating AI Agents and Enhancing LLM PerformanceNov 28, 2024
The advent of LLMs has propelled advancements in AI for decades. One such advanced application of LLMs is Agents, which replicate human reasoning remarkably. An agent is a system that can perform complicated tasks by following a reasoning process similar to humans: think (solution to the problem), collect (context from past information), analyze(the situations and data), and adapt (based on the style and feedback). Agents encourage the system through dynamic and intelligent activities, including planning, data analysis, data retrieval, and utilizing the model's past experiences. A typical agent has four components: Brain: An LLM with advanced processing capabilities, such as
How Chain-of-Thought Reasoning Helps Neural Networks ComputeMar 29, 2024
Large language models do better at solving problems when they show their work. Researchers are beginning to understand why.
Unraveling the Power of Chain-of-Thought Prompting in Large Language ModelsJul 12, 2023
This article delves into the concept of Chain-of-Thought (CoT) prompting, a technique that enhances the reasoning capabilities of large language models (LLMs). It discusses the principles behind CoT prompting, its application, and its impact on the performance of LLMs.
reciprocity
The Manipulative Power of Small Favors: How to Disarm ReciprocityJan 25, 2023
Reciprocity is both a blessing and a curse, as it fosters relationships, but also exposes us to manipulation
Reciprocity DecayMar 12, 2019
Our desire to give back wanes rapidly with time - Why if you want people to return a favor, you need to act fast
recommenders
Vector Search at Scale: The Production Engineer's GuideFeb 3, 2026
IVF partitions space. PQ compresses memory. Together they make 100M vector search actually possible
How Recommendation Systems Learned to ThinkJan 21, 2026
Recsys Series Part 2: From collaborative filtering breakthroughs to generative AI agents that can chat about your preferences and explain their reasoning
RecSys Fundamentals: The Art and Science of Digital MatchmakingJan 20, 2026
Recsys Series Part 1: Master the three core approaches that power every modern recommendation engine
The 3-Stage Funnel Behind Every Modern Recommender SystemJan 20, 2026
Two-Tower models, vector databases, cross-encoders—and how they work together at scale
Bridging the Gap: New Datasets Push Recommender Research Toward Real-World Scale - KDnuggetsJul 13, 2025
Publicly available datasets in recommender research currently shaping the field.
Improving Recommender Systems & Search in the Age of LLMsMar 22, 2025
Model architectures, data generation, training paradigms, and unified frameworks inspired by LLMs.
Recommendation Algorithms You Should KnowJun 19, 2024
In this article, I'll take you through the recommendation algorithms you should know and how to implement them using Python.
How to Cultivate Taste in the Age of AlgorithmsMay 21, 2024
When we turn to algorithms for recommendations instead of asking friends or going down hard-won cultural rabbit holes, what do we give up?
recommenders-team/recommenders: Best Practices on Recommendation SystemsJan 17, 2024
Best Practices on Recommendation Systems.
Evaluation Metrics for Recommendation Systems — An OverviewAug 11, 2023
Understanding the purpose and functionality of common metrics in ML packages
HackerNews Ranking Algorithm: How would you have done it?Apr 21, 2023
Here's a small thought experiment that explores an alternative approach to ranking posts on HackerNews.
Hashing in Modern Recommender Systems: A PrimerMar 29, 2023
Understanding the most underrated trick in applied Machine Learning
Introduction of Four Types of Item Similarity MeasuresFeb 19, 2023
Covers how to choose the similarity measure when item embeddings are available
The Secret Sauce of Tik-Tok’s Recommendations | Shaped BlogFeb 17, 2023
Dive into the inner workings of TikTok’s awesome real-time recommendation system and learn what makes it one of the best in the field!
Building a Recommender System for Amazon Products with PythonFeb 10, 2023
I built a recommender system for Amazon’s electronics category
An Intuitive Explanation of Collaborative FilteringSep 16, 2022
The post introduces one of the most popular recommendation algorithms, i.e., collaborative filtering. It focuses on building an intuitive understanding of the algorithm illustrated with the help of an example.
Locations product recommendationsAug 30, 2022
RTFM? How to write a manual worth readingJul 18, 2022
Patience and empathy are the basis of good documentation, much as they are the basis for being a decent person. Here's a how-to for creating better open source project docs, which can help your users and grow your community.
Multi-armed bandits for dynamic movie recommendationsJul 18, 2022
Making the best recommendations to anonymous audiences
grahamjenson/list_of_recommender_systems: A List of Recommender Systems and ResourcesJun 28, 2022
A List of Recommender Systems and Resources.
How to build B2B recommendation engines from competitor’s alternativesJun 28, 2022
Without driving yourself crazy
Multi-Relevance Ranking Model for Similar Item RecommendationJun 23, 2022
Buyers reveal a whole range of behaviors and interests when they browse our pages, so we decided to incorporate these additional purchase intent signals into our machine learning model to improve the relevance of our recommended items.
Say Hello To Recommendation SystemsJun 21, 2022
A preview into one of the most prominent data science applications
Improving Shopping Recommendations for Customers Through eBay’s Relevance CApr 7, 2022
Under the new machine learning model, buyers are recommended items that are more aligned to their shopping interests on eBay.
Introducing TorchRec, a library for modern production recommendation systemFeb 25, 2022
We are excited to announce TorchRec, a PyTorch domain library for Recommendation Systems. This new library provides common sparsity and parallelism primitives, enabling researchers to build state-of-the-art personalization models and deploy them in production.
Algorithm-Assisted Inventory CurationMay 15, 2021
Building the raw materials for personalization at scale
Achieving High-Quality Search and Recommendation Results with DeepNLPFeb 5, 2021
Speech and natural language processing (NLP) have become the foundation for most of the AI development in the enterprise today, as textual data represents a significant portion of unstructured content.
TT-Rec: Tensor Train Compression for Deep Learning Recommendation ModelsJan 30, 2021
The memory capacity of embedding tables in deep learning recommendation models (DLRMs) is increasing dramatically from tens of GBs to TBs across the industry. Given the fast growth in DLRMs, novel...
How to build a music recommender system.Jan 24, 2021
Using Spotify’s data to generate music recommendations.
RecSys Series Part 8: The 14 Properties To Take Into Account When EvaluatinJan 15, 2021
How many different ways we can evaluate RecSys?
RecSys Series Part 7: The 3 Variants of Boltzmann Machines for CollaborativDec 10, 2020
Physics Meets Recommendations
Why Is An Obscure B-Side Pavement's Top Song On Spotify? It's Complicated.Nov 22, 2020
A couple years ago, Stephen Malkmus walked into a shop and didn’t recognize himself. He was with one of his daughters, stopping at a gluten-free bakery (“Very Portland,” Malkmus jokes) when the Pavement song “Harness Your Hopes” came on — a song he had written and recorded more than two decades prior while leading the band. The guitar-playing that was choogling over the speakers was partially his own, but in the few moments before the vocals kicked in, his brain couldn’t place it. “At first I thought, ‘Oh, they’re playing “Tumbling Dice” by Rolling Stones,’” he remembers now, over the phone. “Then it was playing and I thought, ‘Well, this is a cool place.’ Little did I know it was just on Spotify or something.” At that point, the track was still a deep cut — a B-side recorded during the sessions for 1997’s Brighten The Corners, but not released until 1999, when it was thrown onto the CD-only Spit On A Stranger EP, a detail so remote that even Malkmus had forgotten about it until he was reminded. The song remained one that only the real heads knew until 2008, when it was included on Matador’s expanded reissue of Brighten The Corners, alongside a large amount of the extra material recorded for that album by producer/engineers Mitch Easter and Bryce Goggin. It was then that the castoff song began its new life, slowly becoming a minor fan favorite — a single-worthy non-album track that indicated just how rich the band’s discography was. A curveball to put on a mix and raise an eyebrow. The type that a bakery employee might sneak onto the work playlist as a subtle way to class the joint up. But then something bizarre happened: In the last few years, the song has rocketed up to become number one on Pavement’s Spotify page, ending up with over 28 million plays to date, seven million more than “Cut Your Hair,” a legitimate and enduring ’90s hit. Quickly, and without any obvious reason, it stopped being a rarity and started to become a standard, appearing in coffee shops and bars and gluten-free bakeries. So how did this happen, exactly? And better yet, should this have happened? Online, people have been casually wondering this on places like Reddit and Twitter, with a prevailing theory being that the song must have been featured on a prominent Spotify playlist, and then simply snowballed from there. Malkmus himself was under this impression, too: “I heard it was on a playlist or something,” he says, nonchalant. “I’m not an expert on Spotify but, you know, one of those ‘Monday Moods’ or whatever the fuck they do.” It’s a reasonable enough explanation. But looking at a similar situation of his own, Damon Krukowski wasn’t so sure. The musician and writer was fascinated with the question of how “Strange” became his former band Galaxie 500’s top Spotify track — by a significant margin — even though it was not a single, was never particularly popular in the past, and wasn’t being picked up on any prominent playlists. In June of 2018, Krukowski laid out the conundrum on his blog, and soon he received a possible explanation from a Spotify employee. Glenn McDonald, who holds the title of “data alchemist” at Spotify, had taken an interest in the case, and decided to look into it. What he found is that the sudden jump in plays for “Strange” began in January of 2017, which was “the same time Spotify switched the ‘Autoplay’ preset in every listener’s preference panel from off, to on,” as Krukowski recounted on a follow-up blog post. McDonald explained to Krukowski that the Autoplay feature actually cues up music that “resembles” what you’ve just been listening to, based on a series of sonic signifiers too complex to describe. In this case, “Strange” had been algorithmically determined to sound similar to a lot of other music, and was frequently being Autoplayed to the point that it took on a life of its own, and eventually eclipsed the band’s other tracks. It continues to do so to this day. “He called me up because of that blog post,” Krukowski explains, on the phone from his home in Cambridge, Massachusetts, “and said he got really interested in it as an engineering problem, ’cause he thought I had pinpointed something they hadn’t realized. Like, because you switch these things in the program, it’s the butterfly effect — who knows what’s gonna result?” More simply put, Spotify appears to have the capacity to create “hits” without even realizing it. When it comes to Galaxie 500, “there’s just no way this would have happened before this flip in the Spotify plays,” Krukowksi notes. “And now we’re becoming identified as a band with that song, because if they learn about the band through Spotify, that’s what they’re hearing. So it becomes, like, our emblem.” Krukowski was convinced, but for his part, McDonald wanted to remain clinical in his diagnosis, waiting to look at more information before making any final judgment as to what was going on with the Autoplay feature at large. If he’s still looking for fresh examples to consider, anyway, “Harness Your Hopes” would be an ideal place to start. Beyond it being a similar situation, broadly speaking — another touchstone alternative rock band from the ’80s/’90s with an inexplicable #1 song — the story also features a detail likely too specific to be coincidental: Using the Wayback Machine, it can be confirmed that “Harness Your Hopes” was nowhere to be seen on the popular tracks section of Pavement’s Spotify page until — you guessed it — 2017, when it suddenly jumped to the top. (Spotify doesn’t disclose more detailed information about artists’ streaming numbers beyond the playcount that’s publicly visible.) When requested, Spotify declined to provide an interview with McDonald, nor with anyone else who would be able to speak to the Autoplay function and how it may or may not be fueling a phenomenon like this. But they did confirm “the accuracies of Glenn’s statements” as they appear on Krukowski’s blog, and left it at that. Speaking from Switzerland, where she’s a visiting scholar at Basel University, Dr. Maria Eriksson is used to not getting much hard information to work with from Spotify. She co-authored a book on the company, 2019’s Spotify Teardown, which investigated the streaming giant and their algorithms to the degree that Spotify’s legal department eventually sent them a cease-and-desist notice. After logging on to a Zoom call, she listens to the “Harness Your Hopes”/”Strange” saga with enthusiasm, but no surprise. “What I find interesting about this story is that, from my research perspective, it really shows the power and influence that these music recommendation systems have,” she says. “But it is also extremely difficult to know how these systems work, and I think the only people who can answer that would be the engineers working at these companies, like Spotify. We’re not even sure if these people could answer why or how a recommendation system works as well, because they’re usually pretty complex things we’re dealing with here.” Krukowski, who is one of the organizers of Justice At Spotify — a new protest campaign demanding a higher artist royalty rate, among other things — isn’t all that concerned with the Autoplay situation, at least in the ways that it might be screwing with artists’ top songs. But he is concerned with the ways that incidental algorithmic designs have industry-wide power: “It’s just kind of stifling to have that amount of control, and have it in one company,” he says. “And then not only that, but to have it made by engineering decisions. This is very consistent with a lot of our culture right now, that we’re willing to surrender to Facebook and Google engineers very important decisions.” Today we are launching our campaign to demand justice at Spotify. Join us and hundreds of musicians and music workers that have already signed on to our demands! https://t.co/8BhohF88q5 pic.twitter.com/zRFGs6nAfZ — Union of Musicians and Allied Workers (@UMAW_) October 26, 2020 In this specific instance, there’s certainly a case to be made that Autoplay might actually be doing a service to the songs that it unintentionally favors — that it might be providing something valuable and unprecedented by plucking tracks from the depths and giving them the possibility of a second chance. Optimistically speaking, the algorithm could be mathematically figuring out which songs people are prone to like, regardless of how well they fared commercially in the first place. And that squares up with the case of “Harness Your Hopes,” since it was a song that was left off Brighten The Corners for no good reason, according to Malkmus. He says that after the band recorded it, they spliced out a bit of tape to shorten the waltzing part that ends the chorus (when Malkmus sings, “Minds wide open, truly”) — a change that ultimately soured him on including the track on the album. “It’s better, I like it, it’s cool that we did that, it’s old-school or whatever,” he says of the analog adjustment. “But it sounded wrong to me or something, and I was like, ‘That’s a B-side.’ It’s terrible, too — nobody told me! I guess I was such a boss, and maybe nobody thought I would listen. Usually Scott [‘Spiral Stairs’] Kannberg or something was really good at telling me, ‘That’s a good song,’ [like he did with the Slanted And Enchanted single] ‘Summer Babe.’ So it should have been on the record. I’m just saying that’s my mistake.” Now, and likely forever, “Harness Your Hopes” has moved beyond the Spotify phenomenon to become one of the definitive Pavement tracks across all platforms — Apple Music, YouTube, etc. It’s even been having a moment on TikTok lately, to the degree that Malkmus’s 15-year-old daughter recently saw it in a post and gave him the news that it was blowing up, kinda. “She was like, ‘It’s trending, but in a certain way, not in a big way,’” he laughs, dryly. It’s hard not to see the zombified success of the song as being anything but for the best, because in this case it really ...
3 ways to improve recommendations | by Yinyin Liu | XOKind | Aug, 2020 | MeNov 3, 2020
It’s time to bring together recent breakthroughs in AI to help solve information overload when you need quality recommendations the most.
Improving complementary-product recommendationsNov 3, 2020
New modeling approach increases accuracy of recommendations by an average of 7%.
Stacked Auto-encoder as a Recommendation System for Movie Rating PredictionApr 24, 2020
Introduction on Stacked Auto-encoder and Technical Walk-through on Model Creation using Pytorch
RecSys Series Part 5: Neural Matrix Factorization for Collaborative FilteriApr 24, 2020
Bringing Neural Architecture into Recommendations
Comprehensive Guide on Item Based Recommendation SystemsApr 1, 2020
This guide will show in detail how item based recommendation system works and how to implement it in real work environment.
Building an Incremental Recommender System: Part IIMar 9, 2020
Going above and beyond state-of-the-art with confidence!
Recommendation System Series Part 2: The 10 Categories of Deep RecommendatiFeb 19, 2020
Categories of Deep Recommendation Systems
Comparing Apples, Oranges and Bananas - ssense-tech - MediumFeb 19, 2020
Behind every recommender system lies a bevy of metrics.
Recommender Engine - Under The Hood - DataScienceCentral.comDec 14, 2019
Many of us are bombarded with various recommendations in our day to day life, be it on e-commerce sites or social media sites. Some of the recommendations look relevant but some create range of emotions in people, varying from confusion to anger. There are basically two types of recommender systems, Content based and Collaborative filtering.… Read More »Recommender Engine – Under The Hood
5 Types of Recommenders - DataScienceCentral.comMar 26, 2018
Summary: There are five basic styles of recommenders differentiated mostly by their core algorithms. You need to understand what’s going on inside the box in order to know if you’re truly optimizing this critical tool. In our first article, “Understanding and Selecting Recommenders” we talked about the broader business considerations and issues for recommenders as… Read More »5 Types of Recommenders
Factorization Machines for Recommendation SystemsMar 8, 2018
Stay up-to-date on the latest data science and AI news in the worlds of artificial intelligence, machine learning, deep learning, implementation, and more.
Exploring Recommendation SystemsFeb 19, 2018
While we commonly associate recommendation systems with e-commerce, their application extends to any decision-making problem which requires pairing two types of things together. To understand why recommenders don’t always work as well as we’d like them to, we set out to build some basic recommendation systems using publicly available data. Data The first ingredient for building a recommendation system is user interaction data. We experimented with two different datasets, one from Flickr and one from Amazon.
Approximate Nearest Neighbours for Recommender SystemsDec 28, 2017
This post is about evaluating a couple of different approximate nearest neighbours libraries to speed up making recommendations made by matrix factorization models. In particular, the libraries I'm looking at are Annoy, NMSLib and Faiss.
Hybrid content-based and collaborative filtering recommendations with {ordiDec 27, 2017
I will use {ordinal} clm() (and other cool R packages such as {text2vec} as well) here to develop a hybrid content-based, collaborative filtering, and (obivously) model-based approach to solve the recommendation problem on the MovieLens 100K dataset in R. All R code used in this project can be obtained from the respective GitHub repository; the chunks of code present in the body of the post illustrate the essential steps only. The MovieLens 100K dataset can be obtained from the GroupLens research laboratory of the Department of Computer Science and Engineering at the University of Minnesota. The first part of the study introduces the new approach and refers to the feature engineering steps that are performed by the OrdinalRecommenders_1.R script (found on GitHub). The second part, to be published soon, relies on the R code in OrdinalRecommenders_3.R and presents the model training, cross-validation, and analyses steps. The OrdinalRecommenders_2.R script encompasses some tireless for-looping in R (a bad habbit indeed) across the dataset only in order to place the information from the dataset in the format needed for the modeling phase. The study aims at (a) the demonstration of the improvement in predicted ratings for recommending on a well-known dataset, and (b) attempts to shedd light on the importance of various types of information in the work of recommendation engines. Consequently, the code is not suited for use in production; additional optimizations are straightforward, simple, and necessary as well.IntroductionAvoiding the formal exposition of the problem altogether, the recommendation problem in the context of contemporary online markets can expressed in the following way: given (A) the information on the user’s past ratings of various items (i.e. the user-item ratings; for example, the ratings on a 5-point Likert type scale of the movies or TV shows that she or he has watched in the past, the ratings on similar scales of the items purchased, and similar), (B) the information on the user-item ratings of other users, © the attributes of users and/or items (c.f. the user’s gender, geographical location, age, occupation, and similar; the genre of the movie, product type, and similar for items), provide a prediction of the user’s rating of a novel, previously unassessed item. The predictions are then used to select the novel items (or lists of items) that a particular user would - by assumption - enjoy to assess, and eventualy purchase, in the future. The cognitive systems used for making such predictions are known as recommendation engines, or recommender systems, and are widely used nowadays across the Internet business.It is generally recognized that recommendation engines can be grouped in two broad categories: (1) content-based systems, or (2) collaborative filtering systems, with the later additionally described as (1.1) neighborhood or (1.2) model-based methods [1]. Content based systems (CF) rely on a typical description of items over feature vectors, and then recommend novel items to users by computing some similarity metric between them and the items that the user has already rated. Collaborative filtering systems, on the other hand, rely on the assumption that the covariations between the ratings (a) from different users over the same set of items, or (b) to different items from the same set of users, implicitly carry the information on item and user attributes. The information about the true user and item attributes are thus latent in CF. In the neighborhood (or memory) variant of CF, these approaches use the user-item ratings directly and proceed by aggregating the ratings of similar users (user-based CF) and/or similar items (item-based CF) in order to provide an estimate of the user’s rating of a novel item, typically weighting the known ratings of similar users/items by the respective proximity/similarity measures. In the model-based variant of CF, the systems tries to discover the structure of the latent factors from the observed behavioral measures (ie. known user-item ratings), and then a myriad of machine learning algortihms and statistical approaches can be used to train a predictive model for the novel user-item ratings of novel items.I will here introduce a new hybrid approach to recommender systems with the following characteristics. First, the system is both content-based and CF. The content-based component of the system encompasses two matrices: the user-user and the item-item proximity matrices, both obtained from applying the relevant distance metric over a set of features that characterize users and items, respectively. The CF component of the system, relies on the typical user-user and item-item similarity matrices computed from the known, past user-item ratings, providing for a memory component of the recommender. Second, the system is model-based in the sense that it combines the information from these four matrices in an ordinal logistic regression model to predict the ratings of novel items on a 5-point Likert scale. The underlying logic of this approach is to try to express the recommendation problem as a discrete choice problem, where the alternatives are provided by ordinal information from a 5-point Likert scale, while the decision makers and the choice context are described by a set of content-based and memory-based features, all referring to some degree of closeness between the unknown user/item combination with the known user/item in two spaces: the attribute (feature) space and the neighborhood (memory) space. Because the CF approaches rely on users-user (or item-item) proximity, the question of how many users (or items) that are similar to the context of the present, novel user-item rating should be used in prediction arises naturally. By expressing the recommender problem as a regression problem essentially, we become able to judge the significance of additional user-user and/or item-item similarity information from the change in regression coefficients obtained by progressively adding more and more information to nested ordinal logistic models and training them. Thus the new approach also provides and excellent opportunity for a comparison between content-based information and memory-based information (the later as being typically used in CF): which one is more important? Given the assumption that the former is implicitly present in the later, i.e. that it presents latent information in the CF approach, does the usage of manifest memory-based information on user-item ratings completelly eliminates the need for a content-based description? If not, how the two should be combined? I will demonstrate how the present approach resolves this dilemma while resulting in highly improved recommendations on a well-known and widely used MovieLens dataset, at the same time reducing drastically the number of features that are needed to build the relevant prediction model.MotivationConsider the following user-item ratings matrix, encompassing 10 items (columns) and three users (rows):In this rating matrix, the ratings of user1 and user2 have a maximal Pearson correlation of 1; however, the ratings of user2 and user3 have a linear correlation of .085, sharing around .007 % of variance only. Upon a closer look, user1 and user2 have only three common ratings (for items i1, i4, and i5), while user2 and user3 have rated exactly the same items (i1, i3, i4, i5, i8, i9, and i10). Imagine that the items rated by user2 and user 3 are all Sci-Fi movies; we can imagine these two users chating and challenging each other’s views on the contemporary Sci-Fi production on online forums or fan conferences, right? They do not have to have perfectly similar tastes, right, but in fact they are similar: simply because they both enjoy Sci-Fi. The Jaccard distance measures the proximity of two vectors A and B, both given over binary features (e.g. present vs. not present), by computing the ratio of (a) the difference between the union of A and B and the intersection of A and B to the (b) union of A and B; it ranges from zero to one and can be viewed as a proportion of common features that the two vectors share in the total number of features present in both. The Jaccard similarity coefficient is given by one minus the Jaccard distance; we will use the {proxy} dist() function to compute these from our ratings matrix:### --- Illustrationuser1
recycling
Plastic-Free Shopping Is Going MainstreamJan 29, 2022
A partnership between America's largest supermarket chain and a reusable packaging company is a sign that no-waste shopping is catching on.
Star Wipers Makes the Rags That Clean Up All Your MessesNov 15, 2019
Before there was recycling, there was the rag trade.
The slow, steady, frustrating, relentless, remarkable rise of RedditDec 1, 2024
After nearly two decades, Reddit is breaking out into the mainstream....
Can You Replace Google Search With Reddit? I Tried It for a WeekJun 19, 2024
Frustrated by their Google searches, people are funneling their queries to a site that isn’t a search engine at all.
The Reddit pages that investigate influencersApr 8, 2024
In 2020, a young woman who asked to be called Anna decided to buy some hair supplements that she learned about from a social media influencer. The influencer, Danielle Bernstein, regularly posts about clothing and beauty on Instagram, and had claimed that the supplements transformed her brittle hair into thick, shiny brunette locks. Anna identified […]
Reddit Is a Marketing GoldmineJan 16, 2024
Reddit posts reveal brand awareness, sentiment, and more. Increasingly they appear in Google search results.
Reddit: Organized Lightning | The GeneralistMar 1, 2021
One of social media's oldest companies is also its most undervalued.
redis
How to Use Redis with PythonAug 20, 2025
We'll learn how to use Redis in Python with a step-by-step tutorial.
The race to replace RedisMar 30, 2024
Introduction to Redis: A Powerful In-Memory DatabaseFeb 3, 2024
Overview Redis, which stands for Remote Dictionary Server, is an open-source, in-memory...
Build Your Own Redis with C/C++ | Build Your Own Redis with C/C++Jan 31, 2023
Build Your Own Redis with C/C++ | Learn network programming and data structures
Redis ExplainedAug 13, 2022
A deep technical dive into all things Redis. Covering various Redis topologies, data persistence and process forking.
regexes
Regex Cheatsheet: Essentials You Must KnowJul 23, 2025
Struggling with regex? This simple cheatsheet breaks down common patterns, symbols, and examples you can use right away.
Introduction to Using Grep With Regular Expressions via WarpDec 12, 2024
After mastering regex, tools like grep become much more useful.
Understanding The $BASH_REMATCH In Bash | by Linux School Tech | MediumMay 21, 2024
$BASH_REMATCH is a special array variable in the Bash shell that stores the results of matching a regular expression using the =~ operator…
Perl Format String Syntax - 1.84.0Apr 1, 2024
Top 50 Useful Regex PatternsFeb 14, 2024
Mastering Regular Expressions in JavaScript: Top 50 Useful Regex Patterns Know More :-...
Linux: 3 ways to search patterns in filesSep 23, 2023
Introduction: This is the first post in my bite-sized learning series. In this series we...
Regex Match all characters between two strings - Stack OverflowJun 25, 2022
Example:
This is just\na simple sentence.
I want to match every character between This is and sentence. Line breaks should be ignored. I can't figure out the correct syntax.
RegExr: Learn, Build, & Test RegExDec 26, 2021
RegExr is an online tool to learn, build, & test Regular Expressions (RegEx / RegExp).
Regex For Noobs (like me!) - An Illustrated GuideDec 11, 2021
This blog post is an illustrated guide to regex and aims to provide a gentle introduction for people who never have fiddled with regex, want to, but are kind of intimidated by the whole thing.
Regex Learn - Step by step, from zero to advanced.Nov 18, 2021
Learn Regex interactively, practice at your level, test and share your own Regex.
The Best Regex TrickJul 10, 2021
Describes a regular expressions technique to match a word or pattern except in certain contexts: excluding tags, ignoring contents, word blacklist.
Rahul Agarwal on LinkedIn: #regex #python #datascience #nlpMar 9, 2020
"The Ultimate Guide to using the Python regex module" https://lttr.ai/Nt5c #regex #Python #datascience #nlp
regressions
Understanding Multicollinearity: Detection and RemediesSep 5, 2025
Multicollinearity occurs when predictors in your regression model correlate highly, making it hard to isolate individual variable effects.
Understanding Probit Regression: The Normal Alternative to LogisticSep 4, 2025
Learn when probit regression outperforms logistic regression for binary outcome modeling.
A Beginner’s Guide to Generalized Linear Models (GLMs)Jul 23, 2025
A standard linear regression assumes the outcome is continuous and normally distributed, which just doesn’t hold up in many of these cases. That’s where GLMs come in.
The Concise Guide to LeverageMar 3, 2025
Leverage helps us identify observations that could significantly influence our regression results, even in ways that aren't immediately obvious.
Beyond Binary Classification — Breaking down Multiple Logistic Regression tFeb 15, 2024
MLBasics #3: From Binary to Multiclass — A Journey Through Logistic Regression Upgrades
A Gentle Introduction to Complementary Log-Log RegressionOct 7, 2023
An alternative of logistic regression in special conditions
Machine Learning Basics: Polynomial RegressionAug 6, 2023
Learn to build a Polynomial Regression model to predict the values for a non-linear dataset.
Unbox the Cox: Intuitive Guide to Cox RegressionsJul 24, 2023
How do hazards and maximum likelihood estimates predict event rankings?
Understanding Logistic Regression — the Odds Ratio, Sigmoid, MLE, et alOct 21, 2022
Logistic regression is one of the most frequently used machine learning techniques for classification. However, though seemingly simple…
Logistic Regression: Statistics for Goodness-of-FitOct 20, 2022
Statistics in R Series: Deviance, Log-likelihood Ratio, Pseudo R² and AIC/BIC
Linear Regression Analysis – Part 1 - DataScienceCentral.comSep 20, 2022
Who should read this blog: Someone who is new to linear regression. Someone who wants to understand the jargon around Linear Regression Code Repository: https://github.com/DhruvilKarani/Linear-Regression-Experiments Linear regression is generally the first step into anyone’s Data Science journey. When you hear the words Linear and Regression, something like this pops up in your mind: X1, X2,… Read More »Linear Regression Analysis – Part 1
A Guide To Using The Difference-In-Differences Regression ModelJun 21, 2022
We’ll show how to use the DID model to estimate the effect of hurricanes on house prices
A Practical Introduction to 9 Regression AlgorithmsSep 28, 2021
Hands-on tutorial to effectively use different Regression Algorithms
Principal component regressionApr 3, 2021
In statistics, principal component regression (PCR) is a regression analysis technique that is based on principal component analysis (PCA). More specifically, PCR is used for estimating the unknown regression coefficients in a standard linear regression model.
3 Key Pieces of Information About Logistic Regression AlgorithmMar 28, 2021
It is a simple yet very efficient algorithm
Gaussian Process Regression From First PrinciplesMar 16, 2021
Gaussian Process Regression is a remarkably powerful class of machine learning algorithms. Here, we introduce them from first principles.
Categorical cross-entropy and SoftMax regressionFeb 19, 2021
Ever wondered how to implement a simple baseline model for multi-class problems ? Here is one example (code included).
Polynomial Regression: The Only Introduction You’ll NeedAug 11, 2020
A deep-dive into the theory and application behind this Machine Learning algorithm in Python, by a student
What is isotonic regression?Jun 1, 2020
Isotonic regression is a method for obtaining a monotonic fit for 1-dimensional data. Let’s say we have data such that . (We assume no ties among the ‘s for simplicity.) Informally, isotonic regression looks for such that the ‘s approximate … Continue reading →
Deep Dive into Polynomial Regression and Overfitting - DataScienceCentral.comApr 21, 2020
In this article, we show that the issue with polynomial regression is not over-fitting, but numerical precision. Even if done right, numerical precision still remains an insurmountable challenge. We focus here on step-wise polynomial regression, which is supposed to be more stable than the traditional model. In step-wise regression, we estimate one coefficient at a… Read More »Deep Dive into Polynomial Regression and Overfitting
How to use Residual Plots for regression model validation?Mar 9, 2020
Using residual plots to validate your regression models
An Introduction to Support Vector Regression (SVR)Mar 9, 2020
Using Support Vector Machines (SVMs) for Regression
Logistic Regression: A Concise Technical OverviewMar 18, 2018
Interested in learning the concepts behind Logistic Regression (LogR)? Looking for a concise introduction to LogR? This article is for you. Includes a Python implementation and links to an R script as well.
regret
The Psychological Value of RepentanceSep 22, 2025
Every major world religion has a process for moral accounting. That’s something we rarely talk about in secular society.
The science of regrettable decisionsJun 2, 2022
A doctor explains how our brains can trick us into making bad choices — and how to fight back.
regularization
The Concise Guide to Regularization: L1, L2, and Elastic Net The Concise Guide to Regularization: L1, L2, and Elastic NetFeb 26, 2026
Learn when to use L1, L2, and Elastic Net regularization to prevent overfitting in machine learning models. Learn L1, L2, and Elastic Net regularization in simple terms. Prevent overfitting and build better machine learning models that generalize well.
How can you beat XGBoost, CatBoost, and TabNet on tabular data?Oct 14, 2022
Use a cocktail of 13 modern regularization techniques! ()
[1/9]
— Sebastian Raschka (@rasbt)
A Comprehensive Guide of Regularization Techniques in Deep Learning | by EuDec 28, 2021
Understanding how Regularization can be useful to improve the performance of your model
reinforcement-learning
Multimodal reinforcement learning with agentic verifier for AI agents - Microsoft ResearchJan 20, 2026
Argos improves multimodal RL by evaluating whether an agent’s reasoning aligns with what it observes over time. The approach reduces visual hallucinations and produces more reliable, data-efficient agents for real-world applications:
The State of Reinforcement Learning for LLM ReasoningDec 31, 2025
Understanding GRPO and New Insights from Reasoning Model Papers
A Gentle Introduction to Q-LearningAug 13, 2025
Get a gentle introduction to one of the most widely used reinforcement learning algorithms to learn optimal courses of action through trial and error.
AI-Driven Antitrust and Competition Law: Algorithmic Collusion, Self-Learning Pricing Tools, and Legal Challenges in the US and EUAug 10, 2025
AI algorithmic collusion challenges traditional antitrust law. Legal AI frameworks adapt to prosecute self-learning pricing tools
The State of Reinforcement Learning for LLM ReasoningApr 20, 2025
A lot has happened this month, especially with the releases of new flagship models like GPT-4.5 and Llama 4. But you might have noticed that reactions to these releases were relatively muted. Why? One reason could be that GPT-4.5 and Llama 4 remain conventional models, which means they were trained without explicit reinforcement learning for reasoning. However, OpenAI's recent release of the o3 reasoning model demonstrates there is still considerable room for improvement when investing compute strategically, specifically via reinforcement learning methods tailored for reasoning tasks. While reasoning alone isn't a silver bullet, it reliably improves model accuracy and problem-solving capabilities on challenging tasks (so far). And I expect reasoning-focused post-training to become standard practice in future LLM pipelines. So, in this article, let's explore the latest developments in reasoning via reinforcement learning.
What is Q-learning? - DataconomyMar 28, 2025
Q-learning is a model-free reinforcement learning algorithm that enables agents to learn optimal actions through interaction with their environment.
GitHub - MathFoundationRL/Book-Mathematical-Foundation-of-Reinforcement-Learning: This is the homepage of a new book entitled "Mathematical Foundations of Reinforcement Learning."Mar 11, 2025
This is the homepage of a new book entitled "Mathematical Foundations of Reinforcement Learning." - MathFoundationRL/Book-Mathematical-Foundation-of-Reinforcement-Learning
(WIP) A Little Bit of Reinforcement Learning from Human FeedbackFeb 2, 2025
The Reinforcement Learning from Human Feedback Book
Policy Gradient Methods in Reinforcement LearningMay 30, 2024
Teaching a Car to Cross a Mountain using Policy Gradient Methods in Python: A Mathematical Deep Dive into Reinforcement Learning
Reinforcement Learning: Training AI Agents Through Rewards and PenaltiesMay 7, 2024
Reinforcement learning (RL) is a fascinating field of AI focused on training agents to make decisions by interacting with an environment and learning from rewards and penalties. RL differs from supervised learning because it involves doing rather than learning from a static dataset. Let’s delve into the core principles of RL and explore its applications in game playing, robot control, and resource management. Principles of Reinforcement Learning Agent and Environment: In RL, the agent is the learner or decision-maker interacting with the environment. The environment provides context to the agent, affecting its decisions and providing feedback through rewards or penalties.
Edge 291: Reinforcement Learning with Human FeedbackMay 18, 2023
1) Reinforcement Learning with Human Feedback(RLHF) 2) The RLHF paper, 3) The transformer reinforcement learning framework.
How reinforcement learning with human feedback is unlocking the power of geApr 25, 2023
How reinforcement learning with human feedback helps ensure that businesses are building ethical generative AI models.
Ending an Ugly Chapter in Chip DesignApr 6, 2023
Study tries to settle a bitter disagreement over Google’s chip design AI
Why People Skip Music? On Predicting Music Skips using Deep...Feb 9, 2023
Music recommender systems are an integral part of our daily life. Recent research has seen a significant effort around black-box recommender based approaches such as Deep Reinforcement Learning...
6 Reinforcement Learning Algorithms ExplainedNov 28, 2022
Introduction to reinforcement learning terminologies, basics, and concepts (model-free, model-based, online, offline RL)
Hands on introduction to reinforcement learning in PythonJul 18, 2022
One of the biggest barriers to traditional machine learning is that most supervised and unsupervised machine learning algorithms need huge amounts of data to be useful in real world use cases. Even…
Mastering the Game of Stratego with Model-Free Multiagent...Jul 11, 2022
We introduce DeepNash, an autonomous agent capable of learning to play the imperfect information game Stratego from scratch, up to a human expert level. Stratego is one of the few iconic board...
scikit-and-tensorflow-workbooks/ch16-reinforcement-learning.ipynb at master · bjpcjp/scikit-and-tensorflow-workbooksJan 16, 2022
based on "Hands-On Machine Learning with Scikit-Learn & TensorFlow" (O'Reilly, Aurelien Geron) - bjpcjp/scikit-and-tensorflow-workbooks
Reinforcement learning: The next great AI tech moving from the lab to the rMar 30, 2021
Reinforcement learning (RL) is a powerful type of AI technology that can learn strategies to optimally control large, complex systems.
Reinforcement Learning Explained Visually (Part 6): Policy Gradients, step-Jan 15, 2021
A Gentle Guide to the REINFORCE algorithm, in Plain English
N-step Bootstrapping. This is part 7 of the RL tutorial… | by Sagi Shaier |Nov 29, 2020
This is part 7 of the RL tutorial series that will provide an overview of the book “Reinforcement Learning: An Introduction. Second…
Introduction to Various Reinforcement Learning Algorithms - DataScienceCentral.comFeb 19, 2020
This article was written by Steeve Huang. Reinforcement Learning (RL) refers to a kind of Machine Learning method in which the agent receives a delayed reward in the next time step to evaluate its previous action. It was mostly used in games (e.g. Atari, Mario), with performance on par with or even exceeding humans. Recently,… Read More »Introduction to Various Reinforcement Learning Algorithms
Introduction to Various Reinforcement Learning Algorithms. Part I (Q-LearniFeb 19, 2020
Reinforcement Learning (RL) refers to a kind of Machine Learning method in which the agent receives a delayed reward in the next time step…
Deep Learning Research Review Week 2: Reinforcement Learning – Adit DeshpanJun 8, 2018
Engineering at Forward | UCLA CS '19
Deep Reinforcement Learning Demystified (Episode 0)Dec 27, 2017
I recently became interested in learning more about deep reinforcement learning. Recently, big news headlines were made as deep…
rejection
The neuroscience of rejection: The surprising way your brain learns from being left outAug 26, 2025
Rejection stings, but scientists suggest it’s more than just emotional pain. New research indicates our brains treat social slights as learning signals, helping us recalibrate who values us and shaping how we navigate relationships and future connections.
Why The Other Side Won't Listen to ReasonJul 18, 2022
At some point during your first year as a human being, the adults throw a real curveball at you. They expect you to start understanding what right and wrong mean. These lessons come in the form of mysterious reactions that follow certain things you do. After you pull all the books from the bottom shelf onto the floor, quite a
Why the French love to say noJul 18, 2022
Although the default answer to almost every question, request or suggestion is a disheartening ‘non’, a ‘oui’ is often hiding in the context of what is being said.
Negotiate like a pro: how to say ‘No’ to product feature requests… | HackerNoonJun 23, 2022
Imagine you’re a product manager and a co-worker from Marketing comes to you with a feature request. Let’s call her ‘fictitious Annie’. She asks you, “Wouldn’t it be awesome if we built this amazing crypto-blockchain feature into our product?” Well…
The Art of Saying No to Invites When You REALLY Don't Want to Do SomethingJul 26, 2019
Plus how to actually do it—with sample scripts
repair
Why Levi’s is teaching high schoolers how to mend their clothesJan 14, 2026
The denim brand is launching a high school curriculum to teach students how to stitch up tears and replace buttons.
Open Printer Gives Makers a Fully Open Flexible Inkjet PlatformOct 2, 2025
https://player.vimeo.com/video/1117858411 Traditional inkjet printers have become increasingly frustrating for anyone who values flexibility, repairability, or creative experimentation. Locked-down firmware prevents modifications, expensive proprietary cartridges drain budgets, and when something breaks, you're often better off buying a new printer than attempting repairs. This throwaway culture feels particularly wasteful when you consider how much useful technology gets
When Africa’s internet breaks, this ship answers the callSep 21, 2025
Undersea internet cables are critical in today’s hyperconnected world. The crew of the Léon Thévenin maintains one stretch of this global network.
The Real Reasons Your Appliances Die YoungJun 21, 2025
Modern appliances pack in more features and efficiency than ever — but you might need to accept that they won’t last as long as Grandma’s old fridge.
Fix Three Broken ThingsJan 29, 2025
Seneca pointed out that people tend to be reflexively stingy with their money, but almost comically wasteful with their time. There are at least two ways to take this. One is that Seneca thought he used his time better than you and I do, and maybe he did. Another interpretation is that everyday life, for most people, is an untapped
Undersea SurgeonsDec 5, 2024
The cables at the heart of the lightspeed, globe-spanning internet run across the grimy, perilous, inaccessible deeps of the sea, in places no one ever sees or visits – until the cables break.
Fantastic Industrial Design Student Work: "How Long Should Objects Last?"May 13, 2024
This incredibly ambitious and thoroughly-executed project is by Charlie Humble-Thomas, done while pursuing his Masters in the Design Products program at the RCA. Called Conditional Longevity, it asks the question: "How long should objects last?" Seeking the answer, Humble-Thomas tackles an oft-discarded object, the umbrella, and designs three variants: Recyclable,
The invisible seafaring industry that keeps the internet afloatApr 17, 2024
How one crew risked radiation, storms, and currents to save Japan from digital isolation.
30 States Considering ‘Right To Repair’ Reforms in 2024Apr 12, 2024
Oregon recently became the seventh state to pass “right to repair” legislation making it easier, cheaper, and more convenient to repair technology you own. The bill’s passage came…
The other "Phillips" head screwdriver you might not know about - Shop PressJan 29, 2023
Not every Phillips head fastener is a Phillips head fastener. If you don't know about Japanese Industrial Standard, now you'll know.
You Don’t Even Realize These Products Have Lifetime WarrantiesOct 27, 2022
These true lifetime warranties allow you to replace or repair your stuff if it ever breaks or wears out.
The Disappearing Art Of Maintenance | NOEMAOct 1, 2022
The noble but undervalued craft of maintenance could help preserve modernity’s finest achievements, from public transit systems to power grids, and serve as a useful framework for addressing climate change and other pressing planetary constraints.
The magic of invisible mending.Aug 12, 2022
1.4K votes, 26 comments. 8.3M subscribers in the BeAmazed community. I bet you will /r/BeAmazed! A place to find and share amazing things
Bricked Epson Printers Make a Strong Case For User Repairability - SlashdotAug 11, 2022
Epson has gained some scrutiny in recent weeks after the company disabled a printer that was otherwise working fine, leading to accusations of planned obsolescence. Epson knows its printers will stop working without simple maintenance at a predictable point in the future, and it knows that it won't ...
Ask a Repair Shop - Philip YurchukJul 19, 2022
This is the story of how you’re buying your enterprise software the wrong way. Probably your appliances, too. This is an excerpt from my guide, “Enterprise Software Confidential.” This post is also available in Chinese thanks to Xu Zhi. Some years ago, I had a broken GE washer. Pretty sure I knew the culprit, but if […]
Repair Café - Fix Your Broken ItemsJul 5, 2022
Repair Café is here to help you fix your broken items. Join our community of skilled volunteers and get your belongings repaired in a sustainable way.
Repair is as important as innovationJun 23, 2022
Maintenance lacks the glamour of innovation—and is harder to measure
Why it’s so hard for a hospital in Tanzania to fix broken incubatorsApr 6, 2021
Medical device companies have used a range of tactics that have made independent repairs harder, with devastating consequences.
The Shady World of Repair Manuals: Copyrighting for Planned Obsolescence (2Aug 20, 2019
Toshiba has discovered a new way to enforce such planned obsolescence by cutting the repair market off from critical service information. But the cost to society is significant: The e-waste problem is growing; we’re losing thousands of domestic jobs as independent repair shops shut down; and consumers are being forced to replace their hardware much frequently than they should have to.
What Does It Take to Keep a Classic Mainframe Alive?Nov 3, 2018
Follow the saga of the Computer History Museum's IBM 1401
Tractor Hacking: Watch Our Documentary About Farmers Fighting for the Right to RepairFeb 20, 2018
We went to Nebraska to meet the farmers fighting John Deere's repair monopoly.
The Soul of Maintaining a New MachineAug 24, 2008
Books in Progress is what we call a “public drafting tool”: Drafts will be made available for comment from the public, allowing for direct collaboration between author and reader.
reputation
When Brands Wear an Insult as a Badge of Honor | MIT Sloan Management ReviewMar 2, 2026
In some scenarios, brands can increase consumer interest and positive attitudes by embracing insults directed at them.
A Mysterious Network of Revenge Experts Is Quietly Ruining People’s Lives. That’s Entirely the Point.Jul 17, 2025
Nefarious Jobs can arrange everything from breakups to firings to mortifying public shaming. But the agency won’t do it for just anyone.
Status, class, and the crisis of expertiseJun 8, 2025
By celebrating "common sense" over expert authority, populism performs a dramatic status inversion. It gifts uneducated voters the power of knowledge and deflates those who look down on them.
Meet One of the Most Prolific People on YelpJul 21, 2024
What inspires someone to write more than 1,200 Yelp reviews in a year? For Robert Siu, it’s a labor of love.
The Value Of A PromiseApr 6, 2024
When you hear a company like Substack or Canva make a promise, you may get pretty cynical that they’re going to keep it. Honestly, I get that.
streisand effectFeb 3, 2024
Back in December, we wrote about Appin. We were not writing about the reports (of which there have been many) that the organization that started as a sort of cybersecurity training school, but morp…
The Dirty Secrets of a Smear CampaignAug 6, 2023
Rumors destroyed Hazim Nada’s company. Then hackers handed him terabytes of files exposing a covert campaign against him—and the culprit wasn’t a rival but an entire country.
The underground economy of company reviews is well and truly alive. And todAug 5, 2023
Companies spend thousands of dollars to buy fake reviews and get bad ones removed.
How Can Platforms Deal with Toxic Content? Look to Wall StreetJul 24, 2023
Social media has a content problem. It's not the content itself, although the list of toxic material is long. The problem is the sheer volume of content. Instead of trusting in self-regulation, the United States could use its regulation of Wall Street after 2008 as a roadmap for regulating tech.
The Uncomfortable Truth About Why Buying Furniture Is So MiserableMar 28, 2023
Shopping for a simple couch or dresser is driving Americans mad. What does the future hold for one of North Carolina's most important industries?
Forbidden Stories - Keep stories aliveFeb 19, 2023
Forbidden Stories nomine Gaza Project Samer Abu Daqqa’s final reporting trip, amid the ruins of Khan Younis On December 15, 2023, journalist Samer Abu Daqqa was killed by an Israeli strike in Khan Younis. Through testimonies and an open-source investigation, we pieced together the events of his last day. nomine Gaza Project Wild Grass in […]
The Gravediggers: How Eliminalia, a Spanish reputation management firm, buries the truth - Forbidden StoriesFeb 18, 2023
Leaked documents reveal the inner world of Eliminalia, a Spanish reputation management company.
Locations product recommendationsAug 30, 2022
Decentralized Reputation in OpenBazaar | by OpenBazaar | OB1 — Trade Free |Jul 19, 2022
Decentralized reputation is one of the most sought after prizes in the cypherpunk community: to invent a censorship-resistant protocol to make and parse unforgeable trust relationships between…
Decentralized Reputation in OpenBazaar — Part 1Jul 18, 2022
Decentralized reputation is one of the most sought after prizes in the cypherpunk community: to invent a censorship-resistant protocol to create and parse unforgeable trust relationships between…
The World of Black-Ops Reputation Management -- New York Magazine - NymagJul 5, 2022
I watched online as a college classmate went from disgrace to redemption in months. That’s when I found myself deep in the world of black-ops reputation management.
The Power of Reference Customers | Silicon Valley Product GroupJul 5, 2022
Our job in the product organization is to create products that can sustain a business. Make no mistake about it: everything depends on strong products. Without these strong products, our marketing programs require customer acquisition costs that are too high; our sales organization is forced to get creative which drives up cost of sales, lengthens...
Saudi-backed LIV Golf shows how ‘sportswashing’ can backfireJul 4, 2022
Saudi-backed LIV Golf shows how 'sportswashing' can backfire.
16 Tools to Manage Your ReputationJun 28, 2022
Reputation management is essential for any brand. Your company's future may depend on what’s been said about it in posts, comments, reviews, and rankings. Fortunately, there are affordable tools to help. Here is a list of tools to manage your brand’s reputation.
The Dirty Work of Cleaning Online Reputations | The WalrusJan 9, 2022
For a fee, companies will tackle damaging search results. But is the new economy of digital makeovers making things worse?
Why overly kind and moral people can rub you up the wrong wayNov 29, 2021
‘Do-gooders’ are often judged harshly. Why do we resent their acts of altruism or question their motives?
16 Tools to Manage Your ReputationJul 20, 2021
Reputation management is essential for any brand. Your company's future may depend on what’s been said about it in posts, comments, reviews, and rankings. Fortunately, there are affordable tools to help. Here is a list of tools to manage your brand’s reputation.
Your Brand Has Never Been Easier to DestroyJul 17, 2021
Welcome to the wild world of product displacement, in which no brand is safe from "hatejacking" and other threats.
respect
SummaryJul 18, 2022
The Best Management Memo … Ever! - DesignObserverJul 18, 2022
Owen Edwards on the most effective eight words he's ever read.
retail
Why Have Gourmet Grocers Become Social Clubs?Feb 20, 2026
Gourmet grocers are leaning into the experience.
Has Von Maur Figured Out How Department Stores Should Work?Dec 26, 2025
Von Maur has made a different play than several other retailers. Is it working?
The Coffee WarehouseDec 23, 2025
Starbucks ascended as a "third space." Maybe it should run like a 3PL.
Why Small-Footprint Stores are Shaping Big City Retail - Retail Focus Magazine - Retail DesignDec 12, 2025
Large cities move fast and need retail spaces that can keep up with shifting demand. Brands have started to rely on smaller stores that fit busy streets, tight corners, and varied foot traffic. Customers respond well to shops that feel simple, quick, and easy to use. These compact spaces help retailers reach people who want […]
The Perplexing Dominance of Self-CheckoutDec 4, 2025
Many Americans would rather wait for it than interact with a human.
The End of the ‘Generic’ Grocery-Store BrandOct 30, 2025
They’re no longer terrible—in fact, they’re often the draw.
How Sam’s Club became the ‘Netflix of shopping’Oct 17, 2025
CEO Chris Nicholas aims to double sales at the Walmart unit with a focus on driving “disruptive value.”
How Visual Cues Drive Sales: Practical Strategies for RetailersOct 10, 2025
Step into a flagship on Oxford Street or a pop-up in Manchester and the same truth applies: what shoppers see first shapes what they do next. Visual cues, whether bold colour blocking, angled shelving, or lighting accents, are the quiet persuaders of retail. They do more than decorate space. They guide behaviour, build trust, and […]
What If Dynamic Pricing Was Solely Used To Reduce Prices? - RetailWireAug 19, 2025
Dynamic pricing remains a hotly contested concept in retail, particularly grocery. What if the pricing model was deployed solely to the benefit of consumers?
Merchandising Lessons from Top MarketplacesJun 24, 2025
We analyze the home pages of 10 marketplaces to spot common merchandising traits.
A Trade War Winner? The Booming Business of Returned Products.May 15, 2025
As retailers slow down orders for foreign goods because of tariffs, companies that recirculate overstocked or returned items may help fill the gap.
Are Product Images Vital for Brick-and-Mortar Stores?Apr 2, 2025
Regarding marketing and selling products to consumers, product imagery is unquestionably one of the most important selling points. When considering the prevalence and dominance of e-commerce and digital shopping channels, traditional brick-and-mortar retail stores may question where this leaves them. There is an argument to be made regarding the benefits of seeing physical products up […]
Ecommerce and the Secondhand BoomMar 23, 2025
Culture, marketplaces, and economics contribute to consumer demand for used clothing. Merchants can benefit.
The pandemic could have helped Barnes & Noble beat Amazon. That's not what happenedJan 23, 2025
Barnes & Noble had invested significantly in revitalizing its physical stores, and it wasn't ready to make the e-commerce jump.
World in a Box: Cardboard Media and the Geographic ImaginationDec 13, 2024
Cardboard boxes hold a world of meaning — a geography of consumption, disposal, and reuse — that spans from Amazon to the Container Corporation of America.
Returns Are a Headache. More Retailers Are Saying, Just ‘Keep It.’Nov 18, 2024
In a survey, nearly 60 percent of retailers said they had policies that refund customers for items that aren’t financially viable to send back.
Retailers Locked Up Their Products—and Broke Shopping in AmericaAug 4, 2024
CVS, Target and other chains have barricaded everything from toiletries to cleaning supplies. It’s backfired in almost every way.
Erewhon’s SecretsJun 16, 2024
Japanese utopians. Corporate glow-ups. $400 smoothies. The strange history of the world’s most cultish grocery store.
The Bizarre Story of Piggly Wiggly, the First Self-Service Grocery StoreJun 16, 2024
What's in a name?
Florida’s favorite grocery store seeks to be uncomplicated in a complicatedJun 16, 2024
Could you build a company like Publix today?
The Man Who’s Going to Save Your Neighborhood Grocery StoreJun 16, 2024
American food supplies are increasingly channeled through a handful of big companies: Amazon, Walmart, FreshDirect, Blue Apron. What do we lose when local supermarkets go under? A lot -- and Kevin Kelley wants to stop that.
The Napoleon of Your Living RoomJun 8, 2024
Gary Friedman, who runs RH (formerly Restoration Hardware), is out to conquer the world, one luxurious sofa at a time. Next stop, Waterloo?
How Buc-ee’s gas stations became the unlikely champion of EVsJun 7, 2024
At a time when many electric vehicle makers are pulling back, the cult gas station brand is building out its EV charging infrastructure.
Costco is building out an ad business using its shoppers’ dataJun 7, 2024
The third-largest US retailer is planning on rolling out targeted ad capabilities on and off its website.
The Bargain Bin EvolvesJun 2, 2024
Thoughts on modern commerce from going to a bin store. It’s a place where e-commerce returns go to die.
Lawyer reveals why shoppers should avoid self-checkout kiosks at stores andApr 18, 2024
Criminal defense lawyer Carrie Jernigan says that using self-checkouts can be risky and might land you in jail.
The economics of dollar storesApr 10, 2024
A visual explainer of the numbers behind America’s ubiquitous bargain-basement chains.
Why are dollar stores a microcosm for America's shrinkflation problem?Apr 10, 2024
Recent reports have tapped dollar stores as the top offenders of shrinkflation — even beyond grocery stores
How Dollar Stores Became Magnets for Crime and KillingApr 10, 2024
Discount chains are thriving — while fostering violence and neglect in poor communities.
What’s new in visual merchandising?Apr 3, 2024
Retailers have been using visual merchandising and props to draw in customers for as long as shops have been open. Of course, things have moved on a little from the early days of simple displays, with retailers now having a whole arsenal of tools at their disposal to not only bring in more consumers, but […]
The Hottest Restaurant in France Is an All-You-Can-Eat BuffetApr 1, 2024
Les Grands Buffets features a seven-tiered lobster tower, a chocolate fountain, and only what it considers traditional French food. Gourmands are willing to wait months for a table.
Why strip malls are having a revivalJan 29, 2024
As shopping malls across America struggle to attract customers, fill floor space and ultimately stay open, strip malls are apparently seeing a surge in value and popularity.
Back to Basics: How to operate a successful private label brandOct 19, 2023
Proprietary items work best if retailers differentiate them through either cost or innovation and are thoughtful about choosing categories, experts say.
Trader Joe's: The Anti-GrocerAug 20, 2023
The grocer created a cult brand with sales of $16B+ a year by doing the opposite of industry best-practices (from wages to product to ads).
Revolutionary culinary collective Ghetto Gastro is bringing its goods to TaJul 31, 2023
Starting today, you can pick up Ghetto Gastro's new food goods at Target.
Ohio toy store becoming one of the largest in the countryJul 26, 2023
The Toy Department is opening a new location.
Dollar General has racked up $21M in OSHA penalties since 2017. It’s paid $Jul 12, 2023
The retailer discounts the importance of in-store safety, the regulatory agency says, and was named a severe violator this fall.
Should Print Circulars Stay or Go?May 5, 2023
Kroger is following in the footsteps of Giant Eagle, attempting to phase out its print inserts in newspapers and mailed to homes in favor of digital alternatives.
Retail and Shopping: Vintage Photos Show How People Shopped in the 1960s anApr 8, 2023
The 1960s and 1970s were a time of significant change in the world, and the shopping and retail culture of these decades reflected this social transformation.
As Dollar Stores Proliferate, Some Communities Say NoMar 1, 2023
More than 70 proposed dollar stores have been rejected since 2019, a report shows. It’s a small number compared with those that opened but evidence of opposition to the industry.
What Can We Learn from Barnes & Noble's Surprising Turnaround?Jan 1, 2023
Digital platforms are struggling, meanwhile a 136-year-old book retailer is growing again. But why?
GoodwillFinds.com gives shoppers more reasons to feel good about buying secOct 5, 2022
A new recommerce venture offers all of the benefits of buying second hand plus a means to help fund social service programs in local communities, such as job training and youth mentorship. Do you see retailers trying to raise the visibility of their secondhand offerings in light of rising prices?
Why Fast Food Is Racing to Ditch the Dining RoomSep 14, 2022
America traded eating out for ordering ahead during the pandemic—and chains noticed.
The American Mall's Long Goodbye - The Sunday Long ReadSep 12, 2022
As painful as it might be for millennials like myself to admit, malls are now viewed through historians' rear-view mirrors.
Salvage stores achieve sales growth by selling ‘unsellable’ goodsAug 24, 2022
In an inflationary era when customers are increasingly strapped for cash and hunting for discounts, a category of ultra-low-priced grocers that sell the unsellable is growing in popularity. Do you expect mainstream grocers to change their protocols for "unsellable" CPG items if inflation persists?
Vending machines will sell you (almost) anythingAug 19, 2022
Eggs, champagne, underwear, hats for your cat. Here’s why “unattended retail” is taking off — especially with Gen Z.
The hidden makers of Costco’s Kirkland Signature and Trader Joe’s O’s | CNN BusinessAug 14, 2022
Store brands are shrouded in secrecy. Who makes them?
The Very Sincere Economics of Greeting CardsAug 12, 2022
Believe it or not, the biggest demographic driving the greeting card industry is millennials.
This is the last Sears for hundreds of miles. What can it tell us about theAug 1, 2022
The department store in Maryland is sparsely merchandised and low on traffic. Senior Reporter Ben Unglesbee takes a look inside to see how retail has changed since the heyday of malls.
Retail’s ‘Dark Side’: As Inventory Piles Up, Liquidation Warehouses Are Busy (Published 2022)Aug 1, 2022
Consumers are buying fewer discretionary goods and returning more. To clear their shelves, retailers are selling to liquidators at steep discounts.
Where Should We Build a Mall? The Formation of Market Structure and Its Effect on SalesJul 19, 2022
This research by Doug J. Chung, Kyoungwon Seo, and Reo Song bprovides a rigorous, yet practical, framework to understand and evaluate why retail stores join a shopping mall and how their decisions affect mall revenue.
Nobody likes self-checkout. Here’s why it’s everywhere | CNN BusinessJul 18, 2022
Why has this problematic, unloved technology taken over retail?
Payless punks fashionistas by opening a fake luxury store and inviting them to comment on its 'designer' shoesJul 18, 2022
Bargain shoe chain Payless recently took over a Santa Monica retail shop and turned it into Palessi, a luxury store selling their bargain shoes. Then they invited influencers to the…
How Do Dollar Stores Make Money?Jul 18, 2022
In good times and bad, dollar stores seem to thrive. But how are they are able to make so much money selling things so cheaply?
What Makes Shoppers Click? A Lesson in E-Commerce Consumer Psychology (INFOGRAPHIC) - Conversion SciencesJul 6, 2022
Consumers have access to all kinds of buyer information on-line. So what is it that makes them click?
Why Procter & Gamble Is More Disruptive Than YouJul 6, 2022
When people in tech talk about disruption and customer development, the typical picture that pops to mind is a couple of plucky young…
Why Your eCommerce Business Should Have a Pop-Up ShopJul 5, 2022
Ecommerce is booming, and there’s no doubt about that. The numbers speak for themselves. After all, in 2017, ecommerce sales reached $2.3 trillion, and
1980 Sears Spring Summer Catalog, Page 729 - Catalogs & WishbooksJul 4, 2022
1980 Sears Spring Summer Catalog, Page 729
The Outlandish Story Of Ollie’s: A $5 Billion Retail Empire That Sells Nothing Online (But Is Beating Amazon)Jun 23, 2022
Ollie’s is very possibly the only company in America whose brick-and-mortar stores are not just surviving but thriving.
Why You’re Never Really Happy With the Things You Buy AnymoreJun 12, 2022
Constant bargain hunting makes us value all the wrong things about shopping.
5 Surprising Findings About How People Actually Buy Clothes and ShoesMar 16, 2022
Retail has been constantly reinventing itself, and participants race to keep up with what feels like a series of epic shifts in consumer preferences. To get a clearer, more-complete picture, we studied the actual decisions made by 1,500 apparel and footwear shoppers in the United States. Our five most surprising findings: shopping is not yet truly omnichannel; when consumers buy online, they purchase more; online journeys take longer than in-store; brand stores and website generate higher spend than multibrand stores; and, very often, consumers just want to buy new versions of an item they already own.
'The most effective technology is technology that no one sees': Lowe's CEOJan 17, 2022
Coming out of a banner year, Marvin Ellison discusses how initiatives put in place years ago contributed to the retailer's success.
Instant gratification: The neuroscience of impulse buyingDec 25, 2021
Our brains did not evolve to shop on Amazon.
The $2 Billion Mall RatsAug 28, 2021
The inside story of a black sheep hedge fund, a massive bet that shopping malls would crash, and how they proved Wall Street wrong.
A Peek Inside the World's Greatest Record StoreJul 18, 2021
A lovable grouch, obsessed with the magic of American sidewalk harmony, runs the Philadelphia shop
The unique culture of Japanese convenience stores - BBC TravelJul 10, 2021
The true star of the Akutagawa Prize-winning novel Convenience Store Woman is the convenience store itself. But what is it that makes these shops so magical?
Japanese vending machines: the cutting edge of merchandising … and on the bJul 10, 2021
Media reports focusing on Japan's quirky vending machine culture dive into what new items are on offer and the risk they face due to competition from convenience stores.
SKU rationalization helps Bed Bath & Beyond achieve 95% in-stock levelJul 7, 2021
The company expects to improve its inventory management even further as it overhauls its technology stack with a new ERP and forecasting system.
What is a store worth?May 18, 2021
Retailers who want to measure the full value of their physical stores need to consider factors in addition to in-store sales.
How A Retail Chain Without A Website Powered Through The PandemicFeb 18, 2021
Burlington shut down online sales in March right before coronavirus lockdowns. But it's among the discount retailers that have endured the pandemic surprisingly well, even opening new stores.
The Dollar Store Backlash Has BegunNov 29, 2020
The U.S. has added 10,000 of these budget retail outlets since 2001. But some towns and cities are trying to push back.
The Next Phase of the Retail Apocalypse: Stores Reborn as E-Commerce WarehousesAug 10, 2020
As the demand for in-person shopping diminishes, landlords, startups and retailers are converting abandoned stores into online fulfillment centers.
the-high-price-of-dollar-stores | Babson CollegeJun 8, 2020
Learn to build and maintain strong corporate innovation programs via innovation training and innovation infrastructure, with in-person and online innovation courses and advising.
Using K-Means to detect changes in a retail store | Towards Data ScienceJun 1, 2020
Unsupervised techniques to identify changes in the behavior
How Tuesday Morning went bankruptMay 29, 2020
After more than 45 years as an off-pricer, the retailer hit the skids when COVID-19 forced its doors shut and zeroed out revenue. Now it hopes to slim down in Chapter 11.
Complete guide to machine learning and deep learning in retailMay 16, 2020
The stores aren’t dead yet
How ceramics brand East Fork transitioned to a pre-sale only modelMay 15, 2020
2020 was the year East Fork ceramics planned to become profitable. Now, that's likely no longer on the table, but the company is using a new model to better handle its balance sheet: pre-sales. Now, new product lines will all be for sale before they're manufactured, as a way to get capital in as early as possible.
The unsung customer-loyalty hero? The post-purchase experienceMar 27, 2020
See how brands can re-imagine the post-purchase experience to create loyal customers globally.
Retail Analytics: A Novel and Intuitive way of finding Substitutes and CompMar 18, 2020
Retail Analytics: Data Science for Retail
Costco is refreshingly boringFeb 21, 2020
The company's values used to just be considered good business sense. Not anymore.
Why Restoration Hardware Sends Catalogs the Size of a ToddlerFeb 19, 2020
The surprising persistence of the mail-order business
Never Mind the Internet. Here’s What’s Killing Malls.Feb 15, 2020
Yes, the internet has changed the way we shop. But taken together, other factors have caused greater harm to traditional retail stores, an economist says.
Why it only costs $10k to ‘own’ a Chick-fil-A franchiseJan 19, 2020
In the U.S, the majority of fast-food restaurants aren’t owned by the corporation itself, but by franchises who pay for the right to use a brand name. A Chick-fil-a franchise fee is only $10K!
A 2020 guide to smart discountingDec 31, 2019
Polly Wong, managing partner at Belardi Wong, offers tips for crafting customer offers while avoiding discount fatigue and harm to the bottom line.
An Ode to the Video Store Chain, on the Occasion of Blockbuster’s DemiseDec 15, 2019
Ah, video stores, where viewers—and cinephile clerks—got to develop eclectic tastes.
Meet the man keeping America's dead malls aliveSep 8, 2019
Is there hope for our once-beloved social and commercial centers?
4 Online Merchandising Hacks to Increase ProfitsAug 29, 2019
Retailers seek to avoid markdowns and sell out of the season at full margin, but it isn’t easy to predict how much inventory to acquire. In this post, I'll address four online merchandising tactics that balance consumer demand with inventory levels, to maximize profits.
Amazon is a boring retailer — Benedict EvansAug 9, 2019
Amazon is so new, and so dramatic in its speed and scale and aggression, that we can easily forget how many of the things it’s doing are actually very old.
The tiny video store that survived NetflixAug 2, 2019
In the wake of an algorithm-led video store apocalypse, Captain Video stays afloat by offering a rarity: human interaction.
The inherent value of identifiable store trafficMay 29, 2019
Many attributes of the customer journey are very predictable and can be planned for to create and convert inbound store footfall.
Why Dollar Tree has struggled to grow Family DollarMar 7, 2019
Dollar Tree has struggled to grow Family Dollar because of its different business model.
The Aldi effect: how one discount supermarket transformed the way Britain sMar 6, 2019
The long read: When Aldi arrived in Britain, Tesco and Sainsbury’s were sure they had nothing to worry about. Three decades later, they know better
They turn deals into dollars, raiding clearance aisles and reselling it allFeb 12, 2019
How one family plans to make $150,000 this year with retail arbitrage
Best Buy’s Secrets for Thriving in the Amazon Age (Published 2017)Jan 31, 2019
Hubert Joly, Best Buy’s chief executive, has reshaped nearly every aspect of the business. He explains the playbook behind the company’s success.
Business school grads and quants are winning the battle to create the nextSep 14, 2018
These days my Instagram feed feels more like QVC than a social network. And many of these companies are enjoying tremendous success pitching natural deodorants, unique underwear, creative candles, glam glasses, stunning shoes -- all manner of well-crafted microbrands. We’re witnessing a cambrian explosion of new consumer startups.
Forever 21 visual search tool boosted purchase value by 20%Aug 24, 2018
The fast-fashion retailer has debuted, and quickly expanded, an AI-based visual search and navigation tool for its mobile and e-commerce business.
Inside the 20-year decline of Toys R UsJul 1, 2018
Cost cuts, stressed employees, intercompany rivalries, dirty floors, dusty rafters, glitchy IT, fudged metrics: The people who ran the failed toy retailer's stores know what went wrong.
4 Marketing Lessons from Opening a Brick-and-mortar StoreNov 15, 2017
Lessons learned from opening a brick-and-mortar retail store may apply to online merchants, providing insights about promoting products, driving sales,
America’s ‘Retail Apocalypse’ Is Really Just BeginningNov 10, 2017
The spillover from retailer debt will flow far and wide across the economy.
Place authenticity’ is an important overlooked part of life | Psyche IdeasOct 24, 2013
From indie bookshops to artisan cafes, spending time in unique, characterful places can enrich your own sense of self
retire
6 Countries with Incentives to Retire ThereJul 21, 2024
From Greece to Panama, these countries offer tax breaks and steep discounts for foreign retirees.
Hacker NewsMay 13, 2022
Portugal, with its warm climate, plentiful sun and cheap cost of living, has become a destination for Californians.
It’s Never Too Late to Pick Up Your Life and Move to ItalyNov 23, 2021
Holly Herrmann vowed to move to Italy when she was 20. Her dream came true 38 years later.
TravelDec 25, 2020
From slow travel to eco-tourism, we provide tips and inspiration for the environmentally-conscious traveler.
Health Insurance Marketplace Calculator | KFFNov 29, 2020
The Health Insurance Marketplace Calculator, updated with 2024 premium data, provides estimates of health insurance premiums and subsidies for people purchasing insurance on their own in health insurance exchanges (or “Marketplaces”) created by the Affordable Care Act (ACA).
6 Ways to Build a Roth Retirement Nest EggJul 31, 2020
Building up a Roth nest egg can pay off in spades for retirees.
How to Be an Expatriate in 2020Feb 25, 2020
Thanks to leaps in technology, social media and the expanded mobile economy, more people are leaving home for good. Here’s how they do it.
14 Towns Near Asheville, North Carolina, That Are Just as CoolJan 15, 2020
Known for its beautiful setting in the Blue Ridge Mountains, Asheville, North Carolina, is a charming metropolis for those seeking a mid-sized city to call home (its population is just a hair under 94,000). Aside from abundant natural beauty and a temperate climate, Asheville offers a lively arts and music scene, plus diverse cuisines and more breweries per capita than any other U.S. city. (Its unofficial nickname? Beer City USA.
Insurance Quotes | Armadillo Insurance AgencyOct 18, 2019
Armadillo Insurance Agency welcomes Texans around the state and is ready to help them find the insurance coverage that they need. Speak with our agents in Austin, TX to get started with a policy and learn how you can get a quote.
The Best Places to Retire 2018: Should You Stay or Should You Go? | NewRetiJan 12, 2019
The ultimate guide to retirement relocation: 20 best places to retire lists, 6 calculators, and tips to help you find your ideal locale.
386 S Fox Cove Rd, Boone, NC 28607 | realtor.com®Nov 20, 2018
View 27 photos for 386 S Fox Cove Rd, Boone, NC 28607, a 3 bed, 2 bath, 1,678 Sq. Ft. single family home built in 2012 that was last sold on 04/30/2019.
Why a Roth Conversion or Backdoor Roth IRA is a Good Idea Right NowSep 28, 2018
Doing a Roth conversion -- also known as a "backdoor Roth IRA" -- is perhaps even more appealing in 2018 than ever before. Why? Low 2018 tax rates.
returns
Return Merchandise Authorization (RMA) - DataconomyAug 11, 2025
Return Merchandise Authorization (RMA) is a process that allows customers to return unsatisfactory or defective products in e-commerce settings.
A Trade War Winner? The Booming Business of Returned Products.May 15, 2025
As retailers slow down orders for foreign goods because of tariffs, companies that recirculate overstocked or returned items may help fill the gap.
Returns Are a Headache. More Retailers Are Saying, Just ‘Keep It.’Nov 18, 2024
In a survey, nearly 60 percent of retailers said they had policies that refund customers for items that aren’t financially viable to send back.
Target Just Announced Something Brilliant That Amazon Can't Compete WithMar 10, 2023
Make it easy for your customers to do business with you.
The Nasty Logistics of Returning Your Too-Small PantsOct 15, 2021
What happens to the stuff you order online after you send it back?
reviews
Meet One of the Most Prolific People on YelpJul 21, 2024
What inspires someone to write more than 1,200 Yelp reviews in a year? For Robert Siu, it’s a labor of love.
The underground economy of company reviews is well and truly alive. And todAug 5, 2023
Companies spend thousands of dollars to buy fake reviews and get bad ones removed.
Why we usually can't tell when a review is fakeMar 13, 2023
Is that review real or fake? Most of us can't tell
The Real Benefit of Amazon ReviewsJul 5, 2018
I'm a longtime seller on Amazon's marketplace. I also mentor many sellers and help brands to improve their marketplace sales. And I belong to various
riscv
RISC-V In The Datacenter Is No Risky PropositionApr 5, 2023
It was only a matter of time, perhaps, but the skyrocketing costs of designing chips is colliding with the ever-increasing need for performance,
SweRV - An Annotated Deep DiveDec 10, 2021
openhwgroup/cva6: The CORE-V CVA6 is an Application class 6-stage RISC-V CPU capable of booting LinuxDec 2, 2021
The CORE-V CVA6 is an Application class 6-stage RISC-V CPU capable of booting Linux - openhwgroup/cva6
RISC-V from scratch 1: Introduction, toolchain setup, and hello world!Dec 1, 2021
A post that discusses what RISC-V is and why it’s important, teaches readers how to install the GNU RISC-V toolchain, and walks through building and running a simple C program on emulated RISC-V hardware.
RISC-V from scratch 2: Hardware layouts, linker scripts, and C runtimesAug 28, 2019
A post describing how C programs get to the main function. Devicetree layouts, linker scripts, minimal C runtimes, GDB and QEMU, basic RISC-V assembly, and other topics are reviewed along the way.
risk
What AI builders can learn from fraud models that run in 300 millisecondsFeb 9, 2026
Mastercard's Decision Intelligence Pro uses recurrent neural networks to analyze 160 billion yearly transactions in under 50 milliseconds, delivering precise fraud risk scores at 70,000 transactions per second during peak periods.
The grab list: how museums decide what to save in a disasterJan 18, 2026
archived 21 Nov 2025 11:02:52 UTC
Inside the hunt for the most dangerous asteroid everDec 30, 2025
As space rock 2024 YR4 became more likely to hit Earth than anything of its size had ever been before, scientists all over the world mobilized to protect the planet.
The Perils of Algorithmic PricingNov 4, 2025
Hotels and landlords can mitigate legal risks by choosing decentralized revenue management systems that use public data.
Insuring an uninsurable world – the pricing actuary’s Mission Impossible?Jun 26, 2025
In InsuranceERM, David Walker published, yesterday Insuring an uninsurable world – the pricing actuary’s Mission Impossible? “Actuarially, it is entirely possible – and often documented – that the technical premium reflecting pure risk without political intervention, mutualisation or capping varies by a factor of 30 or more, depending on exposure to flood or forest fire … Continue reading Insuring an uninsurable world – the pricing actuary’s Mission Impossible? →
11 Books to Help Navigate RiskDec 17, 2024
Expert strategies for identifying and managing diverse business threats in a complex, global environment.
ARCHIVE: Why Plan B often goes badly — bobsullivan.netJul 24, 2024
ARCHIVE, March 18, 2011 — Engineers used to talk about guarding against the “single point of failure” when designing critical systems like aircraft control systems or nuclear power plants. But rarely does one mistake or event cause a catastrophe. As we’ve seen in Japan, disaster is usually as function of [Keep reading]
Rare things become common at scaleMay 21, 2024
Software doesn't scale through architecture and automation alone. New, more difficult problems appear that didn't exist before, causing new downstream consequences.
How the Possibility Grid Can Help You Evaluate Evidence BetterJul 18, 2023
The possibility grid is a universal tool to draw attention to what is absent. It alerts you to think about rates of success rather than stories of successes.
I’m a Former U.S. Treasury Secretary. Here’s How I Make Hard Decisions.May 15, 2023
The need for a sound decision-making approach in the face of uncertainty is greater now than ever before.
Research: How Risky Behavior SpreadsFeb 20, 2023
How does risky behavior spread? There are two theories: one involving social cues and the other involving trial-and-error. Covid-19 offered a chance to study this phenomenon and found evidence for both. In particular, the authors’ research documents a phenomenon of “risk creep,” where lucky near-misses (not getting Covid) encourage people to take riskier behavior in the future.
Cultures Clash at Salomon Smith Barney — Stories.FinanceFeb 4, 2023
Richard Bookstaber was Salomon Brothers’ chief risk officer in 1997 when the firm was bought by Travelers and merged with Smith Barney, Travelers’ retail brokerage. He describes the resulting clash of cultures.
Understanding Jane Street - by Byrne Hobart - The DiffSep 5, 2022
Plus! Pensions; Customer-Facing; Use Cases; Making a Market; Reflexive Energy Politics; Diff Jobs
Five Lessons from HistoryAug 27, 2022
The most important lessons from history are the takeaways that are so broad they can apply to other fields, other…
The 11 Risks VCs Evaluate by @ttunguzJul 19, 2022
Though the industry is called venture capital, the goal of a VC isn’t to maximize every risk. Instead, we try to understand all the risks a business might face and weigh those risks with the reward - the exit. Here are the major risks that I typically review when a startup pitches. Market timing risk - Is now the right time for the business? It’s often hard to evaluate this risk, but nevertheless, it’s an important consideration.
A 6-Part Tool for Ranking and Assessing RisksJul 18, 2022
Developed during World War II, CARVER is a tool for assessing and ranking threats and opportunities. It can be both offensive and defensive, meaning it can be used for identifying your competitors’ weaknesses and for internal auditing. CARVER can help risk management professional think through an asset’s criticality, accessibility, recoverability, vulnerability, effect, and recognizability. Since it draws on both qualitative and quantitative data, CARVER can be applied in almost any scenario that is analyzed and discussed in an organized, logical way. It can be highly useful if you need to, for example, defend a budget request or a strategic plan to company leadership. Because it helps you articulate an efficient story using numeric values, CARVER can be used to clarify mission objectives — whether on the battlefield or in the boardroom.
SEO How-to, Part 11: Mitigating RiskJul 18, 2022
The risk to organic search performance from altering a website usually comes from changes to content, linking structures, or underlying technology. With careful planning and execution, however, you can mitigate the risk from those changes and increase the likelihood of better rankings. This is the 11th installment in my "SEO How-to" series
Inversion and The Power of Avoiding StupidityJul 18, 2022
Inversion is a powerful mental model to improve your thinking because it helps you identify and remove obstacles to success. Most of us tend to think one way about a problem: forward. Inversion allows us to flip the problem around and think backward.
Moneyball for engineers: What the semiconductor industry can learn from sportsJul 18, 2022
R&D leaders can boost productivity by using advanced analytics to create stronger, faster engineering teams.
“Platform” risk — Remains of the DayJul 5, 2022
Last night, Twitter curtailed Meerkat's access to its graph . I saw lots of discussion on Twitter (I'd say this was ironic but it's just expected) about why and whether Twitter should just compete on its own merits with its recent acquisition Periscope . Some have termed what happened to Meerkat
Risk Discounts and Usage-Based Pricing - OpenViewJun 24, 2022
You’re probably not aware of it, but the price of your product includes a risk discount.
In Russia, Western Planes Are Falling ApartJun 23, 2022
After months of sanctions that have made critical repair parts difficult to access, aircraft operators are running out of options.
Tracking the Fear Index on Wall StreetJun 18, 2022
Plus, with Revlon’s bankruptcy, Wall Street bankers get ready for a wave of distressed situations.
How to Beat the Odds at Judging RiskJun 14, 2022
Fast, clear feedback is crucial to gauging probabilities; for lessons, consult weather forecasters and professional gamblers.
Why Does the Stock Market Go Up Over the Long-Term?May 4, 2022
Why the stock market has to go down sometimes.
The New Risk Management Playbook: Black Swans and the Rise of Scenario Analysis | Toptal®Apr 29, 2022
Standard risk management can’t cope with black swans. Enter: scenario analysis.
How Often Should You Expect a Stock Market Correction?Jan 21, 2022
A short history of stock market corrections.
Trading Algos - 5 Key Metrics and How to Implement Them in PythonJan 15, 2022
Metrics surround us. Whether you're building the next big thing and need to measure customer churn,...
Analysis of the Cosmos 1408 Breakup | by LeoLabs | Nov, 2021 | MediumNov 21, 2021
By now we’ve all heard the news that none of us wanted to hear — a significant breakup occurred in space, and was intentionally performed…
How 12th-century Genoese merchants invented the idea of risk | Psyche IdeasNov 3, 2021
From the docks of 12th-century Genoa to the gambling tables of today, risk is a story that we tell ourselves about the future
The Most Expensive Number in Engineering - An Engineering Self-StudyJun 1, 2021
How to put a price on the limits of knowledge
How the Space Program Created a Culture of Learning From FailureMay 15, 2021
In space, every failure could equal disaster. On Earth, they were priceless gifts.
Respect the Base Rate – Of Dollars And DataFeb 17, 2021
On making optimal decisions, when to expect the average outcome in life, and when not to.
Three WagersFeb 10, 2021
It’s easy to write or talk about an issue without staking anything on its outcome. After all, that’s what casual forecasters do all the time. But having something in play — reputation or money or something else — can make sure that people remember their claims. This can keep us honest. There are obviously a … Continue reading "Three Wagers"
When Every Employee Is a Risk ManagerJan 25, 2021
Risk management needs to be part of the daily lives of all employees up, down, and across an organization. Here’s how the Swiss electricity network achieves that.
Make Boring Plans. You’re probably familiar with the… | by Camille FournierJan 24, 2021
You’re probably familiar with the concept of Choose Boring Technology. If you’re not, I’ll wait for you to read the excellent blog post by…
What Do Wall Street Leaders Think Is the Next Big Risk?Jan 19, 2021
We asked three executives who’ve spent their careers on the cutting edge of the financial industry what they see coming in 5 to 10 years. Here are their answers.
Doing Efficient Risk Management in 5 StepsNov 29, 2020
The five steps below are professional risk management techniques to apply to your projects, proven to be effective. Step 1: Identify the risks
Risk Bow-Tie MethodNov 29, 2020
Bow-Tie is one of the simplest but most helpful risk management tools in the risk management arsenal. And it's highly visual.
Nautilus | Science ConnectedJul 12, 2020
Nautilus is a different kind of science magazine. Our stories take you into the depths of science and spotlight its ripples in our lives and cultures.
Managing risk with the NASA Risk MatrixJul 9, 2020
“It’s not rocket science!” people often say. Well, sometimes, projects can be so complex, making the right decision does feel akin to rocket science. Who better to turn to than one of the biggest space agencies in the world to learn how to manage risk? There are few organisations working on projects as complex as ... Read More
Insurance Risk Pricing — Tweedie Approach - Towards Data ScienceJun 1, 2020
An illustrative guide to estimate the pure premium using Tweedie models in GLMs and Machine Learning
Azure GPUs with Riskfuel’s technology offer 20 million times faster valuation of derivatives | Microsoft Azure BlogMay 15, 2020
We recently collaborated with Riskfuel, a startup developing fast derivatives models based on AI, to measure the performance gained by running a Riskfuel-accelerated model on the Azure ND40rs_v2 Virtual Machine instance powered by NVIDIA GPUs against traditional CPU-driven methods.
‘Resilience bonds’: A secret weapon against catastropheApr 12, 2020
The costs of natural disasters are becoming too much to bear – and it’s driving up premiums no matter where you live. The solution may be a type of insurance never seen before.
veeral-patel/awesome-risk-quantification: A collection of awesome projects,Apr 1, 2020
A collection of awesome projects, blog posts, books, and talks on quantifying risk - veeral-patel/awesome-risk-quantification
How to avoid losses and prune projects proactivelyAug 29, 2019
It’s common for companies to hang on for too long to projects or parts of the business that are underperforming. Two effective techniques can help executives make project investment decisions on when to hold on to an asset and when to let it go.
A ferocious tank battle in the desert explains how to prepare for the unexpApr 2, 2019
The key is flexibility, according to Trump's former National Security Advisor.
Lessons from Robert Smith of Vista Equity PartnersOct 7, 2018
Robert Smith is the Founder, Chairman, and Chief Executive Officer of Vista Equity Partners. A March 2018 Forbes profile described Vista’s performance: “Since the firm’s inception in 2000, Vi…
rituals
Why your brain needs everyday ritualsJan 3, 2026
Rituals serve psychological functions that go far beyond mere habit or tradition.
... and why they're worth billions to businesses.Apr 22, 2025
Brand marketers encourage ritualistic behaviors involving their products to increase customer loyalty and to gain advantage over competitors.
The secret to long-lasting connection? Shared ritualsDec 19, 2024
Michael Norton has spent decades studying why human relationships last. Sharing rituals – from a clink of a glass to Christmas Day traditions – have a powerful positive effect.
The Surprising Psychology That Makes Starbucks’ Pumpkin Spice Latte IrresistibleOct 17, 2024
I have a confession to make - I’m a huge Starbucks fan. I know in some of your eyes that might make me basic or tacky or “very American,” but it’s the truth. I grew up watching Friends and Frasier and both shows made the idea of going to a “coffee shop” seem like an
An Ancient Solution to Modern Problems | Hidden Brain MediaDec 18, 2022
People in every country and culture mark important milestones, such as births, marriages and deaths with intricately choreographed scripts. We even appeal to supernatural forces when to give our favorite sports teams an extra advantage. This week on the show, anthropologist Dimitris Xygalatas explains the psychological power behind the sacred and secular rituals that structure our lives.
The Real Magic of RitualsSep 18, 2022
We might call them superstitions or spells, but they genuinely drum anxiety away.
The Hidden Power of Workplace RitualsAug 19, 2022
Employees rightly expect to be able to bring their feelings — big and small — to work. One important way to provide that support is through rituals. The author defines rituals using two important benchmarks. First, rituals go beyond their practical purpose, moving participants beyond transaction and into meaning. For instance, lighting a candle when the lights go out isn’t a ritual, but turning off the lights and lighting a candle at sundown is. Second, rituals are sorely missed when they’re taken away. The author presents a case study from a company that took a risk in real time and created a successful response to a tragedy, and over time, that response became a ritual. Here’s how they did it, and how leaders can better understand their own rituals — both current ones and those that have yet to be discovered.
India’s Untouchable Queen of the DeadJun 25, 2022
Legions of the sick and elderly go to great lengths to die in India’s holiest city. One mysterious woman guards this fiery entrance to eternal bliss.
Why we need rituals, not routinesJun 21, 2022
How rituals can help you approach basic tasks more mindfully.
How Rituals of Pain Help HealDec 23, 2019
A new study reveals how ceremonies involving physical suffering can be invaluable tools for building resilience and coping skills.
3 Reasons Why Brand-Specific Rituals Are So PowerfulJun 14, 2019
Brand marketers encourage ritualistic behaviors involving their products to increase customer loyalty and to gain advantage over competitors.
rivalry
A Good Rivalry Can Elevate Your BrandAug 22, 2025
New research shows when to mention a direct competitor in your marketing—and when to avoid it.
rnns
What AI builders can learn from fraud models that run in 300 millisecondsFeb 9, 2026
Mastercard's Decision Intelligence Pro uses recurrent neural networks to analyze 160 billion yearly transactions in under 50 milliseconds, delivering precise fraud risk scores at 70,000 transactions per second during peak periods.
Deep Learning Architectures From CNN, RNN, GAN, and Transformers To EncoderApr 15, 2024
Deep learning architectures have revolutionized the field of artificial intelligence, offering innovative solutions for complex problems across various domains, including computer vision, natural language processing, speech recognition, and generative models. This article explores some of the most influential deep learning architectures: Convolutional Neural Networks (CNNs), Recurrent Neural Networks (RNNs), Generative Adversarial Networks (GANs), Transformers, and Encoder-Decoder architectures, highlighting their unique features, applications, and how they compare against each other. Convolutional Neural Networks (CNNs) CNNs are specialized deep neural networks for processing data with a grid-like topology, such as images. A CNN automatically detects the important features without any human supervision.
Understanding and Implementing Recurrent Networks (RNNs) from Scratch in PyMar 11, 2024
Today AI is the most popular topic in various industries and it's also has different develop purpose....
scikit-and-tensorflow-workbooks/ch14-Recurrent-NNs.ipynb at master · bjpcjp/scikit-and-tensorflow-workbooksJan 17, 2022
based on "Hands-On Machine Learning with Scikit-Learn & TensorFlow" (O'Reilly, Aurelien Geron) - bjpcjp/scikit-and-tensorflow-workbooks
The Unreasonable Effectiveness of Recurrent Neural NetworksMay 29, 2021
Musings of a Computer Scientist.
A Gentle Introduction to RNN Unrolling - MachineLearningMastery.comJun 8, 2018
Recurrent neural networks are a type of neural network where the outputs from previous time steps are fed as input to the current time step. This creates a network graph or circuit diagram with cycles, which can make it difficult to understand how information moves through the network. In this post, you will discover the concept of unrolling or unfolding…
kjw0612/awesome-rnn: Recurrent Neural Network - A curated list of resourcesMay 27, 2018
Recurrent Neural Network - A curated list of resources dedicated to RNN - kjw0612/awesome-rnn
robotics
Midea Built A Dr. Strange-inspired Multi-Arm Robot… Humanity Is Absolutely Cooked - Yanko DesignDec 11, 2025
There is a moment in Infinity War where Doctor Strange fans out into a halo of spectral arms and every animator in the room probably high fived. Midea’s new Miro U looks like someone freeze framed that shot, printed it, and walked it down the hall to the robotics lab with the caption “do this,
Robotaxis and SuburbiaNov 18, 2025
Robotaxis are poised to further close the delta between suburbs and the city; the city (and Uber) might never recover.
How Drone Swarms Actually Work and What Industries Should CareNov 4, 2025
True drone swarms can cut costs and boost efficiency in agriculture, logistics and humanitarian demining, but software remains a hurdle.
Top 12 Robotics AI Blogs/NewsWebsites 2025Sep 13, 2025
Discover the top 12 robotics AI blogs and news websites in 2025 featuring research, automation, industry, and innovation
Why It’s So Difficult for Robots to Make Your Nike SneakersApr 23, 2025
Trump sees tariffs as a way to boost U.S. manufacturing, but Nike’s struggle to move production from Asia is a cautionary tale
Underground power lines robotsMar 13, 2025
A Tiny Jumping Robot for Exploring EnceladusMar 3, 2025
Our favorite jumping robot is hoping for a trip to Saturn’s icy moon
How cuddly robots could change dementia careMay 19, 2024
Researchers are using AI and technological advancements to create companion robots
World’s first self-stabilising walking exoskeleton enters stroke rehab triaSep 25, 2023
Wandercraft's pioneering exoskeleton, the Atlante X, has entered a rehabilitation trial in Germany.
Where Are The Robotic Bricklayers? - by Brian Potter - Construction PhysicsAug 4, 2021
When researching construction, you invariably discover that any new or innovative idea has actually been tried over and over again, often stretching back decades.
What Robots Can—and Can’t—Do for the Old and LonelyMay 31, 2021
For elderly Americans, social isolation is especially perilous. Will machine companions fill the void?
Breaking Through the Uncanny ValleyMar 22, 2021
In 1970 robotics professor Masahiro Mori observed, "Bbukimi no tani genshō," which was later translated into "uncanny valley". This refers to an observed phenomenon (first in robots, but also applies to digital recreations) that the more human-like the robot the greater the emotional affinity of people. However, as imitation approaches complete imitation it takes a
Helping robots avoid collisionsNov 3, 2020
The startup Realtime Robotics, co-founded by former MIT postdoc George Konidaris, is helping robots solve the motion planning problem by giving them collision avoidance capabilities.
Open problems in RoboticsAug 19, 2020
Robotics is one of those things the business funny papers regularly wonder about; it seems like consumer robotics is a revolutionary trillion dollar market which is perpetually 20-years away -more…
How robots can adapt to new tasks — quicklyApr 23, 2020
New approach to meta-reinforcement learning minimizes the need for costly interactions with the environment.
Pitt and CMU To Create Autonomous Robotic Trauma Care SystemJun 16, 2019
CMU and the University of Pittsburgh School of Medicine have received funding from the U.S. Department of Defense to create an autonomous trauma care system that fits in a backpack — or, as shown here, a folded stretcher.
Rolls-Royce made miniature robot minions to perform jet-engine inspectionAug 12, 2018
An innovation you'd completely expect from a Hollywood spy flick, Rolls-Royce has designed tiny robots called SWARM that get deployed within their jet engines to run reconnaissance and inspections. A part of RR's IntelligentEngine program, the SWARM get deployed into intricate parts of the engine, giving engineers real-time feedback on performance, wear-tear, etc. The visual
Making useless thingsMay 11, 2018
Simone Giertz, bringer of joy and self-described expert in shitty robots, makes machines that succeed in failing. In her TED talk, Giertz talks about her path from “useless” things to e…
Little Sunfish: The Robot That Could - LongreadsMay 7, 2018
How the best robot, "Little Sunfish," helped Japanese scientists understand the scope of the damage at the Fukushima Daiichi nuclear power plant.
rockets
Another setback for Firefly Aerospace’s beleaguered rocket programSep 30, 2025
“We will share more information on the path forward at a later date.”…
Is Elon Musk’s Starship Doomed?Jul 21, 2025
The future of SpaceX keeps blowing up, and no one knows if he can fix it.
The second launch of New Glenn will aim for MarsJul 5, 2025
The payload likely to spark the most interest is the Blue Moon MK1 lander.
SpinLaunch—yes, the centrifuge rocket company—is making a hard pivot to satellitesApr 4, 2025
“Launch has generally been more of a cost center than a profit center.”…
Firefly is building fast and breaking things on path to a reusable rocketJul 2, 2024
“For our base design, we’re designing around return to launch site propulsive landing.”…
Building a Rocket Engine from Scratch - by Ryan Kuhn - ablMay 4, 2024
How I learned to stop worrying and love the burn.
How To Start A Rocket Engine | Everyday AstronautMar 11, 2023
This article answeres the questions of how to start a rocket engine and takes you on a deep dive into spark plugs, torch ignitors and more.
rspec
A Deep Dive Into RSpec Tests in Ruby on RailsFeb 10, 2024
In the second and final part of our series, we'll explore using RSpec for tests in your Rails application.
Behaviour Driven Development in Ruby with RSpecFeb 10, 2024
RSpec is a library for writing and running tests in Ruby applications. As its landing page states,...
How to stub Feature Flags with RSpecFeb 4, 2023
Are your feature flags states leaking between your test cases? Stub them all to make your test suite more reliable. Here’s how.
Sign Up | LinkedInNov 25, 2022
500 million+ members | Manage your professional identity. Build and engage with your professional network. Access knowledge, insights and opportunities.
Category: RSpec Matchers - The Ruby ToolboxJan 17, 2022
Explore and compare open source Ruby libraries
https://relishapp.com/rspecJan 17, 2022
Sinatra applications with RSpecJan 17, 2022
There are times when the only thing I want to create is a simple API. In the Ruby ecosystem the standard for creating something simple is Sinatra. But...
Testing a Feature with Rails and RSpec: A deep diveDec 25, 2020
One of the things I hear most from developers who are new to Ruby and Rails, or just to testing is, How do you get started? What should I test? The value of testing your code and the confidence it brings is already apparent, but how to make it happen seems to be missing. In this post I address how I approach testing a fairly simple, but non trivial feature from start to finish.
RSpec Matchers Cheat SheetDec 25, 2020
Testing Your Ruby Code With Guard, RSpec & Pry: Part 2Dec 25, 2020
Welcome back! If you missed the first part of our journey so far, then you might want to go back and catch-up first. So far, we've applied a Test-Driven Development process to building our...
My journey from Rspec feature tests to Rails system testsJun 8, 2018
A story of failure getting consistent headless feature tests, to trying again with many different ways to make rspec work, then converting to Rails system tests in Rails 5.1.
rss
Claude Wrote Me a 400-Commit RSS Reader App — LessWrongJan 5, 2026
In the last few weeks, I've been playing around with the newest version of Claude Code, which wrote me a read-it-later service including RSS, email n…
Pay-per-output? AI firms blindsided by beefed up robots.txt instructions.Sep 10, 2025
“Really Simple Licensing” makes it easier for creators to get paid for AI scraping.
How Google helped destroy adoption of RSS feedsFeb 26, 2024
Learn how one of the biggest tech companies played a major role in the reason many people stopped using RSS feeds
Requiem for Google Reader, gone but not forgottenMar 16, 2023
RSS pioneer Dave Winer sees Mastodon as a positive sign
Miniflux - Minimalist and Opinionated Feed ReaderOct 8, 2022
Miniflux is a minimalist and opinionated feed reader
Can I automatically forward my email newsletters from my inbox to the Feedly email?Nov 23, 2021
Yes, you can. The emails will show up in your Feedly. Do you prefer to learn by watching? If so, click here to skip to the video. Set up a forwarding rule in Gm
Managing your product feeds to thrive in a new retail landscapeNov 3, 2020
To succeed in today’s e-commerce environment, companies must craft an online experience that meshes with the brick-and-mortar brand experience in their physical stores.
Build A Static RSS Reader To Fight Your Inner FOMOOct 24, 2007
RSS is a classic technology that fetches content from websites and feeds it to anyone who subscribes to it with a URL. It’s based on XML, and we can use it to consume the feeds in our own apps. Karin Hendrikse demonstrates how to do exactly that with a static site you can use as your personal RSS reader.
rtos
From Baremetal to RTOS: A review of scheduling techniques - Jacob BeningoDec 8, 2021
Transitioning from bare-metal embedded software development to a real-time operating system (RTOS) can be a difficult endeavor. Many developers struggle with the question of whether they should...
OSRTOS - Top Open Source Real-Time Operating Systems (RTOS)Dec 8, 2021
List of open source real-time operating systems. Dive deep into features, comparisons, and use-cases to choose the perfect real-time operating system for your project. Stay updated with the latest in the RTOS world.
ruby
Ruby's Top Exception Classes - Exceptional CreaturesFeb 28, 2026
Exceptional Creatures is Honeybadger.io's documentation of Ruby's exception system, with a twist. Collect them all!
Getting StartedFeb 24, 2026
Start building AI apps in Ruby in 5 minutes. Chat, generate images, create embeddings - all with one gem.
Ruby Is the Best Language for Building AI AppsFeb 24, 2026
A pragmatic, code-first argument for Ruby as the best language to ship AI products in 2026.
What Shoulda Matchers Is Actually Doing For YouJan 23, 2026
Rails model specs full of setup and error-message checks? There’s a reason so many teams replace them using shoulda-matchers. We’ll look at what those expectations are doing, how they make your tests more resilient to changes, and a lot less noisy.
An Introduction to Ruby Parsing with Prism | AppSignal BlogJan 7, 2026
Prism is here to change our lives as Ruby developers: find out how.
rbenv and CLI executablesDec 5, 2025
Meet Gemini, Google’s AI assistant. Get help with writing, planning, brainstorming, and more. Experience the power of generative AI.
Buckle Up, There’s a New Gem Server in Town: gem.coopOct 9, 2025
New modern Ruby infrastructure coming online by the folks who were unceremoniously kicked out of Ruby Central.
rv, a new kind of Ruby management toolAug 27, 2025
For the last ten years or so of working on Bundler, I’ve had a wish rattling around: I want a better dependency manager. It doesn’t just manage your gems, it manages your ruby versions, too. It doesn’t just manage your ruby versions, it installs pre-compiled rubies so you don’t have to wait for ruby to compile from source every time. And more than all of that, it makes it completely trivial to run any script or tool written in ruby, even if that script or tool needs a different ruby than your application does.
The 60-Second Wait: How I Spent Months Solving the Ruby’s Most Annoying Gem Installation ProblemJul 17, 2025
How I eliminated the 60-second rdkafka gem compilation wait that was burning 60 million CPU seconds monthly. From compilation hell to 3-second installs.
Coding agent in 94 lines of RubyMay 15, 2025
“It’s not that hard to build a fully functioning, code-editing agent.” Thorsten Ball
ZJIT has been merged into RubyMay 14, 2025
ZJIT has been merged into upstream Ruby. Learn about its architecture!
kumar91gopi/Algorithms-and-Data-Structures-in-Ruby: Ruby implementation of Algorithms,Data-structures and programming challengesMar 27, 2025
Ruby implementation of Algorithms,Data-structures and programming challenges - kumar91gopi/Algorithms-and-Data-Structures-in-Ruby
Supercharge SQLite with Ruby FunctionsJan 27, 2025
An interesting twist in my recent usage of SQLite was the fact that I noticed my research scripts and the database intertwine more. SQLite is unique in that it really lives in-process, unlike standalone database servers. There is a feature to that which does not get used very frequently, but can be indispensable in some situations. By the way, the talk about the system that made me me to explore SQLite in anger can now be seen here. Normally it is your Ruby (or Python, or Go, or whatever) program which calls SQLite to make it “do stuff”. Most calls will be mapped to a native call like sqlite3_exec() which will do “SQLite things” and return you a result, converted into data structures accessible to your runtime. But there is another possible direction here - SQLite can actually call your code instead.
A simple trick to understand Ruby’s lazy enumeratorJan 16, 2025
Where you get to play with an interactive demo to visualize how Enumerator::Lazy helps avoid unnecessary work
Useful things you can do with Rails consoleJan 10, 2025
Discover essential tips and tricks to boost your productivity with Ruby on Rails console commands and features.
Bundler 2.6: Enhanced Security with Built-in Checksum VerificationJan 5, 2025
Protect your Ruby projects from supply chain attacks with Bundler 2.6's new checksum verification. Learn how to implement this crucial security feature today.
Metaprogramming Ruby 2Nov 25, 2024
Though it looks like magic, it’s still just programming. This book will help you really understand the Rails source code.
Understanding Ruby 3.3 Concurrency: A Comprehensive GuideNov 6, 2024
Let's explore Ruby's concurrency ecosystem, its various concurrency models, and their practical applications in modern software development
The Basics of Rack for Ruby | AppSignal BlogOct 30, 2024
Rack is the foundation for every popular Ruby web framework in existence. In the first part of a three-part series, let's set up a Rack app.
3 Mental Models For Ruby EnumeratorsJun 5, 2024
Get a better understanding of Ruby enumerators by looking at them from 3 different perspectives.
Five Things to Avoid in RubyMay 22, 2024
We'll dive into five common Ruby mistakes and see how we can combat them.
books/Clean Ruby.pdf at main · emrancub/booksApr 9, 2024
I collected several books from different media. You can download any book from here and enjoy your reading. Happy reading! - emrancub/books
How to approach a reduce problemMar 16, 2024
Code written with reduce can be intimidating. This 2-step approach can help.
16 Best Ruby Frameworks For Web Development [2024]Mar 12, 2024
Ruby is a programming language that has been accepted with open arms since 1995, and thanks to its...
Ruby's Exceptional CreaturesFeb 29, 2024
Exceptional Creatures is Honeybadger.io's documentation of Ruby's exception system, with a twist. Collect them all!
A Deep Dive Into RSpec Tests in Ruby on RailsFeb 10, 2024
In the second and final part of our series, we'll explore using RSpec for tests in your Rails application.
Behaviour Driven Development in Ruby with RSpecFeb 10, 2024
RSpec is a library for writing and running tests in Ruby applications. As its landing page states,...
Unveiling the Power of Ruby Generators: A Comprehensive Exploration with ExJan 10, 2024
Ruby, renowned for its dynamic and object-oriented nature, boasts an array of features that elevate...
Unveiling the big leap in Ruby 3.3's IRBDec 29, 2023
In this blog post, we will delve into the major enhancements introduced in Ruby 3.3’s IRB, as well as what’s currently planned for the next year.
Performance Guide to create 100k records in less than 3s using Ruby on RailOct 28, 2023
When working on large-scale projects, quickly creating test data or dummy data can be crucial. In...
Performance impact of the memoization idiom on modern RubyOct 26, 2023
Ruby 3.2 saw the introduction of object shapes which speedup instance variables access in most cases, but can be slower in some pathological cases.
IntroductionOct 20, 2023
HTTP Status Codes: An In-Depth Explanation with Ruby ExamplesOct 14, 2023
HTTP (Hypertext Transfer Protocol) is the foundation of data communication on the World Wide Web....
Client-side feature flagsSep 25, 2023
Did you know you can use Flipper to create and manage feature flags for your client-side app, even though Flipper is a Ruby gem?
Mastering Common and Advanced Ruby Design Patterns: A Comprehensive Guide wSep 25, 2023
Ruby is a dynamic and flexible programming language known for its elegant syntax and powerful...
Easy introduction to Connection Pool in rubySep 23, 2023
As Rails developers, we often encounter performance issues in different parts of our applications. But establishing connections to external services is usually the place we overlook. Let me introduce the concept of connection pooling and show you an example of easy, performant connections to RabbitMQ.
Machine Learning Using Decision Trees in RubySep 17, 2023
In the era of hyper-sophisticated machine learning models like ChatGPT, it is surprising how effective the classic decision tree model remains, especially when used in conjunction with other techniques, such as bagging, boosting and random forests. In this blog post we demonstrate how to build an effective decision tree model, and train this model on some sample data.
Easy introduction to Connection Pool in ruby by Michał Łęcicki - VisualitySep 5, 2023
As Rails developers, we often encounter performance issues in different parts of our applications. But establishing connections to external services is usually the place we overlook. Let me introduce the concept of connection pooling and show you an example of easy, performant connections to RabbitMQ.
12 Ruby Gems to make your Ruby coding smootherAug 22, 2023
How many Ruby gems do you have currently installed? With around 50 new gems released daily, it is...
Ruby's Hash is a Swiss-Army KnifeAug 21, 2023
This article shows the obscure but useful capabilities of Hash, a simple but equally powerful data structure in Ruby.
Advanced Usages of Devise for RailsAug 11, 2023
In part one of this series, we introduced Devise using an example app to explore modules, helpers,...
Exploring Genetic Algorithms with RubyJul 26, 2023
Introduction: In the quest to solve complex optimization problems and simulate natural evolution,...
Ruby Hacking GuideJun 24, 2023
How to Use Sinatra to Build a Ruby ApplicationJun 7, 2023
In this article, we'll introduce Ruby on Rails' lesser-known but powerful cousin Sinatra. We'll use...
Manage Your Ruby Logs Like a ProMay 19, 2023
Discover the ins and outs of logging in Ruby, including how to customize your logs and use logging libraries like Lograge.
Ruby Pattern Matching: An Advanced GuideMay 6, 2023
Pattern matching is a powerful technique in programming that allows you to match data structures and...
How to Get Started with Logging in Ruby | Better Stack CommunityMay 4, 2023
Learn how to start logging with Ruby and go from basics to best practices in no time.
How to Load Code in Ruby | AppSignal BlogApr 19, 2023
Let's look into three options for code loading in Ruby: using load, require, and autoload.
Add Authorization to a Sinatra API using Auth0Apr 17, 2023
Learn how to implement a Sinatra API and protect its endpoints using Auth0
Diving into Custom Exceptions in RubyMar 29, 2023
Discover how to customize exceptions in Ruby and highlight exceptions in your logs.
44 Top Ruby Gems: Must-have for Web DevelopmentMar 26, 2023
Discover the Best Ruby gems to enhance your project and make development easier. From testing to deployment, these gems will streamline your workflow.
Web Scraping in Ruby: Complete Guide 2023 - ZenRowsMar 17, 2023
Get started with web scraping in Ruby using this step-by-step tutorial! Learn how to scrape a site with Nokogiri and RSelenium libraries.
Ruby Method Parameters and Arguments | AlchemistsMar 14, 2023
A collective devoted to the craft of software engineering where expertise is transmuted into joy.
Advanced Techniques for Working with Ruby Collections ?Feb 25, 2023
Working with collections, such as arrays and hashes, is a fundamental part of programming in Ruby....
Nested lists in yaml - Stack OverflowFeb 25, 2023
How can I create nested lists in YAML? I want to get:
{"Hello": ["as", ["http://", ["cat"]]]}
Here's my YAML that doesn't work (with pyYaml):
Hello:
- &
Integrating Ruby with OpenAI: A Beginner’s GuideFeb 4, 2023
As a Ruby developer, you can immediately incorporate AI into your applications through the use of the OpenAI API. Our beginners guide will take you through step by step.
How to stub Feature Flags with RSpecFeb 4, 2023
Are your feature flags states leaking between your test cases? Stub them all to make your test suite more reliable. Here’s how.
vifreefly/kimuraframework: Kimurai is a modern web scraping framework writtJan 31, 2023
Kimurai is a modern web scraping framework written in Ruby which works out of box with Headless Chromium/Firefox, PhantomJS, or simple HTTP requests and allows to scrape and interact with JavaScrip...
Web Scraping with Ruby | ScrapingBeeJan 30, 2023
Learn web scraping with Ruby with this step-by-step tutorial. We will see the different ways to scrape the web in Ruby through lots of example with gems like Nokogiri, Kimurai and HTTParty.
An Overview Of Ruby on Rails 7.1 Features. Part III.Jan 24, 2023
Leaked OnlyFans photos and video of manny.codes
Install Ruby on Mac. The Definitive Guide for 2023.Jan 16, 2023
This guide goes over the various ways to install Ruby on Mac, and the pros and cons of each one.
How to Generate GPT Output in JSON Format for Ruby developersJan 14, 2023
I was playing around with OpenAI (GPT-3) today, building a reasonably complicated email parser for a...
Ruby One-Liners GuideJan 13, 2023
Example based guide for text processing with Ruby from the command line
To Thread or Not to Thread: An In-Depth Look at Ruby’s Execution Models - ShopifyJan 9, 2023
An in-depth look at threads vs processes in Ruby web applications, and when you should use each.
How to Write a Custom Rake Task | Sean C DavisJan 8, 2023
Rake provides a great way to automate repetitive or complex tasks. Here's a look at creating a simple and a more complex task.
Ruby 3.2 introduces Enumerator::productDec 22, 2022
Learn about the Enumerator#product method introduced in Ruby 3.2.
Hacker NewsDec 21, 2022
Read more on the Doximity Technology Blog about how our engineers and data scientists are building the largest online network for clinicians.
A Guide to Memoization in RubyDec 21, 2022
Discover the benefits of memoization for your Ruby application, common mistakes to avoid, and when not to memoize.
Ruby multithreaded crawlerDec 8, 2022
A Ruby multithreaded crawler is a type of web crawler that is built using the Ruby programming...
Build Your Own Web Server With Ruby - RubyGuidesNov 8, 2022
Have you ever built your own web server with Ruby? We already have many servers, like: Puma Thin Unicorn But I think this is a great learning exercise
Making a DNS query in Ruby from scratchNov 7, 2022
JIT Compilers for Ruby and Rails: An OverviewSep 8, 2022
Find out about the different JIT compilers for Ruby — YJIT, MJIT, and TenderJIT — and their benefits.
An Introduction to Ractors in RubySep 5, 2022
Discover when and why you should use ractors, and build a ractor in Ruby.
The difference between procs and lambdas in RubyJul 29, 2022
Note: before starting this post, I recommend reading my other posts about procs and closures for background. Overview What’s the difference between a proc and a lambda? Lambdas actually are procs. Lambdas are just a special kind of proc and they behave a little bit differently from regular procs. In this post we’ll discuss the […]
How to Track Down Memory Leaks in RubyJul 27, 2022
Let's explore how Ruby manages memory, garbage collection, and how to uncover a leak, in the first of this two-part series on memory leaks in Ruby.
codecrafters-io/build-your-own-x: Master programming by recreating your favorite technologies from scratch.Jul 20, 2022
Master programming by recreating your favorite technologies from scratch. - codecrafters-io/build-your-own-x
We need to talk about fixturesJul 5, 2022
How the principle of connascence will help us to move away from fixtures.
iseq.c: Use ntz_intptr for faster bitmap scan by casperisfine · Pull Request #6059 · ruby/rubyJul 5, 2022
Ref: #6053
Ruby Style GuideJul 5, 2022
Rubocop - 4 ways to reduce your frustration!Jul 5, 2022
Rubocop recently managed to be listed as one of the most loved and most frustrating ruby gems which is quite an achievement. In this episode, I'll show you how to keep it only in the loved section.
Ruby 3 adds Scheduler Interface for FibersJun 23, 2022
Ruby adds Fiber SchedulerInterface to support non-blocking fiber. Splitting long operations into fiber hooks and Scheduler will manage it for us.
State Machines in Ruby: An IntroductionJun 22, 2022
Let's build a simple state machine in Ruby and use the state machines gem.
ruby/racc: Racc is an LALR(1) parser generator. It is written in Ruby itself, and generates ruby programs.Jun 21, 2022
Racc is an LALR(1) parser generator. It is written in Ruby itself, and generates ruby programs. - ruby/racc
Understading why attr_accessor in Ruby is faster than a regular methodJun 14, 2022
A comparison of how different attr_accessor from custom getters in setters in terms of implementation and performance
Introduction to Collections in Jekyll | DigitalOceanJun 11, 2022
A quick overview of using collections in Jekyll to create powerful taxonomies around your content.
Collections in JekyllJun 11, 2022
By Farrel Burns Brought to you by CloudCannon, the Git-based CMS for Jekyll. What you’ll...
Add Feature Flags in Ruby on Rails with Flipper | AppSignal BlogJun 8, 2022
Find out how feature flags function in principle and get started with feature flags using the Flipper gem.
The 4 days Guide to RakeJun 5, 2022
Blog and website of Greg Molnar, Ruby Developer, Rails Developer, IT Security Consultant, Penetration Tester, Ethical hacker. Opinions expressed are mine.
An Introduction to Polymorphism in Ruby on Rails | AppSignal BlogJun 4, 2022
Learn how you can implement polymorphism in your Rails application for cleaner code.
Ruby cryptographic gemsJun 4, 2022
I'm not an expert in cryptography — I'm just a developer, and most developers are in this same boat...
Markdown Tutorial Using Rails appMay 30, 2022
In this markdown tutorial using rails app learn a step-by-step process to add Markdown support to the Rails app using Redcarpet and Coderay gems.
Ruby Web ScrapingMay 28, 2022
86K subscribers in the ruby community. Celebrate the weird and wonderful Ruby programming language with us!
How To Install Ruby on Rails with rbenv on Ubuntu 20.04 | DigitalOceanMay 25, 2022
Ruby on Rails is one of the most popular application stacks for developers looking to create sites and web apps. Using rbenv will provide you with a solid en…
Bootstrapping with Ruby on Rails Generators and Templates | AppSignal BlogMay 13, 2022
Let's explore the basics of Rails generators and templates, then examine how to customize your Rails app with templates.
Active Record Tricks | Drifting RubyMay 5, 2022
In this episode, we look at tips and tricks from read only attributes, inserting and upserting (update or insert) records, toggling booleans, and single table inheritance.
Formatting Ruby: Part 1Feb 18, 2022
This post is part of a series about how ruby-syntax-tree/syntax_tree works under the hood.
The Best Ruby HTTP clients for 2021 | ScrapingBeeFeb 18, 2022
This article will discuss the best HTTP clients in Ruby. Faraday, HTTParty, Rest-client...it can be hard to choose the best one.
markets/awesome-ruby: 💎 A collection of awesome Ruby libraries, tools, frameworks and softwareJan 29, 2022
💎 A collection of awesome Ruby libraries, tools, frameworks and software - markets/awesome-ruby
well-grounded-rubyist-book-notes/ch16-functional-programming.ipynb at master · bjpcjp/well-grounded-rubyist-book-notesJan 29, 2022
My working notes of "The Well-Grounded Rubyist" (Black & Leo), implemented in Jupyter Lab (Ruby kernel 2.7.0) - bjpcjp/well-grounded-rubyist-book-notes
well-grounded-rubyist-book-notes/ch05-self.ipynb at master · bjpcjp/well-grounded-rubyist-book-notesJan 29, 2022
My working notes of "The Well-Grounded Rubyist" (Black & Leo), implemented in Jupyter Lab (Ruby kernel 2.7.0) - bjpcjp/well-grounded-rubyist-book-notes
12 ways to call a method in RubyJan 23, 2022
A fun little experiment where I try to call the same method in Ruby in as many ways as possible
sinatra/sinatra-recipes: Community contributed recipes and techniquesJan 17, 2022
Community contributed recipes and techniques.
Understanding Rails secrets/credentials - Code with JasonJan 17, 2022
What this feature is for The credentials feature is a way of storing secrets that you don’t want to keep in plaintext, like AWS credentials for example. (In fact, the one and only thing I keep in my main Rails project’s credentials are my Active Storage AWS credentials.) Why the credentials feature is difficult to […]
leah blogs: Introducing RackJan 17, 2022
Show relevant chunks of text with Rails excerpt helperJan 17, 2022
The Rails helper excerpt can extract a chunk of text that matches a certain phrase, no matter where in the string it is.
3 Simple steps to setup Jekyll Categories and TagsJan 17, 2022
Why Jekyll Categories or Tags? Imagine you have a blog where you discuss very different things all together. Many bloggers post their personal experiences along with some professional posts. Curating information is very important to make users browse through your website with ease. What if New York Times had no categories like Politics, Business, Tech etc..? How hard would it be to track what happened to last night’s football game? There should be a Sports category to make readers’ life easy.
well-grounded-rubyist-book-notes/ch14-callables-runnables.ipynb at master · bjpcjp/well-grounded-rubyist-book-notesJan 17, 2022
My working notes of "The Well-Grounded Rubyist" (Black & Leo), implemented in Jupyter Lab (Ruby kernel 2.7.0) - bjpcjp/well-grounded-rubyist-book-notes
Exploring Metaprogramming in Ruby :: the halcyon blogJan 17, 2022
Metaprogramming is an integral part of Ruby, more so than in any other language. This article explains the hows and whys.
Sinatra applications with RSpecJan 17, 2022
There are times when the only thing I want to create is a simple API. In the Ruby ecosystem the standard for creating something simple is Sinatra. But...
Ruby 3.1.0 ReleasedDec 27, 2021
How map(&:some_method) works - Code with JasonDec 20, 2021
The map method’s shorthand syntax One of the most common uses of map in Ruby is to take an object and call some method on the object, like this. [1, 2, 3].map { |number| number.to_s } To save us from redundancy, Ruby has a shorthand version which is functionally equivalent to the above. [1, 2, […]
Jekyll • Simple, blog-aware, static sitesDec 17, 2021
Transform your plain text into static websites and blogs
Adding Cloudant search to your static Jekyll blogDec 15, 2021
Making a static HTML website have dynamic search
jenofdoom/jekyll-bootstrap-4: A starter kit for jekyll + bootstrap 4Dec 15, 2021
A starter kit for jekyll + bootstrap 4.
A Guide to Creating and Hosting a Personal Website on GitHub | Jonathan McGlone | Librarian, Product Designer, User Researcher, Digital Publisher, Accessibility Specialist, Music Enthusiast, Web Noodler.Dec 15, 2021
A beginner's guide to creating a personal website and blog using Jekyll and hosting it for free using GitHub Pages.
A Fast, Concurrent Web Server for Ruby & Rack - PumaDec 12, 2021
Puma - A Fast, Concurrent Web Server for Ruby & Rack.
Jekyll Tags on Github Pages · Long QianNov 29, 2021
Github page does not allow customized plugins, and jekyll-tagging is not one of the supported GEMs of Github pages. It needs some effort to add tag support your Jekyll blog hosted by Github page. This blog shows you how to do this step by step.
Show HN: Ruby One-Liners CookbookOct 15, 2021
Example based guide for text processing with Ruby from the command line
ankane/transformers-ruby: State-of-the-art transformers for RubyAug 24, 2021
State-of-the-art transformers for Ruby.
ruby - Rbenv and Rails mismatches - Stack OverflowJul 25, 2021
Good morning everyone,
I've installed Ruby 3.0.2 via rbenv in order to test-drive a Rails 6.0 app. It seems like rbenv's Rails shiv is not working properly.
$ rbenv install 3.0.2
Downloading ruby-3...
Understanding How Rbenv, RubyGems And Bundler Work TogetherJul 7, 2021
Rbenv, RubyGems, and Bundler work together to give us a lot of control over our code's environment. If you know how they work, you'll be better prepared to troubleshoot any problems you encounter. In this article, Ol...
3 ways to send emails with only few lines of code and Gmail - Ruby - Part 2Jun 21, 2021
We will see how to send a simple email with the help of three different programming languages:...
New Machine Learning Gems for RubyJun 20, 2021
In August, I set out to improve the machine learning ecosystem for Ruby and wasn’t sure where it would go. Over the next 5 months, I ended up...
Saving/Retrieving Data With a YAML file in Ruby: The Basics | by Kristen FlMay 28, 2021
Writing and reading yaml files can be very simple. Here are a few examples.
Rails 6 — Custom Seed Files. While building applications in Rails… | by ZacMay 26, 2021
While building applications in Rails it’s very common to have to add a new model after you’ve already set up a DB and added some seed data…
How to Build a Web App with and without Rails Libraries — Development (2021May 1, 2021
Ruby on Rails is a web framework that contains many libraries you’d need to create and deploy a successful web application. We often take for granted the ability to run rails new to create a fully functional web application with tons of built-in features.
Ruby 3.0.1 ReleasedApr 9, 2021
Kointoto: Situs Judi Togel Online & Slot Gacor MaxwinMar 3, 2021
Kointoto situs judi togel online, slot gacor, dan live casino idnlive terbaik di Indonesia. 1 ID untuk semua permainan dengan deposit minimal Rp 10rb.
The Power of Scripting: A Deploy Script | Learn Enough News & BlogFeb 23, 2021
News & blog about Learn Enough (including the Ruby on Rails Tutorial)
Hacker NewsFeb 11, 2021
Ruby 3.0 is a lot faster than Ruby 2.0, with both incremental tuning and interesting new disruptive changes. 'Three times faster' is hard to define...
rgl | RubyGems.org | your community gem hostFeb 3, 2021
Creating a Ruby DSL: A Metaprogramming Tutorial | ToptalJan 22, 2021
Leverage metaprogramming for better Ruby with this DSL tutorial.
How Fast Is Ruby 3 on Rails? - FastRuby.io | Rails Upgrade ServiceJan 21, 2021
An article by Noah Gibbs about Ruby 3's performance for a Rails application. Ruby 3.0.0-preview1 was a tiny bit slower than 2.7. The release 3.0 is...
Practical Graph Theory in RubyDec 26, 2020
This is the next installment in the "Practical Computer Science" series, where you will learn how to apply classic computer science concepts to solve real problems using Ruby. Today we are going to talk about Graph
Climbing Steep hills, or adopting Ruby 3 types with RBS—Martian Chronicles, Evil Martians’ team blogDec 26, 2020
A deep dive into adding Ruby Type Signatures to existing projects and using Steep to perform type checking.
Testing a Feature with Rails and RSpec: A deep diveDec 25, 2020
One of the things I hear most from developers who are new to Ruby and Rails, or just to testing is, How do you get started? What should I test? The value of testing your code and the confidence it brings is already apparent, but how to make it happen seems to be missing. In this post I address how I approach testing a fairly simple, but non trivial feature from start to finish.
HomepageDec 25, 2020
Become A Ruby Programming Expert With RubyGuides This library of 150+ in-depth guides explains complex programming topics in plain English so you can become a happy & well-paid Ruby developer! Discover all the secrets that separate beginner developers
The Rubyist's Guide to MemoizationDec 25, 2020
This article covers one of my favorite techniques for improving performance: memoization. It's a source of easy little performance wins that eventually add up and only occasionally reduce your application to a heap of...
Ruby one-linersDec 25, 2020
I am Benoit Hamelin. I work with the excellent hackers at Arcadia G.P., where I develop software,...
Rake 201Dec 25, 2020
In this second article about Rake, we dive a little deeper and cover slightly advanced topics like file tasks, rules, multitasks and more that will improve your Rake chops...
custom rake task in rails | codedecoderDec 25, 2020
rake command is explained in this post. rails provide a number of inbuilt tasks, but you can create your own task also as explained here. => Understanding the basics : When you create any new ra…
RSpec Matchers Cheat SheetDec 25, 2020
Testing Your Ruby Code With Guard, RSpec & Pry: Part 2Dec 25, 2020
Welcome back! If you missed the first part of our journey so far, then you might want to go back and catch-up first. So far, we've applied a Test-Driven Development process to building our...
A Beginner's Guide to Exceptions in RubyDec 25, 2020
The other day I was searching for an introduction to Ruby exceptions written for beginners - people who know basic Ruby syntax but aren't really sure what an exception is or why it's useful. I couldn't find one, so I ...
Ruby ExceptionsDec 25, 2020
Ruby 3.0.0 ReleasedDec 25, 2020
What Makes Ruby Beautiful: MetaprogrammingDec 10, 2020
Ruby is one of the underrated programming languages among modern developers. It has become popular wi...
6 Things to Do When Inheriting Legacy Rails Apps | NextLink LabsDec 1, 2020
Becoming the owner of a legacy Rails app can mean inheriting a project bogged down with tech debt, bugs, and sketchy documentation. Here's how to survive.
Show HN: A list of 470 static analysis toolsNov 29, 2020
Find static code analysis tools and linters for Java, JavaScript, PHP, Python, Ruby, C/C++, C#, Go, Swift, and more. All tools and linters are peer-reviewed by fellow developers to select the best tools available. Avoid bugs in production, outages on weekends, and angry customers.
GitHub - SciRuby/iruby: Official gem repository: Ruby kernel for Jupyter/IPNov 29, 2020
Official gem repository: Ruby kernel for Jupyter/IPython Notebook - SciRuby/iruby
Pat ShaughnessyNov 27, 2020
jekyll 3.8.3 | Error: uninitialized constant FFI::Platform::CPU · Issue #77Nov 22, 2020
My Environment Software Version(s) Operating System Ubuntu 19.10 jekyll Latest github-pages No Current Behavior I was trying to run sudo apt install jekyll jekyll new my-awesome-site cd my-awesome-...
Ruby's Proposed STMNov 2, 2020
Ruby 3 - Anonymous Struct - DEV Community ????Sep 2, 2020
In our series on new Ruby 3.0 features we start with the anonymous Struct, ${}.
heartcombo/devise: Flexible authentication solution for Rails with Warden.Aug 14, 2020
Flexible authentication solution for Rails with Warden. - heartcombo/devise
The State of Ruby 3 Typing | Square Corner BlogJul 30, 2020
Introducing RBS, Ruby’s new type signature language
17 Useful Ruby String Methods to Clean and Format Your DataJul 21, 2020
Every line of code you don’t write is a line of code you don’t have to maintain
A curated list with Ruby gems | LibHuntJun 24, 2020
137 categories including 1319 gems and resources.
5 Ways to Splat in RubyJun 1, 2020
We take a look at 5 different ways to leverage Ruby's splat (*) operator.
Choosing between Ruby environment managers: rbenv vs. RVMMay 16, 2020
RVM vs. rbenv: why RVM is bad and rbenv is good. Easy setup instructions for MacOS X.
How to Install Ruby on Ubuntu 18.04 | LinuxizeMay 14, 2020
Ruby is one of the most popular languages today. It has an elegant syntax and it is the language behind the powerful Ruby on Rails framework. In this tutorial we will show you three different ways to install Ruby on Ubuntu 18.04 system.
SinatraMay 10, 2020
Lies, Damned Lies, and Averages: Perc50, Perc95 explained for ProgrammersMar 19, 2020
I got a customer ticket the other day that said they weren’t worried about response time because “New Relic is showing our average response time to be sub 20...
Understanding Ruby's block/proc parsingMar 9, 2020
In Ruby, methods can take a single block as an argument, which can be specified explicitly in the met...
Opening The Ruby Concurrency ToolboxFeb 19, 2020
As a Ruby developer you probably use tools like Sidekiq that rely on concurrency. But would you know how to *build* your own sidekiq, or add concurrency to an existing app? This article will open Ruby's concurrency to...
Build a WhatsApp chatbot with Ruby, Sinatra and TwilioFeb 19, 2020
Find out how easy it is to build a chatbot for WhatsApp using the Twilio API for WhatsApp and the Ruby web framework Sinatra.
Distance calculation in Ruby using RGeoDec 23, 2019
22K subscribers in the rubyonrails community. Everything RoR! Ruby on Rails, often simply Rails, is an open source web application framework which…
Practical Linked List in RubyDec 23, 2019
This is the 3rd entry in the "Practical Computer Science in Ruby" series! Today we are going to talk about linked list. So what's a linked list? Like the name says, a linked list is a way
Ruby Literals You May Not Know - citizen428.netDec 23, 2019
In programming the term “literal” refers to notations for representing certain values in code. Almost all languages offer them for atomic types such as strings or various number formats, some also for compound types like arrays, records or hashes. Additionally lambda expressions are a literal representation of functions. Ruby has a rich set of literals for various use cases and in this post we’re going to explore some of the lesser known ones.
Getting output of system() calls in Ruby - Stack OverflowDec 5, 2019
If I call a command using Kernel#system in Ruby, how do I get its output?
system("ls")
Building a Slack App using Ruby and SinatraAug 30, 2019
Photo by Morre Christophe on Unsplash My team at Runtime Revolution uses an in-house app for team ma...
Awesome RubyMar 21, 2019
Your go-to Ruby Toolbox. A collection of awesome Ruby gems, tools, frameworks and software. 1319 projects organized into 137 categories.
Ruby’s hidden gems: SorbetSep 24, 2018
Let's see how Sorbet addresses the challenges of dynamic typing in Ruby.
GraphQL - WelcomeAug 31, 2018
Using Codeship for Ruby Application DeploymentsJun 8, 2018
In the first part of this series, I walked through developing a simple todo API using Ruby on Rails and PostgreSQL using Docker Compose. In this post, I will cover creating a CI/CD pipeline using Codeship Pro.
Builder design pattern in Ruby – kkempin’s dev blog – MediumJun 8, 2018
Builder pattern in Ruby is useful when the algorithm how to build an object is something independent of the parts that makes the object.
Cucumber Ruby TestingJun 8, 2018
Cucumber - Ruby Testing - Ruby language has the following advantages ?
Introduction to Concurrency Models with Ruby. Part IIMar 8, 2018
In the second part of our series we will take a look at more advanced concurrency models such as Actors, Communicating Sequential Processes, Software Transactional Memory and of course Guilds – a new concurrency model which may be implemented in Ruby 3.
arbox/data-science-with-ruby: Practical Data Science with Ruby based tools.Dec 27, 2017
Practical Data Science with Ruby based tools.
Metaprogramming: Writing in Ruby with... Ruby | ToptalDec 27, 2017
Ruby metaprogramming, one of the most interesting aspects of Ruby, enables the programming language to achieve an extreme level of expressiveness. It is because of this very feature that many gems, such as RSpec and ActiveRecord, can work the way they do. In this article, Toptal engineer Nikola Todorovic demystifies...
Batching – A powerful way to solve N 1 queries every Rubyist should knowDec 27, 2017
In this post I’m going to tell you about batching as a technique to help avoid N+1 queries, existing battle-tested tools like Haskell Haxl…
Martinosis BlogDec 27, 2017
Five Ruby Methods You Should Be UsingDec 23, 2017
Here’s a look at some lesser-known Ruby methods that solve specific types of problems very well.
Class Methods In Ruby: a Thorough Review & Why I Define Them Using classDec 11, 2017
Class methods are the source for continuous discussions and disagreements among my colleagues. While some consider them precise and…
Awesome RubyNov 11, 2017
A collection of awesome Ruby libraries, tools, frameworks and software. The essential Ruby to build modern Apps and Web Apps.
Design Patterns in RubyOct 24, 2013
The catalog of annotated code examples of all design patterns, written in Ruby.
rubygems
Getting StartedFeb 24, 2026
Start building AI apps in Ruby in 5 minutes. Chat, generate images, create embeddings - all with one gem.
Ruby Is the Best Language for Building AI AppsFeb 24, 2026
A pragmatic, code-first argument for Ruby as the best language to ship AI products in 2026.
rbenv and CLI executablesDec 5, 2025
Meet Gemini, Google’s AI assistant. Get help with writing, planning, brainstorming, and more. Experience the power of generative AI.
Buckle Up, There’s a New Gem Server in Town: gem.coopOct 9, 2025
New modern Ruby infrastructure coming online by the folks who were unceremoniously kicked out of Ruby Central.
rv, a new kind of Ruby management toolAug 27, 2025
For the last ten years or so of working on Bundler, I’ve had a wish rattling around: I want a better dependency manager. It doesn’t just manage your gems, it manages your ruby versions, too. It doesn’t just manage your ruby versions, it installs pre-compiled rubies so you don’t have to wait for ruby to compile from source every time. And more than all of that, it makes it completely trivial to run any script or tool written in ruby, even if that script or tool needs a different ruby than your application does.
The 60-Second Wait: How I Spent Months Solving the Ruby’s Most Annoying Gem Installation ProblemJul 17, 2025
How I eliminated the 60-second rdkafka gem compilation wait that was burning 60 million CPU seconds monthly. From compilation hell to 3-second installs.
Bundler 2.6: Enhanced Security with Built-in Checksum VerificationJan 5, 2025
Protect your Ruby projects from supply chain attacks with Bundler 2.6's new checksum verification. Learn how to implement this crucial security feature today.
Gemfile of dreams: the libraries we use to build Rails appsJun 1, 2024
We unveil the toolbox of the Martian Rails engineer; we begin constructing a Gemfile from the universe of Martian gems that encapsulate our philosophy and soul.
A step-by-step guide to building a Ruby gem from scratchMar 30, 2024
This article was originally written by Julie Kent on the Honeybadger Developer Blog. If you have...
An Introduction to RuboCop for Ruby on RailsSep 6, 2023
Let's dive into what RuboCop is, how it helps developers, how to use it, and some key practical use cases.
12 Ruby Gems to make your Ruby coding smootherAug 22, 2023
How many Ruby gems do you have currently installed? With around 50 new gems released daily, it is...
An Introduction to Devise for Ruby on RailsJul 23, 2023
In part one of this series on Devise, we'll cover the basics of the Devise gem.
The Top Rails Gems for Cybersecurity Applications You Should Know AboutMay 26, 2023
Security should be one of the main areas of concern while developing a website application. To...
44 Top Ruby Gems: Must-have for Web DevelopmentMar 26, 2023
Discover the Best Ruby gems to enhance your project and make development easier. From testing to deployment, these gems will streamline your workflow.
Install Ruby on Mac. The Definitive Guide for 2023.Jan 16, 2023
This guide goes over the various ways to install Ruby on Mac, and the pros and cons of each one.
Rubocop - 4 ways to reduce your frustration!Jul 5, 2022
Rubocop recently managed to be listed as one of the most loved and most frustrating ruby gems which is quite an achievement. In this episode, I'll show you how to keep it only in the loved section.
Using Rails Action MailerJun 4, 2022
In this quick tutorial I will go over how I use Action Mailer in my Rails apps. A bonus if you have...
Ruby cryptographic gemsJun 4, 2022
I'm not an expert in cryptography — I'm just a developer, and most developers are in this same boat...
Ruby's Hidden Gems: Bullet | AppSignal BlogAug 12, 2021
Let's dive into Bullet and find out how it can help you identify some database-related problems.
Understanding How Rbenv, RubyGems And Bundler Work TogetherJul 7, 2021
Rbenv, RubyGems, and Bundler work together to give us a lot of control over our code's environment. If you know how they work, you'll be better prepared to troubleshoot any problems you encounter. In this article, Ol...
Top 10 Most Excellent Gems to Use in Any Ruby Web ApplicationOct 24, 2010
It can be a challenge when you’re not using Rails to find gems which integrate well. Here are some solid options you can use in any Ruby web application.
rubyonrails
A JavaScript developer's guide to Rails: What is Polymorphic Rails Model?Feb 11, 2026
Learn how Rails polymorphic associations work under the hood, from database schema to model setup, with clear examples for JavaScript developers new to ActiveRecord.
Building an AI agent inside a 7-year old Rails applicationDec 26, 2025
We run a multi-tenant Rails application with sensitive data and layered authorization. In this post, I walk through how I added the first AI agent tool using RubyLLM, Pundit policies, and our existing Algolia search, without introducing a parallel system or loosening constraints.
How to Read Code from the Showcase Ruby on Rails EngineOct 1, 2025
We are going to set up Showcase for a Rails application in the first part of this three-part series on Showcase.
rv, a new kind of Ruby management toolAug 27, 2025
For the last ten years or so of working on Bundler, I’ve had a wish rattling around: I want a better dependency manager. It doesn’t just manage your gems, it manages your ruby versions, too. It doesn’t just manage your ruby versions, it installs pre-compiled rubies so you don’t have to wait for ruby to compile from source every time. And more than all of that, it makes it completely trivial to run any script or tool written in ruby, even if that script or tool needs a different ruby than your application does.
70 Companies You Didn't Know Were Using Rails in 2025Aug 6, 2025
For twenty-two years, thoughtbot has helped companies and organizations of...
Build Custom ActiveStorage Analyzers for Ruby on RailsJul 30, 2025
We'll dive into how ActiveStorage treats uploaded data, and how to extend this process, in part one of this two-part series.
🔧 Ruby on Rails 8 — Modern Architecture Overview (2025)Jul 5, 2025
Ruby on Rails (Rails) has long been the go-to framework for rapid, convention-driven web development. As of Rails 8 (expected in 2025), the architecture has matured while embracing new paradigms like…
Loving my personal Heroku using Kamal : r/railsJun 28, 2025
Prevent logging sensitive information in Rails, and beyondJun 10, 2025
The Rails defaults are a good foundation, but it’s still your responsibility to filter sensitive information from logs when using external APIs, services, and tools.
Let Rails Help YouMay 27, 2025
Rails gives you the tools to build custom features that still feel native.
Markdown Image Uploads with EasyMDE and Active Storage - AvoApr 29, 2025
Learn how to add image uploads to a markdown field using the EasyMDE editor, Rails and Active Storage.
Sorting elegantly in Rails with in_order_ofApr 28, 2025
Sorting columns in custom order in Rails elegantly using inemorder/emof.
Deploy a Rails app close to your users · FlyApr 13, 2025
How to respect OpenAI's rate limits in RailsApr 10, 2025
As it turns out, OpenAI’s rate limits are a little more complicated than other APIs.
Avoiding N+1 queries the Railsy way with strict loadingApr 7, 2025
Need to catch N+1 queries without adding any extra dependencies to your project?
Strict Loading makes it effortless, but your configurations need to be set up correctly to avoid unexpected behaviors.
Rails 8’s Propshaft, A Sprockets’ quiet replacement?Apr 4, 2025
With the release of Rails 8, asset management in Rails got faster and simpler with the new asset pipeline, Propshaft, which is not only simpler but also more aligned with modern Rails development needs compared to its predecessor, Sprockets.
content_for -- What is it good_for?Mar 24, 2025
The Marie Kondo for bits of HTML that spark joy but have no home.
Advanced Queries in ActiveRecord for Ruby on RailsFeb 26, 2025
Let's delve into advanced ActiveRecord queries, shining a spotlight on more complex joins, custom SQL, and strategic employment of database-specific features.
Ruby on Rails on WebAssemblyFeb 6, 2025
Practical Steps to Reduce Heroku CostsJan 27, 2025
Heroku can quickly get expensive. Dig into this article to learn some concrete strategies to reduce your Heroku bill!
Inbox | SubstackJan 22, 2025
Rails for everything | Literally the VoidJan 2, 2025
Zero-downtime with Rails credentials part IIDec 18, 2024
Transitioning the codebase from using environment variables to Rails Credentials for Zero-Downtime Deploys.
Rails 8.0: Goodbye Rails::ConsoleMethods - A Developer's Guide to Console CustomizationDec 13, 2024
Discover why Rails 8.0 removed Rails::ConsoleMethods, learn the impact on your Rails console, and explore modern alternatives.
Deploy web apps anywhere with KamalDec 2, 2024
From bare metal to cloud VMs using Docker, deploy web apps anywhere with zero downtime.
Zero-downtime with Rails credentialsNov 16, 2024
Transitioning the codebase from using environment variables to Rails Credentials for Zero-Downtime Deploys.
Deploying a Jekyll site with KamalNov 5, 2024
Since Kamal 2 can host multiple sites on the same server, I am consolidating my apps into larger hosts so I have less servers to worry about. Most of my apps are Rails apps, but I have a few static jekyll sites like this blog and I decided to look into how could I move this site to a server I host other Rails apps on.
4 tips when getting started with HotwireNov 4, 2024
A few best practices to keep in mind when getting started with Hotwire and Rails.
Agile Web Development with Rails 8Oct 30, 2024
Get the comprehensive, insider information you need for Rails 8 with the new edition of this award-winning classic.
High Performance PostgreSQL for Rails: Reliable Scalable Maintainable DatOct 19, 2024
Build fast, scalable PostgreSQL and Rails apps. Solve data growth, quality, and reliability challenges, for workloads from consumer Internet to enterprise SaaS.
Return to the Rails Way: Installing Ruby on Rails in 2024Jun 30, 2024
Do a 'full fat install' of Ruby on Rails and see what's changed since its heyday of Web 2.0 — and how it has inspired modern frameworks.
Monitor the Performance of Your Ruby on Rails Application Using AppSignalJun 13, 2024
In the second part of this two-part series, we'll use AppSignal to monitor the performance of our Ruby on Rails application.
How to Use Tailwind CSS for Your Ruby On Rails ProjectJun 5, 2024
Let's see how we can use Tailwind CSS in a Rails application and explore its utility-first approach.
HTML Over The WireJun 4, 2024
Hotwire is an alternative approach to building modern web applications without using much JavaScript by sending HTML instead of JSON over the wire.
Gemfile of dreams: the libraries we use to build Rails appsJun 1, 2024
We unveil the toolbox of the Martian Rails engineer; we begin constructing a Gemfile from the universe of Martian gems that encapsulate our philosophy and soul.
Getting Started: Your Ruby On Rails App Hosted On DigitalOcean With AppSignMay 31, 2024
In the first part of a two-part series, we'll introduce how to set up DigitalOcean and AppSignal for a Ruby on Rails application.
Install Ruby On Rails on Ubuntu 24.04 Noble Numbat | GoRailsMay 24, 2024
A guide to setting up a Ruby on Rails development environment on Ubuntu 24.04 Noble Numbat with Git, MySQL, and PostgreSQL
How to integrate React with Rails 7Apr 29, 2024
Want to setup React on your Rails 7 app but don’t know how do it? Read this post to explore options to consider when using React with Ruby on Rails.
Using Active Storage To Handle Image Uploads In Ruby On RailsApr 29, 2024
Active Storage is a framework that handles file uploads, allowing you to store them as attachments...
Autotuner: How to Speed Up Your Rails AppApr 26, 2024
Ruby’s garbage collector is designed to be adaptable, scaling from short Ruby scripts to running apps that serve millions of requests per second. While it’s designed to be adaptable, it may not work optimally for every use case. For this reason, Ruby’s garbage collector supports many parameters that can be used to tune it. However, the use of these parameters requires knowledge into how the garbage collector works on the inside. Learn how the Autotuner gem can analyze your app’s traffic and provide suggestions for tuning the garbage collector.
SQLite on Rails: The how and why of optimal performanceApr 23, 2024
This is my personal site, where I write about Ruby, programming, and any of my varied fascinations.
Pricing | HerokuApr 16, 2024
Heroku offers simple, flexible pricing to meet the needs of every app and every organization. Add data stores, cloud services, support, and more.
How (and why) to run SQLite in production: RubyConf Taiwan 2023Mar 27, 2024
This is my personal site, where I write about Ruby, programming, and any of my varied fascinations.
Rails: How Rails Find GeneratorsMar 23, 2024
All of us rails developers have used generators before. Either it is when we run rails new or rails generate scaffold. These commands…
How the Rails params hash worksMar 21, 2024
This article was originally written by Jeffery Morhous on the Honeybadger Developer Blog. In Ruby on...
Good Database Migration Practices for Your Ruby on Rails App using Strong MMar 20, 2024
Let's explore Strong Migrations, a gem that can help you maintain good practices with your database migrations in Ruby on Rails.
Active Record or Sequel: Which Best Fits The Needs of Your Ruby App?Mar 7, 2024
Let's compare some Active Record features to its lesser-known but powerful cousin, Sequel.
Why Rails is a Great Choice for Startups in 2024Mar 5, 2024
JavaScript is in the vogue now, but Ruby on Rails can become your startup’s secret competitive advantage.
Active Record and PostgreSQL — Ruby on Rails GuidesFeb 29, 2024
Active Record and PostgreSQLThis guide covers PostgreSQL specific usage of Active Record.After reading this guide, you will know: How to use PostgreSQL's datatypes. How to use UUID primary keys. How to include non-key columns in indexes. How to use deferrable foreign keys. How to use unique constraints. How to implement exclusion constraints. How to implement full text search with PostgreSQL. How to back your Active Record models with database views.
Hotwire Modals in Ruby on Rails with Stimulus and Turbo FramesFeb 23, 2024
In the first part of our series, we'll explore two Hotwire methods to make modals accessible in your Rails application.
Effective Queries with Rails and PostgreSQL - Honeybadger Developer BlogFeb 23, 2024
Getting data *into* your database is easy, but querying large datasets is challenging—especially without the right indexes. Pavel Tkachenko teaches how to write performant SQL queries with EXPLAIN and ANALYZE.
Full-Text Search for Ruby on Rails with LitesearchFeb 15, 2024
In part six of our series, we'll use Litesearch, the last piece of the puzzle in LiteStack.
Rails advanced routing constraintsJan 25, 2024
Learn how to authorize requests at the routing layer to improve security and ergonomics.
The Rails Config FileJan 12, 2024
The ~/.railsrc file configures your Rails applications and lets you pre-configure the gems you want in all your Rails apps.
Here's what's coming in Rails 8Jan 11, 2024
Work on Rails 8 is starting, so I dug through the official GitHub milestone to break down all the upcoming goodies for you. There's plenty coming, including Solid Queue, Solid Cache and Kamal becoming defaults, better support for PWAs, an official LSP, and more!
Performance Guide to create 100k records in less than 3s using Ruby on RailOct 28, 2023
When working on large-scale projects, quickly creating test data or dummy data can be crucial. In...
Using Action Policy for a Ruby on Rails App: The BasicsOct 10, 2023
In the first part of a two-part series, we'll introduce how to use the Action Policy gem for a Ruby on Rails blog application.
An Introduction to LiteStack for Ruby on RailsSep 27, 2023
In the first part of this series, we'll set up an example Rails application and introduce the basics of LiteStack.
Ruby on Rails extends Docker supportSep 17, 2023
Now available in a beta, Rails 7.1 will generate all Dockerfiles needed for deployment, tuned for production use.
An Introduction to RuboCop for Ruby on RailsSep 6, 2023
Let's dive into what RuboCop is, how it helps developers, how to use it, and some key practical use cases.
Building Value Objects in Rails with composed_ofJul 29, 2023
Learn how to improve the interface of your existing Active Record Models with this underutilized API.
Rails 7.0: Fulfilling a visionJul 24, 2023
This version of Rails has been years in the conceptual making. It’s the fulfillment of a vision to present a truly full-stack approach to web development that tackles both the front- and back-end challenges with equal vigor. An omakase menu that includes everything from the aperitif to the dessert.
Top 5 Gems for Implementing a Search Engine in a Rails AppJul 23, 2023
Thanks to gems, it is easy to implement a search engine into Rails applications. Of course, you have to choose which gem to use. While there are countless options, four stand out as the best. You will be happy with any of these options.
An Introduction to Devise for Ruby on RailsJul 23, 2023
In part one of this series on Devise, we'll cover the basics of the Devise gem.
Google Login in Rails 7 with deviseJul 7, 2023
Google login can provide a convenient and seamless authentication option for your users. In this...
Creating Custom Rails GeneratorsJun 2, 2023
A complete and concise overview to help you create custom Rails Generators and avoid the speed bumps that might otherwise slow you down.
The Top Rails Gems for Cybersecurity Applications You Should Know AboutMay 26, 2023
Security should be one of the main areas of concern while developing a website application. To...
Welcome to Rails Cheat SheetMay 14, 2023
A helpful list of resources for people who are just getting started out with Rails.
Exception Handling and Validations in Rails, and how to display errors to uApr 29, 2023
Introduction In this article we will go over exception handling and validation in Rails....
How to use Sidekiq in Rails 7: Background JobsApr 26, 2023
In this blog, we'll explore how to use background jobs with Sidekiq in Rails 7 to handle long-running...
How to Load Code in Ruby | AppSignal BlogApr 19, 2023
Let's look into three options for code loading in Ruby: using load, require, and autoload.
Stripe Connect onboarding with Ruby on RailsApr 16, 2023
Stripe Connect provides a suite of tools and APIs that allow you to create, manage, and scale your...
Upgrading to Rails 7: Moving away from WebpackerApr 14, 2023
Webpacker was retired for Rails 7. Let’s explore some options for replacing it when making an upgrade.
The Definitive Guide to Rack for Rails DevelopersApr 14, 2023
This article explains Rack, including both the protocol and the gem, as well as the concept of middleware.
Sessions in Rails: Everything You Need to KnowMar 31, 2023
In this post, we’ll learn about Rails sessions, including what is a session, why we need them, and why they're so important. I’ll also take you behind the scenes and show you how Rails implements sessions and where the `session` method actually comes from. Hint: it’s not in the Rails codebase.
44 Top Ruby Gems: Must-have for Web DevelopmentMar 26, 2023
Discover the Best Ruby gems to enhance your project and make development easier. From testing to deployment, these gems will streamline your workflow.
Tracking TODO and FIXME Comments with Rails Notes CommandMar 24, 2023
This post shows how you can use the notes command in Rails to search through your codebase for comments starting with a specific keyword. By default, it searches the codebase for FIXME, OPTIMIZE, and TODO comments, but you can also configure it to use custom keywords.
How to Setup Devise for User Authentication on Rails 7Mar 22, 2023
If you are a frequent user of Ruby on Rails, you know that building authentication and user...
Mastering PostgreSQL Views and CTEs for Rails Developers: A Comprehensive GMar 15, 2023
Introduction Views and Common Table Expression or CTE are two important concept in...
Episode 391 - Deploying with MRSK | Drifting RubyMar 7, 2023
Kamal (MRSK) deploys web apps anywhere from bare metal to cloud VMs using Docker with zero downtime. In this episode, we will set up a Digital Ocean infrastructure with a Load Balancer, Virtual Machines, and a PostgreSQL database. We'll use Kamal (MRSK) to provision and deploy our Rails application to the Virtual Machines.
Configuring Rails EnvironmentsMar 4, 2023
Despite its strong opinions and powerful conventions, Rails is a highly flexible and configurable framework. If you don’t like something, there’s almost certainly a way to change it. This article provides a brief overview of configuring Rails applications and environments.
Making the Most of Your Logs in RailsMar 1, 2023
It's easy to get going with logging with Rails, but not so easy to master it. Discover how you can get the most from your logs.
How to add bootstrap in Rails 7Feb 27, 2023
How to add bootstrap in rails 7 Bootstrap is a popular CSS framework that can help you...
You Don't Need Rails to Start Using HotwireFeb 26, 2023
Although Hotwire is closely tied to Ruby on Rails, you don't really need Rails to learn, play, and experiment with Hotwire.
Introduction of Rails Engine with basic example.Feb 25, 2023
What is RailsEngine? A Rails engine is a self-contained piece of functionality that can be...
Polymorphic associations in Active RecordFeb 22, 2023
As a software developer, one of the best feelings has to be thinking up a great feature for your...
How to use Docker with Ruby on Rails applications.Feb 20, 2023
What is docker? and how to use it with ruby on rails applications? and benefits of using...
What's New in Rails 7.1Feb 16, 2023
Let's take a look at what we can expect from the upcoming Rails 7.1 release.
An Overview Of Ruby on Rails 7.1 Features. Part III.Jan 24, 2023
Leaked OnlyFans photos and video of manny.codes
Starting Rails 7 for Front-End DevelopmentJan 16, 2023
Rails 7 is now more flexible in terms of the front-end technologies we want to use for our projects. Webpacker has been retired and right now is not really recommended to use for new projects.
Getting Started with Ruby on Rails on Render | RenderJan 16, 2023
This guide demonstrates how to set up a local Ruby on Rails environment, create a simple view, and deploy it to Render.
Create a Business Language for a Rails ApplicationJan 15, 2023
Build and parse a programming language to extend your Rails application's functionality.
Understanding the Instrumentation API in RailsJan 15, 2023
The Rails Instrumentation API provides a simple observer pattern and also allows you to benchmark a piece of code.
How To Use PostgreSQL with Your Ruby on Rails Application on Ubuntu 18.04 |Jan 14, 2023
A PostgreSQL database is a robust and flexible choice for your Ruby on Rails application. In this tutorial, you will set up a Ruby on Rails development envir…
What if writing tests was a joyful experience?Jan 13, 2023
At Jane Street we use a pattern/library called “expect tests” thatmakes test-writing feel like a REPL session, or like exploratoryprogramming in a Jupyter no...
To Thread or Not to Thread: An In-Depth Look at Ruby’s Execution Models - ShopifyJan 9, 2023
An in-depth look at threads vs processes in Ruby web applications, and when you should use each.
Let's Learn Ruby on Rails Hotwire by Building a To-Do ListJan 9, 2023
In this article, we'll learn Ruby on Rails and Hotwire by building a to-do list from scratch. It shows how to build single-page web applications using traditional web architecture (server-rendered HTML), without the complexity of modern JavaScript frameworks like React.
Rails Authentication From ScratchJan 9, 2023
If you’re like me then you probably take Devise for granted because you’re too intimidated to roll your own authentication system. As powerful as Devise is, it’s not perfect. There are plenty of cases where I’ve reached for it only to end up constrained by its features and design, and wished I could customize it exactly to my liking.
Deploy API only Rails App with CapistranoDec 28, 2022
Capistrano is a deployment automation tool built on Ruby, Rake, and SSH. It allows you to deploy your...
rails/docked: Running Rails from Docker for easy start to developmentDec 22, 2022
Running Rails from Docker for easy start to development - rails/docked
How to Build Your Own Rails GeneratorDec 22, 2022
Generators are a powerful feature you can use to automate routine tasks in Rails—but do you know how to make your own? This article explores Rails generators in depth, including how to build a generator from scratch.
How to validate the presence of a boolean field in a Rails modelDec 21, 2022
A subtle bug happens when validating the presence of boolean fields in Rails. Here’s how to find it before it hits production.
Rails 7.1 featuresDec 2, 2022
There are many new features and improvements in Rails 7.1 that can be useful for developers. Here are...
Sign Up | LinkedInNov 25, 2022
500 million+ members | Manage your professional identity. Build and engage with your professional network. Access knowledge, insights and opportunities.
A Brief Introduction to Rails Initializers: Why, What, and HowNov 25, 2022
You can use Rails initializers to configure your application or external gems. In this post, we'll learn how they work.
Basics of Rails Password ProtectionNov 20, 2022
In this blog, we will be using bcrypt for authentication in our rails backend. Password protection...
How to Scale Ruby on Rails ApplicationsNov 10, 2022
Check out some ways to scale your Ruby on Rails applications, including with caching and background workers.
How to Build Your Own Rails GeneratorNov 5, 2022
Generators are a powerful feature you can use to automate routine tasks in Rails—but do you know how to make your own? This article explores Rails generators in depth, including how to build a generator from scratch.
Lesson 8 - Devise Gem with Rails 7 & HotwireOct 30, 2022
In this video I will show you how to create a simple authentication system using Rails 7 and Devise Gem. Learn how to create a global navbar that has conditional logic for user authentication.
Reference the code here !
https://github.com/swiftruby/devisefromscratch
Heroku alternatives for Rails projects: Deploying my shit to fly.ioOct 23, 2022
I like to develop production projects and side projects as deployment-driven as possible. Over the years I had tons of projects on Heroku and I'm grateful for the experience 🙏 But if tons of projects are to come again, I don't see a point in paying 7$ bucks per side-project. Luckily
Many-to-Many Associations in Active Record ExampleOct 19, 2022
Background Using Ruby, Active Record, Sinatra, and a React frontend, I created a traveler...
GitHub - davidteren/simple_tails: Sensible semantic HTML styling out the boOct 9, 2022
Sensible semantic HTML styling out the box for Ruby on Rails applications - davidteren/simple_tails
Security Best Practices for Your Rails ApplicationOct 5, 2022
Ensure your Rails application stays secure by following some best practices and habits.
JIT Compilers for Ruby and Rails: An OverviewSep 8, 2022
Find out about the different JIT compilers for Ruby — YJIT, MJIT, and TenderJIT — and their benefits.
Introducing Trilogy: a new database adapter for Ruby on RailsSep 5, 2022
We've open sourced Trilogy, the database adapter we use to connect Ruby on Rails to MySQL-compatible database servers.
Episode 365 - Automate Rake Tasks | Drifting RubySep 5, 2022
When rake tasks need to be part of a deployment, you could find yourself in a situation where the rake task was forgotten about or have to go through the process of shelling into the environment to execute the tasks. In this episode, we look at addressing these issues by creating a way to have rake tasks execute automatically.
Advanced Database Programming with Rails and PostgresAug 19, 2022
Learn about Active Record and subqueries, views and materialized views, and domain types and composite types in Postgres and Ruby on Rails.
Split Your Rails Seeds File into Separate Files in Different Folders | by EAug 9, 2022
I’m working on a Rails backend app to serve as the API for my database.
Connect a Ruby on Rails App with React in a MonolithAug 6, 2022
Learn about the three main types of app architecture, then connect React with your monolith Ruby on Rails app.
Get Started with Hotwire in Your Ruby on Rails AppJul 6, 2022
Learn the basics of Hotwire and how to use it in your Rails app.
We need to talk about fixturesJul 5, 2022
How the principle of connascence will help us to move away from fixtures.
iseq.c: Use ntz_intptr for faster bitmap scan by casperisfine · Pull Request #6059 · ruby/rubyJul 5, 2022
Ref: #6053
Full-text Search with Elasticsearch in RailsJul 5, 2022
If you're finding performance bottlenecks with full-text search in your database, it may be time to switch to Elasticsearch. In this tutorial, Ianis introduces Elasticsearch and shows us how to implement an efficient ...
“Don’t Mock What You Don’t Own” in 5 MinutesJun 23, 2022
A common issue when writing tests for real-world software is how to deal with third-party dependencies. Let’s examine an old, but counter-intuitive principle.
The Rails Configuration File (~/.railsrc)Jun 23, 2022
Did you know that Rails has a ~/.railsrc file? Similar to your ~/.bashrc or ~/.zshrc file, you can...
Rails Geocoder: A Guide to Managing Locations in Your AppsJun 23, 2022
In 2019 there are a myriad of options for mapping and geolocation services. Rails geocoder gem makes it easy to find your way around those services.
Build your app 10x faster! Stop building the · Avo Admin for RailsJun 22, 2022
Ruby on Rails Admin Panel Framework
How we improved our Rails app’s performance with Conditional Get RequestsJun 11, 2022
HTTP provides a method of client-side caching known as Conditional Get Requests. This style of caching allows a client to cache the content…
Episode #352 - Roles from ScratchJun 8, 2022
In this episode, we look at different authorization approaches from the most simple to more complex scenarios. https://www.driftingruby.com/episodes/roles-from-scratch
This episode is sponsored by Honeybadger https://www.honeybadger.io/
► Visit the Merchandise Store - https://www.railsstore.com/
► Ruby on Rails Templates - https://www.rubidium.io
► Subscribe to Drifting Ruby at https://www.driftingruby.com/subscription/new
Add Feature Flags in Ruby on Rails with Flipper | AppSignal BlogJun 8, 2022
Find out how feature flags function in principle and get started with feature flags using the Flipper gem.
thoughtbot/hotwire-example-template: A collection of branches that transmit HTML over the wire.Jun 8, 2022
A collection of branches that transmit HTML over the wire. - thoughtbot/hotwire-example-template
An Introduction to Polymorphism in Ruby on Rails | AppSignal BlogJun 4, 2022
Learn how you can implement polymorphism in your Rails application for cleaner code.
Using Rails Action MailerJun 4, 2022
In this quick tutorial I will go over how I use Action Mailer in my Rails apps. A bonus if you have...
2022 Ruby on Rails Community Survey ResultsJun 4, 2022
Over 2,600 members of the Rails community from 92 countries kindly contributed their thoughts on tools, frameworks, and workflows in their day to day development lives. From these responses we hope to get an understanding of where Rails stands as a framework in 2022.
File: README — Puma masterJun 4, 2022
Markdown Tutorial Using Rails appMay 30, 2022
In this markdown tutorial using rails app learn a step-by-step process to add Markdown support to the Rails app using Redcarpet and Coderay gems.
SQLite on Heroku | Heroku Dev CenterMay 29, 2022
A guide to SQLite on Heroku - explaining why using SQLite on Heroku's ephemeral file system is a bad fit, and looking at alternatives.
How To Install Ruby on Rails with rbenv on Ubuntu 20.04 | DigitalOceanMay 25, 2022
Ruby on Rails is one of the most popular application stacks for developers looking to create sites and web apps. Using rbenv will provide you with a solid en…
Bootstrapping with Ruby on Rails Generators and Templates | AppSignal BlogMay 13, 2022
Let's explore the basics of Rails generators and templates, then examine how to customize your Rails app with templates.
Active Record Tricks | Drifting RubyMay 5, 2022
In this episode, we look at tips and tricks from read only attributes, inserting and upserting (update or insert) records, toggling booleans, and single table inheritance.
Different Ways to Set Attributes in ActiveRecord (Rails 7)Apr 14, 2022
Comparing the different ways to set attributes in ActiveRecord (Rails 7)
5 Tips to Design Ruby on Rails Transactions the Right Way | AppSignal BlogMar 31, 2022
Check out these 5 tips to ensure your transactions are readable and well-designed in your Ruby on Rails app.
GoRails Job BoardMar 23, 2022
Looking for a Ruby on Rails job or hiring Rails developers? We can help you!
https://www.railsgigs.com/blog/2022/03/09/rails-email-setup-for-development-staging-and-productionMar 17, 2022
Changing a polymorphic_type in Rails — Development (2022)Feb 19, 2022
How my team redefined the way we store one of the polymorphic associations in the Shopify codebase. This post is the solution we wish we found when we were looking.
Color Picker with Ruby on Rails 6, Stimulus and WebpackerFeb 12, 2022
A tutorial to integrate a Javascript color picker library Pickr, with Ruby on Rails 6.0, StimulusJS, and Webpacker.
Security Risks On Rails: Misconfiguration and Unsafe IntegrationsJan 31, 2022
This article was originally written by Diogo Souza on the Honeybadger Developer Blog. In the third...
amerine/acts_as_tree: ActsAsTree -- Extends ActiveRecord to add simple support for organizing items into parent–children relationships.Jan 17, 2022
ActsAsTree -- Extends ActiveRecord to add simple support for organizing items into parent–children relationships. - amerine/acts_as_tree
https://hixonrails.com/ruby-on-rails-tutorials/ruby-on-rails-action-mailer-configuration/Jan 17, 2022
Ruby on Rails Screencasts - RailsCastsJan 17, 2022
Short Ruby on Rails screencasts containing tips, tricks and tutorials. Great for both novice and experienced web developers.
Speeding Up Rendering Rails Pages with render_async - SemaphoreJan 17, 2022
Adding new code to Rails controllers can slow your pages down. Here's how to make rendering your Rails pages faster.
Installation and Usage of Rails MongoDBJan 17, 2022
42 performance tips for Ruby on RailsJan 17, 2022
This was originally posted on my blog Since Ruby on Rails is not the fastest web framework out th...
💎Rails tip💎Jan 17, 2022
Are you dealing with an external API and not sure where to put that code? Using ActiveModel::Model module can be a clean way of doing so in a OO way.
It's a model, but not connected to ActiveRecord/your DB.
— Sebastien Auriault (@websebdev)
https://hixonrails.com/ruby-on-rails-tutorials/ruby-on-rails-set-up-on-github-with-circleci/Jan 17, 2022
Getting Started with Svelte and Rails 6Jan 17, 2022
Svelte is slowly rising to fame these days and it’s getting more and more traction with new version 3 being released in April.
Creating and Customizing Rails Generators & Templates — Ruby on Rails GuidesJan 17, 2022
Creating and Customizing Rails Generators & TemplatesRails generators are an essential tool for improving your workflow. With this guide you will learn how to create generators and customize existing ones.After reading this guide, you will know: How to see which generators are available in your application. How to create a generator using templates. How Rails searches for generators before invoking them. How to customize your scaffold by overriding generator templates. How to customize your scaffold by overriding generators. How to use fallbacks to avoid overwriting a huge set of generators. How to create an application template.
Understanding Webpacker in Rails 6 | Road to Rails 6Jan 17, 2022
Starting with Rails 6, Webpacker is the default JavaScript compiler. It means that all the JavaScript code will be handled by Webpacker instead of the old assets pipeline aka Sprockets. Webpacker is different from asset pipeline in terms of philosophy as well as implementation. In this blog post, we will
Full Text Search in Milliseconds with Rails and PostgreSQLJan 17, 2022
This article shows how to optimize a Full Text Search implementation with Rails and PostgreSQL, taking a single query from 130ms to 7ms.
Adding a custom seed fileJan 17, 2022
I want to populate a new feature with dummy data, but don't want to use the db/seeds.rb file as it already has seeds other data irrelevant for this feature.
To run the default seeds.rb file, you r...
Rails 6: the missing developer setup guideJan 17, 2022
Learnings and notes from a JavaScript developer trying out Ruby and Ruby on Rails 6 for the first time.
Rails 6: B-Sides and Rarities—Martian Chronicles, Evil Martians’ team blogJan 17, 2022
Discover lesser-known Rails 6 features that stay out of the spotlight but can bring a lot to your current applications.
https://rubyweekly.com/link/102532/ad5e785e3bJan 17, 2022
Rails Concerns: To Concern Or Not To Concern | AppSignal BlogJan 17, 2022
Should you be concerned about Rails concerns?
https://hixonrails.com/ruby-on-rails-tutorials/ruby-on-rails-testing-rspec-configuration/Jan 17, 2022
ActiveRecord’s queries tricksJan 17, 2022
My favourite part of Rails is clearly ActiveRecord’s scopes. Their expressiveness and their reusability is simply great.
Understanding Rails secrets/credentials - Code with JasonJan 17, 2022
What this feature is for The credentials feature is a way of storing secrets that you don’t want to keep in plaintext, like AWS credentials for example. (In fact, the one and only thing I keep in my main Rails project’s credentials are my Active Storage AWS credentials.) Why the credentials feature is difficult to […]
Devise Authentication in Depth — SitePointJan 17, 2022
Ilya Bodrov continues the Authentication in Rails series by looking at the most popular authentication gem: Devise. Basic setup to using extensions.
Show relevant chunks of text with Rails excerpt helperJan 17, 2022
The Rails helper excerpt can extract a chunk of text that matches a certain phrase, no matter where in the string it is.
Eager Loading and the N+1 Query Problem | Learn Enough News & BlogJan 17, 2022
News & blog about Learn Enough (including the Ruby on Rails Tutorial)
Customizing Rails rake tasksJan 17, 2022
Motivation Rails rake tasks are commands that automate specific acti...
Introduction to Ruby on Rails Patterns and Anti-patternsJan 17, 2022
Welcome to the first post in our series about Ruby on Rails Patterns and Anti-patterns. In each of th...
Creating Your Own Scaffold Generator in Rails - NopioJan 17, 2022
Thanks to built-in scaffolding feature starting the project in Ruby on Rails is easy, but when you create your own scaffold generator, it's even easier!
Exploring Metaprogramming in Ruby :: the halcyon blogJan 17, 2022
Metaprogramming is an integral part of Ruby, more so than in any other language. This article explains the hows and whys.
How a routine gem update ended up creating $73k worth of subscriptionsJan 9, 2022
On November 5, 2021 (a Friday of course), we've deployed innocent-looking gem updates. Minor versions of Ruby on Rails, Ruby Sentry client, Ruby Slack client, http libraries, Puma, Devise, OmniAuth Ruby client, Mongoid, and a few test gems. However, something went very wrong. We saw odd Stripe errors on Airbrake.
https://rubyweekly.com/link/117341/ad5e785e3bDec 11, 2021
Converting PDF preview in Rails 6 using Active Storage and MiniMagicNov 23, 2021
In this demo application we will demonstrate that how you can upload documents using active records and convert preview of PDF pages as images. We have also used action cable to display progress of PDF pages to image conversion inside bootstrap modal. Though this is a simple and basic example but you can learn different concepts here from the code base.
Here you can find the repository for this demo application:
https://github.com/RaviSys/pdf-preview-demo
Hope you enjoy learning this.
How to build a search engine with Ruby on RailsOct 1, 2021
Implementing search in your Rails app can be vexing. Here's a great pattern to use that combines the best parts of ActiveRecord and Postgres.
Modern web apps without JavaScript bundling or transpilingAug 20, 2021
I didn't much care for vanilla JavaScript prior to ES6. Through all of the 2000s, I chased different approaches to avoid writing too much of it. First there was RJS (Ruby-to-JavaScript). Then there was CoffeeScript. Both transpiling approaches that turned more enjoyable-to-write source code into the kind of JavaScript that browsers wou...
Ruby's Hidden Gems: Bullet | AppSignal BlogAug 12, 2021
Let's dive into Bullet and find out how it can help you identify some database-related problems.
ruby - Rbenv and Rails mismatches - Stack OverflowJul 25, 2021
Good morning everyone,
I've installed Ruby 3.0.2 via rbenv in order to test-drive a Rails 6.0 app. It seems like rbenv's Rails shiv is not working properly.
$ rbenv install 3.0.2
Downloading ruby-3...
How to Build a Booking Engine Similar to Booking.com with Ruby on Rails 6 aJul 10, 2021
Think building a booking system is not your cup of tea? I bet, you will change your mind after...
Understanding How Rbenv, RubyGems And Bundler Work TogetherJul 7, 2021
Rbenv, RubyGems, and Bundler work together to give us a lot of control over our code's environment. If you know how they work, you'll be better prepared to troubleshoot any problems you encounter. In this article, Ol...
Webpacker in Rails 6Jul 7, 2021
Webpacker is the default JavaScript compiler for Rails 6 applications. Which means that all the...
How I organize my Rails apps - Code with JasonJun 1, 2021
Overview Influenced by the experiences I’ve had last over many years of building and maintaining Rails applications, combined with my experiences using other technologies, I’ve developed some ways of structuring Rails applications that have worked out pretty well for me. Some of my organizational tactics follow conventional wisdom, like keeping controllers thin. Other of my […]
Rails 6 — Custom Seed Files. While building applications in Rails… | by ZacMay 26, 2021
While building applications in Rails it’s very common to have to add a new model after you’ve already set up a DB and added some seed data…
ruby - libffi.so.7: cannot open shared object file: No such file or directoMay 26, 2021
I just upgraded to ubuntu 20.10 and when I tried to work with rails app that was working perfectly fine earlier started to show this error.
LoadError: libffi.so.7: cannot open shared object file: N...
Rails with Webpacker : a full setupMay 18, 2021
Article was originally published here : https://bootrails.com/blog/rails-webpacker-full-setup Webpac...
Polymorphic associations in RailsMay 17, 2021
A quick overview of how to use polymorphic associations in rails
How to Build a Web App with and without Rails Libraries — Development (2021May 1, 2021
Ruby on Rails is a web framework that contains many libraries you’d need to create and deploy a successful web application. We often take for granted the ability to run rails new to create a fully functional web application with tons of built-in features.
How to submit an array using a Rails formMar 21, 2021
This article was originally posted on my blog. Sometimes an array of data needs to be submitted in a...
Rails 7 adds ActiveRecord methods `#sole` and `#find_sole_by`Mar 18, 2021
Rails 7 adds ActiveRecord methods `#sole` and `#find_sole_by` to uniquely match only one record in a database.
Using Active Storage in Rails 6Mar 16, 2021
Premium video courses for software developers. Real apps. Real code. Really good stuff!
Real Artists Ship | Learn Enough News & BlogMar 5, 2021
News & blog about Learn Enough (including the Ruby on Rails Tutorial)
Foundation and Rails · RailsAppsMar 3, 2021
Kointoto: Situs Judi Togel Online & Slot Gacor MaxwinMar 3, 2021
Kointoto situs judi togel online, slot gacor, dan live casino idnlive terbaik di Indonesia. 1 ID untuk semua permainan dengan deposit minimal Rp 10rb.
Hacker NewsFeb 11, 2021
Ruby 3.0 is a lot faster than Ruby 2.0, with both incremental tuning and interesting new disruptive changes. 'Three times faster' is hard to define...
Paweł U. | Ruby on Rails Web Development Consultant Full Stack BlogFeb 11, 2021
Performance Action Pack consists of tools and techniques to efficiently audit and optimize your Ruby on Rails application.
Use the Rails helper highlight when showing search results | Boring Rails:Feb 10, 2021
Use the Rails highlight helper to wrap search result matches in tags.
Real-Time Apps With WebSockets and Action Cable | Learn Enough News & BlogFeb 6, 2021
News & blog about Learn Enough (including the Ruby on Rails Tutorial)
rgl | RubyGems.org | your community gem hostFeb 3, 2021
Sending Email with Rails | Learn Enough News & BlogJan 29, 2021
News & blog about Learn Enough (including the Ruby on Rails Tutorial)
Best alternatives to hosting on Heroku?Jan 27, 2021
33 votes, 56 comments. Heroku is easy to use and has a good marketplace. They make it really easy to deploy and to purchase additional resources. I…
Setup Ruby on Rails 6 App with MongoDB under 5 Minutes — Aarvy | by Aarvy |Jan 23, 2021
In this article, I will be discussing how to quickly setup a NoSQL database MongoDB with your brand new Rails 6 app. I am using Ubuntu…
How Fast Is Ruby 3 on Rails? - FastRuby.io | Rails Upgrade ServiceJan 21, 2021
An article by Noah Gibbs about Ruby 3's performance for a Rails application. Ruby 3.0.0-preview1 was a tiny bit slower than 2.7. The release 3.0 is...
reddit: the front page of the internetJan 11, 2021
Rails 6.1 has added support for switching connections for one database instead of all databases
Kointoto: Situs Judi Togel Online & Slot Gacor MaxwinJan 7, 2021
Kointoto situs judi togel online, slot gacor, dan live casino idnlive terbaik di Indonesia. 1 ID untuk semua permainan dengan deposit minimal Rp 10rb.
6 Things to Do When Inheriting Legacy Rails Apps | NextLink LabsDec 1, 2020
Becoming the owner of a legacy Rails app can mean inheriting a project bogged down with tech debt, bugs, and sketchy documentation. Here's how to survive.
1 Backend, 5 Frontends - Todo List with Rails, React, Angular, Vue, Svelte,Nov 22, 2020
Why are we doing this? One of my favorite way to sharpen my skills with different framewor...
How to delete Ruby and Rails (and other gems) from Ubuntu 18.04 – Larry SanNov 10, 2020
In order to install Ruby and Rails on Ubuntu 18.04, first I had to completely wipe my first, abortive attempt. That proved to be harder than expected. So, in order to save others the effort I had to
ruby on rails - Webpacker can't find application - Stack OverflowNov 10, 2020
I'm creating a new rails application according to "Getting Started with Rails". The application starts normally in step 4.1. But when i create my first controller, i have a webpack error.
I'm new in
Building an Advanced Search Form in Rails 6Nov 3, 2020
Introduction A simple search form is great, but one with advanced search options can have...
Speeding up Rails with Memoization - Honeybadger Developer BlogNov 2, 2020
Whoever first said that "the fastest code is no code" must have really liked memoization. After all, memoization speeds up your application by running less code. In this article, Jonathan Miles introduces us to memoiz...
Rails 6.1 adds --minimal option support | BigBinary BlogSep 9, 2020
Rails 6.1 series | Rails 6.1 adds --minimal support to create bare minimum app
heartcombo/devise: Flexible authentication solution for Rails with Warden.Aug 14, 2020
Flexible authentication solution for Rails with Warden. - heartcombo/devise
When Should You Not Use Rails?Aug 5, 2020
Rails Application Templates — Ruby on Rails GuidesJul 10, 2020
Rails Application TemplatesApplication templates are simple Ruby files containing DSL for adding gems, initializers, etc. to your freshly created Rails project or an existing Rails project.After reading this guide, you will know: How to use templates to generate/customize Rails applications. How to write your own reusable application templates using the Rails template API.
EmailThis/ansible-rails: Ruby on Rails deployment using Ansible - with LetsJun 24, 2020
Ruby on Rails deployment using Ansible - with Lets Encrypt, Sidekiq, PostgreSQL, nginx & puma - EmailThis/ansible-rails
Why does Rails 6 include both Webpacker and Sprockets?May 14, 2020
A new Rails 6 application will install both Webpacker and Sprockets by default. Don't they solve the same problem? This article dives into why Sprockets lives on even though webpack has surpassed most of its features ...
Improving performance with Presenter and Eager Load of a big Rails appMar 19, 2020
When I landed on this new job position at EBANX one of my very first tasks was to get the top 10 issues of a Ruby on Rails app used all…
ruby on rails - Postgres permission denied to create database on rake db:crMar 19, 2020
I am trying to create postgres databases for development and tests. I'm using:
OSX Yosemite
Rails version: 4.2.0
git version: 2.2.2
psql version: 9.4.0
ruby version: 2.1.0p0
HomeBrew version: 0.9.5
Active Storage on Heroku | Heroku Dev CenterMar 14, 2020
Rails [5.2 introduced Active Storage](https://guides.rubyonrails.org/active_storage_overview.html) as a way of managing attaching and saving files to Active Record models. This guide will cover how to use Active Storage on Heroku.
The Complete Guide to Rails PerformanceMar 9, 2020
The only guide that you'll ever need to make your Ruby on Rails application faster and more scalable.
Introducing jQuery in Rails 6 Using WebpackerFeb 19, 2020
ruby - Improve slow Rails startup time (rails console, rails server) - StacDec 23, 2019
I work with several Rails apps, some on Rails 3.2/Ruby 2.0, and some one Rails 2.3/Ruby 1.8.7.
What they have in common is that, as they've grown and added more dependencies/gems, they take longer...
UUID Primary Key in Rails 6 with PostgreSQL and ActiveRecordNov 29, 2019
UUID also known as GUID is an alternative primary key type for SQL databases. It offers some non-obvious advantages compared to standard integer-based keys. Rails 6 release fresh out of beta introduces a new feature in ActiveRecord that makes working with UUID primary keys more straightforward. In this tutorial, we will dive deep into UUIDs with all their cons and pros.
Rails Tutorials · RailsAppsNov 5, 2019
The RailsApps open source project offers starter applications and tutorials for Rails developers.
Active Admin | The administration framework for Ruby on RailsAug 30, 2019
The administration framework for business critical Ruby on Rails applications.
Efficient Rails DevOpsAug 30, 2019
Learn the secrets of Rails deployment and everything it takes to successfully run your application in the wild.
More than "Hello World" in Docker: Build Rails Sidekiq web apps in DockerAug 20, 2019
The first post on a series to get you ready to develop and deploy production-grade workloads in AWS.
Rails 6 Features: What's New and Why It MattersJul 17, 2019
Rails 6 is finally here, featuring major improvements and clever new features that should make development easier and faster than ever. Check out what these new features mean for you!
Realtime with React and Rails - via @codeship | via @codeshipJun 8, 2018
To showcase using ActionCable in a Rails app with React
RailsApps/rails-composer: Rails Composer. The Rails generator on steroids fJun 8, 2018
Rails Composer. The Rails generator on steroids for starter apps. - RailsApps/rails-composer
My journey from Rspec feature tests to Rails system testsJun 8, 2018
A story of failure getting consistent headless feature tests, to trying again with many different ways to make rspec work, then converting to Rails system tests in Rails 5.1.
Understanding the secret_key_base in Ruby on RailsJun 8, 2018
Have you ever wondered what the secret_key_base value is and how it’s used in a Rails application? This configuration value was introduced…
Top 10 errors from 1000 Ruby on Rails projects (and how to avoid them)Apr 28, 2018
To give back to our community of developers, we looked at our database of thousands of projects and found the top 10 errors in Ruby on Rails projects. We’re going to show you what causes them and how to prevent them from happening. If you avoid these "gotchas," it'll make you a better developer. Because […]
swanandp/acts_as_list: An ActiveRecord plugin for managing lists.Jan 20, 2018
An ActiveRecord plugin for managing lists.
brunofacca/zen-rails-base-app: Base application for Ruby on Rails 5 projectSep 4, 2017
Base application for Ruby on Rails 6 projects. Built to minimize the time spent writing boilerplate code and performing repetitive setup tasks. - GitHub - brunofacca/zen-rails-base-app: Base app...
What's New in Ruby on Rails 8 | Hacker NewsOct 24, 2012
Why CTOs are choosing Hotwire and Ruby on RailsAug 24, 2009
A conversation with the CTO and Co-founder of Clara, a recent thoughtbot client, about the strategy behind their decision to build their startup product with Rails and Hotwire.
rust
Never Missing the Train Again, Thanks to RustOct 25, 2024
How I built a transit dashboard with Rust, Skia, and an old Kindle
Why Rust is emerging as developers’ favourite programming languageMay 28, 2024
Rust has been climbing the charts and is now the most admired programming language by developers. Here's why.
How Rust went from a side project to the world’s most-loved programming languageFeb 16, 2023
For decades, coders wrote critical systems in C and C++. Now they turn to Rust.
Hora | Hora Search EverywhereAug 1, 2021
Thought you loved Python? Wait until you meet RustJul 18, 2020
How a niche phenomenon became StackOverflow’s most loved language for the fifth year in a row
Install Rust - Rust Programming LanguageFeb 19, 2020
A language empowering everyone to build reliable and efficient software.
sabotage
Discover the CIA’s Simple Sabotage Field Manual: A Timeless Guide to Subverting Any Organization with “Purposeful Stupidity” (1944)Nov 21, 2024
I’ve always admired people who can successfully navigate what I refer to as “Kafka’s Castle,” a term of dread for the many government and corporate agencies that have an inordinate amount of power over our permanent records, and that seem as inscrutable and chillingly absurd as the labyrinth the character K navigates in Kafka’s last allegorical novel.
Why you probably shouldn’t blow up a pipelineFeb 29, 2024
The revolutionary left’s theory of the climate crisis puts ideology above inconvenient truths.
How to kill a project - by Karl Yang - chiefofstuffDec 10, 2022
Techniques for organizational sabotage in the modern era
Chief’s NewsletterMay 21, 2020
Wandering the idea maze. I write about building software and businesses, psychology, cross-functional job roles, and how those all intersect. Click to read chiefofstuff, by Karl Yang, a Substack publication with thousands of subscribers.
safety
The strange fate of Flight 2069Dec 16, 2025
Months before 9/11 a passenger seized control of a Boeing 747 and nearly crashed it into the Sahara. Everyone survived but no one quite recovered. How do you measure the cost of a disaster that didn't happen?
A Team Tries to Prevent Another Mass ShootingSep 28, 2025
A threat on a school bus from an alienated young man united dozens of agencies to answer a single question: Is it possible to stop potential mass shooters before they commit a crime?
What Is AI Red Teaming? Top 18 AI Red Teaming Tools (2025)Aug 17, 2025
Discover top AI red teaming tools for robust AI security. Learn how adversarial testing protects machine learning models
How OpenAI’s red team made ChatGPT agent into an AI fortressJul 19, 2025
Discover OpenAI's red team blueprint: How 110 coordinated attacks and 7 exploit fixes created ChatGPT Agent's revolutionary 95% security defense system.
A simplified analysis of the Chernobyl accident | EPJ N - Nuclear Sciences & TechnologiesJan 24, 2025
EPJ N - Nuclear Sciences & Technologies
The AI Researchers Pushing Computers to Launch Nightmare ScenariosDec 11, 2024
It’s largely up to companies to test whether their AI is capable of superhuman harm. At Anthropic, the Frontier Red Team assesses the risk of catastrophe.
Memories of Flame: The crash of TWA flight 800Nov 14, 2024
It’s time to take a comprehensive look at one of America’s most controversial plane crashes, and ask how it ended up that way.
The Titan Submersible Disaster Shocked the World. The Exclusive Inside StorJun 11, 2024
A year after OceanGate’s sub imploded, thousands of leaked documents and interviews with ex-employees reveal how the company’s CEO cut corners, ignored warnings, and lied in his fatal quest to reach the Titanic.
What happens when an astronaut in orbit says he’s not coming back?Jan 23, 2024
“If you guys don’t give me a chance to repair my instrument, I’m not going back.”…
Dollar General has racked up $21M in OSHA penalties since 2017. It’s paid $Jul 12, 2023
The retailer discounts the importance of in-store safety, the regulatory agency says, and was named a severe violator this fall.
The Titan Submersible Was “an Accident Waiting to Happen”Jul 3, 2023
Interviews and e-mails with expedition leaders and employees reveal how OceanGate ignored desperate warnings from inside and outside the company. “It’s a lemon,” one wrote.
What Is Psychological Safety?Feb 16, 2023
What exactly is psychological safety? It’s a term that’s used a lot but is often misunderstood. In this piece, the author answers the following questions with input from Harvard Business School professor Amy Edmondson, who coined the phrase “team psychological safety”: 1) What is psychological safety? 2) Why is psychological safety important? 3) How has the idea evolved? 4) How do you know if your team has it? 5) How do you create psychological safety? 6) What are common misconceptions?
How factories were made safeOct 1, 2021
The fundamental cause was a wrong attitude towards the core question: who is responsible for safety?
The Secretive Dynasty That Controls the Boar’s Head BrandOct 24, 2013
The deli-meat company made its owners fabulously wealthy. But they have remained silent, even as the company faces the biggest scandal in its history.
sales-ops-planning
Supply Chain Analysis using PythonApr 9, 2023
In this article, I will take you through the task of Supply Chain Analysis using Python. Supply Chain Analysis using Python.
Using R in Inventory Management and Demand ForecastingApr 8, 2023
Nicolas Nguyen works in the Supply Chain industry, in the area of Demand and Supply Planning, S&OP and Analytics, where he enjoys developing solutions using R and Shiny. Outside his job, he teaches data visualization in R at the Engineering School EIGSI and Business School Excelia in the city of La Rochelle, France. Introduction Demand & Supply Planning requires forecasting techniques to determine the inventory needed to fulfill future orders. With R, we can build end-to-end supply chain monitoring processes to identify potential issues and run scenario testing. In a 3-part series, I will walk through a Demand & Supply Planning workflow: Using R in Inventory Management and Demand Forecasting: an introduction of projected inventory and coverage methodology (this post) Analyzing Projected Inventory Calculations Using R: an analysis of a demo dataset using the planr package Visualizing Projected Calculations with reactable and shiny: once the analysis is done, how would you present your results to your boss? By the end of the series, you will understand how and why to use R for Demand & Supply Planning calculations. Let’s begin! The “problem” we aim to solve When we work in Demand & Supply Planning, it’s pretty common that we need to calculate projected inventories (and related projected coverages). We often have three options to perform this calculation, using: an APS (Advanced Planning System) software an ERP, such as SAP or JDE and of course…Excel! All are fine and have different pros and cons. For example, we simply sometimes don’t have all the data in our ERP either APS, like when we work with third-party distributors or we want to model a supply chain network that relies on different systems with unconnected data. How about using R to perform these calculations? How simple and fast could they be? And, could we do more than just the calculations? For example, could we get an analysis of the projected situation of a portfolio (as an output of a function), so we don’t have to look at each product one by one and can instead: Easily get a summary view of the portfolio? Then zoom on the products with risks of shortages or overstocks? In a series of posts, I will demonstrate how R can help us in Demand & Supply planning. This first post introduces the proj_inv() and light_proj_inv() functions for projected inventory and coverage calculations. proj_inv(): to calculate projected inventories and coverages with some analysis features light_proj_inv(): to calculate projected inventories and coverages (only) Runs faster than the previous function (as it’s lighter and doesn’t provide any analysis features) With R, we have an efficient way to run end-to-end supply chain monitoring processes. Methodology How to calculate projected inventories First, let’s have a look at an example of how to calculate projected inventories. Consider that the field Demand = Sales Forecasts. We start with some Opening Inventory of 1000 units. During month M, we sell 100 units (the Demand). At the end of the 1st period (Month M), the inventory is 900 units. Then, there’s a demand of 800 units at the end of the following period (Month M+1). During the period (Month M+2), we get a Supply of 400 units, and sell 100: it is now 1100 units in stock. That’s all, this is how we calculate projected inventories ☺ Figure 1: Describes the mechanism of the calculation of projected inventories based on Opening Inventories, Demand and Supply How to calculate projected coverages Now, let’s have a look at how to calculate projected coverages. The idea: we look forward. We consider the projected inventories at the end of a period and evaluate the related coverage based on the Upcoming Demand. See the example below: Figure 2: Description of the calculation of projected coverages, considering the inventories at a point in time and the Upcoming Demand If we use Excel, we often see a “shortcut” to estimate the related coverages, like considering an average of the Demand over the next 3 or 6 months. This can lead to incorrect results if the Demand is not constant (if we have some seasonality or a strong trend, for example). However, these calculations become very easy through the proj_inv() and light_proj_inv() functions. Projected inventory calculations in R Now, let’s see how the above is done using two functions from the planr package. First, let’s create a tibble of data for the example shown above (we will cover Min.Stocks.Coverage and Max.Stocks.Coverage more thoroughly in another post): # Install the planr package # remotes::install_github("nguyennico/planr") library(planr) library(dplyr) Planr_Example % select(Projected.Inventories.Qty) ## # A tibble: 7 × 2 ## # Groups: DFU [1] ## DFU Projected.Inventories.Qty ## ## 1 Item0001 900 ## 2 Item0001 800 ## 3 Item0001 1100 ## 4 Item0001 300 ## 5 Item0001 200 ## 6 Item0001 -100 ## 7 Item0001 200 We can also take a look at projected coverage. It matches our example calculation in Figure 2: the opening coverage is 2.9 months. Calculated_Inv %>% select(Calculated.Coverage.in.Periods) ## # A tibble: 7 × 2 ## # Groups: DFU [1] ## DFU Calculated.Coverage.in.Periods ## ## 1 Item0001 2.9 ## 2 Item0001 1.9 ## 3 Item0001 2.7 ## 4 Item0001 1.7 ## 5 Item0001 0.7 ## 6 Item0001 0 ## 7 Item0001 99 Very easy to calculate! The proj_inv() and light_proj_inv() functions can also be used and combined to perform more complex tasks. I’ve described several use cases in the appendix. Moving forward, these functions form the basis for the classic DRP (Distribution Requirement Planning) calculation, where, based on some parameters (usually minimum and maximum levels of stock, a reorder quantity, and a frozen horizon), we calculate a Replenishment Plan. Conclusion Thank you for reading this introduction of projected inventories and coverages in Demand & Supply Planning! I hope that you enjoyed reading how this methodology translate into R. ASCM (formerly APICS) guidelines In the beginning of 2019, the Association for Supply Chain Management (ASCM) published an article about the usage of R (and Python) in Supply Chain Planning, and more precisely for the Sales & Operations Planning (S&OP) process, which is related to Demand and Supply Planning. Figure 3: An extract from the ASCM article regarding the S&OP and Digital Supply Chain. It shows how R and Python are becoming more and more used for demand & supply planning and are great tools to run a S&OP process. In the example above, we can see how R helps build the digital environment useful to run the S&OP process, which involves a lot of data processing. The planr package aims to support this process by providing functions that calculate projected inventories. Stay tuned for more on projected calculations using R Thank you for reading the introduction on how to use R for projected inventory calculations in Demand & Supply Planning! I hope you enjoyed this introduction to the planr package. My series of posts will continue with: Analyzing Projected Calculations Using R (using a demo dataset) Visualizing Projected Calculations with reactable and Shiny (or, what your boss wants to see) In the meantime, check out these useful links: planr package GitHub repository: https://github.com/nguyennico/planr URL for a Shiny app showing a demo of the proj_inv() and light_proj_inv() functions: Demo: app proj_inv() function (shinyapps.io) Appendix: Use cases and examples The proj_inv() and light_proj_inv() functions can easily be used and combined to perform more complex tasks, such as: Modeling of a Supply Chain Network Calculation of projected inventories from Raw Materials to Finished Goods A multi-echelon distribution network: from a National Distribution Center to Regional Wholesalers to Retailers Becoming a useful tool: To build an End-to-End Supply Chain monitoring process To support the S&OP (Sales and Operations Planning) process, allowing us to run some scenarios quickly: Change of Sales plan Change of Supply (Production) plan Change of stock level parameters Change of Transit Time Etc. Here are some detailed use cases for the functions. Third-party distributors We sometimes work with third-party distributors to distribute our products. A common question is: how much stock do our partners hold? If we have access to their opening inventories and Sales IN & OUT Forecasts, we can quickly calculate the projected inventories by applying the proj_inv() or light_proj_inv() functions. Then, we anticipate any risks of shortages or overstocks, and create a collaborative workflow. Figure 4: Illustration of a SiSo (Sales IN Sales OUT) situation. We have some stocks held at a storage location, for example, a third-party distributor, and know what will be sold out of this location (the sales out) and what will be replenished to it (the sales in), as well as the opening inventory. The aim is to calculate the projected inventories and coverages at this location. From raw materials to finished goods In the example below, we produce olive oil (but it could be shampoo, liquor, etc.). We start with a raw material, the olive oil, that we use to fill up different sizes of bottles (35cl, 50cl, etc…), on which we then apply (stick) a label (and back label). There are different labels, depending on the languages (markets where the products are sold). Once we have a labelled bottle, we put it inside an outer box, ready to be shipped and sold. There are different dimensions of outer boxes, where we can put, for examplem 4, 6 or 12 bottles. They are the Finished Goods. We have two groups of products here: Finished Goods Semi-Finished: at different steps, filled bottle (not yet labelled) or labelled bottle We might be interested in looking at the projected inventories at different levels / steps of the manufacturing process: Finished Goods Raw Materials: naked bottles, labels, or liquid (olive oil) Semi-Finished Products For this, we can apply the proj_inv() or light_proj_inv() functions on each level of analysis. Figure 5...
Practical ways food and beverage businesses can improve supply chain resiliApr 5, 2023
At WTW, we’re continuing to hear significant concerns from food and beverage businesses on supply chain disruption. One experienced supply chain…
Sales and Operations Planning (S&OP) Market 2023-2028 | Key ... - Digital JApr 4, 2023
Comprehensive up-to-date news coverage, aggregated from sources all over the world by Google News.
How Serta Simmons Bedding is optimizing manufacturing efficiencyMar 31, 2023
The retailer will implement digital supply chain software to improve forecast accuracy and lower costs.
All documents by typeMar 31, 2023
Lisa Anderson Manufacturing & Supply Chain Expert Sees SIOP Critical to Tumultious TimesMar 23, 2023
Manufacturing and Supply Chain Expert Lisa Anderson, MBA, CSCP, CLTD, known as the Strongest Link in Your Supply Chain® and President of LMA Consulting Group Inc., predicts that establishing processes is critical to strengthening the supply chain during tumultuous times. LMA Consulting Group works with manufacturers and distributors on strategy
sales and operations planning - Google SearchJan 27, 2023
Demand Planning. When The Answer To Two Simple Questions Is Not So Simple.Jan 3, 2023
The answer to a simple question of why do consumer products manufacturers not use retail data in the management of the supply chain?
sales-salesmgmt
Flash Sales without Brand DamageMay 19, 2025
The best flash sales build urgency that aligns with long-term goals, brand positioning, and channel constraints.
In My Life, I’ve Witnessed Three Elite Salespeople at Work. You Won’t Like Their Secret.Jan 6, 2025
My wayward months as the best telemarketer in America.
Competitive Battlecard Benchmark ToolNov 25, 2024
Download this free Competitive Battlecard Benchmark tool to see how your organization's competitive battlecards stack up against industry best practices.
Escape From the BoxJul 10, 2024
New technology and old tactics have made buying a car a death march of deception. Jase Patrick, who spent 15 years in the business, reveals the dealer secrets.
How to get in front of your audience before they’re ready to buyApr 26, 2024
Joe Sullivan sheds light on balancing educational outreach with sales tactics and how to position your brand as a thought leader.
Best tools for sales managers in 2024Apr 25, 2024
The sales management landscape is very dynamic, so staying ahead of the curve requires leveraging the best tools. In 2024,
Crafting Sales Compensation Plans with Graham CollinsApr 24, 2024
This time, we're talking with Graham Collins, Head of Partnerships at QuotaPath, about the nuanced world of startup sales compensation.
The Dark Side of SalesJan 14, 2024
While unleashing the “animal spirits” of your sales team, beware of the unintended consequences that powerful incentives can create.
13 Easy-to-use CRMsNov 8, 2022
A customer relationship management tool can help a business grow and scale at an affordable price. Here is a list of simple CRMs for businesses of all sizes.
Top 5 Sales Coaching Models Used By Top-Performing Sales LeadersSep 11, 2022
Explore the top 5 sale coaching models used by high-performing sales leaders to maximize your return on investment and help reps retain sales training knowledge.
Consultative Sales Approach StrategiesAug 22, 2022
What is consultative sales and how can it help you win more business? These 7 consultative selling strategies will help you stand out from the competition.
Pipeline Analysis PlaybookAug 19, 2022
In many board rooms, the most important go-to-market number this quarter is pipeline health. For some companies, the pipeline may be less clear than a quarter or two ago. Summer seasonality may play a role. Macroeconomics might also be lurking within the numbers. Pipeline fluctuations are normal. But any meaningful & unexpected surprise warrants introspection. Pipeline analysis often has four parts: Craft the sales sandwich to predict your GTM conversion rates & determine if close rates have changed in parallel.
How to Structure Your Sales Compensation Plan to Deliberately Undersell by @ttunguzJul 27, 2022
In Deliberately Underselling as Sales Strategy, I wrote about the importance of sizing contracts below customer needs to ensure customer success. “A key part of the formula: crafting the right account executive compensation structure to reward this strategy.” I received a pile of questions asking for more detail. Since then, I’ve spoken to many sales leaders & Lee Kirkpatrick who originally surfaced the concept during Office Hours on how to do this well.
The Complete Guide to Building the Perfect Sales StackJul 19, 2022
I was recently talking with Mark Roberge, CRO at Hubspot, for a podcast we’re launching soon. I asked him, “What is a common question that…
Distribution | Andreessen HorowitzJul 19, 2022
“I’m into distribution, I’m like Atlantic I got them mutherfuckers flying’ cross the Atlantic” –Rick Ross, “Hustlin’“ When I ask new entrepreneurs what their distribution model will be, I often get answers like: “I don’t want to hire any of those Rolex-wearing, BMW-driving, overly aggressive enterprise sales slimeballs, so we are going to distribute our product like Dropbox did.” In...
Steve Blank How to get meetings with people too busy to see youJul 19, 2022
Asking, “Can I have coffee with you to pick your brain?” is probably the worst possible way to get a meeting with someone with a busy schedule. Here’s a better approach. —— Jason, an e…
An Enterprise PrimerJul 18, 2022
So perhaps you’re burned out in the consumer software game, or are just considering a pivot into the enterprise (“B2B”) market. You’ve heard that there’s a lot of opportunity in “selling to enterpr…
How to sell to the 42 different archetypesJul 18, 2022
19 Psychological Hacks To Gain A Selling Advantage | The Sales ExpertsJul 18, 2022
Hacks that will help you to bring the whole sales process on the next level. Check out our tips that proved their good value.
Social Proof Is the Most Important Factor in SellingJul 18, 2022
If I had to choose a single factor that is crucial to an online store’s success, it would be social proof. The term is often misunderstood. It doesn’t
Looking to Scale Your Sales? Seven Bullets to DodgeJul 18, 2022
Upshift Partners Founder Gabriel Luna-Ostaseski lists the 7 deadly sins of sales that can tank your company before you even have traction.
Here are the Scripts for Sales Success — Emails, Calls and Demos That Close DealsJul 18, 2022
Seldom do you see sales advice that's so specific, down to the actual language you should use to get customers to say yes. Here, sales expert Peter Kazanjy shares exactly what's worked for him.
The Anatomy of the Perfect Sales Hiring ProcessJul 18, 2022
Sales is a unique function to hire for, requiring different criteria and strategy. TalentBin Co-founder Peter Kazanjy has the process nailed. Here it is.
The Secrets of Highly Successful Sales People: Objection Handling - The Secret Product Manager HandbookJul 18, 2022
Objection handling is an important skill for sales people. But if that skill is augmented with great product knowledge (provided by product managers) sales take off.
How to Shorten Your Sales Cycle and Avoid Wasting TimeJul 18, 2022
I’ve written a lot about recruiting and hiring at startups including my controversial post on whom not to hire and my rapid response to the flame war. I’ve also written extensively on sales and on…
15 Psychological Triggers to Convert Leads into CustomersJul 18, 2022
Would you like to know how to get more customers who can’t wait to buy your products and services?
A Technical Founder’s Notes on Sales Team ManagementJul 18, 2022
If you’re a startup company founder with a technical background (or a design or product management background), building a sales team for…
16 Sales Contract Clauses to Balance Risk and Reward | Andreessen HorowitzJul 18, 2022
Think of a sales contract as a system of interconnected components and levers that work together to achieve an acceptable level of risk and reward for both you and your customer.
Fail Better with Win/Loss AnalysisJul 18, 2022
If you're in sales, you'll fail sometimes. Failing is great if you learn from why you lost deals. Win/Loss Analysis can help you fail better.
5 Pricing Resolutions for 2019 - OpenViewJul 11, 2022
Pricing is a good place to make a few critical resolutions for businesses. Learn the 5 resolutions as you shape your pricing strategy for 2019.
B2B Marketing: How to auto-qualify new leads without a CRM or lead scoringJul 6, 2022
B2B marketers often deliver unqualified leads, which wastes their resources and those of the sales team. How can you generate qualified leads without breaking the bank? A combination of content marketing and triggered emails enabled one B2B team to generate and auto-qualify leads. The result is a campaign that automatically delivers the company’s best sales prospects. Find out how the team drives SEO traffic and earned a 50% conversion rate on the landing page.
Why Did I Lose the Sale? 6 Win-Loss Analysis QuestionsJul 5, 2022
I’ve had the privilege of conducting “Win/Loss/No Decision Sales Cycle Analysis Studies” for leading companies including IBM, EMC, ATT, Acxiom, and PayPal. To accomplish these studies I have interviewed hundreds of C-level executives and countless mid-level managers and lower-level personnel....
Forget Virality, Selling Enterprise Software Is Still Old School | TechCrunchJun 14, 2022
Editor's note: Roman Stanek is CEO and founder of GoodData. Lately, in Silicon Valley and its counterparts around the world, disappointment has ruled the halls of companies that had a huge impact with consumers, but then fizzled as investments when they went public—Facebook’s and Zynga’s IPOs being the most notorious examples. Attention quickly moved from the consumer to the enterprise market, where Splunk, Palo Alto Networks, Workday, and LinkedIn are all humming along just fine. Entrepreneurs seeking to sell to enterprise customers should recognize that the business-to-business (B2B) market, especially with respect to IT, plays by a different set of rules than the business-to-consumer (B2C) space.
Using Buying Groups to Accelerate Your Sales ProcessJun 7, 2022
Are buying groups just another buzz word? Understand what buying groups are, how to measure them and how they can help drive more sales for your business.
Best Practices for Outbound Sales SequencesApr 14, 2022
Darryl Praill joins the Predictable Revenue Podcast to share best practices and common mistakes companies make when implementing outbound sales sequences.
The Science of Building a Scalable Sales TeamMar 16, 2022
When I came to HubSpot five years ago, I had never run a sales team, so I didn’t know the conventional techniques that sales managers use. Instead, I relied on my background as an MIT-trained engineer to create a system of hiring and development that relies on metrics and quantitative analysis. Five years later, my […]
The Sales Sandwich by @ttunguzFeb 19, 2022
The most consistent sales leader I’ve worked with hit plan 27 consecutive quarters. How can a sales leader develop similar repeatability? Much goes into it here are the reports he used to manage his team at the board level. The PQR (pipeline-to-quota) funnel is first. Pipeline is the total value of the accounts within a stage or later. Quota is the aggregate quota on the street for the quarter. Divide P by Q to get PQR.
The Sorting Hat of Sales MindsetDec 15, 2021
Practical sales tips (or "The psychology of selling" mini-summary) - DEV CoDec 5, 2021
There are many books on sales. But if you wanted to read the few most popular ones, "The pychology...
There’s Still Profit Potential in Your Low-Profit CustomersNov 11, 2021
Profit desert customers — small, low-profit customers often numbering in the tens of thousands — are an important business segment in most companies. They often amount to about 50–80% of customers and consume about 40–60% of the company’s costs. In some companies, they’re assigned to territory reps as low-revenue “C” accounts, which distracts the reps from selling more lucrative business. In all companies, they create costly complexity in functions ranging from order-taking to fulfilment to after-sales service and returns because these customers are numerous and often inexperienced. The best way to manage your profit desert customers is to cluster them under a unified management structure — a profit desert customer team — rather than having them scattered in sales reps’ portfolios throughout the company. This team should be composed of specialized sales and marketing managers who are solely focused on this customer segment. The author presents three steps these managers should take to bring latent profits to the bottom line.
What is Revenue Operations? Your Guide to RevOps SuccessJul 3, 2021
Explore all you need know to make better decisions for your revenue operations team. Learn KPI's and key term that will drive success.
Destroying Objections like a Neuro-Linguistic Programming ExpertMay 20, 2021
Paul Ross is a Master of Neuro-Linguistic Programming. He’s taught people the power of language to sell, heal, and turn pain into passion.
On Hustles - The Paris ReviewFeb 12, 2021
For all of its other moving parts, ‘White Men Can’t Jump’ relies on teasing out the part of a hustle that I am most fascinated by in real life.
How to Overcome 5 Common B2B Sales ChallengesDec 19, 2020
Generating and retaining business customers makes you deal with longer (and more complicated) sales cycles, more demanding customers, and huge amounts of data.
Simple Math to Set Up a Sales Team - Bottom Up by David SacksDec 18, 2020
How to structure quotas, compensation, and territories for a new sales team.
https://customerobjections.com/Dec 18, 2020
Beginner's Guide to Product-Qualified LeadsDec 23, 2019
Unleash the power of Product Qualified Leads to skyrocket your SaaS business growth. Learn to identify, nurture, and convert PQLs now with our guide.
But wait, there’s more: the psychology of selling - Ness LabsDec 11, 2019
Even unintentionally, you’ve probably seen one of these infomercials on TV. The presenter goes through all the supposedly amazing features of an obscure product with an excited voice, an urgent tone, as if he or she was sharing an important secret few will be lucky enough to know about. When you think the advert is ... Read More
Assembly required – 45 sales tools to build the ultimate tech stackAug 30, 2019
As your sales team grows, your tech stack almost always does too. But figuring out which sales tools you should buy can be a daunting task.
All Things Sales! 16 Mini-Lessons for Startup Founders | Andreessen HorowitzAug 30, 2019
As a former CEO and software engineer (Citrix, XenSource, VERITAS, etc.), board member of GitHub (recently acquired by Microsoft), and lecturer in management at the Stanford Graduate School of Busines, a16z general partner Peter Levine is constantly asked “Why sales?” by entrepreneurs and technical founders. He himself used to hold the “engineer-centric” view that if...
Learn How to Write Copy That SellsAug 29, 2019
Increase your sales with the tips from the Step-by-Step Copywriting Secrets.
Getting Over Your Fear of Cold Calling CustomersAug 29, 2019
Research shows that 48% of B2B salespeople are afraid of making cold calls. There are typically two central fears: 1) fear of sounding like a sales person; and 2) fear of failure. Overcoming the fear of sounding like a salesperson is a simple matter of accepting that you actually are a sales professional and that that sales is an honorable profession. When you dial someone’s phone number or walk into their office, remember this: You are there to help them improve their lives and businesses. Until you understand this simple concept, you’re going to be anxious and fearful about cold calling. Sometimes the fear of cold-calling comes from a limiting belief that we simply won’t be successful at it, which creates anxiety and leads to a destructive self-fulfilling prophecy. The key to getting better at cold-calling is to simply get more accustomed to it, so your body does not perceive fear. And the best way to do that? Role playing. You don’t need to have an Oscar-worthy performance – you just need to remind your brain that there’s nothing to be afraid of. The more accustomed you get to cold-calling, the more confident you’ll be, which creates a more productive, positive, self-fulfilling prophecy.
5 Things I Learned as a Door-to-Door SalespersonJan 31, 2019
The experience was surreal and taught me a lot about the world, in the way that only personal experience in a difficult task can.
How This 4-Step Sales Process Has Earned Me $5 Million in the Last 18 MonthsOct 11, 2018
Sales gets a bad rap, but it's essential to your business.
Why You Don’t Know the Price Until You SellSep 30, 2018
On abnormal markets and how to prevent forced selling.
How to Conduct a Win/Loss Analysis with Zach GoldenAug 24, 2008
Collin interviews Zach Golden, from Anova Consulting Group, to uncover the value and intricacies of win-loss analysis in sales.
sankey
Hands-on Guide to Create beautiful Sankey Charts in d3js with Python.Oct 21, 2022
The Sankey chart is a great way to discover the most prominent contributions just by looking at how individual items flow across states.
Sankey Diagram: Transform Your Data Flows into InsightsJun 23, 2022
A Sankey diagram is a collection of nodes which are connected with each other to show data flow or hierarchical data connected from one to another.
What type of Data Does a Sankey Diagram Generally Use?Jun 23, 2022
Data visualization breaks down complex data values into simple and flexible elements that you can easily deal with without being worried.
d3/d3-sankey: Visualize flow between nodes in a directed acyclic network.Jul 13, 2021
Visualize flow between nodes in a directed acyclic network. - d3/d3-sankey
Sankey example - Google SheetsJul 10, 2021
sap
All SAP Transaction Codes with Report and DescriptionSep 10, 2022
Here you can see all SAP transaction codes and the called reports including a short header description.
SAP Library - SAP LibrarySep 10, 2022
SAP IBP | Five reasons to consider IBP over APO | Intelligent Planning by MSep 28, 2021
SAP IBP offers powerful tools for business planning to replace SAP APO. Learn how our company can benefit from SAP Integrated Business Planning.
Useful List Of APO Transaction CodesApr 14, 2021
sarcasm
Sarcasm self-defeatsFeb 23, 2026
Sarcasm is an easy way to amplify feedback. It has two hidden costs: It reveals low status. People with power don’t need to use sarcasm to make a point. If you want to lead with status, using…
Sarcasm Spurs Creative ThinkingFeb 18, 2021
Although snarky comments can cause conflict, a little verbal irony also stimulates new ideas.
sass
The Marketing Stack of a Lazy Saas CompanyJun 23, 2022
How we're using technology and automation to turn high-quality leads into product demos for our business development team.
Implementing Usage-Based Pricing: What Your Financial Teams Need to KnowMar 14, 2022
I joined Datadog as VP Finance back in 2015 when the company was still very small. Back then, the company had about 100 employees, was making around $20
10 Awesome Sass Libraries You Should Know AboutJul 5, 2018
We share with you a collection of interesting Sass libraries that you should check out.
satellite
NASA Just Recorded the First High-Res Imagery of a Tsunami From SpaceDec 4, 2025
The mental picture of a tsunami is usually a giant wall of water building across the ocean and crashing onto shore...
A classified satellite network is emitting a mysterious signal : NPROct 17, 2025
An amateur satellite tracker stumbled across the signal which is coming from Starshield satellites in a "hidden" part of the radio spectrum.
Antenna Innovations Come in Sizes Ranging from a Stamp to a School BusSep 4, 2025
In this roundup, we spotlight small, medium, and large antenna announcements fortifying communication across industries, from drones to satellites.
It’s hunting season in orbit as Russia’s killer satellites mystify skywatchersJul 16, 2025
“Once more, we play our dangerous game—a game of chess—against our old adversary.”…
Unprecedented Starlink ReentriesMar 8, 2025
Feb. 5, 2025 (Spaceweather.com): What goes up, must come down–which could be a problem when you’re launching thousands of satellites. Since 2018, SpaceX has placed more than 7,000 Starl…
A transport protocol’s view of StarlinkMay 23, 2024
How TCP interacts with the characteristics of the Starlink service.
Buying Satellite Imagery of Ukraine Is Dangerously EasyMar 18, 2024
A Ukrainian military source believes that Russia’s long-range strikes are aimed using satellite imagery provided by U.S. companies.
Transparent Pricing for Commercial Earth Observation Imagery | SkyFiJan 22, 2023
SkyFi offers straightforward pricing with small area of interest flexibility. Our web and mobile app also has transparent dynamic pricing – no email required.
UkraineX: How Elon Musk’s space satellites changed the war on the groundJun 11, 2022
From artillery strikes to Zoom calls, the tech billionaire’s internet service has become a lifeline in the fight against Russia.
The Craft of Artisanal Computer ManufacturingFeb 25, 2022
Stefany Allaire has carved a niche in small-batch, retro-inspired computers
Network topology design at 27,000 km/hr | APNIC BlogFeb 29, 2020
Guest Post: Computer scientists are proposing a novel network design that could double the network capacity of low-flying satellite Internet systems.
From Mauritius to Sudan You Told Us Where To Look. Here Are the ResultsOct 24, 2011
Satellite imagery is increasingly used by open source researchers to analyse conflict,natural disasters, mining activities and even construction work. With the help of Planet Labs PBC and Umbra Space, Bellingcat can take a snapshot of anywhere in the world by “tasking” their satellites to take an image at up to 25-centimetre resolution. Bellingcat asked you, […]
sayingno
The Ancient Art of Saying No: Plutarch's Guide to Breaking Free from People-PleasingNov 19, 2024
Ever feel like you can’t say no? Like you’re constantly doing things you don’t want to to avoid letting others down or having them think less of you? You’re not alone. Saying no to people’s requests is something I’ve had to work on throughout my adult life. I know a lot of other people who […]
Product strategy means saying noJul 19, 2022
If you're building a product, you have to be great at saying No. Not 'maybe' or 'later'. The only word is No. Building a great product isn't about creating tons of tactically useful features which are tangentially related. It's about delivering a cohesive product with well defined parameters.
scala
Programming in Scala ResourcesNov 20, 2025
scams
The Great Zelle Pool ScamJul 26, 2024
In search of a status symbol, I wound up getting ripped off big-time. But the real scam is how America's payment apps treat their customers.
Con-Culture Experts On the History and Future of ScammingMay 20, 2024
2018’s ‘Summer of Scam’ was just the latest in a strong American tradition.
scarcity
The Surprising Psychology That Makes Starbucks’ Pumpkin Spice Latte IrresistibleOct 17, 2024
I have a confession to make - I’m a huge Starbucks fan. I know in some of your eyes that might make me basic or tacky or “very American,” but it’s the truth. I grew up watching Friends and Frasier and both shows made the idea of going to a “coffee shop” seem like an
Harvard's Sendhil Mullainathan on behavior and poverty | Harvard MagazineJul 19, 2022
A behavioral economist’s fresh perspectives on poverty
Pliny the Elder: A case study in scarcity marketing - MarketplaceJul 18, 2022
Pliny the Elder inspires beer hunters around the world to search for just one bottle.
Positional ScarcityJul 18, 2022
Each day on Tech Twitter, we get up in the morning, open up the website, and then go see what it is we’re mad about. A few days ago, it was this: The concept of “pay to get a better place in l…
Pro sport team sales are driven by the law of scarcityJun 25, 2022
This is a luxury toy collection at a level above yachts or private islands.
scifi
The God Man - Full Film (9.5min)Aug 27, 2025
Check out the film's original score by Jason Stamatyades here: https://jasonstam.bandcamp.com/album/the-god-man-original-motion-picture-scoreThe God Man Full...
8 Sci-Fi Book Series That Are Considered MasterpiecesJul 2, 2025
These sci-fi book series are brilliant.
The 100 best sci-fi movies of all timeApr 11, 2025
From clones to alien invasions – picked by scientists, filmmakers and writers
“3 Body Problem” Is a Rare Species of Sci-Fi EpicMar 18, 2024
The Netflix adaptation of Liu Cixin’s trilogy mixes heady theoretical questions with genuine spectacle and heart.
The Best of Science Fiction | Five Books recommendsMay 8, 2023
The best sci fi books, recommended by those who know: from timeless classics of science fiction to the best new novels, taking in cli-fi, space colonies, time travel and more.
SpaceBalls AlienApr 13, 2023
It's just like in the Ridley Scott classic film... just with a little more style!
The Best Science Fiction is Real: Realistic Sci-Fi to TBRApr 1, 2023
Red your way into the best realistic science fiction, ranging from well-known classics to lesser known gems.
🛰️ Liu Cixin's technologies of the future | vincelwt.comJan 13, 2023
Highlight of cool technologies mentioned in "The Dark Forest".
Stream 47 Hours of Classic Sci-Fi Novels & Stories: Asimov, Wells, Orwell,Dec 21, 2022
The pronouncements of French theorist Jean Baudrillard could sound a bit silly in the early 1990s, when the internet was still in its infancy, a slow, clunky technology whose promises far exceeded what it could deliver.
Another ‘Three-Body’ Animation Wins Praise From Sci-Fi FansDec 13, 2022
The two episodes released so far have gained more than 100 million views combined on streaming platform Bilibili.
20 of the Best Science Fiction Books of All Time | Book RiotAug 14, 2022
The best science fiction books of all time push the envelope, show what could be, and make you question what's possible.
The Most Influential Sci-Fi Books Of All TimeAug 14, 2022
The most influential sci-fi books of all time examine humanity's longest-held hopes and deepest, most visceral fears.
20 Must-Read Genre-Bending Sci-Fi Books | Book RiotAug 14, 2022
From sci fi romance to science fantasy and sci fi horror, those genre-blending science fiction books have something for every reader.
Outer Sight: The Best Science Fiction Books You've Never Heard ofAug 14, 2022
These hidden gems are all great works of imagination set near and far that you need to add to your TBR ASAP.
Science Fiction Dictionary: Terms, Ideas and TechnologyJul 18, 2022
Dictionary of 3,300+ science fiction inventions, devices and technology from 1,000+ novels and stories by more than 300 authors from Adams to Zelazny.
scikit-image
Image Processing with Python — Using RG ChromaticityFeb 1, 2021
How to use the Gaussian Distribution for Image Segmentation
Image Processing with Python — Template Matching with Scikit-ImageJan 30, 2021
How to identify similar objects in your image
Image Processing with Python — Blob Detection using Scikit-ImageJan 28, 2021
How to identify and segregate specific blobs in your image
Image Processing with Python — Blurring and Sharpening for BeginnersJan 2, 2021
How do you apply convolution kernels to colored images?
Introduction to Image Processing with Python — Dilation and Erosion for BegDec 29, 2020
A deeper look into the fundamentals of image dilation and erosion with the use of kernels.
General examples — skimage v0.17.2 docsDec 18, 2020
scikit-learn
Olivier Grisel - Predictive survival analysis with scikit-learn, scikit-survival and lifelinesMar 2, 2025
Tune In: Decision Threshold Optimization with scikit-learn’s TunedThresholdMay 28, 2024
Use cases and code to explore the new class that helps tune decision thresholds in scikit-learn.
skfolio/skfolioJan 15, 2024
Python library for portfolio optimization built on top of scikit-learn - skfolio/skfolio
iryna-kondr/scikit-llm: Seamlessly integrate LLMs into scikit-learn.Aug 31, 2023
Seamlessly integrate LLMs into scikit-learn.
Sklearn Pipelines for the Modern ML Engineer: 9 Techniques You Can’t IgnoreMay 31, 2023
Master Sklearn pipelines for effortless and efficient machine learning. Discover the art of building, optimizing, and scaling models with ease. Level up your data preprocessing skills and supercharge your ML workflow today
Make your sklearn models up to 100 times fasterMar 17, 2023
How to considerable reduce training time changing only 1 line of code
skops: a new library to improve scikit-learn in productionFeb 2, 2023
There are various challenges in MLOps and model sharing, including, security and reproducibility. To tackle these for scikit-learn models, we've developed a new open-source library: skops. In this article, I will walk you through how it works and how to use it with an end-to-end example.
7 Scikit-Learn Best Practices For Data ScientistsJan 13, 2023
Tips for taking full advantage of this machine learning package
2 Ways to Build Your Own Custom Scikit Learn TransformersOct 30, 2022
How you can (and why you should) create custom transformers
Scikit-learn 1.1 Comes with an Improved OneHotEncoderOct 24, 2022
A simple yet highly practical feature
Converting Text Documents to Token Counts with CountVectorizerOct 19, 2022
The post explains the significance of CountVectorizer and demonstrates its implementation with Python code.
Build Complex Time Series Regression Pipelines with sktimeJul 13, 2022
How to forecast with scikit-learn and XGBoost models with sktime
scikit-learn-contrib/imbalanced-learn: A Python Package to Tackle the Curse of Imbalanced Datasets in Machine LearningJun 21, 2022
A Python Package to Tackle the Curse of Imbalanced Datasets in Machine Learning - scikit-learn-contrib/imbalanced-learn
Reproducible ML: Maybe you shouldn’t be using Sklearn’s train_test_splitJun 21, 2022
Reproducibility is critical for robust data science — after all, it is a science.
One Line of Code to Accelerate Your Sklearn Algorithms on Big DataMay 27, 2022
The introduction of the intel sklearn extension. Make your Random Forest even faster than XGBoost.
scikit-learn/README.md at master · bjpcjp/scikit-learnFeb 7, 2022
Updates in progress. Jupyter workbooks will be added as time allows. - bjpcjp/scikit-learn
python-data-science-handbook/scikit/SciKit-Feature-Engineering.ipynb at master · bjpcjp/python-data-science-handbookFeb 7, 2022
Sourced from O'Reilly ebook of the same name.
scikit-and-tensorflow-workbooks/ch03-classification.ipynb at master · bjpcjp/scikit-and-tensorflow-workbooksJan 29, 2022
based on "Hands-On Machine Learning with Scikit-Learn & TensorFlow" (O'Reilly, Aurelien Geron) - bjpcjp/scikit-and-tensorflow-workbooks
scikit-learn/64_imputation.ipynb at master · bjpcjp/scikit-learnJan 17, 2022
Updates in progress. Jupyter workbooks will be added as time allows. - bjpcjp/scikit-learn
python-data-science-handbook/scikit/SciKit-Kernel-Density-Estimation.ipynb at master · bjpcjp/python-data-science-handbookJan 17, 2022
Sourced from O'Reilly ebook of the same name.
scikit-learn/63_preprocessing.ipynb at master · bjpcjp/scikit-learnJan 16, 2022
Updates in progress. Jupyter workbooks will be added as time allows. - bjpcjp/scikit-learn
scikit-learn/62a_text_feature_extraction.ipynb at master · bjpcjp/scikit-learnJan 12, 2022
Updates in progress. Jupyter workbooks will be added as time allows. - bjpcjp/scikit-learn
A Practical Introduction to 9 Regression AlgorithmsSep 28, 2021
Hands-on tutorial to effectively use different Regression Algorithms
What Is The Difference Between predict() and predict_proba() in scikit-learSep 16, 2021
How to use predict and predict_proba methods over a dataset in order to perform predictions
Scikit-Learn Version 1.0Sep 14, 2021
For a short description of the main highlights of the release, please refer to Release Highlights for scikit-learn 1.0. Legend for changelogs something big that you couldn’t do before., something t...
scikit-learn-intelex · PyPIJul 20, 2021
Intel(R) Extension for Scikit-learn is a seamless way to speed up your Scikit-learn application.
11 Dimensionality reduction techniques you should know in 2021May 5, 2021
Reduce the size of your dataset while keeping as much of the variation as possible
Deep In Singular Value DecompositionApr 30, 2021
There are often times when working in Data Science where we might come across a feature that is very difficult to interpret by a computer. This is often because the dimensions of the data are much…
A Summary of Active Learning FrameworksApr 28, 2021
If you are dealing with a classification task, I recommend the modAL. As for the sequence labeling task, the AlpacaTag is the only choice for you. Active learning could decrease the number of labels…
How to create custom scikit-learn classification and regression modelsApr 15, 2021
Scikit learn is *the* go to package for standard machine learning models in Python. It not only provides most of the core algorithms that…
11 Times Faster Hyperparameter Tuning with HalvingGridSearchApr 12, 2021
Successive halving completely crushes GridSearch and RandomSearch
Data Science Plumbing: Peeking Into Scikit-Learn PipelinesMar 30, 2021
Have you ever wondered how to extract information from a scikit-learn pipeline?
The Ultimate Scikit-Learn Machine Learning Cheatsheet - KDnuggetsJan 28, 2021
With the power and popularity of the scikit-learn for machine learning in Python, this library is a foundation to any practitioner's toolset. Preview its core methods with this review of predictive modelling, clustering, dimensionality reduction, feature importance, and data transformation.
New Features of Scikit-Learn. An Overview of the Most Important… | by AnkitJan 8, 2021
An Overview of the Most Important Features in Version 0.24
Make kNN 300 times faster than Scikit-learn’s in 20 lines!Nov 3, 2020
Using Facebook faiss library for REALLY fast kNN
How to Extend Scikit-learn and Bring Sanity to Your Machine Learning Workflow - KDnuggetsDec 14, 2019
In this post, learn how to extend Scikit-learn code to make your experiments easier to maintain and reproduce.
reiinakano/scikit-plot: An intuitive library to add plotting functionalityJun 8, 2018
An intuitive library to add plotting functionality to scikit-learn objects. - reiinakano/scikit-plot
Integrating LLMs with Scikit-Learn Using Scikit-LLMOct 24, 2007
Combining LLM reasoning for text-based models in Scikit-Learn.
scipy
NumPy vs SciPy: When to Use Each for Statistical ComputingAug 22, 2025
Learn when to use NumPy vs SciPy for statistical computing with practical examples and decision frameworks.
Probability Distributions with Python’s SciPyOct 23, 2021
How to Model random Processes with Distributions and Fit them to Observational Data
SciPy 1.0: fundamental algorithms for scientific computing in Python | NatuFeb 12, 2020
Nature Methods - This Perspective describes the development and capabilities of SciPy 1.0, an open source scientific computing library for the Python programming language.
seaborn
10 Python One-Liners for Statistical PlottingJul 29, 2025
Master fast, powerful ways to visualize data with these compact, ready-to-use Python one-liners.
5 Useful Visualizations to Enhance Your AnalysisMar 24, 2024
Use Python’s statistical visualization library Seaborn to level up your analysis.
5 Ways to use a Seaborn Heatmap (Python Tutorial)Oct 30, 2022
Using a heatmap to visualise a confusion matrix, time-series movements, temperature changes, correlation matrix and SHAP interaction values
5 Ways to Transform Your Seaborn Data VisualisationsOct 30, 2022
Simple and easy pieces of code to enhance your seaborn scatter plots
10 Must-know Seaborn Functions for Multivariate Data Analysis in PythonMay 7, 2022
Learn how to visualize data using Seaborn’s axes-level and figure-level plots
Best Seaborn Visualizations for Data ScienceApr 29, 2022
Exploring some of the best visualization options for data science projects with the Seaborn library
python-data-science-handbook/seaborn at master · bjpcjp/python-data-science-handbookJan 16, 2022
Sourced from O'Reilly ebook of the same name.
Example gallery — seaborn 0.13.2 documentationJan 16, 2022
3 Python Visualization Libraries You MUST Know as A Data ScientistApr 19, 2020
In real life, data preprocessing is really a pain for most data scientists. But with the help of data visualization libraries, it actually…
Dynamic subplot layout in SeabornApr 19, 2020
Seaborn is one of the most used visualization libraries and I enjoy working with it. In my latest projects, I wanted to visualize multiple…
The Ultimate Python Seaborn Tutorial: Gotta Catch 'Em AllSep 25, 2017
In this step-by-step Python Seaborn tutorial, you'll learn how to use one of Python's most convenient libraries for data visualization.
search
Probabilistic Nearest Neighbor Search: The Swiss Army Knife of GenAIFeb 10, 2026
ANN — Approximate Nearest Neighbors — is at the core of fast vector search, itself central to GenAI, especially GPT and LLM. My new methodology, abbreviated as PANN, has many other app…
The Psychology of AI SERPs and ShoppingDec 29, 2025
The rise of "zero-click" searches may signal the coming effect of AI shopping on product discovery and decision-making.
Some surprising things about DuckDuckGo you probably don't knowDec 14, 2025
We have hundreds of easter-egg logos (featuring our friendly mascot Dax Brown) that surface when you make certain queries on our search engine. Our subreddit is trying to catch ‘em all. They’ve certainly caught a lot, currently 504, but we keep adding more so it’s a moving target. The total as of this post is 594. I’m the one personally adding them in my spare time just for fun and I recently did a
Making 10M government PDF documents searchableNov 26, 2025
Government organizations love to distribute documents as PDF files. They are easy to forward and to print. The problem is when you want to find and access them later among millions of other files. …
How to Remove a Web Page from GoogleOct 20, 2025
The reasons for deindexing a page haven't much changed over the years, although the tools and tactics have evolved.
Enough is enough—I dumped Google’s worsening search for KagiAug 8, 2025
Enough is enough: I’ve jettisoned Google in favor of a search engine that doesn’t treat me like a product.
DeepMind unveils AlphaEarth to map planet in 10-meter detailJul 31, 2025
Google DeepMind has announced a new artificial intelligence system, AlphaEarth Foundations, designed to analyze the Earth's surface by integrating vast
Surprising no one, new research says AI Overviews cause massive drop in search clicksJul 24, 2025
The Pew Research Center analysis shows how hard AI is hitting web traffic.
ibnaleem/gosearch: 🔍 Search anyone's digital footprint across 300+ websitesJul 22, 2025
🔍 Search anyone's digital footprint across 300+ websites - ibnaleem/gosearch
🔍 Perplexity 101: Ultimate Guide to Deep Search, Labs, Templates & 53 Pro PromptsJul 13, 2025
Your complete playbook for transforming how you research with AI's most powerful search engine
37 Things I Learned About Information Retrieval in Two Years at a Vector Database Company – Leonie MonigattiJul 4, 2025
From BM25 to RAG: Everything I learned about vector databases, embedding models, and vector search - and everything in between.
How I Made Google’s “Web” View My Default SearchMay 12, 2025
Forget AI. Google just created a version of its search engine free of the extra junk it has added over the past decade-plus. You just need one URL parameter.
Google Attracts 1.6 Trillion Visitors Or 34x Compared To ChatGPT As It Dominates Search Engine BattleMay 8, 2025
Despite rapid growth, AI chatbots are yet to make a dent to search engines says fresh data. Take a look here for more!
Improving Recommender Systems & Search in the Age of LLMsMar 22, 2025
Model architectures, data generation, training paradigms, and unified frameworks inspired by LLMs.
Kagi Search - A Premium Search EngineMar 19, 2025
Better search results with no ads. Welcome to Kagi (pronounced kah-gee), a paid search engine that gives power back to the user.
Branded search and SEO: What you need to knowMar 2, 2025
Branded search is more than just your company name on Google. Here's how to capture intent and rank for the queries that matter.
Find out who’s behind any phone number with this free lookup tool - Fast CompanyJan 5, 2025
The free resource helps you see the name associated with any number in seconds flat.
ChatGPT search vs. Google: A deep dive analysis of 62 queriesDec 26, 2024
A detailed analysis of ChatGPT search and Google's performance across 62 queries, with scoring metrics and practical examples.
Common Crawl Web Graph StatisticsDec 18, 2024
Visualisations and metrics from the Common Crawl Web Graph dataset
Understanding the BM25 full text search algorithmNov 20, 2024
BM25 is a widely used algorithm for full text search. I wanted to understand how it works, so here is my attempt at understanding by re-explaining.
How to Reverse Image Search With Google ImagesOct 27, 2024
You can use images to do Google Searches too.
Crawlers And Agents And Bots, Oh My: Time To Clarify Robots.txtJul 4, 2024
Perplexity is an up-and-coming AI company that has broad ambition to compete with Google in the search market by providing answers to user queries with AI as its core technology. They’ve been…
A Roaringish phrase search algorithmJul 3, 2024
How phrase search works in search array by intersecting roaring-like numpy arrays.
What AI Engineers Need to Know about SearchJun 28, 2024
All that lexical search context you need to build that RAG app
BM25S: A Python Package that Implements the BM25 Algorithm for Ranking DocuJun 23, 2024
In the era of vast data, information retrieval is crucial for search engines, recommender systems, and any application that needs to find documents based on their content. The process involves three key challenges: relevance assessment, document ranking, and efficiency. The recently introduced Python library that implements the BM25 algorithm, BM25S addresses the challenge of efficient and effective information retrieval, particularly the need for ranking documents in response to user queries. The goal is to enhance the speed and memory efficiency of the BM25 algorithm, a standard method for ranking documents by their relevance to a query. Current methods for implementing
Can You Replace Google Search With Reddit? I Tried It for a WeekJun 19, 2024
Frustrated by their Google searches, people are funneling their queries to a site that isn’t a search engine at all.
ooh.directory: a place to find good blogs that interest youJun 17, 2024
A collection of 2,311 blogs about every topic
May 2024 Crawl Archive Now AvailableJun 4, 2024
The crawl archive for May 2024 is now available. The data was crawled between May 18th and May 31st, and contains 2.7 billion web pages (or 377 TiB of uncompressed content). This is our 100th crawl!
Massive 2,500-Page Google Document Leaked, Exposing Secret Search Ranking AMay 30, 2024
A Google document has leaked online that aims to include thousands of APIs aiming to rank better on Google Search for ranking.
Secrets from the Algorithm: Google Search’s Internal Engineering DocumentatMay 29, 2024
Learn what you always wish you knew about Google's algorithms.
An SQL Vector Database To Enhance Text Search: How We Did ItMay 28, 2024
Performance testing shows integrating Tantivy’s full-text search engine library into vector search significantly improves speed and performance.
OpenAI’s ChatGPT-powered search engine to be introduced next weekMay 11, 2024
The search engine war is heating up. ChatGPT may introduce its search engine, which will rival Google, on Monday. Although
Perplexity’s latest partnership set to power SoundHound’s voice assistantMay 11, 2024
For Perplexity, the partnership with SoundHound marks the addition of another strong distribution channel expanding the reach of its LLM-driven search capabilities.
Perplexity AI: Exploring AI-powered search beyond GoogleApr 29, 2024
Perplexity's AI-powered search experience challenges Google's model by delivering conversational answers, citing sources and more.
Google Search Parameters (2024 Guide)Apr 23, 2024
The Google Search URL parameters are important to understand whether you are maximizing the...
How 16 Companies are Dominating the World’s Google Search Results (2023 EdiMar 11, 2024
A deep-dive into how far fewer companies than you think have taken a hold of Google's search results.
PerplexityMar 1, 2024
Perplexity is a free AI-powered answer engine that provides accurate, trusted, and real-time answers to any question.
Full-Text Search for Ruby on Rails with LitesearchFeb 15, 2024
In part six of our series, we'll use Litesearch, the last piece of the puzzle in LiteStack.
ChatGPT Prompts for Customer PersonasJan 23, 2024
Identify and target personas of keywords, competitors, Reddit discussions, and more.
9 strategies for removing negative content from the webJan 16, 2024
Here are ways to remove webpages and online posts harmful to your brand – from privacy claims and copyright notices to legal measures.
Reddit Is a Marketing GoldmineJan 16, 2024
Reddit posts reveal brand awareness, sentiment, and more. Increasingly they appear in Google search results.
How Google Search and ranking works, according to Google’s Pandu NayakJan 12, 2024
Learn how indexing, algorithms, deep learning systems, human raters, click and query data, and more shape Google's Search results.
7 reasons to replace advanced search with filters so users can easily findAug 27, 2023
Adam Silver – interaction designer - London, UK
Similarity Search, Part 4: Hierarchical Navigable Small World (HNSW) | by VJul 28, 2023
Hierarchical Navigable Small World (HNSW) is a state-of-the-art algorithm used for an approximate search of nearest neighbours. Under the…
Similarity Search, Part 3: Blending Inverted File Index and Product QuantizJul 28, 2023
In the first two parts of this series we have discussed two fundamental algorithms in information retrieval: inverted file index and…
Building a Vector Search Engine Using HNSW and Cosine SimilarityJul 27, 2023
Hierarchical Navigable Small World graphs (HNSW) is an algorithm that allows for efficient nearest neighbor search, and the Sentence…
Similarity Search, Part 1: kNN & Inverted File IndexJul 27, 2023
Similarity search is a popular problem where given a query Q we need to find the most similar documents to it among all the documents D.
Similarity Search, Part 2: Product QuantizationJul 27, 2023
Learn a powerful technique to effectively compress large data
Similarity Search, Part 5: Locality Sensitive Hashing (LSH)Jul 27, 2023
Explore how similarity information can be incorporated into hash function
Similarity Search, Part 6: Random Projections with LSH ForestJul 27, 2023
Understand how to hash data and reflect its similarity by constructing random hyperplanes
Similarity Search, Part 7: LSH CompositionsJul 27, 2023
Dive into combinations of LSH functions to guarantee a more reliable search
Top 5 Gems for Implementing a Search Engine in a Rails AppJul 23, 2023
Thanks to gems, it is easy to implement a search engine into Rails applications. Of course, you have to choose which gem to use. While there are countless options, four stand out as the best. You will be happy with any of these options.
Introduction to Vector Similarity SearchJul 14, 2023
Learn what vector search is and the metrics pertinent to decide the distance (or similarity) between objects.
Advanced Search UX Done Right — Powerful Examples and TipsJun 30, 2023
Learn about designing advanced search features. Explore key elements of search UI and build a user-friendly search input.
eBay’s Blazingly Fast Billion-Scale Vector Similarity EngineMay 2, 2023
The Similarity Engine's use cases include item-to-item similarity for text and image modality and user-to-item personalized recommendations based on a user’s historical behavior data.
Discoverability in UX and UI Design — 9 Techniques to TryApr 13, 2023
Try those 9 techniques and improve discoverability in your product. Make your users happy and create a smooth ux for them.
The Future of Ecommerce: How a Product Becomes a PurchaseMar 24, 2023
General Partner Connie Chan on how leading brands are using AI and other technology to combine the serendipitous discovery of offline shopping with the infinite options of online shopping. Today, most of the Western world revolves around search-based online commerce. This means that most shoppers type directly what they want into a store search bar,...
A different approach to fuzzy findingMar 19, 2023
Yandex ‘leak’ reveals 1,922 search ranking factorsJan 27, 2023
SEOs have already started analyzing Yandex's search ranking factors, which include PageRank and several other link-related factors
DuckDuckGo Search Syntax | DuckDuckGo Help PagesJan 26, 2023
Learn how to use syntax on DuckDuckGo Private Search to get the search results you want.
Milvus · An Open Source Vector Similarity Search Engine - 开源向量相似度搜索引擎Dec 28, 2022
Open-source vector database built for GenAI applications. Install with pip, perform high-speed searches, and scale to tens of billions of vectors.
Whitepages - Search, Find, Know | The largest and most trusted online direcDec 21, 2022
Whitepages | Find accurate phone numbers, addresses and emails from the most trusted U.S. white pages phone directory and address lookup since 1997.
[1702.04680v1] Visual Discovery at PinterestDec 21, 2022
Over the past three years Pinterest has experimented with several visual search and recommendation services, including Related Pins (2014), Similar Looks (2015), Flashlight (2016) and Lens (2017)....
matsui528/nanopq: Pure python implementation of product quantization for nearest neighbor searchOct 14, 2022
Pure python implementation of product quantization for nearest neighbor search - matsui528/nanopq
Product Quantization for Similarity SearchOct 14, 2022
How to compress and fit a humongous set of vectors in memory for similarity search with asymmetric distance computation (ADC)
IVFPQ HNSW for Billion-scale Similarity Search | by Peggy Chang | TowardsOct 14, 2022
The best indexing approach for billion-sized vector datasets
Similarity Search with IVFPQOct 14, 2022
Find out how the inverted file index (IVF) is implemented alongside product quantization (PQ) for a fast and efficient approximate nearest…
NSVQ: Improved Vector Quantization technique for Neural Networks TrainingOct 13, 2022
Efficient vector quantization for machine learning optimizations (eps. vector quantized variational autoencoders), better than straight…
19 advanced Google search operators you need to knowOct 3, 2022
Gain powerful insights to inform your marketing efforts. Use the following advanced Google search operators and commands to your advantage.
What is semantic search: A deep dive into entity-based searchOct 1, 2022
Semantics = theory of meaning, yet most define semantic search with a focus on intent. “Meaning” is not the same as “intention.” Learn more.
25 Free Tools to Test Your WebsiteSep 27, 2022
This all-new update to our popular resource includes tools to evaluate page speed, security, accessibility, regulatory compliance, code, and more.
I tried replacing Google with TikTok, and it worked better than I thoughtSep 24, 2022
TikTok won’t kill Google yet, but it’s a new and fun way to think about search.
For Gen Z, TikTok Is the New Search Engine (Published 2022)Sep 22, 2022
Need to find a restaurant or figure out how to do something? Young people are turning to TikTok to search for answers. Google has noticed.
[P] My co-founder and I quit our engineering jobs at AWS to build “Tensor Search”. Here is why.Sep 22, 2022
530 votes, 63 comments. My co-founder and I, a senior Amazon research scientist and AWS SDE respectively, launched Marqo a little over a week ago - a…
YaCy – your own search engine | Hacker NewsSep 18, 2022
40,000 Recipes for MurderSep 10, 2022
Two scientists inadvertently open the Pandora’s Box of WMDs. What now?
How to Search in Less CommandSep 8, 2022
The less command is excellent for reading large text files. It also allows you to search for text in it. Here's what you need to know about searching in less.
A primer on Roaring bitmaps: what they are and how they workSep 5, 2022
A detailed primer on Roaring bitmaps explaining what they are, how they're different from traditional bitmaps, and how they work internally.
Build a Custom Search EngineAug 9, 2022
Build a personalised search engine with Google's search API. Just a heads up that this is not...
Neil Patel's Digital Marketing BlogJul 19, 2022
Your #1 resource for digital marketing tips, trends, and strategy to help you build a successful online business.
Trademark Search, Free, for Millions of Registered Trademarks with USPTO | TrademarkiaJul 18, 2022
Trademarkia provides a free, fast, user friendly search of USPTO registered trademarks. Also, with trademark registration you can protect your brand in 180+ countries. Fast and easy. Starts at $99.
Google Search Operators: The Complete List (44 Advanced Operators)Jul 18, 2022
They're super powerful.
SEO How-to, Part 2: Understanding Search EnginesJul 18, 2022
Nearly half of shoppers turn to Google before deciding what to buy and where to buy it. Understanding how Google and other search engines work can help you choose which optimization strategies to apply. This post is the second installment in my "SEO How-to" series.
The World of Black-Ops Reputation Management -- New York Magazine - NymagJul 5, 2022
I watched online as a college classmate went from disgrace to redemption in months. That’s when I found myself deep in the world of black-ops reputation management.
Full-text Search with Elasticsearch in RailsJul 5, 2022
If you're finding performance bottlenecks with full-text search in your database, it may be time to switch to Elasticsearch. In this tutorial, Ianis introduces Elasticsearch and shows us how to implement an efficient ...
How to build B2B recommendation engines from competitor’s alternativesJun 28, 2022
Without driving yourself crazy
John Battelle's Search Blog The Database of Intentions Is Far Larger Than I ThoughtJun 27, 2022
Way back in November of 2003, when I was a much younger man and the world had yet to fall head over heels in love with Google, I wrote a post called The Database of Intentions. It was an attempt to…
Privacy-focused Brave Search grew by 5,000% in a yearJun 22, 2022
Brave Search, the browser developer's privacy-centric Internet search engine, is celebrating its first anniversary after surpassing 2.5 billion queries and seeing almost 5,000% growth in a year.
Find a good available .com domain | Derek SiversJun 13, 2022
A Face Search Engine Anyone Can Use Is Alarmingly AccurateMay 30, 2022
PimEyes is a paid service that finds photos of a person from across the internet, including some the person may not want exposed. “We’re just a tool provider,” its owner said.
Similarity-Based Image Search for Visual ArtMay 28, 2022
Evaluating similarity of visual art from both human perceptual & quantitative judgments
The Future of Search Is Boutique | FutureMay 18, 2022
The way to improve search is not to mimic Google, but instead to build boutique search engines that index, curate, and organize things in new ways.
Reddit rolls out new search improvements, including the ability to search cMay 6, 2022
Reddit announced it's rolling out the ability to search comments, alongside a few other search-related features.
What Internet Search Patterns Can Teach Us About CopingJan 25, 2022
I analyzed thousands of searches by people who were diagnosed with cancer. Their queries offer valuable lessons that could improve the way doctors treat patients.
7 things I wish every search box didJan 23, 2022
It’s one thing to say “let’s have search” and draw a box with a magnifying glass on the right. It’s a whole other task to implement good search.
Full Text Search in Milliseconds with Rails and PostgreSQLJan 17, 2022
This article shows how to optimize a Full Text Search implementation with Rails and PostgreSQL, taking a single query from 130ms to 7ms.
Forestry.io CMSJan 17, 2022
The Forestry.io team is now focused on building TinaCMS. If you wish to migrate your Forestry site to Tina, follow the guide below.
GitHub Awesome SearchJan 17, 2022
Elastic Stack: (ELK) Elasticsearch, Kibana & LogstashDec 15, 2021
Reliably and securely take data from any source, in any format, then search, analyze, and visualize it in real time.
Adding Cloudant search to your static Jekyll blogDec 15, 2021
Making a static HTML website have dynamic search
Vue.js And SEO: How To Optimize Reactive Websites For Search Engines And Bots — Smashing MagazineDec 14, 2021
Do websites created with reactive frameworks get indexed by Google and other search engines? Is it compulsory to set up pre-rendering, as your SEO consultants suggest? Or are they wrong? In this article, Paolo Mioni will talk mostly about Vue.js, since it is the framework he’s used most, and with which he has direct experiences in terms of indexing by the search engines on major projects, but most of what will be covered is valid for other frameworks, too.
https://www.webslake.com/article/customizing-design-of-google-custom-search-box-using-css/Dec 13, 2021
Recognize Strategic Opportunities with Long-Tail DataDec 12, 2021
Be a strategic thinker by recognizing opportunities at scale with seemingly small and insignificant data.
Common Crawl - Open Repository of Web Crawl DataDec 11, 2021
We build and maintain an open repository of web crawl data that can be accessed and analyzed by anyone.
How Pinterest utterly ruined photo search on the internetNov 9, 2021
The social media site is the bane of non-users’ lives, hijacking image search results with a pushy sign-up screen. It needs to stop.
How to build a search engine with Ruby on RailsOct 1, 2021
Implementing search in your Rails app can be vexing. Here's a great pattern to use that combines the best parts of ActiveRecord and Postgres.
Four Things You Need to Master to Get Started with ElasticSearchSep 1, 2021
A concise overview of Elasticsearch concepts and principles
Evolution of Search Engines Architecture – Algolia Search Architecture PartAug 10, 2021
What would a totally new search engine architecture look like? Who better than Julien Lemoine, Co-founder & CTO of Algolia, to describe what the future of search will look like. This is the first article in a series. Search engines, and more generally, information retrieval systems, play a central role in
Hora | Hora Search EverywhereAug 1, 2021
An introduction to A* pathfinding (tutorial)Jul 26, 2021
This is part 3 of a series on bot programming originally published on the Coder One blog. Part 1:...
How to Build a Booking Engine Similar to Booking.com with Ruby on Rails 6 aJul 10, 2021
Think building a booking system is not your cup of tea? I bet, you will change your mind after...
NeurIPS 2021 Announcement: The Billion-Scale Approximate Nearest Neighbor Search ChallengeMay 28, 2021
We are excited to announce that this year’s NeurIPS 2021 Conference will host a first-of-its-kind competition in large scale approximate…
Google AMP is dead! AMP pages no longer get preferential treatment in Google searchMay 20, 2021
From the release of the page experience algorithm, there is no longer any preferential treatment for AMP in Google’s search results, Top Stories carousel and the Google News.
milvus - An open source embedding vector similarity search engine powered bMay 18, 2021
A cloud-native vector database, storage for next generation AI applications - milvus-io/milvus
How image search works at Dropbox - DropboxMay 12, 2021
13 eCommerce Site Search Strategies to Boost Revenue from Existing VisitorsMay 7, 2021
Let's be clear about something right at the start: If you're not optimizing your site search to convert more visitors into buyers, you're missing out on
Use Google like a pro - Marko Denic - Web DeveloperApr 24, 2021
Googling is one of the most important skills for every developer. Let me show you how to get better at Googling.
Hosted Site Search Engine for Websites | ElasticApr 18, 2021
Elasticsearch is your ticket to a better website search. Learn how fast, relevant search improves customer experience and website performance.
Foundations of NLP Explained Visually: Beam Search, How it Works | by KetanApr 4, 2021
A Gentle Guide to how Beam Search enhances predictions, in Plain English
Evaluating Search AlgorithmsApr 2, 2021
The three-step framework Shopify's Data Science & Engineering team built for evaluating new search algorithms.
Building a full-text search engine in 150 lines of Python code · Bart de GoedeMar 28, 2021
Full-text search is everywhere. From finding a book on Scribd, a movie on Netflix, toilet paper on Amazon, or anything else on the web through Google (like [how to do your job as a software engineer](https://localghost.dev/2019/09/everything-i-googled-in-a-week-as-a-professional-software-engineer/)), you've searched vast amounts of unstructured data multiple times today. What's even more amazing, is that you've even though you searched millions (or [billions](https://www.worldwidewebsize.com/)) of records, you got a response in milliseconds. In this post, we are going to build a basic full-text search engine that can search across millions of documents and rank them according to their relevance to the query in milliseconds, in less than 150 lines of code!
Search engine startup from former Google Ads boss raises $40MMar 11, 2021
Neeva is currently in beta with several thousand users.
Achieving High-Quality Search and Recommendation Results with DeepNLPFeb 5, 2021
Speech and natural language processing (NLP) have become the foundation for most of the AI development in the enterprise today, as textual data represents a significant portion of unstructured content.
Free People Search | WhitePagesDec 25, 2020
How come Algolia is so Fast?Dec 18, 2020
We created Algolia to answer the shortcomings of database full text search. It's a SaaS API dedicated to solving app and web developers' struggles.
dorking (how to find anything on the Internet)Dec 18, 2020
tl;dr: Use advanced Google Search to find any webpage, emails, info, or secrets cost: $0 time: 2 minutes Software engineers have long joked about how much of their job is simply Googling things Now you can do the same, but for free Below, I'll cover dorking, the use of …
Building an Advanced Search Form in Rails 6Nov 3, 2020
Introduction A simple search form is great, but one with advanced search options can have...
High-Performance, Billion-Scale Similarity Search | by Pat Lasserre | GSI TNov 3, 2020
In Part 1 of this series, we introduced the concept of embedding vectors. In Part 2, we discussed how embedding vectors can be used in…
DuckDuckGo is growing fastNov 3, 2020
DuckDuckGo, the privacy-focused search engine, announced that August 2020 ended in over 2 billion total searches via its search platform.
Part 7: Fast Pattern Searching with STUMPYNov 3, 2020
Finding Similar Subsequences for Known Patterns
Accuracy vs Speed – what Data Scientists can learn from SearchFeb 19, 2020
Delivering accurate insights is the core function of any data scientist. Navigating the development road toward this goal can sometimes be tricky, especially when cross-collaboration is required, and these lessons learned from building a search application will help you negotiate the demands between accuracy and speed.
Guide To Using Reverse Image Search For InvestigationsFeb 19, 2020
Reverse image search is one of the most well-known and easiest digital investigative techniques, with two-click functionality of choosing “Search Google for image” in many web browsers. This method has also seen widespread use in popular culture, perhaps most notably in the MTV show Catfish, which exposes people in online relationships who use stolen photographs […]
Nine voice search stats to close out 2019Feb 19, 2020
A look back at some of the year's key voice search and virtual assistant metrics.
[OC] Updated version of my recent maze finding algorithm with source codeFeb 19, 2020
2.1K votes, 110 comments. 1.3M subscribers in the Python community. The official Python community for Reddit! Stay up to date with the latest news…
Getting Hands-On With Elasticsearch - Tech Explained - MediumDec 23, 2019
Learn how to create and delete indexes, how to load data in them and perform basic queries.
All | Search powered by AlgoliaDec 23, 2019
Hacker News Search, millions articles and comments at your fingertips.
Building a Search Engine from ScratchDec 23, 2019
A whirlwind tour of the big ideas powering our web search
4 Steps To Setting Up The Perfect Elasticsearch Test EnvironmentDec 23, 2019
Effortlessly test Elasticsearch queries using this test environment, including test data and terrific GUIs.
Search vs. Discovery: How Are They Different?Oct 24, 2019
Google, Microsoft, et al continue to perfect their search engines – but too often search is not enough. The watchword
Custom Search Element Control API | Custom Search | Google DevelopersAug 20, 2019
Discover a basic model for adding Programmable Search Engine elements to your web page.
To Break Google’s Monopoly on Search, Make Its Index PublicJul 15, 2019
The tech giant doesn’t have to be dismantled. Sharing its crown jewel might reshape the internet.
Turn the web into a database: An alternative to web crawling/scraping - Mixnode News BlogOct 8, 2018
Mixnode allows you to execute SQL against the web.
10 Hidden URLs To Help You Rule The WebSep 23, 2018
Dive into cutting-edge tech, reviews and the latest trends with the expert team at Gizmodo. Your ultimate source for all things tech.
Forever 21 visual search tool boosted purchase value by 20%Aug 24, 2018
The fast-fashion retailer has debuted, and quickly expanded, an AI-based visual search and navigation tool for its mobile and e-commerce business.
Building an image search with Algolia & Google’s Vision APIJun 8, 2018
Build an 'auto-tagging' image search service using Algolia and Google Cloud's Vision API
HN Search powered by AlgoliaMay 5, 2018
Hacker News Search, millions articles and comments at your fingertips.
Mastering OSINT: How to Find Information on AnyoneAug 24, 2013
In today’s digital age, information is more accessible than ever before. Open Source Intelligence (OSINT) collects and analyzes publicly…
SearchGPT: What you need to know about OpenAI’s search engineSep 24, 2012
Unpack the key features and marketing insights of SearchGPT, OpenAI’s innovative search tool and its potential to rival Google’s dominance.
secrecy
The Secrecy EffectApr 22, 2025
Advertisers often depict their products being consumed in a social setting, but increasingly they also depict people secretly consuming their products. Will consumers like a product more if they are prompted to consume it in secret? New research explores this question, finding that prompting women to think about consuming products in secret has an impact, not only on product evaluations, but also on behavior and willingness to pay for those products. The authors refer to this effect as the “secrecy effect.”
Why trusted execution environments will be integral to proof-of-stake blockJun 27, 2022
While the core philosophy of blockchains is trustlessness, trusted execution environments can be integral to proof-of-stake blockchains.
security
We hid backdoors in ~40MB binaries and asked AI + Ghidra to find them - Quesma BlogFeb 22, 2026
BinaryAudit benchmarks AI agents using Ghidra to find backdoors in compiled binaries of real open-source servers, proxies, and network infrastructure.
The dangers of SSL certificatesDec 28, 2025
Yesterday, the Bazel team at Google did not have a very Merry Boxing Day. An SSL certificate expired for and as shown in this screenshot from the github issue. This expired certificate apparently b…
A Brief History of NSA Backdoors.Nov 28, 2025
The Secret History of Tor: How a Military Project Became a Lifeline for PrivacyAug 8, 2025
A story of secrecy, resistance, and the fight for digital freedom.
I use Zip Bombs to Protect my ServerApr 30, 2025
The majority of the traffic on the web is from bots. For the most part, these bots are used to discover new content. These are RSS Feed readers, search engines crawling your content, or nowadays AI bo
The “S” in MCP Stands for Security - Elena Cross - MediumApr 8, 2025
MCP, short for Model Context Protocol, is the hot new standard behind how Large Language Models (LLMs) like Claude, GPT, or Cursor integrate with tools and data. It’s been described as the “USB-C for…
Year in Review: Containers Get Smaller, Faster, More SecureDec 19, 2024
Containers were a revolutionary jump ahead of virtual machines, and they continue to get faster, lighter and more secure in the years since.
Experts say Telegram’s ’30 engineers’ team is a security red flagJun 26, 2024
Telegram's founder Pavel Durov says his company only employs around 30 engineers. Security experts say that raises serious questions about the company's cybersecurity.
“Downfall” bug affects years of Intel CPUs, can leak encryption keys and moAug 10, 2023
Researchers also disclosed a separate bug called “Inception” for newer AMD CPUs.
Downfall AttacksAug 9, 2023
Downfall attacks targets a critical weakness found in billions of modern processors used in personal and cloud computers.
The Power of Browser Fingerprinting: Personalized UX, Fraud Detection, andJun 24, 2023
Discover the power of browser fingerprinting: personalize user experience, enhance fraud detection, and optimize login security.
Free the internet from mass surveillance. With the Mullvad Browser.Apr 5, 2023
The Mullvad Browser is a privacy-focused web browser developed in collaboration between Mullvad VPN and the Tor Project. It’s produced to minimize tracking and fingerprinting. You could say it’s a Tor Browser to use without the Tor Network.
Security Best Practices for Your Rails ApplicationOct 5, 2022
Ensure your Rails application stays secure by following some best practices and habits.
gchq/CyberChef: The Cyber Swiss Army Knife - a web app for encryption, encoding, compression and data analysisSep 5, 2022
The Cyber Swiss Army Knife - a web app for encryption, encoding, compression and data analysis - gchq/CyberChef
CSRF, XXE, and 12 Other Security Acronyms ExplainedJul 13, 2022
Acronyms are shortcuts, and we love using them, specially the catchy ones! Let's decipher some...
Why trusted execution environments will be integral to proof-of-stake blockJun 27, 2022
While the core philosophy of blockchains is trustlessness, trusted execution environments can be integral to proof-of-stake blockchains.
Intelligent System SecurityFeb 12, 2022
We present a novel approach to infiltrate data to air-gapped systems without any additional hardware on-site.
Top 10 web hacking techniques of 2021 | PortSwigger ResearchFeb 10, 2022
Welcome to the Top 10 (new) Web Hacking Techniques of 2021, the latest iteration of our annual community-powered effort to identify the most significant web security research released in the last year
Security Risks On Rails: Misconfiguration and Unsafe IntegrationsJan 31, 2022
This article was originally written by Diogo Souza on the Honeybadger Developer Blog. In the third...
Never use the word “User” in your codeJan 23, 2022
You’re six months into a project when you realize a tiny, simple assumption you made at the start was completely wrong. And now you need to fix the problem while keeping the existing system running—with far more effort than it would’ve taken if you’d just gotten it right in the first place. Today I’d like to tell you about one common mistake, a single word that will cause you endless trouble. I am speaking, of course, about “users”. There are two basic problems with this word: “User” is almost never a good description of your requirements. “User” encourages a fundamental security design flaw. The concept “user” is dangerously vague, and you will almost always be better off using more accurate terminology.
gitleaks/gitleaks: Protect and discover secrets using Gitleaks 🔑Jan 17, 2022
Protect and discover secrets using Gitleaks 🔑.
HacksplainingJan 12, 2022
The Basics of Web Application SecurityDec 13, 2021
Security is both very important and often under-emphasized. While many targeted techniques help, there are some basic clean code habits which every developer can and should be doing
My First 10 Minutes On a Server - Primer for Securing Ubuntu | CodelittDec 12, 2021
How to secure an ubuntu server against attacks.
Hacker lexicon: What is a supply chain attack?Jun 7, 2021
From NotPetya to SolarWinds, it’s a problem that’s not going away any time soon.
Diffie-Hellman for the LaymanMay 1, 2021
Whitfield Diffie and Martin Hellman are researchers who invented a safe method to communicate a password. Their 1976 paper opens with the…
Phishing Tests Are Necessary. But They Don’t Need to Be Evil.Apr 2, 2021
Although phishing tests can be helpful to protect users, using questionable tactics has the potential for harming relationships between a company and its employees. The authors suggest that managers avoid this damage by employing phishing tests with three criteria: Test teams, not individuals; don’t embarrass anyone; and gamify and reward.
APT Encounters of the Third Kind - Igor’s BlogMar 27, 2021
A few weeks ago an ordinary security assessment turned into an incident response whirlwind. It was definitely a first for me, and I was kindly granted permission to outline the events in this blog post. This investigation started scary but turned out be quite fun, and I hope reading it will be informative to you too. I'll be back to posting about my hardware research soon. How it started What hell is this? The NFS Server 2nd malicious binary Further forensics Eureka Moment The GOlang thingy How the kernel got patched? and why not the golang app? What we have so far Q&A How it started Twice a year I am hired to do security assessments for a specific client. We have been working together for several years, and I had a pretty good understanding of their network and what to look for. This time my POC, Klaus, asked me to focus on privacy issues and GDPR compliance. However, he asked me to first look at their cluster of reverse gateways / load balancers: I had some prior knowledge of these gateways, but decided to start by creating my own test environment first. The gateways run a custom Linux stack: basically a monolithic compiled kernel (without any modules), and a static GOlang application on top. The 100+ machines have no internal storage, but rather boot from an external USB media that has the kernel and the application. The GOlang app serves in two capacities: an init replacement and the reverse gateway software. During initialization it mounts /proc, /sys, devfs and so on, then mounts an NFS share hardcoded in the app. The NFS share contains the app's configuration, TLS certificates, blacklist data and a few more. It starts listening on 443, filters incoming communication and passes valid requests on different services in the production segment. I set up a self contained test environment, and spent a day in black box examination. Having found nothing much I suggested we move on to looking at the production network, but Klaus insisted I continue with the gateways. Specifically he wanted to know if I could develop a methodology for testing if an attacker has gained access to the gateways and is trying to access PII (Personally Identifiable Information) from within the decrypted HTTP stream. I couldn't SSH into the host (no SSH), so I figured we will have to add some kind of instrumentation to the GO app. Klaus still insisted I start by looking at the traffic before (red) and after the GW (green), and gave me access to a mirrored port on both sides so I could capture traffic to a standalone laptop he prepared for me and I could access through an LTE modem but was not allowed to upload data from: The problem I faced now was how to find out what HTTPS traffic corresponded to requests with embedded PII. One possible avenue was to try and correlate the encrypted traffic with the decrypted HTTP traffic. This proved impossible using timing alone. However, unspecting the decoded traffic I noticed the GW app adds an 'X-Orig-Connection' with the four-tuple of the TLS connection! Yay! I wrote a small python program to scan the port 80 traffic capture and create a mapping from each four-tuple TLS connection to a boolean - True for connection with PII and False for all others: 10.4.254.254,443,[Redacted],43404,376106847.319,False 10.4.254.254,443,[Redacted],52064,376106856.146,False 10.4.254.254,443,[Redacted],40946,376106856.295,False 10.4.254.254,443,[Redacted],48366,376106856.593,False 10.4.254.254,443,[Redacted],48362,376106856.623,True 10.4.254.254,443,[Redacted],45872,376106856.645,False 10.4.254.254,443,[Redacted],40124,376106856.675,False ... With this in mind I could now extract the data from the PCAPs and do some correlations. After a few long hours getting scapy to actually parse timestamps consistently enough for comparisons, I had a list of connection timing information correlated with PII. A few more fun hours with Excel and I got histogram graphs of time vs count of packets. Everything looked normal for the HTTP traffic, although I expected more of a normal distribution than the power-low type thingy I got. Port 443 initially looked the same, and I got the normal distribution I expected. But when filtering for PII something was seriously wrong. The distribution was skewed and shifted to longer time frames. And there was nothing similar on the port 80 end. My only explanation was that something was wrong with my testing setup (the blue bars) vs. the real live setup (the orange bars). I wrote on our slack channel 'I think my setup is sh*t, can anyone resend me the config files?', but this was already very late at night, and no one responded. Having a slight OCD I couldn’t let this go. To my rescue came another security? feature of the GWs: Thet restarted daily, staggered one by one, with about 10 minutes between hosts. This means that every ten minutes or so one of them would reboot, and thus reload it’s configuration files over NFS. And since I could see the NFS traffic through the port mirror I had access to, I recokoned I could get the production configuration files from the NFS capture (bottom dotted blue line in the diagram before). So to cut a long story short I found the NFS read reply packet, and got the data I need. But … why the hack is eof 77685??? Come on people, its 3:34AM! What's more, the actual data was 77685 bytes, exactly 8192 bytes more then the ‘Read length’. The entropy for that data was pretty uniform, suggesting it was encrypted. The file I had was definitely not encrypted. Histogram of extra 8192 bytes: When I mounted the NFS export myself I got a normal EOF value of 1! What hell is this? Comparing the capture from my testing machine with the one from the port mirror I saw something else weird: For other NFS open requests (on all of my test system captures and for other files in the production system) we get: Spot the difference? The open id: string became open-id:. Was I dealing with some corrupt packet? But the exact same problem reappeared the next time blacklist.db was send over the wire by another GW host. Time to look at the kernel source code: The “open id” string is hardcoded. What's up? After a good night sleep and no beer this time I repeated the experiment and convincing myself I was not hullucinating I decided to compare the source code of the exact kernel version with the kernel binary I got. What I expected to see was this (from nfs4xdr.c): static inline void encode_openhdr(struct xdr_stream *xdr, const struct nfs_openargs *arg) { __be32 *p; /* * opcode 4, seqid 4, share_access 4, share_deny 4, clientid 8, ownerlen 4, * owner 4 = 32 */ encode_nfs4_seqid(xdr, arg->seqid); encode_share_access(xdr, arg->share_access); p = reserve_space(xdr, 36); p = xdr_encode_hyper(p, arg->clientid); *p++ = cpu_to_be32(24); p = xdr_encode_opaque_fixed(p, "open id:", 8); *p++ = cpu_to_be32(arg->server->s_dev); *p++ = cpu_to_be32(arg->id.uniquifier); xdr_encode_hyper(p, arg->id.create_time); } Running binwalk -e -M bzImage I got the internal ELF image, and opened it in IDA. Of course I didn’t have any symbols, but I got nfs4_xdr_enc_open() from /proc/kallsyms, and from there to encode_open() which led me to encode_openhdr(). With some help from hex-rays I got code that looked very similiar, but with one key difference: static inline void encode_openhdr(struct xdr_stream *xdr, const struct nfs_openargs *arg) { ... p = xdr_encode_opaque_fixed(p, unknown_func("open id:", arg), 8); ... } The function unknown_func was pretty long and complicated but eventually sometimes decided to replace the space between 'open' and 'id' with a hyphen. Does the NFS server care? Apparently this string it is some opaque client identifier that is ignored by the NFS server, so no one would see the difference. That is unless they were trying to extract something from an NFS stream, and obviously this was not a likely scenario. OK, back to the weird 'eof' thingy from the NFS server. The NFS Server The server was running the 'NFS-ganesha-3.3' package. This is a very modular user-space NFS server that is implemented as a series of loadable modules called FSALs. For example support for files on the regular filesystem is implemented through a module called libfsalvfs.so. Having verified all the files on disk had the same SHA1 as the distro package, I decided to dump the process memory. I didn't have any tools on the host, so I used GDB which helpfully was already there. Unexpectadly GDB was suddenly killed, the file I specified as output got erased, and the nfs server process restarted. I took the dump again but there was nothing special there! I was pretty suspicious at this time, and wanted to recover the original dump file from the first dump. Fortunately for me I was dumping the file to the laptop, again over NFS. The file had been deleted, but I managed to recover it from the disk on that server. 2nd malicious binary The memory dump was truncated, but had a corrupt version of NFS-ganesha inside. There were two libfsalvfs.so libraries loaded: the original one and an injected SO file with the same name. The injected file was clearly malicious. The main binary was patched in a few places, and the function table into libfsalvfs.so as replaced with the alternate libfsalvfs.so. The alternate file was compiled from NFS-ganesha sources, but modified to include new and improved (wink wink) functionality. The most interesting of the new functionality were two separate implementations of covert channels. The first one we encountered already: When an open request comes in with 'open-id' instead of 'open id', the file handle is marked. This change is opaque to the NFS server, so unpatched servers just ignore it and nothing much happens. For infiltrated NFS server, when the file handle opened this way is read, the NFS server appends the last block with a payload coming from the malwar...
Linux Hardening Guide | Madaidan's InsecuritiesDec 31, 2020
Top 10 Web Hacking Techniques of 2017 | BlogOct 12, 2018
The verdict is in! Following 37 nominations whittled down to a shortlist of 15 by a community vote, our panel of experts has conferred and selected the top 10 web hacking techniques of 2017 (and 2016)
My Bodyguard, My SelfOct 8, 2018
The author spent a day with three men in a high-end security detail to find out how it feels to be safe.
Obtaining an Elliptic Curve certificate from Let's EncryptSep 27, 2018
Let's Encrypt does not currently generate Elliptic Curve certificates. Here's how to obtain one.
Forget the new iPhones, Apple's best product is now privacySep 15, 2018
Forget the new iPhones, Apple best product is now privacy.
Certificates for localhostJul 15, 2018
Sometimes people want to get a certificate for the hostname “localhost”, either for use in local development, or for distribution with a native application that needs to communicate with a web application. Let’s Encrypt can’t provide certificates for “localhost” because nobody uniquely owns it, and it’s not rooted in a top level domain like “.com” or “.net”. It’s possible to set up your own domain name that happens to resolve to 127.
netdev day 1: IPsec!Jul 13, 2018
sed
bjpcjp/awk-sed-lessons: Awk & Sed lessons for noobs. Using The UNIX SchoolAug 23, 2023
Awk & Sed lessons for noobs. Using The UNIX School for reference - bjpcjp/awk-sed-lessons
Tips to use "sed" commandMay 14, 2022
When we used the sed command in our pipeline, we had some surprises and took a little bit of times to...
Linux/BSD Command Line wizardry: Learn to think in sed, awk, and grepSep 1, 2021
“Do people really write these long, convoluted commands?” In a word: yes.
The UNIX School: awk & sedFeb 8, 2021
--> awk and sed tutorials: awk: awk - Read and split file contents awk - Passing arguments or shell variables to awk awk - Match a pat...
seduction
Beyond words: The 200-year-old hidden languages of datingJul 6, 2025
From Regency-era "fan flirting" to online dating, we decipher the timeless looks, signs and gifts that signal secret love.
Pickup™ turns romance into a commodity for male consumption | Aeon EssaysJan 10, 2019
The pickup industry mates market logic with the arts of seduction – turning human intimacy into hard labour
self-supervised
A Cookbook of Self-Supervised LearningApr 25, 2023
Self-supervised learning, dubbed the dark matter of intelligence, is a promising path to advance machine learning. Yet, much like cooking, training SSL methods is a delicate art with a high...
VISSL · A library for state-of-the-art self-supervised learning from imagesMar 22, 2021
A library for state-of-the-art self-supervised learning from images
semantic-search
Making 10M government PDF documents searchableNov 26, 2025
Government organizations love to distribute documents as PDF files. They are easy to forward and to print. The problem is when you want to find and access them later among millions of other files. …
run-llama/semtools: Semantic search and document parsing tools for the command lineSep 4, 2025
Semantic search and document parsing tools for the command line - run-llama/semtools
37 Things I Learned About Information Retrieval in Two Years at a Vector Database Company – Leonie MonigattiJul 4, 2025
From BM25 to RAG: Everything I learned about vector databases, embedding models, and vector search - and everything in between.
What is a Vector Database? | PineconeMay 7, 2023
Discover Vector Databases: How They Work, Examples, Use Cases, Pros & Cons, Selection and Implementation. They have combined capabilities of traditional databases and standalone vector indexes while specializing for vector embeddings.
Master Semantic Search at Scale: Index Millions of Documents with LightningApr 1, 2023
Dive into an end-to-end demo of a high-performance semantic search engine leveraging GPU acceleration, efficient indexing techniques, and…
Semantic Search: Measuring Meaning From Jaccard to BertJul 3, 2021
Similarity search is one of the fastest-growing domains in AI and machine learning. At its core, it is the process of matching relevant pieces of information together.
semantic-segmentation
MIT's newest computer vision algorithm identifies images down to the pixelDec 28, 2022
A team of researchers at MIT CSAIL, in collaboration with Cornell University and Microsoft, have developed STEGO, an algorithm able to identify images down to the individual pixel.
HRNet explained: Human Pose Estimation, Semantic Segmentation and Object DeOct 7, 2021
Revealing whats behind the state-of-the art algorithm HRNet
Browse the State-of-the-Art in Machine Learning | Papers With CodeDec 21, 2020
**Semantic Segmentation** is a computer vision task in which the goal is to categorize each pixel in an image into a class or object. The goal is to produce a dense pixel-wise segmentation map of an image, where each pixel is assigned to a specific class or object. Some example benchmarks for this task are Cityscapes, PASCAL VOC and ADE20K. Models are usually evaluated with the Mean Intersection-Over-Union (Mean IoU) and Pixel Accuracy metrics. ( Image credit: [CSAILVision](https://github.com/CSAILVision/semantic-segmentation-pytorch) )
semi-supervised
Semi-Supervised Classification of Unlabeled Data (PU Learning)Mar 9, 2020
How to classify unlabeled data when all you have is just a sample of positive data
Japanese manufacturers use decades of experience to dominate key chemical mOct 9, 2019
Tokyo Ohka Kogyo Co., JSR Corp. and Shin-Etsu Chemical Co.: Three seemingly inconspicuous companies suddenly came into the spotlight in early July when Japan announced it would slap tightened export controls to South Korea on three key chemicals — photoresists, fluorinated polyimide and hydrogen fluoride...
Buried Power Lines Make Memory Faster - IEEE SpectrumJul 26, 2019
Researchers at imec explore strategy that could make memory more efficient and pack in more transistors
Will Open-Source EDA Work?Jun 26, 2019
DARPA program pushes for cheaper and simpler tools, but it may not be so easy.
semiconductors
Space Forge Evaluates In-Orbit Manufacturing TechMar 2, 2026
Space Forge's orbital furnace could redefine semiconductor production with space-grown crystals.
A Deep Dive Into Modern Computer Memory: ROM, DRAM, SRAM & FlashFeb 17, 2026
Explore the four key modern memory types: ROM, DRAM, SRAM, and flash, their unique roles, and trade-offs in speed, cost, and storage.
Bulk RRAM: Scaling the AI Memory WallFeb 9, 2026
UC San Diego researchers have reimagined RRAM, creating a device that could redefine AI's memory challenges. Discover how this could impact edge computing.
Gate-All-Around (GAA) Technology for Sustainable AI - SemiWikiFeb 9, 2026
Key takeaways ▼ The transition from FinFET to Gate-All-Around (GAA) transistor technology represents a pivotal moment in the evolution of logic devices, driven by both physical scaling limits and the … Continue reading "Gate-All-Around (GAA) Technology for Sustainable AI"
Engineering Challenges Grow With Crystalline DefectsJan 28, 2026
Tighter process control and yield optimization still cannot mitigate crystalline defects.
Understanding the PDK Generation Process - Technical ArticlesJan 25, 2026
In this article, we'll walk through the steps of generating a Process Design Kit (PDK) for digital standard cell libraries.
Breakthrough Metal Could Revolutionize Chip Cooling And Thermal ManagementJan 22, 2026
A multi-institution research team has discovered a metallic material that conducts heat nearly three times more efficiently than copper or silver.
1,000 CFETs, SK Hynix Next-Gen NAND, Interconnects Beyond Copper, 2D Materials, and MoreJan 14, 2026
IEDM 2025 Round-Up
NVIDIA Rubin Is The Most Advanced AI Platform On The Planet: Up To 50 PFLOPs With HBM4, Vera CPU With 88 Olympus Cores, And Delivers 5x Uplift Vs BlackwellJan 5, 2026
NVIDIA is formally announcing its Rubin AI platform today which will be the heart of next-gen Data Centers, with a 5x upgrade over Blackwell.
'It's amazing' – the wonder material very few can makeDec 12, 2025
Just a handful of companies can make cadmium zinc telluride, a material with powerful properties.
FPGAs Need a New FutureDec 10, 2025
FPGAs are limited by outdated proprietary software. Learn how embracing open-source tools is necessary to modernize FPGA development and unlock their full potential.
The Accounting Uproar Over How Fast an AI Chip Depreciates - SlashdotDec 8, 2025
Tech giants including Meta, Alphabet, Microsoft and Amazon have all extended the estimated useful lives of their servers and AI equipment over the past five years, sparking a debate among investors about whether these accounting changes are artificially inflating profits. Meta this year increased it...
High Bandwidth Flash is years awayNov 27, 2025
Rubber CMOS Brings Stretchable ‘Sensory Skin’ Closer to RealityNov 25, 2025
A new “rubbery CMOS” platform combines fully stretchable p- and n-type transistors, enabling skin-like logic circuits and a tactile “sensory skin” for wearables, implants, and soft robotics.
Unusual circuits in the Intel 386's standard cell logicNov 23, 2025
I've been studying the standard cell circuitry in the Intel 386 processor recently. The 386, introduced in 1985, was Intel's most complex pr...
The Thermal Trap: How Dielectrics Limit Device PerformanceNov 20, 2025
Thin films for insulating different components are causing dissipation issues in advanced chips.
Solving the QLC NAND Flash SSD Scaling Challenge - Industry ArticlesNov 13, 2025
Learn how to solve QLC NAND's endurance, ECC, and performance issues for hyperscale. The approach blends a PCIe Gen5 controller with hardware-accelerated LDPC, PerformaShape QoS, and more.
Why In-Memory Computation Is So Important For Edge AIOct 23, 2025
Researchers focus on limiting data movement to reduce power and latency in edge devices.
Charting The Frontiers Of Photomask Technology And Extreme Ultraviolet LithographyOct 23, 2025
Modeling, simulation, and digital twins enable EUV innovation.
The vertical GaN transistor: Time for take-off - Compound Semiconductor NewsOct 23, 2025
Our selection of industry specific magazines cover a large range of topics.
Interconnect Innovations In High Bandwidth Memory: Part 2Oct 14, 2025
Bump technologies are being pushed beyond what was thought to be their physical and performance limits.
Where Are Semiconductor Fabs Currently Being Built Around the World? - Z2DataOct 1, 2025
The semiconductor manufacturing landscape continues to grow, with new fabs and expansions to current production sites taking place in the U.S., Asia, and other key manufacturing regions.
The power GaN race: market growth, consolidation, and new entrantsOct 1, 2025
The expanding role of GaN in power electronics. Gallium nitride (GaN) has emerged as one of the most disruptive semiconductor technologies of the decade, with a market projected to reach $3 billion by 2030. Consumer applications, particularly fast chargers, have been the early adopters, driving volume growth and ecosystem maturity. By 2030, the Consumer and […]
The Demise Of Static Timing Verification?Sep 11, 2025
Timing is increasingly dependent on vectors. Can static techniques continue to deliver the necessary results? Maybe.
The Future of Memory: Limits and OpportunitiesSep 5, 2025
Memory latency, bandwidth, capacity, and energy increasingly limit performance. In this paper, we reconsider proposed system architectures that consist of huge (many-terabyte to petabyte scale) memories shared among large numbers of CPUs. We argue two practical engineering challenges, scaling and signaling, limit such designs. We propose the opposite approach. Rather than create large, shared, homogenous memories, systems explicitly break memory up into smaller slices more tightly coupled with compute elements. Leveraging advances in 2.5D/3D integration, this compute-memory node provisions private local memory, enabling accesses of node-exclusive data through micrometer-scale distances, and dramatically reduced access cost. In-package memory elements support shared state within a processor, providing far better bandwidth and energy-efficiency than DRAM, which is used as main memory for large working sets and cold data. Hardware making memory capacities and distances explicit allows software to efficiently compose this hierarchy, managing data placement and movement.
Backside Power Delivery (BSPD) WikiAug 31, 2025
Backside Power Delivery (BSPD), also called Backside Power Delivery Network (BSPDN) or backside power via (BPV) technology, is a semiconductor manufacturing innovation in which the chip’s primary power distribution network … Continue reading "Backside Power Delivery (BSPD) Wiki"
Energy-Efficient Signal Detectors For Massive MIMO Using SRAM-Based IMCsAug 15, 2025
A new technical paper titled “Energy-Accuracy Trade-Offs in Massive MIMO Signal Detection Using SRAM-Based In-Memory Computing” was published by researchers at the University of Illinois at Urbana–Champaign. Abstract “This paper investigates the use of SRAM-based in-memory computing (IMC) architectures for designing energy efficient and accurate signal detectors for massive multi-input multi-output (MIMO) systems. SRAM-based IMCs... » read more
Materials and Process Innovation Enable Scaling of Next-Generation ChipsAug 5, 2025
Materials breakthroughs and process innovations are unlocking next-gen chip scaling, with Southeast Asia playing a pivotal role in semiconductor evolution. By Andrew Goh, Corporate Vice President and General Manager, Southeast Asia at Lam Research
X-pSRAM: A Photonic SRAM with Embedded XOR Logic for Ultra-Fast...Jul 28, 2025
Traditional von Neumann architectures suffer from fundamental bottlenecks due to continuous data movement between memory and processing units, a challenge that worsens with technology scaling as electrical interconnect delays become more significant. These limitations impede the performance and energy efficiency required for modern data-intensive applications. In contrast, photonic in-memory computing presents a promising alternative by harnessing the advantages of light, enabling ultra-fast data propagation without length-dependent impedance, thereby significantly reducing computational latency and energy consumption. This work proposes a novel differential photonic static random access memory (pSRAM) bitcell that facilitates electro-optic data storage while enabling ultra-fast in-memory Boolean XOR computation. By employing cross-coupled microring resonators and differential photodiodes, the XOR-augmented pSRAM (X-pSRAM) bitcell achieves at least 10 GHz read, write, and compute operations entirely in the optical domain. Additionally, wavelength-division multiplexing (WDM) enables n-bit XOR computation in a single-shot operation, supporting massively parallel processing and enhanced computational efficiency. Validated on GlobalFoundries' 45SPCLO node, the X-pSRAM consumed 13.2 fJ energy per bit for XOR computation, representing a significant advancement toward next-generation optical computing with applications in cryptography, hyperdimensional computing, and neural networks.
Negative Capacitance Breaks GaN Transistor LimitsJul 28, 2025
Researchers are testing a special coating on GaN devices that may enhance transistor performance by breaking the Schottky limit.
On-Die And In-Package InterconnectsJul 28, 2025
A 94-page research report on interconnect fundamentals for semiconductor engineers.
Demystifying GPUs: From Core Architecture to Scalable SystemsJul 20, 2025
Table of Contents Motivation Optimization goal of GPUs Key concepts of GPUs - software and...
Zombie fabs plague China's chipmaking ambitions, failures burning tens of billions of dollarsJul 10, 2025
28 fabs later
Physics Limits Interposer Line LengthsJul 3, 2025
Thin lines and limited ground planes keep RDL interconnects short.
Rethinking Scan Chains In Semiconductor TestJul 2, 2025
Finding defects now requires multiple data types, and a much more thorough search.
Nvidia and others court niche Japanese supplier to ease AI bottlenecksJun 26, 2025
Glass cloth maker Nittobo is latest example country's overlooked role in supply chain
Performance, efficiency, and cost analysis of wafer-scale AI accelerators vs. single-chip GPUsJun 24, 2025
This review compares wafer-scale AI accelerators and single-chip GPUs in terms of
performance, energy efficiency, and cost for high-performance AI applications. It
highlights enabling technologies, such as CoWoS, and explores future directions including
3D integration, photonic chips, and emerging semiconductor materials.
HBM roadmapJun 17, 2025
A slide deck revealing the plans (and expectations) for next-generation High Bandwidth Memory (HBM) technology was published by Korea Advanced Institute of Science and Technology and TERA (Terabyte Interconnection and Package Laboratory).
Starting with HBM4. This will be the go-to standard for next-gen data centers and AI GPUs that are launching in 2026. Both AMD and NVIDIA have confirmed the use of HBM for their MI400 and Rubin offerings.
Next-gen memory will continue to scale in stacked layers, but each layer will become thinner. HBM thickness is expected not to exceed 720 micrometers, with HBM5 targeting 36µm per DRAM die.
Given the increase in power consumption, KAIST and TERA expect that HBM5 (100W) and HBM6 (120W) will already require immersion cooling, while HBM7 (160W) and HBM8 (180W) could feature embedded cooling solutions.
With the arrival of glass-based silicon interposers, the research firm highlights the use of embedded cooling as the standard approach, which will go through the interposer and offer direct-cooling to the HBM, HBF, and GPU IPs.
Read more by Wccftech: https://lnkd.in/d--5qUwx
#HBM #HighBandwidthMemory #Semiconductors #AdvancedPackaging #MemoryTechnology #AIHardware #GPU #ChipDesign #ImmersionCooling #ThermalManagement #TechInnovation #FutureOfComputing #NVIDIA #AMD #HighPerformanceComputing #DeepTech #DataCenterTechnology #KAIST #KoreaTech #TERA | 15 comments on LinkedIn
The Coming NPU Population CollapseJun 12, 2025
The IP industry is no stranger to boom and bust cycles, and it looks to be at the crest of another wave.
Semiconductor Fabs I: The EquipmentJun 4, 2025
An in-depth look at semiconductor processing equipment: considerations, selection, operation, and supporting info. …
How to Build a $20 Billion Semiconductor FabJun 4, 2025
For the last several decades, one avenue of technological progress has towered over nearly everything else: semiconductors.
Prototype Computer Uses Noise to Its AdvantageMay 19, 2025
Thermodynamic computing isn't just a rebrand of probabilistic computing
Metal fill extraction: Breaking the speed-accuracy tradeoffMay 17, 2025
An adaptive metal fill extraction technique dynamically adjusts the level of detail based on the design context, such as the density of...
How CXL 3.1 and PCIe 6.2 are Redefining Compute EfficiencyMay 16, 2025
CXL 3.1 and PCIe 6.2 are transforming AI with improved data transfer and memory pooling.
Die-to-die Interconnect Standards In FluxMay 15, 2025
Many features of UCIe 2.0 seen as “heavy” are optional, causing confusion.
Why RF Technologies Should Consider GaN Over Silicon - EE TimesMay 7, 2025
Silicon is the industry standard for semiconductors. However, GaN has become a more beneficial option for RF applications.
TSMC’s Cutting-Edge SoW-X Packaging Set For Mass Production By 2027; Delivering 40x Higher Computi…Apr 24, 2025
TSMC also revealed developments in advanced packaging technologies at the NA Technology Symposium, and they look interesting.
BYD Semiconductor Deep DiveApr 20, 2025
Unpacking the bear thesis on power semis and TSMC’s footnote in the story
BSIM Group UC BerkeleyApr 11, 2025
The BSIM (Berkeley Short-channel IGFET Model) Group, located in the Department of Electrical Engineering and Computer Sciences (EECS) at the University of California, Berkeley, develops physics-based, accurate, scalable, robust, and predictive MOSFET SPICE models for circuit simulation and CMOS technology development. All suggestions for model improvements are charted by the Compact Model Coalition (CMC).
Huawei patents ‘ternary logic’ to develop energy-efficient AI chipsApr 4, 2025
Huawei patented a new technology called "ternary logic" that can develop energy-efficient AI chips. The new patent confirms the company's effo
Notes on the Pentium's microcode circuitryMar 31, 2025
Most people think of machine instructions as the fundamental steps that a computer performs. However, many processors have another layer of ...
SMIC Is Rumored To Complete 5nm Chip Development By 2025; Costs Could Be Up To 50 Percent Higher Than TS…Mar 28, 2025
China’s biggest semiconductor manufacturer, SMIC, is rumored to complete 5nm chip development in 2025, leading to advanced chip orders from Huawei
First-Time Silicon Success PlummetsMar 27, 2025
Number of designs that are late increases. Rapidly rising complexity is the leading cause, but tools, training, and workflows need to improve.
The Future of AI Accelerators: A Roadmap of Industry Leaders The AI… | Nader EL-MasriMar 26, 2025
The Future of AI Accelerators: A Roadmap of Industry Leaders
The AI hardware race is heating up, with major players like NVIDIA, AMD, Intel, Google, Amazon, and more unveiling their upcoming AI accelerators. Here’s a quick breakdown of the latest trends:
Key Takeaways:
NVIDIA Dominance: NVIDIA continues to lead with a robust roadmap, extending from H100 to future Rubin and Rubin Ultra chips with HBM4 memory by 2026-2027.
AMD’s Competitive Push: AMD’s MI300 series is already competing, with MI350 and future MI400 models on the horizon.
Intel’s AI Ambitions: Gaudi accelerators are growing, with Falcon Shores on track for a major memory upgrade.
Google & Amazon’s Custom Chips: Google’s TPU lineup expands rapidly, while Amazon’s Trainium & Inferentia gain traction.
Microsoft & Meta’s AI Expansion: Both companies are pushing their AI chip strategies with Maia and MTIA projects, respectively.
Broadcom & ByteDance Join the Race: New challengers are emerging, signaling increased competition in AI hardware.
What This Means:
With the growing demand for AI and LLMs, companies are racing to deliver high-performance AI accelerators with advanced HBM (High Bandwidth Memory) configurations. The next few years will be crucial in shaping the AI infrastructure landscape.
$NVDA $AMD $INTC $GOOGL $AMZN $META $AVGO $ASML $BESI
A Crucial Optical Technology Has Finally ArrivedMar 25, 2025
Nvidia's endorsement of co-packaged optics means the time is right
BintangChip: Your specialty foundry for the analog worldFeb 18, 2025
BintangChip is one of the world’s leading specialty foundry groups for analog/mixed-signal semiconductor technologies. As a pure-play foundry, we provide manufacturing and strong design support services to our customers that design analog/mixed-signal integrated circuits and other semiconductor devices for use in their own products or the products of their customers.
The Road Ahead For Datacenter Compute Engines: The CPUsJan 30, 2025
It is often said that companies – particularly large companies with enormous IT budgets – do not buy products, they buy roadmaps. No one wants to go to
Improving Uniformity And Linearity For All MasksJan 29, 2025
Pixel-level dose correction improves the quality of masks written by multi-beam.
Improving GaN Device ArchitecturesJan 23, 2025
Novel combinations show promise for different applications.
100x Defect Tolerance: How Cerebras Solved the Yield Problem - CerebrasJan 16, 2025
[vc_row][vc_column column_width_percent=”90″ gutter_size=”3″ overlay_alpha=”50″ shift_x=”0″ shift_y=”0″ shift_y_down=”0″ z_index=”0″ medium_width=”0″ mobile_width=”0″ width=”1/1″ uncode_shortcode_id=”158708″][vc_column_text uncode_shortcode_id=”154284″] Conventional wisdom in semiconductor manufacturing has long […]
AMD Reveals Real Reason It Won't Put 3D V-Cache On Multiple CCDsJan 8, 2025
After persistent rumors refused to recede, AMD steps in with a clear explanation why dual-CCD V-Cache doesn't exist.
The Ultimate Guide to Gate-All-Around (GAA) - AnySiliconJan 5, 2025
Introduction to Gate-All-Around (GAA) Transistors Gate-all-around (GAA) transistors are a newly introduced type of transistor structure: the gate terminal connects with the channel on all sides. Gate-All-Around transistors are a multi-gate field effect transistors type where a silicon nanowire gate moves around the channel by further scaling down FinFET. The Gate-All-Around structure enables a vertical
Intel's $475 million error: the silicon behind the Pentium division bugDec 29, 2024
In 1993, Intel released the high-performance Pentium processor, the start of the long-running Pentium line. The Pentium had many improvement...
AMD Ryzen 7 9800X3D Uses A Thick Dummy Silicon That Comprises 93% Of The CCD Stack And Has No Performance PurposeDec 21, 2024
The CCD stack with 3D V-Cache on the AMD Ryzen 7 9800X3D is only 40-45µm in total, but the rest of the layers add up to a whopping 750µm.
Slim-Llama: An Energy-Efficient LLM ASIC Processor Supporting 3-Billion Parameters at Just 4.69mWDec 21, 2024
Large Language Models (LLMs) have become a cornerstone of artificial intelligence, driving advancements in natural language processing and decision-making tasks. However, their extensive power demands, resulting from high computational overhead and frequent external memory access, significantly hinder their scalability and deployment, especially in energy-constrained environments such as edge devices. This escalates the cost of operation while also limiting accessibility to these LLMs, which therefore calls for energy-efficient approaches designed to handle billion-parameter models. Current approaches to reduce the computational and memory needs of LLMs are based either on general-purpose processors or on GPUs, with a combination of weight quantization and
TSMC Lifts the Curtain on Nanosheet TransistorsDec 15, 2024
And Intel shows how far these devices could go
Is In-Memory Compute Still Alive?Dec 12, 2024
It hasn’t achieved commercial success, but there is still plenty of development happening; analog IMC is getting a second chance.
China Unveils Xiaohong-504: a 504-Qubit Quantum Computing ProcessorDec 10, 2024
China has announced the development of its latest quantum system, combining the Xiaohong-504, a 504-qubit superconducting quantum chip, with the Tianyan-504 quantum computer. The breakthrough comes from China Telecom Quantum Group (CTQG), which will use the new supercomputer to boost national teleco...
Google Claims Quantum Error Correction Milestone With “Willow” ChipDec 9, 2024
There is no shortage of top-name – and even lesser known – companies pursuing the white whale of developing a quantum computer that can run workloads and
98 Hardware Security Failure Scenarios (NIST)Dec 3, 2024
A new technical paper titled “Hardware Security Failure Scenarios: Potential Hardware Weaknesses” was published by NIST. Abstract “Hardware is often assumed to be robust from a security perspective. However, chips are both created with software and contain complex encodings (e.g., circuit designs and firmware). This leads to bugs, some of which compromise security. This publication... » read more
Strain engineering approach enhances performance of 2D semiconductor-based transistorsDec 3, 2024
The manipulation of mechanical strain in materials, also known as strain engineering, has allowed engineers to advance electronics over the past decades, for instance enhancing the mobility of charge ...
AMD Disables Zen 4's Loop BufferDec 1, 2024
A loop buffer sits at a CPU's frontend, where it holds a small number of previously fetched instructions.
TWINSCAN EXE:5000 Lego SetNov 29, 2024
Joining the ASML Lego Collection - the TWINSCAN EXE:5000. The latest addition to you ASML Lego collection has arrived. Rick Lenssen from D&E (designer of the Lego ASML Skyline and the Lego TWINSCAN NXE:3400C) has delivered another masterpiece in technology, once again made entirely of Lego: the TWINSCAN EXE:5000.
Predictive PDK (ASAP) – ASU EngineeringNov 25, 2024
3D NAND’s Impact on the Equipment Market - The Memory Guy BlogNov 25, 2024
(The following is an update of a post that originally ran on 6 December 2013. It was republished in 2024 as a part of a series on The Memory Guy blog to honor the 3D NAND inventors who have received the 2024 FMS Lifetime Achievement Award.) A very unusual side effect of the move to
Antenna diodes in the Pentium processorNov 24, 2024
I was studying the silicon die of the Pentium processor and noticed some puzzling structures where signal lines were connected to the silico...
Why Intel Lost Its CPU Crown To AMD (And How Ryzen Changed The Game) - SlashGearNov 23, 2024
Intel was a dominant leader in the CPU market for the better part of a decade, but AMD has seen massive success in recent years thanks to its Ryzen chips.
Intel Arc B580 "Battlemage" GPU Leak Confirms 12 GB Memory, Custom Models With Standard Power Connectors, Up To 2.8 GHz ClocksNov 23, 2024
Intel's first Arc B580 GPUs based on the Xe2 "Battlemage" architecture have been leaked & they look quite compelling.
AI Alone Isn’t Ready for Chip DesignNov 21, 2024
A combination of classical search and machine learning may be the way forward
New Ultrafast Memory Boosts Intel Data Center ChipsNov 17, 2024
While Intel's primary product focus is on the processors, or brains, that make computers work, system memory (that's DRAM) is a critical component for performance. This is especially true in servers, where the multiplication of processing cores has outpaced the rise in memory bandwidth (in other wor...
Amazon’s Cloud Crisis: How AWS Will Lose The Future Of ComputingNov 4, 2024
Nitro, Graviton, EFA, Inferentia, Trainium, Nvidia Cloud, Microsoft Azure, Google Cloud, Oracle Cloud, Handicapping Infrastructure, AI As A Service, Enterprise Automation, Meta, Coreweave, TCO
One Laser To Pump Up AI Interconnect Bandwidth By 10XOct 27, 2024
According to rumors, Nvidia is not expected to deliver optical interconnects for its GPU memory-lashing NVLink protocol until the “Rubin Ultra” GPU
Graphene-Based Memristors Inch Towards Practical Production - SlashdotOct 26, 2024
Longtime Slashdot reader Baron_Yam writes: Memristors are the long-sought 4th fundamental circuit element. They promise analog computing capability in hardware, the ability to hold state without power, and to work with less power. A small cluster of them can replace a transistor using less space. W...
Gate-All-Around (GAA): The Ultimate Solution to Reduce Leakage - EE TimesOct 25, 2024
As awareness of environmental, social, and governance (ESG) issues grows, companies are adopting strategies for sustainable operations.
Google's Tensor G6 Chip Will Be Built on TSMC's 2nm Architecture For Major Performance and Efficiency Gains, Codenamed MalibuOct 22, 2024
Google Poxel 11s Tensor G6 codename leaks along with the Tensor G5 chip, expected to be built on TSMC's 2nm manufacturing process.
Mini Review of Photodetectors and Image Sensors: Materials and FabricationOct 19, 2024
A new technical paper titled “Image Sensors and Photodetectors Based on Low-Carbon Footprint Solution-Processed Semiconductors” was published by researchers at Cardiff University. Abstract “This mini-review explores the evolution of image sensors, essential electronic components increasingly integrated into daily life. Traditional manufacturing methods for image sensors and photodetectors, employing high carbon footprint techniques like thermal evaporation... » read more
Wide-Bandgap Semiconductors Shape Next-Gen SDVsOct 19, 2024
WBG semiconductors promise to transform the automotive industry, elevating vehicle performance and sustainability to unprecedented levels.
One Laser To Pump Up AI Interconnect Bandwidth By 10XOct 17, 2024
According to rumors, Nvidia is not expected to deliver optical interconnects for its GPU memory-lashing NVLink protocol until the “Rubin Ultra” GPU
Introduction to the Class C Power AmplifierAug 1, 2024
This article examines the operation of the Class C power amplifier and how it compares to its Class A and Class B counterparts.
The U.S. has sanctioned 18 Chinese fabs, dozens remain in in white zoneJul 31, 2024
China has big plans for semiconductor industry and they include self reliance.
Understanding Two Port Amplifier Power GainsJul 31, 2024
Transducer, Unilateral, Available and Power Gain; what they mean and how to calculate them.
ABCs of Power Amplifier Classes: FoundationsJul 30, 2024
Basic concepts required to understand classes of operation in power amplifiers.
Intel Vs. Samsung Vs. TSMCJul 27, 2024
Foundry competition heats up in three dimensions and with novel technologies as planar scaling benefits diminish.
Zen 5’s 2-Ahead Branch Predictor Unit: How a 30 Year Old Idea Allows for NeJul 27, 2024
When I recently interviewed Mike Clark, he told me, “…you’ll see the actual foundational lift play out in the future on Zen 6, even though it was really Zen 5 that set the table for that.” And at that same Zen 5 architecture event, AMD’s Chief Technology Officer Mark Papermaster said, “Zen 5 is a ground-up redesign of the Zen architecture,” which has brought numerous and impactful changes to the design of the core.
Poor Thermal Paste Quality Pointed Out As Culprit Behind Rising GPU TemperaJul 22, 2024
Poor quality thermal paste might be the reason your GPU is running hotter than usual after a certain period of time.
AMD Plans to Use Glass Substrates in its 2025/2026 Lineup of High-PerformanJul 13, 2024
AMD reportedly plans to incorporate glass substrates into its high-performance system-in-packages (SiPs) sometimes between 2025 and 2026. Glass substrates offer several advantages over traditional organic substrates, including superior flatness, thermal properties, and mechanical strength. These cha...
JEDEC Finalizes HBM4 Spec With A Key Upgrade For Memory ManufacturersJul 13, 2024
HBM4 is going to double the bandwidth of HBM3, but not through the usual increase in clock rate.
Unleashing the Potential of Alternative Deep Learning HardwareJul 12, 2024
To address the limitations of GPUs for AI, engineers are exploring general-purpose hardware, dedicated DL hardware and neuromorphic hardware.
Standard cells: Looking at individual gates in the Pentium processorJul 10, 2024
Intel released the powerful Pentium processor in 1993, a chip to "separate the really power-hungry folks from ordinary mortals." The origin...
Beyond GPUs: Innatera and the quiet uprising in AI hardwareJul 7, 2024
The brain-inspired architecture gives neuromorphic systems distinct advantages, particularly for edge computing applications in consumer devices and industrial IoT.
Fabricated Knowledge Q2 2024 Quarterly ReviewJul 3, 2024
Here's everything that happened this quarter, and some thoughts and ideas.
Meet Sohu: The World’s First Transformer Specialized Chip ASICJun 28, 2024
The Sohu AI chip by Etched is a thundering breakthrough, boasting the title of the fastest AI chip to date. Its design is a testament to cutting-edge innovation, aiming to redefine the possibilities within AI computations and applications. At the center of Sohu's exceptional performance is its advanced processing capabilities, which enable it to handle complex computations at unprecedented speeds. With a capability of processing over 500,000 tokens per second on the Llama 70B model, the Sohu chip enables the creation of unattainable products with traditional GPUs. An 8xSohu server can effectively replace 160 H100 GPUs, showcasing their remarkable efficiency
Qorvo Introduces Alternative to Mechanical Circuit BreakersJun 27, 2024
Qorvo's 4 mΩ SiC JFET for solid-state circuit breakers provides significant advantages over traditional mechanical breakers. Andy Wilson discussed the details with EEPower at PCIM 2024.
Intel’s Latest FinFET Is Key to Its Foundry PlansJun 26, 2024
Company’s new process signals transition toward foundry service provider
Controlling Warpage In Advanced PackagesJun 25, 2024
Mechanical stresses increase with larger sizes and heterogeneous materials.
Single Vs. Multi-Patterning Advancements For EUVJun 20, 2024
EUV patterning has come a long way in the past five years, but old challenges resurface with high-NA EUV.
About Nantian Electronics : IC chips & IGBT modules DisctributorJun 20, 2024
Nantian Electronics Co Limited provide complete and cost effective sourcing solution to OEMs, CEMs, distributors, the needs of manufacturers and other companies.
ST remains largest silicon carbide power device maker, with 32.6% market shJun 20, 2024
onsemi rises from fourth to second; top five players comprise 91.9% of revenue
US chipmaker Onsemi to invest $2bn in Czech Republic silicon carbide faciliJun 20, 2024
Largest one-off direct foreign investment in the country
DRAM: an industry in full flightJun 17, 2024
Generative AI and High Bandwidth Memory (HBM) fuel DRAM market growth. OUTLINE The HBM market has the potential to grow to US$14 billion in 2024. Yole Group expects HBM revenue growth to continue with a CAGR23-29 of ~38%, reaching about US$37.7 billion in 2029. 4F2 cell designs, hybrid bonding, and monolithic 3D DRAM will enable […]
Flow claims it can 100x any CPU’s power with its companion chip and some elJun 12, 2024
A Finnish startup called Flow Computing is making one of the wildest claims ever heard in silicon engineering: by adding its proprietary companion chip,
Fan-Out Panel-Level Packaging (FO-PLP): Ultimate GuideJun 11, 2024
In this guide, we’ll elucidate the pivotal role of FO-PLP in advancing the semiconductor sector. Harnessing cost-effectiveness with enhanced functionality, FO-PLP beckons a new era of electronic sophistication. Let’s delve into the ultimate guide to Fan-Out Panel-Level Packaging and explore how it’s shaping the future. Overview of Fan-Out Panel-Level Packaging (FO-PLP) Fan-Out Panel-Level Packaging
Record fab capacity in 2025 with 17 new fabsJun 11, 2024
The semiconductor industry is set to see a record fab capacity with 17 new lines in 2025 according to Knometa Research.
How Japanese Companies Are Benefiting From the Chips BattleJun 9, 2024
With subsidies and a $6 billion acquisition, Tokyo wants to make its companies indispensable in the global supply chain.
Hybrid Bonding Plays Starring Role in 3D ChipsJun 7, 2024
Tech makes millions of connections in a square millimeter of silicon
Understanding CFETs, A Next Generation Transistor ArchitectureMay 23, 2024
Avoiding unintended shorts and opens in a high aspect ratio etch process with very tight tolerance windows.
CMOS Image Sensor: Ultimate GuideMay 22, 2024
Imagine a world where every moment is captured with immaculate clarity, from the delicate hues of a sunset to the swift action of a sporting event. The heart of this imagery revolution lies in the CMOS image sensor (CIS), a masterpiece of technology little known outside expert circles. Its evolution has been pivotal in the
Trillium: Google’s TPU Powerhouse Behind Its New AI ModelsMay 21, 2024
Google's sixth-generation tensor processing unit (TPU) stole the company's I/O developer conference stage with its higher-than-ever computing performance.
JEDEC Confirms CAMM2 Memory For Desktop PCs: DDR6 Up To 17.6 Gbps & LPDDR6May 21, 2024
DDR6 & LPDDR6 memory will feature super-fast speeds of up to 17.6 Gbps while the CAMM2 DRAM standard is headed to desktops.
Competitive Open-Source EDA ToolsMay 20, 2024
A technical paper titled “Basilisk: Achieving Competitive Performance with Open EDA Tools on an Open-Source Linux-Capable RISC-V SoC” was published by researchers at ETH Zurich and University of Bologna. Abstract: “We introduce Basilisk, an optimized application-specific integrated circuit (ASIC) implementation and design flow building on the end-to-end open-source Iguana system-on-chip (SoC). We present enhancements to... » read more
How to Put a Data Center in a ShoeboxMay 16, 2024
Imec’s plan to use superconductors to shrink computers
One Cerebras Wafer Beats An Exascale Super At Molecular DynamicsMay 16, 2024
We think that waferscale computing is an interesting and even an inevitable concept for certain kinds of compute and memory. But inevitably, the work you
Wafer Dicing: Ultimate GuideMay 15, 2024
Wafer dicing is a critical process within the semiconductor manufacturing. It’s the step where silicon dies are separated from each other. Semiconductor wafer dicing techniques have evolved over time, from traditional blade dicing to more advanced methods such as laser and plasma dicing, each with its own benefits and applications. Dicing Techniques
AI memory emerges as new battleground for SK Hynix, Samsung and othersMay 11, 2024
Demand for high-bandwidth memory is driving competition -- and prices -- higher
AI chip startup Deepx raises $80m, receives $529m valuationMay 11, 2024
Funding round was led by SkyLake Equity Partners
A Look At Intel 4 Process TechnologyMay 7, 2024
A look at Intel's next-generation high-performance process technology, Intel 4.
Intel’s 14A Magic Bullet: Directed Self-Assembly (DSA)Apr 23, 2024
How High-NA EUV can be economically viable at the 1.4nm process node
Rambus Unveils GDDR7 Memory Controller IP: PAM3 Signaling, Up To 48 Gbps DaApr 23, 2024
Rambus has unveiled its next-gen GDDR7 memory controller IP, featuring PAM3 Signaling, and up to 48 Gbps transfer speeds.
Exploring Process Scenarios To Improve DRAM Device PerformanceApr 19, 2024
On the use and benefits of virtual fabrication in the development of DRAM saddle fin profiles
Biden has brought the ban hammer down on US export of AI chips to ChinaApr 17, 2024
Datacenter GPUs and some consumer cards now exceed performance limits
Intel preps export-friendly lower-power Gaudi 3 AI chips made for ChinaApr 17, 2024
Beijing will be thrilled by this nerfed silicon
Nvidia Blackwell Perf TCO Analysis - B100 vs B200 vs GB200NVL72Apr 12, 2024
GPT-4 Profitability, Cost, Inference Simulator, Parallelism Explained, Performance TCO Modeling In Large & Small Model Inference and Training
Google just released its AI chip rival to NvidiaApr 10, 2024
Google’s new AI chip is a rival to Nvidia, and its Arm-based CPU will compete with Microsoft and Amazon
How To Build A Better “Blackwell” GPU Than Nvidia DidApr 5, 2024
While a lot of people focus on the floating point and integer processing architectures of various kinds of compute engines, we are spending more and more
4 Fiber Optic Networking Spotlights From the Optical Fiber ConferenceApr 2, 2024
Some of the leaders of the networking industry showed up to the Optical Fiber Conference, including Broadcom, MediaTek, Semtech, and MaxLinear.
The Challenges Of Working With PhotonicsApr 1, 2024
From curvilinear designs to thermal vulnerabilities, what engineers need to know about the advantages and disadvantages of photonics.
Half of Russian-Made Chips Are DefectiveMar 31, 2024
Anton Shilov reports via Tom's Hardware: About half of the processors packaged in Russia are defective. This has prompted Baikal Electronics, a Russian processor developer, to expand the number of packaging partners in the country, according to a report in Vedomosti, a Russian-language business dai...
Lenovo Shows Huge Optimism Towards AMD’s Instinct MI300X AI AcceleratorsMar 29, 2024
Lenovo, the firm emerging as a driving force behind AI computing, has expressed tremendous optimism about AMD's Instinct MI300X accelerator.
The world's semiconductor industry hinges on a single quartz factory in NorMar 26, 2024
The deposits formed 380 million years ago when Africa collided with North America.
Silicon carbide substrate costs falling as larger diameters adoptedMar 25, 2024
Number of 8-inch SiC fabs under construction or planned globally reaches 11
Accelerator Industry ModelMar 14, 2024
The SemiAnalysis AI accelerator model is used to gauge historical and future accelerator production by company and type.
Synopsys Shepards Circuits Towards 1.6T EthernetMar 4, 2024
The Ethernet roadmap has had a few bumps and potholes in the four and a half decades since the 10M generation was first published in 1980. Remember the
Techniques To Identify And Correct Asymmetric Wafer Map Defects Caused By DFeb 29, 2024
We explore the causes and implications of asymmetric wafer defects in semiconductor manufacturing. We also consider the use of virtual process modeling to understand and mitigate these structural failures.
Authority.Integrity. Accuracy.Feb 28, 2024
After coming up against the limits of physics, scientists are rethinking chip architecture like never before
ASAP5: A predictive PDK for the 5 nm nodeFeb 24, 2024
We present a predictive process design kit (PDK) for the 5 nm technology node, the ASAP5 PDK. ASAP5 is not related to a particular foundry and the ass…
Grokking Groq’s GroqnessFeb 22, 2024
Startup Groq has developed an machine learning processor that it claims blows GPUs away in large language model workloads – 10x faster than an Nvidia GPU at 10 percent of the cost, and needing a tenth of the electricity. Update: Groq model compilation time and time from access to getting it up and running clarified. […]
Groq Inference Tokenomics: Speed, But At What Cost?Feb 22, 2024
Faster than Nvidia? Dissecting the economics
The Seven Pillars Of IC Package Physical DesignFeb 17, 2024
Embracing emerging approaches is essential for crafting packages that address the evolving demands of sustainability, technology, and consumer preferences.
Application Specific Lithography: Avoiding Stochastic Defects and Image ImbFeb 11, 2024
The discussion of any particular lithographic application often refers to…
Nvidia’s Big Tech Rivals Put Their Own A.I. Chips on the Table - The New YoFeb 7, 2024
Chafing at their dependence, Amazon, Google, Meta and Microsoft are racing to cut into Nvidia’s dominant share of the market.
The New, New TransistorFeb 1, 2024
In power electronics, aluminum nitride could overtake two powerhouses that only recently bested silicon
Micron NVDRAM may never become a productJan 9, 2024
Micron’s NVDRAM chip could be a proving ground for technologies used in other products – and not become a standalone product itself. The 32Gb storage-class nonvolatile random-access memory chip design was revealed in a Micron paper at the December IEDM event, and is based on ferroelectricRAM technology with near-DRAM speed and longer-than-NAND endurance. Analysts we […]
Choosing the Best Wide Bandgap Technology for Your Application - Industry ArticlesJan 7, 2024
Understanding the unique advantages provided by silicon carbide (SiC) and gallium nitride (GaN) can help you select the optimal technology to meet your products’ power, thermal, and size requirements.
Wafer Wars: Deciphering Latest Restrictions On AI And Semiconductor ManufacturingOct 30, 2023
China's Countermove: How Beijing is Dodging New Semiconductor Restrictions
Samsung Unveils Shinebolt HBM3E Memory At Nearly 10Gbps And Blistering 32GbOct 21, 2023
We're getting a first glimpses of Samsung's next-generation HBM3E and GDDR7 memory chips.
A Comprehensive RF Characterization and Modeling Methodology for the 5nm TeOct 7, 2023
This paper aims to provide insights into the thermal, analog, and RF attributes, as well as a novel modeling methodology, for the FinFET at the industry standard 5nm CMOS technology node. Thermal characterization shows that for a 165K change in temperature, the Sub-threshold Slope (SS) and threshold voltage vary by 69 % and ~70 mV, respectively. At room temperature, a single gate contacted n-FinFET RF device exhibits a cutoff and maximum oscillation frequency of ~100 GHz and ~170 GHz, respectively. Analog and RF Figures of Merit (FoMs) for 5 nm technology at a device level and their temperature sensitivity are also reported. The industry standard BSIM-CMG model is modified to capture the impact of self-heating (SH) and parasitics. The SH model is based on measured data, and the modeling approach renders it independent of other model parameters. To the authors’ knowledge, an iteration free approach to develop a model-card for RF applications is explained for the very first time. Excellent agreement between the measured data and the model indicates that our methodology is accurate and can be used for faster PDK development.
The Ultimate Signoff (TapeOut) ChecklistOct 2, 2023
In semiconductor design, “sign-off” during the tape-out (tapeout) of a chip refers to the formal approval process to ensure that the chip design is error-free, meets all specifications, and is ready for manufacturing at the foundry. It is essential because it minimizes the risk of costly errors, ensures compliance with foundry requirements, and validates that
VLSI Physical DesignSep 27, 2023
Intel unveils glass substrates for chips to advance Moore’s LawSep 19, 2023
Join our daily and weekly newsletters for the latest updates and exclusive content on industry-leading AI coverage. Learn More Intel said it has made a significant breakthrough in the development of glass substrates for next-generation advanced packaging in an attempt to stay on the past of Moore’s Law. The big chip maker said this milestone […]
“Downfall” bug affects years of Intel CPUs, can leak encryption keys and moAug 10, 2023
Researchers also disclosed a separate bug called “Inception” for newer AMD CPUs.
Downfall AttacksAug 9, 2023
Downfall attacks targets a critical weakness found in billions of modern processors used in personal and cloud computers.
TSMC’s 3nm yield rate reportedly just 55% · TechNodeJul 30, 2023
TSMC is struggling with its new 3nm process, with the semiconductor giant's yield rate reportedly far below the standard expected.
AMD’s Radeon Instinct MI210: GCN Lives OnJul 28, 2023
AMD, Nvidia, and Intel have all diverged their GPU architectures to separately optimize for compute and graphics.
Atomera Plans to Breathe New Life into Older Chip ManufacturingJul 28, 2023
Atom-thin layers of oxygen in a chip’s silicon can make devices speedier and more reliable
What is an Image Processor? Turns Out the Answer is HazyJul 24, 2023
Real-time image processing is a resource-intensive task that often requires specialized hardware. With that in mind, let's explore processors that are designed specifically for photo and video applications.
Mitigating Electromigration In Chip DesignJul 22, 2023
The interplay between current density, temperature, and material properties.
Lossy Transmission Lines: Introduction to the Skin EffectJul 19, 2023
This article introduces high-frequency conductor losses in transmission lines caused by a phenomenon known as the skin effect.
‘An Act of War’: Inside America’s Silicon Blockade Against ChinaJul 19, 2023
The Biden administration thinks it can preserve America’s technological primacy by cutting China off from advanced computer chips. Could the plan backfire?
Gallery of Processor Cache EffectsJul 18, 2023
AI Capacity Constraints - CoWoS and HBM Supply ChainJul 9, 2023
Quarterly Ramp for Nvidia, Broadcom, Google, AMD, AMD Embedded (Xilinx), Amazon, Marvell, Microsoft, Alchip, Alibaba T-Head, ZTE Sanechips, Samsung, Micron, and SK Hynix
Micron Announces GDDR7 for GPUs Coming in First Half of 2024Jun 30, 2023
Though it'll arrive just in time for mid-cycle refresh from AMD, Nvidia, and Intel, it's unclear if there will be any takers just yet.
FinFETs: The Ultimate GuideJun 28, 2023
Introduction to FinFETs In the quest for smaller, faster, and more power-efficient electronic devices, the evolution of semiconductor technology has been relentless. One significant milestone in this journey has been the advent of FinFETs (Fin Field-Effect Transistors). FinFETs have emerged as a ground-breaking transistor design that has revolutionized the semiconductor industry. This article delves
The chip patterning machines that will shape computing’s next actJun 23, 2023
The first lithography tools were fairly simple, but the technologies that produce today’s chips are among humankind’s most complex inventions.
Panmnesia speeds up vector search with CXLJun 20, 2023
Panmnesia has devised CXL-based vector search methods that are much faster than Microsoft’s Bing and Outlook.
WIN Semiconductors Releases Next Generation mmWave Enhancement/Depletion GaJun 19, 2023
PQG3-0C platform integrates optimized power and low noise transistors, PN diodes, E/D logic and RF switches on a chip to meet mmWave performance requirements
The Third Time Charm Of AMD’s Instinct GPUJun 14, 2023
The great thing about the Cambrian explosion in compute that has been forced by the end of Dennard scaling of clock frequencies and Moore’s Law lowering
Smart TV industry rocked by alleged patent conspiracy from chip makerJun 11, 2023
Lawsuit: Patent trolls created “harmful illusion” of unstable TV-chip market.
Intel Is All-In on Back-Side Power DeliveryJun 9, 2023
The company’s PowerVia interconnect tech demonstrated a 6 percent performance gain
The Ultimate Guide for Optimal SoC FloorplanJun 2, 2023
Floorplanning plays a crucial role in the physical design of an SoC and lays the foundation for an efficient and high-performance ASIC layout. In this article, we will discuss ten essential floorplanning commandments that physical design engineers can follow to ensure a correct-by-construction design. Design Partitioning Design Partitioning refers to dividing a large
The Case for Running AI on CPUs Isn’t Dead YetJun 2, 2023
GPUs may dominate, but CPUs could be perfect for smaller AI models
ARM’s Cortex A53: Tiny But ImportantMay 28, 2023
Tech enthusiasts probably know ARM as a company that develops reasonably performant CPU architectures with a focus on power efficiency.
Intel CPU Die Topology - by Jason Rahman - Delayed BranchMay 28, 2023
Over the past 10-15 years, per-core throughput increases have slowed, and in response CPU designers have scaled up core counts and socket counts to continue increasing performance across generations of new CPU models.
Photonic Chips Curb AI Training’s Energy AppetiteMay 22, 2023
Stanford team achieves first-ever optical backpropagation milestone
Google dives into the ‘supercomputer’ game by knitting together purpose-buiMay 12, 2023
Google's new machines combine Nvidia H100 GPUs with Google’s high-speed interconnections for AI tasks like training very large language models.
3D DRAM could be revolutionary – if it worksMay 5, 2023
We asked memory semiconductor industry analyst Jim Handy of Objective Analysis how he views 3D DRAM technology.
Tech Tuesday: Silicon AssuranceMay 1, 2023
A Gainesville-based tech company is developing new ways to try to make our phones, laptops and other devices safe from bad actors.
GaN HEMT Circuit Topologies for High-resolution LiDARApr 29, 2023
Learn about gallium-nitride (GaN) high electron mobility transistors (HEMTs) and how they can be used in LiDAR (light detection and ranging) applications.
Salience Labs advances its AI agenda using new chip designApr 26, 2023
Vaysh Kewada, CEO and Co-Founder of Salience Labs, advances AI by circumventing finite processing power with a revolutionary new chip design.
Memory Roundup: Ultra-low-power SRAM, ULTRARAM, & 3D Flash Hit the SceneApr 25, 2023
New memory technologies have emerged to push the boundaries of conventional computer storage.
State of the Art And Future Directions of Rowhammer (ETH Zurich)Apr 19, 2023
A new technical paper titled “Fundamentally Understanding and Solving RowHammer” was published by researchers at ETH Zurich. Abstract “We provide an overview of recent developments and future directions in the RowHammer vulnerability that plagues modern DRAM (Dynamic Random Memory Access) chips, which are used in almost all computing systems as main memory. RowHammer is the... » read more
Latest GaN ICs Crank out More Speed, Efficiency, and Power DensityApr 15, 2023
Leveraging gallium nitride (GaN) technology, the latest batch of power devices boast improved performance, high efficiency, and low design costs.
How To Plan And Conduct Highly Accelerated Life TestingApr 13, 2023
Uncover design and construction weaknesses by applying increased stressors to force failures.
RF Energy Harvesting and Wireless Power Transfer Technologies: Latest TechnApr 10, 2023
A new technical paper titled “RF Energy Harvesting and Wireless Power Transfer for Energy Autonomous Wireless Devices and RFIDs” was published by researchers at Institut Polytechnique de Paris, Universidade de Aveiro, The Hague, McGill University, University of Bordeaux, Polytechnique Montreal, and others. Abstract: “Radio frequency (RF) energy harvesting and wireless power transmission (WPT) technologies —both... » read more
4 Ways to Put Lasers on Silicon - IEEE SpectrumApr 9, 2023
You can make many things with silicon photonics, but a laser is not one of them
Google’s TPU v4 Architecture: 3 Major FeaturesApr 8, 2023
A new technical paper titled “TPU v4: An Optically Reconfigurable Supercomputer for Machine Learning with Hardware Support for Embeddings” was published by researchers at Google. Abstract: “In response to innovations in machine learning (ML) models, production workloads changed radically and rapidly. TPU v4 is the fifth Google domain specific architecture (DSA) and its third supercomputer... » read more
Samsung steps up fan-out wafer-level packaging deploymentApr 7, 2023
Samsung Electronics has stepped up its deployment in the fan-out (FO) wafer-level packaging segment with plans to set up related production lines in Japan, according to industry sources.
Hacker NewsApr 6, 2023
While microprocessors are used in various applications, they are precluded from the use in high-energy physics applications due to the harsh radiation present. To overcome this limitation a...
Interconnect Under the Spotlight as Core Counts Accelerate - SemiWikiApr 6, 2023
In the march to more capable, faster, smaller, and lower…
Ending an Ugly Chapter in Chip DesignApr 6, 2023
Study tries to settle a bitter disagreement over Google’s chip design AI
Growth of 300mm fab capacity picks up pace again - Bits&ChipsApr 5, 2023
After dipping this year, the growth of 300mm semiconductor manufacturing capacity is set to gain momentum.
RISC-V In The Datacenter Is No Risky PropositionApr 5, 2023
It was only a matter of time, perhaps, but the skyrocketing costs of designing chips is colliding with the ever-increasing need for performance,
True 3D Is Much Tougher Than 2.5DApr 5, 2023
While terms often are used interchangeably, they are very different technologies with different challenges.
RDL and Flip Chip DesignApr 5, 2023
RDL, an abbreviation for Redistribution Layer, that is, to make one or more layers of metal on the active chip side to redistribute the pins of the chip.
The Most Complex Chip Ever Made?Apr 5, 2023
Historically Intel put all its cumulative chip knowledge to work advancing Moore's Law and applying those learnings to its future CPUs. Today, some of
Video: Intel EMIB Technology ExplainedApr 5, 2023
Intel's multi-die interconnect bridge (EMIB) is an approach to in-package high-density interconnect of heterogeneous chips.
US Semiconductor Manufacturing | CHIPS and Science Act | Intel®Apr 5, 2023
Powered by the promises of the CHIPS Act, Intel is investing more than $100 billion to increase domestic chip manufacturing capacity and capabilities.
New Chip Purportedly Offers the “Best Memory of Any Chip for Edge AI”Apr 4, 2023
USC researchers have announced a breakthrough in memristive technology that could shrink edge computing for AI to smartphone-sized devices.
Tiny Tapeout - Tiny TapeoutMar 31, 2023
From idea to chip design in minutes! TT09 Closes in TT09 Closes in 44 DAYS 44 HOURS 44 MINS 44 SECS Tiles PCBs Tiny Tapeout is an educational project that makes it easier and cheaper than ever to get your designs manufactured on a real chip! Read the paper here. See what other people are making by taking a look at what was submitted on our previous shuttles.
Cerebras open sources seven GPT-based LLMs, ranging from 111M to 13B parameMar 29, 2023
Mike Wheatley / SiliconANGLE: Cerebras open sources seven GPT-based LLMs, ranging from 111M to 13B parameters and trained using its Andromeda supercomputer for AI, on GitHub and Hugging Face
Gallium Nitride and Silicon Carbide Fight for Green Tech DominationMar 26, 2023
Regardless of which one wins, they will cut greenhouse gases by billions of tonnes
I Saw the Face of God in a Semiconductor FactoryMar 22, 2023
As the US boosts production of silicon chips, an American journalist goes inside TSMC, the mysterious Taiwanese company at the center of the global industry.
New method gets better performance out of atomically thin transistorsMar 21, 2023
A new way of making wafer-scale electronics out of atomically thin sheets.
Nvidia Tackles Chipmaking Process, Claims 40X Speed Up with cuLithoMar 21, 2023
Faster masks, less power.
Chinese chipmaking technology development may stall at 40nm scale - DIGITIMMar 19, 2023
Comprehensive up-to-date news coverage, aggregated from sources all over the world by Google News.
China’s flagship CPU designer puts on a brave face amid US sanctionsMar 19, 2023
Chinese chip designer Loongson, which has tried to reduce the country’s reliance on Intel and AMD, is developing its own general-purpose GPU despite being added to a US trade blacklist.
Taking a look at the ReRAM state of playMar 16, 2023
ReRAM startup Intrinsic Semiconductor Technologies has raised $9.73 million to expand its engineering team and bring its product to market.
Aehr receives $6.7m order for FOX WaferPak full-wafer contactorsMar 15, 2023
Lead SiC test & burn-in customer boosting production of power devices for EVs
Deep Learning (DL) Applications In Photomask To Wafer Semiconductor ManufacMar 15, 2023
A list of artificial intelligence used in semiconductor manufacturing tools from February 2023.
Wafer foundries in China expected to continue with capacity expansion plansMar 14, 2023
China-based semiconductor manufacturers, in the wake of geopolitical risks, are expected to keep up with their capacity expansion strategies going into 2023 with a good number of projects already in construction, according to DIGITIMES Research's latest report covering the latest status of China's wafer foundry industry
Total Revenue of Top 10 Foundries Fell by 4.7% QoQ for 4Q22 and Will SlideMar 14, 2023
Mar. 13, 2023 —- According to TrendForce’s latest survey of the global foundry market, electronics brands began adjusting their inventories in 2Q22, but foundries were unable to rapidly adapt to this development because they reside in the more upper portion of the supply chain. Moreover, revising procurement quantities of long-term foundry contracts takes time as well. Hence,
Meet the 16 members of the EDA Alliance underpinning TSMC dominanceMar 13, 2023
Kuo-Hua Chou, special to DIGITIMES Asia
Setting The Stage For 1.6T Ethernet, And Driving 800G NowMar 7, 2023
Marvell has had a large and profitable I/O and networking silicon business for a long time, but with the acquisitions of Inphi in October 2020 and of
Asynchronously Parallel Optimization Method For Sizing Analog Transistors UMar 5, 2023
A new technical paper titled “APOSTLE: Asynchronously Parallel Optimization for Sizing Analog Transistors Using DNN Learning” was published by researchers at UT Austin and Analog Devices. Abstract “Analog circuit sizing is a high-cost process in terms of the manual effort invested and the computation time spent. With rapidly developing technology and high market demand, bringing... » read more
Five key reasons to switch to GaN - DCDFeb 25, 2023
It may be the only way to keep up with environmental power regulations
Meet the $10,000 Nvidia chip powering the race for A.I.Feb 25, 2023
The $10,000 Nvidia A100has become one of the most critical tools in the artificial intelligence industry,
An AI 'Engineer' Has Now Designed 100 Chips - ExtremeTechFeb 9, 2023
AI firm Synopsys has announced that its DSO.ai tool has successfully aided in the design of 100 chips, and it expects that upward trend to continue.
Update on Samsung SSD ReliabilityFeb 4, 2023
We have been very public about how reliable Samsung SSDs have been in the past, so we wanted to explain why we are now moving part of our line to Sabrent.
Choosing The Correct High-Bandwidth MemoryJan 25, 2023
New applications require a deep understanding of the tradeoffs for different types of DRAM.
Security IP Cores: Ultimate Guide - AnySiliconJan 22, 2023
Security IP cores are blocks that provide security features for integrated circuits (ICs) and systems-on-chips (SoCs). It includes encryption, decryption, authentication, and key management functions that protect against unauthorized access or hacking. The IP core can be integrated into a larger IC design to provide enhanced security for applications such as IoT devices, payment systems,
Hacker NewsJan 20, 2023
Here, I provide an in-depth analysis of GPUs for deep learning/machine learning and explain what is the best GPU for your use-case and budget.
More CPU Cores Isn’t Always Better, Especially In HPCJan 20, 2023
If a few cores are good, then a lot of cores ought to be better. But when it comes to HPC this isn’t always the case, despite what the Top500 ranking –
🎙️ | ASML & EUV Lithography Deep Dive with AsianometryJan 18, 2023
Covering EUV Lithography, ASML, and everything in between from how it all works to their impact on the world and what it all means.
bmurmann/Book-on-MOS-stages: Book repository "Analysis and Design of Elementary MOS Amplifier Stages"Jan 17, 2023
Book repository "Analysis and Design of Elementary MOS Amplifier Stages" - bmurmann/Book-on-MOS-stages
DigiTimes: TSMC 3nm wafer price breaks $20,000. Expect price increase for iPhone 15, GPU,...Jan 14, 2023
— RetiredEngineer® (@chiakokhua)
My Articles on AAC (Page I)Jan 14, 2023
The following is a list of my articles on various topics. Besides technical articles, news pieces that might have useful technical information are also included. You can find my articles on FPGA...
RF Design Basics—Introduction to Transmission LinesJan 14, 2023
Learn about voltage waves and how they relate to an important basic concept of radio frequency (RF) circuit design: transmission lines.
TSMC Might Cut 3nm Prices to Lure AMD, NvidiaJan 14, 2023
Industry sources say TSMC is considering lowering 3nm prices to stimulate interest from chip designers
TSMC’s Wafer Prices Revealed: 300mm Wafer at 5nm Is Nearly $17,000 | Tom'sJan 13, 2023
High performance and high transistor density come at a cost
Big Trouble in Little InterconnectsJan 2, 2023
Interconnects—those sometimes nanometers-wide metal wires that link transistors into circuits on an IC—are in need of a major overhaul. And as chip fabs march toward the outer reaches of Moore’s Law, interconnects are also becoming the industry’s choke point.
Book-on-MOS-stages/Analysis and Design of Elementary MOS Amplifier Stages.pDec 31, 2022
Book repository "Analysis and Design of Elementary MOS Amplifier Stages" - bmurmann/Book-on-MOS-stages
aolofsson/awesome-opensource-hardware: List of awesome open source hardware tools, generators, and reusable designsDec 22, 2022
List of awesome open source hardware tools, generators, and reusable designs - aolofsson/awesome-opensource-hardware
Safeguarding SRAMs From IP Theft (Best Paper Award)Dec 18, 2022
A technical paper titled “Beware of Discarding Used SRAMs: Information is Stored Permanently” was published by researchers at Auburn University. The paper won “Best Paper Award” at the IEEE International Conference on Physical Assurance and Inspection of Electronics (PAINE) Oct. 25-27 in Huntsville. Abstract: “Data recovery has long been a focus of the electronics industry... » read more
Gallium Arsenide (GaAs) OverviewDec 11, 2022
Gallium arsenide (GaAs) technology is a type of semiconductor material used in the manufacturing of various electronic devices. It is known for its high electron mobility, which allows it to operate at higher speeds and with lower power consumption compared to other semiconductor materials such as silicon.
Just How Bad Is CXL Memory Latency?Dec 6, 2022
Conventional wisdom says that trying to attach system memory to the PCI-Express bus is a bad idea if you care at all about latency. The further the memory
Opportunities and Challenges for Carbon Nanotube TransistorsNov 23, 2022
A new technical review paper titled “Carbon nanotube transistors: Making electronics from molecules” was published by researchers at Duke University, Northwestern University, and Stanford University. “Between the opportunities in high-performance digital logic with the potential for 3D integration and the possibilities for printed and even recyclable thin-film electronics, CNT transistors warrant a renewed and even... » read more
On-Chip Power Distribution Modeling Becomes Essential Below 7nmNov 20, 2022
Why and when it's needed, and what tools and technologies are required.
Cerebras Reveals Andromeda, a 13.5 Million Core AI SupercomputerNov 15, 2022
The world's largest chip scales to new heights.
Startup Knocks Down Chiplet Hurdles with High-performance LinkNov 8, 2022
Eliyan is emerging from stealth mode, unveiling the successful tapeout of its high-performance UCIe-compliant die-to-die interconnect technology in 5 nm process.
TSMC Grants a Sweep of EDA Certifications for New Process NodesNov 5, 2022
To ensure that designers have the right tools for the job, TSMC announced a slew of EDA tool certifications for its most advanced processes—ranging from 3 nm nodes to 3D semiconductor integration.
Introduction to Extrinsic SemiconductorsOct 27, 2022
Extrinsic semiconductors have been doped with specific chemicals. This process helps to modify the electrical properties of a relatively pure semiconductor crystal.
What's Different About Next-Gen TransistorsOct 21, 2022
Advanced etch holds key to nanosheet FETs; evolutionary path for future nodes.
Biden Just Clobbered China’s Chip IndustryOct 21, 2022
The latest American trade restrictions could significantly set back China’s semiconductor ambitions.
Four Cornerstones of CPU Performance.Oct 19, 2022
Researchers Develop Transistor-free Compute-in-Memory ArchitectureOct 13, 2022
Using new materials, UPenn researchers recently demonstrated how analog compute-in-memory circuits can provide a programmable solution for AI computing.
What Time is It? A Timing Market Primer and OverviewOct 2, 2022
How do we keep track of time? A deeper look into Quartz timers and the emerging field of MEMS
Decreasing Refresh Latency of Off-the-Shelf DRAM ChipsSep 29, 2022
A new technical paper titled “HiRA: Hidden Row Activation for Reducing Refresh Latency of Off-the-Shelf DRAM Chips” was published by researchers at ETH Zürich, TOBB University of Economics and Technology and Galicia Supercomputing Center (CESGA). Abstract “DRAM is the building block of modern main memory systems. DRAM cells must be periodically refreshed to prevent data... » read more
How Memory Design Optimizes System PerformanceSep 26, 2022
Changes are steady in the memory hierarchy, but how and where that memory is accessed is having a big impact.
Ultimate Guide: Clock Tree SynthesisSep 24, 2022
A vast majority of modern digital integrated circuits are synchronous designs. They rely on storage elements called registers or flip-flops, all of which change their stored data in a lockstep manner with respect to a control signal called the clock. In many ways, the clock signal is like blood flowing through the veins of a
Page Not Available | MailchimpSep 3, 2022
Industry Structure: Fabs are in Favor - LTAs are the TellAug 14, 2022
Long Term agreements, particularly the NCNR order is a relative newcomer this cycle. Let's see how they are holding up. The Industry Structure is showing that Fabs are in charge.
Perspective | Electronics are built with death dates. Let’s not keep them a secret.Aug 8, 2022
Our analysis of 14 popular consumer devices found most could stop working in 3 to 4 years because of irreplaceable batteries. Here’s how we get the tech industry to design products that last longer — and do less damage to the environment.
GlobalFoundries joins Google's open-source silicon initiativeAug 4, 2022
Google announced in a blog on August 3 that GlobalFoundries (GF) is participating in its open-source silicon initiative as a new partner, calling the new partnership a milestone in the foundry ecosystem market.
Semis for Everyone?Aug 1, 2022
Google is promoting the growth of open source tools for designing semis. The science fiction version of this story leads to everyone designing chips, the reality is going to be much narrower, but s…
SkyWater and Google expand open source program to new 90nm technology | GooJul 30, 2022
Over the last two years, Google and SkyWater Technology have partnered to make building open silicon accessible to all developers
Moneyball for engineers: What the semiconductor industry can learn from sportsJul 18, 2022
R&D leaders can boost productivity by using advanced analytics to create stronger, faster engineering teams.
New working speculative execution attack sends Intel and AMD scramblingJul 12, 2022
Both companies are rolling out mitigations, but they add overhead of 12 to 28 percent.
Memristive, Spintronic, and 2D‐Materials‐Based Devices to Improve and ComplJul 11, 2022
Moore's law has slowed down and, with the rise of data-intensive applications, like machine learning, new approaches to computing hardware are needed. The perspective explores the role of memristive,...
CXL: Protocol for Heterogenous DatacentersJul 8, 2022
Let's learn more about the world's most important manufactured product. Meaningful insight, timely analysis, and an occasional investment idea.
Ayar Labs: Solving Bandwidth and Power Bottlenecks with Optical I/OJul 8, 2022
Ayar Labs solves bandwidth and power bottlenecks by moving data using light. We built the world's first optical I/O chiplets.
Intel® Silicon PhotonicsJul 8, 2022
Intel® Silicon Photonics combines the manufacturing scale and capability of silicon with the power of light onto a single chip.
Intel Showcases a Photonics “First” — an Eight-wavelength Laser Array - NewsJul 8, 2022
Intel Lab researchers push photonics one step further by demonstrating a tightly controlled, highly integrated eight-wavelength laser.
Intel announces silicon photonics advancement towards optical I/OJul 5, 2022
Intel has demonstrated an eight-wavelength laser array on a silicon wafer paving the way for the next generation of integrated silicon photonics products.
An Introduction to MEMS Vibratory GyroscopesJul 4, 2022
Microelectromechanical systems (MEMS) vibratory gyroscopes can be a bit mysterious and math-intensive. Let's break the math down, and go over gyroscope basics and structures.
The Basics of Electrical Engineering StandardsJun 24, 2022
Get a high-level introduction to how standards play into the EE world.
A new vulnerability in Intel and AMD CPUs lets hackers steal encryption keysJun 23, 2022
Hertzbleed attack targets power-conservation feature found on virtually all modern CPUs.
PCI Express 7.0 standard provides eight times the bandwidth of today’s connJun 23, 2022
PCI-SIG has drafted the PCIe 7.0 spec and aims to finalize it in 2025.
High-Performance 5G IC Designs Need High-Performance Parasitic ExtractionJun 23, 2022
The high frequencies and data rates involved in 5G designs makes layout verification all the more important.
GaN Systems Cup 2022 design competition underwayJun 21, 2022
Challenge to create GaN-based 400V photovoltaic power supply
Designing and Simulating Low-Voltage CMOS Circuits Using Four-Parameter ModJun 21, 2022
New technical paper titled “Bridging the Gap between Design and Simulation of Low-Voltage CMOS Circuits” from researchers at Federal University of Santa Catarina, Brazil. Abstract “This work proposes a truly compact MOSFET model that contains only four parameters to assist an integrated circuits (IC) designer in a design by hand. The four-parameter model (4PM) is... » read more
Thermal Management Challenges and Requirements of 3 types of MicroelectroniJun 21, 2022
New technical paper titled “A Review on Transient Thermal Management of Electronic Devices” from researchers at Indian Institute of Technology Bombay. Abstract “Much effort in the area of electronics thermal management has focused on developing cooling solutions that cater to steady-state operation. However, electronic devices are increasingly being used in applications involving time-varying workloads. These... » read more
Will optics replace copper interconnects? We asked Ayar LabsJun 21, 2022
Star Trek's glowing circuit boards may not be so crazy
Another Firing Among Google’s A.I. Brain Trust, and More Discord (Published 2022)May 2, 2022
The researchers are considered a key to the company’s future. But they have had a hard time shaking infighting and controversy over a variety of issues.
The X-Ray Tech That Reveals Chip DesignsApr 30, 2022
When you’re baking a cake, it’s hard to know when the inside is in the state you want it to be. The same is true—with much higher stakes—for microelectronic chips: How can engineers confirm that what’s inside has truly met the intent of the designers? How can a semiconductor design company tell wh
Sandia reports GaN diode with record 6.4kV breakdown ultrafast devices stepMar 21, 2022
Target is 20kV, to protect electric grid from electromagnetic pulse
Designing a 2048-Chiplet, 14336-Core Waferscale ProcessorMar 14, 2022
Challenges and troubleshooting employed to design a 2048-chiplet, 14,336-core waferscale processor system.
Semiconductor Engineering - TechnicalMar 14, 2022
Semiconductor Engineering's collection of technical papers for the chip industry.
5.5 mm in 1.25 nanoseconds | Random ASCII – tech blog of Bruce DawsonJan 13, 2022
In 2004 I was working for Microsoft in the Xbox group, and a new console was being created. I got a copy of the detailed descriptions of the Xbox 360 CPU and I read it through multiple times and su…
Nvidia Research Plots A Course To Multiple Multichip GPU EnginesJan 6, 2022
There are two types of packaging that represent the future of computing, and both will have validity in certain domains: Wafer scale integration and
Low-Power AI Startup Eta Compute Delivers First Commercial ChipsDec 14, 2021
The firm pivoted away from riskier spiking neural networks using a new power management scheme
SRAM vs. DRAM: The Future of Memory - EE TimesDec 11, 2021
EE Times Compares SRAM vs. DRAM, Common Issues With Each Type Of Memory, And Takes A Look At The Future For Computer Memory.
HewlettPackard/cacti: An integrated cache and memory access time, cycle time, area, leakage, and dynamic power modelDec 11, 2021
An integrated cache and memory access time, cycle time, area, leakage, and dynamic power model - HewlettPackard/cacti
Gallium Arsenide: Another Player in Semiconductor Technology - NewsDec 11, 2021
This article looks at gallium arsenide, comparing it to other semiconductor materials, and explores how different compounds are used in components.
Under The Hood Of Google’s TPU2 Machine Learning ClustersDec 11, 2021
As we previously reported, Google unveiled its second-generation TensorFlow Processing Unit (TPU2) at Google I/O last week. Google calls this new
Magnetoresistance in Magnetic Field Sensors: Applications for TMR Sensors - NewsDec 10, 2021
What are TMR sensors and what applications are they best suited to? This article provides a snapshot of this sensor type and what TMR-based components are available for designers.
3D Stacking Could Boost GPU Machine LearningDec 8, 2021
Nvidia has staked its growth in the datacenter on machine learning. Over the past few years, the company has rolled out features in its GPUs aimed neural
First In-Depth Look at Google’s TPU ArchitectureDec 7, 2021
Four years ago, Google started to see the real potential for deploying neural networks to support a large number of new services. During that time it was
D&R Silicon IP Catalog: Directory of Semiconductor IPDec 7, 2021
D&R provides the world's largest directory of Silicon IP (Intellectual Property), SoC Configurable Design Platforms and SOPC Products from 400 vendors
FET vs. BJT vs. IGBT: What’s the Right Choice for Your Power Stage Design? - Technical ArticlesDec 7, 2021
This article will help the reader understand the different types of power semiconductors: how they work, their key parameters, and trade-offs.
Stacking Up AMD MI200 Versus Nvidia A100 Compute EnginesDec 7, 2021
The modern GPU compute engine is a microcosm of the high performance computing datacenter at large. At every level of HPC – across systems in the
NeuroMem IC Matches Patterns, Sees All, Knows All - EE TimesDec 6, 2021
PARIS — If you’ve ever seen the U.S. TV series “Person of Interest,” during which an anonymous face in the Manhattan crowd, highlighted inside a digital
An Introduction to Semiconductor EconomicsDec 6, 2021
This blog post is in response to a recent topic on the Parallella forum regarding Adapteva’s chip cost efficiency (GFLOPS/$): [forum discussion thread]. I had to be a little vague on some poi…
Semiconductor IP Vendors List | ChipEstimate.comDec 6, 2021
Explore semiconductor IP, white papers, news, technical articles and more from hundreds of top semiconductor IP vendors and foundries.
The Gatekeeper of a Successful Design is the Interconnect - EE TimesDec 4, 2021
An effective interconnect makes delivering a complex SoC easier, more predictable, and less costly.
Synopsys Blog | Latest Insights on EDA, IP & Systems DesignDec 4, 2021
Explore Synopsys Blog for the latest insights and trends in EDA, IP, and Systems Design. Stay updated with expert articles and industry news.
Advantages Of LPDDR5: A New Clocking SchemeDec 3, 2021
Innovative new clocking schemes in the latest LPDDR standard enable easier implementation of controllers and PHYs at maximum data rate as well as new options for power consumption.
Die-Per-Wafer EstimatorDec 3, 2021
OpenROAD – HomeDec 3, 2021
Library Design - SilvacoDec 3, 2021
Silvaco provides standard cell library design and optimization services
Issues In Designing 5G Beamforming AntennasDec 3, 2021
5G Beamforming Antennas Create Design, Test Problems Assuring quality under changing conditions with shifting standards and use models is a major challenge.
Effect of Design on Transistor Density - SemiwikiDec 3, 2021
I have written a lot of articles looking at leading…
How to make your own deep learning accelerator chip!Dec 3, 2021
Currently there are more than 100 companies all over the world building ASIC’s (Application specific integrated circuit) or SOC’s (System…
What Exactly Is a Phase-Locked Loop, Anyways? - Technical ArticlesDec 3, 2021
This article introduces a phase-based feedback system that plays an important role in many applications.
Using Multiple Inferencing Chips In Neural NetworksDec 3, 2021
How to build a multi-chip neural model with minimal overhead.
Vivienne Sze · Efficient Processing of Deep Neural Network: from Algorithms to Hardware ArchitecturesDec 3, 2021
This tutorial describes methods to enable efficient processing for deep neural networks (DNNs), which are used in many AI applications including computer vision, speech recognition, robotics, etc....
Using Memory Differently To Boost SpeedDec 3, 2021
Getting data in and out of memory faster is adding some unexpected challenges.
UPMEM Puts CPUs Inside Memory to Allow Applications to Run 20 Times FasterDec 3, 2021
PALO ALTO, Calif., August 19, 2019 — UPMEM announced today a Processing-in-Memory (PIM) acceleration solution that allows big data and AI applications to run 20 times faster and with 10 […]
DRAM Tradeoffs: Speed Vs. EnergyDec 3, 2021
Experts at the Table: Which type of DRAM is best for different applications, and why performance and power can vary so much.
TOPS, Memory, Throughput And Inference EfficiencyDec 3, 2021
Evaluate inference accelerators to find the best throughput for the money.
What Is Silicon Germanium’s Place at the Semiconductor Table? - NewsDec 3, 2021
Cheaper than gallium arsenide. More flexible band-gap tuning than silicon. What's silicon germanium's place in circuit design?
How 10 leading companies are trying to make powerful, low-cost lidarDec 2, 2021
Lidar is essential for self-driving cars—here’s how some leading lidar sensors work.
X7R, X5R, C0G…: A Concise Guide to Ceramic Capacitor Types - Technical ArticlesDec 2, 2021
This technical brief attempts to dispel some of the fog surrounding the three-character naming convention used to describe ceramic caps.
How to Reduce Power Consumption with Clock Gating - Technical ArticlesDec 2, 2021
This article will discuss the basic concepts of clock gating and how it can be used to reduce the power consumption of synchronous digital systems.
'Unclonable' digital fingerprints boost IoT device securityDec 2, 2021
The new technology is 10 times as reliable as what's come before for keeping internet-connected devices secure.
How lidar makers are coping with slow progress of self-driving techDec 2, 2021
We talked to lidar company executives and independent experts.
Using Verilog to Describe a Sequential Circuit - Technical ArticlesDec 2, 2021
This article focuses on using Verilog to describe synchronous sequential circuits.
Process Control For Next-Generation MemoriesDec 2, 2021
Emerging memory technologies call for an integrated PVD process system capable of depositing and measuring multiple materials under vacuum.
https://blog.riseml.com/comparing-google-tpuv2-against-nvidia-v100-on-resnet-50-c2bbb6a51e5eDec 2, 2021
Understanding PLL Applications: Frequency Multiplication - Technical ArticlesDec 2, 2021
This article explains how a PLL can be used to produce a high-frequency clock from a low-frequency reference signal.
To reinvent the processorDec 2, 2021
A detailed, critical, technical essay on upcoming CPU architectures.
Whitepapers - Silicon LabsDec 2, 2021
Review whitepapers written by our expert engineers to help you understand new concepts or implement best practices in your product design and development.
Executing Commands in Memory: DRAM Commands - Technical ArticlesDec 2, 2021
This article will take a closer look at the commands used to control and interact with DRAM.
The Floppy Disk of Floating PointDec 2, 2021
An essay that bids farewell to x87 – a computing architecture too long for this world.
Understanding SoC Clock Design - AnySiliconDec 1, 2021
SoC clock tree overview, metrics that help qualify a clock tree and most commonly used clock tree distribution methodologies.
What is a Probe Card? - AnySiliconDec 1, 2021
A probe card is essentially an interface or a board that is used to perform wafer test for a semiconductor wafer. It is used to connect to the integrated circuits located on a wafer to the ATE (Automated Test Equipment) in order to test their electrical parameters and performance before they are manufactured and shipped
Overview and Types of Capacitors in ASIC Design - AnySiliconDec 1, 2021
Learn more on the various capacitors in ASIC design that can improve your chip performance and recude it's cost.
How FPGAs work, and why you'll buy oneDec 1, 2021
Software optimization resources. C++ and assembly. Windows, Linux, BSD, Mac OS XDec 1, 2021
Software optimization manuals for C++ and assembly code. Intel and AMD x86 microprocessors. Windows, Linux, BSD, Mac OS X. 16, 32 and 64 bit systems. Detailed descriptions of microarchitectures.
Standard Test Data FormatDec 1, 2021
Standard Test Data Format (STDF) is a proprietary file format for semiconductor test information originally developed by Teradyne, but it is now a de facto standard widely used throughout the semiconductor industry. It is a commonly used format produced by automatic test equipment (ATE) platforms from companies such as Cohu, Roos Instruments, Teradyne, Advantest, SPEA S.p.A, and others.
Memory at the Core of New Deep Learning Research ChipDec 1, 2021
Over the last two years, there has been a push for novel architectures to feed the needs of machine learning and more specifically, deep neural networks.
Design and Analysis of Stability-Guaranteed PUFsDec 1, 2021
The lack of stability is one of the major limitations that constrains PUF from being put in widespread practical use. In this paper, we propose a weak PUF and a strong PUF that are both completely...
Analog Technical Articles - Electrical Engineering & Electronics Technical ArticlesNov 30, 2021
Read the latest Analog Electronic & Electrical Engineering Technical Articles
Describing Combinational Circuits in Verilog - Technical ArticlesNov 30, 2021
This article introduces the techniques for describing combinational circuits in Verilog by examining how to use the conditional operator to describe combinational truth tables.
Understanding and Addressing 5 Key Power Supply Issues - Industry ArticlesNov 30, 2021
This article will take a deeper look at five key power supply problems, how to know when they arise, and the best ways to address or mitigate them.
R2: What it Means to be 1 Less Than S3 - by Doug (mule) - Fabricated KnowleNov 29, 2021
In the battle of bandwidth and compute, Cloudflare has a strong hand. A dive into networking infrastructure.
Lam Research, Tokyo Electron, JSR Battle It Out In The $5B+ EUV Photoresist, Coater and Developer Market - CAR vs MOR vs Dry ResistNov 29, 2021
There is a battle brewing in the photoresist, coater, and developer market due to EUV advancement. This battle could cost Tokyo Electron their dominance over a $5B+ annual revenue market and lead to some photoresist companies such as TOK to lose a major market. JSR and Tokyo are bringing Metal Oxide Resist (MOR) to the market to fight off Lam Research's encroachment with their dry resist technology.
The Rising Tide of Semiconductor Cost - by Doug (mule) - Fabricated KnowledNov 28, 2021
It Isn't Transistory
Semiconductor Wafer Installed Capacity Per Process NodeOct 15, 2021
Combined, China and Taiwan would hold about 37% of global IC capacity, almost 3x that of North America. IC Industry at Heart of Possible China Takeover of Taiwan
A friendly introduction to machine learning compilers and optimizersOct 3, 2021
[Twitter thread, Hacker News discussion]
Does an AMD Chiplet Have a Core Count Limit?Sep 7, 2021
Did IBM Just Preview The Future of Caches?Sep 4, 2021
Next-Gen Chips Will Be Powered From BelowAug 28, 2021
Buried interconnects will help save Moore's Law
Impact Of GAA Transistors At 3/2nmAug 17, 2021
Some things will get better from a design perspective, while others will be worse.
The Novel Material That’s Shrinking Phone Chargers, Powering Up Electric Cars, and Making 5G PossibleJul 25, 2021
Gallium, once an industrial-waste product, is transforming our increasingly electrified world.
Gutting Decades Of Architecture To Build A New Kind Of ProcessorJul 13, 2021
There are some features in any architecture that are essential, foundational, and non-negotiable. Right up to the moment that some clever architect shows
How Intel Financialized and Lost Leadership in Semiconductor Fabrication |Jul 10, 2021
Intel is the poster child of how stock buybacks come at the cost of technological innovation.
What Does It Take To Build A Successful Multi-Chip Module Factory?Jul 7, 2021
Using yield analytics and consolidated data to power your factory.
Xoilac TV Thiên Đường Bóng Đá Trực Tiếp Xoilac 90PJun 30, 2021
Xoilac - Thiên đường bóng đá trực tuyến. Hãy cùng chúng tôi khám phá thêm về sự chuyên nghiệp và tận tâm trong dịch vụ chăm sóc khách hàng mà trang mang lại!
Let’s Build a Chip – With MathJun 30, 2021
Let’s Build a Chip – We lay out the costs of building a chip – with spreadsheets!
A Look at Baidu’s Industrial-Scale GPU Training ArchitectureJun 26, 2021
Like its U.S. counterpart, Google, Baidu has made significant investments to build robust, large-scale systems to support global advertising programs. As
Mythic Resizes its AI ChipJun 26, 2021
Its second analog AI chip is optimized for different card sizes, but still aimed at computer vision workloads at the edge.
What Happens When Multipliers No Longer Define AI Accelerators?Jun 24, 2021
Current custom AI hardware devices are built around super-efficient, high performance matrix multiplication. This category of accelerators includes the
Bumps Vs. Hybrid Bonding For Advanced PackagingJun 23, 2021
New interconnects offer speed improvements, but tradeoffs include higher cost, complexity, and new manufacturing challenges.
AMD 3D Stacks SRAM BumplesslyJun 12, 2021
AMD recently unveiled 3D V-Cache, their first 3D-stacked technology-based product. Leapfrogging contemporary 3D bonding technologies, AMD jumped directly into advanced packaging with direct bonding and an order of magnitude higher wire density.
Intel: AMD Threat Is Finished (NASDAQ:INTC)Jun 8, 2021
Although competition from Arm is increasing, AMD remains Intel’s biggest competitor, as concerns of losing market share weigh on Intel’s valuation.
As Chips Shrink, Rowhammer Attacks Get Harder to StopMay 30, 2021
A full fix for the “Half-Double” technique will require rethinking how memory semiconductors are designed.
New 'Morpheus' CPU Design Defeats Hundreds of Hackers in DARPA Tests - ExtrMay 25, 2021
A new CPU design has won accolades for defeating the hacking efforts of nearly 600 experts during a DARPA challenge. Its approach could help us close side-channel vulnerabilities in the future.
Google details new AI accelerator chipsMay 19, 2021
Google detailed TPUv4 at Google I/O 2021. They're accelerator chips that deliver high performance on AI workloads.
Circuit Synthesis for Analog Computing | SIGPLAN BlogMay 18, 2021
Modern analog computers offer unique programming challenges which make them challenging compilation targets. How do we automatically program an analog computer to implement a computation?
2021 Perception Sensor Industry Map: 75 Companies Powering Vision-Enabled Platforms | By Tangram VisionMay 17, 2021
The 2021 Perception Sensor Industry Map: Depth Sensing, LiDAR, CMOS, IMU, Software and More.
Untether AI: At Memory Computation A Transformative Compute Architecture for Inference AccelerationMay 14, 2021
Presented by Robert Beachler, VP of Product, Untether AI.
Traditional processor architectures are failing to keep up with the exploding compute demands of AI workloads. They are limited by the power-hungry weight-fetch of von Neumann architectures and limitations of transistor and frequency scaling. At-memory computation places compute elements directly in the memory array, providing reduced power consumption and increased throughput due to the massive parallelism and bandwidth provided by the architecture. This presentation introduces a new class of non-von Neumann compute designed to meet these AI demands.
The Linley Fall Processor Conference featured technical presentations addressing processors and IP cores for AI applications, embedded, data center, automotive, and communications. Session topic included AI in Edge Devices, Vector-Processing Cores, Advancing Cloud AI, The New Infrastructure Edge, Heterogenous Computing, SoC Design, In-Memory Compute, and Security.
Proceedings from the event are available for download. https://www.linleygroup.com/events/proc_register.php?num=49
11 Ways To Reduce AI Energy ConsumptionMay 13, 2021
Pushing AI to the edge requires new architectures, tools, and approaches.
More Data Drives Focus On IC Energy EfficiencyApr 25, 2021
Decisions that affect how, when, and where data gets processed.
Apple's M1 Positioning Mocks the Entire x86 Business ModelApr 24, 2021
Apple is positioning its M1 quite differently from any CPU Intel or AMD has released. The long-term impact on the PC market could be significant.
Sapphire Rapids CPU Leak: Up to 56 Cores, 64GB of Onboard HBM2Apr 9, 2021
Sapphire Rapids, Intel's next server architecture, looks like a large leap over the just-launched Ice Lake SP.
First Google-Sponsored MPW Shuttle Launched at SkyWater with 40 Open SourceApr 7, 2021
BLOOMINGTON, Minn. and SAN JOSE, Calif. – April 6, 2021 – SkyWater Technology, the trusted technology realization partner, and Efabless, a crowdsourcing design platform for custom silicon, today announced the first tapeout in a series of Google-sponsored open source multi-project wafer (MPW) shuttles, managed by Efabless and manufactured at SkyWater. In this partnership, open source designs were selected to
GPU Nomenclature History: No Shortage of GPUs HereMar 30, 2021
What makes a GPU a GPU, and when did we start calling it that? Turns out that’s a more complicated question than it sounds.
SaaS for component pricing: Q&A with Lytica chairman Ken BradleyMar 26, 2021
How much should one pay for a chip or a component? Lytica, a Canadian supply-chain pricing analytics company, has the answer. Founded by former Nortel chief procurement officer Ken Bradley, who, like many others in the IT industry, was once bemused by component pricing, Lytica is transforming itself into a software-as-a-service (SaaS) company, helping OEM and EMS make well-informed deals when buying or selling.
Deep Dive Into AMD’s “Milan” Epyc 7003 ArchitectureMar 26, 2021
The “Milan” Epyc 7003 processors, the third generation of AMD’s revitalized server CPUs, is now in the field, and we await the entry of the “Ice Lake”
The Rise, Fall and Revival of AMD (2020)Mar 19, 2021
AMD is one of the oldest designers of large scale microprocessors and has been the subject of polarizing debate among technology enthusiasts for nearly 50 years. Its...
Micron Abandons 3D XPoint Memory TechnologyMar 18, 2021
SVT: Six Stacked Vertical TransistorsMar 18, 2021
SRAM cell architecture introduction: design and process challenges assessment.
Can Graviton Win A Three-Way Compute Race At AWS?Mar 18, 2021
One of the main tenets of the hyperscalers and cloud builders is that they buy what they can and they only build what they must. And if they are building
Welcome to AMD ROCm Platform — ROCm Documentation 1.0.0 documentationMar 15, 2021
AMD ROCm documentation
The Third Time Charm Of AMD’s Milan Epyc ProcessorsMar 15, 2021
With every passing year, as AMD first talked about its plans to re-enter the server processor arena and give Intel some real, much needed, and very direct
A brief history of router architectureMar 13, 2021
Here's what we've learnt about networks and the routers that interconnect them in the last 50 years.
Ladies And Gentlemen, Start Your Compute EnginesMar 8, 2021
We have a bad case of the silicon shakes and a worsening deficiency in iron here at The Next Platform, but the good news is that new CPU processors from
Optical Antennas Promise ‘Unlimited’ Data CapacityMar 5, 2021
The breakthrough is taking full advantage of the orbital angular momentum properties of a coherent light source, thus enabling multiplexing.
Revenue per Wafer Climbs As Demand Surges for 5nm/7nm IC ProcessesMar 4, 2021
Despite high development costs, smaller nodes bring greater revenue per wafer.
Semiconductor Wafer Installed Capacity 2020Feb 25, 2021
IC Insights recently released its new Global Wafer Capacity 2021-2025 report that provides details, analyses, and forecasts for IC industry capacity by wafer size, process geometry, region, and product type through 2025. Rankings of IC manufacturers by installed capacity for each of the wafer sizes are shown in Figure 1. The chart also compares the relative
What Chip Startups Can Learn from Google’s TPU Design TeamFeb 17, 2021
The inception of Google’s effort to build its own AI chips is quite well known by now but in the interests of review, we’ll note that as early 2013 the
Report: Packaging Issues, PS5 Demand May Be Hurting TSMC Production - ExtreFeb 11, 2021
The hardware shortages currently hitting most of the PC market may be caused by a shortage in a necessary component in chip manufacturing, not low yields on TSMC's 7nm node.
CXL: Sorting Out The Interconnect SoupFeb 11, 2021
How Compute Express Link provides a means of connecting a wide range of heterogeneous computing elements.
Understanding Wafer Bumping Packaging Technology - AnySiliconFeb 5, 2021
Consumer electronics markets, the mobile phone market in particular, are extremely demanding. They are driven by the desire to pack more and more functionality and enhanced value into the same size handheld device, and often at lower costs. This drive towards smaller, cheaper and thinner consumer electronics has driven the development of highly integrated electronics
Chipbond WebsiteFeb 5, 2021
Flexible Tape-and-Reel Circuit Substrate, High-end FPC, tape-and-reel, FPC, COF film, tape, single-piece packaging, Circuit Substrate,COF tape, tape film, substrate
Intel Processor Names, Numbers and Generation ListFeb 4, 2021
Understanding Intel® processor names and numbers helps identify the best laptop, desktop, or mobile device CPU for your computing needs.
The Ultimate Guide to Clock GatingFeb 3, 2021
Clock Gating is defined as: “Clock gating is a technique/methodology to turn off the clock to certain parts of the digital design when not needed”. The Need for Clock Gating With most of the SoCs heavily constrained by power budgets, it is of utmost importance to reduce power consumption as much as possible
6 Causes of MOS Transistor Leakage CurrentFeb 2, 2021
Leakage current can contribute to power dissipation, especially at lower threshold voltages. Learn about six types of leakage current that can be found in MOS transistors.
Introduction to PhototransistorsJan 27, 2021
In this series of articles, we’ll explore higher-output-current alternatives to photodiodes.
New Transistor Structures At 3nm/2nmJan 25, 2021
Gate-all-around FETs will replace finFETs, but the transition will be costly and difficult.
Intel ProblemsJan 20, 2021
Intel is in much more danger than its profits suggest; the problems are a long time in the making, and the solution is to split up the company.
Die Per Wafer (free) CalculatorJan 15, 2021
How can you calculate the number of dies per wafer? A free online tool, DPW equation and reference to two other DPW calculators. Trusted by Amkor and GF.
The Ultimate Guide to Static Timing Analysis (STA)Jan 15, 2021
Static Timing Analysis? Read here the best overview to STA, including theory, real examples, ilustrations, tips and tricks.
Introduction to Thermal Characterization ParametersJan 15, 2021
In this article, we’ll discuss another group of thermal data, called thermal characterization parameters denoted by the Greek letter Psi (Ψ).
Die Yield Calculator | iSine Analog, Digital & Mixed Signal IC SolutionsJan 15, 2021
DIE YIELD CALCULATOR Use this online calculator to figure out die yield using Murphy’s model. You’ll need to know the die size, wafer diameter, and defect density. iSine is your complete resource for ASIC design – from concept to manufacturing and testing. We have expertise in system architecture, VHDL, Verilog, gate arrays, mixed signal, full...
Speculation Grows As AMD Files Patent for GPU DesignJan 4, 2021
Long-time Slashdot reader UnknowingFool writes: AMD filed a patent on using chiplets for a GPU with hints on why it has waited this long to extend their CPU strategy to GPUs. The latency between chiplets poses more of a performance problem for GPUs, and AMD is attempting to solve the problem with a ...
Junction-to-Case Thermal Resistance in Thermal DesignJan 2, 2021
Learn about an important thermal metric for designing the interface between an IC package and a heat sink.
Designing with a Heat Sink for Junction-to-Case Thermal ResistanceJan 2, 2021
Watch the thermal measurement, junction-to-case thermal resistance, in action as we use it to calculate the thermal considerations for a given system.
AMD Patent Reveals Hybrid CPU-FPGA Design That Could Be Enabled By Xilinx TJan 2, 2021
Intel has been talking about on-processor FPGAs since 2014, but AMD's patent might actually result in one.
Atoms-Thick Transistors Get Faster Using Less PowerDec 30, 2020
Research on 2D transistors for future electronics is forging ahead with different material favorites
10 basic advanced IC packaging terms to knowDec 29, 2020
Engineers must keep pace with advanced IC packaging technology as it evolves rapidly, starting with understanding the basic terms.
Eight Major Steps to Semiconductor Fabrication, Part 7: The Metal InterconnectDec 29, 2020
In the last part of our series, we went over the thin-film process in which a semiconductor chip gets its electrical properties. But we need to ensure that
How Junction-to-Ambient Thermal Resistance of an IC Package Affects ThermalDec 27, 2020
Assessing the thermal performance of an IC package becomes easier if you understand this common, but often misapplied, parameter known as theta JA.
Semiconductor Assembly GlossaryDec 22, 2020
Mythic Case StudyDec 21, 2020
How Mythic got its optimized domain-specific core without compromises or delays.
https://www.edn.com/lost-in-the-advanced-ic-packaging-labyrinth-know-these-10-basic-terms/Dec 18, 2020
What Makes 5G So Fast? mmWaves, MIMO, and Beamforming, and MoreDec 18, 2020
With 5G rolling out more quickly as we approach 2021, it may be helpful to touch on the key technologies that make 5G such a speedy success.
Transistor Sizing in VLSI Design Using the Linear Delay Model - Technical ADec 18, 2020
In this article, we will learn how to find the optimal size of a transistor/logic gate present in a larger circuit to provide the desired performance using the linear delay model.
List of semiconductor fabrication plants - WikipediaDec 18, 2020
This is a list of semiconductor fabrication plants. A semiconductor fabrication plant is where integrated circuits (ICs), also known as microchips, are manufactured. They are either operated by Integrated Device Manufacturers (IDMs) that design and manufacture ICs in-house and may also manufacture designs from design-only (fabless firms), or by pure play foundries that manufacture designs from fabless companies and do not design their own ICs. Some pure play foundries like TSMC offer IC design services, and others, like Samsung, design and manufacture ICs for customers, while also designing, manufacturing and selling their own ICs.
Re-Architecting SerDesDec 10, 2020
As implementations evolve to stay relevant, a new technology threatens to overtake SerDes.
What Designers Need to Know About Error Correction Code (ECC) In DDR MemoriDec 10, 2020
How side-band, inline, on-die, and link error correcting schemes work and the applications to which they are best suited.
Netlist CDC. Why You Need it and How You do it. - SemiwikiDec 10, 2020
The most obvious question here is “why do I need…
Quick Error Detection. Innovation in Verification - SemiwikiDec 10, 2020
Can we detect bugs in post- and pre-silicon testing where…
Introduction To Test Data FormatsDec 10, 2020
The parts that make up a complete and fully compatible STDF or ATDF file.
Don’t Forget About Associative MemoriesNov 30, 2020
Artificial neural networks and deep learning have taken center stage as the tools of choice for many contemporary machine learning practitioners and researchers. But there are many cases where you need something more powerful than basic statistical analysis, yet not as complex or compute-intensive as a deep neural network. History
Explainer on Packaging: Interposers, Bridges and ChipletsNov 29, 2020
The IC industry is renewing its focus on advanced packaging. Chiplets may be the least mature option, but it is also one of the most widely promising. A conversation with Intel's Ramune Nagisetty.
Chip-Package Co-Analysis Using Ansys RedHawk-CPANov 29, 2020
How an integrated chip–package co-analysis can quickly and accurately model package layout for inclusion in on-chip power integrity simulations.
TSMC and Google push chipmaking boundaries with 3D 'stacking'Nov 27, 2020
Taiwanese chip titan testing new production tech to boost computing power
New CXL interconnect promises to move data faster, more efficiently at 32 GNov 22, 2020
The Computer Express Link interconnect builds on PCI Express 5.0 to enable memory coherency and low latency between host processors and accelerators.
FinFETs Give Way to Gate-All-Around | Lam ResearchNov 19, 2020
When they were first commercialized at the 22 nm node, finFETs represented a revolutionary change to the way we build transistors, the tiny switches in the “brains” of a chip. As compared to...
The Elmore Delay Model in VLSI DesignNov 12, 2020
In this article, we'll discuss the Elmore delay model, which provides a simplistic delay analysis that avoids time-consuming numerical integration/differential equations of an RC network.
176 Steps Closer To The Mythical All-Flash DatacenterNov 11, 2020
We have nothing against disk drives. Seriously. And in fact, we are amazed at the amount of innovation that continues to go into the last
Introduction to CMOS Image SensorsNov 10, 2020
In this article, you'll learn the basics of the CMOS image sensor, including its core components, its block diagram, its strengths and weaknesses, and its applications.
New And Innovative Supply Chain Threats EmergingNov 5, 2020
But so are better approaches to deal with thorny counterfeiting issues.
Techniques to Reduce Timing Violations using Clock Tree Optimizations in Synopsys IC Compiler II - SemiwikiNov 3, 2020
The semiconductor industry growth is increasing exponentially with high speed…
Making Full Memory IP Robust During Design - SemiwikiNov 3, 2020
Looking at a typical SoC design today it's likely to…
Why Data Format Slows Chip Manufacturing ProgressNov 3, 2020
Adoption of new format will take time, but it also will add consistency into data as volume grows.
How Debuggers Work: Getting and Setting x86 RegistersNov 3, 2020
In this article, I would like to shortly describe the methods used to dump and restore the different kinds of registers on 32-bit and 64-bit x86 CPUs. The first part will focus on General Purpose Registers, Debug Registers and Floating-Point Registers up to the XMM registers provided by the SSE extension. I will explain how their values can be obtained via the ptrace(2) interface.
Neural Networks Without Matrix MathNov 3, 2020
A different approach to speeding up AI and improving efficiency.
DDR4 Makes Headway Even with DDR5 Modules on Its HeelsNov 3, 2020
With no definitive release date for DDR5, DDR4 is making significant strides.
Performance analysis & tuning on modern CPU - DEV Community ????Nov 3, 2020
They say "performance is king'... It was true a decade ago and it certainly is now. With more and mor...
Verification Of Multi-Cycle Paths And False PathsNov 3, 2020
Single-clock design is not always as easy as it seems.
What’s WAT? An Overview Of WAT/PCM Data?Nov 2, 2020
More about the data that the fab makes available to the fabless customer when the wafer is ready to ship.
100 Shielding Tips and TricksNov 2, 2020
The principle of shielding is creating a conductive layer completely surrounding the object you want to shield. This was invented by Michael Faraday and this system is known as a Faraday cage.
LDM: My Favorite ARM InstructionNov 2, 2020
While CPUs and GPUs Work Harder in Data Centers, DPUs Work SmarterNov 2, 2020
As next-gen data centers amp up processing and speed, they're going to need processing units that can handle the heft of AI and machine learning.
Designing and Simulating EMC Filters with LTspiceNov 2, 2020
In this article, we will review the different types of noise that are present in a circuit. We will also discuss how to perform an accurate simulation of an EMC filter with LTspice.
New AI Inferencing Records - IEEE SpectrumOct 31, 2020
Nvidia tops MLPerf records again, consortium adds benchmarks to measure mobile
https://semianalysis.com/qualcomm-lost-the-iphone-12-mmwave-antenna-module-contract-to-a-chinese-company/Oct 26, 2020
FreeCAD/FreeCAD: This is the official source code of FreeCAD, a free and opOct 23, 2020
This is the official source code of FreeCAD, a free and opensource multiplatform 3D parametric modeler. - FreeCAD/FreeCAD
Linux Developers Discussing Possible Kernel Driver for Intel CPU UndervoltiOct 23, 2020
While the Intel Extreme Tuning Utility (XTU) on Windows allows for undervolting laptop processors, currently on Linux there isn't any Intel-endorsed way for undervolting your CPU should you be interested in better thermal/power efficiency and other factors
Machine Learning Enabled High-Sigma Verification Of Memory DesignsOct 20, 2020
Variation-aware memory verification with brute force Monte Carlo accuracy in much less time.
Intel Networking: Not Just A Bag Of PartsOct 16, 2020
What is the hardest job at Intel, excepting whoever is in charge of the development of chip etching processes and the foundries that implement it? We
Marvell Technology, Inc. | Essential technology, done rightOct 8, 2020
Designed for your current needs and future ambitions, Marvell delivers the data infrastructure technology transforming tomorrow’s enterprise, cloud, automotive, and carrier architectures for the better.
How Micron’s GDDR6X memory is the secret to unlocking 4K on Nvidia’s RTX 30Sep 16, 2020
Micron's GDDR6X is one of the star components in Nvidia's RTX 3070, 3080, and 3080 video cards. It's so fast it should boost gaming past the 4K barrier.
Qualcomm Doubles Range of mmWave 5G to 2.36 MilesSep 2, 2020
Qualcomm says mmWave could get better soon, as it's completed a test that doubles the theoretical range of mmWave to 2.36 miles (3.8 kilometers).
An Analog IC Design Book DraftSep 2, 2020
[Jean-Francois Debroux] spent 35 years designing analog ASICs. He’s started a book and while it isn’t finished — indeed he says it may never be — the 180 pages he posted on …
CXMT scaling up 19nm DRAM output with better yield ratesAug 25, 2020
China-based DRAM chipmaker ChangXin Memory Technologies (CXMT) is scaling up its 19nm chip output with better yield rates, with the monthly production likely to top 70,000 wafers by the end of 2020, according to industry sources.
Photonics startup Lightmatter details P1, its AI optical accelerator chipAug 17, 2020
Ahead of the Hot Chips 2020 conference this week, photonics chip startup Lightmatter detailed its forthcoming test chip accelerator hardware.
Optimizing 128-bit DivisionAug 10, 2020
When it comes to hashing, sometimes 64 bit is not enough, for example, because of birthday paradox — the hacker can iterate through random $latex 2^{32}$ entities and it can be proven that wi…
Design an Open-Source SoC with Google SkyWater PDK, Get It Manufactured for Free - CNX SoftwareJul 22, 2020
Tim Ansell of Google has announced the open-source SkyWater PDK, and plans to manufacture 40 open-source SoC projects for free by 2021.
Beyond-Line-Of-Sight Troposcatter Communications PrimerJul 16, 2020
Hardware solutions that mitigate the design challenges and meet requirements of the latest tropospheric scatter applications.
Wafer Capacity 2019 By RegionJul 11, 2020
In its Global Wafer Capacity 2020-2024 report, IC Insights breaks down the world’s installed monthly IC wafer capacity by geographic region (or country). Figure 1 shows the installed IC capacity by region as of December of 2019. To clarify what the data represents, each regional number is the total installed monthly capacity of fabs located in
Produce your own physical chips. For free. In the Open.Jul 9, 2020
Did you ever dream about creating your own physical chip? Do it today. For free. Fully open source.
openhwgroup/cva6: The CORE-V CVA6 is an Application class 6-stage RISC-V CPJul 9, 2020
The CORE-V CVA6 is an Application class 6-stage RISC-V CPU capable of booting Linux - openhwgroup/cva6
Open source process design kit for usage with SkyWater Foundry's 130nm nodeJul 5, 2020
Open source process design kit for usage with SkyWater Technology Foundry's 130nm node. - google/skywater-pdk
CMOSedu.comJun 24, 2020
How Is the Laplace Transform Used in Circuit Design?Jun 24, 2020
In this article, we briefly review how the Laplace transform can help us solve circuits involving damped and steady-state sinusoidal signals.
What Is the z-Transform?Jun 17, 2020
This Frequent Engineering Question gives a quick overview of an important mathematical technique used in digital signal processing, calculating the z-transform.
x86 instruction listingsJun 2, 2020
The x86 instruction set refers to the set of instructions that x86-compatible microprocessors support. The instructions are usually part of an executable program, often stored as a computer file and executed on the processor.
Compute-In Memory Accelerators Up-End Network Design TradeoffsJun 1, 2020
Compute paradigm shifting as more data needs to be processed more quickly.
5/3nm Wars BeginJun 1, 2020
New transistors structures are on the horizon with new tools and processes, but there are lots of problems, too.
Digital Design of a Leading Zero Counter using Recursion in Verilog | LinkeJun 1, 2020
Discover 100 collaborative articles on domains such as Marketing, Public Administration, and Healthcare. Our expertly curated collection combines AI-generated content with insights and advice from industry experts, providing you with unique perspectives and up-to-date information on many skills and their applications.
Diving Deep Into The Nvidia Ampere GPU ArchitectureJun 1, 2020
When you have 54.2 billion transistors to play with, you can pack a lot of different functionality into a computing device, and this is precisely what
Open sourcing the AI Model Efficiency ToolkitMay 15, 2020
Qualcomm open sources the AI Model Efficiency Toolkit on GitHub, providing a simple library plugin for AI developers.
Sony’s first AI image sensor will make cameras everywhere smarterMay 14, 2020
More computer in your camera
Fujitsu Begins Shipping Supercomputer Fugaku - Fujitsu GlobalMay 14, 2020
Fujitsu Limited today announced that it began shipping the supercomputer Fugaku, which is jointly developed with RIKEN and promoted by the Ministry of Education, Culture, Sports, Science and Technology with the aim of starting general operation between 2021 and 2022. The first machine to be shipped this time is one of the computer units of Fugaku, a supercomputer system comprised of over 150,000 high-performance CPUs connected together. Fujitsu will continue to deliver the units to RIKEN Center for Computational Science in Kobe, Japan, for installation and tuning.
BiST Vs. In-Circuit SensorsMay 13, 2020
Hybrid solutions emerging as reliability concerns increase and coverage becomes more difficult.
Caveat Emptor: Counterfeit Intel CPUs Are Popping Up in ChinaApr 22, 2020
There's a new wave of counterfeit Intel CPUs popping up in China, and chips like the 7700K appear especially "popular" for re-use.
The Antenna Theory WebsiteApr 17, 2020
An intuitive tutorial of antennas and antenna theory. This website is designed to present a comprehensive overview of antennas, from design, to measurement and theory. Unnecessarily complicated math is avoided throughout.
Making SPICE available for everyoneMar 31, 2020
SPICE (Simulation Program with Integrated Circuit Emphasis) is an open-source analog electronic circuit simulator. | SPICE is undoubtedly one of the most popular modeling libraries available, and Japanese e-commerce company MoDeCH is seeking to make the power of SPICE available to everyone.
Introduction to Image Sensor Technology, from Photons to ElectronsMar 26, 2020
This article, the first in a series, discusses light-sensitive electronic devices called photodiodes and compares CCD and CMOS sensors.
TSMC Details 5 nmMar 23, 2020
TSMC details its 5-nanometer node for mobile and HPC applications. The process features the industry's highest density transistors with a high-mobility channel and highest-density SRAM cells.
Introduction to Ultra-Wideband (UWB) TechnologyMar 19, 2020
Learn the basics of the ultra-wideband short-range wireless protocol, a technology that can be found in cutting-edge devices.
Getting started with the NVIDIA Jetson Nano - PyImageSearchMar 11, 2020
In this tutorial, you will learn how to get started with your NVIDIA Jetson Nano, including installing Keras + TensorFlow, accessing the camera, and performing image classification and object detection.
How to Increase Slew Rate in Op AmpsMar 9, 2020
Learn how to get faster composite op-amp dynamics by raising the slew rate.
BBVA | The digital bank of the 21st centuryMar 1, 2020
The latest banks and financial services company and industry news with expert analysis from the BBVA, Banco Bilbao Vizcaya Argentaria.
Semiconductor Foundry Revenue Per Wafer TrendsFeb 25, 2020
The success and proliferation of integrated circuits has largely hinged on the ability of IC manufacturers to continue offering more performance and functionality for the money. Driving down the cost of ICs (on a per-function or per-performance basis) is inescapably tied to a growing arsenal of technologies and wafer-fab manufacturing disciplines as mainstream CMOS processes
RISC-V Stumbling BlocksFeb 19, 2020
Recently, I’ve started to explore RISC-V. I experienced the journey as pretty refreshing, particularly because I’ve been working on x86 low-level software almost exclusively for about 10 years.
Ultimate Guide to Switch Debounce (Part 4) – EEJournalFeb 19, 2020
Previously, as they used to say at the start of a new episode in a TV series, we discussed the history behind the use of hardware vs. software to debounce our switches. We also perused and pondered…
Making Light More ReliableFeb 19, 2020
Silicon photonics is a promising technology, but it may take a while.
How 1500 bytes became the MTU of the internetFeb 19, 2020
96-Core Processor Made of ChipletsFeb 19, 2020
De-Risking High-Speed RF Designs from Electromagnetic Crosstalk Issue - SemiwikiFeb 19, 2020
At DesignCon 2020, ANSYS sponsored a series of very high-quality…
64 Core Threadripper 3990X CPU ReviewFeb 16, 2020
bhive/README.md at master · ithemal/bhiveFeb 12, 2020
OmniVision unveils 48MP image sensor for 4K video performanceJan 9, 2020
OmniVision Technologies has announced at CES 2020 the OV48C, a 48 megapixel (MP) image sensor with a large 1.2 micron pixel size to enable high resolution and low light performance for flagship smartphone cameras.
The Linley Group - Tomahawk 4 Switch First to 25.6TbpsDec 29, 2019
The authoritative information platform to the semiconductor industry.
SILVACO Technical LibraryDec 23, 2019
The Silvaco Technical Library includes Application Notes, issues of the Simulation Standard Journal, Presentations, Published Papers, and Whitepapers.
A Look at Cerebras Wafer-Scale Engine: Half Square Foot Silicon ChipDec 23, 2019
A look at Cerebras Wafer-Scale Engine (WSE), a chip the size of a wafer, packing over 400K tiny AI cores using 1.2 trillion transistors on a half square foot of silicon.
Part 1 - An Overview of AMD's GPU ArchitecturesDec 23, 2019
363 votes, 25 comments. This post has been split into a two-part series to work around Reddit’s per-post character limit. Please find Part 2 in the…
Why the Memory Subsystem is Critical in Inferencing ChipsDec 23, 2019
Good inferencing chips can move data very quickly
Enhancing IO Ring Checks For Consistent, Customizable VerificationNov 25, 2019
Making sure IO rings comply with IP and SoC design rules.
Electromagnetic Challenges In High-Speed DesignsNov 25, 2019
Runaway complexity is making it more difficult and critical to deal with signal integrity in a system context.
Intel 10th Gen Comet Lake CPU Family Leaks With 10-Core, 20-Thread LGA-1200Nov 4, 2019
Recent leaks may shed some light on Intel's upcoming mainstream desktop Comet Lake-S CPUs.
What’s The Best Advanced Packaging Option?Oct 31, 2019
A dizzying array of choices and options pave the way for the next phase of scaling.
Intel Tremont CPU Microarchitecture: Power Efficient, High-Performance x86Oct 26, 2019
Intel's Tremont CPU microarchitecture will be the foundation of a next-generation, low-power processors that target a wide variety of products across
New chips for machine intelligenceOct 7, 2019
CMOS Circuit Design, Layout, and SimulationAug 29, 2019
AI Inference Memory System TradeoffsAug 29, 2019
TOPS isn't all you need to know about an inference chip.
RISC-V from scratch 2: Hardware layouts, linker scripts, and C runtimesAug 28, 2019
A post describing how C programs get to the main function. Devicetree layouts, linker scripts, minimal C runtimes, GDB and QEMU, basic RISC-V assembly, and other topics are reviewed along the way.
Manufacturing memory means scribing silicon in a sea of sensors | Ars TechnAug 12, 2019
“Industry 4.0” is already here for some companies—especially silicon foundries.
TSMC Talks 7nm, 5nm, Yield, And Next-Gen 5G And HPC PackagingAug 5, 2019
An update on TSMC current and forthcoming logic process nodes as well as their next-generation advanced packaging technologies.
First Programmable Memristor ComputerAug 5, 2019
Michigan team builds memristors atop standard CMOS logic to demo a system that can do a variety of edge computing AI tasks
Startup Runs AI in Novel SRAMJul 22, 2019
Areanna claims that a custom SRAM delivers 100 TOPS/W on deep learning, but it’s early days for the startup.
About Us - AnySiliconJul 10, 2019
“The Google of the Semiconductor Industry” Founded in 2011, AnySilicon is the best way to explore, find and contact semiconductor service providers and IP vendors online. Our vision is to be the first place ASIC engineers and decision makers go to search for semiconductor service providers and IP core vendors. In addition to
Avoiding Instruction Cache MissesJun 24, 2019
Excessive instruction cache misses are the kind of a performance problem that's going to appear only in larger codebases. In this article, I'm describing some ideas on how to deal with this issue.
RAMBleedJun 12, 2019
Lightelligence releases prototype of its optical AI accelerator chipApr 16, 2019
Boston-based startup Lightelligence's optical machine learning accelerator has entered prototyping stage, the startup announced.
Memory Architectures In AI: One Size Doesn't Fit AllApr 4, 2019
Comparing different machine learning use-cases and the architectures being used to address them.
Startup Sheds Some Light On Optical ProcessingMar 14, 2019
Optalysys, a startup based in the United Kingdom, has introduced an entry-level optical coprocessor, the first such system of its kind on the market. The
Arrow Electronics API | ProgrammableWebMar 11, 2019
http://developers.arrow.com/api/Mar 11, 2019
API Solutions | DigiKeyMar 11, 2019
DigiKey offers a complete set of APIs to share information and automate the ordering process.
PrincetonUniversity/accelerator-wall: Repository for the tools and non-commFeb 12, 2019
Repository for the tools and non-commercial data used for the "Accelerator wall" paper. - PrincetonUniversity/accelerator-wall
A MEMS Device Harvests Vibrations to Power the IoTFeb 10, 2019
Scientists in Japan have developed a MEMS energy harvester charged by an off-chip electret
Use Inference Benchmarks Similar To Your ApplicationFeb 7, 2019
How the wrong benchmark can lead to incorrect conclusions.
Introduction to SupercapacitorsJan 30, 2019
Get a primer on the basics of supercapacitors, their functionality, and which applications they're best for.
Benchmarking Amazon's ARM Graviton CPU With EC2's A1 InstancesJan 30, 2019
Monday night Amazon announced the new 'A1' instance type for the Elastic Compute Cloud (EC2) that is powered by their own 'Graviton' ARMv8 processors.
ARM is the NNSA’s New Secret WeaponJan 30, 2019
It might have been difficult to see this happening a mere few years ago, but the National Nuclear Security Administration and one of its key
Five Rules For Correlating Rule-based And Field Solver Parasitic ExtractionDec 22, 2018
Accurately determine parasitic effects with the proper set up of two different methods.
Right product, right time, right location: Quantifying the semiconductor suDec 21, 2018
A new metric can help companies pinpoint performance issues on the semiconductor supply chain.
Emerging Memories Today: Understanding Bit Selectors - The Memory Guy BlogNov 28, 2018
The previous post in this series (excerpted from the Objective Analysis and Coughlin Associates Emerging Memory report) explained why emerging memories are necessary. Oddly enough, this series will explain bit selectors before defining all of the emerging memory technologies themselves. The reason why is that the bit selector determines how small a bit cell can
Why Chips DieNov 26, 2018
Why Chips Die Semiconductor devices face many hazards before and after manufacturing that can cause them to fail prematurely.
Major Pure-Play Foundries Revenue Per Wafer 2017-2018Oct 14, 2018
The average revenue generated from processed wafers among the four biggest pure-play foundries (TSMC, GlobalFoundries, UMC, and SMIC) is expected to be $1,138 in 2018, when expressed in 200mm-equivalent wafers, which is essentially flat from $1,136 in 2017, according to a new analysis by IC Insights (Figure 1). The average revenue per wafer among the
Process Corner ExplosionSep 15, 2018
Process Corner Explosion, At 7nm and below, modeling what will actually show up in silicon is a lot more complicated.
Minimizing Chip Aging EffectsSep 15, 2018
Understanding aging factors within a design can help reduce the likelihood of product failures.
Processing In MemorySep 6, 2018
Processing In Memory Growing volume of data and limited improvements in performance create new opportunities for approaches that never got off the ground.
Worldwide Location of Wafer Fabs – Interactive MapSep 5, 2018
Wafer fabs are the backbone of every electronic product. Every chip consists of a piece of silicon that is produced in a wafer fab. Wafer fabs play a key role in the customer, medical and automotive markets because the are they enabler of innovative technologies. There are many wafer fabs globally and they have
An Intro to Integer Programming for Engineers: Simplified Bus SchedulingJun 8, 2018
Explore what’s new, what’s next, and what should be on your radar in the world of transportation. Our insights are supported by real-world data from our partners across the globe.
Electronic Parts by Category - OctopartJun 4, 2018
Overclocked Micron GDDR6 Memory Can Hit 20Gbps Speeds For Next Gen GPUsJun 4, 2018
Micron notes that GDDR6 has silicon changes, channel enhancements, and talks a bit about performance measurements of the new memory.
Alchip Minimizes Dynamic Power For High-Performance Computing ASICsMay 12, 2018
Alchip Minimizes Dynamic Power for High-Performance Computing ASICs How a fabless chipmaker successfully reduced power consumption within its fishbone clock tree methodology.
Tearing Apart Google’s TPU 3.0 AI CoprocessorMay 12, 2018
Google did its best to impress this week at its annual IO conference. While Google rolled out a bunch of benchmarks that were run on its current Cloud TPU
Google Announces 8x Faster TPU 3.0 For AI, Machine Learning - ExtremeTechMay 10, 2018
Google's new TPUs are here -- and they're quite a bit faster than last year's model.
gplEDA HomepageMay 6, 2018
How Does Xilinx Use Its Logic Fabric to Implement Efficient Multipliers?May 3, 2018
This article will review the structure of the binary multipliers that use the look-up tables (LUTs) in the Xilinx logic fabric.
Comparing Low Power Wireless Technologies (Part 3) | DigiKeyMar 27, 2018
Low power wireless technologies are adapting to the Internet of Things by including IP connectivity and mesh networking.
Comparing Low-Power Wireless Technologies (Part 1) | DigiKeyMar 27, 2018
The multitude of short-range wireless technologies provides engineers with optimized solutions for their applications, but makes careful selection paramount.
To Speed Up AI, Mix Memory and ProcessingMar 26, 2018
New computing architectures aim to extend artificial intelligence from the cloud to smartphones
Imperfect Silicon, Near-Perfect SecurityFeb 7, 2018
Imperfect Silicon, Near-Perfect Security Physically unclonable functions (PUF) seem tailor-made for IoT security.
FlipChip Package OverviewNov 27, 2017
If you were uncertain about the term “FlipChip” this tutorial will help you better understand what FlipChip packaging technology is all about. FlipChip package technology has been around for 3-4 decades and started as a package solution for high pin count & high performance package requirements. At the beginning, the majority of FlipChip
Ultrafast magnetic reversal points the way toward speedy, low-power computer memory - Berkeley NewsNov 7, 2017
Breakthrough that could lead to greatly increased performance and more energy-efficient computer memory and processing technologies
Memristor-Driven Analog Compute Engine Would Use Chaos to Compute EfficientOct 18, 2017
With Mott memristors, a system could solve intractable problems using little power
Comparing NLDM And CCS delay models - Paripath - improving sign-offOct 18, 2017
Post date: Sep 19, 2014 10:01:08 PM
Semiconductor Engineering .:. Making Waves In Deep LearningOct 12, 2016
Making Waves in Deep Learning How deep learning applications will map onto a chip.
Memory is the Next PlatformOct 10, 2016
A new crop of applications is driving the market along some unexpected routes, in some cases bypassing the processor as the landmark for performance and
Topology Makes On-Chip Terahertz Beamforming a RealityAug 24, 2015
The achievement could open a new swath of spectrum for wireless networks
Intel Core Ultra 200 “Arrow Lake” Desktop CPU Specs Leak: Core Ultra 9 285K & Ultra 7 265K With 250WSep 24, 2013
Intel's Core Ultra 200 "Arrow Lake" Desktop CPU specifications have now been finalized and we are just a month away from the official launch.
TSMC and NVIDIA Transform Semiconductor Manufacturing With Accelerated Computing | NVIDIA BlogOct 24, 2012
TSMC is moving to production with the NVIDIA cuLitho computational lithography platform to accelerate manufacturing of advanced semiconductor chips.
Synthetic diamond company Element Six to lead DAPRA Ultra-Wide Bandgap Semiconductors programSep 24, 2003
Will help to develop substrates, device layers, and junctions
Clash of the Foundries: Gate All Around + Backside Power at 2nmOct 24, 2002
Fab Cost, WFE Implications, Backside Power Details
Chip that steers terahertz beams sets stage for ultrafast internet of the futureOct 24, 2001
Breakthrough technology could help usher in 6G speed internet. Here's how it works and what it could mean for businesses.
sensitivity
Van Westendorp's Price Sensitivity MeterJan 3, 2026
market technique for determining consumer price preferences
The Sensitivity Analysis: A Powerful Yet Underused Tool for Data ScientistsDec 18, 2020
Quantifying the effects of varying different inputs, applied on a gemstone dataset with over 50K round-cut diamonds
Sensitivity, Specificity and Meaningful ClassifiersDec 18, 2020
The sometimes confusing concepts involved in interpreting coronavirus testing
sensors
NASA Return to Venus Depends on New Class of Ceramic Sensor_EE TimesFeb 23, 2026
To survive Venus, NASA is returning to advanced ceramic sensors that can operate where conventional silicon electronics rapidly fail.
LIDAR, optical distance & time of flight sensors | ams OSRAMSep 22, 2025
Fully integrated dToF modules and iToF VCSEL illuminators for short range applications. Laser sources for long range LIDAR systems.
Complex Haptics Deliver a Pinch, a Stretch, or a TapApr 2, 2025
Electromagnetism takes touch feedback beyond simple vibrations
Inside a 1 dollar radar motion sensorJul 2, 2024
R&D Case Study: Developing the OptiGap Sensor System | Paul Bupe, JrApr 13, 2024
Explore the creation of the OptiGap Sensor System, a novel bend localization sensor for soft robotics, detailing the research journey and development process behind it.
Understanding and Modeling Piezoelectric Sensors - Technical ArticlesDec 11, 2021
This article explains some theory behind piezoelectric sensors and presents an equivalent circuit that you can use when you’re designing sensor systems.
Sensors Technical Articles - Electrical Engineering & Electronics Technical ArticlesDec 2, 2021
Read the latest Sensors Electronic & Electrical Engineering Technical Articles
2021 Perception Sensor Industry Map: 75 Companies Powering Vision-Enabled Platforms | By Tangram VisionMay 17, 2021
The 2021 Perception Sensor Industry Map: Depth Sensing, LiDAR, CMOS, IMU, Software and More.
Magnetic sensor market sees growing adoption of xMR technologies, says YoleJun 25, 2018
Magnetic sensors have been historically dominated by Hall-effect technology. However, this situation has evolved over time, with increasing penetration of xMR technologies, namely AMR, GMR, and more recently TMR, according Yole Developpement. The research firm estimates that the magnetic sensor market will be pushed by innovative technologies, with a 7% CAGR between 2016 and 2022.
sentiment-analysis
Python libs for sentiment analysisNov 11, 2024
Sentiment analysis, i.e., determining the emotional tone of a text, has become a crucial tool for researchers, developers, and businesses to comprehend social media trends, consumer feedback, and other topics. With its robust library ecosystem, Python provides a vast choice of tools to improve and streamline sentiment analysis processes. Through the use of these libraries, data scientists can easily create precise sentiment models using pre-trained models and sophisticated machine learning frameworks. In this post, the top 12 Python sentiment analysis libraries have been discussed, emphasizing their salient characteristics, advantages, and uses. TextBlob A popular Python sentiment analysis toolkit, TextBlob is
Add Labels to a Dataset for Sentiment AnalysisNov 28, 2021
In this article, I will present a tutorial on how to add labels to a dataset for sentiment analysis using Python. Adding labels to a dataset.
Sentiment Analysis — Comparing 3 Common Approaches: Naive Bayes, LSTM, andMay 31, 2021
Sentiment Analysis, or Opinion Mining, is a subfield of NLP (Natural Language Processing) that aims to extract attitudes, appraisals, opinions, and emotions from text. Inspired by the rapid migration…
Aspect-Based Sentiment Analysis Using Spacy & TextBlobMar 1, 2021
Estimate sentiment for specific topics or attributes
How to Tell Stories with Sentiment AnalysisFeb 10, 2021
A journalist’s attempt at introducing math to the newsroom while analyzing QAnon
12 Twitter Sentiment Analysis Algorithms ComparedFeb 1, 2021
12 sentiment analysis algorithms were compared on the accuracy of tweet classification. The fasText deep learning system was the winner.
Browse the State-of-the-Art in Machine Learning | Papers With CodeDec 21, 2020
**Sentiment Analysis** is the task of classifying the polarity of a given text. For instance, a text-based tweet can be categorized into either "positive", "negative", or "neutral". Given the text and accompanying labels, a model can be trained to predict the correct sentiment. **Sentiment Analysis** techniques can be categorized into machine learning approaches, lexicon-based approaches, and even hybrid methods. Some subcategories of research in sentiment analysis include: multimodal sentiment analysis, aspect-based sentiment analysis, fine-grained opinion analysis, language specific sentiment analysis. More recently, deep learning techniques, such as RoBERTa and T5, are used to train high-performing sentiment classifiers that are evaluated using metrics like F1, recall, and precision. To evaluate sentiment analysis systems, benchmark datasets like SST, GLUE, and IMDB movie reviews are used. Further readings: - [Sentiment Analysis Based on Deep Learning: A Comparative Study](https://paperswithcode.com/paper/sentiment-analysis-based-on-deep-learning-a)
Quick Introduction to Sentiment AnalysisMar 9, 2020
What is sentiment analysis, how to perform it, and how it can help your business.
Text AnalyticsAug 29, 2019
Medallia's text analytics software tool provides actionable insights via customer and employee experience sentiment data analysis from reviews & comments.
Measuring the varied sentiments of good and bad wordsOct 12, 2018
There was a survey a while back that asked people to provide a 0 to 100 percent value to probabilistic words like “usually” and “likely”. YouGov did something similar for wo…
Emotion and Sentiment Analysis: A Practitioner’s Guide to NLPAug 30, 2018
Sentiment analysis is widely used, especially as a part of social media analysis for any domain, be it a business, a recent movie, or a product launch, to understand its reception by the people and what they think of it based on their opinions or, you guessed it, sentiment!
Understanding what is behind Sentiment Analysis (Part II)May 1, 2018
Fine-tuning our sentiment classifier
Handling ‘Happy’ vs ‘Not Happy’: Better sentiment analysis with sentimentrDec 27, 2017
Sentiment Analysis is one of the most obvious things Data Analysts with unlabelled Text data (with no score or no rating) end up doing in an attempt to extract some insights out of it and the same Sentiment analysis is also one of the potential research areas for any NLP (Natural Language Processing) enthusiasts. For […] Related Post Creating Reporting Template with Glue in R Predict Employee Turnover With Python Making a Shiny dashboard using ‘highcharter’ – Analyzing Inflation Rates Time Series Analysis in R Part 2: Time Series Transformations Time Series Analysis in R Part 1: The Time Series Object
seo
How to Remove a Web Page from GoogleOct 20, 2025
The reasons for deindexing a page haven't much changed over the years, although the tools and tactics have evolved.
Inside the web infrastructure revolt over Google’s AI OverviewsOct 16, 2025
Cloudflare CEO Matthew Prince is making sweeping changes to force Google’s hand.
Google Attracts 1.6 Trillion Visitors Or 34x Compared To ChatGPT As It Dominates Search Engine BattleMay 8, 2025
Despite rapid growth, AI chatbots are yet to make a dent to search engines says fresh data. Take a look here for more!
Beyond Pageviews: Measure Content Performance And User Engagement In GA4Oct 30, 2024
GA4 provides valuable insights into user interactions on your website. Learn how to analyze key metrics like sessions, session duration, and events to refine your digital strategy.
Advanced SEO: How to level up your keyword strategyOct 28, 2024
Here's a framework to analyze user sophistication, prioritize high-intent keywords and engage all decision-makers along the customer journey.
The ultimate guide to HTTP headers for SEOOct 20, 2024
Learn what HTTP headers are, how they influence website performance and security and best practices for optimization.
SEO for Ecommerce Product PagesOct 19, 2024
The content on a product page determines its search engine visibility. Here are five content tactics for better product page rankings.
On being laid off & unplanned entrepreneurship - Deep South VenturesJun 17, 2024
〰️ it’s weird to look back; I sometimes get confused on how I got here 〰️ Most folks dream of being entrepreneur; “a path that seemed inevitable“, they say. None of that shit applies to me. I’m only here cause I kept getting laid off and that nonsense infuriated me. I treated my first layoff ... Read more
A guide to investigating digital ad librariesJun 4, 2024
How to dig into ad libraries from Google, Meta and other platforms to track spending, narratives, campaigns and more
Massive 2,500-Page Google Document Leaked, Exposing Secret Search Ranking AMay 30, 2024
A Google document has leaked online that aims to include thousands of APIs aiming to rank better on Google Search for ranking.
Google Search Parameters (2024 Guide)Apr 23, 2024
The Google Search URL parameters are important to understand whether you are maximizing the...
How 16 Companies are Dominating the World’s Google Search Results (2023 EdiMar 11, 2024
A deep-dive into how far fewer companies than you think have taken a hold of Google's search results.
Search Engine Land’s Periodic Table of SEO Elements goes interactive for 20Mar 5, 2024
The new interactive table features 44 elements in seven groups – Content, Architecture, Code, Credibility, Links, User and Performance.
Boost Your Traffic in Google Discover - MozFeb 29, 2024
Explore the intricate world of Google Discover and elevate your content strategy with insights from top SEO experts.
Tools to Export Google’s SERPsFeb 29, 2024
Knowing the URLs in search engine result pages leads to further analysis, such as referring domains, page authority, word count, and more.
A technical guide to video SEOFeb 26, 2024
Discover advanced SEO techniques for video content, including self-hosting versus YouTube embedding and fool-proof indexing checks.
SEO KPIs: Embracing user-centric metricsFeb 15, 2024
Go beyond static SEO metrics. Integrate dynamic, user-centric KPIs to gain meaningful insights into evolving user behaviors and search trends.
The ultimate guide to HTTP status codes for SEOSep 24, 2019
Learn important HTTP status codes for SEO, how they affect website performance and the tools you need to monitor and resolve issues.
sets
How to Find Frequent Itemsets with the Apriori Algorithm in PythonNov 7, 2025
Learn how to use Python's Apriori algorithm to find frequent itemsets in transaction data automatically.
An Introduction to MultisetsOct 16, 2025
Multisets are sets that allow repetition of elements. As such, multisets pave the way to a number of interesting possibilities of theoretical and applied nature. In the present work, after revising the main aspects of traditional sets, we introduce some of the main concepts and characteristics of multisets, followed by their generalization to take into account vectors and matrices. An approach is also proposed in which the real, negative multiplicities are allowed, implying the multiset universe to become finite and well-defined, corresponding to the multiset with null multiplicities. The complement operation in multisets is then defined, which allows properties involving complement -- including the De Morgan theorem -- to be recovered in multisets. In addition, it becomes possible to extend multisets to functions (which become multifunctions), scalar fields and other continuous mathematical structure, therefore achieving an enhanced space endowed with all algebraic operations plus set theoretical operations including union, intersection, and complementation. The possibility to define a set operation between mfunctions, namely the common product, that is analogous to the traditional inner product is also proposed, paving the way to obtaining respective mfunction transformations, and it is argued that the Walsh functions provide an orthogonal basis for the mfunctions space under the common product. This result also allowed the proposal of performing integrated signal processing operations on mset mfunctions, including filtering and enhanced template matching. Relationships between the cosine similarity index and the Jaccard index are also identified, including the presentation of an intersection-based variation of the cosine index. The potential of multisets in pattern recognition and deep learning is also briefly characterized and illustrated.
Set Theory Ordered Pairs and Cartesian Product with RJun 8, 2018
aaronschlegel.com is your first and best source for all of the information you’re looking for. From general topics to more of what you would expect to find here, aaronschlegel.com has it all. We hope you find what you are searching for!
shaming
When Brands Wear an Insult as a Badge of Honor | MIT Sloan Management ReviewMar 2, 2026
In some scenarios, brands can increase consumer interest and positive attitudes by embracing insults directed at them.
A Mysterious Network of Revenge Experts Is Quietly Ruining People’s Lives. That’s Entirely the Point.Jul 17, 2025
Nefarious Jobs can arrange everything from breakups to firings to mortifying public shaming. But the agency won’t do it for just anyone.
Personal and political shaming is running hot, yet it doesn’t work | PsycheFeb 11, 2024
When passions run high so does the urge to shame wrongdoers. But if the goal is to change, shamers should think twice
Charlie Tyson: "Theater of Shame"Oct 4, 2022
What does the state of online shaming reveal about our democracy?
How to cope with shame | Psyche GuidesSep 9, 2022
Do you feel perpetually bad, broken or unlovable? These tools will help you relate to yourself in a fairer, gentler way
An Old Diagnosis: The Common ScoldAug 23, 2022
The "common scold," recognized in England for centuries is still with us. Although such a person is not described in the psychiatric literature, I describe his/her principal elements here.
PocketAug 17, 2022
The Scientific Underpinnings and Impacts of ShameAug 17, 2022
People who feel shame readily are at risk for depression and anxiety disorders
How to Build Resilience to ShameJul 30, 2022
Today’s hustle culture claims “unearned” pleasure is shameful. But there are ways to resist this cultural response.
Shamelessness as a strategyJul 26, 2022
I’ve enjoyed playing a game called Avalon recently. I won’t go too far into the rules, but it’s a hidden role game in the vein of Secret Hitler or Werewolf, where one team is “good”, trying to uncover who among them is “evil”, before the evil team wins.
Troy Hunt: The Effectiveness of Publicly Shaming Bad SecuritySep 12, 2018
Here's how it normally plays out: It all begins when a company pops up online and makes some sort of ludicrous statement related to their security posture, often as part of a discussion on a public social media platform such as Twitter. Shortly thereafter, the masses descend on said organisation
How to Sell Embarrassing ProductsFeb 2, 2018
Consumers are more likely to buy embarrassing products when their embarrassment is mitigated by more-anonymous packaging. Specifically, consumers found products packaged in boxes with cool colors, small lettering, and a picture of the product to be more anonymous (and appealing) than products packaged in pumps or tubes with warm colors, medium or large lettering, and no picture. The findings show that the more anonymous a product looks, the less embarrassing a consumer finds it, and the more likely they are to purchase it.
We should take awkwardness less personally and more seriously | Aeon EssaysOct 24, 2006
Rather than being a cringey personal failing, awkwardness is a collective rupture – and a chance to rewrite the social script
shiny
How to deploy a Shiny app for production | R-bloggersNov 15, 2025
How to deploy a Shiny app for production
How to Deploy R ModelsFeb 11, 2025
This article will discuss simple ways to deploy and manage R models.
shiny - shiny.pdfJan 17, 2024
Exploring Distributions with {shiny} and {TidyDensity}Apr 19, 2023
Introduction Shiny is an R package that allows you to build interactive web applications using R code. TidyDensity is an R package that provides a tidyverse-style interface for working with probability density functions. In this tutorial, we’ll ...
shopify
Fulfillment Compared: Amazon, Walmart, ShopifyAug 27, 2025
Ecommerce operators tired of picking, packing, and posting parcels can turn to massive marketplaces and the leading ecommerce platform for help.
The Details of Shopify’s Massive Q2 2022 LossJul 31, 2022
Having posted a massive $1.2 billion loss in Q2 2022, Shopify effectively reset its financial outlook. Longtime contributor and analyst Marcia Kaplan looks at the details.
Six Lessons from Six Months at ShopifyJul 19, 2022
I’m now six months into Shopify. So far it’s going basically on schedule: as I was told, “Your first couple months you’re going to have zero idea what’s going on. Then around month three you’ll com…
Twitter partners with Shopify to bring merchants' products to Twitter Shopping | TechCrunchJun 22, 2022
As part of its ongoing efforts to expand into e-commerce, Twitter today announced a new partnership with Shopify. The deal will see Twitter launching a
Shopify and the Power of PlatformsFeb 10, 2022
It is all but impossible to beat an Aggregator head-on, as Walmart is trying to do with Amazon. The solution instead is to build a platform like Shopify.
Shopify SEO Guide: How to increase organic traffic to your storeFeb 6, 2022
Everything a merchant needs to know about optimizing their Shopify site, from basic SEO capabilities to apps, technical SEO challenges and beyond.
How Shopify Payments Work: All You Want To Know?Mar 22, 2021
Well, if you are planning to sell your stuff online and make money, then there are a few top eCommerce platforms that would help you out. Shopify is the
What I wish I knew before building a Shopify AppMar 21, 2021
As its ecosystem grows, companies are becoming reliant on Shopify for moreNov 13, 2020
Read more in the DTC Briefing, a weekly Modern Retail column about the biggest challenges and trends facing the DTC startup world.
Six Lessons from Six Months at ShopifyNov 3, 2020
I’m now six months into Shopify. So far it’s going basically on schedule: as I was told, “Your first couple months you’re going to have zero idea what’s going on. Then around month three you’ll com…
Platforms in an Aggregator WorldMay 27, 2020
Facebook Shops are good for Shopify merchants, but bad for Shopify; the answer is to push more into the real world.
Shopify App Store: Ecommerce App MarketplaceDec 22, 2018
Shopify App Store: customize your online store and grow your business with Shopify-approved apps for marketing, store design, fulfillment, and more.
‘It’s their moat’: How Shopify built an $800 million partner ecosystemDec 21, 2018
Shopify is partnering with a network of more than 20,000 app developers and agency partners to build profitable businesses.
signaling
Winning with misinformation: New research identifies link between endorsing easily disproven claims and prioritizing symbolic strengthOct 15, 2025
Conversations around misinformation that assume everyone cares about literal truth may be missing the point.
When Values Eat Their Young: How Ideal-Driven Groups Drift into Their Own ShadowSep 17, 2025
Picture this: A Slack channel for an open-source project that prominently displays "Be excellent to each other" in its community guidelines. Six month
Micro Expressions | Facial Expressions | Paul Ekman GroupSep 1, 2025
Micro expressions are very brief facial expressions, lasting only a fraction of a second. The Paul Ekman Group provides a variety of tools in order to learn how to spot micro expressions.
Waffle House’s Magic Marker SystemMar 21, 2024
I thought for sure that I’d previously written about the secret jelly packet & pickle-based system that chefs at the Waffle House use to “store” all of the orders that come in for food during service, but I can’t find it in the a
Signaling as a ServiceJul 18, 2022
01 Intro One of the best books I have read in the last few years is The Elephant in the Brain by Robin Hanson and Kevin Simler. The book makes two main arguments: a) Most of our everyday actions can be traced back to some form of signaling or status seeking b) Our brains deliberately hi
‘I’ll have what she’s having’ – how and why we copy the choices of othersJul 18, 2022
New research on consumer behavior shows that we tend to match some types of choices the people around us make, but not others.
The rise, fall, and rise of the status pineappleJun 30, 2022
For a couple of centuries, the British were in an unlikely frenzy for the exotic fruit.
When the Nerves of Knowledge Send False Signals: A Conversation on Our Age of Misinformation - Behavioral ScientistJun 25, 2022
How do false beliefs spread, and what are the consequences?
If smiles are so easy to fake, why do we trust them? | Psyche IdeasFeb 24, 2021
Smiles can be a way to dupe people because they’re easy to fake – but we’ve figured out which smiles can be trusted
Mixed Signals: Why People Misunderstand Each OtherJan 30, 2021
The psychological quirks that make it tricky to get an accurate read on someone's emotions
Hacker NewsJan 25, 2021
I’ve spent a lot of time recently thinking about different proof-of-work mechanisms. When I say proof-of-work, I’m not talking about consensus algorithms like the ones that some crypto currencies use. I’m talking about social networks.
The Art of Virtue Signaling: Why so Many Brands Get It WrongAug 29, 2019
Many brands overshoot the subtleties of virtue signaling. They preach, posture, and alienate the people they’re trying to impress. We show how big companies can better bang their virtue drums. #brand #marketing #PR #business #SocialMedia #CX
What Is Signaling, Really? - LessWrong 2.0Mar 12, 2019
The most commonly used introduction to signaling, promoted both by Robin Hanson and in The Art of Strategy, starts with college degrees. Suppose, the…
silence
On Beethoven and the Gifts of Silence - Cal NewportFeb 11, 2021
Writing in 1801, at the age of 30, Ludwig van Beethoven complained about his diminishing hearing: “from a distance I do not hear the high ... Read more
This Is Your Brain on Silence - Issue 38: Noise - NautilusAug 6, 2019
Nautilus is a different kind of science magazine. Our stories take you into the depths of science and spotlight its ripples in our lives and cultures.
silicon-carbide
ST remains largest silicon carbide power device maker, with 32.6% market shJun 20, 2024
onsemi rises from fourth to second; top five players comprise 91.9% of revenue
US chipmaker Onsemi to invest $2bn in Czech Republic silicon carbide faciliJun 20, 2024
Largest one-off direct foreign investment in the country
Infineon Makes First 300mm Power GaN Wafer With Existing Manufacturing ToolsSep 24, 2018
The 300-mm gallium nitride (GaN) wafer production will bend the cost curve for power-dense, wide-bandgap devices, bringing them closer to cost parity with silicon.
Planned 8-inch silicon carbide wafer fabs worldwide reach 14Oct 24, 2014
ST, Onsemi, Infineon, Wolfspeed, ROHM, BOSCH, Fuji Electric, Mitsubishi Electric, VIS/EPISIL, Silan, UNT and FT1 all plan SiC plants
similarity-search
Probabilistic Nearest Neighbor Search: The Swiss Army Knife of GenAIFeb 10, 2026
ANN — Approximate Nearest Neighbors — is at the core of fast vector search, itself central to GenAI, especially GPT and LLM. My new methodology, abbreviated as PANN, has many other app…
Similarity Search, Part 4: Hierarchical Navigable Small World (HNSW) | by VJul 28, 2023
Hierarchical Navigable Small World (HNSW) is a state-of-the-art algorithm used for an approximate search of nearest neighbours. Under the…
Similarity Search, Part 3: Blending Inverted File Index and Product QuantizJul 28, 2023
In the first two parts of this series we have discussed two fundamental algorithms in information retrieval: inverted file index and…
Building a Vector Search Engine Using HNSW and Cosine SimilarityJul 27, 2023
Hierarchical Navigable Small World graphs (HNSW) is an algorithm that allows for efficient nearest neighbor search, and the Sentence…
Similarity Search, Part 1: kNN & Inverted File IndexJul 27, 2023
Similarity search is a popular problem where given a query Q we need to find the most similar documents to it among all the documents D.
Similarity Search, Part 6: Random Projections with LSH ForestJul 27, 2023
Understand how to hash data and reflect its similarity by constructing random hyperplanes
Similarity Search, Part 7: LSH CompositionsJul 27, 2023
Dive into combinations of LSH functions to guarantee a more reliable search
simplicity
The triumph of logical English - Works in Progress MagazineJan 4, 2026
English prose has become much easier to read. But shorter sentences had little to do with it.
Understanding Occam's Razor: Why Simpler Models Usually WinAug 26, 2025
Learn why simpler statistical models often outperform complex alternatives and when to apply this principle.
Simplicity is An Advantage but Sadly Complexity Sells BetterMay 7, 2024
Pushing back on the cult of complexity.
If your product is Great, it doesn't need to be Good.Jul 5, 2022
By now, everyone is tired of hearing about the iPad, but the negative responses are so perfectly misguided that it would be wrong to waste t...
sinatra
How to Use Sinatra to Build a Ruby ApplicationJun 7, 2023
In this article, we'll introduce Ruby on Rails' lesser-known but powerful cousin Sinatra. We'll use...
Add Authorization to a Sinatra API using Auth0Apr 17, 2023
Learn how to implement a Sinatra API and protect its endpoints using Auth0
sinatra/sinatra-recipes: Community contributed recipes and techniquesJan 17, 2022
Community contributed recipes and techniques.
SinatraMay 10, 2020
Build a WhatsApp chatbot with Ruby, Sinatra and TwilioFeb 19, 2020
Find out how easy it is to build a chatbot for WhatsApp using the Twilio API for WhatsApp and the Ruby web framework Sinatra.
Building a Slack App using Ruby and SinatraAug 30, 2019
Photo by Morre Christophe on Unsplash My team at Runtime Revolution uses an in-house app for team ma...
sleep
How to Know If You're a Morning PersonDec 14, 2025
“Extreme larks” get up naturally when some people have hardly gone to bed.
Two billion humans are doing something bizarre right now: sleeping | Aeon EssaysOct 14, 2025
It is our biggest blind spot, a bizarre experience that befalls us every day, and can’t be explained by our need for rest
smell
This MIT Prototype Translates Images Into Fragrances That Your Mind Remembers Better - Yanko DesignFeb 3, 2026
At a time when memories are increasingly flattened into folders, feeds, and cloud backups, a new experimental device from MIT Media Lab proposes a far more intimate archive: scent. Developed by Cyrus Clarke, the Anemoia Device is a speculative yet functional prototype that translates photographs into bespoke fragrances using generative AI, inviting users not to
How the Brain Links Smell to Fear—and Why Some Scents Spike Your AnxietyJun 22, 2025
The scent of smoke, chlorine, or even cheap cologne can send your nervous system into overdrive, and now, scientists know why.
why you should be smelling more thingsJun 1, 2025
One of the silly little quirks of being human is that we pretend that some experiences are more real than others.
Scents and memories at the hospitalJun 3, 2024
Stanford medical student Yoo Jung Kim writes about smells in the hospital and how they can trigger fond memories and provide motivation.
Scents of Self: Why Young Chinese are Obsessed with FragrancesFeb 29, 2024
The fragrance industry in China is on the upswing as younger consumers embrace scents for self-expression and comfort.
How Odors Influence Brain’s Decision Making MechanismFeb 7, 2024
Researchers have uncovered a novel function of the hippocampus in decision making, showing that specific brain cells, known as 'time cells,' are stimulated by odors to facilitate rapid 'go, no-go' decisions.
Crayola Trademarks the Smell of Its CrayonsAug 24, 2023
An anonymous reader quotes a report from the Financial Post: You may find yourself smelling crayons in the aisles of stores soon -- if Crayola's chief executive Pete Ruggiero has his way. In July, the U.S. Patent and Trademark Office issued a trademark to the arts and crafts giant for the smell of i...
What is the secret to an evocative smell description?Aug 7, 2023
Many languages have very few odour-related words, so conveying what a scent is like requires knowing your audience
snobbery
Why Is Art Expensive? - PriceonomicsJul 18, 2022
How do you sell a six-figure painting? Branding and a heavily "curated" marketplace.
The Science of Snobbery: How We're Duped Into Thinking Fancy Things Are BetterJul 18, 2022
Wine snobs, string quartets, and the limits of intuition
social-proof
How to Make the Most of Your Customer Testimonials - Help ScoutJul 18, 2022
Bland customer testimonials always go bust. Here's how to get great quotes from your customers.
Neil Patel's Digital Marketing BlogJul 18, 2022
Your #1 resource for digital marketing tips, trends, and strategy to help you build a successful online business.
4 Ways to Use Social Proof on an Ecommerce SiteJul 18, 2022
Building trust and putting online shoppers at ease are important parts of ecommerce marketing and merchandising, since very few folks will hand over
Social Proof Is the Most Important Factor in SellingJul 18, 2022
If I had to choose a single factor that is crucial to an online store’s success, it would be social proof. The term is often misunderstood. It doesn’t
social-skills
The stranger secret: how to talk to anyone – and why you shouldMar 2, 2026
Forget fear of public speaking. A lot of people now shy away completely from speaking to anyone in public. But if we learn to do this it’s enriching, for ourselves and society
21 Facts About Throwing Good PartiesOct 2, 2025
Parties are a public service; here's how to throw them.
The Anti-Social CenturyJan 11, 2025
Americans are now spending more time alone than ever. It’s changing our personalities, our politics, and even our relationship to reality.
Basic Social Skills Guide - Improve Your Social SkillsJul 18, 2022
Free online social skills guide. Contains information on understanding body language, making conversation, and setting good social skills goals.
solar
Building Ultra Cheap Energy Storage for Solar PVAug 23, 2025
Solar still needs storage cheap enough to move energy between seasons. I have been working on a startup to do this for the last two years.
The solar industrial revolution is the biggest investment opportunity in hiJun 12, 2024
Solar is in the process of shearing off the base of the entire global industrial stack – energy – and the tech sector still lacks a unified thesis for how to best enable, accelerate, an…
The US experienced staggering growth in solar and wind power over the lastJun 11, 2024
With gains in solar and wind, 22 percent of the nation's electricity comes from renewables, bringing the country closer to its climate goals.
Meet perovskite, the mystery mineral that could transform our solar energy futureSep 15, 2020
Someday, solar panels may be light and cheap enough that they could be hung on a clothesline, thanks to a synthetic mineral called perovskite. Physicist Sam Stranks explains the solar-powered scien…
As Economics Improve, Solar Shines in Rural AmericaJul 29, 2018
Declining costs have helped some of the country's smallest electricity providers expand their use of solar in highly innovative ways
solitude
Neuroscientist: The No. 1 trait of highly intelligent people, including Bill Gates and Leonardo da Vinci—it's not about IQAug 4, 2025
What separates some of the world's most successful people from everyone else? Neuroscientist Joseph Jebelli says it involves how they spend their free time. He shares examples from Bill Gates and Leonardo da Vinci.
The Substance of Silence: A Reading List About HermitsSep 8, 2022
Humans are social creatures, and loneliness can be debilitating — yet, many have discovered solace in the solitary life.
spacy
explosion/spaCy: 💫 Industrial-strength Natural Language Processing (NLP) in PythonAug 27, 2025
💫 Industrial-strength Natural Language Processing (NLP) in Python - explosion/spaCy
Applications of SpaCy in Real-World Text Analytics ProjectsFeb 17, 2025
In this article, we will focus on practical use cases, showcasing how spaCy can be applied end-to-end in real-world scenarios.
Text Preprocessing and Feature Engineering with spaCyFeb 12, 2025
In this article, we’ll focus on how to prepare text data for machine learning and statistical modeling using spaCy.
7 spaCy Features To Boost Your NLP Pipelines And Save TimeAug 24, 2022
I’ve never used spaCy beyond simple named entity recognition tasks. Boy was I wrong.
Visualizing Part-of-Speech Tags with NLTK and SpaCyAug 19, 2022
Customizing displaCy’s entity visualizer
spaCy_hello_world/spaCy_101.ipynb at master · bjpcjp/spaCy_hello_worldJan 16, 2022
Beginner's tour of spaCy v2.0.
Mastering spaCy | Data | eBookSep 7, 2021
An end-to-end practical guide to implementing NLP applications using the Python ecosystem. 1 customer review. Instant delivery. Top rated Mobile Application Development products.
Aspect-Based Sentiment Analysis Using Spacy & TextBlobMar 1, 2021
Estimate sentiment for specific topics or attributes
Release v3.0.0: Transformer-based pipelines, new training system, project tFeb 1, 2021
📣 NEW: Want to make the transition from spaCy v2 to spaCy v3 as smooth as possible for you and your organization? We're now offering commercial migration support for your spaCy pipelines! We...
Advanced NLP with spaCy · A free online courseAug 29, 2019
spaCy is a modern Python library for industrial-strength Natural Language Processing. In this free and interactive online course, you'll learn how to use spaCy to build advanced natural language understanding systems, using both rule-based and machine learning approaches.
Introducing spaCy v2.1 · Blog · Explosion AIApr 1, 2019
Version 2.1 of the spaCy Natural Language Processing library includes a huge number of features, improvements and bug fixes. In this post, we highlight some of the things we're especially pleased with, and explain some of the most challenging parts of preparing this big release.
mukund109/word-mesh: A context-preserving word cloud generatorSep 5, 2018
A context-preserving word cloud generator.
NLP Concepts with spaCy. Code examples released under CC0 https://creativecJun 8, 2018
NLP Concepts with spaCy. Code examples released under CC0 https://creativecommons.org/choose/zero/, other text released under CC BY 4.0 https://creativecommons.org/licenses/by/4.0/ · GitHub
spacy-notebooks/lightning_tour.ipynb at master · explosion/spacy-notebooksFeb 1, 2018
💫 Jupyter notebooks for spaCy examples and tutorials - explosion/spacy-notebooks
spam
Bellingcat’s Post [Video]Jun 4, 2024
How do you tell if an image on your feed has been photoshopped or manipulated? This video is the next installment in our News Hygiene Series with Radio Free…
WordPress, Spam Filtering, and You: From SPF to DKIM to BlocklistsSep 9, 2018
There is no one key to making sure WordPress site emails are sent reliably and stay out of the recipient’s spam folder. A common recommendation is to use a dedicated…
spark
Tutorial: Load and transform data using Apache Spark DataFrames | Databricks DocumentationJul 6, 2025
Learn how to load and transform data using the Apache Spark Python (PySpark) DataFrame API, the Apache Spark Scala DataFrame API, and the SparkR SparkDataFrame API in Databricks.
What is Spark - Apache Spark Tutorial for Beginners - DataFlairJan 12, 2022
What is Spark tutorial about Spark introduction, why spark, Hadoop vs Apache Spark, Need of Spark, Architecture, Spark Ecosystem, Spark RDD and Spark shell.
Apache Spark Introduction for BeginnersOct 28, 2018
An extensive introduction to Apache Spark, including a look at the evolution of the product, use cases, architecture, ecosystem components, core concepts and more.
spatial
Statology Sprint: Building Spatial Analysis Skills with GeoPandasMay 16, 2025
Learn to transform geographic data into actionable insights using GeoPandas. From basic maps to finding Chicago's health deserts — complete tutorial inside.
Geospatial Clustering with PythonApr 22, 2025
In this article, I'll take you through a practical guide to geospatial clustering with Python. Geospatial Clustering with Python.
Stop Using Zip Codes for Geospatial AnalysisFeb 7, 2025
Uncover deeper insights beyond ZIP codes with geospatial analysis. Explore the limitations of ZIP codes and discover alternatives for spatial understanding.
Spatial Computing: A New Paradigm of InteractionFeb 29, 2024
Web magazine about user experience matters, providing insights and inspiration for the user experience community
Spatial Statistics for Data Science: Theory and Practice with RJan 8, 2024
A book for Spatial Statistics for Data Science with R.
Geospatial Data Analysis with GeoPandasMay 7, 2023
Learn how to manipulate and visualize vector data with Python’s GeoPandas
Artificial Intelligence for Geospatial Analysis with Pytorch’s TorchGeo (paDec 18, 2022
An end-to-end deep learning geospatial segmentation project using Pytorch and TorchGeo packages
Creating Beautiful Topography Maps with PythonJan 17, 2022
Who needs GIS when you can build eye-catching 3D topography maps with Python?
Make Beautiful Spatial Visualizations with Plotly and MapboxMay 5, 2021
I recently wrote a post about visualizing weather data from NOAA. We walked through processing the data and making some basic interactive maps with Plotly. In this article I want to use the same data…
Introduction to hierarchical clustering (Part 3 — Spatial clustering)Mar 12, 2021
Introducing a spatial dimension into hierarchical clustering
An Idea From Physics Helps AI See in Higher DimensionsFeb 22, 2021
The laws of physics stay the same no matter one’s perspective. Now this idea is allowing computers to detect features in curved and higher-dimensional space.
Helping robots avoid collisionsNov 3, 2020
The startup Realtime Robotics, co-founded by former MIT postdoc George Konidaris, is helping robots solve the motion planning problem by giving them collision avoidance capabilities.
How to create Voronoi regions with Geospatial data in PythonJun 1, 2020
A step by step guide on creating and plotting Voronoi diagrams in Python
Spatial Autocorrelation: Close Objects Affecting Other Close ObjectsMay 15, 2020
Deep dive into spatial autocorrelation and their industry use cases
A dive into spatial search algorithms – Vladimir Agafonkin – MediumFeb 21, 2018
Searching through millions of points in an instant
speaking
The stranger secret: how to talk to anyone – and why you shouldMar 2, 2026
Forget fear of public speaking. A lot of people now shy away completely from speaking to anyone in public. But if we learn to do this it’s enriching, for ourselves and society
How to Speak with Confidence When You’re Put on the SpotJan 14, 2026
Stanford’s Matt Abrahams offers practical advice for communicating clearly and calmly under pressure.
The Leadership Test No One Wants: Delivering Bad News Well | Nancy Duarte | MIT Sloan Management ReviewNov 17, 2025
When a situation goes wrong, leaders need to decide whether to fix it, bounce back, shut it down, or move on.
How to Give a Good TalkSep 3, 2025
In computer science, conferences are a focal point of academic attention. Conferences are a moment where computing communities—distributed over the globe—come together. Giving a talk at a conferenc…
Jim Valvano’s ESPYs speech touched hearts. It’s also a masterclass in public speakingAug 19, 2025
A public speaking expert watched Valvano's speech for the first time and called her dad. “Have you ever seen this?” she asked. “Oh my God."
Stuttering Has Deep Genetic Roots and May Affect Your Ability to Clap to a BeatAug 15, 2025
A massive genetic study found that stuttering is not just about nurture and may link to processing rhythm itself.
To instantly sound more sincere, do thisJul 25, 2025
If you aren’t careful, you may come across as less sincere because your writing doesn’t translate your intent. Here’s how to make sure that doesn’t happen.
How Much Freedom of Speech is Too Much? (From a Philosophy of Language Point of View)Jul 24, 2025
On February 14, 2025, the Vice President of the United States, J.D. Vance, accused European countries of being too restrictive in their approach to freedom of speech at the Security Conference in Munich. The message: the United States should be taken as an example, especially under the Trump administration. In fact, the United States has
(PDF) Types of Dialogue and Burdens of Proof.Apr 22, 2025
PDF | Burden of proof has recently come to be a topic of interest in argumentation systems for artificial intelligence (Prakken and Sartor, 2006, 2007,... | Find, read and cite all the research you need on ResearchGate
Opinion | A.I. Is Coming for Hank Azaria’s ‘Simpsons’ VoicesFeb 7, 2025
Soon enough, artificial intelligence may be able to recreate the sounds — but there will be something missing.
PNASOct 19, 2024
Do conversations end when people want them to? Surprisingly, behavioral science provides no answer to this fundamental question about the most ubiq...
How great leaders inspire action | Simon Sinek | TEDMar 24, 2024
Visit http://TED.com to get our entire library of TED Talks, transcripts, translations, personalized talk recommendations and more.
Simon Sinek presents a simple but powerful model for how leaders inspire action, starting with a golden circle and the question "Why?" His examples include Apple, Martin Luther King, and the Wright brothers -- and as a counterpoint Tivo, which (until a recent court victory that tripled its stock price) appeared to be struggling.
The TED Talks channel features the best talks and performances from the TED Conference, where the world's leading thinkers and doers give the talk of their lives in 18 minutes (or less). Look for talks on Technology, Entertainment and Design -- plus science, business, global issues, the arts and more. You're welcome to link to or embed these videos, forward them to others and share these ideas with people you know.
Follow TED on Twitter: http://twitter.com/TEDTalks
Like TED on Facebook: http://facebook.com/TED
Subscribe to our channel: http://youtube.com/TED
TED's videos may be used for non-commercial purposes under a Creative Commons License, Attribution–Non Commercial–No Derivatives (or the CC BY – NC – ND 4.0 International) and in accordance with our TED Talks Usage Policy (https://www.ted.com/about/our-organization/our-policies-terms/ted-talks-usage-policy). For more information on using TED for commercial purposes (e.g. employee learning, in a film or online course), please submit a Media Request at https://media-requests.ted.com
Using this 1 word more often can make you 50% more influential, says HarvarFeb 22, 2024
A nearly 50-year-old Harvard University study found that the word "because" helps people make more persuasive requests. Here's why, says a Wharton professor.
The Psychology of Camera ConfidenceFeb 16, 2024
In a world dominated by video, we know we’d benefit from communicating effortlessly through video content. But many of us struggle with camera confidence. This is because our fear of talking to a camera is deeply rooted in our survival instincts.
If You Want To Boost Your Social Status, Lower Your Vocal Pitch | IFLSciencFeb 11, 2024
It could also make you more attractive to potential long-term partners.
How to give a eulogyJan 31, 2024
Here's how to give a eulogy, and other difficult speeches, according to a Stanford business school lecturer.
These are the mental processes required to tell a convincing lieOct 6, 2023
The cognitive work involved in lying is relevant to lie detection and could help explain why some people are better liars
8 Techniques in Persuasion from AntiquityOct 1, 2023
Persuasive rhetorical techniques from the speeches of Demosthenes in Classical Athens to Cicero in the Late Roman Republic.
The secret to successfully pitching an idea | Mar HershensonSep 25, 2023
Have a great idea but sure how to sell it? Investor and teacher Mar Hershenson has you covered. Whether it's sharing a new product with a client or vying for a promotion, these three steps will help you tell an irresistible story and get the "yes" you're looking for.
Talking About a Difficult Decision — When You Can’t Share All the DetailsAug 12, 2023
When you have to communicate a difficult organizational decision to employees, it’s hard to know how much information to provide when you can’t be fully transparent yet. Saying nothing can undermine people’s trust in your motives and compassion, whereas saying too much can leave people feeling overwhelmed and vulnerable as they struggle to process the information and implications. Striking the right balance between these two extremes is a tricky exercise for leaders. The author presents five strategies to help you figure out what to say and do when you can’t yet be fully transparent with your employees.
Why Do We Gesture When We Talk?May 27, 2023
We all know people who talk with their hands. Turns out there’s quite a bit of research around the relationship between language and gestures.
The Magic of Knowing When to Use Concrete vs. Abstract Language - By Jonah Berger - Behavioral ScientistApr 25, 2023
When trying to make language either more concrete or more abstract, one helpful approach is to focus on either the how or the why.
Carl Braun on Communicating Like a Grown-UpMar 30, 2023
Industrial genius Carl Braun believed that clear thinking and clear communication go hand in hand. Here the guide on writing productively to get things done.
3 Rhetorical Techniques to Increase Your ImpactMar 19, 2023
Technological advances in natural language processing, computational linguistics, and machine learning, combined with the digitization of everything from cover letters to conversations, have revolutionized our ability to analyze language, yielding unprecedented insights. Think of it as a new science of language. Many of the findings suggest that small changes in the words we use can increase our ability to persuade and influence others.
The best way to introduce yourselfMar 19, 2023
Following a simple, three-part framework can make your introductions smoother, easier, and more memorable.
How To Get An MBA From EminemJan 18, 2023
In 2002 I was driving to a hedge fund manager's house to hopefully raise money from him. I was two hours late. This was pre-GPS and I had no cell phone. I was totally lost. I kept playing over and over again "Lose Yourself" by Eminem. I was afraid this was my one shot and I was blowing it. I was even crying in my car. I was going broke and I felt this was my one chance. What a loser.
CorentinJ/Real-Time-Voice-Cloning: Clone a voice in 5 seconds to generate aDec 21, 2022
Clone a voice in 5 seconds to generate arbitrary speech in real-time - CorentinJ/Real-Time-Voice-Cloning
The rules of improv can make you funnier. They can also make you more confident. : Life KitDec 8, 2022
Improv comedy is about more than making people laugh. It can help performers be more creative and self-assured — and combat anxiety, both on and off stage.
How Great Leaders CommunicateNov 23, 2022
Transformational leaders are exceptional communicators. In this piece, the author outlines four communication strategies to help motivate and inspire your team: 1) Use short words to talk about hard things. 2) Choose sticky metaphors to reinforce key concepts. 3) Humanize data to create value. 4). Make mission your mantra to align teams.
The Secret To Talking To Someone Who Always Gets DefensiveNov 22, 2022
Talking to someone who gets defensive can be frustrating. So, what can you do? Here's how to sidestep someone's personal fortifications.
Hidden ways people drain another's energyNov 8, 2022
Examples of hidden ways people drain one other’s energy in social interaction—and what to do about it
Seven Things I Learnt Doing Stand-Up Comedy | Michael Gomes VieiraAug 15, 2022
I took part in a 6 week stand-up comedy course for beginners at The Comedy Store in Central London. At the end of the course, myself and the other co...
Block Your TalkJul 18, 2022
This one of a series of essays on speaking. Find more here. You’ve written a great talk, you’ve made your deck (or not!) and you’ve practiced. But have you considered how you’ll move while speaking…
People Literally Don't Know When to Shut Up--or Keep Talking--Science ConfirmsJul 18, 2022
We are really bad at navigating a key transition point during one of the most basic social interactions
Bad at public speaking? The trick is to distill your message to these 15 words, says speech trainerJul 18, 2022
Mastering the art of public speaking has nothing to do with your personality, with overcoming shyness or learning to act confident. It's a technical skill that nearly anyone can acquire — just like cooking.
9 Ways This Introvert Polished His Public Speaking SkillsJul 18, 2022
Not all introverts suffer from public speaking anxiety. But if you do, here are some ideas to eliminate it and become a strong communicator.
Tap into the power to persuade by using these 6 techniques of clear and compelling speechJul 18, 2022
Politicians and other public figures deploy particular rhetorical devices to communicate their ideas and to convince people, and it’s time that we all learned how to use them, says speechwriter Sim…
One Big IdeaJun 28, 2022
I was enjoying a sazerac with a old friend of mine at a local watering hole. And by watering hole, I mean incredibly hip farm-to-table restaurant full of young techies because we were in Mountain V…
Want to Win Someone Over? Talk Like They Do.Jun 25, 2022
What does it take to become a more convincing communicator? New research suggests that linguistic mirroring — that is, adjusting your communication style to match that of your audience — is an effective tool to increase your ability to influence others. In this piece, the authors describe four key dimensions of linguistic mirroring, as well as several tactical strategies for leaders looking to win over a client, judge, or other important evaluator. Ultimately, they argue that building genuine relationships with key evaluators is the best way to gain insight into their linguistic preferences — but it’s up to all of us to make sure that we use the power of linguistic mirroring for good.
snakers4/silero-models: Silero Models: pre-trained speech-to-text, text-to-speech and text-enhancement models made embarrassingly simpleJun 21, 2022
Silero Models: pre-trained speech-to-text, text-to-speech and text-enhancement models made embarrassingly simple - snakers4/silero-models
The Surprising Way to Be More Effective at StorytellingJun 7, 2022
To engage leaders, colleagues, and clients, use this simple technique
The Four Desires Driving All Human Behavior: Bertrand Russell’s MagnificentDec 27, 2021
“Nothing in the world is more exciting than a moment of sudden discovery or invention, and many more people are capable of experiencing such moments than is sometimes thought.”
The Power of Audience-Centered Storytelling | Bill Carmody | TEDxFergusonLibraryDec 15, 2021
Bill Carmody is a twenty-five year global keynote speaker. He’s had the incredible privilege to present in Brazil with Sir Richard Branson and in India with executives from Fortune 100 companies. Recently he had the distinct privilege to teach several of the UK Brexit government officials how to become more powerful public speakers.
Bill Carmody is a twenty-five year global keynote speaker. He’s had the incredible privilege to present in Brazil with Sir Richard Branson and in India with executives from Fortune 100 companies. Recently he had the distinct privilege to teach several of the UK Brexit government officials how to become more powerful public speakers. This talk was given at a TEDx event using the TED conference format but independently organized by a local community. Learn more at https://www.ted.com/tedx
How to Give the Gift of Generative ThinkingDec 13, 2021
If you want to help people, don’t give them advice. Do this instead.
Five Phrases That Make People Discount What You’re SayingMay 31, 2021
These common expressions can cause listeners to think twice.
Bullshit and IntelligenceMay 18, 2021
The term "bullshitting" (in addition to its colloquial use) is a technical psychological term that means, "communication characterised by an intent to be convincing or impressive without concern for truth." This is not the same as lying, in which one knows what they are saying is false. Bullshitters simply are indifferent to whether or not
What the sound of your name says about you - BBC FutureMay 3, 2021
The way your name or a word rolls off the tongue can have some surprising effects on the judgements we make.
How to sound more attractiveApr 30, 2021
Many nationalities recognise that there is a tone of voice that is instantly alluring, but do some speakers have an unfair advantage?
The Six Keys to Positive CommunicationApr 30, 2021
Communicating better can help you achieve your goals and deepen your relationships.
These 7 phrases can help you sound more powerful at work - Fast CompanyApr 18, 2021
Sometimes, it really is what you say that makes a difference.
Find the Right Words to Inspire Your TeamApr 18, 2021
It’s important to understand that when you, as a leader, communicate with your team, using weaker words weakens your message and blunts your ability to inspire people. It’s not enough to just throw thoughts out there and hope for the best. You need to actively recommend ideas and assert their worthiness in all of your communications. For example, consider these “power words”: “I’m proposing (not “sharing”) an idea that will make our process more efficient.” “I’m suggesting (not “sharing”) a new logo that better conveys our brand message.” “I’m recommending (not “sharing”) a campaign to make our workplace more diverse.” Ultimately, audiences respond more actively to big points than to small words, but thoughtful leaders need to assess both, knowing that the more powerfully they come across — even in small ways — the greater impact they have on the people they hope to inspire.
The Tim Ferriss Show Transcripts: Jerry Seinfeld — A Comedy Legend’s Systems, Routines, and Methods for Success (#485) - The Blog of Author Tim FerrissApr 11, 2021
Please enjoy this transcript of my interview with entertainment icon Jerry Seinfeld (@jerryseinfeld). Jerry’s comedy career took off after his first appearance on The Tonight Show with Johnny Carson in 1981. Eight years later, he teamed up with fellow comedian Larry David to create what was to become the most successful comedy series in the … Continue reading "The Tim Ferriss Show Transcripts: Jerry Seinfeld — A Comedy Legend’s Systems, Routines, and Methods for Success (#485)"
A Simple Tip for Staying Assertive in Emotional ConversationsApr 2, 2021
Assertive communication is about compromise.
How to turn small talk into smart conversationMar 30, 2021
Tips from a comedian and a journalist on the art of going from small talk to big ideas. Try these out at the next summer wedding reception.
Public Speaking Nightmare: How to Shut Down Bullies and HecklersMar 11, 2021
Five tactics to silence the person trying to make you squirm.
How to speak in public | Psyche GuidesFeb 24, 2021
Public speaking can feel like an ordeal, but take a lesson from the ancients: it’s a skill you can develop like any other
Talking out loud to yourself is a technology for thinking | Psyche IdeasDec 29, 2020
Talking out loud to oneself is a technology for thinking that allows us to clarify and sharpen our approach to a problem
How to Talk to an Audience of 40,000 PeopleDec 18, 2020
When I signed up for a life of conducting orchestras, I didn’t realize I’d also need to learn how to handle enormous audiences
Your Speech Is Packed With Misunderstood, Unconscious MessagesFeb 13, 2020
Have you ever found yourself counting ums and uhs?
How to Give a Great Presentation: Timeless Advice from a Legendary Adman, 1Feb 1, 2020
“No speech was ever too short.”
Interested in improving your relationships? Try Nonviolent CommunicationOct 18, 2019
Nonviolent communication (NVC) is a popular method of conflict resolution that privileges unbiased evidence and specificity.
To Persuade Someone, Look EmotionalSep 16, 2019
Look like you‘re trusting your gut and others will trust you.
4-Part Nonviolent Communication (NVC) - PuddleDancer PressMar 12, 2019
Express and receive communication empathically using the four-part Nonviolent Communication process developed by Marshall B. Rosenberg, Ph.D.
Public speaking champion used a former winner's body language tip - BusinesOct 9, 2018
Ramona Smith used an interesting body-language technique to win the Toastmasters annual public-speaking competition last month in Chicago.
spectrum
Home | FCC National Broadband MapDec 8, 2022
The FCC National Broadband Map displays where Internet services are available across the United States, as reported by Internet Service Providers (ISPs) to the FCC. The map will be updated continuously to improve its accuracy through a combination of FCC verification efforts, new data from Internet providers, updates to the location data, and—importantly—information from the public.
T-Mobile dominates 2.5 GHz spectrum auction to fill in network gaps acrossOct 14, 2022
T-Mobile spends $304 million to win over 90% of available 2.5 GHz licenses.
speech-recognition
Perplexity’s latest partnership set to power SoundHound’s voice assistantMay 11, 2024
For Perplexity, the partnership with SoundHound marks the addition of another strong distribution channel expanding the reach of its LLM-driven search capabilities.
Otter.ai - AI Meeting Note Taker & Real-time AI TranscriptionFeb 11, 2024
Otter.ai uses an AI Meeting Assistant to transcribe meetings in real time, record audio, capture slides, extract action items, and generate an AI meeting summary.
CorentinJ/Real-Time-Voice-Cloning: Clone a voice in 5 seconds to generate aDec 21, 2022
Clone a voice in 5 seconds to generate arbitrary speech in real-time - CorentinJ/Real-Time-Voice-Cloning
snakers4/silero-models: Silero Models: pre-trained speech-to-text, text-to-speech and text-enhancement models made embarrassingly simpleJun 21, 2022
Silero Models: pre-trained speech-to-text, text-to-speech and text-enhancement models made embarrassingly simple - snakers4/silero-models
Speech Recognition with Python. Learn which of the 9 most prominent… | by SNov 19, 2020
Learn which of the 9 most prominent automatic speech recognition engines is best for your needs, and how to use it in Python programs.
spice
Transferring LTspice Schematics to QSPICE - Technical ArticlesOct 27, 2024
In this article, we'll walk through the process of moving an LTspice circuit into QSPICE and learn some QSPICE schematic techniques.
Introduction to QSPICE for LTspice Users, Part 1 - Technical ArticlesOct 16, 2024
This article, the first in a four-part series on moving from LTspice to QSPICE, introduces an LED blinker circuit that we’ll simulate with both programs.
An Introduction to Using Logic Gates in LTspiceJun 17, 2024
This article explains how to successfully integrate logic gates into an LTspice simulation.
Simulating MOSFET Current-Voltage Characteristics Using Advanced SPICE ModeJun 10, 2024
In this article, we use a SPICE model for 90 nm CMOS to plot key electrical relationships of an NMOS transistor.
Using Advanced SPICE models to Characterize an NMOS TransistorJun 5, 2024
SPICE models designed for specific CMOS process nodes can enhance simulations of integrated-circuit transistors. Learn where to find these models and how to use them.
thejackal360/OpenSPICE: Simulate electronic circuit using Python and the Ngspice / Xyce simulatorsFeb 16, 2023
Simulate electronic circuit using Python and the Ngspice / Xyce simulators - thejackal360/OpenSPICE
Designing and Simulating EMC Filters with LTspiceNov 2, 2020
In this article, we will review the different types of noise that are present in a circuit. We will also discuss how to perform an accurate simulation of an EMC filter with LTspice.
spin
How Asian dating sites cracked your biggest complaint—everyone lies onlineJun 25, 2022
Online dating site OKCupid has found an inexplicable number of men happen to be exactly six feet tall and there are four times as many people who claim to earn $100,000 per year as there should be. False advertising, or misrepresentation, is standard in any marketplace; the dating market is no different.
splines
Bezier-rs Interactive DocumentationAug 13, 2025
Modeling Marketing Mix Using Smoothing SplinesJul 18, 2022
Capturing non-linear advertising saturation and diminishing returns without explicitly transforming media variables
AntixK/Curve-Studio: Minimalist Electron app for designing spline curvesAug 30, 2019
Minimalist Electron app for designing spline curves - AntixK/Curve-Studio
sports
The Worst Shot Ever Taken - Believer MagazineJan 7, 2026
I was sixteen when my mother gifted me a painting by Ernie Barnes. I’d seen one Barnes painting at that point on the cover of Marvin Gaye’s 1976 album, I Want You, on the brown carpeted floor of my Auntie Sue’s apartment. Then I saw it five days a week for at least a decade during […]
CFP bowl ticket prices have collapsed over the past 2 weeks (Cotton -90%, Rose -69%, Orange -78%, Sugar -11%)Jan 1, 2026
Posted by alpswd - 620 votes and 361 comments
Richard Jefferson: These are the 3 best leaders I played with in the NBADec 18, 2025
Richard Jefferson played with more than 100 teammates in his 17-year NBA career. He explains why three leaders stood out above the rest.
The Biggest Failure in a Century of Sneakers Is Now Complete. It’s Almost Unbelievable How We Got Here.Nov 28, 2025
In 103 years, there’s never been a flameout quite like this.
Why Georgia Tech Sold Its Biennial Georgia Home Game for $10MNov 28, 2025
The 119th edition of the Georgia–Georgia Tech annual rivalry game has turned into a neutral-site matchup, with the Yellow Jackets getting a big payday.
High Schools Walk Legal Tightrope Using Trademarked Pro LogosNov 27, 2025
Hundreds of schools across the country borrow pro and college teams’ marks. Some ask permission. Others take a risk.
College Sports Finances DatabaseNov 25, 2025
Sportico is maintaining an interactive, real-time database that tracks the official balance sheets of public FBS university athletic departments.
Ads in NFL Games are 23 Times More Effective Than All Other TV BuysAug 26, 2025
New research indicates the extent to which NFL advertising dominates other forms of TV programming for marketer returns.
College football program valuations: Ranking every Power 4 team by how much they’d sell forJul 22, 2025
College football programs may not be for sale, but what if they were? Here's our best guess at how much the Power 4 would sell for.
Can UMass sell hope? Why college football’s losingest problem believes it can winMay 14, 2025
Best known for basketball success under John Calipari 30 years ago, UMass has won 26 football games in 13 years in the FBS. Can it change?
Mike Piazza Is Alive and Well and Living in ItalyApr 29, 2025
The candid Mets legend reflects on his Cinderella career and indelible place in the pop-culture pantheon.
Northwestern's Tiny Football Stadium Is Making Big MoneyDec 31, 2024
Despite hosting games in a temporary stadium with 35,000 fewer seats, Northwestern football is bringing in more revenue with premium packages.
Charles Huff, Marshall and a glimpse inside the coaching carousel’s most puzzling splitDec 12, 2024
Huff and Marshall had been heading for a divorce for months, but there were few hard feelings as both coach and program turned the page.
NCAA Finances: Revenue & Expenses by School - USA TODAYDec 7, 2024
Which are the most profitable college athletic programs in the country? See a ranked listed, including total revenue and expenses. Brought to you by USA TODAY.
Inside Florida State’s historic fall from 13-0 to its worst showing in 50 yearsDec 5, 2024
Even a storied program like Florida State is susceptible to the volatile landscape of college football and the sport's new-age war chests.
These Women Were Some of Afghanistan’s Best Athletes. Then They Started Getting Death Threats.Nov 6, 2024
They led a cycling revolution in a country where women were forbidden to ride. When the Taliban returned to power, their only hope was a harrowing escape to an uncertain future.
StubHub vs. Ticketmaster vs. SeatGeek: What’s the Difference?Aug 2, 2024
Tickets are almost entirely bought and sold (and resold) online. What is the difference between Ticketmaster, StubHub, SeatGeek and other brokers?
List of U.S. stadiums by capacityAug 2, 2024
The following is a list of stadiums in the United States. They are ranked by capacity, which is the maximum number of spectators the stadium can normally accommodate. All U.S. stadiums with a current capacity of 10,000 or more are included in the list. The majority of these stadiums are used for American football, either in college football or the NFL. Most of the others are Major League Baseball ballparks or Major League Soccer stadiums.Rows shaded in yellow indicates stadium is home to an NFL, MLB, MLS, or NWSL franchise.
‘I’m good, I promise’: the loneliness of the low-ranking tennis playerJun 27, 2024
The long read: I was once Ireland’s No 1 player, and tried for years to climb the global ranks. But life at the bottom of the top can be brutal
TV Companies Losing Subscribers As Sports Rights Deals Continue to RiseJun 22, 2024
Four major TV provider companies reported collective losses of roughly 1.35 million customers during their first fiscal quarters.
How Cornhole Went ProJun 22, 2024
It might be America’s most-played sport. Now it’s quietly becoming a TV success story.
The Secret Code of Pickup BasketballJun 19, 2024
The game presents a social problem: How does one find comity among a group of jostling strangers?
Thanks to NIL, local car dealers are out of the shadows and landing star coJun 11, 2024
Dealers offer car leases for 12 months in exchange for marketing on athletes' social media accounts.
Sports’ Salient Role in Tackling the Loneliness EpidemicMay 21, 2024
People cannot fix loneliness by themselves, which is where sports and all their beauty come into play.
Sporticast 345: Empty Seats, NFL Sales, Tennis Pay, Other Fun Biz StatsMay 14, 2024
Sports business trivia abounds in this episode. Lev Akabas join the Sporticast sports podcast to talk Oakland A's, soccer valuations, and NFL sales.
UCLA Might Have to Pay $10M a Year to Subsidize Cal AthleticsMay 11, 2024
The UC Board of Regents is considering a proposal for UCLA to begin annual payments of $10 million to subsidize Cal’s athletic department.
The Haves and Have-Nots: How the Knicks’ Celebrity Row WorksMay 11, 2024
A secretive Madison Square Garden committee makes VIP ticket decisions based on their own inscrutable definition of celebrity level.
Paris F.C. Set Tickets To $0. Should Others Do the Same?May 4, 2024
When Paris F.C. made its tickets free, it began an experiment into the connection between fans and teams, and posed a question about the value of big crowds to televised sports.
Dallas high school football coaches on best recruiters, impact of OU, TexasApr 18, 2024
How has Texas A&M's approach changed under Mike Elko? Will Texas' move to the SEC help the Longhorns with in-state prospects?
Alabama, UConn Share Analytical Mindset—And Even Used Same FirmApr 8, 2024
More than half of the NCAA Tournament's top teams have used HD Intelligence services, as basketball's data revolution sweeps through the college game.
Being Caitlin Clark: Inside the world of the player who redefined the gameMar 24, 2024
She overcame trust issues and chartered a yacht. Now Caitlin Clark is ready for March.
The Heartbreak of an English Football TeamMar 24, 2024
The Netflix series “Sunderland ’Til I Die” serves as a thesis both for fandom and for the inevitability of its disappointments.
What You Need to Know About U.S. Sports TV ContractsFeb 19, 2024
The NFL's television contracts account for $12.4 billion, about 43% of all sports TV deals in the U.S.
Lessons from sports psychology researchFeb 10, 2024
Scientists are probing the head games that influence athletic performance, from coaching to coping with pressure
CBS’s Super Bowl Features 165 Camera Feeds. He Watches Them AllFeb 6, 2024
Even as networks cram more tech into their sports production, replay producers still play a critical, human role.
'Then the alligators got him' - Inside Memphis Grizzlies star Ja Morant's 1Oct 20, 2023
After the 2022 All-Star Game, Morant's misconduct became more frequent -- and dangerous. Since then, serious allegations have emerged. Lawsuits and subpoenas remain open. And a 24-year-old superstar's career is on the brink.
Inside Phil Mickelson’s Backdoor Dealings With the Saudis’ LIV Golf SuperleOct 14, 2023
It was inevitable that the golf legend would be wooed away from the PGA Tour, writes Alan Shipnuck in an excerpt from his new book, LIV and Let Die. The question was who’d come along with him. “Everyone,” as one player puts it, “had a number."
The Rise and Fall of ESPN’s LeverageSep 12, 2023
Charting ESPN’s rise, including how it build leverage over the cable TV providers, and its ongoing decline, caused by the Internet.
How Texas’s NIL Law Drives Top High School Athletes Out of StateSep 6, 2023
High school athletes are free to monetize their name, image, and likeness rights in thirty states. Texas ain’t one of ’em.
What happened to Jai Alai? - SBNation.comJul 22, 2023
Once the next big thing in American sports, Jai Alai has all but completely disappeared over the past 20 years. But in Miami, the game is still played for much smaller crowds and stakes.
‘I feel like I’m selling my soul’: inside the crisis at JuventusApr 25, 2023
The long read: A series of financial scandals have rocked Italy’s most glamorous club. But is the trouble at Juventus symptomatic of a deeper rot in world football?
How and where each Premier League team pass — and how they’ve changedMar 31, 2023
From Villa's weirdly disconnected midfield to Forest playing passes near their corner flags, here's what we can learn from analysing passing
‘The first year is the hardest’: How college football coaches get their new teams to buy inMar 27, 2023
Some coaching transitions do the unthinkable, like Sonny Dykes and TCU. Others flounder, like Scott Frost and Nebraska. How, and why?
Vanquishing the Dutch, Jordan Stolz Creates a New Norse Myth - The New YorkMar 6, 2023
Stolz, the 18-year-old from Wisconsin, won three gold medals at the speedskating world championships, finishing his turns in a way that seemed like something out of a storybook.
Meet the Runner Who Leads Every Pack and Then VanishesFeb 26, 2023
Erik Sowinski is a professional pacer, a talented runner who is in high demand on starting lines, and nowhere to be found at the finish.
The Oligarchs’ DerbyFeb 25, 2023
When the top teams in Greece meet, the story lines, and the rivalries, regularly extend far beyond the soccer field.
No coach, no agent, no ego: the incredible story of the ‘Lionel Messi of clFeb 16, 2023
Gary Hunt is an enigma. He trains with the intensity of a modern athlete, but relaxes like a sportsman of a bygone era. He is fiercely competitive but unbelievably laid-back. How did he become the greatest cliff diver of all time?
Joe Montana Was HereFeb 12, 2023
He won four Super Bowls and retired as the undisputed greatest. What came next was turning a legacy into a life.
The Danger Lurking Behind the Premier League’s WealthFeb 4, 2023
Teams that can’t match England’s spending now face a choice: Accept that they can no longer compete for the best talent, or risk everything to try.
VictoryJan 13, 2023
Eleven-year-old Victoria has her sights set on playing Little League with the boys. She goes through tryouts and is told to learn to cook…
How pulling off a ‘potato trick’ ended a baseball player’s careerJan 11, 2023
Dave Bresnahan never made it past AA, but, thanks to a specially prepared potato, he holds a place in baseball lore
Why YouTube spent the money on NFL Sunday TicketDec 27, 2022
YouTube chief product officer Neal Mohan tells us the steaming giant is making a big bet on TVs, where it’s seeing the fastest growth.
What’s Behind the Exploding Prices of Pro Sports Franchises?Dec 8, 2022
Teams were once considered poor, unpredictable investments. Today they’re among the most coveted assets in the world. What changed?
How a five-star prospect from Georgia ended up homeless, ineligible and 2,000 miles awayNov 21, 2022
Junior defensive lineman T.A. Cunningham has turned to the courts after his cross-country move to pursue NIL opportunities went awry.
NCAA StatisticsNov 20, 2022
Why Joe Mazzulla, molded by West Virginia, was destined to become Celtics’ head coachOct 19, 2022
Joe Mazzulla’s path to head coach of the Celtics was 15 years in the making, and it could have been seen coming from Morgantown, West Virginia.
This trumpet-fueled walk-on song is professional baseball's latest crazeOct 8, 2022
"Narco," a dance hit by Australian musician Timmy Trumpet and the Dutch DJ duo Blasterjaxx, is the walk-on music for star relief pitcher Edwin Díaz.
The family that built a ballpark nachos monopolySep 18, 2022
Anytime you order nachos at a sporting event, there’s a good chance they came from a molten-cheese empire in San Antonio, Texas.
Home page | College Athletics DatabaseSep 10, 2022
The game within a game: Secrets of a college football signal stealerAug 14, 2022
Espionage on the sideline and in the coaches' booth is increasing in college football, but does all that effort make a difference on the field?
The Baseball Stadium That "Forever Changed" Professional SportsAug 7, 2022
Camden Yards, which opened 30 years ago this summer, is revered for its design and downtown location. But its influence—along with its lessons—extends beyond architecture.
The Beautiful Life of Vin ScullyAug 5, 2022
The legendary Dodgers broadcaster, who died Tuesday at age 94, was a modern Socrates, only more revered. He was simultaneously a giant and our best friend.
Moneyball for engineers: What the semiconductor industry can learn from sportsJul 18, 2022
R&D leaders can boost productivity by using advanced analytics to create stronger, faster engineering teams.
America’s favorite family outings are increasingly out of reachJul 16, 2022
Taking the kids to a baseball game, a movie, or Disneyland is a bigger financial commitment than it used to be for middle-class families.
West Virginia-Pitt’s renewed Backyard Brawl a reminder of toll realignmentJul 14, 2022
"For your fans, what’s important to them?” said West Virginia athletic director Shane Lyons of scheduling rivals after realignment.
Isolated and in crisis – Russia’s war in Ukraine has damaged football at home tooJul 11, 2022
Football in Russia was booming after the 2018 World Cup - now, thanks to the invasion of Ukraine, it promises to keep on shrinking
Saudi-backed LIV Golf shows how ‘sportswashing’ can backfireJul 4, 2022
Saudi-backed LIV Golf shows how 'sportswashing' can backfire.
Hacker NewsJul 4, 2022
Sponsoring a football club is about more than just advertising, it's a status symbol.
The Barkley Marathons: the hellish 100-mile race with 15 finishers in 36 yearsJul 1, 2022
Participants in the Tennessee race must negotiate extreme temperatures, wild terrain and more than 50,000 feet of accumulated ascent
Why Sports Are a Game-Changer for StreamingJun 25, 2022
Amazon and Apple TV are betting big on live sports streaming, and Netflix may be next.
SeatGeek will calculate how much that ticket is worth | TechCrunchJun 23, 2022
Have you ever bought sweet tickets for a ballgame, a concert or some other live event, only to find out that you couldn't make it? The internet certainly
Erriyon Knighton May Soon Be Faster Than Usain Bolt Ever WasJun 23, 2022
Erriyon Knighton, just out of high school, has already lowered Bolt’s world junior record in the 200 meters. “It’s almost like he’s a pogo stick,” Knighton’s coach said.
How Marshawn Lynch Became an N.F.L. Mentor (Published 2022)Jan 24, 2022
The former Super Bowl champion has always had a way with words. It has turned him into a trusted adviser to N.F.L. and college football players who want to use their “wittys to get up out that siti.”
Consuming Contests: The Effect of Outcome Uncertainty on Spectator Attendance in the Australian Football LeagueJan 16, 2022
Contests that non-contestants consume for entertainment are a fixture of economic, cultural and political life. We exploit injury-induced changes to teams’ line
The Arizona Coyotes and Their Long Journey to NowhereDec 21, 2021
The N.H.L.’s least valuable franchise, and its 26-season headache, won’t have a home as of June 30 after the City of Glendale said it would end their agreement.
Can a Boxer Return to the Ring After Killing?Nov 24, 2021
In 2019, Charles Conwell unintentionally ended Patrick Day’s life with his fists. Now he’s trying to make sense of his life, and boxing itself.
Why ‘Slap Shot’ Captures the 1970s Better Than Any Other Sports MovieNov 21, 2021
Celebrating the greatest hockey movie of all time—and one the best “malaise days” Seventies films ever.
Eliud Kipchoge: Inside the camp, and the mind, of the greatest marathon runner of all timeNov 11, 2021
He’s the greatest marathoner in history, a national hero in Kenya, and an icon for runners around the world. But despite his fame and wealth, Eliud Kipchoge chooses to live the most basic lifestyle. Cathal Dennehy travels to the highlands of Kenya for an inside look at his training camp and to meet a champion with a quiet, complex personality
The Legacy of Colin Kaepernick: On the First High School Team to Take a KneeSep 22, 2021
James A. Garfield High School in Seattle is a place where you can feel the history thrum throughout the hallways. Quincy Jones and Jimi Hendrix were students here. Dr. Martin Luther King Jr. spoke …
The magical day Kobe Bryant became Lord of the Rings at Rucker ParkAug 21, 2021
In 2002, Kobe Bryant's surprise arrival at Harlem's legendary court caused a stir. This is the oral history of what happened when the Lakers great put his streetball cred on the line.
An Oral History of Adam Sandler, Pickup Basketball LegendAug 21, 2021
‘He was just out there drilling long threes in his shades and hitting cutters. It was really incredible.’
Inside Youth Baseball's Most Notorious Dad-On-Dad RivalryMay 29, 2021
On the Long Island Inferno, two fathers, both with complicated pasts took it all too far. Neither man was ever the same.
Lawsuits, secret taping and the unraveling of a powerhouse high school football programMar 30, 2021
Valdosta might be a 24-time state football champ, but lately its program has been rocked by a racial discrimination lawsuit filed by a former coach, the hiring of controversial coach Rush Propst and a secret recording that alleged cheating by SEC powers.
Brackets, Buzzer Beaters and Burning Jockstraps: For Indiana, Hosting March Madness Renews an Epic Tradition of Hoosier HysteriaMar 19, 2021
Indiana is set to host a Big Dance unlike any other, evoking the madness—from buzzer beaters to bourbon-soaked basketball—of the state's fabled high school tournament.
All Personal FeedsFeb 9, 2021
Iga Swiatek of Poland came out of nowhere to win the French Open in October. A sports psychologist was with her all the way.
How To Lose Everything And Get Some Of It BackDec 26, 2020
The wild story behind the NBA's most unlikely heistNov 24, 2019
How did an executive in one of the league's smallest markets steal millions of dollars -- and get away with it for years?
In Kansas, girls didn’t have a wrestling championship of their own. Mya Kretzer changed that.Nov 10, 2019
For many female wrestlers, the toughest challenge is finding opponents.
Honor Thy FatherOct 22, 2019
In suburban Fort Worth the frail psyche of a football prodigy collided with the crazed ambition of his dad, who himself had been a high school football star way back when. The consequences were deadly.
The Modern NBA Dictionary: A Guide to the 2019-20 SeasonOct 20, 2019
From "advanced stats" to "Woj bomb," here are the verbs, adjectives, nouns, and phrases you need to understand basketball in 2019-20
What Makes Someone a Fan?Sep 21, 2019
It’s more than just ticket sales. Rich Luker, a social psychologist, studies fandom and why, for example, someone might get a tattoo of their favorite team.
The Play That Changed Nick SabanSep 3, 2019
Alabama comes into the 2019 season riding a streak of five straight seasons with at least 12 wins. The last time the Tide failed to hit that mark was 2013, when they lost their No...
Free Football Playbooks - FootballXOs.com - NFL, College, High SchoolAug 28, 2019
We have a lot of free football playbooks for you to view, download and enjoy. Use these files to enjoy and understand the game of football better.
Can Bowling Win Over the ‘Lebowski’ Generation?Jul 31, 2019
Fox Sports is certainly betting on it. And it just might have the stars to make it work.
Stan Smith: The Man Who Became A ShoeJul 26, 2019
How Stan Smith went from a "decent" tennis player to the most popular trainer on the planet
Giannis Antetokounmpo Is the Pride of a Greece That Shunned Him (Published 2019)May 4, 2019
As the son of African immigrants, Antetokounmpo was unwelcome in Athens. Then he showed promise as a basketball star.
From the archives: Inside the exclusive team dinners that have built the Spurs' dynastyApr 21, 2019
Over the past 20 years, Gregg Popovich has sliced an exclusive culinary trail across America -- all for a singular purpose. This is the story of his legendary team dinners, and how they have served as a pillar of the Spurs' decadeslong dynasty.
10 Top Sports APIsMar 31, 2019
nfl-football-ops/Big-Data-Bowl: Homepage for the National Football League'sMar 16, 2019
Homepage for the National Football League's Big Data Bowl - nfl-football-ops/Big-Data-Bowl
The Believer — The California Sunday MagazineMar 15, 2019
Why the world was wrong about the "worst Olympian ever."
The Football Route Tree, Explained | STACKMar 6, 2019
A football route tree consists of a single straight line with other lines branching off it, depicting the various possible routes. Here is what a basic football route tree looks like.
The Exile of Rick PitinoMar 6, 2019
In 2017, the Hall of Fame Louisville coach’s career collapsed under a string of scandals, leading to his firing from the school he had coached for 16 years. Now, Pitino is finding himself in Greece, coaching Panathinaikos, working for a self-styled Bond
Well, That Was One Hell of a Ride | By Richard JeffersonJan 16, 2019
Any idiot can get married. Any idiot can be a father. An NBA title? That’s work. That’s worth crying over.
Underrated | By Stephen CurryJan 13, 2019
You didn’t think this was one of those fairytales where the kid gets some pep talk, and everything changes right? It REALLY isn’t that.
How a soccer agent and Chinese billionaire aimed to trade in playersJan 7, 2019
The Portuguese super-agent Jorge Mendes joined forces with investors from Shanghai and planned to cash in on buying and selling athletes, documents show.
Brittney Griner and Diana Taurasi opted to play in Russia both for money anDec 10, 2018
Unlikely comrades Diana Taurasi and Brittney Griner play overseas for the money. As it turns out, they also simplify their lives.
The Woman Who Outruns the Men, 200 Miles at a TimeDec 6, 2018
Courtney Dauwalter specializes in extremely long races. But her success in winning them has opened a debate about how men’s innate strength advantages apply to endurance sports.
The Expectations and Realities of Six-Man Football in Small-Town TexasNov 29, 2018
On the football field, one team went from six to eleven. Another went from eleven to six. And both faced challenges they didn’t expect.
What the Hell Happened to Darius Miles? | By Darius MilesOct 28, 2018
Dudes like me ain’t supposed to talk about this type of stuff. I’m about to tell you some real shit. Things I haven’t told anybody.
He Was a First-Round Draft Pick in the NBA. 14 Years Later, He Was Found DeSep 15, 2018
A long-dormant police investigation gives the case new life.
Losers' Lunch - LongreadsSep 5, 2018
Dining out with courtsiders, a rogue, impish species in the tennis ecosystem.
How a Brutal Mafia Enforcer Became a Deadly Serious MarathonerAug 31, 2018
Discover extraordinary true stories celebrating the diversity of humanity. Click to read Narratively, a Substack publication with tens of thousands of subscribers.
The Left Side of Steve Kerr’s BrainJun 8, 2018
Sammy Gelfand is the numbers guy behind the Golden State Warriors’ success. Some pretty good players help, too.
What the Arlee Warriors Were Playing ForApr 8, 2018
On Montana’s Flathead Indian Reservation, basketball is about much more than winning.
Pretending to Be OkayMar 30, 2018
A profile of UConn basketball coach Geno Auriemma, who has not found peace despite unprecedented success.
Ball BreakersMar 12, 2018
“The reason women-only billiards tournaments exist is not because the players can’t beat men. It’s because they can.”
The End of Season TicketsAug 21, 2017
The great unbundling is upon us, thanks to an aggressive rise in the secondary market. So why do fans still shell out for their annual fees?
Game on PaperSep 24, 2009
Troy Aikman ‘never lost at anything.’ He’s just now starting to enjoy it.Sep 24, 2009
'God's Quarterback' was the archetype American success story, but the triumphs everyone saw masked the inner turmoil no one knew about.
spotify
With Spotify’s Library Plundered, the Door Is Open for Music Preservation, but Also for AI CompaniesDec 22, 2025
Spotify's library was scraped in the name of music preservation, but will this make illegally training AI even easier?
Backing up SpotifyDec 21, 2025
We backed up Spotify (metadata and music files). It’s distributed in bulk torrents (~300TB). It’s the world’s first “preservation archive” for music which is fully open (meaning it can easily be mirrored by anyone with enough disk space), with 86 million music files, representing around 99.6% of listens.
Spotify Playlist Sorter - ChosicSep 5, 2025
Sort your Spotify liked songs/playlists by BPM, genres, moods and more music attributes, organize and manage your playlists however you like!
The Backstage Scaffolder, a Powerful New Orchestration ToolNov 13, 2024
A look at what you can do with this tool as well as some of its limitations in comparison to its rivals.
Spotify API: How To Create a Data Set of SongsMar 19, 2024
A Fun Tutorial using Python, JSON, and Spotify API! You might find it more comfortable...
From Spotify to YouTube: How I Built a Python Script to Convert PlaylistsApr 26, 2023
I developed the script to convert the Spotify playlist to YouTube playlist. I am here to share how I...
Spotify shows how the live audio boom has gone bust - The VergeApr 5, 2023
Spotify Live is getting the ax.
How Spotify's podcast bet went wrongFeb 15, 2023
Inside Spotify's turn away from podcasting, which has triggered a harsh winter for the small studios it helped support as they consolidate and lavish narrative productions wane.
Using Spotify to measure the popularity of older musicJul 18, 2022
I have a theory: No Diggity by Blackstreet is timeless. If Frank Sinatra is timeless in 2015, so too is No Diggity in 2050, fondly remembered by our children's children as the icon of the 90s. And I think that I can prove it.
How Artists Get Paid From StreamingJul 13, 2022
We explain how your money gets from you to a streaming platform, and finally to an artist.
Show your musical taste with data: The best analytics tools for SpotifyJun 23, 2022
Spotify analytics for listeners is how the popular streaming service also captures the hearts of its users. Many websites allow
The economics of SpotifyFeb 8, 2022
Spotify’s recent Joe Rogan controversy has also deepened a rift between the platform and artists over pay.
Machine learning and recommender systems using your own Spotify dataMay 24, 2021
Creating Spotify recommendations with data science
spreadsheets
Google brings machine learning to online spreadsheets with Simple ML for ShDec 9, 2022
Today Google announced a beta release of Simple ML for Sheets, which allows users without ML experience to try ML out on their spreadsheets.
Turn Your Excel Workbook Into A SQLite DatabaseJun 1, 2020
Transforming spreadsheets into queryable database tables
✚ How to Make a Dynamic Multi-population Pyramid in ExcelMar 9, 2020
Create better population pyramids that allow for improved comparisons between sexes and populations.
Keikai BlogMay 22, 2019
A collection of spreadsheet examples for turning Excel to web, editing online and building spreadsheet applications using Keikai.
spycraft
The Greatest Double Agent Ever: How a Spanish Chicken Farmer Became the Most Important Double Agent in WWIIMar 2, 2026
Juan Pujol García was one of the rare individuals whose participation in World War II made him a Member of the Order of the British Empire and earned him the Iron Cross. He gained that unlikely distinction in perhaps the riskiest of all roles in espionage, that of a double agent.
We are all le Carré’s people nowJan 13, 2026
Once again, John le Carré is back. The TV series inspired by his post-Cold War novel, The Night Manager, is returning to our screens on New Year’s Day. There’s an exhibition about his “tradecraft” on
How Did the CIA Lose a Nuclear Device? - SlashdotDec 15, 2025
Sixty years after a team of American and Indian climbers abandoned a plutonium-powered generator on the slopes of Nanda Devi, one of the world's most forbidding Himalayan peaks, the U.S. government still refuses to acknowledge that the mission ever happened. The device, a SNAP-19C portable generator...
A classified satellite network is emitting a mysterious signal : NPROct 17, 2025
An amateur satellite tracker stumbled across the signal which is coming from Starshield satellites in a "hidden" part of the radio spectrum.
In and Out at the FSB: A Window into the Moscow Life of Wirecard's Jan MarsalekSep 24, 2025
German police have been searching for years for Jan Marsalek, who is suspected of having embezzled billions of euros through Wirecard and thought to be working as an agent for the Russian intelligence agency FSB. DER SPIEGEL tracked him down in Moscow.
Opinion | Christo Grozev Is the Man Putin Couldn’t KillJun 2, 2025
Putin had Christo Grozev in his sights. Grozev was way ahead of him.
The Secret History of America’s Involvement in the Ukraine WarMar 30, 2025
This is the untold story of America’s hidden role in Ukrainian military operations against Russia’s invading armies.
A Spy Satellite You’ve Never Heard of Helped Win the Cold WarJan 21, 2025
Engineers at the Naval Research Lab launched a spy satellite program called Parcae and revolutionized signals intelligence at the height of the Cold War. The program relied on computers to sift through intelligence data, providing a technological edge at a pivotal moment in the Cold War.
How to Stage a CoupDec 15, 2024
"I'm now going to offer you a megalomaniac explanation of the course of events"
Discover the CIA’s Simple Sabotage Field Manual: A Timeless Guide to Subverting Any Organization with “Purposeful Stupidity” (1944)Nov 21, 2024
I’ve always admired people who can successfully navigate what I refer to as “Kafka’s Castle,” a term of dread for the many government and corporate agencies that have an inordinate amount of power over our permanent records, and that seem as inscrutable and chillingly absurd as the labyrinth the character K navigates in Kafka’s last allegorical novel.
How to Catch a Lab LeakJul 7, 2024
"Hey boss, I've just managed to kill a whole bunch of people here"
When the C.I.A. Messes UpJun 10, 2024
Its agents are often depicted as malevolent puppet masters—or as bumbling idiots. The truth is even less comforting.
In the Game of Spy vs. Spy, Israel Keeps Getting the Better of IranMay 16, 2024
Repressing dissent, putting innocent people in prison, flubbing operations abroad—Iran just can’t seem to get out of its own way.
Preserve Vital Online Content With Bellingcat's Auto ArchiverMay 9, 2024
Online posts can be taken down by platforms or deleted by those posting them. That's why Bellingcat has created a tool, the Auto Archiver, to help quickly and easily archive online content.
The Sci-Fi Writer Who Invented Conspiracy TheoryMay 5, 2024
It all goes back to one man in the 1950s: a military-intelligence expert in psychological warfare.
The Scientist and the A.I.-Assisted, Remote-Control Killing MachineMay 4, 2024
Israeli agents had wanted to kill Iran’s top nuclear scientist for years. Then they came up with a way to do it with no operatives present.
Did a Female Chinese Super Spy Wreck CIA Ops?May 4, 2024
SpyTalk plumbs Chinese intel history for facts behind David Ignatius's semi-fictional "The Tao of Deception"
High Anxiety - by Henry R. Schlesinger - SpyTalkMay 4, 2024
David Ignatius’ latest thriller is a tour de space force, spies and satellite warfare
The Czech illegals: Husband and wife outed as GRU spies aiding bombings andMay 1, 2024
GRU Unit 29155, Russia’s assassination and sabotage squad, blew up ammunition warehouses in Czechia. It had help from Elena and Nikolai Šapošnikov, a family of deep-cover spies working as arms dealers.
Exclusive | Inside Amazon’s Secret Operation to Gather Intel on RivalsApr 18, 2024
Staff went undercover on Walmart, eBay and other marketplaces as a third-party seller called ‘Big River.’ The mission: to scoop up information on pricing, logistics and other business practices.
Intriguing Vintage Spy Cameras: Covert Wonders of Espionage’s Golden AgeApr 14, 2024
Explore the fascinating world of vintage spy cameras from the Golden Age of Espionage. Discover covert wonders in this intriguing collection.
How to Get Started: Investigating Payment Gateways OnlineMar 29, 2024
Investigating the financial transactions of an organisation can reveal details about its connections and funding. Here's a quick guide on how to do it.
‘Priority target’: The businessman at the top of Australia’s intelligence hMar 27, 2024
The suspect’s identification by intelligence agencies raises big questions for one of Australia’s neighbours and about China’s attempts to wield influence in the Pacific.
A most wanted man: Fugitive Wirecard COO Jan Marsalek exposed as decade-lonMar 11, 2024
Fugitive Wirecard COO Jan Marsalek wasn’t just responsible for Germany’s largest financial fraud in history. He was also a decade-long Russian spy.
From the archive: ‘A chain of stupidity’: the Skripal case and the declineMar 6, 2024
From 2020: The unmasking of the Salisbury poisoning suspects by a new digital journalism outfit was an embarrassment for Putin – and evidence that Russian spies are not what they once were. By Luke Harding
How the Pentagon Learned to Use Targeted Ads to Find Its Targets—and VladimMar 3, 2024
Meet the guy who taught US intelligence agencies how to make the most of the ad tech ecosystem, "the largest information-gathering enterprise ever conceived by man."
How Russian Spies Get Flipped or Expelled, As Told by a SpycatcherFeb 29, 2024
Caught a Russian spy? You may try to flip them, or expel them – an interview with former Hungarian counterintelligence officer Ferenc Katrein
The Spy War: How the C.I.A. Secretly Helps Ukraine Fight PutinFeb 26, 2024
For more than a decade, the United States has nurtured a secret intelligence partnership with Ukraine that is now critical for both countries in countering Russia.
Russia’s shadow tanker fleet runs into troubleFeb 12, 2024
Every day, millions of barrels of oil are being transported by ships with obscured ownership and origin. But is the game up?
How a Group of Israel-Linked Hackers Has Pushed the Limits of CyberwarJan 27, 2024
From repeatedly crippling thousands of gas stations to setting a steel mill on fire, Predatory Sparrow’s offensive hacking has now targeted Iranians with some of history's most aggressive cyberattacks.
In a Mutiny or Coup, the Scramble to Persuade and Pick a Side Is CriticalJul 1, 2023
Experts say plotters’ most crucial task is to convince other soldiers and officers that success is assured. Plus, our columnist’s recommendations for reading up on coups, and modern Russia.
A Tiny Blog Took on Big Surveillance in China—and WonJun 7, 2023
Digging through manuals for security cameras, a group of gearheads found sinister details and ignited a new battle in the US-China tech war.
The Untold Story of the Boldest Supply-Chain Hack EverMay 6, 2023
The attackers were in thousands of corporate and government networks. They might still be there now. Behind the scenes of the SolarWinds investigation.
The HackerApr 21, 2023
Runa Sandvik has made it her life’s work to protect journalists against cyberattacks. Authoritarian regimes are keeping her in business.
The Daring Ruse That Exposed China’s Campaign to Steal American SecretsMar 8, 2023
How the downfall of one intelligence agent revealed the astonishing depth of Chinese industrial espionage.
Secretive military space agency stepping out of the shadows - SpaceNewsFeb 23, 2023
When a SpaceX Falcon Heavy launched a national security mission to geostationary Earth orbit Jan. 15, the Space Force revealed that three of the payloads onboard were developed by one of its most s…
Investigating the Nord Stream Pipeline SabotageDec 27, 2022
As investigators piece together clues, Russia has quietly taken steps to begin expensive repairs on the giant gas pipeline, complicating theories about who was behind September’s sabotage.
Finding Rundo (Again): US White Supremacist Facing Criminal Charges LocatedNov 29, 2022
A far-right extremist wanted to advertise his clothing brand. Instead he’s given us an unintended lesson on the power of open source research methods.
Socialite, Widow, Jeweller, Spy: How a GRU Agent Charmed Her Way Into NATOAug 27, 2022
A Russian spy with an unconventional Peruvian backstory, and a chaotic private life, managed to befriend and engage numerous staff and officers at a NATO base in Italy, a Bellingcat investigation has found.
Need to know: The rarified world of the government’s most closely guarded secretsAug 14, 2022
Former President Donald Trump’s stockpile of allegedly classified documents puts a system for hiding information in the spotlight.
Hacker NewsJul 5, 2022
Blocked persons and letters of marqueJul 5, 2022
What are letters of marque and reprisal, and who is on the US’s list of Block Persons?
The ghostly radio station that no one claims to runJun 22, 2022
“MDZhB” has been broadcasting since 1982. No one knows why.
The Brazilian Candidate: The Studious Cover Identity of an Alleged RussianJun 16, 2022
An alleged GRU spy who sought access to the International Criminal Court as an intern left a long and detailed trail on social media.
The Project Gutenberg eBook of Simple Sabotage Field Manual, by Office of Strategic ServicesJun 13, 2022
How a Saxophonist Tricked the KGB by Encrypting Secrets in MusicJun 11, 2022
Using a custom encryption scheme within music notation, Merryl Goldberg and three other US musicians slipped information to Soviet performers and activists known as the Phantom Orchestra.
The Battle for the World’s Most Powerful CyberweaponJan 29, 2022
A Times investigation reveals how Israel reaped diplomatic gains around the world from NSO’s Pegasus spyware — a tool America itself purchased but is now trying to ban.
Read the CIA’s Simple Sabotage Field Manual: A Timeless Guide to SubvertingJan 21, 2022
I’ve always admired people who can successfully navigate what I refer to as “Kafka’s Castle,” a term of dread for the many government and corporate agencies that have an inordinate amount of power over our permanent records, and that seem as inscrutable and chillingly absurd as the labyrinth the character K navigates in Kafka’s last allegorical novel.
Useful Spy BooksSep 16, 2021
The Motherboard Guide to SteganographyJul 7, 2021
A trip through the intentionally unseeable World of Hiding Data in Imagery
The Havana JobMay 31, 2021
This is the previously classified story of a Hail Mary plan, a Dirty Dozen crew of lowlifes, and a woman who wouldn’t bow to authority as she fought to bring three captured CIA agents home from Cuba.
Exclusive: Inside the Military's Secret Undercover ArmyMay 22, 2021
Thousands of soldiers, civilians and contractors operate under false names, on the ground and in cyberspace. A Newsweek investigation of the ever-growing and unregulated world of "signature reduction."
Unsure When a Video or Photo was Taken? How to Tell by Measuring the LengthMay 18, 2021
Establishing the time of day that a video or image was taken can be a difficult and frustrating task for open source researchers. But measuring the length of shadows can help provide a solution.
'He knew something': The Bay Area flight of Rangers that vanishedMay 12, 2021
The mission, still a secret to this day, was so dangerous many men bid emotional goodbyes...
‘I’d Never Been Involved in Anything as Secret as This’May 7, 2021
The plan to kill Osama bin Laden—from the spycraft to the assault to its bizarre political backdrop—as told by the people in the room.
The Rise and Fall of a Double Agent | The WalrusApr 26, 2021
Cameron Ortis was an RCMP officer privy to the inner workings of Canada's national security—and in a prime position to exploit them
The Spy of Night and Fog (2020)Mar 26, 2021
Noor Khan, a pacifist descendant of Indian Royalty became a famed World War II spy for Britain’s Special Operations Executive.
The Once-Classified Tale of Juanita Moody: The Woman Who Helped Avert a Nuclear WarFeb 28, 2021
America’s bold response to the Soviet Union depended on an unknown spy agency operative whose story can at last be told
How Bellingcat uncovered Russia’s secret network of assassinsFeb 14, 2021
From Sergei Skripal to Alexei Navalny, Russia’s attempts to silence its enemies have been forensically exposed. At the centre of these revelations has been investigative unit Bellingcat
Lunik: Inside the CIA’s audacious plot to steal a Soviet satelliteJan 29, 2021
How a team of spies in Mexico got their hands on Russia's space secrets—and tried to change the course of the Cold War.
Perspective | My two weeks with John le Carré: What I learned about writing, fame and grace when I showed him around Miami in 1991.Jan 6, 2021
He wanted to learn about the Miami drug world and had been told I could help.
GhidraDec 25, 2020
"If it Hadn't Been for the Prompt Work of the Medics": FSB Officer Inadvertently Confesses Murder Plot to Navalny - bellingcatDec 21, 2020
Bellingcat and its partners reported that Russia’s Federal Security Service (FSB) was implicated in the near-fatal nerve-agent poisoning of Alexey Navalny on 20 August 2020. The report identified eight clandestine operatives with medical and chemical/biological warfare expertise working under the guise of the FSB’s Criminalistics Institute who had tailed Alexey Navalny on more than 30 […]
Meet the CIA’s InsectothopterFeb 19, 2020
Sadly, the 1-gram spy craft couldn’t withstand a gentle breeze, but later dragonfly-inspired UAVs proved far more capable
How To Spot A Spook - John MarksJan 12, 2020
Inside North Korea’s Hacker ArmyDec 15, 2019
The regime in Pyongyang has sent hundreds of programmers to other countries. Their mission: Make money by any means necessary. Here's what their lives are like.
To Catch A Bomb-MakerOct 26, 2019
This is the story of a little-known FBI forensics lab and how it changed the war on terror.
Inside Olympic Destroyer, the Most Deceptive Hack in HistoryOct 22, 2019
The untold story of how digital detectives unraveled the mystery of Olympic Destroyer—and why the next big cyberattack will be even harder to crack.
What the U.S. Can Learn From Iranian WarfareOct 19, 2019
The Iranian approach to proxy warfare offers a surprising lesson.
A Beginner’s Guide To Flight TrackingOct 15, 2019
Translations:English (UK)EspañolFlight tracking is an accessible and useful tool for open source investigators. Being able to track the movements of aircraft belonging to powerful individuals and armed forces can add important details to stories, or even uncover entire new narratives. There are several commercial and hobby websites that allow us to do just that. The […]
These Elite Chemical Weapons Detectives Can Prove Who’s Behind Deadly AttacSep 5, 2019
Dictators and assassins are using banned nerve agents again.
The Secret History of the Push to Strike IranSep 4, 2019
Hawks in Israel and America have spent more than a decade agitating for war against the Islamic Republic’s nuclear program. Will Trump finally deliver?
To Catch a Counterfeiter — The California Sunday MagazineAug 6, 2019
Nearly all the world’s counterfeits come from China. Pinkerton is on the case.
GRU Globetrotters 2: The Spies Who Loved SwitzerlandJul 13, 2019
Translations:English (UK)Русский (Россия)In the first part of this “GRU Globetrotters” series, Bellingcat and its investigative partner The Insider teamed up with BBC Newsnight to trace the London movements and potential role of Russian GRU officer Denis Sergeev during the time that the Skripals were poisoned in Salisbury. The research was made possible thanks to telephone […]
Sky HISTORY TV ChannelJun 9, 2019
Find out more about the shows on Sky HISTORY's TV channel, with plenty to read and watch on your favourite historical topics.
The Wealth Detective Who Finds the Hidden Money of the Super Rich - BloombeMay 24, 2019
Thirty-two-year-old French economist Gabriel Zucman scours spreadsheets to find secret offshore accounts.
During the Cold War, the CIA Secretly Plucked a Soviet Submarine From the Ocean Floor Using a Giant ClawMay 12, 2019
The International Spy Museum details the audacious plan that involved a reclusive billionaire, a 618-foot-long ship, and a great deal of stealth
The Spy Who Drove MeAug 15, 2018
Last week, as America’s top national security experts convened in Aspen, a strangely inquisitive Uber driver showed up, too.
The Amazing Story of the Russian Defector Who Changed his MindFeb 24, 2018
The home phone of FBI special agent Michael Rochford rang in the middle of the night on August 2, 1985. He grabbed it and heard the voice of his FBI supervisor. “There’s a plane coming in, a high-level defector.” The day before, a Soviet man had walked into the US consulate in Rome. He had
The CIA Sent Him Deep Undercover to Spy on Islamic Radicals. It Cost Him EverythingSep 24, 2016
How one man infiltrated Al Qaeda and the broader jihadist world — and how his double life likely led to PTSD, depression, and ultimately his death.
sql
A JavaScript developer's guide to Rails: What is Polymorphic Rails Model?Feb 11, 2026
Learn how Rails polymorphic associations work under the hood, from database schema to model setup, with clear examples for JavaScript developers new to ActiveRecord.
How Google Ads Was Able to Support 4.77 Billion Users With a SQL Database 🔥Nov 10, 2024
#60: Break Into Google Spanner Architecture (5 Minutes)
Difference between WHERE vs HAVING Clause in SQLApr 21, 2024
While both WHERE and HAVING are used for filtering rows, condition in WHERE clause is applied before grouping of data and condition on HAVING is applied after grouping
Using window functions for advanced data analysisApr 15, 2024
Window functions are an advanced feature of SQL that provides powerful tools for detailed data analysis and manipulation without grouping data into single output rows, which is common in aggregate functions.
Happy New Year: GPT in 500 lines of SQLMar 5, 2024
A complete GPT2 implementation as a single SQL query in PostgreSQL.
SQL for Data Scientists in 100 QueriesFeb 15, 2024
New talk: Making Hard Things EasyOct 8, 2023
Resetting MySQL Root Password in Ubuntu: A Step-by-Step GuideJul 26, 2023
Introduction: Losing or forgetting the MySQL root password can be a stressful situation, but don't...
Joins 13 WaysJul 23, 2023
Meet LMQL: An Open Source Query Language for LLMsJul 23, 2023
Developed by ETH Zürich, the language explores new paradigms for LLM programming.
How to Start Using psql in Terminal (for Beginners)Jun 18, 2023
Intro Hello guys! Today I try to write about how to start using psql in Terminal app,...
Built-In Scalar SQL FunctionsApr 14, 2023
Cycle Detection for Recursive Search in Hierarchical Trees - Database TipApr 5, 2023
Recursive queries are a straightforward solution to querying hierarchical trees. However, one loop in the relationship references results in a failing or never ending query when cycle detection is not used.
3 Essential SQL Optimization TechniquesApr 5, 2023
Simple hacks to try before moving to a different data model altogether
SQL users: Halve the length of (some of) your queries with this one trickMar 30, 2023
The QUALIFY clause is pure syntactic sugar
Essential SQL Commands For Data ScienceMar 12, 2023
Data is naturally at the heart of the job of a data scientist or data analyst. You can get your...
INTRODUCTION TO SQL FOR DATA SCIENCEFeb 19, 2023
SQL (Structured Query Language) is a programming language used to manage and manipulate relational...
10 Essential SQL Commands for Data ScienceOct 20, 2022
Learn SQL commands for filtering, string operations, alias, joining tables, if-else statements, and grouping.
Wesley Aptekar-Cassels | Consider SQLiteApr 29, 2022
How To Create a SQL Practice Database with PythonMar 26, 2022
Finally, start practicing SQL with your own database
The Not-so-Sexy SQL Concepts to Make You Stand OutFeb 8, 2022
Databases are the houses of our data and data scientists HAVE TO HAVE A KEY! In this article, I discuss some lesser known concepts of SQL that data scientists do not familiarize themselves with.
6 Lesser-Known SQL Techniques to Save You 100 Hours a MonthJan 15, 2022
Use these simple techniques to make your analysis and data extracts easier
How to Use the SQL GROUP BY Clause and Aggregate FunctionsDec 26, 2021
Bringing it back to the basics
Creating Conditional Statements in SQL QueriesDec 7, 2021
A Quick Guide to the IF, CASE, and IFNULL Statements
SQL Basics Cheat SheetNov 26, 2021
This 2-page SQL Basics Cheat Sheet will be a great value for beginners as well as for professionals. Download it in PDF or PNG format.
How to build a search engine with Ruby on RailsOct 1, 2021
Implementing search in your Rails app can be vexing. Here's a great pattern to use that combines the best parts of ActiveRecord and Postgres.
Inserting One Billion Rows in SQLite Under a MinuteJul 18, 2021
This is a chronicle of my experiment where I set out to insert 1B rows in SQLite
Advanced SQL operationsJun 26, 2021
Reviewing more advanced SQL operations to extract additional data insights from the Irish Weather dataset.
Ask HN: What is the SQLite of nosql databases?Jun 13, 2021
3 Must-Know SQL Functions For Efficient Data AnalysisJun 5, 2021
SQL is a programming language used by relational database management systems. It provides numerous functions and methods that operate on the data stored in relational databases. SQL is not just a…
The NoSQL Know-It-All Compendium - KDnuggetsMay 18, 2021
Are you a NoSQL beginner, but want to become a NoSQL Know-It-All? Well, this is the place for you. Get up to speed on NoSQL technologies from a beginner's point of view, with this collection of related progressive posts on the subject. NoSQL? No problem!
Tricks for Advanced SQL QueryingMay 12, 2021
One of the most valuable technical skills I use working on a data science team in the retail space is SQL…
A Hitchhiker's Guide to SQLite with PythonMay 5, 2021
To explore SQLite along with Python, which is a user-friendly and no-nonsense language, we are going...
How to Use SQL RANK and DENSE_RANK FunctionsApr 25, 2021
If you’ve been practicing your SQL religiously, like I suggested in Top Skills to Ace Every SQL Interview Question, then you’ve probably…
SQLite is not a toy database | Anton ZhiyanovMar 26, 2021
Here is why SQLite is a perfect tool for you - whether you are a developer, data analyst, or geek.
The Last SQL Guide for Data Analysis You'll Ever Need - KDnuggetsMar 25, 2021
The last SQL guide for data analysis you'll need! OK, maybe it’s actually the first, but it’ll give you a solid head start.
Beginner’s Guide to Querying Data Using SQL on GPUs in PythonMar 15, 2021
Historically speaking, processing large amounts of structured data has been the domain of relational databases. Databases, consisting of tables that can be joined together or aggregated…
4 Advanced SQL Features You Haven’t Used EnoughNov 3, 2020
From the power of hierarchical queries to that of procedural constructs in SQL
SQL JoinsJul 21, 2020
521 votes, 27 comments. 411K subscribers in the computerscience community. The hot spot for CS on reddit.
MongoDB Vs SQLMay 19, 2020
MongoDB and SQL databases are two polar opposite sides of the backend world. The former deals with chaotic unstructured data, while the…
Learning SQL the Hard Way - MLWhizMay 15, 2020
This post is about installing SQL, explaining SQL and running SQL.
SQL Query Cheatsheet for PostgresApr 19, 2020
The SQL queries I use as a data scientist and software engineer
6 SQL Tricks Every Data Scientist Should KnowApr 19, 2020
Mysql 5.7.29 installation on Ubuntu Linux 18.04 LTS - Stack OverflowMar 23, 2020
I'm re-installing MySQL (5.7.29) for Ubuntu Linux 18.04 LTS. I installed the package using apt & started the service without issue. I was not asked for a root password during the install and am...
Doing a SQL join with CSV files with xsvFeb 19, 2020
How to combine data spread over two CSV files, like separate tables in a normalized relational database.
Working with the SQL Server command line (sqlcmd)Apr 15, 2019
In this new chapter, we are going to show the following examples in a local SQL Server using SQL Server command line (sqlcmd).
mssql-cli/usage_guide.md at master · dbcli/mssql-cliApr 15, 2019
A command-line client for SQL Server with auto-completion and syntax highlighting - dbcli/mssql-cli
sqlite
Import a CSV File Into an SQLite TableFeb 22, 2025
This tutorial shows you various ways to import CSV data into an SQLite table using sqlite3 and SQLite Studio tools.
sqlite-s3vfsFeb 7, 2025
Neat open source project on the GitHub organisation for the UK government's Department for Business and Trade: a "Python virtual filesystem for SQLite to read from and write to S3." …
Supercharge SQLite with Ruby FunctionsJan 27, 2025
An interesting twist in my recent usage of SQLite was the fact that I noticed my research scripts and the database intertwine more. SQLite is unique in that it really lives in-process, unlike standalone database servers. There is a feature to that which does not get used very frequently, but can be indispensable in some situations. By the way, the talk about the system that made me me to explore SQLite in anger can now be seen here. Normally it is your Ruby (or Python, or Go, or whatever) program which calls SQLite to make it “do stuff”. Most calls will be mapped to a native call like sqlite3_exec() which will do “SQLite things” and return you a result, converted into data structures accessible to your runtime. But there is another possible direction here - SQLite can actually call your code instead.
Collection of insane and fun facts about SQLite - blagDec 31, 2024
Some of the interesting and insane facts I learned about SQLite
sqlite-vec v0.1.0 Released: Portable Vector Database Extension for SQLite wAug 4, 2024
Alex Garcia announced the much-anticipated release of sqlite-vec v0.1.0. This new SQLite extension, written entirely in C, introduces a powerful vector search capability to the SQLite database system. Released under the MIT/Apache-2.0 dual license, sqlite-vec aims to be a versatile and accessible tool for developers across various platforms and environments. Overview of sqlite-vec The sqlite-vec extension enables vector search functionality within SQLite by allowing the creation of virtual tables with vector columns. Users can insert data using standard SQL commands and perform vector searches using SELECT statements. This integration means that vector data can be stored and queried within the
A Guide to Working with SQLite Databases in PythonMay 22, 2024
Get started with SQLite databases in Python using the built-in sqlite3 module.
Why SQLite Uses BytecodeApr 30, 2024
SQLite on Rails: The how and why of optimal performanceApr 23, 2024
This is my personal site, where I write about Ruby, programming, and any of my varied fascinations.
How (and why) to run SQLite in production: RubyConf Taiwan 2023Mar 27, 2024
This is my personal site, where I write about Ruby, programming, and any of my varied fascinations.
S3 is files, but not a filesystemMar 10, 2024
"Deep" modules, mismatched interfaces - and why SAP is so painful
Built-In Scalar SQL FunctionsApr 14, 2023
0x6b/libgsqliteMar 21, 2023
A SQLite extension which loads a Google Sheet as a virtual table. - 0x6b/libgsqlite
openai-to-sqlite - a tool for DatasetteFeb 9, 2023
Quirks, Caveats, and Gotchas In SQLiteOct 20, 2022
Scraping JSON, HTML, and ZIP Files with Pure SQLiteOct 4, 2022
a.k.a. leave BeautifulSoup in the past and embrace SQL I used DALL·E to generate thumbnails for this post: “cute cartoon|claymation abominable snowman scraping ice off his frozen car windshield” is nightmare fuel Some of the most common web-scraping tasks can be done in pure SQLite - meaning no Python, Node, Ruby, or other programming languages necessary, only the SQLite CLI and some extensions. The main extension that enables this: sqlite-http, which allows you to make HTTP requests and sa
SQLite Internals: Pages & B-treesJul 30, 2022
Let's open a hex editor and see what this thing is made of
One-liner for running queries against CSV files with SQLite | Simon WillisoJun 23, 2022
I figured out how to run a SQL query directly against a CSV file using the sqlite3 command-line utility:
SQLite3 FiddleMay 26, 2022
Wesley Aptekar-Cassels | Consider SQLiteApr 29, 2022
jmoiron/sqlx: general purpose extensions to golang's database/sqlApr 9, 2022
general purpose extensions to golang's database/sql - jmoiron/sqlx
Hosting SQLite databases on Github Pages - (or any static file hoster) - phJul 31, 2021
I was writing a tiny website to display statistics of how much sponsored content a Youtube creator has over time when I noticed that I often write a small tool as a website that queries some data from a database and then displays it in a graph, a table, or similar. But if you want to use a
Inserting One Billion Rows in SQLite Under a MinuteJul 18, 2021
This is a chronicle of my experiment where I set out to insert 1B rows in SQLite
Ask HN: What is the SQLite of nosql databases?Jun 13, 2021
Tricks for Advanced SQL QueryingMay 12, 2021
One of the most valuable technical skills I use working on a data science team in the retail space is SQL…
A Hitchhiker's Guide to SQLite with PythonMay 5, 2021
To explore SQLite along with Python, which is a user-friendly and no-nonsense language, we are going...
SQLite is not a toy database | Anton ZhiyanovMar 26, 2021
Here is why SQLite is a perfect tool for you - whether you are a developer, data analyst, or geek.
Python Pandas and SQLiteNov 3, 2020
Using SQLite to store your Pandas dataframes gives you a persistent store and a way of easily selecting and filtering your data
Turn Your Excel Workbook Into A SQLite DatabaseJun 1, 2020
Transforming spreadsheets into queryable database tables
sram
Impact Of On-Chip SRAM Size And Frequency On Energy Efficiency And Performance of LLM Inference (Uppsala Univ.)Jan 4, 2026
A new technical paper titled “Prefill vs. Decode Bottlenecks: SRAM-Frequency Tradeoffs and the Memory-Bandwidth Ceiling” was published by researchers at Uppsala University. Abstract “Energy consumption dictates the cost and environmental impact of deploying Large Language Models. This paper investigates the impact of on-chip SRAM size and operating frequency on the energy efficiency and performance of... » read more
The Competitive Advantage of SRAM PUF TechnologyOct 9, 2025
Discover SRAM PUF’s security benefits and how Synopsys combines it with OTP memory for advanced, secure key storage in embedded systems.
Characterizing and Optimizing Realistic Workloads on a Commercial...Oct 4, 2025
Compute-in-SRAM architectures offer a promising approach to achieving higher performance and energy efficiency across a range of data-intensive applications. However, prior evaluations have largely relied on simulators or small prototypes, limiting the understanding of their real-world potential. In this work, we present a comprehensive performance and energy characterization of a commercial compute-in-SRAM device, the GSI APU, under realistic workloads. We compare the GSI APU against established architectures, including CPUs and GPUs, to quantify its energy efficiency and performance potential. We introduce an analytical framework for general-purpose compute-in-SRAM devices that reveals fundamental optimization principles by modeling performance trade-offs, thereby guiding program optimizations.
Exploiting the fine-grained parallelism of tightly integrated memory-compute architectures requires careful data management. We address this by proposing three optimizations: communication-aware reduction mapping, coalesced DMA, and broadcast-friendly data layouts. When applied to retrieval-augmented generation (RAG) over large corpora (10GB--200GB), these optimizations enable our compute-in-SRAM system to accelerate retrieval by 4.8$\times$--6.6$\times$ over an optimized CPU baseline, improving end-to-end RAG latency by 1.1$\times$--1.8$\times$. The shared off-chip memory bandwidth is modeled using a simulated HBM, while all other components are measured on the real compute-in-SRAM device. Critically, this system matches the performance of an NVIDIA A6000 GPU for RAG while being significantly more energy-efficient (54.4$\times$-117.9$\times$ reduction). These findings validate the viability of compute-in-SRAM for complex, real-world applications and provide guidance for advancing the technology.
LIDAR, optical distance & time of flight sensors | ams OSRAMSep 22, 2025
Fully integrated dToF modules and iToF VCSEL illuminators for short range applications. Laser sources for long range LIDAR systems.
Tensordyne Claims 8x AI Efficiency Boost Over NVIDIA Using Logarithmic MathSep 8, 2025
The idea isn't novel, but presents major challenges. Tensordyne thinks it has solved them, and promises massive speed and efficiency gains as a result.
Energy-Efficient Signal Detectors For Massive MIMO Using SRAM-Based IMCsAug 15, 2025
A new technical paper titled “Energy-Accuracy Trade-Offs in Massive MIMO Signal Detection Using SRAM-Based In-Memory Computing” was published by researchers at the University of Illinois at Urbana–Champaign. Abstract “This paper investigates the use of SRAM-based in-memory computing (IMC) architectures for designing energy efficient and accurate signal detectors for massive multi-input multi-output (MIMO) systems. SRAM-based IMCs... » read more
X-pSRAM: A Photonic SRAM with Embedded XOR Logic for Ultra-Fast...Jul 28, 2025
Traditional von Neumann architectures suffer from fundamental bottlenecks due to continuous data movement between memory and processing units, a challenge that worsens with technology scaling as electrical interconnect delays become more significant. These limitations impede the performance and energy efficiency required for modern data-intensive applications. In contrast, photonic in-memory computing presents a promising alternative by harnessing the advantages of light, enabling ultra-fast data propagation without length-dependent impedance, thereby significantly reducing computational latency and energy consumption. This work proposes a novel differential photonic static random access memory (pSRAM) bitcell that facilitates electro-optic data storage while enabling ultra-fast in-memory Boolean XOR computation. By employing cross-coupled microring resonators and differential photodiodes, the XOR-augmented pSRAM (X-pSRAM) bitcell achieves at least 10 GHz read, write, and compute operations entirely in the optical domain. Additionally, wavelength-division multiplexing (WDM) enables n-bit XOR computation in a single-shot operation, supporting massively parallel processing and enhanced computational efficiency. Validated on GlobalFoundries' 45SPCLO node, the X-pSRAM consumed 13.2 fJ energy per bit for XOR computation, representing a significant advancement toward next-generation optical computing with applications in cryptography, hyperdimensional computing, and neural networks.
SRAM Has No Chill: Exploiting Power Domain Separation to Steal On-Chip Secrets – Communications of the ACMJul 26, 2025
Demystifying GPUs: From Core Architecture to Scalable SystemsJul 20, 2025
Table of Contents Motivation Optimization goal of GPUs Key concepts of GPUs - software and...
First-Time Silicon Success PlummetsMar 27, 2025
Number of designs that are late increases. Rapidly rising complexity is the leading cause, but tools, training, and workflows need to improve.
Intel, Synopsys, TSMC All Unveil Record Memory DensitiesMar 3, 2025
The move to nanosheet transistors is a boon for SRAM
AMD Reveals Real Reason It Won't Put 3D V-Cache On Multiple CCDsJan 8, 2025
After persistent rumors refused to recede, AMD steps in with a clear explanation why dual-CCD V-Cache doesn't exist.
Why AI language models choke on too much textDec 22, 2024
Compute costs scale with the square of the input size. That’s not great.
AMD Ryzen 7 9800X3D Uses A Thick Dummy Silicon That Comprises 93% Of The CCD Stack And Has No Performance PurposeDec 21, 2024
The CCD stack with 3D V-Cache on the AMD Ryzen 7 9800X3D is only 40-45µm in total, but the rest of the layers add up to a whopping 750µm.
Slim-Llama: An Energy-Efficient LLM ASIC Processor Supporting 3-Billion Parameters at Just 4.69mWDec 21, 2024
Large Language Models (LLMs) have become a cornerstone of artificial intelligence, driving advancements in natural language processing and decision-making tasks. However, their extensive power demands, resulting from high computational overhead and frequent external memory access, significantly hinder their scalability and deployment, especially in energy-constrained environments such as edge devices. This escalates the cost of operation while also limiting accessibility to these LLMs, which therefore calls for energy-efficient approaches designed to handle billion-parameter models. Current approaches to reduce the computational and memory needs of LLMs are based either on general-purpose processors or on GPUs, with a combination of weight quantization and
TSMC Lifts the Curtain on Nanosheet TransistorsDec 15, 2024
And Intel shows how far these devices could go
Is In-Memory Compute Still Alive?Dec 12, 2024
It hasn’t achieved commercial success, but there is still plenty of development happening; analog IMC is getting a second chance.
eugeneyan/llm-paper-notes: Notes from the Latent Space paper club. Follow along or start your own!Nov 26, 2024
Notes from the Latent Space paper club. Follow along or start your own! - eugeneyan/llm-paper-notes
Predictive PDK (ASAP) – ASU EngineeringNov 25, 2024
Gate-All-Around (GAA): The Ultimate Solution to Reduce Leakage - EE TimesOct 25, 2024
As awareness of environmental, social, and governance (ESG) issues grows, companies are adopting strategies for sustainable operations.
Surveying the Landscape of Smartphone ProcessorsAug 2, 2024
There are many chip partitioning and placement tradeoffs when comparing top-tier smartphone processor designs.
FlashAttention-3: Fast and Accurate Attention with Asynchrony and Low-preciJul 14, 2024
Attention, as a core layer of the ubiquitous Transformer architecture, is a bottleneck for large language models and long-context applications. FlashAttention (and FlashAttention-2) pioneered an approach to speed up attention on GPUs by minimizing memory reads/writes, and is now used by most libraries to accelerate Transformer training and inference. This has contributed to a massive increase in LLM context length in the last two years, from 2-4K (GPT-3, OPT) to 128K (GPT-4), or even 1M (Llama 3). However, despite its success, FlashAttention has yet to take advantage of new capabilities in modern hardware, with FlashAttention-2 achieving only 35% utilization of theoretical max FLOPs on the H100 GPU. In this blogpost, we describe three main techniques to speed up attention on Hopper GPUs: exploiting asynchrony of the Tensor Cores and TMA to (1) overlap overall computation and data movement via warp-specialization and (2) interleave block-wise matmul and softmax operations, and (3) incoherent processing that leverages hardware support for FP8 low-precision.
Addressing Quantum Computing Threats With SRAM PUFsJun 8, 2024
The impact of quantum algorithms on different cryptographic techniques and what can be done about it.
How to Put a Data Center in a ShoeboxMay 16, 2024
Imec’s plan to use superconductors to shrink computers
SRAM Security Concerns GrowMay 10, 2024
Volatile memory threat increases as chips are disaggregated into chiplets, making it easier to isolate memory and slow data degradation.
ASAP5: A predictive PDK for the 5 nm nodeFeb 24, 2024
We present a predictive process design kit (PDK) for the 5 nm technology node, the ASAP5 PDK. ASAP5 is not related to a particular foundry and the ass…
Grokking Groq’s GroqnessFeb 22, 2024
Startup Groq has developed an machine learning processor that it claims blows GPUs away in large language model workloads – 10x faster than an Nvidia GPU at 10 percent of the cost, and needing a tenth of the electricity. Update: Groq model compilation time and time from access to getting it up and running clarified. […]
Groq Inference Tokenomics: Speed, But At What Cost?Feb 22, 2024
Faster than Nvidia? Dissecting the economics
Downfall AttacksAug 9, 2023
Downfall attacks targets a critical weakness found in billions of modern processors used in personal and cloud computers.
Atomera Plans to Breathe New Life into Older Chip ManufacturingJul 28, 2023
Atom-thin layers of oxygen in a chip’s silicon can make devices speedier and more reliable
ELI5: FlashAttentionJul 24, 2023
Step by step explanation of how one of the most important MLSys breakthroughs work — in gory detail.
Comparing Analog and Digital SRAM In-Memory Computing Architectures (KU LeuJul 24, 2023
A technical paper titled “Benchmarking and modeling of analog and digital SRAM in-memory computing architectures” was published by researchers at KU Leuven. Abstract: “In-memory-computing is emerging as an efficient hardware paradigm for deep neural network accelerators at the edge, enabling to break the memory wall and exploit massive computational parallelism. Two design models have surged:... » read more
The Secret Sauce behind 100K context window in LLMs: all tricks in one placJul 23, 2023
tldr; techniques to speed up training and inference of LLMs to use large context window up to 100K input tokens during training and…
AMD’s RX 7600: Small RDNA 3 AppearsJun 5, 2023
Editor’s Note (6/14/2023): We have a new article that reevaluates the cache latency of Navi 31, so please refer to that article for some new latency data.
The Ultimate Guide for Optimal SoC FloorplanJun 2, 2023
Floorplanning plays a crucial role in the physical design of an SoC and lays the foundation for an efficient and high-performance ASIC layout. In this article, we will discuss ten essential floorplanning commandments that physical design engineers can follow to ensure a correct-by-construction design. Design Partitioning Design Partitioning refers to dividing a large
Memory Roundup: Ultra-low-power SRAM, ULTRARAM, & 3D Flash Hit the SceneApr 25, 2023
New memory technologies have emerged to push the boundaries of conventional computer storage.
Growth of 300mm fab capacity picks up pace again - Bits&ChipsApr 5, 2023
After dipping this year, the growth of 300mm semiconductor manufacturing capacity is set to gain momentum.
Why AI Inference Will Remain Largely On The CPUApr 5, 2023
Sponsored Feature: Training an AI model takes an enormous amount of compute capacity coupled with high bandwidth memory. Because the model training can be
Taking a look at the ReRAM state of playMar 16, 2023
ReRAM startup Intrinsic Semiconductor Technologies has raised $9.73 million to expand its engineering team and bring its product to market.
Security IP Cores: Ultimate Guide - AnySiliconJan 22, 2023
Security IP cores are blocks that provide security features for integrated circuits (ICs) and systems-on-chips (SoCs). It includes encryption, decryption, authentication, and key management functions that protect against unauthorized access or hacking. The IP core can be integrated into a larger IC design to provide enhanced security for applications such as IoT devices, payment systems,
TSMC Might Cut 3nm Prices to Lure AMD, NvidiaJan 14, 2023
Industry sources say TSMC is considering lowering 3nm prices to stimulate interest from chip designers
aolofsson/awesome-opensource-hardware: List of awesome open source hardware tools, generators, and reusable designsDec 22, 2022
List of awesome open source hardware tools, generators, and reusable designs - aolofsson/awesome-opensource-hardware
Safeguarding SRAMs From IP Theft (Best Paper Award)Dec 18, 2022
A technical paper titled “Beware of Discarding Used SRAMs: Information is Stored Permanently” was published by researchers at Auburn University. The paper won “Best Paper Award” at the IEEE International Conference on Physical Assurance and Inspection of Electronics (PAINE) Oct. 25-27 in Huntsville. Abstract: “Data recovery has long been a focus of the electronics industry... » read more
Cerebras Reveals Andromeda, a 13.5 Million Core AI SupercomputerNov 15, 2022
The world's largest chip scales to new heights.
How Memory Design Optimizes System PerformanceSep 26, 2022
Changes are steady in the memory hierarchy, but how and where that memory is accessed is having a big impact.
Ultimate Guide: Clock Tree SynthesisSep 24, 2022
A vast majority of modern digital integrated circuits are synchronous designs. They rely on storage elements called registers or flip-flops, all of which change their stored data in a lockstep manner with respect to a control signal called the clock. In many ways, the clock signal is like blood flowing through the veins of a
DRAM Thermal Issues Reach Crisis PointJul 18, 2022
Increased transistor density and utilization are creating memory performance issues.
CXL: Protocol for Heterogenous DatacentersJul 8, 2022
Let's learn more about the world's most important manufactured product. Meaningful insight, timely analysis, and an occasional investment idea.
Nvidia Research Plots A Course To Multiple Multichip GPU EnginesJan 6, 2022
There are two types of packaging that represent the future of computing, and both will have validity in certain domains: Wafer scale integration and
SRAM vs. DRAM: The Future of Memory - EE TimesDec 11, 2021
EE Times Compares SRAM vs. DRAM, Common Issues With Each Type Of Memory, And Takes A Look At The Future For Computer Memory.
SweRV - An Annotated Deep DiveDec 10, 2021
An Introduction to Semiconductor EconomicsDec 6, 2021
This blog post is in response to a recent topic on the Parallella forum regarding Adapteva’s chip cost efficiency (GFLOPS/$): [forum discussion thread]. I had to be a little vague on some poi…
Synopsys Blog | Latest Insights on EDA, IP & Systems DesignDec 4, 2021
Explore Synopsys Blog for the latest insights and trends in EDA, IP, and Systems Design. Stay updated with expert articles and industry news.
Effect of Design on Transistor Density - SemiwikiDec 3, 2021
I have written a lot of articles looking at leading…
How to make your own deep learning accelerator chip!Dec 3, 2021
Currently there are more than 100 companies all over the world building ASIC’s (Application specific integrated circuit) or SOC’s (System…
Using Memory Differently To Boost SpeedDec 3, 2021
Getting data in and out of memory faster is adding some unexpected challenges.
DRAM Tradeoffs: Speed Vs. EnergyDec 3, 2021
Experts at the Table: Which type of DRAM is best for different applications, and why performance and power can vary so much.
TOPS, Memory, Throughput And Inference EfficiencyDec 3, 2021
Evaluate inference accelerators to find the best throughput for the money.
Next-Gen Chips Will Be Powered From BelowAug 28, 2021
Buried interconnects will help save Moore's Law
Impact Of GAA Transistors At 3/2nmAug 17, 2021
Some things will get better from a design perspective, while others will be worse.
Bumps Vs. Hybrid Bonding For Advanced PackagingJun 23, 2021
New interconnects offer speed improvements, but tradeoffs include higher cost, complexity, and new manufacturing challenges.
AMD 3D Stacks SRAM BumplesslyJun 12, 2021
AMD recently unveiled 3D V-Cache, their first 3D-stacked technology-based product. Leapfrogging contemporary 3D bonding technologies, AMD jumped directly into advanced packaging with direct bonding and an order of magnitude higher wire density.
11 Ways To Reduce AI Energy ConsumptionMay 13, 2021
Pushing AI to the edge requires new architectures, tools, and approaches.
SVT: Six Stacked Vertical TransistorsMar 18, 2021
SRAM cell architecture introduction: design and process challenges assessment.
List of semiconductor fabrication plants - WikipediaDec 18, 2020
This is a list of semiconductor fabrication plants. A semiconductor fabrication plant is where integrated circuits (ICs), also known as microchips, are manufactured. They are either operated by Integrated Device Manufacturers (IDMs) that design and manufacture ICs in-house and may also manufacture designs from design-only (fabless firms), or by pure play foundries that manufacture designs from fabless companies and do not design their own ICs. Some pure play foundries like TSMC offer IC design services, and others, like Samsung, design and manufacture ICs for customers, while also designing, manufacturing and selling their own ICs.
New And Innovative Supply Chain Threats EmergingNov 5, 2020
But so are better approaches to deal with thorny counterfeiting issues.
Making Full Memory IP Robust During Design - SemiwikiNov 3, 2020
Looking at a typical SoC design today it's likely to…
Intel Networking: Not Just A Bag Of PartsOct 16, 2020
What is the hardest job at Intel, excepting whoever is in charge of the development of chip etching processes and the foundries that implement it? We
TSMC Details 5 nmMar 23, 2020
TSMC details its 5-nanometer node for mobile and HPC applications. The process features the industry's highest density transistors with a high-mobility channel and highest-density SRAM cells.
96-Core Processor Made of ChipletsFeb 19, 2020
Brian Piercy on LinkedIn: The Surprising Value of Obvious InsightsDec 28, 2019
"...Google's people analytics experts had been studying how to onboard new hires effectively. They came back with a list of tips. Here’s the one that jumped…
A Look at Cerebras Wafer-Scale Engine: Half Square Foot Silicon ChipDec 23, 2019
A look at Cerebras Wafer-Scale Engine (WSE), a chip the size of a wafer, packing over 400K tiny AI cores using 1.2 trillion transistors on a half square foot of silicon.
New chips for machine intelligenceOct 7, 2019
AI Inference Memory System TradeoffsAug 29, 2019
TOPS isn't all you need to know about an inference chip.
Buried Power Lines Make Memory Faster - IEEE SpectrumJul 26, 2019
Researchers at imec explore strategy that could make memory more efficient and pack in more transistors
Startup Runs AI in Novel SRAMJul 22, 2019
Areanna claims that a custom SRAM delivers 100 TOPS/W on deep learning, but it’s early days for the startup.
Use Inference Benchmarks Similar To Your ApplicationFeb 7, 2019
How the wrong benchmark can lead to incorrect conclusions.
Emerging Memories Today: Understanding Bit Selectors - The Memory Guy BlogNov 28, 2018
The previous post in this series (excerpted from the Objective Analysis and Coughlin Associates Emerging Memory report) explained why emerging memories are necessary. Oddly enough, this series will explain bit selectors before defining all of the emerging memory technologies themselves. The reason why is that the bit selector determines how small a bit cell can
Processing In MemorySep 6, 2018
Processing In Memory Growing volume of data and limited improvements in performance create new opportunities for approaches that never got off the ground.
Imperfect Silicon, Near-Perfect SecurityFeb 7, 2018
Imperfect Silicon, Near-Perfect Security Physically unclonable functions (PUF) seem tailor-made for IoT security.
The Northwest-AI-Hub which is researching hybrid gain cell memory that combines DRAM's density withOct 24, 2013
Katherine Bourzac / IEEE Spectrum: The Northwest-AI-Hub, which is researching hybrid gain cell memory that combines DRAM's density with SRAM's speed, gets a $16.3M CHIPS Act grant via the US DOD
Hybrid Memory Designed to Cut AI Energy UseOct 24, 2010
Researchers developing dense, speedy hybrid gain cell memory recently got a boost from CHIPS Act funding
Clash of the Foundries: Gate All Around + Backside Power at 2nmOct 24, 2002
Fab Cost, WFE Implications, Backside Power Details
ssh
SSH Hardening: Best Practices for Securing Your ServerFeb 4, 2026
Learn how to harden your SSH server with best practices including key-only authentication, disabling root login, changing the default port, and setting up Fail2Ban.
How to Generate SSH Keys on LinuxFeb 4, 2026
Learn how to generate SSH keys on Linux using ssh-keygen, copy them to remote servers, and set up passwordless authentication.
SSH Tunneling: the Good, the Bad, and the UglyMar 17, 2023
Let's walk through the basic concept of SSH tunneling – what it is, how to work with it, and what problems it can cause to users when used improperly.
A Visual Guide to SSH Tunnels: Local and Remote Port ForwardingJan 13, 2023
SSH port forwarding explained in a clean and visual way. How to use local and remote port forwarding. What sshd settings may need to be adjusted. How to memorize the right flags.
SSH tips and tricks | Carlos BeckerAug 17, 2022
Since I joined Charm, I’ve been working and learning more about SSH, and I thought I would share a few quick tips and tricks with you. Forward Yubikey Agent If you use a Yubikey (you should), you can use it in your remotes by having the key in a SSH agent and forwarding it. To manage the agent, I strongly recommend yubikey-agent. You can then forward it in your ~/.ssh/config like the following:
13 must-know SSH CommandsJul 8, 2022
A list of popular SSH commands for SSH connections, key generation & SSH agents that I'm using on a daily basis.
SSH and GPG keysMay 29, 2022
GitHub is where people build software. More than 100 million people use GitHub to discover, fork, and contribute to over 420 million projects.
SSH Kung FuJan 16, 2022
An extended look at SSH features that can serve a variety of purposes for different use cases.
5 Best Practices for Securing SSHJan 6, 2022
This article explores 5 SSH best practices you should observe to boost the security of your infrastructure.
22 SSH Examples, Practical Tips & Tunnels | HackerTarget.comDec 16, 2021
Bounce through the network with SSH tunnels and proxies. Take your remote system administration skills to the next level with our practical SSH examples.
http://blog.urfix.com/25-ssh-commands-tricks/Dec 11, 2021
How to SSH into a Self-driving Vehicle (2020)Feb 13, 2021
You can SSH into self-driving robots using a reverse SSH tunnel, but this method only scales so far, and it requires more than 50 steps to set up.
stable-diffusion
There’s a new version of Stable Diffusion, and it’s truly amazingApr 19, 2023
We found the best new creative tools using generative AI, so you don't have to. This week's big news? The new Stable Diffusion XL is now available.
The Company Behind Stable Diffusion Appears to Be At Risk of Going UnderApr 8, 2023
Stability AI, a startup that helped develop popular open-source image generator Stable Diffusion, is in serious trouble, Semafor reports.
AI Spits Out Exact Copies of Training Images, Real People, Logos, ResearcheFeb 3, 2023
The regurgitation of training data exposes image diffusion models to a number of privacy and copyright risks.
TheLastBen/fast-stable-diffusion: fast-stable-diffusion, 25-50% speed incrDec 10, 2022
fast-stable-diffusion + DreamBooth.
Beginner’s Guide to Diffusion ModelsDec 7, 2022
An intuitive understanding of how AI-generated art is made by Stable Diffusion, Midjourney, or DALL-E
If you thought text-to-image AI was unbelievable, wait until you see how itOct 8, 2022
If you thought text-to-image AI was unbelievable, wait until you see how it compresses images.
starflight
2002 Helicopter Heroism Award | Aero-News NetworkMar 30, 2023
| Published: Fri, Nov 08, 2002 | Aero-News Network
startups
Loot Drop - The Startup GraveyardFeb 7, 2026
Explore 925+ failed startups and learn from $32.5B+ in burned venture capital. Discover why they failed, their market potential, and how to rebuild them.
Lessons Learned Shipping 500 Units of my First Hardware ProductFeb 4, 2026
Building in consumer hardware as a software engineer
The VC Corner | Ruben Dominguez | SubstackJan 20, 2026
The VC Corner is where founders stay ahead: sharp news, fundraising strategies, battle-tested playbooks, and the tools to grow. Click to read The VC Corner, by Ruben Dominguez, a Substack publication with hundreds of thousands of subscribers.
How to Do Great WorkJan 10, 2026
Tokyo startup envisions a world where nothing stays lostDec 9, 2025
Find Inc. is a Tokyo-based startup that provides a cloud service dedicated to lost items.
Turn Any Idea Into a Validated MVPDec 9, 2025
A step-by-step path to validate your idea fast by defining the problem, testing assumptions, prototyping the critical flow, and shaping a focused MVP you can learn from.
MIT spinoff Vertical Semiconductor gets $11M to build more power-efficient AI chips - SiliconANGLEOct 15, 2025
They Created a Streetwear Line From Scratch. In High School.Sep 10, 2025
At a school with a basketball-themed curriculum, students were “dreaming big.” But could they find a buyer?
The Software Tycoon Scaling AI Education to a Billion KidsAug 22, 2025
As an elementary school principal, a feared software tycoon, a genial recluse, and a technology zealot determined to redefine childhood for mankind, J
The Rise of Shippable MicrofactoriesJul 26, 2025
Can microfactories solve prefab's economic problem by inverting the factory model?
Exclusive: Tulum Energy rediscovered a forgotten hydrogen tech and used it to raise $27M | TechCrunchJul 8, 2025
Results of a 20-year-old curiosity now form the basis of Tulum, a startup that has attracted significant investor attention.
The Man Who Beat IBMJun 21, 2025
Compaq’s Rod Canion broke Big Blue’s hold on the PC market—and changed computing forever
0-$5M: How to Identify Your ICP — Lessons from Vanta, Clay, RetoolMay 15, 2025
How do you spot the wrong customer before they burn your roadmap? First Round Partner Meka Asonye digs into how now-massively successful startups cracked the code.
Evari turns to rocket science to solve problems with heat pumpsMay 13, 2025
The startup emerged from stealth with a goal of extending the range of EVs while also eliminating fossil fuels from home heating.
InventWood is about to mass produce wood that’s stronger than steelMay 12, 2025
The material has 50% more tensile strength than steel with a strength-to-weight ratio that’s ten-times better.
The U.S. doesn’t refine cobalt. This startup wants to change that.Apr 23, 2025
The U.S. doesn't currently refine cobalt, a valuable material in a number of goods and products. This startup wants to change that.
How I Spent 17,784 Hours in 5 Years as a Startup FounderApr 5, 2025
Levels founder & CEO Sam Corcos shares his detailed time-tracking data across 5 years of startup growth
SpinLaunch—yes, the centrifuge rocket company—is making a hard pivot to satellitesApr 4, 2025
“Launch has generally been more of a cost center than a profit center.”…
Startup-CTO-Handbook/StartupCTOHandbook.md at main · ZachGoldberg/Startup-CTO-HandbookMar 13, 2025
The Startup CTO's Handbook, a book covering leadership, management and technical topics for leaders of software engineering teams - ZachGoldberg/Startup-CTO-Handbook
Will Boom Successfully Build a Supersonic Airliner?Mar 6, 2025
Boom Supersonic is an aerospace startup trying to build a supersonic airliner.
The Uncomfortable Truth: A 3X Founder's Guide to Intellectual HonestyNov 25, 2024
Crossbeam CEO and co-founder Bob Moore shares his tools for quashing biases in pursuit of the truth at every stage of company building.
How do the most successful VCs pick which companies to bet on and which to avoid?Oct 26, 2024
At Robinhood’s first annual Hood Summit in Miami, Sherwood Media’s Editor-in-Chief Joshua Topolosky sat down with Rebecca Kacaba, CEO and cofounder...
Aa former West Virginia steel mill is now home to a cutting-edge battery plant - Fast CompanyOct 25, 2024
Form Energy uses iron-air technology to store energy far longer than a lithium-ion battery can.
How Beautycounter Fell Apart, Sinking Almost $700 Million With ItJul 10, 2024
When the private equity firm Carlyle bought Beautycounter, the skin care brand that people sold at kitchen tables, everything changed.
Firefly is building fast and breaking things on path to a reusable rocketJul 2, 2024
“For our base design, we’re designing around return to launch site propulsive landing.”…
On being laid off & unplanned entrepreneurship - Deep South VenturesJun 17, 2024
〰️ it’s weird to look back; I sometimes get confused on how I got here 〰️ Most folks dream of being entrepreneur; “a path that seemed inevitable“, they say. None of that shit applies to me. I’m only here cause I kept getting laid off and that nonsense infuriated me. I treated my first layoff ... Read more
From $1B to bankrupt: How private equity killed Beautycounter, the belovedMay 21, 2024
After selling to the Carlyle Group, the brand went from $1 billion to broke. Inside its rise and fall—and possible rise again.
Will Stone Replace Steel and Concrete?May 13, 2024
A recent viral tweet by Micah Springut, founder of stone-carving startup Monumental Labs, argued that it will be cheaper to build buildings with stone than with steel or concrete within the next 10 years.
AI chip startup Deepx raises $80m, receives $529m valuationMay 11, 2024
Funding round was led by SkyLake Equity Partners
Build Your Culture Like a Product — Lessons from Asana’s Head of PeopleApr 12, 2024
Anna Binder, Asana's Head of People and the company's first HR hire, shares her step-by-step approach to intentionally building the company culture.
Why I spent 3 years working on a coat hangerFeb 29, 2024
The Coat Hinger is available for 30 days on Kickstarter! Go go go!! https://kickstarter.com/projects/simonegiertz/coat-hingers-foldable-coat-hangers
Thank you so much for supporting my creative whims throughout the years. Can you believe it's been almost a decade?!
The What, Who, and When with IPOsFeb 22, 2024
In 2022 and 2023, US IPOs hit decade lows after the record high of 2021. Now, in 2024, will the IPO window reopen? In this episode, we revisit a conversation with Jeff Jordan, former CEO of OpenTable, and J.D. Moriarty, the former Head Managing Director and Head of Equity Capital Markets at Bank of America...
Turning abandoned mines into batteries | IIASAFeb 6, 2024
A novel technique called Underground Gravity Energy Storage turns decommissioned mines into long-term energy storage solutions, thereby supporting the sustainable energy transition.
Pilot’s Path to Product-Market Fit — Three-Peat Founders on Picking the RigJan 18, 2024
The founders of Pilot have started three times over, starting with Ksplice (sold to Oracle in 2011) and then Zulip (acquired by Dropbox in 2014).
What I learned selling my companyJan 16, 2024
At my first company, I internalized the standard advice to never think about M&A. The consensus was, and is, to just keep growing the business and good things will come. I did that, and I was lucky that good things did come in the form of a $130M acquisition
Electric Hydrogen is the green hydrogen industry’s first unicornOct 4, 2023
Investors have historically been skeptical of green hydrogen. High production costs, expensive infrastructure builds, competition with batteries and
Scientists Made An Artificial "Cloud" That Pulls Electricity From AirJul 24, 2023
A new prototype compatible with a wide range of materials could grab a continuous supply of renewable energy from the air.
‘It was an accident’: the scientists who have turned humid air into renewabJul 24, 2023
Tesla speculated electricity from thin air was possible – now the question is whether it will be possible to harness it on the scale needed to power our homes
I’m in Wyoming to celebrate the next nuclear breakthroughMay 7, 2023
Bill Gates writes about visiting Kemmerer, Wyoming, the future site of the fourth-generation Natrium nuclear power plant being designed by TerraPower.
How My Business Makes $500K/Month Selling Yarn Products To Clothing CompaniMay 3, 2023
Hello! Who are you and what business did you start?Hello! My name is Evgenia, and I am the founder of Woolstock . Our company is engaged in various types of yarns: for hand knitting, machine knitting, knitting accessories, and finished yarn products. By working closely with customers, w...
Salience Labs advances its AI agenda using new chip designApr 26, 2023
Vaysh Kewada, CEO and Co-Founder of Salience Labs, advances AI by circumventing finite processing power with a revolutionary new chip design.
The Four-Horse Race to Decarbonize Steel: Strategies, InnovationsApr 14, 2023
Discover the 'four-horse race' among leading manufacturers to decarbonized steel their operations. Explore the strategies and technologies.
How A Marketer Started A $500K/Month Custom Packaging BusinessMar 28, 2023
Hello! Who are you and what business did you start?I am Salman Shahid, a digital marketing expert and the founder of OXO Packaging. We are a custom packaging manufacturer for small to medium-scale businesses across the USA and Australia. At OXO Packaging, we provide packaging solutions ...
Finance 101: The Guide for Seed/Series A Startups - The Causal BlogMar 18, 2023
The things you need to know and the things you can ignore, at the early stage of your company’s journey.
WTF is Marketplace Liquidity?Mar 12, 2023
Methodologies for understanding and measuring marketplace liquidity
Why so many people undercharge for their workFeb 7, 2023
Setting a rate can be a minefield for folks navigating an industry alone.
?? Why billing systems are a nightmare for engineersJan 26, 2023
This article was initially published on Lago's blog, an open-source billing API, and was ranked #1 on...
If you like startups you should love anti-trustJan 9, 2023
Why do companies that were once the face of the anti-establishment startup world inexorably become the very sort of business that they were built to destroy?
A Standard and Clean Series A Term Sheet | Y CombinatorDec 21, 2022
We’ve noticed a common problem: founders don’t know what “good” looks like in a term sheet. This makes sense, because it is often, literally, the first time in their careers that they’ve seen one. This puts founders at a significant disadvantage because VCs see term sheets all the time and know what to expect. Because we’ve invested in so many founders over the years and have seen hundreds of Series A term sheets, we know what “good” looks like. We work with our founders to understand where term
This 28-year-old built a side hustle that brings in $30,000/month: 'I onlyDec 17, 2022
During the pandemic, Quinn Miller quit his sales job to start a vending machine side hustle. Today, his business brings in $30,000 a month, and he only has to work six hours a week on it. He shares how he got started.
GitHub - kuchin/awesome-cto: A curated and opinionated list of resources foDec 10, 2022
A curated and opinionated list of resources for Chief Technology Officers, with the emphasis on startups - kuchin/awesome-cto
Why you should start a companyDec 9, 2022
Few things are more liberating or intoxicating than controlling your own fate.
Should You Invest in Disruptive Materials?Nov 23, 2022
Startup Insider: How A Molecule Becomes A Drug - Crunchbase NewsOct 24, 2022
Comprehensive up-to-date news coverage, aggregated from sources all over the world by Google News.
Pollen’s enormous debt left behind: exclusive detailsOct 22, 2022
Two months after the startup went bankrupt, administrators have summarized the $80M+ debt the company has accumulated, most of which will not be paid. The highest offer to buy Pollen’s business assets - but without its liabilities - currently stands at only $250K. Details.
How Product Strategy Fails in the Real World — What to Avoid When BuildingOct 1, 2022
Why does strategy tend to stall when the rubber hits the road? Nate Stewart, Chief Product Officer of Cockroach Labs, shares an essential guide for creating a resilient strategy that’s still standing next year.
[P] My co-founder and I quit our engineering jobs at AWS to build “Tensor Search”. Here is why.Sep 22, 2022
530 votes, 63 comments. My co-founder and I, a senior Amazon research scientist and AWS SDE respectively, launched Marqo a little over a week ago - a…
Can software simplify the supply chain? Ryan Petersen thinks soSep 22, 2022
The Flexport CEO on why it takes so long for your package to arrive.
#17: One kitchen, hundreds of internet restaurantsSep 16, 2022
There are a few cloud kitchen restaurants that deliver food that is so shit that I want to know which other brands are being run from the same kitchen so that I can avoid them all.
A Taxonomy of DrawdownsSep 15, 2022
Plus! Watercooler Shows; Smart Thermostats; Substitutes and Complements; Monetization; Apple Ads; Diff Jobs
SaaS spend ratios on R&D/S&M/G&ASep 12, 2022
Super Hot Sand Could Help Us Store Renewable EnergySep 9, 2022
It’d be much cheaper than lithium battery storage.
Find The Fast Moving WaterSep 5, 2022
We work with our NFX Guild on this mental model for greatness from day 1. Now, we are sharing it with the rest of the startup community.
Meet Pinky Cole, the force behind Slutty Vegan’s booming empireAug 30, 2022
Pinky Cole's Slutty Vegan brand has grown from an Atlanta-based restaurant chain to burgeoning national brand — and she's just getting started.
Spotify For Clothes: How I Launched A Business Helping Guys Discover New ClAug 12, 2022
Hello! Who are you and what business did you start?My name is Brian McEuen, and I'm the founder of On Brand. We help guys shop for clothes online by curating personalized selections as if they were walking into their very own store. We're like Spotify for clothes! Another way to put it:...
Semis for Everyone?Aug 1, 2022
Google is promoting the growth of open source tools for designing semis. The science fiction version of this story leads to everyone designing chips, the reality is going to be much narrower, but s…
Two-Sided Networks in Healthcare, a Founder’s PlaybookJul 27, 2022
The most significant bottleneck in the adoption of healthcare technology to date has been distribution. Over the last decade, generations of digital health companies have struggled to reach escape velocity—not because their products and services weren’t transformative, but because they failed to find an executable path for sustainable distribution and value capture. Some of that...
The 11 Risks VCs Evaluate by @ttunguzJul 19, 2022
Though the industry is called venture capital, the goal of a VC isn’t to maximize every risk. Instead, we try to understand all the risks a business might face and weigh those risks with the reward - the exit. Here are the major risks that I typically review when a startup pitches. Market timing risk - Is now the right time for the business? It’s often hard to evaluate this risk, but nevertheless, it’s an important consideration.
Why You Can't Settle For The "Minimum" In Your Minimum Viable ProductJul 19, 2022
Many startups scramble to create a "minimum viable product," or MVP, to get a version of their product to market quickly for testing. It’s a great way to cost-effectively test a website or app with real users. But be careful, if your MVP is too minimalist, it could torpedo your company's future.
Running Costs - CushionJul 19, 2022
A close look at the costs that go into running Cushion and the reasons why we use specific services.
Startup AdviceJul 19, 2022
I usually tell people that everything I learned about being an entrepreneur I learned by F’ing up at my first company.
Test your startup idea!Jul 19, 2022
Hubstaff founder Dave Nevogt shares how to test your startup idea by analyzing model, market and concept.
3 Strategies To Building a Marketplace Startup | SaaS AcademyJul 18, 2022
Building a two-sided market is probably the hardest thing you can build as an entrepreneur. It's so hard that a few weeks ago, I organized a Marketplace
‘Give Away Your Legos’ and Other Commandments for Scaling StartupsJul 18, 2022
Molly Graham helped forge a work culture at Facebook that's withstood huge amounts of growth. Today, she's something of a rapid scaling expert. Here's the key to doing it right, she says.
http://platformed.info/how-to-get-startup-ideas/Jul 18, 2022
23 Ways to Generate Startup IdeasJul 18, 2022
16 More Startup Metrics | Andreessen HorowitzJul 18, 2022
A few weeks ago, we shared some key startup metrics (16 of them, to be exact) that help investors gauge the health of a business when investing in it. But to repeat ourselves for a moment: Good metrics aren’t just about raising money from VCs … they’re about running the business in a way where...
Keurig accidentally created the perfect business model for hardware startupsJul 18, 2022
It’s no secret that investors don’t like hardware businesses. Despite the eternal frustration of startup founders, investor distaste in physical product businesses is actually entirely logical. It’s nearly impossible to build a venture-scale business by selling dumb plastic parts at a 30% gross marg
Startup Best Practices 1 - Situational Management by @ttunguzJul 18, 2022
In response to yesterday’s post on management design patterns, many readers asked for examples of best practices. So I’m going to write about the management best practices I have been taught and I have observed in startups. This is the first post of that series. The first management technique is called Situational Management, one that my wife, a terrific manager at Google, taught me. A manager’s most important function in a startup is to motivate employees to accomplish the business’s goal.
57 startup lessonsJul 18, 2022
There are already very good lists of startup lessons written by really talented, experienced people (here and here). I’d like to add another one. I learned these lessons the hard way in the past four years. If you’re starting a company, I hope you have an easier path.
Designing Your Sales Stack so that Customers Come to YouJul 18, 2022
Two proven sales experts on how to build a process and team from the ground up to consistently boost revenue month over month.
What’s Next for Marketplace Startups? | Andreessen HorowitzJul 18, 2022
Goods versus Services: The next trillion dollar opportunity Marketplace startups have done incredibly well over the first few decades of the internet, reinventing the way we shop for goods, but less so for services. In this essay, we argue that a breakthrough is on its way: The first phase of the internet has been...
The rise of the "successful" unsustainable companyJul 17, 2022
We're funding too many unsustainable companies.
30 Useful Tools for Growth Hackers and StartupsJul 17, 2022
I’m a startup product growth guy with a social gaming background. I currently work as VP of Growth at Relcy, a mobile search engine. A few companies I’ve worked with on growth in the past (HIRED $702…
Lessons learned from scaling a product teamJul 17, 2022
There's lots written about how you should build software, but few concrete examples of the messy reality as implemented by startups. Here's our process.
20 Questions To Ask Before Joining A StartupJul 17, 2022
Why T-Shirts MatterJul 14, 2022
During my tenure at LinkedIn, I’ve held a wide variety of roles and responsibilities within the company. Some are fairly public (as described on my LinkedIn profile). Others are the the typ…
Popsockets growthJul 12, 2022
How to Get Startup IdeasJul 11, 2022
10 Data Acquisition Strategies for StartupsJul 11, 2022
The “unreasonable effectiveness” of data for machine-learning applications has been widely debated over the years (see here, here and…
Startup Culture Is Not About Ping-Pong TablesJul 6, 2022
Culture isn’t about whether you’re a startup or a Fortune 500 giant. It’s about values and mindset. It’s about how you approach the decisions you make.
Cash is a fact, profit is an opinionJul 5, 2022
Apologies in advance: If you’re fluent in the language of accounting, please skip to the bonus Verizon iPhone feature at the end. What I’m about to describe will strike you as oversimplified and…
A Standard and Clean Series A Term Sheet | Y CombinatorJul 5, 2022
We’ve noticed a common problem: founders don’t know what “good” looks like in a term sheet. This makes sense, because it is often, literally, the first time in their careers that they’ve seen one. This puts founders at a significant disadvantage because VCs see term sheets all the time and know what to expect. Because we’ve invested in so many founders over the years and have seen hundreds of Series A term sheets, we know what “good” looks like. We work with our founders to understand where term
16 Startup Metrics | Andreessen HorowitzJul 5, 2022
We have the privilege of meeting with thousands of entrepreneurs every year, and in the course of those discussions are presented with all kinds of numbers, measures, and metrics that illustrate the promise and health of a particular company. Sometimes, however, the metrics may not be the best gauge of what’s actually happening in the...
Watching an acquirer ruin your company - by Jon ChristensenJul 4, 2022
What happens on the other side of the acquisition doesn't get much startup press
Steve Blank Fear of Failure and Lack of Speed In a Large CorporationJun 28, 2022
I just spent a day working with Bob, the Chief Innovation Officer of a very smart large company I’ll call Acme Widgets. Bob summarized Acme’s impediments to innovation. “At our company we have a cu…
autopsy.io - Domain Name For Sale | Dan.comJun 28, 2022
I found a great domain name for sale on @undeveloped. Check it out!
Picking a MarketJun 28, 2022
In the Creative Founder, students are paired semi-randomly, and then spend a semester trying to get to product-market fit. I always start them with market selection. A market has three key elements…
Why clean energy needs financial engineeringJun 27, 2022
Plus: Hydrogen pipelines, Advanced Market Commitments, and what made solar energy cheap
How CDBaby Built 20,000 Citations With One E-MailJun 25, 2022
CDBaby* is an online distributor of independent music. Founded by well-known entrepreneur Derek Sivers, the service became a huge hit with independent
Why Dyson's robot vacuum took 16 years, and why it's headed to Japan firstJun 23, 2022
Dyson almost launched a robot vacuum. Back in 2001, after three years in development. Its first effort, shown to the British public in London looked nothing (and we mean nothing) like the eventual 360 Eye unveiled today. Sixteen years is a long time in tech. The DC06, as it was called, never made it past home-trial stages in 2012 -- apparently too pricey and heavy. Between then and now, technology got better. A lot better. At the Tokyo launch of its new robot vacuum, Sir James Dyson himself, told us how it all came together, and why it's not his native UK, but Japan, that'll get to buy it first.
87 Service Business Ideas to Start TodayJun 23, 2022
With this many ideas to choose from, you have no excuse not to get started today with your own service business.
Invisible unicorns: 35 big companies that started with little or no money | TechCrunchJun 23, 2022
There’s a widespread belief among founders that venture capital is a precursor to success. VC is a common denominator of the most successful tech startups, but it isn't a prerequisite. To help illustrate this, here are 35 companies that started with a few thousand dollars, or even just sweat equity, and went on to become exemplars of what I call “efficient entrepreneurship.”
The Marketing Stack of a Lazy Saas CompanyJun 23, 2022
How we're using technology and automation to turn high-quality leads into product demos for our business development team.
Startups Live & Die by These 5 Street-Smart Laws of Advertising | TechCrunchJun 14, 2022
“Money alone isn't enough to bring happiness . . . happiness when you're actually truly ok with losing everything you have.” - Tony Hsieh, Delivering Happiness: A Path to Profits, Passion, and Purpose Disclaimer: This article’s sole purpose is to address the core principles of advertising in a new and edgy way. This is not for the faint of heart or those highly sensitive to socially charged public issues. So suck it up and buckle up. You’re about to be taken to school (of hard knocks). Class is now in session.
Opportunity CanvasJun 13, 2022
How Cup Noodles Became One of the Biggest Transpacific Business Success Stories of All TimeJun 13, 2022
There was a time when eating out of Cup Noodle’s iconic packaging exuded cosmopolitanism.
We have built and launched exactly 30 tech products for our clients in the past 5 years. 15 have shut down. 7 are new (< 1 year). 8 are still alive and breathing, but not kicking. 2 are blockbusters (>$50 million valuations). Here are 10 things that I realized was different with those 2 projectsJun 13, 2022
1K votes, 152 comments. I wrote the below post after we launched our 30th product, just to try to make a note to self on whether any early signs gave…
The secret of my success as an entrepreneur: I’m 60May 11, 2022
“ By the law of averages, if you reach four decades of work experience, then you know what it was like to be disrupted both personally and as a business.”
A new heat engine with no moving parts is as efficient as a steam turbineApr 15, 2022
Engineers at MIT and NREL have developed a heat engine with no moving parts that is as efficient as a steam turbine.
Zapier: The $5B unbundling opportunityApr 15, 2022
Zapier has 3M+ users and generates $125M in ARR. At a $5B valuation, its fast-growing horizontal platform is unable to meet the demands of all of its customers. The increase of underserved Zapier customers presents an opportunity.
A case study in early-stage startup executionMar 27, 2022
Before joining Wave four years ago, I spoke to a former employee about his experience. He said something that has stayed in my memory ever since: “Wave is really good at execution, so by working at Wave, you’ll learn how to execute very well.” Now that I’ve been here a while, I thought it would be good to write down what really good execution actually looks like in practice and the counterintuitive lessons I’ve learned along the way.
23 Tactical Company Building Lessons, Learned From Scaling Stripe & NotionMar 23, 2022
From Stripe to Notion, Cristina Cordova has worked on some of the biggest products in tech. She shares tactical tidbits on what she’s learned about about scaling companies and shaping your career.
http://limedaring.com/articles/how-i-run-a-marketplace-with-eleven-different-properties-and-5000-vendors/Mar 16, 2022
Electric Planes Are Coming Sooner Than You ThinkMar 13, 2022
Get ready to fly electric by 2026. Leading airlines are already onboard with the technology and are making plans.
The Economics of Data BusinessesMar 10, 2022
How data businesses start, and how they keep going, and growing, and growing.
The Craft of Artisanal Computer ManufacturingFeb 25, 2022
Stefany Allaire has carved a niche in small-batch, retro-inspired computers
Why I changed my mind about advertising | The Sample blogFeb 10, 2022
I used to be very anti-advertising. Fast forward two years and several pivots, and my slightly-less-early-stage business is doing $900 per month in revenue... from ads.
The reason some vegan alternatives don't taste like meat - BBC FutureJan 29, 2022
Some of the qualities that make meat "meaty" are hard to reproduce with plant-based alternatives. Should we be focusing on replicating them – or trying to make new, tasty alternatives?
Can Freight Train Cars Go Electric—and Self-Driving?Jan 19, 2022
Decentralizing freight transport and distribution can provide flexibility and increased efficiency, getting cargo closer to where it needs to go in a more timely manner while taking stress off of overloaded ports.
Gravity Could Solve Clean Energy’s One Major DrawbackJan 12, 2022
Finding green energy when the winds are calm and the skies are cloudy has been a challenge. Storing it in giant concrete blocks could be the answer.
I Bought A Dying Used Machinery Marketplace And Grew It To 1.7M$/YearJan 9, 2022
Hello! Who are you and what business did you start?Hello, my name is Thomas Bordier and with a few partners, we took over a dying B2B marketplace in 2003: Exapro. Today, our business is booming and we even acquired a competitor a couple of years back: Kitmondo. We help buyers and seller...
MicroAcquire, the #1 Startup Acquisition MarketplaceJan 7, 2022
Buy and sell SaaS startups in as little as 90 days. 500k+ qualified buyers, 1,000s of vetted listings. M&A advisory, legal help, escrow, and more. Join now.
The Race to Find ‘Green’ HeliumDec 20, 2021
Helium is a critical—and finite—resource. The future of our most indispensable technologies depends on a new supply.
The Highest Paid Person's OpinionNov 13, 2021
Every company makes decisions based on the highest paid person's opinion. It turns out it's just a hypothesis. Here's how to tame it.
‘Give away your Legos’ and other commandments for scaling startupsOct 16, 2021
Molly Graham helped forge a work culture at Facebook that's withstood huge amounts of growth. Today, she's something of a rapid scaling expert. Here's the key to doing it right, she says.
Where Are The Robotic Bricklayers? - by Brian Potter - Construction PhysicsAug 4, 2021
When researching construction, you invariably discover that any new or innovative idea has actually been tried over and over again, often stretching back decades.
Why Build ToysJul 13, 2021
I first wrote this essay a few years ago. A founder mentioned it to me over the weekend, and so I decided to re-publish it here. One thing that's bothered me in the time since I wrote it is the way...
Gutting Decades Of Architecture To Build A New Kind Of ProcessorJul 13, 2021
There are some features in any architecture that are essential, foundational, and non-negotiable. Right up to the moment that some clever architect shows
We replaced rental brokers with softwareJul 10, 2021
Check the requirements, book the viewing, let yourself in, and submit your application, all without emails or phone tag.
The Right Way to Ship Software | First Round ReviewJul 5, 2021
An open letter from a former Facebook and VMware engineering executive on how startups can best structure their release processes.
At Grocery Stores, It's Hard Work Picking Your Online Order - The New YorkJun 7, 2021
The technology needed to fulfill orders is costly for stores, and the workers who pick items off the shelves often feel the pressure of being tracked.
You Probably Shouldn’t Work at a Startup - Napkin Math - EveryMay 22, 2021
It’s overrated—both financially and emotionally
Fierce NerdsMay 18, 2021
Untether AI: At Memory Computation A Transformative Compute Architecture for Inference AccelerationMay 14, 2021
Presented by Robert Beachler, VP of Product, Untether AI.
Traditional processor architectures are failing to keep up with the exploding compute demands of AI workloads. They are limited by the power-hungry weight-fetch of von Neumann architectures and limitations of transistor and frequency scaling. At-memory computation places compute elements directly in the memory array, providing reduced power consumption and increased throughput due to the massive parallelism and bandwidth provided by the architecture. This presentation introduces a new class of non-von Neumann compute designed to meet these AI demands.
The Linley Fall Processor Conference featured technical presentations addressing processors and IP cores for AI applications, embedded, data center, automotive, and communications. Session topic included AI in Edge Devices, Vector-Processing Cores, Advancing Cloud AI, The New Infrastructure Edge, Heterogenous Computing, SoC Design, In-Memory Compute, and Security.
Proceedings from the event are available for download. https://www.linleygroup.com/events/proc_register.php?num=49
How to | How to write cold emails to investors – lessons from 30 VCsApr 30, 2021
Want to get your cold email to investors opened and read? Learn from the tips of some of the top VC investors.
What to Do When You Are Asking Yourself, “Is My Product Meh?”Mar 23, 2021
Entrepreneurs ask themselves "Is my product meh?" when they fear making a fool of themselves. Some objectives questions to ask yourself.
Vestiaire Collective raises $216 million for its second-hand fashion platform | TechCrunchMar 3, 2021
Vestiaire Collective announced a new funding round. The company has raised $216 million, or €178 million — it has reached a valuation above $1 billion,
Enterprise Gateway Marketplaces Will Turn Large Organizations Inside-OutMar 2, 2021
The marketplace revolution is still just beginning and the enterprise gateway is the newest type of marketplace.
Reddit: Organized Lightning | The GeneralistMar 1, 2021
One of social media's oldest companies is also its most undervalued.
Start with a NicheFeb 22, 2021
The most popular products don’t become mass popular overnight. It’s a process. Usually they popularity is uneven, they are unknown in some niches, but very popular in another niches.
What leader(s) over your product career truly changed how you approach prodFeb 19, 2021
I learned from bosses & peers, including some famous peeps like Reed Hastings, Patty McCord, and Dan Rosensweig. But mainly I learned by doing, supercharged by feedback from many "Friends of Gib."
What Chip Startups Can Learn from Google’s TPU Design TeamFeb 17, 2021
The inception of Google’s effort to build its own AI chips is quite well known by now but in the interests of review, we’ll note that as early 2013 the
Hacker NewsJan 30, 2021
Mark Cuban Cost Plus Drug homepage. Provides safe, affordable medicine or medication with transparent low prices.
Instacart Survived Covid Chaos — But Can It Keep Delivering After The Pandemic?Jan 30, 2021
Apoorva Mehta’s grocery delivery app is now an essential—and booming—business. Now the 34-year-old billionaire has to show he can outfox Bezos, dodge an avalanche of new competitors and calm his rebellious workers and restless partners.
7 Crowdfunding Platforms You Can Use To Boost Your IdeasJan 21, 2021
Advice, insight, profiles and guides for established and aspiring entrepreneurs worldwide. Home of Entrepreneur magazine.
WTF is a SPAC?Jan 21, 2021
In a SPAC IPO, a shell company goes public with a pledge to investors that it will eventually become a traditional company via acquisition.
What Bill Gurley Saw - Commonplace - The Commoncog BlogJan 14, 2021
Some careers can be made on the back of a single, wonderful idea. We take a look at what that looks like, through Bill Gurley's VC career.
The Fall Of Mic Was A Warning | HuffPostDec 21, 2020
"I don’t need a pair of Nikes. I need a 401(k)" -- and other lessons from the death of a venture-backed, Facebook-dependent, millennial-focused news site.
Startup Idea Validation ToolsDec 18, 2020
The economics of vending machinesNov 5, 2020
The pandemic has boosted interest in vending machine ownership. We surveyed 20+ operators to find out how much they make.
How We Created A $40K/Month 1-Click Integrations PlatformNov 3, 2020
Hello! Who are you and what business did you start?I'm Abhishek A Agrawal and I'm the founder of Integrately and CompanyHub. Our first product was CompanyHub CRM - the world's easiest CRM. Most salespeople hate using CRMs because they are complex and time-consuming. CompanyHub is as eas...
Million-Dollar, One-Person BusinessesNov 3, 2020
How are individual entrepreneurs (solopreneurs) building multi-million dollar companies? What can we learn from their stories? Read this report to find out.
Sweatpants Forever: How the Fashion Industry Collapsed (Published 2020)Aug 8, 2020
Even before the pandemic, it had started to unravel. What happens now that no one has a reason to dress up?
Patio11’s LawMay 14, 2020
@mmcgrana: Patio11’s Law: The software economy is bigger than you think, even when you take into account Patio11’s Law.1 A few years ago, I woke up in Sunriver, OR, and went to make coffee. The house had one of those bed-and-breakfast-type coffee trays. Drip machine. A stack
How to brainstorm great business ideasMar 9, 2020
It's been said that ideas don't matter, and that only execution does. I wholeheartedly disagree. You need both to succeed, but you can only get so good...
Startup Economic Lessons from Shen Yun’s Empire — Packy McCormickFeb 19, 2020
You probably think startups have nothing in common with a classical Chinese dance performance. You’re wrong.
A startup built around building materials: Yesler marketplace is like ExpedFeb 3, 2020
Matt Meyers spent two decades at Weyerhaeuser dealing with product engineering, manufacturing, software engineering, product development, sales and
On Creating A Health Care Website Used In 190 CountriesJan 12, 2020
Hi! My name is Gerald Diaz. I’m a physician and co-founder of GrepMed.com. GrepMed is an image-based medical reference platform that leverages images as an alternative to traditional text-based medical resources. We’re trying to make it easier for doctors and other clinicians to fi...
Canva’s Digital Growth StrategyJan 12, 2020
Canva are one of Australia's most successfull startups. In this case study we analyse how they use digital channels to attract and acquire new users
Elad Blog: A Brief Guide To Startup Pivots (4 Types Of Pivots)Jan 12, 2020
Most of the times, startup don't work. At some point it may make sense to either (1) give up on your original product and to sell the company, (2) shut down what you are doing and return money to investors, or (3) to pivot. You can read more on making the decision to give up in a future article. This post focuses on pivoting for small, early stage companies (e.g. 10 or fewer people).
TasksDec 23, 2019
Crossed StitchesNov 28, 2019
Beverly Pennington was a Pinterest-perfect entrepreneur whose patchwork quilts—made from people’s most treasured T-shirts—found thousands of devotees all over the country. But when the quilts stopped coming, leaving the shirts in limbo, her customers pieced together a plan to fight back.
How I Built A $200K/Month Business Selling Proofreading CoursesNov 12, 2019
Hello! Who are you and what business did you start?Hello! My name is Caitlin Pyle, and I start Proofread Anywhere back in 2014. I help proofreaders earn extra income from anywhere in the world… even if you’re starting from scratch! I have two different courses: Transcript Proofreading, ...
Startup BenchmarksNov 3, 2019
I joked the other day that some of the best fairytales are written in Excel. While there isn’t a single magic number or set formula, understanding industry benchmarks can be really helpful to…
How Our Sustainable Corporate Merchandising Became a $40K/Month BusinessOct 31, 2019
Hello! Who are you and what business did you start?My name is Gonzalo and with my partner Gala, we run a business called Sheedo. Our main product is a paper made out of waste cotton from the clothing industry, so we don’t cut trees or use toxic chemicals in our production line. But what...
The boring technology behind a one-person Internet companySep 17, 2019
The tech stack of Listen Notes, the best podcast search engine and database.
This researcher studied 400,000 knitters and discovered what turns a hobbyAug 31, 2019
An MIT Sloan Ph.D. candidate discovered what turned skilled hobbyists into entrepreneurs.
All Things Sales! 16 Mini-Lessons for Startup Founders | Andreessen HorowitzAug 30, 2019
As a former CEO and software engineer (Citrix, XenSource, VERITAS, etc.), board member of GitHub (recently acquired by Microsoft), and lecturer in management at the Stanford Graduate School of Busines, a16z general partner Peter Levine is constantly asked “Why sales?” by entrepreneurs and technical founders. He himself used to hold the “engineer-centric” view that if...
The Subtle Art of User Onboarding & AdoptionAug 29, 2019
The “traditional” user onboarding flows and walkthroughs are dead. Learn about the next era of user onboarding and how to adapt to the changes in your org.
The 4 Stages of 0->1 ProductsAug 29, 2019
This was first published on my mailing list The Looking Glass. Every week, I answer a reader’s question.
Buy Low-Tops, Sell High-Tops: A Sneaker Exchange Is Worth $1 BillionAug 24, 2019
StockX is one of several online marketplaces that have turned resales of shoes into a big — and highly valued — business.
Meet the next generation of entrepreneurs. They’re all over 65.Aug 15, 2019
Inside Senior Planet, the tech-savviest retirement community on earth.
SoftBank’s first bet in energy storage is a startup that stacks concrete blAug 15, 2019
So far, most large investments in energy storage have gone to companies building lithium-ion batteries. SoftBank's newest bet changes that.
How Duolingo Built a $700 Million Company Without Charging UsersAug 5, 2019
“We believe true equality is when spending more can’t buy you a better education.” – Duolingo founders When the language learning software company Rosetta Stone went public in 2009, they… Keep reading
That Time a Guy Cornered the Liquid Soap Market by Sneakily Buying Nearly Every Hand Soap Pump Available in the WorldJul 4, 2019
Robert R. Taylor is a name you’ve probably never heard before. But this serial entrepreneur made his mark on the world of business by coming up with several products you are almost certainly very familiar with. Today we’re going to talk about, on the surface, the most boring of those- liquid hand soap. Something you can thank Mr. Taylor and [...]
Startup idea checklist | defmacroJun 24, 2019
I’ve been tinkering with different startup ideas and needed a good checklist to think through them. There are great templates for this already: The YC application, Amazon’s internal press release, and Sequoia’s Writing a Business Plan. I found myself mixing and tweaking these templates because they don’t exactly match my model of the world, so I wrote up my own list.
Pitt and CMU To Create Autonomous Robotic Trauma Care SystemJun 16, 2019
CMU and the University of Pittsburgh School of Medicine have received funding from the U.S. Department of Defense to create an autonomous trauma care system that fits in a backpack — or, as shown here, a folded stretcher.
The Camera as the App LayerMay 12, 2019
Your phone increasingly knows what you’re taking a picture of. And which apps you have installed. So…
What Seven Years at Airbnb Taught Me About Building a BusinessApr 27, 2019
Create strong culture, stay laser-focused on problems, and set wildly ambitious goals
The Truth About the Scooter Economy — An Insider’s PerspectiveApr 20, 2019
There is a story arc of the electric scooter market that took the world by storm in 2018, was second-guessed late in the year and has…
Stupid Advice: “You’ll Never Be Rich Working for Somebody Else”Mar 25, 2019
Is being an entrepreneur really necessary for success? Here's why you should ignore the hype and how to pick your career path instead.
Iterative Development: The Secret to Great Product Launches — MindKMar 5, 2019
Elon Musk’s SpaceX is winning the space race. His secret to success lay in the iterative development process, borrowed straight from the software industry.
“She Never Looks Back”: Inside Elizabeth Holmes’s Final Months at TheranosFeb 21, 2019
At the end, Theranos was overrun by a dog defecating in the boardroom, nearly a dozen law firms on retainer, and a C.E.O. grinning through her teeth about an implausible turnaround.
9 Habits of World Class StartupsFeb 5, 2019
A discussion of the 9 core operating principles that world class companies tend to embrace, by NFX Managing Partner James Currier.
Don't Pay to Acquire Your First UsersJan 26, 2019
Recently, a founder asked to chat with me about SEO. During our call, the founder - whose startup is backed by a top-tier VC - said to me “I assume that you acquired your first users through paid marketing.” Really? Is this an assumption nowadays? Since we’ve raised money
Starting A Skin Care Product Business as a Middle School TeacherJan 22, 2019
Hello! Who are you and what business did you start?Hi there! I’m Leslie, the founder of Almond Clear, a line of skin care products that are formulated with mandelic (almond) acid (MA). MA is an amazing remedy for a range of skin concerns, from clearing up acne and folliculitis, to decre...
How PopSockets Prospered after Leaving AmazonJan 13, 2019
PopSockets opted not to be a direct vendor to Amazon. Instead, it chose one major reseller to represent it on the marketplace. But, Amazon would not allow it. So, PopSockets walked away.
Speed as a HabitJan 13, 2019
All things being equal, speed will determine whether your company succeeds or not. Here's how to make it core to your culture.
More Start-Ups Have an Unfamiliar Message for Venture Capitalists: Get Lost (Published 2019)Jan 11, 2019
Frustrated with the perverse incentives of fast growth, founders are criticizing the investment model that built the tech industry as we know it.
CEO interview series: Michael Seibel on leadership attributes in successful startup leadersDec 21, 2018
Explore a glimpse into how M. Seibel thinks about leadership attributes and some contrarian views that may be at the heart of how he picks great companies.
Project Repat: $10MM Business Making Quilts From Old T-ShirtsOct 7, 2018
Hello! Who are you and what are you working on?My name is Ross Lohr, and I’m a co-founder of Project Repat. We make it easy and affordable for customers to turn their memorable t-shirts into a one of a kind, custom t-shirt quilt backed with cozy fleece. People buy quilts from Project Re...
Don’t Fuck Up the CultureSep 28, 2018
On Monday, October 21, 2013, I sent this letter to our entire team at Airbnb. I have decided to publish this in the event it is helpful to entrepreneurs building their cultures. Our next team meeting…
https://funduf.com/Sep 14, 2018
How Much Energy Can You Store in a Stack of Cement Blocks?Sep 12, 2018
It's not a trick question: You can make a battery out of concrete by storing gravitational potential energy.
The founder of Pinboard on why understanding fandom is good for business -Sep 9, 2018
Maciej Cegłowski found fans where they were, and won their hearts
Memory app Timehop built an ad server to go from near-death to profitableAug 31, 2018
Timehop's 15-person team ended up creating its own ad server. A year and a half later, CPMs have grown from $2 to $28.
Starting An Amazon FBA Business - Starter StoryAug 13, 2018
Hello! Who are you and what are you working on?My name is Raymond Furgason, and I am the Creator and Founder of Carbage Can. The Carbage Can is a car trash can. It’s so easy to gather common trash in your vehicle - tissues, food wrappers, receipts, coffee cups… the list is endless. We’r...
This technology could fundamentally change our relationship to electricityJul 26, 2018
An “operating system” for power could double the efficiency of the grid.
The many twists and turns of hardwareJul 7, 2018
I don’t think anyone would disagree that building a successful hardware business has quite literally many more moving parts than software.
An Ohio Startup Rebuilds Lives One Piece of Fried Chicken at a Time - POLITJul 2, 2018
A millennial entrepreneur hires from inmates and homeless people who struggle to find work even in a strong economy.
Why Entrepreneurship Programs for Engineers FailMay 12, 2018
Entrepreneurship is an increasingly core component of commercial work, and one for which students in highly technical fields are ill-prepared. Blended entrepreneurial programs (BEPs) are attempting to answer this need by merging university-level entrepreneurial education with discipline-focused degrees in STEAM fields. It hasn’t been easy. STEAM students often show a gravitation toward certainty and a low tolerance for risk — personal characteristics at odds with those traditionally associated with entrepreneurs.
Here's What Happened When I Opened a Restaurant in PortlandOct 10, 2017
We closed Renard down more than nine months ago, but every night (and often early in the morning), first thing after waking up, I lie there and write the story of my failure over, and over and over again.
Building an Empire with a Single Brick: Meet Patrick McKenzie — Bench — BloOct 3, 2016
Accounting, bookkeeping, and tax tips to help you understand your small business finances.
Boom Supersonic's XB-1 prototype aces 2nd test flight (photos)Sep 24, 2004
The flight tested the vehicle's landing gear and roll damper for improved handling.
Synthetic diamond company Element Six to lead DAPRA Ultra-Wide Bandgap Semiconductors programSep 24, 2003
Will help to develop substrates, device layers, and junctions
statecraft
The Greatest Double Agent Ever: How a Spanish Chicken Farmer Became the Most Important Double Agent in WWIIMar 2, 2026
Juan Pujol García was one of the rare individuals whose participation in World War II made him a Member of the Order of the British Empire and earned him the Iron Cross. He gained that unlikely distinction in perhaps the riskiest of all roles in espionage, that of a double agent.
Who Is Paying for the 2025 U.S. Tariffs? - Liberty Street EconomicsFeb 13, 2026
Over the course of 2025, the average tariff rate on U.S. imports increased from 2.6 to 13 percent. In this blog post, we ask how much of the tariffs were paid by the U.S., using import data through November 2025. We find that nearly 90 percent of the tariffs’ economic burden fell on U.S. firms and consumers.
How a small island capital reimagines the bureaucratic state | Aeon EssaysJan 20, 2026
Buka Town in Bougainville shows how bureaucratic states could be reimagined, not as concrete buildings but as living gardens
An autopsy of Venezuela’s $2 billion Russian S-300VM missile systemJan 11, 2026
Venezuela purchased Russia's S-300VM air defense system because it was supposed to be an impenetrable umbrella. It was full of holes.
We Are Building the Wrong FactoriesDec 31, 2025
Why Silicon Valley's Defense Obsession is Missing the Real Path to American Reindustrialization
How Did the CIA Lose a Nuclear Device? - SlashdotDec 15, 2025
Sixty years after a team of American and Indian climbers abandoned a plutonium-powered generator on the slopes of Nanda Devi, one of the world's most forbidding Himalayan peaks, the U.S. government still refuses to acknowledge that the mission ever happened. The device, a SNAP-19C portable generator...
Teaching when to trustDec 12, 2025
As fake news accelerates, we need to teach our children how to think critically. Finnish schools are leading the charge
A Brief History of NSA Backdoors.Nov 28, 2025
‘Resistance is when I put an end to what I don’t like’: The rise and fall of the Baader-Meinhof gangSep 18, 2025
In the 1970s, the radical leftwing German terrorist organisation may have spread fear through public acts of violence – but its inner workings were characterised by vanity and incompetence
Why Is Moscow So Weird?Sep 7, 2025
Why so far north? So cold? Why not on a big river or a coast? Why the biggest city in Europe? Why the capital of the biggest country on Earth?
TheCollectorAug 15, 2025
The Mongols are known for their brutality when it came to warfare. But just how brutal were they?
Order of Operations in a Regime ChangeAug 15, 2025
A review of Collapse: The Fall of the Soviet Union, by Vladislav Zubok
Nukes, Nubs And Coners: The Unique Social Hierarchy Aboard A Nuclear SubmarineAug 11, 2025
Getting assigned to your first sub doesn't make you a submariner and once you become one you'll find yourself in a social structure unlike any other.
The Secret History of Tor: How a Military Project Became a Lifeline for PrivacyAug 8, 2025
A story of secrecy, resistance, and the fight for digital freedom.
The Epic Story of El Cid (Rodrigo Díaz de Vivar)Jul 31, 2025
Read on to learn all about El Cid, one of the most revered figures in European history.
Medieval Battles Where Archers Ruled the Field | TheCollectorJul 24, 2025
Cavalry, armored and using superior mobility, dominated the medieval battlefield. That is, until archers with powerful bows and better military tactics won key battles, demonstrating otherwise.
It’s hunting season in orbit as Russia’s killer satellites mystify skywatchersJul 16, 2025
“Once more, we play our dangerous game—a game of chess—against our old adversary.”…
7 Medieval Weapons & Armor | TheCollectorJul 6, 2025
The Medieval period was a time of constant innovation, with a wide array of weapons and armor developed to give warriors an edge on the battlefield.
How the Hittites Used Fear & Strategy to Create a Bronze Age Empire | TheCollectorJul 5, 2025
The Hittites built a successful empire in the ancient Near East. Their military success was based on their religion, technology, and military tactics.
The Siege Warfare That Shaped Ancient Greece & Rome | TheCollectorJul 5, 2025
While battles got the most attention, sieges were an important warfare tactic in ancient Greece and Rome. It took time and ingenuity to breach city walls.
Hannibal’s Master Class in Ambush Tactics at the Battle of Trasimene | TheCollectorJun 30, 2025
On June 21, 217 BCE, an entire Roman army marched into an ambush set by the Carthaginian general Hannibal Barca.
Ukraine’s New Way of WarMay 27, 2025
American weapons are important, but Ukrainian drones have changed everything.
How Humans Wielded Insects in Early Battlefield SkirmishesMay 22, 2025
Insects are among the oldest of weaponry
Collections: Why Archers Didn’t Volley FireMay 5, 2025
This week we’re looking at a specific visual motif common in TV and film: the arrow volley. You know the scene: the general readies his archers, he orders them to ‘draw!’ and then…
How a Forgotten Battle Created a More Peaceful WorldApr 17, 2025
The legacy of Solferino is in more danger than ever
On War, by General Carl von ClausewitzApr 1, 2025
The Secret History of America’s Involvement in the Ukraine WarMar 30, 2025
This is the untold story of America’s hidden role in Ukrainian military operations against Russia’s invading armies.
WWII Bombers: The Aircraft That Shaped the WarFeb 17, 2025
World War II is when the bomber came of age, and such aircraft could impact the course of war. All the powers would field planes whose names would become synonymous with this conflict.
A Spy Satellite You’ve Never Heard of Helped Win the Cold WarJan 21, 2025
Engineers at the Naval Research Lab launched a spy satellite program called Parcae and revolutionized signals intelligence at the height of the Cold War. The program relied on computers to sift through intelligence data, providing a technological edge at a pivotal moment in the Cold War.
The Invisible Russia-Ukraine BattlefieldJan 18, 2025
In Russia’s war against Ukraine, electronic warfare, including signal-jamming, anti-drone weapons, and innovative protections for critical military systems, has become a key piece of the conflict.
Will Even the Most Advanced Subs Have Nowhere to Hide?Dec 16, 2024
The scramble to preserve submarine stealth in an age of AI and all-seeing sensors
How to Stage a CoupDec 15, 2024
"I'm now going to offer you a megalomaniac explanation of the course of events"
Protecting Undersea Internet Cables Is a Tech NightmareDec 5, 2024
A recent, alleged Baltic Sea sabotage highlights the system’s fragility
An uncivil civil warNov 8, 2024
Civil war is in the air. Why not revisit one that has already taken place?
A Beginner’s Guide to Identifying Explosive Ordnance in Social Media ImagerAug 1, 2024
Learn to identify some of the more common types of unexploded ordnance (UXO) in online images using open-source tools and resources.
A Journey Into Rebel-Held MyanmarJul 28, 2024
Seventeen years after I left my post as the U.N.’s representative in Myanmar, I crossed into the rebel-held part of the country to witness new forms of local governance emerge amid a dramatic revolution.
Cyber Security: A Pre-War Reality CheckMay 20, 2024
This article is part of a series on (European) innovation and capabilities. This is a lightly edited transcript of my presentation today at the ACCSS/NCSC/Surf seminar ‘Cyber Security and Society’. I want to thank the organizers for inviting me to their conference & giving me a great opportunity to talk about something I worry about a lot. Here are the original slides with notes, which may be useful to view together with the text below.
The Scientist and the A.I.-Assisted, Remote-Control Killing MachineMay 4, 2024
Israeli agents had wanted to kill Iran’s top nuclear scientist for years. Then they came up with a way to do it with no operatives present.
You Can Still Die From World War I Dangers in France's Red ZonesApr 28, 2024
The Great War never ended in some old battlegrounds.
‘The machine did it coldly’: Israel used AI to identify 37,000 Hamas targetApr 4, 2024
Israeli intelligence sources reveal use of ‘Lavender’ system in Gaza war and claim permission given to kill civilians in pursuit of low-ranking militants
Kim Jong Un faces annihilation in nearly all Korea war scenariosApr 3, 2024
Although North Korea has a manpower advantage, the bulk of its forces rely on 'increasingly obsolete equipment” dating back to Soviet era.
Buying Satellite Imagery of Ukraine Is Dangerously EasyMar 18, 2024
A Ukrainian military source believes that Russia’s long-range strikes are aimed using satellite imagery provided by U.S. companies.
Inside America’s Shadow War With IranMar 6, 2024
There’s another Middle East conflict going on, and U.S. soldiers are on the front lines of it.
Russia’s shadow tanker fleet runs into troubleFeb 12, 2024
Every day, millions of barrels of oil are being transported by ships with obscured ownership and origin. But is the game up?
A Russian Bank Account May Offer Clues to a North Korean Arms DealFeb 6, 2024
Moscow may be trying to help Pyongyang with access to the international financial system in exchange for missiles and ammunition, U.S.-allied intelligence officials suggest.
The 5 best books about Special Forces — according to Green BeretsFeb 4, 2024
We asked a few Green Berets what books they recommend, and they delivered. You can't go wrong reading these five books about Special Forces.
Hagakure: Book of the Samurai - hagakure.pdfSep 29, 2023
How to Make Russia Really Pay for Invading UkraineSep 21, 2023
The United States and our allies have every legal right to transfer frozen Russian assets to Kyiv.
1990 fm 22 100Aug 7, 2023
XQ-58 Valkyrie Solves Air Combat ‘Challenge Problem’ While Under AI ControlAug 4, 2023
Algorithms used in the XQ-58's AI brain were trained millions of times in simulated environments before being put to the test in reality.
Inside an Air Force Pararescue mission in the middle of the Pacific OceanAug 3, 2023
An inside account of how Air Force pararescue jumped into the middle of the Pacific Ocean to reach an injured sailor.
In a Mutiny or Coup, the Scramble to Persuade and Pick a Side Is CriticalJul 1, 2023
Experts say plotters’ most crucial task is to convince other soldiers and officers that success is assured. Plus, our columnist’s recommendations for reading up on coups, and modern Russia.
One Of Rome’s Most Devastating Military Defeats Was Masterminded From WithiMay 12, 2023
Having served in the Roman army under a risky conscription scheme, Arminius's ambush in Teutoburg Forest inflicted massive damage to the Empire.
Our Best Look Yet At The Massive Ordnance Penetrator Bunker Buster BombMay 4, 2023
The bomb's marking show it is less than 1/5th explosive by weight and that skews even more when the fins and guidance kit are added.
China’s Massive Fleet Of Radar Planes And The Strategy Behind ItApr 6, 2023
China’s path to fielding airborne early warning aircraft wasn't straightforward, but has yielded big results that speak to a wider strategy.
Hacker NewsMar 31, 2023
In April 1986, following an attack on American soldiers in a Berlin disco, President Reagan ordered the bombing of Muammar Qaddafi's terrorist camps in Libya. My duty was to fly over Libya and...
How to Take Out a SentryMar 17, 2023
When this week’s podcast guest, John Lisle, talked about William Fairbairn in our discussion of the Office of Strategic Services, I was duly intrigued. I wanted to learn more about the work of this fascinating character, so I bought a complete compendium of his books. Fairbairn was a Royal Marine, learned multiple martial arts, and […]
The Military Adventures of Alexander the Great: An Animated Documentary ShoMar 5, 2023
To learn about history is to learn about war, or so it can feel when you go far back enough in time. And in any era of antiquity, few could have matched Alexander the Great's mastery of that art.
‘Something Was Badly Wrong’: When Washington Realized Russia Was Actually Invading UkraineMar 2, 2023
A first-ever oral history of how top U.S. and Western officials saw the warning signs of a European land war, their frantic attempts to stop it — and the moment Putin actually crossed the border.
Secretive military space agency stepping out of the shadows - SpaceNewsFeb 23, 2023
When a SpaceX Falcon Heavy launched a national security mission to geostationary Earth orbit Jan. 15, the Space Force revealed that three of the payloads onboard were developed by one of its most s…
This Isn’t A Sci-Fi Prop, It’s A Doomsday Navigator For America’s Deadliest Cold War ICBMFeb 7, 2023
The Peacemaker missile’s navigation suite featured the most precise and complex self-contained gyro system ever built. It had 19,000 individual parts.
This SR-71 Blackbird Cockpit Tour Is The Most Fascinating Thing You’ll See All WeekFeb 2, 2023
Veteran SR-71 pilot gives a highly detailed tour of both cockpits and shares incredible recollections from his time flying the legendary jet.
The B-21 Raider Is And Isn’t A ‘B-2 Spirit 2.0’Jan 12, 2023
The B-21 is a 'B-2 2.0' in some ways, and that is a major feature, not a bug, but in other ways it is truly revolutionary.
Investigating the Nord Stream Pipeline SabotageDec 27, 2022
As investigators piece together clues, Russia has quietly taken steps to begin expensive repairs on the giant gas pipeline, complicating theories about who was behind September’s sabotage.
Trapped in the Trenches in UkraineDec 26, 2022
Along the country’s seven-hundred-mile front line, constant artillery fire and drone surveillance have made it excruciatingly difficult to maneuver.
The True Story of Lawrence of ArabiaDec 16, 2022
His daring raids in World War I made him a legend. But in the Middle East today, the desert warrior’s legacy is written in sand
Five Kilometres of Destruction: Satellite Imagery Reveals Extent of DamageNov 19, 2022
A September attack in northern Burkina Faso left dozens dead. Satellite imagery helps show the true scale of the incident.
https://cepr.org/voxeu/columns/how-war-was-wonNov 15, 2022
Why the C-17 is the military’s flying hospital of choiceNov 8, 2022
"We bring the full hospital to the patient.”
Secretive B-21 bomber to be revealed to public in December - Breaking DefenSep 22, 2022
The first B-21 is set to make its inaugural flight in 2023, but the public will get to finally see it in December.
The Despotism of Isaias Afewerki | Alex de WaalSep 9, 2022
Afewerki’s attack on Tigray is the culmination of the Eritrean dictator’s ambition to become master of the Horn of Africa.
How Ships and Forts Created Western DominanceSep 5, 2022
How could tiny nations such as Portugal and the Netherlands challenge vast empires like China and India in the age of sail?
The Return of Privateering?Sep 5, 2022
TexasSignal: Rep. Lance Gooden, a Republican who represents Texas’ 5th District, has introduced legislation that would allow U.S. citizens to seize the yachts, jets, and other property belonging to Russian oligarchs who have been sanctioned in response to the invasion of Ukraine. In other words, privateering. …In the age of sail, it was common for […]
The shit-posting, Twitter-trolling, dog-deploying social media army taking on Putin one meme at a timeSep 5, 2022
The North Atlantic Fellas Organization is fighting the Kremlin’s propaganda machine — and winning.
Russia Pulls Its ‘Syrian’ S-300 SAM Battery, Ships It To Black SeaAug 28, 2022
Russia 'gifted' Syria the S-300 after a friendly fire incident, but it remained in Russia control and now it's heading towards Ukraine.
Military Drone Swarms and the Options to Combat Them | Small Wars JournalAug 24, 2022
The tactical use of drones is expanding as demonstrated from the past 100 years. Drones were first created in the U.S. and United Kingdom during World War I, though neither country employed them during the war. In World War II, the Nazis created the V-1 to serve as a missile. The U.S. employed drones for surveillance missions during the Vietnam War and utilized them frequently for counter-insurgency surveillance and strikes in Iraq and Afghanistan. Drones are now developed in and utilized by over 100 countries and non-state actors. Drone capabilities, manufacturers, and customers will likely continue increasing and a tactical shift in utilizing drone swarms is emerging. This article provides a broad overview on the current state of drones for commercial and military use, the impact drone swarms can play in the military environment, and the options available to combat swarms.
From whistling arrows and trumpeting elephants to battle cries and eerie horns, ancient soldiers used sound to frighten and confuse their enemiesAug 5, 2022
Since antiquity people have harnessed sound as a weapon, and the practice continues – in new high-tech ways – today.
Air Support in a Backpack: The SwitchbladeJul 29, 2022
In March 2022, it was reported that the United States was sending over some Switchblades to Ukraine.
After Nearly 30 Years, This New Plasma Weapon Just Might WorkJul 12, 2022
After decades of promise and failure, a new plasma weapon emerges.
Blocked persons and letters of marqueJul 5, 2022
What are letters of marque and reprisal, and who is on the US’s list of Block Persons?
Thirty-Six StratagemsJun 28, 2022
The Thirty-Six Stratagems is a Chinese essay used to illustrate a series of stratagems used in politics, war, and civil interaction.
THE MOST DANGEROUS PLACE ON EARTHJun 24, 2022
In a showdown between Russia and NATO, the ‘Suwałki Gap’ would likely be the first point of contact.
The Return of Industrial Warfare | Royal United Services InstituteJun 23, 2022
Can the West still provide the arsenal of democracy?
The Project Gutenberg eBook of Simple Sabotage Field Manual, by Office of Strategic ServicesJun 13, 2022
UkraineX: How Elon Musk’s space satellites changed the war on the groundJun 11, 2022
From artillery strikes to Zoom calls, the tech billionaire’s internet service has become a lifeline in the fight against Russia.
“I'm Still Alive but Sh*t Is Getting Wild”: Inside the Siege of the AmarulaJun 8, 2022
When vast gas reserves were discovered off the idyllic coast of northern Mozambique, a crew of roughnecks flew in from around the world to make their fortunes. But in March 2021, Islamist rebels attacked, and the foreigners and thousands of Mozambicans were abandoned. Two hundred holed up at the Amarula Lodge, where the expats faced a choice: save themselves, or risk it all to save everyone. As oil and gas fuel a new war in Europe, Alex Perry pieces together, shot by shot, a stunning morality tale for the global economy.
How Submarines Regularly ‘Fight To The Death’ Off The BahamasMay 29, 2022
Just like how Navy planes have vast instrumented ranges for aerial wargames, submarines have one too, and it is arguably even more impressive.
The U.S. Air Force Is Gradually Rebuilding Its B-52 Bombers From The Rivets OutMay 12, 2022
In seven years or so, if everything goes according to plan, the U.S. Air Force should get what looks like a new bomber.
How Ukrainians Saved Their Capital | The New YorkerMay 5, 2022
When Russia attacked Kyiv, Ukrainians dropped everything to protect the city—and to ease one another’s suffering.
Modern Submarine Torpedo Attacks Are Nothing Like What You See In The MoviesApr 28, 2022
Breaking down how modern torpedo attacks really go down and the types of torpedoes that are used to sink ships and other submarines.
The Games We Play: Understanding Strategic Culture Through Games - Modern War InstituteMar 27, 2022
This article is part of the contribution made by the US Army War College to the series “Compete and Win: Envisioning a Competitive Strategy for the Twenty-First Century.” The series […]
Feeding the Bear: A Closer Look at Russian Army Logistics and the Fait Accompli - War on the RocksMar 10, 2022
Editor's note: Don't miss our comprehensive guide to Russia's war against Ukraine. Russia’s military buildup along the border with Ukraine has
These ‘Saint Javelin’ stickers raised $470,000 for Ukraine aid in a weekMar 8, 2022
A Canadian filmmaker has raised thousands of dollars to help Ukrainian refugees by selling missile launcher-themed stickers.
How China turned a prize-winning iPhone hack against the UyghursDec 31, 2021
An attack that targeted Apple devices was used to spy on China’s Muslim minority—and US officials claim it was developed at the country’s top hacking competition.
Russia’s Aggression Against Ukraine Is BackfiringDec 29, 2021
Putin’s military moves are rallying Ukrainians and unifying NATO.
Qassem Suleimani and How Nations Decide to KillDec 28, 2021
The political, moral, and visceral considerations behind assassination.
The Looming Threat of a Nuclear Crisis with IranDec 28, 2021
The Biden Administration faces a potential confrontation with a longtime rival that is better armed and more hard-line than at any time in its modern history.
Why Arabs Lose Wars :: Middle East QuarterlyDec 27, 2021
Arabic-speaking armies have been generally ineffective in the modern era. Egyptian regular forces did poorly against Yemeni irregulars in the 1960s.1 Syrians could only impose their will in Lebanon during the mid-1970s by the use of overwhelming
Ho Chi Bear and the RavensJun 4, 2021
Dubbed the Ravens, misfit American pilots in Vietnam learned they could fly, fight, and drink as they pleased in a CIA-sponsored secret war. Just one catch: They answered to General Vang Pao.
Mahbere Dego: Clues to a Clifftop Massacre in EthiopiaApr 2, 2021
Three weeks ago, videos surfaced online showing a massacre in Ethiopia's Tigray Region. These videos have now been geolocated to the town of Mahbere Dego.
AI-Controlled F-16s Are Now Working As A Team In DARPA's Virtual DogfightsMar 23, 2021
The dogfighting AI DARPA is developing is set to make the challenging migration from a synthetic environment to the real world soon.
Palantir’s God’s-Eye View of AfghanistanJan 22, 2021
The company’s software can sift through enormous amounts of data, and those metrics can be used to make life-or-death decisions.
When You’re Outnumbered: Lessons from Two British Masters of Irregular Warfare - War on the RocksJan 1, 2021
A British nudist who liked to give press briefings wearing only a pith helmet and boots and a dapper Scotsman partial to wearing kilts with his dress
Jianruiying (1); introduction | Mandarin MansionMar 24, 2020
The Jianruiying were a small elite unit of specially selected Manchu soldiers under the Qing dynasty. They were trained to overcome rough terrain, obstacles, and rivers in order to commence special attacks towards fortifications. In some ways, they are comparable to today's special forces.
Speed KillsJun 20, 2019
Development of hypersonics is moving so quickly that it threatens to outpace any real discussion about the potential perils of such weapons, including how they may disrupt efforts to avoid accidental conflict, especially during crises.
The Lessons Of Dien Bien Phu | Hoover InstitutionNov 7, 2018
The most consequential military engagement in Southeast Asia in the 20th century is the 1954 Battle of Dien Bien Phu. It was fought ostensibly between the French and the communist-led Vietmin at Dien Bien Phu, an obscure valley bordering China, in the remote northwestern part of what was then French Indochina. The battle ended with a humiliating defeat for the French, which brought down the French government, ended French colonial rule in Asia, ushered in America’s epic military involvement in the region for decades to come, and fundamentally changed the global geostrategic landscape.
What are some things soldiers aren’t allowed to do?Jan 10, 2018
James Palmer's answer: What are some things soldiers aren’t allowed to do? This question allows me to post one of my favorite things from the Army: 213 Things Skippy is not Allowed to do in the Army. As the story goes, a soldier, nicknamed “Skippy” recorded a list of things his chain of comman...
The American Scholar: Tales of War and Redemption - Phil KlayDec 5, 2017
Even in the face of the ultimate human failing, we must be responsive to suffering and attuned to joy
static-sites
Introduction to Eleventy, a Modern Static Website GeneratorDec 21, 2024
We show how Eleventy provides a nice flowing web dev process that works with existing technologies while steering you into good practices.
Observable 2.0 | ObservableFeb 16, 2024
Launch of Observable 2.0: an open-source tool for building data apps and dashboards with a seamless developer workflow and optimal user experience.
Top 20 Free Static Web Hosting Services in 2024 ⚡️Feb 11, 2024
Top 20 Free Static Web Hosting Services in 2024 ⚡️ Hostinger :- Get Hosting on Big Discount...
20 Frameworks to Improve Your Web DevelopmentMay 29, 2023
In the continually evolving world of web development, frameworks play an important role in automating...
Top ten popular static site generators (SSG) in 2023Feb 18, 2023
Static sites were previously composed of hard-coded files comprising HTML templates, and maintaining...
The Top Five Static Site Generators (SSGs) for 2023 — and when to use themJan 17, 2023
There’s no shortage of static site generators (SSGs) to choose from, though I’ve limited the below...
steel
Can Wood Replace Steel? Chemically Modified Superwood Makes a Bold CaseAug 8, 2025
InventWood just cracked the code on something that sounds like science fiction. They've figured out how to make wood stronger than steel by restructuring it at the molecular level. This isn't your typical engineered lumber story. We're talking about a material that delivers 50% more tensile strength than steel while weighing dramatically less. The Maryland
Exclusive: Electra found a cheap, clean way to purify iron, and it’s raising $257M to make it happen | TechCrunchJan 3, 2025
Electra has raised $76.3 million to clean up the dirty ironmaking industry, TechCrunch has learned. The startup has developed a novel method of using
The Four-Horse Race to Decarbonize Steel: Strategies, InnovationsApr 14, 2023
Discover the 'four-horse race' among leading manufacturers to decarbonized steel their operations. Explore the strategies and technologies.
Low-background steelAug 27, 2022
Post-nuclear steel is a little bit radioactive, so for some specialist jobs we need to find a source of steel from before the bomb
stickers
3 Best Laptop Stickers Sites For DevelopersMar 16, 2022
Laptop stickers add color and fun to your laptop. They offer a touch of festivity and brightness to...
These ‘Saint Javelin’ stickers raised $470,000 for Ukraine aid in a weekMar 8, 2022
A Canadian filmmaker has raised thousands of dollars to help Ukrainian refugees by selling missile launcher-themed stickers.
Stickers | Fine Art AmericaMar 19, 2021
Accessorize your life with unique stickers from independent artists! Our vinyl stickers are available in four different sizes and are kiss-cut to create a 1/8" border around the perimeter of each design. Each sticker has an adhesive backing with plenty of stickiness to cling to any smooth surface while still being easy to remove.
The 51 coolest laptop stickers of all time - TechRepublicSep 7, 2019
Because your hardware deserves to look even cooler.
When Local Roller Rinks Had Their Own Collectible StickersAug 24, 2018
Distinctive designs from the "Golden Age" of roller-skating.
stickiness
OnlyFans Sticky Business ModelFeb 17, 2025
PLUS: DoorDash, Apple Intelligence Ads, Walgreens Madness.
The Dark Side of UX: Lessons from OnlyFans’ Addictive DesignFeb 17, 2025
OnlyFans leverages a meticulously crafted UX to create a powerful sense of intimacy and exclusivity, captivating users while sparking ethical debates about manipulation and exploitation.
Made to Stick: Summary & Examples + PDF | The Power MovesJul 18, 2022
In This Made To Stick summary you will learn exactly how to make your ideas persuade people and "stick" into their minds.
stoicism
https://dailystoic.com/9-core-stoic-beliefs/Mar 14, 2025
By: Stephen Hanselman [1] If You Want a Smooth Flow of Life, Live According to Nature At the core of Stoic teaching is the founder Zeno’s idea that a smooth flow of life (euroia biou) comes from “living in agreement with nature.” It was the second leader of the Stoics, Zeno’s student Cleanthes, who added the last part, “with nature” (te phusei; or […]
Marcus Aurelius’ 9 Rules for Living a Stoic Life: Presented by Ryan HolidayOct 29, 2024
Zoe Williams profiled Ryan Holiday, a one-time public-relations whiz-kid who's reinvented himself over the past decade as a speaker for the dead: specifically Epictetus, Seneca, and above all Marcus Aurelius, the figureheads of the ancient school of philosophy we now know as Stoicism.
The Two Ways of DoingFeb 1, 2024
Imagine two friends, Steve and Fred, chatting at a New Year’s party. Both of them resolve to abstain from alcohol for January, and attend the gym regularly. They shake on it. They don’t want to let each other down, and they both fulfill their commitments. Afterward, Steve keeps up his routine, and Fred soon drifts back to too much beer
Life Is Not Short | DKB ShowJun 29, 2022
The most surprising thing is that you wouldn’t let anyone steal your property, but you consistently let people steal your time, which is infinitely more valuable.
How to Be a StoicJun 25, 2022
Born nearly two thousand years before Darwin and Freud, Epictetus seems to have anticipated a way out of their prisons.
The ancient guide for uncertain timesMar 13, 2022
For many people, the world is in a state of upheaval that can feel difficult to cope with, but can the teachings of the Stoics help in these troubling times?
The Revival of StoicismJul 5, 2021
Everyone from Silicon Valley billionaires to self-help enthusiasts is repurposing Stoicism for our modern age, with results that are good, bad, and highly indifferent.
Man’s Search For Meaning By Viktor Frankel: Book Summary, Key Lessons and Best QuotesMay 15, 2021
Book summary for 'Man's Search for Meaning' by Viktor Frankl. Included is book overview, key takeaways, best quotes, and more.
Ego Is the Enemy MedallionMar 8, 2021
"Ego sucks us down like the law of gravity." —Cyril Connolly Inspired by the international bestseller Ego Is the Enemy by Ryan Holiday, Daily Stoic is excited to introduce the Ego Is the Enemy medallion. Ego is that outsized sense of self-importance, that malignant self-absorption, a belief that one is somehow inherent
The Highest Good: An Introduction To The 4 Stoic VirtuesAug 4, 2020
Summum Bonum was the expression from Cicero, Rome’s greatest orator. In Latin, it means “the highest good.” And what is the highest good? What is it that we are supposed to be aiming for in this life? To the Stoics, the answer is virtue. They said that everything we face in life was an opportunity […]
Marcus Aurelius: 3 Rules For LifeApr 29, 2019
The Emperor-Philosopher Marcus Aurelius, once the most powerful man on earth, was also a practitioner of Stoicism. He had 3 rules for life.
Meditations - WikipediaMar 5, 2019
Meditations is a series of personal writings by Marcus Aurelius, Roman Emperor from AD 161 to 180, recording his private notes to himself and ideas on Stoic philosophy.
Stoicism As A Way Of LifeDec 20, 2018
If you’re interested in using the ideas from Stoicism as a way of life, feel free to listen to my podcast series called Practicing Stoicism.
Anger is temporary madness: here’s how to avoid the triggers | Aeon IdeasOct 15, 2017
Anger is temporary madness: to avoid the triggers, follow the Stoics’ advice and achieve a kind of serenity
storyboards
Storyboards Help Visualize UX IdeasJun 11, 2024
Storyboards are visual representations of UX stories, which capture attention, provide clarity, and inspire us to take action.
Enterprise Design ThinkingJun 11, 2024
Use these design thinking activities in your daily work or your next design thinking workshop.
Storyboarding UX Part 1 An Introduction - Johnny HollandMar 28, 2022
Storyboarding UX Part 1 An Introduction Welcome to the immersive world of UX design where every click, swipe, and scroll tells a story.
Download New Storyboarding Software That’s Free & Open SourceAug 30, 2019
Quick tip: The new software package, Storyboarder, makes it 'easy to visualize a story as fast you can draw stick figures.' You can create a story idea without actually making a full-blown movie and see how it looks. Storyboarder is free. It's open source.
storytelling
The Electric TypewriterFeb 7, 2026
Great articles and essays by the world's best journalists and writers.
We are all le Carré’s people nowJan 13, 2026
Once again, John le Carré is back. The TV series inspired by his post-Cold War novel, The Night Manager, is returning to our screens on New Year’s Day. There’s an exhibition about his “tradecraft” on
Killing the Dead by John Blair review – a gloriously gruesome history of vampiresJan 11, 2026
Shroud-chewers, lip-smackers and suckers populate this fascinating study of ‘the unquiet dead’ across the centuries
Why does every film and TV series seem to have the same plot? | Aeon EssaysJan 3, 2026
The three-act ‘hero’s journey’ has long been the most prominent kind of story. What other tales are there to tell?
Casablanca and the Cure for Cynicism | The Art of ManlinessDec 15, 2025
I finally got around to watching Casablanca this year. I’m a little embarrassed it took this long. I think the delay was due to the fact that I already thought I’d seen it, on account of seeing clips of it so often. It’s part of the ether of pop culture. I knew all the famous […]
Anatomy of a Ghost Story: John Carpenter’s The Fog (1980)Nov 21, 2025
Enjoy the videos and music you love, upload original content, and share it all with friends, family, and the world on YouTube.
What Are Some of the Most Prominent Medieval Myths? | TheCollectorOct 1, 2025
Explore some of the best-known medieval myths, about legendary characters and perhaps even real people.
The God Man - Full Film (9.5min)Aug 27, 2025
Check out the film's original score by Jason Stamatyades here: https://jasonstam.bandcamp.com/album/the-god-man-original-motion-picture-scoreThe God Man Full...
Jim Valvano’s ESPYs speech touched hearts. It’s also a masterclass in public speakingAug 19, 2025
A public speaking expert watched Valvano's speech for the first time and called her dad. “Have you ever seen this?” she asked. “Oh my God."
How Steven Soderbergh Directs a Scene & Makes It GreatMay 19, 2025
Steven Soderbergh was one of the earliest filmmakers to break out in what's now called the 'Indiewood' movement of the nineteen-nineties. He was early enough, in fact, to have done so in the eighties, with the Palme d'Or-winning Sex, Lies, and Videotape.
Leading a Meaningful Life through Storytelling SkillsMar 7, 2025
People who are rated as good storytellers exhibit a purpose-oriented mindset and big-picture thinking more often than others
Opinion | A.I. Is Coming for Hank Azaria’s ‘Simpsons’ VoicesFeb 7, 2025
Soon enough, artificial intelligence may be able to recreate the sounds — but there will be something missing.
Quality Trash: Meet director Ron Oliver, Hallmark’s king of schmaltz - Toronto LifeDec 11, 2024
And other oxymoronic observations about the oeuvre of Ron Oliver, the Hallmark Channel’s most prolific, flamboyant and unapologetically sappy director
How the whip-poor-will became an iconic bird of American horror - Fast CompanyOct 27, 2024
Lovecraft’s and King’s fictional whip-poor-wills draw on widespread Indigenous, European, and American beliefs about the species.
Iconic Bird of American Horror Stories Faces Its Own Terrifying FateOct 25, 2024
The Whip-Poor-Will’s shrill, death-proclaiming song populates the works of Stephen King and H.P. Lovecraft. But the bird itself has fallen on hard times. Could it become a ghost of Halloweens past?
Our 50 Favorite ‘Saturday Night Live’ SketchesOct 19, 2024
Live from New York, it’s an idiosyncratic list of ‘SNL’ moments we’re still thinking about—from the Belushi/Aykroyd/Radner years to the Eddie Murphy era to Sandler, Fey, Hader, and beyond.
Your Brain Wants a Linear StoryAug 1, 2024
Artists may jumble time for dramatic effect. But your unconscious is always putting the narrative in order.
Engage your audience by getting to the point, using story structure, and foJun 11, 2024
I came across this recent video from Vicky Zhao last week and loved her brief summary of how she grew in her ability to clearly articulate ideas on the spot by getting to the point, using story str…
Five Steps To Sell Your Product With Powerful StorytellingJun 11, 2024
How to apply powerful storytelling to design a compelling and memorable digital experience on a landing page. A case study of the [Smart Interface Design Patterns landing page](https://smart-interface-design-patterns.com/).
How To Use Storytelling In UXJun 11, 2024
Storytelling is a powerful tool for any UX designer. It helps create a product and understand the people who use it. In this article, Marli Mesibov takes a real-life example of an app she helped to build in 2017 and explains five steps you can use to help you build a story into your user experience.
ResourcesJun 11, 2024
30 years of storytelling experience, in a box? Yes, that’s what you get with my latest guides – check out Storyteller Tactics here. My older material is here on the website, including…
Storyboard Mix-and-match Library | FigmaJun 11, 2024
Create quick UX design storyboards using the mix-and-match library and template. Pick and change the character's pose, expression, gestures, and more to fit your scenario. Adjust the background and create close-up scenes to describe your solution all from one magic card 🧚♀️. Follow the in...
6 storytelling principles to improve your UXJun 11, 2024
Crafting a good experience is like telling a good story. Improve your UX with these 6 storytelling principles.
Strategic Storytelling for DesignersJun 11, 2024
How to Align User Research Presentations for Decision Making
Con-Culture Experts On the History and Future of ScammingMay 20, 2024
2018’s ‘Summer of Scam’ was just the latest in a strong American tradition.
The Case for Spoilers: Why Some People Are Happier Knowing How the Story EnMay 19, 2024
Think of them more as “enhancers” than “spoilers.” Knowing what will happen in a movie, TV show or book can provide a tantalizingly pleasing feeling, help you understand the plot and give you a sense of control during chaotic times.
Read 20 Short Stories From Nobel Prize-Winning Writer Alice Munro (RIP) FreMay 17, 2024
Note: Back in 2013, when Alice Munro won the Nobel Prize in Literature, we published a post featuring 20 short stories written by Munro.
Graham Greene and The Art of the Opening ParagraphMay 14, 2024
Ten great opening paragraphs from one iconic author.
HVision-NKU/StoryDiffusionMay 7, 2024
Accepted as [NeurIPS 2024] Spotlight Presentation Paper - HVision-NKU/StoryDiffusion
The Sci-Fi Writer Who Invented Conspiracy TheoryMay 5, 2024
It all goes back to one man in the 1950s: a military-intelligence expert in psychological warfare.
The art of persuasive storytelling | Kelly D. ParkerApr 26, 2024
"Storytelling is one of the most powerful marketing and leadership tools there is," says communications expert Kelly D. Parker. She explains how stories make proposals of all kinds more memorable — and shows how you can craft a compelling narrative to connect, persuade and drive meaningful action.
Storytelling as a Craft: Advice from 5 Experts on How to Tell a CompellingMar 3, 2024
Every startup leader should practice flexing their storytelling muscles. To help warm these muscles up, we’ve rounded up some of our best advice about storytelling in business that’s been featured in the Review.
Both folktales and formal philosophy unsettle us into thinking anew about oFeb 26, 2024
Both folktales and formal philosophy unsettle us into thinking anew about our cherished values and views of the world
A 500-Page Book Explores the Ghosts & Monsters from Japanese FolkloreFeb 6, 2024
Westerners tend to think of Japan as a land of high-speed trains, expertly prepared sushi and ramen, auteur films, brilliant animation, elegant woodblock prints, glorious old hotels, sought-after jazz-records, cat islands, and ghost towns.
Vitaly Friedman’s PostJan 17, 2024
⛺🪵🔥 Free Storytelling Masterclass (+ PDFs) (https://lnkd.in/eiFscUtf), a comprehensive guide with 9 modules on storytelling, PDF worksheets, 1-pager… | 52 comments on LinkedIn
Library of Short StoriesSep 25, 2023
Read For Free, Anywhere, Anytime. An online library of over 1000 classic short stories. H. G. Wells, Edgar Allan Poe, H. P. Lovecraft, Anton Chekhov, Beatrix Potter.
5 Types of Stories Leaders Need to TellSep 22, 2023
Storytelling is an important leadership skill, and executives who want to succeed should master five types of narrative: Vision stories, which inspire a shared one; values stories that model the way; action stories that spark progress and change; teaching stories that transmit knowledge and skills to others; and trust stories that help people understand, connect with, and believe in you.
Why the concept of invisibility so captivates the imagination | Psyche IdeasMay 7, 2023
From ancient fables to the latest science theory, invisibility represents some of humankind’s deepest fears and desires
The stories of oral societies aren’t myths, they’re records | Aeon EssaysApr 16, 2023
The stories of oral societies, passed from generation to generation, are more than they seem. They are scientific records
The Running Conversation in Your HeadMar 29, 2023
What a close study of “inner speech” reveals about why humans talk to themselves.
Spoiler Alert: Why Some People Need to Know How It EndsFeb 15, 2023
Do you go to great lengths to avoid spoilers for your favorite TV show? Research suggests that doing so may not always be justified. Here's why.
Text-to-4D dynamic scene generationJan 29, 2023
Find it here, via Ryan Watkins. Further improvement is required, but the pace of current breakthroughs is remarkable.
Stream 47 Hours of Classic Sci-Fi Novels & Stories: Asimov, Wells, Orwell,Dec 21, 2022
The pronouncements of French theorist Jean Baudrillard could sound a bit silly in the early 1990s, when the internet was still in its infancy, a slow, clunky technology whose promises far exceeded what it could deliver.
DeepMind Created An AI Tool That Can Help Generate Rough Film and Stage ScrDec 10, 2022
Alphabet's DeepMind has built an AI tool that can help generate rough film and stage scripts Engadget's Kris Holt reports: Dramatron is a so-called "co-writing" tool that can generate character descriptions, plot points, location descriptions and dialogue. The idea is that human writers will be abl...
Disney didn't invent Cinderella. Her story is at least 2,000 years old.Nov 23, 2022
Vox is a general interest news site for the 21st century. Its mission: to help everyone understand our complicated world, so that we can all help shape it. In text, video and audio, our reporters explain politics, policy, world affairs, technology, culture, science, the climate crisis, money, health and everything else that matters. Our goal is to ensure that everyone, regardless of income or status, can access accurate information that empowers them.
The Shapes of StoriesNov 6, 2022
21K votes, 289 comments. 5.5M subscribers in the coolguides community. Picture based reference guides for anything and everything. If it seems like…
Cinema’s greatest scene: ‘Casablanca’ and ‘La Marseillaise’Jul 27, 2022
Casablanca is widely remembered as one of the greatest films of all time, coming in at #2 on the AFI’s top 100 list and similarly regarded by many other critics. You can quibble with its exac…
The 50 Greatest Fictional Deaths of All TimeJul 20, 2022
The most tearjerking, hilarious, satisfying, and shocking death scenes in 2,500 years of culture.
Tropes - TV TropesJul 18, 2022
An index page listing Tropes content. A trope is a storytelling device or convention, a shortcut for describing situations the storyteller can reasonably …
Kurt Vonnegut on the 8 "shapes" of storiesJul 16, 2022
Before fame, Kurt Vonnegut wrote a master's thesis on the shapes of stories for the anthropology department at the University of Chicago.
'The Bear's' Jeremy Allen White Has a Crush on Carmy, TooJul 16, 2022
In FX’s surprise hit, the 31-year-old actor plays a tormented culinary genius who returns home to run his family’s Chicago sandwich shop. We caught up with White in his native Brooklyn to learn what it took to get in the kitchen.
The Ten Commandments for Detective Fiction (1929): A Brief History and Update – Elizabeth Spann CraigJul 6, 2022
Writer @GretchenMdm9524 gives a brief history of 1929's 10 Commandments for Detective Fiction and offers some modern updates.
Howard Suber Of UCLA Film School Explains How To Tell A Story - Barking Up The Wrong TreeJul 5, 2022
Everything you need to know about Howard Suber Of UCLA Film School Explains How To Tell A Story
Generating Children's Stories Using GPT-3 and DALL·EJul 5, 2022
We used GPT-3 and DALL·E to generate a children's storybook about Ash and Pikachu vs. Team Rocket. Read the story and marvel at the AI-generated visuals!
7 Techniques for Capturing People's AttentionJun 29, 2022
The person who can capture and hold attention is the person who can effectively influence human behavior. Here's how to do it.
Improve Your Storytelling with the Word "But"Jun 29, 2022
Telling a story is the most powerful way to activate our brains . If you want to become a better storyteller, UCLA Film School Howard Suber says you
Understanding Products Through StorytellingJun 28, 2022
Storytelling is a powerful technique for building data-informed products.
Good Products Have Features, Great Products Have Stories.Jun 28, 2022
Getting people to notice your product on the web is hard. Getting them to understand what you do is even harder. One of the biggest challenges startups face is cutting through the noise and…
11 Steps For Branding With StoriesJun 25, 2022
As entrepreneurs, Diane Engelman, PhD, and JB Allyn, MBA, have been perfecting a methodology over the past 12 years that is burgeoning in…
How To Improve Your Writing: 5 Secrets From Hollywood - Barking Up The Wrong TreeJun 24, 2022
Andrew Kevin Walker, writer of the movie "Seven", gives five tips on how to improve your writing.
Elmore Leonard's rules for writersJun 23, 2022
Next month, the doyen of hardboiled crime writers is publishing a new book, 10 Rules of Writing. The following is a brief summary of his advice
Inside the Brilliant, Heartbreaking First 10 Minutes of ‘Up’Jun 19, 2022
"We figured the best way to make the audience understand—and care—would be to connect his house to a relationship, and unfinished business," says director Pete Docter
[deleted by user]Jun 14, 2022
157K subscribers in the startup community. Reddit's space to learn the tools and skills necessary to build a successful startup. A community meant to…
The Desirability of StorytellersJun 13, 2022
Among Filipino hunter-gatherers, storytelling is valued more than any other skill, and the best storytellers have the most children.
Eight of Literature's Most Powerful Inventions—and the Neuroscience Behind How They WorkJun 13, 2022
These reoccuring story elements have proven effects on our imagination, our emotions and other parts of our psyche
The Surprising Way to Be More Effective at StorytellingJun 7, 2022
To engage leaders, colleagues, and clients, use this simple technique
With ‘The Far Side,’ Gary Larson Pioneered the Art of the MemeJun 5, 2022
There couldn’t be a ‘Is This a Pigeon?’ without a ‘Beware of Doug’.
Loki’s Place in Trickster MythologyMay 28, 2022
Smithsonian’s James Deutsch says that behind the character in the Marvel Studios series lies the oft-told story of “guile” outsmarting authority.
Bathtub BS and the Great Art of StorytellingMay 28, 2022
"On December 20 there flitted past us, absolutely without public notice, one of the most important profane anniversaries in American history, to wit, the seventy-fifth anniversary of the introduction of the bathtub into These States. Not a plumber fired a salute or hung out a flag.
Two Tips for Better UX StorytellingMay 28, 2022
Effective storytelling involves both engaging the audience and structuring stories in a concise, yet effective manner. You can improve your user stories by taking advantage of the concept of story triangle and of the story-mountain template.
43 of the Most Iconic Short Stories in the English LanguageMay 27, 2022
From Washington Irving to Kristen Roupenian.
Why Is ‘Bob’s Burgers’ So Freakishly Lovable? This Guy.May 25, 2022
Loren Bouchard’s accidental career as a comedy mogul has now brought his TV family to the big screen.
These are the storytelling lessons I learned from Steve Jobs - Fast CompanyMay 8, 2022
'We were telling the story of a phone that would change everything. So that’s what we had to build.'
Six Tips on Writing from John SteinbeckMar 16, 2022
On the value of unconscious association, or why the best advice is no advice.
What Makes a Great Opening Line?Mar 14, 2022
Maybe it has happened to you: a stranger catches your eye while you peruse the plant identification section of the library, or wander a mossy hillock speckled with Amanita bisporigera, or shuffle a…
“Columbo” shows the benefits of asking just one more thingFeb 18, 2022
However powerful the villain, the scruffy detective always outwits them
How to Commit Murder Inside a Locked RoomFeb 18, 2022
Few genres are more preposterous than the locked room mystery. The premises are absurd and plot solutions ridiculous—but still I keep on reading.
Breaking Bad became one of the best TV shows ever by borrowing a trick from ShakespeareFeb 10, 2022
The show balanced improvisation and careful planning thanks to its overarching structure.
What might Amazon’s six-page narrative structure look like?Feb 10, 2022
If you want to move to a Jeff Bezos–style executive meeting without PowerPoint, with a six-page narrative memo, you mustn't forget the narrative. Here's why
Divine Comedy - WikipediaJan 23, 2022
The Divine Comedy is an Italian narrative poem by Dante Alighieri, begun c. 1308 and completed around 1321, shortly before the author's death. It is widely considered the pre-eminent work in Italian literature and one of the greatest works of Western literature. The poem's imaginative vision of the afterlife is representative of the medieval worldview as it existed in the Western Church by the 14th century. It helped establish the Tuscan language, in which it is written, as the standardized Italian language. It is divided into three parts: Inferno, Purgatorio, and Paradiso.
Mel Brooks on the Making of SpaceballsDec 26, 2021
My son Max loved the Star Wars movies. I would take him to various showings of them. And for his tenth birthday, he had a Star Wars–themed birthday party. And boy, did those kids love it! So I thou…
The History of O. Henry's 'The Gift of the Magi'Dec 25, 2021
The beloved Christmas short story may have been dashed off on deadline but its core message has endured
The Power of Audience-Centered Storytelling | Bill Carmody | TEDxFergusonLibraryDec 15, 2021
Bill Carmody is a twenty-five year global keynote speaker. He’s had the incredible privilege to present in Brazil with Sir Richard Branson and in India with executives from Fortune 100 companies. Recently he had the distinct privilege to teach several of the UK Brexit government officials how to become more powerful public speakers.
Bill Carmody is a twenty-five year global keynote speaker. He’s had the incredible privilege to present in Brazil with Sir Richard Branson and in India with executives from Fortune 100 companies. Recently he had the distinct privilege to teach several of the UK Brexit government officials how to become more powerful public speakers. This talk was given at a TEDx event using the TED conference format but independently organized by a local community. Learn more at https://www.ted.com/tedx
See the Real Live Man Who Grew Up in a CarnivalDec 15, 2021
For our reporter, “Nightmare Alley” recalls a childhood spent working the circuit with his parents. Carnies like the World’s Smallest Woman welcomed him when cruel classmates didn’t.
Taking Humor Seriously on “The Simpsons”Nov 23, 2021
David Owen’s 2000 Profile of George Meyer: Humor has to reframe reality, Meyer says. “It’s like seeing in two dimensions and then opening the other eye or looking through a View-Master and suddenly seeing in three.”
David Simon and the Creation of “The Wire”Nov 23, 2021
Margaret Talbot’s 2007 Profile of the show’s creator, with a behind-the-scenes look at the filming of “The Wire” ’s fifth season.
The Old Country Meets Prozac Nation on “The Sopranos”Nov 22, 2021
From 1999: “There has certainly never been anything like it on TV, and on network TV there never could be anything like it.”
Why ‘Slap Shot’ Captures the 1970s Better Than Any Other Sports MovieNov 21, 2021
Celebrating the greatest hockey movie of all time—and one the best “malaise days” Seventies films ever.
Writing wellNov 17, 2021
Learn how to write well. Topics include figuring out what to write about, how to write an introduction, the writing process, writing style, and copyediting.
How to Read “Gilgamesh” | The New YorkerNov 3, 2021
The heart of the world’s oldest long poem is found in its gaps and mysteries.
Is Becky Chambers the Ultimate Hope for Science Fiction?Sep 19, 2021
Her gentle, heartwarming stories seek to soothe our troubled souls. They also aim to blow up the entire genre.
The 30 best mobster movies – ranked!Sep 19, 2021
Ahead of the Sopranos prequel The Many Saints of Newark hitting cinemas, here are 30 organised crime flicks you must see before you sleep with the fishes
Chekhov's gunSep 5, 2021
Chekhov's gun is a narrative principle that states that every element in a story must be necessary and irrelevant elements should be removed. For example, if a writer features a gun in a story, there must be a reason for it, such as it being fired some time later in the plot. All elements must eventually come into play at some point in the story. Some authors, such as Hemingway, do not agree with this principle.
An Introduction to AI Story GenerationSep 1, 2021
A primer on automated story generation and how it it strikes at some fundamental research questions in artificial intelligence.
21 Rhetorical Devices Explained - Mental Floss - PocketAug 22, 2021
From the ones you know to a few new tricks. Pleonasm, anyone?
Report Card Writer: What I’ve Learned from One Year of User Interviews and Customer FeedbackJul 29, 2021
Almost exactly a year ago, I started a little boutique software company called Report Card Writer. As the name suggests, my flagship software product does pretty much one thing: it helps teachers write report card comments faster. Its core technical functionality is part survey form, part template-filler-inner, with a few extra bolt-on features that make it easy to create and populate the form and template, respectively.
Why Horror Films Are More Popular Than EverJul 24, 2021
It feels good to control what will terrify you.
“The Lottery,” by Shirley JacksonJul 18, 2021
Fiction, from 1948: “The people had done it so many times that they only half listened to the directions; most of them were quiet, wetting their lips, not looking around.”
Raymond Chandler’s guide to street, hoodlum, and prison lingoJul 7, 2021
Writers keep notebooks because ideas come in the most unexpected of places. Notebooks contain a junkyard of treasures waiting to be discovered. They provide ports of entry to the imagination. And as Joan Didion once wrote, a place to keep “on nodding terms with the people we used to be”. Thomas Hardy kept four … Continue reading "Raymond Chandler’s Guide to Street, Hoodlum, and Prison Lingo"
Toy Story - Story Structure AnalysisJul 3, 2021
Learn the major plot points and story structure of Toy Story directed by John Lasseter.
How to Create the Plot of a Story: The Ultimate Guide for WritersJul 3, 2021
Having trouble developing the plot of a story? You aren't alone—this is no small task. But that doesn't mean it's impossible. This guide is here to help.
The Remaking of Comedy CentralJul 3, 2021
Behind Chris McCarthy’s plan to transform the ViacomCBS network from a linear cable channel to a multi-platform content machine.
The Six Main Arcs in Storytelling, as Identified by an A.I.Jul 3, 2021
A machine mapped the most frequently used emotional trajectories in fiction, and compared them with the ones readers like best.
fairseq/examples/stories at main · facebookresearch/fairseqJul 3, 2021
Facebook AI Research Sequence-to-Sequence Toolkit written in Python. - facebookresearch/fairseq
Fairy Tales Could Be Older Than You Ever ImaginedJun 25, 2021
Jack may have been climbing that beanstalk for more than 5,000 years
How 'One Hundred and One Dalmatians' Saved DisneyJun 7, 2021
Sixty years ago, the company modernized animation when it used Xerox technology on the classic film
From teen wizards to Harry Styles romances: How Wattpad created a user-geneMay 21, 2021
Wattpad is turning these user-generated stories into books, TV shows, and movies.
Two Assholes Lost in the Woods: An Oral History of ‘Pine Barrens’May 9, 2021
Twenty years after it aired, David Chase and Co. look back on one of the wildest, boldest, funniest episodes of ‘The Sopranos’ ever made
John Swartzwelder, Sage of “The Simpsons” | The New YorkerMay 2, 2021
The first major interview with one of the most revered comedy writers of all time.
The 101 Greatest Endings in Movies HistoryApr 22, 2021
Good finales offer catharsis. The best deny us closure altogether.
Ode: How to tell a great story | Seth's BlogApr 22, 2021
Chris Fralic reminded me of this piece I wrote for Ode. Great stories succeed because they are able to capture the imagination of large or important audiences. A great story is true. Not necessaril…
The Low-Key Carter-Era Pleasures of “The Muppet Show”Apr 17, 2021
On the original show, which is now streaming for the first time on Disney+, bits of fabric and glue and yarn become complexly real.
The Tim Ferriss Show Transcripts: Jerry Seinfeld — A Comedy Legend’s Systems, Routines, and Methods for Success (#485) - The Blog of Author Tim FerrissApr 11, 2021
Please enjoy this transcript of my interview with entertainment icon Jerry Seinfeld (@jerryseinfeld). Jerry’s comedy career took off after his first appearance on The Tonight Show with Johnny Carson in 1981. Eight years later, he teamed up with fellow comedian Larry David to create what was to become the most successful comedy series in the … Continue reading "The Tim Ferriss Show Transcripts: Jerry Seinfeld — A Comedy Legend’s Systems, Routines, and Methods for Success (#485)"
How to turn small talk into smart conversationMar 30, 2021
Tips from a comedian and a journalist on the art of going from small talk to big ideas. Try these out at the next summer wedding reception.
‘Nomadland’ | Anatomy of a SceneFeb 19, 2021
The director Chloé Zhao narrates a scene from her movie featuring Frances McDormand and David Strathairn.
How to Write a Novel, According to 10 Really Good NovelistsFeb 11, 2021
Take notes everywhere, embrace Wikipedia wormholes and other handy tips
How to create compelling characters | Psyche GuidesFeb 11, 2021
It’s not only writer’s intuition. Use personality psychology to create just the right blend of surprise and believability
The 50 Best Cult MoviesJan 27, 2021
From ‘The Room’ to ‘Eraserhead’ to ‘Rocky Horror,’ these are the best movies to ever inspire deep obsession
Perspective | My two weeks with John le Carré: What I learned about writing, fame and grace when I showed him around Miami in 1991.Jan 6, 2021
He wanted to learn about the Miami drug world and had been told I could help.
Kurt Vonnegut on the 8 "shapes" of storiesDec 18, 2020
Before fame, Kurt Vonnegut wrote a master's thesis on the shapes of stories for the anthropology department at the University of Chicago.
What Your Audience Wants From Presentations - Leadership Story LabDec 18, 2020
When it comes to public speaking, the one thing your audience needs most is a good hook. Hooking attention takes creativity.
Build a Story Generator | Pranav VadrevuDec 18, 2020
Fine-tuning GPT-2 to generate stories based on genres
Emotion classification - WikipediaNov 29, 2020
Emotion classification, the means by which one may distinguish or contrast one emotion from another, is a contested issue in emotion research and in affective science. Researchers have approached the classification of emotions from one of two fundamental viewpoints:that emotions are discrete and fundamentally different constructs
that emotions can be characterized on a dimensional basis in groupings
Search | arXiv e-print repositoryNov 29, 2020
How to Write a Short Story: 9 Steps from a Best Selling AuthorNov 29, 2020
Learning how to write a short story is the perfect place to begin your writing journey. But it's an art—they're vastly different from full-length novels.
Terry Gilliam Reveals the Secrets of Monty Python Animations: A 1974 How-To GuideNov 6, 2020
Fear and Loathing in Las Vegas, before he became short-hand for a filmmaker cursed with cosmically bad luck, before he became the sole American member of seminal British comedy group Monty Python, Terry Gilliam made a name for himself creating odd animated bits for the UK series Do Not Adjust Your Set.
The basic dramatic situations, according to 1919 manual for screenwritersNov 3, 2020
'Great literature is one of two stories,' we often quote Leo Tolstoy as saying: 'a man goes on a journey or a stranger comes to town.' That's all well and good for the author of War and Peace, but what about the thousands of screenwriters struggling to come up with the next hit movie, the next hit television series, the next hit platform-specific web and/or mobile series?
The 100 Most Influential Sequences in Animation HistoryOct 20, 2020
From Bugs Bunny to Spike Spiegel to Miles Morales, retracing 128 years of an art form that continues to draw us all in.
Can We Escape from Time? | John LanchesterSep 16, 2020
We have grown very used to the idea of time travel, as explored and exploited in so many movies and TV series and so much fiction. Although it feels like it’s been around forever, it isn’t an ancient archetypal story but a newborn myth, created by H.G. Wells in his 1895 novel The Time Machine. To put it another way, time travel is two years older than Dracula, and eight years younger than Sherlock Holmes.
The First Sentence Is a Handshake (2014)Aug 16, 2020
According to science fiction writer William Gibson, a book's opening should be an inviting enigma to the reader—and a motivational benchmark for the writer.
8 Habits of Deeply Inspiring PeopleAug 11, 2020
The best lessons from films and fiction on what makes a hero
The Six Main Stories, As Identified by a Computer - The AtlanticJul 21, 2020
A machine mapped the most frequently used emotional trajectories in fiction, and compared them with the ones readers like best.
The Guy Who Wouldn't Write a Hit: An Interview with David Simon | Claudia DreifusJul 19, 2020
Claudia Dreifus: You are sometimes called “the Balzac of Baltimore.” What’s your take on the title? David Simon: When people say that, I go, “Did you just call me a ball sac?” I usually goof on that. I haven’t read all of Balzac. I keep slicing up society, taking a different slice each time, thinking, eventually I’ll have a cake. That’s Balzac. That’s what he did. What I never do is raise my hand and say, “This could be a hit. Make this because this could be a hit.” The minute I do that, I’m done as me.
What makes a character memorable?Jun 7, 2020
Fabula Storytelling CardsJun 1, 2020
Fabula is an analogue framework for fiction writers and screenwriters
Kurt Vonnegut’s 8 Tips on How to Write a Good Short StoryFeb 19, 2020
When it came to giving advice to writers, Kurt Vonnegut was never dull.
Why your next TV needs ‘filmmaker mode’Feb 9, 2020
TVs this year will ship with a new feature called "filmmaker mode," but unlike the last dozen things the display industry has tried to foist on consumers, this one actually matters. It doesn't magically turn your living room into a movie theater, but it's an important step in that direction.
Best Screenplay Goes to the Algorithms - Issue 79: CatalystsDec 5, 2019
Learning to appreciate the future of literature.
Great Noir Lives—and Dies—on DialogueSep 15, 2019
Bowie placed the shotgun on the ground and picked up the .22 rifle. “I always wanted one of these little guns when I was a kid,” he said. “That time they got me in Florida,” Chicamaw said, “and sen…
Download New Storyboarding Software That’s Free & Open SourceAug 30, 2019
Quick tip: The new software package, Storyboarder, makes it 'easy to visualize a story as fast you can draw stick figures.' You can create a story idea without actually making a full-blown movie and see how it looks. Storyboarder is free. It's open source.
Heaven Can Wait: The Hidden Genius of Elaine May - The RingerMar 28, 2019
Improvising legend. Filmmaking maverick. Comedy savant. Screenwriting secret weapon. Elaine May is one of the most important people in American pop cultural history. Why isn’t she more celebrated? That’s exactly how she wants it.
‘Michael Clayton’ in the Age of NetflixSep 5, 2018
Michael Clayton is a great film. I was reminded of this fact a while back on Twitter. Not that I needed to be reminded — I tweet about the…
From Product/Market Fit to Language/Market Fit: A New Brand Storytelling FrDec 15, 2017
LIKE THIS ARTICLE SO FAR? THEN YOU’LL REALLY WANT TO SIGN UP FOR MY NEWSLETTER. IT’S DELIVERED ONCE A WEEK AND PACKED WITH IDEAS ON…
Why Marketers Need to Invest in Authentic Long-Form StorytellingMay 31, 2017
In the wake of the Pepsi debacle, brands should turn up the authenticity in their marketing budgets with more long-form films and documentaries.
streaming
Why people are buying iPods againFeb 21, 2026
Nostalgia and digital burnout are driving a new rush for Apple's retired iPods.
Why YouTube is a genuine threat to NetflixDec 18, 2025
Digiday charted how YouTube is a threat to Netflix, including watch time dominance, user base and its ability to reshape viewing behaviors.
Netflix and the Hollywood End GameDec 15, 2025
Netflix is driving the Hollywood end game, likely confident it can increase the value of IP, and fend off YouTube.
Cable nostalgia persists as streaming gets more expensive, fragmentedOct 1, 2025
Cord reviving isn’t common but points to discontent with today’s streaming options.
The Subscription Era Is Over. The Purge Has Begun in America.Sep 24, 2025
The “subscribe to everything” era is unraveling. After years of stacking streaming platforms, delivery perks, and digital add-ons, Americans are pulling back hard. A new survey from Self Financial shows the average household cut its paid subscriptions from 4.1 in 2024 to just 2.8 this year. That’s a drop of nearly a third in twelve […]
Bland, easy to follow, for fans of everything: what has the Netflix algorithm done to our films?Aug 28, 2025
When the streaming giant began making films guided by data that aimed to please a vast audience, the results were often generic, forgettable, artless affairs. But is there a happy ending?
How YouTube redrew the TV map - in graphsMay 13, 2025
As YouTube has risen over the past 20 years to the streaming giant it is today, the platform has changed the way people watch TV.
The Binge PurgeFeb 23, 2025
TV’s streaming model is broken. It’s also not going away. For Hollywood, figuring that out will be a horror show.
Casual Viewing | Will TavlinDec 20, 2024
A decade before Airbnb persuaded homeowners to transform their homes into hotels, Netflix convinced its users to turn theirs into mini Netflix warehouses. Customers who held onto their DVDs for longer meant fewer shipping costs for Netflix, and fewer DVDs for the company to manage and store. Netflix tracked heavy users of its service — labeling them internally as “pigs” — and secretly throttled their deliveries. It didn’t matter if Netflix rented fewer DVDs than Blockbuster, because the company would keep collecting its monthly fee. The difference between Blockbuster and Netflix was this: Blockbuster punished customers for being forgetful; Netflix rewarded them for being mindless.
2024 Top Streaming StatsJul 4, 2024
We live in world where almost all the entertainment we consume is online, and these streaming stats prove it.
YouTube dominates streaming, forces media companies to adaptJun 28, 2024
YouTube is gaining share of viewership on TVs, and legacy media doesn't have a uniform strategy to deal with the threat.
The Future of Netflix, Amazon and Other Streaming ServicesJun 22, 2024
Who will survive? Die? Thrive? And how? We talked to nearly a dozen top media executives and asked them to predict what lies ahead.
TV Companies Losing Subscribers As Sports Rights Deals Continue to RiseJun 22, 2024
Four major TV provider companies reported collective losses of roughly 1.35 million customers during their first fiscal quarters.
DMA® Regions | NielsenJun 22, 2024
DMA (Designated Market Area) regions are the geographic areas and zip codes in the U.S. in which local television viewing is measured by Nielsen.
Why Tubi CEO Anjali Sud thinks free TV can win againJun 19, 2024
Tubi’s free TV strategy puts it between free social video and paid streaming.
Digiday+ Research: A guide to ad-supported streaming services, from the topMay 7, 2024
The first installment of Digiday's two-part series on the top ad-supported streaming services provides an overview of the platforms’ offerings and an analysis of how brands and agencies distribute their ad budgets and ad placements across platforms.
Research Briefing: Frequency capping matters most on streaming platformsMay 5, 2024
In this edition of the Digiday+ Research Briefing, we examine the top ad attributes marketers want from ad-supported streaming platforms, how brands are increasing their marketing spend on YouTube, and how Walmart and Roblox are teaming up to make virtual e-commerce a reality, as seen in recent data from Digiday+ Research.
15 Apps for Live Streaming VideoApr 23, 2024
This all-new update to our popular resource features apps from social networks and live-streaming platforms to produce and broadcast solo or multi-source video.
The lines between streaming and cable continue to blur | Ars TechnicaApr 17, 2024
Disney+ to offer 24/7 channels to play Star Wars content, commercials.
The Streaming Purge Has Started As Deezer Deletes 26 Million “Useless” TracApr 4, 2024
Deezer has deleted 26 million of what it terms as "useless" tracks, which could be an indicator of what's to come from other platforms.
Tired of Streaming? Home-Grown 'Free Blockbuster' Libraries Are Trying to OMar 25, 2024
In 2019 Los Angeles film/TV producer Brian Morrison painted Blockbuster's logo onto an old newspaper box — and then filled it up with used DVDs. "The Free Blockbuster movement slowly gained traction," reports the New York Times — aided at times by social media — "and eventually m...
Want to stop livestreaming? That’ll be $42,000Feb 29, 2024
Chinese livestream agencies promise influencers fame and money, but end up trapping them in multi-year contracts.
How Netflix Conquered Hollywood — And Then Broke ItFeb 19, 2024
The inside story of how the streamer muscled its way to the top by defying the industry’s conventions — and eventually paid the price.
Americans Are Canceling More of Their Streaming ServicesJan 6, 2024
Hulu and other streamers are turning to bundles, discounts and ad-supported plans as customer defections rise.
The Rise and Fall of TV's Golden AgeSep 16, 2023
The facts and figures of "Peak TV," and why it had to come to an end.
From Netflix to HBO, the terrible design of streaming is ruining TVMay 18, 2023
Why in 2023 is streaming TV such a terrible experience?
synthwave radio 🌌 - beats to chill/game toApr 29, 2023
🎼 | Listen on Spotify, Apple music and more
→ https://fanlink.to/ChillSynthwave
🎶 Subscribe to this channel for more synthwave music
→ https://bit.ly/synthwave-channel
🌎 | Lofi Girl on all social media
→ https://fanlink.to/lofigirl-social
👕 | Lofi Girl merch
→ https://bit.ly/Iofigirl-shop
🎭 | Create your lofi avatar now
→ https://lofigirl.com/generator/
💬 | Join the Lofi Girl community
→ https://bit.ly/lofigirl-discord
→ https://bit.ly/lofigirl-reddit
🎨 | Art by Lofi Studio (full list of artists here)
→ https://www.instagram.com/p/CrlCU3msh49/
📝 | Submit your music / art
→ https://bit.ly/lofi-submission
Spotify shows how the live audio boom has gone bust - The VergeApr 5, 2023
Spotify Live is getting the ax.
Inside Amazon Studios: Big Swings Hampered by Confusion and FrustrationApr 5, 2023
Despite ambitious bets like 'Daisy Jones & The Six' and the upcoming 'Citadel,' insiders complain that there’s still "no vision for what an Amazon Prime show is." But chief Jen Salke says they are missing the point: "You don’t reverse-engineer true creative vision."
The future of TV is up in the air - The VergeMar 14, 2023
Free 4K HDR broadcasts are out there... you just can’t find them.
The VICE Guide to Streaming ServicesJan 27, 2023
Go from NBA obsessive to Criterion-and-chill at the touch of a button.
How Much More Netflix Can the World Absorb?Jan 14, 2023
Bela Bajaria, who oversees the streaming giant’s hyper-aggressive approach to TV-making, says success is about “recognizing that people like having more.”
Why YouTube spent the money on NFL Sunday TicketDec 27, 2022
YouTube chief product officer Neal Mohan tells us the steaming giant is making a big bet on TVs, where it’s seeing the fastest growth.
How to install PipeWire on Ubuntu Linux - Linux Tutorials - Learn Linux ConDec 24, 2022
The purpose of this tutorial is to install PipeWire on Ubuntu Linux. PipeWire is a sound server that can handle playback and capturing of audio and video streams. It is a worthy replacement to other…
Want to Understand Television’s Troubles? Look at AMC. (Published 2022)Dec 19, 2022
The company has struggled to earn enough from streaming to make up for losses from its traditional cable business. It is a story widespread in the industry.
Hacker NewsNov 13, 2022
Why I uninstalled Plex Media Server after over a decade and migrated my movie and TV show collection to Jellyfin instead of Emby.
Redditor acquires decommissioned Netflix cache server with 262TB of storageOct 30, 2022
2013-era server offers rare peek under the hood of Netflix’s Open Connect network.
Video Streaming Protocols: What Are They & How to Choose The Best OneSep 15, 2022
Understanding legacy and modern streaming protocols will enable you to make an informed choice for...
The best streaming services in 2024Sep 5, 2022
Our picks for the best streaming services and cable alternatives for those considering cord cutting
[OC] The Most Watched Netflix ShowsSep 5, 2022
33K votes, 2.3K comments. 21M subscribers in the dataisbeautiful community. DataIsBeautiful is for visualizations that effectively convey…
The Streaming TV BloodbathSep 5, 2022
Streaming platforms like HBO Max and Netflix are axing staff and removing shows from their platform, all in search of profitability.
What is Plex? Everything you need to knowSep 5, 2022
Our guide on what Plex is and what you can stream on it
The Elephant Effect - Considerations on Live Streaming Italy's Serie A ChampionshipAug 28, 2022
For the first time in Italy, a major event - the Serie A football championship - is being broadcast exclusively via the Internet. In this article, we share some considerations the phenomenon of streaming football in Italy, looking at things from the operator’s point of view
How Artists Get Paid From StreamingJul 13, 2022
We explain how your money gets from you to a streaming platform, and finally to an artist.
Metadata is the biggest little problem plaguing the music industryJun 26, 2022
It’s a crisis that has left, by some estimations, billions on the table unpaid to musicians
Why Sports Are a Game-Changer for StreamingJun 25, 2022
Amazon and Apple TV are betting big on live sports streaming, and Netflix may be next.
https://thestack.com/world/2015/04/17/netflix-to-set-prices-according-to-local-piracy-levels/Jun 23, 2022
How Netflix Reverse-Engineered HollywoodJun 2, 2022
To understand how people look for movies, the video service created 76,897 micro-genres. We took the genre descriptions, broke them down to their key words … and built our own new-genre generator.
Can Paramount Go It Alone? (Published 2022)Jun 1, 2022
The dominance of Netflix and Disney in streaming has forced many companies to join forces. So far, Paramount has gone its own way.
How to buy a chicken sandwich in Shenzhen - Rest of WorldJun 1, 2022
Livestream e-commerce is a $100 billion industry in China, with influencers selling everything from cosmetics to fast food.
Ted Sarandos Talks About That Stock Drop, Backing Dave Chappelle, and HollyMay 29, 2022
The Netflix executive says he — and the company he helped build — will survive a bout of bad earnings numbers.
Kiss the streaming struggle goodbye with Plex | PlexApr 7, 2022
Ahhh the app dance. You know the one—where you sit down with the best intentions of watching a movie but...
How SiriusXM bought and bungled a beloved podcast networkMar 23, 2022
Stitcher and Earwolf are beloved by fans — then they started losing hosts and talent.
These are Netflix's Most Popular Shows (According to Netflix)Mar 15, 2022
We analyzed eight months of Netflix viewership data to determine what is and isn’t working on the world’s most popular TV network.
Why Netflix never goes down - The VergeNov 19, 2021
Netflix’s secret to success is happening behind the scenes.
Spotify’s SurpriseMay 1, 2021
Spotify’s new subscription podcast offerings embrace the open ecosystem of podcasts in multiple ways.
JellyfinFeb 19, 2020
The volunteer-built media solution that puts you in control of your media. Stream to any device from your own server, with no strings attached.
The essential comparison guide to every streaming serviceDec 23, 2019
Netflix or Hulu? HBO or Showtime? Disney Plus or HBO Max? Here’s help
SubsonicFeb 12, 2019
Enabling signal processing over data streamsJun 8, 2018
How Everyone Got Lost in Netflix’s Endless LibraryOct 24, 2012
Ten years after Silicon Valley remade TV, it’s become clear how the streaming revolution distorted our collective viewing habits — and sense of the culture.
streamlit
How to Structure and Organise a Streamlit AppFeb 13, 2024
Bringing Order to a Python Streamlit App Through an Organised Project Folder Structure
Cheat sheet - Streamlit DocsJan 16, 2024
12 Essential Commands for StreamlitJan 2, 2023
Learn about the most commonly used Streamlit commands and build a customized web application.
Automate Streamlit Web App using Interactive AgGrid with Google SheetsDec 28, 2022
Customizable Streamlit AgGrid data table connected to a Google Sheets Database
Streamlit from Scratch: Embedding Images, Video and AudioNov 15, 2022
Streamlit was designed to help data scientists but it’s not just about data, adding media to your apps helps to communicate your ideas
3 Ways to Create a Multi-Page Streamlit AppJun 3, 2022
Streamlit may not have been designed for full-blown websites, but it is fairly straightforward to create multiple pages in a single app
Streamlit Hands-On: Features and Tips For Enhanced App User ExperienceDec 13, 2021
Level-Up Your Streamlit Skills with A Real-World Use Case and Complete Code Example
Getting Started with Streamlit for Data ScienceOct 18, 2021
Create, deploy, and test your Python applications, analyses, and models with ease using Streamlit Key Features Learn how to showcase machine learning models in a Streamlit application effectively and efficiently … - Selection from Getting Started with Streamlit for Data Science [Book]
Streamlit, which helps data scientists build apps, hits version 1.0Oct 12, 2021
Streamlit releases v1.0 of its DataOps platform for data science apps to make it easier for data scientists to share code and components.
How to deploy streamlit app to HerokuOct 1, 2021
Hello everyone, This is a step by step tutorial about how to deploy your Streamlit app to Heroku. ...
Create a Web App in Under Thirty Minutes with Streamlit, MongoDB and HerokuOct 1, 2021
An aspiring Full Stack Developer’s guide to quickly developing and deploying scalable web applications
Building a VAE Playground with StreamlitJul 3, 2021
With Streamlit creating a deploying a web app can be very easy!
Turn Excel Into a Beautiful Web Application Using StreamlitJun 26, 2021
Present your data as an interactive dashboard web application using the python library Streamlit
Mastering Web Applications with StreamlitJun 14, 2021
Using Streamlit to Build an ML-based Web Application
Streamlit 101: An in-depth introduction | by Shail Deliwala | Towards DataMay 5, 2021
Deep dive into Streamlit with Airbnb data
How to start with streamlit web framework.May 5, 2021
Sometimes you make a data science , machine learning or computer vision projects but suddenly you stu...
Deploying a basic Streamlit app to HerokuApr 7, 2021
This article demonstrates the deployment of a basic Streamlit app (that simulates the Central Limit Theorem) to Heroku.
Deploying a basic Streamlit appApr 4, 2021
This article demonstrates the deployment of a basic Streamlit app (that predicts the Iris’ species) to Streamlit Sharing.
How you can quickly build ML web apps with Streamlit.Mar 10, 2021
The quickest way to embed your models into web apps.
How to Deploy your Custom ML Model with Streamlit and HerokuDec 18, 2020
A Step-by-Step Guide to Host your Models!
Build an app to generate photorealistic faces using TensorFlow and StreamliApr 19, 2020
We’ll show you how to quickly build a Streamlit app to synthesize celebrity faces using GANs, Tensorflow, and st.cache.
sublime-text
Perl Format String Syntax - 1.84.0Apr 1, 2024
subscriptions
The Subscription Era Is Over. The Purge Has Begun in America.Sep 24, 2025
The “subscribe to everything” era is unraveling. After years of stacking streaming platforms, delivery perks, and digital add-ons, Americans are pulling back hard. A new survey from Self Financial shows the average household cut its paid subscriptions from 4.1 in 2024 to just 2.8 this year. That’s a drop of nearly a third in twelve […]
Subscriptions are out, refills are in.Sep 18, 2022
Everything these days is a subscription. And honestly, on reflection, subscriptions are complete horseshit.
substrates
AMD Plans to Use Glass Substrates in its 2025/2026 Lineup of High-PerformanJul 13, 2024
AMD reportedly plans to incorporate glass substrates into its high-performance system-in-packages (SiPs) sometimes between 2025 and 2026. Glass substrates offer several advantages over traditional organic substrates, including superior flatness, thermal properties, and mechanical strength. These cha...
Report: Packaging Issues, PS5 Demand May Be Hurting TSMC Production - ExtreFeb 11, 2021
The hardware shortages currently hitting most of the PC market may be caused by a shortage in a necessary component in chip manufacturing, not low yields on TSMC's 7nm node.
subterfuge
Mimicry, Camouflage and Deceptive BehaviorFeb 29, 2024
Mimicry, Camouflage and Deceptive Behavior of insects and spiders.
What is social engineering? Definition, types, attack techniquesNov 21, 2022
The top ways bad actors use social engineering to launch cyberattacks — and how to stop them to strengthen your organization's cybersecurity.
How Asian dating sites cracked your biggest complaint—everyone lies onlineJun 25, 2022
Online dating site OKCupid has found an inexplicable number of men happen to be exactly six feet tall and there are four times as many people who claim to earn $100,000 per year as there should be. False advertising, or misrepresentation, is standard in any marketplace; the dating market is no different.
super-resolution
What is ‘Image Super Resolution’, and why do we need it?Oct 20, 2022
An introduction to the field, its applications, and current issues
Image Super-Resolution: An Overview of the Current State of ResearchOct 20, 2022
A review of popular techniques and remaining challenges
Computer Vision | Papers With CodeDec 21, 2020
**Super-Resolution** is a task in computer vision that involves increasing the resolution of an image or video by generating missing high-frequency details from low-resolution input. The goal is to produce an output image with a higher resolution than the input image, while preserving the original content and structure. ( Credit: [MemNet](https://github.com/tyshiwo/MemNet) )
superconductors
Exotic New Superconductors Delight and Confound | Quanta MagazineDec 6, 2024
Three new species of superconductivity were spotted this year, illustrating the myriad ways electrons can join together to form a frictionless quantum soup.
How to Put a Data Center in a ShoeboxMay 16, 2024
Imec’s plan to use superconductors to shrink computers
supply-chain
Who Is Paying for the 2025 U.S. Tariffs? - Liberty Street EconomicsFeb 13, 2026
Over the course of 2025, the average tariff rate on U.S. imports increased from 2.6 to 13 percent. In this blog post, we ask how much of the tariffs were paid by the U.S., using import data through November 2025. We find that nearly 90 percent of the tariffs’ economic burden fell on U.S. firms and consumers.
Lessons Learned Shipping 500 Units of my First Hardware ProductFeb 4, 2026
Building in consumer hardware as a software engineer
How Did TVs Get So Cheap?Jan 8, 2026
You’ve probably seen this famous graph that breaks out various categories of inflation, showing labor-intensive services getting more expensive during the 21st century and manufactured goods getting less expensive.
We Are Building the Wrong FactoriesDec 31, 2025
Why Silicon Valley's Defense Obsession is Missing the Real Path to American Reindustrialization
How Japan Built a Rare-Earth Supply Chain Without ChinaDec 8, 2025
The 15-year effort by Japan is a model for countries now scrambling to reduce their dependence on Beijing’s critical metals.
China’s unfair labor model is going globalNov 30, 2025
China's low rights model is no longer a domestic labor issue but a systemic challenge to global labor standards, supply chain governance and fair market competition.
The "Critical Minerals" Crisis of 100 Years AgoOct 2, 2025
I review a fascinating dissertation on interwar metals trading and the "Age of Alloy Steel"
How market design can feed the poorSep 15, 2025
America's largest non-profit had a broken distribution system. University of Chicago economists fixed it.
Overall equipment effectiveness - WikipediaSep 7, 2025
Ecommerce after De Minimis Tariff ExemptionAug 31, 2025
What began as a convenience rule in the 1930s grew into a key component of global ecommerce.
What Declining Cardboard Box Sales Tell Us About the US EconomyAug 17, 2025
Box demand touches nearly every industry, from flat-screen TVs to packaged food, all of which see sales fluctuate based on how flush shoppers feel.
Ranked: North America’s Busiest Freight Trade Hubs in 2024Jul 26, 2025
See North America's busiest freight trade hubs in 2024 and rail's role in moving over 54M containers across the U.S., Canada, and Mexico.
A Union Pacific-Norfolk Southern combination would redraw the railroad map - TrainsJul 26, 2025
Combining Union Pacific and Norfolk Southern into the first transcontinental railroad in the U.S. would create a 52,215-mile colossus that could offer seamless service from coast to coast, bypassing longtime interchange choke points in Chicago and at gateways along the Mississippi River.
The two railroads confirmed today that they are in advanced merger discussions. The talks, they said, may not result
Nvidia and others court niche Japanese supplier to ease AI bottlenecksJun 26, 2025
Glass cloth maker Nittobo is latest example country's overlooked role in supply chain
A Trade War Winner? The Booming Business of Returned Products.May 15, 2025
As retailers slow down orders for foreign goods because of tariffs, companies that recirculate overstocked or returned items may help fill the gap.
4 Keys to VMI SuccessMay 1, 2025
VMI (vendor managed inventory) is the process where the supplier manages the customer's inventory so that the customer has the "right" item in the "right" place at the "right" time to ensure high service levels, efficient and productive operations, and the least amount of inventory tied up unnecessarily.
Why Trump can’t build iPhones in the USApr 28, 2025
The administration wants the iPhone to be manufactured in America. The components that power it show why that is highly impractical
The Rise of Slopsquatting: How AI Hallucinations Are Fueling...Apr 13, 2025
Slopsquatting is a new supply chain threat where AI-assisted code generators recommend hallucinated packages that attackers register and weaponize.
Beyond RAG: How Articul8’s supply chain models achieve 92% accuracy where general AI failsApr 4, 2025
Articul8's specialized models tackle complex industrial sequences where timing and order matter, challenging the one-size-fits-all approach to enterprise AI.
NVIDIA Open-Sources cuOpt for Decision Optimization | NVIDIA BlogMar 19, 2025
Industry leaders advance complex decision-making and supply chain optimization with NVIDIA accelerated computing and cuOpt software.
NVIDIA Open-Sources cuOpt: An AI-Powered Decision Optimization Engine–Unlocking Real-Time Optimization at an Unprecedented ScaleMar 19, 2025
NVIDIA Open-Sources cuOpt: An AI-Powered Decision Optimization Engine--Unlocking Real-Time Optimization at an Unprecedented Scale
Need a de minimis strategy? Here are 4 questions every shipper should ask.Dec 12, 2024
Shipping using Section 321 is not a good idea for every e-commerce company, logistics experts say.
This Essential Element of the Power Grid Is in Critically Short SupplyDec 11, 2024
A transformer supply crisis bottlenecks energy projects
Supply Chain Analysis with R Using the planr Package | R-bloggersOct 20, 2024
Hey guys, welcome back to my R-tips newsletter. Supply chain management is essential in making sure that your company’s business runs smoothly. One of the key elements is managing inventory efficiently. Today, I’m going to show you how to estimate inve...
Cargo airships are happeningOct 16, 2024
Last year, I published an article on airships. The article was the fruit of a few years’ exploration of the industry. I spoke to multiple airship manufacturers under NDA. I traded ideas with other cargo airship enthusiasts.
When This Supply-Chain Essential Goes Missing, It’s Time to Bring in the ‘Pallet Detectives’Aug 4, 2024
Millions of the wooden pallets go missing every month, creating headaches for suppliers and hiccups in the supply chain. Finding them takes some serious shoe leather.
What happens if you shoot down a delivery drone?Jul 8, 2024
As deep-pocketed companies like Amazon, Google and Walmart invest in and experiment with drone delivery, a phenomenon reflective of this modern era has
384,000 sites pull code from sketchy code library recently bought by ChinesJul 4, 2024
Many website admins, it seems, have yet to get memo to remove Polyfill[.]io links.
3 Degrees and $100M of Product: What It’s Like to Work a Shift in a Cold StJun 28, 2024
Cold storage warehouses are essential to America’s food system. In "Frostbite," Nicola Twilley tries out a shift alongside the Americold workers who form one link in our vast cold chain.
About Nantian Electronics : IC chips & IGBT modules DisctributorJun 20, 2024
Nantian Electronics Co Limited provide complete and cost effective sourcing solution to OEMs, CEMs, distributors, the needs of manufacturers and other companies.
Record fab capacity in 2025 with 17 new fabsJun 11, 2024
The semiconductor industry is set to see a record fab capacity with 17 new lines in 2025 according to Knometa Research.
How Japanese Companies Are Benefiting From the Chips BattleJun 9, 2024
With subsidies and a $6 billion acquisition, Tokyo wants to make its companies indispensable in the global supply chain.
South Carolina Ports Authority’s port operations pause stretches into TuesdMay 21, 2024
The port halted activity at marine and inland terminals until Tuesday afternoon as it worked to resolve the disruption.
Why Prada is expanding production in Italy and its artisanal talentMay 11, 2024
'In the last six or seven years, with the extraordinary growth in knitwear, we decided to create an all-around industrial hub.'
Lenovo Shows Huge Optimism Towards AMD’s Instinct MI300X AI AcceleratorsMar 29, 2024
Lenovo, the firm emerging as a driving force behind AI computing, has expressed tremendous optimism about AMD's Instinct MI300X accelerator.
Kinaxis Customer CommunityFeb 28, 2024
The untraceable ingredients in skincare productsFeb 17, 2024
In the baffling world of skincare ingredients, where is the best place to start seeking sustainable skincare?
Liquid logistics: The fine art of wine transportationFeb 6, 2024
Wine transport is as old as the craft itself, but as the business grows globally wine shipping companies face many challenges. Join us as we uncork the world of liquid logistics and wine shipping services.
Why Walmart pays its truck drivers 6 figuresJan 27, 2024
Walmart is the largest company in the world. Its elite, well-compensated trucking fleet is part of the reason why.
ERP at the Precipice: Unbundling North to South and East to West | by BrendOct 7, 2023
Technology works in cycles. This time is no different.
A New Approach to Production and Inventory PlanningSep 27, 2023
Disruptions have become a way of life for manufacturers. But the production and inventory planning process that many companies, especially SMEs, use are not capable of handling the uncertainty. A new inexpensive method that was developed in research involving two companies can. It doesn’t have to be automated but can be.
What is EDI? Electronic Data InterchangeAug 30, 2023
Explore how Electronic Data Interchange (EDI) facilitates modern supply chain management.
How Sight—Not Taste, Smell, or Touch—Became the Sense of the Supermarket -May 9, 2023
When it comes to buying food, sight has usurped all other senses. What are the consequences of relegating smell, taste, and touch to the sidelines?
The Untold Story of the Boldest Supply-Chain Hack EverMay 6, 2023
The attackers were in thousands of corporate and government networks. They might still be there now. Behind the scenes of the SolarWinds investigation.
Supply Chain Analysis using PythonApr 9, 2023
In this article, I will take you through the task of Supply Chain Analysis using Python. Supply Chain Analysis using Python.
You can probably manufacture closer to home than you thinkMar 19, 2023
Let's take a closer look at how nonprofit FORGE helps founders manufacture on the other side of town instead of the other side of the world.
Aehr receives $6.7m order for FOX WaferPak full-wafer contactorsMar 15, 2023
Lead SiC test & burn-in customer boosting production of power devices for EVs
Why fabric fraud is so easy to hideFeb 24, 2023
How can we tell if the clothes in our wardrobes really are what they claim to be?
Tackling returns: an online clothing retailer changes the gameFeb 6, 2023
Learn how Bastian Solutions helped one retailer turn returns from a struggle to a reverse logistics advantage.
The Economic Secret Hidden in a Tiny, Discontinued PastaJan 13, 2023
Ronzini says it didn’t want to halt sales of its star-shaped “pastina.” So why did it?
Demand Planning. When The Answer To Two Simple Questions Is Not So Simple.Jan 3, 2023
The answer to a simple question of why do consumer products manufacturers not use retail data in the management of the supply chain?
Trains, Trucks, and Supply Chains - by Gad AllonDec 18, 2022
A rail strike was averted on the same week Tesla delivered its first semitruck to PepsiCo.
Where Does All the Cardboard Come From? I Had to Know. (Published 2022)Dec 5, 2022
Entire forests and enormous factories running 24/7 can barely keep up with demand. This is how the cardboard economy works.
Last Mile Delivery From Multiple Depots in PythonNov 7, 2022
Mathematical Modeling, Solution, and Visualization Using PuLP and VeRoViz
Optimizing delivery logistics in an economic downturnNov 5, 2022
Even in a recession, businesses can revolutionize logistics with AI and ML, allowing them to optimize and enhance customer satisfaction.
Can software simplify the supply chain? Ryan Petersen thinks soSep 22, 2022
The Flexport CEO on why it takes so long for your package to arrive.
How Automation is Changing Freight Bill of Lading Data EntrySep 11, 2022
Automating a bill of landing is like automating any other process in your system. It will save you money and time.
Cha Bu Duo: The expression that fills western manufacturers in China with dread | Hacker NewsAug 15, 2022
“Cha Bu Duo”: The expression that fills western manufacturers in China with dreadAug 15, 2022
“Cha Bu Duo” illustrates the difference in the way Chinese manufacturers and their western clients view product quality, says a China sourcing agent.
Supply Chain Process Optimization using Linear ProgrammingJul 27, 2022
Understand how linear programming can be the most powerful tool for a supply chain continuous improvement engineer
How to Price Shipping and Handling FeesJul 18, 2022
Today's consumers expect free shipping for most items. But it's not always obvious for merchants to know when and how to offer it. Here's our all-new update for analyzing shipping costs and free delivery.
Here’s Why Juicero’s Press is So ExpensiveJul 18, 2022
Hidden away in Juicero’s bad week of press is one of the most powerful lessons we preach to hardware startups: unconstrained development is…
7 Reasons to Consider USPS Flat Rate ShippingJun 22, 2022
Merchants in North America have many carrier choices for delivering goods to customers. The U.S. Postal Service's flat-rate shipping boxes can save money in certain instances. We compare prices in this post.
AWS for Industry, But Better: The Railroad Investment CaseJun 13, 2022
Plus! Smart Margin; Peak College?; Two-Sided Markets; Bonds; Diff Jobs
The people who rescue giant shipsMay 31, 2022
Enormous container ships ferry goods all over the world, but when one of them gets into trouble – as happened with the Ever Given and Ever Forward recently – how can they be saved?
Giant container ships are ruining everything - FreightWavesMay 29, 2022
Megaships are helping cause our current supply chain chaos. Big container boats have hampered competition and clogged up ports.
E-commerce giants didn't deliver. So these islanders built their own online shopping ecosystemApr 3, 2022
Local couriers are making online delivery possible in French Polynesia's 118 atolls and islands in the Pacific Ocean.
Post | Feed | LinkedInMar 14, 2022
Freight incoterms (International Commercial Terms) are the standard contract terms used in sales contracts with importing/exporting to define responsibility… | 250 comments on LinkedIn
The Secret Behind JD.com’s Super Fast Delivery | by JD Smart Supply Chain |Feb 23, 2022
The Inventory Allocation Perspection
Here’s what actually happens to all your online shopping returnsFeb 18, 2022
Ordering clothes from Chinese fast-fashion brands like Shein is easy. Sending them back is a lot more complicated
The history of the metal box that’s wrecking the supply chainDec 17, 2021
Shipping containers, explained by a historian.
The vinyl straw: Why the vinyl industry is at breaking point - Features - MOct 27, 2021
The industry is at its strongest since the advent of the CD, so why has it become near-impossible to get music pressed onto wax?
One Business That’s Loving the Supply Chain CrisisOct 20, 2021
Ikea and Crate and Barrel are plagued by shortages. These people are filling the void.
The Nasty Logistics of Returning Your Too-Small PantsOct 15, 2021
What happens to the stuff you order online after you send it back?
SAP IBP | Five reasons to consider IBP over APO | Intelligent Planning by MSep 28, 2021
SAP IBP offers powerful tools for business planning to replace SAP APO. Learn how our company can benefit from SAP Integrated Business Planning.
Food fraud and counterfeit cotton: the detectives untangling the global supply chainSep 22, 2021
The long read: Amid the complex web of international trade, proving the authenticity of a product can be near-impossible. But one company is taking the search to the atomic level
Why Amazon really built a new warehouse on the U.S.-Mexico borderSep 14, 2021
The fulfillment center in Tijuana is a symbol of how the pandemic has changed the way the world shops.
The history of Amazon’s forecasting algorithmAug 9, 2021
The story of a decade-plus long journey toward a unified forecasting model.
SKU rationalization helps Bed Bath & Beyond achieve 95% in-stock levelJul 7, 2021
The company expects to improve its inventory management even further as it overhauls its technology stack with a new ERP and forecasting system.
Read Excel files with Python. 1000x Faster.Jul 3, 2021
In this article, I’ll show you five ways to load data in Python. Achieving a speedup of 3 orders of magnitude.
Hacker lexicon: What is a supply chain attack?Jun 7, 2021
From NotPetya to SolarWinds, it’s a problem that’s not going away any time soon.
What is freight forwarding?Jun 5, 2021
This piece dives into freight forwarding and how your business can benefit from it.
Panasonic acquires Blue Yonder in a $7B supply-chain software dealApr 27, 2021
Panasonic’s acquisition of Blue Yonder is the latest billion-dollar deal marrying a manufacturer with a software firm.
The 7 A's of demand planning: A guide for CPG brandsApr 5, 2021
Imagine a business that runs better. “Better” looks like Integrated Business Planning—a harmonious framework in which sales, finance, and supply chain operations combine long-term profit goals and short-term demand planning efforts for a balanced, unified trajectory.
WSJF - Scaled Agile FrameworkMar 11, 2021
Weighted Shortest Job First (WSJF) is a prioritization model used to sequence work for maximum economic benefit. In SAFe, WSJF is estimated as the relative cost of delay divided by the relative job duration.
The Algorithms That Make Instacart RollMar 5, 2021
Instacart crunches petabytes daily to predict what will be on grocery shelves and even how long it will take to find parking
How to compute a safety stock - frePPLeMar 5, 2021
This articles covers the art and the science of computing a safety stock.
How to Make Your SFDC Funnel Analysis 10x Better - CoefficientMar 5, 2021
Coefficient's Google Sheets data connector integrates with your business systems. Live data, spreadsheet automation, & pre-built dashboards.
Why the empty container math doesn't add up in US exporters' favorFeb 3, 2021
What led to a global imbalance of available shipping containers? And what were the effects on U.S. businesses?
Improve Warehouse Productivity using Order Batching with PythonDec 18, 2020
Design a simulation model to estimate the impact of several Single Picker Routing Problem strategies in your Picking Productivity
New And Innovative Supply Chain Threats EmergingNov 5, 2020
But so are better approaches to deal with thorny counterfeiting issues.
In-store pick and pack starts with inventory visibilitySep 2, 2020
Nearly three-quarters of retailers consider it a challenge to implement an in-store accept, pick and pack process for online orders, according to a survey of retailers by Forrester.
Croston forecast model for intermittent demandAug 17, 2020
How to forecast intermittent demand thanks to the Croston forecast model.
A Little Step Makes a Thousand Miles, and a Little Stream Makes a Great OceAug 14, 2020
Youtan, Head of Alibaba Supply Chain Platform(ASCP), Tmall Supermarket, Freshippo, and Digital Agricultural Products
ERPNext User Manual (English)Aug 13, 2020
Recurrency is taking on giants like SAP with a modern twist on ERPJul 26, 2020
Recurrency, a member of the Summer 2020 Y Combinator cohort, was started by a 21 year old just out of college. He decided to take on a highly established
Amazon’s AI tool can plan collision-free paths for 1,000 warehouse robotsMay 19, 2020
Amazon researchers describe a machine learning system that plans the movements and paths of up to 1,000 mobile warehouse robots.
A picture is worth 1,000 false-positive bug reportsMay 16, 2020
How and why we built a custom app for visual debugging of warehouse pick paths.
A Feat for Connected Warehouses, Sensors Read 12,000 Bluetooth 5 Tags in 60Apr 24, 2020
In a quest for resilient supply chains, OnAsset Intelligence and Silicon Labs have achieved the
Top ERP Software - 2020 Reviews, Pricing & DemosMar 9, 2020
Find the best Enterprise Resource Planning Software for your organization. Compare top Enterprise Resource Planning Software systems with customer reviews, pricing, and free demos.
Manufacturing Software - Shoptech The E2 Shop SystemMar 4, 2020
ECI Manufacturing Software lets you run your shop like never before with JobBOSS², the most widely used shop management system on the market.
Wayfair is all in on logisticsFeb 29, 2020
Executives insist 2020 is the year Wayfair's logistics investments will show their worth.
The Best ERP Tools to Use in 2019Feb 19, 2020
Newsweek released their America's Best Business Tools 2019 list, and for this article, we chose to to focus on the best ERP software tools to use.
The Best E-Commerce Fulfillment Services for 2019 | PCMag.comDec 23, 2019
An online shopping cart and catalog is only the first step in e-commerce retail success. Once the customer buys, you need to get them their wares quickly and efficiently. That's where fulfillment services come in and we take a close look at ten of the top players.
Free Shipping — Real LifeAug 31, 2019
Delivery robots will redefine the meaning of every object they transport
3 Strategies to Fulfill Like AmazonJan 13, 2019
We can be certain that Amazon is spending millions to improve and optimize its shipping processes. In this post, I'll describe three strategies to fulfill like Amazon, even if you have a fraction of its scale and infrastructure.
Right product, right time, right location: Quantifying the semiconductor suDec 21, 2018
A new metric can help companies pinpoint performance issues on the semiconductor supply chain.
A Machine Learning Approach to Shipping Box Design. (arXiv:1809.10210v1 [stSep 29, 2018
Having the right assortment of shipping boxes in the fulfillment warehouse to pack and ship customer's online orders is an indispensable and integral part of nowadays eCommerce business, as it...
9 Tips to Manage Out-of-stock InventoryMay 28, 2018
Sometimes even the most-prepared retailers sell out of popular items. How these inventory shortages are communicated on an ecommerce website may impact
The Arms Race to Leverage Machine Learning in Supply Chain PlanningOct 24, 2017
Artificial intelligence (AI) is hot. Over $4 billion in venture capital has been invested in AI firms just in the US. But supply chain planning software companies, with their cadre of operations research Ph.Ds who have been modeling complex problems for decades, may be better poised to solve many complex business problems than the hot new Silicon Valley firms.
Open Source Supply Chains Can Fix Your Dependency HeadachesOct 24, 2003
Automated updates and community-driven tools like OpenRewrite help developers tackle dependency challenges and streamline software maintenance.
surfing
At the heart of surfing is the pursuit of moments so pure they clean you out | Aeon EssaysAug 11, 2025
At the heart of surfing, whether you’re a kook or a famous charger, is the pursuit of moments so pure they clean you out
A Surf Legend’s Long RideJun 3, 2024
For Jock Sutherland, being hailed as the world’s best surfer was just one phase in an unlikely life.
Kai Lenny Surfs the UnsurfableJun 7, 2022
The big-wave surfer tackles some of the most fearsome swells on the planet. On the surface, it looks like he’s just having fun.
surprise
A Look Back at the Package Under the Golden ArchesJul 18, 2022
Early Happy Meals promoted the McDonaldland characters, which were introduced in 1971.
How YouTube is changing toysJul 18, 2022
Kids are obsessed with YouTube unboxing videos. The toy industry is taking notice.
Why a Surprise Drop Can Be a Great Marketing Ploy for BrandsJul 18, 2022
Hulu and Beyoncé have pioneered a new way to generate hype.
survival-analysis
5 Statistical Methods That Dominate Their Industries (and Why)Dec 22, 2025
Discover which statistical methods dominate healthcare, finance, tech, retail, and sports analytics, and why these industry-method pairings became indispensable standards.
High-Dimensional Survival Analysis: Techniques for Big Data in Time-to-Event ModelingAug 20, 2025
In this article, we'll move past the textbook Cox model and look at how regularized models, tree-based methods, and deep learning can help survival analysis scale to meet real-world complexity.
Survival Analysis: Techniques for Analyzing Time-to-Event DataJun 11, 2025
Survival analysis, primarily used for modeling time-to-event data, provides an arsenal of statistical tools to estimate the expected time until one or more events of interest, such as death, failure, or attrition.
Concise Guide to Survival AnalysisApr 18, 2025
So, if you’ve ever asked, “How long until X happens?” and wanted to back that up with solid data, you’re in the right place.
Learning curve: The Kaplan-Meier estimator | The ActuaryMar 9, 2025
The Kaplan-Meier survival curve estimator is one of the most cited ideas in science
Olivier Grisel - Predictive survival analysis with scikit-learn, scikit-survival and lifelinesMar 2, 2025
A Practical Guide to Survival AnalysisFeb 5, 2025
Survival analysis consists of statistical methods that help us understand and predict how long it takes for an event to occur.
Better A/B testing with survival analysisJul 11, 2024
Pic by author - using DALL-E 3 When running experiments don’t forget to bring your survival kit I’ve already made the case in several blog posts (part 1, part 2, part 3) that using survival analysis can improve churn prediction. In this blog post I’ll ...
Survival Analysis with RFeb 22, 2024
With roots dating back to at least 1662 when John Graunt, a London merchant, published an extensive set of inferences based on mortality records, survival analysis is one of the oldest subfields of Statistics [1]. Basic life-table methods, including techniques for dealing with censored data, were discovered before 1700 [2], and in the early eighteenth century, the old masters - de Moivre working on annuities, and Daniel Bernoulli studying competing risks for the analysis of smallpox inoculation - developed the modern foundations of the field [2]. Today, survival analysis models are important in Engineering, Insurance, Marketing, Medicine, and many more application areas. So, it is not surprising that R should be rich in survival analysis functions. CRAN’s Survival Analysis Task View, a curated list of the best relevant R survival analysis packages and functions, is indeed formidable. We all owe a great deal of gratitude to Arthur Allignol and Aurielien Latouche, the task view maintainers. Looking at the Task View on a small screen, however, is a bit like standing too close to a brick wall - left-right, up-down, bricks all around. It is a fantastic edifice that gives some idea of the significant contributions R developers have made both to the theory and practice of Survival Analysis. As well-organized as it is, however, I imagine that even survival analysis experts need some time to find their way around this task view. Newcomers - people either new to R or new to survival analysis or both - must find it overwhelming. So, it is with newcomers in mind that I offer the following narrow trajectory through the task view that relies on just a few packages: survival, ggplot2, ggfortify, and ranger The survival package is the cornerstone of the entire R survival analysis edifice. Not only is the package itself rich in features, but the object created by the Surv() function, which contains failure time and censoring information, is the basic survival analysis data structure in R. Dr. Terry Therneau, the package author, began working on the survival package in 1986. The first public release, in late 1989, used the Statlib service hosted by Carnegie Mellon University. Thereafter, the package was incorporated directly into Splus, and subsequently into R. ggfortify enables producing handsome, one-line survival plots with ggplot2::autoplot. ranger might be the surprise in my very short list of survival packages. The ranger() function is well-known for being a fast implementation of the Random Forests algorithm for building ensembles of classification and regression trees. But ranger() also works with survival data. Benchmarks indicate that ranger() is suitable for building time-to-event models with the large, high-dimensional data sets important to internet marketing applications. Since ranger() uses standard Surv() survival objects, it’s an ideal tool for getting acquainted with survival analysis in this machine-learning age. Load the data This first block of code loads the required packages, along with the veteran dataset from the survival package that contains data from a two-treatment, randomized trial for lung cancer. library(survival) library(ranger) library(ggplot2) library(dplyr) library(ggfortify) #------------ data(veteran) head(veteran) ## trt celltype time status karno diagtime age prior ## 1 1 squamous 72 1 60 7 69 0 ## 2 1 squamous 411 1 70 5 64 10 ## 3 1 squamous 228 1 60 3 38 0 ## 4 1 squamous 126 1 60 9 63 10 ## 5 1 squamous 118 1 70 11 65 10 ## 6 1 squamous 10 1 20 5 49 0 The variables in veteran are: * trt: 1=standard 2=test * celltype: 1=squamous, 2=small cell, 3=adeno, 4=large * time: survival time in days * status: censoring status * karno: Karnofsky performance score (100=good) * diagtime: months from diagnosis to randomization * age: in years * prior: prior therapy 0=no, 10=yes Kaplan Meier Analysis The first thing to do is to use Surv() to build the standard survival object. The variable time records survival time; status indicates whether the patient’s death was observed (status = 1) or that survival time was censored (status = 0). Note that a “+” after the time in the print out of km indicates censoring. # Kaplan Meier Survival Curve km
The Complete Introduction to Survival Analysis in Python | by Marco PeixeirJul 24, 2023
Understand survival analysis, its use in the industry, and how to apply it in Python
What Is Survival Analysis? Examples by Hand and in RDec 23, 2022
Learn more about survival analysis (also called time-to-event analysis) and how it is used, and how to apply it by hand and in R
Survival Analysis: Optimize the Partial Likelihood of the Cox ModelDec 10, 2022
Finding the coefficients that maximize the log-partial likelihood in Python
Survival Analysis in R (in under 10-minutes)Jun 11, 2022
Making a survival analysis can be a challenge even for experienced R users, but the good news is I’ll help you make beautiful, publication-quality survival plots in under 10-minutes. Here’s what WE are going to do: Make your first survival model an...
How to Evaluate Survival Analysis ModelsJun 7, 2022
Introduction to the most popular performance evaluation metrics for survival analysis along with practical Python examples
Survival Analysis: A Brief IntroductionMay 13, 2022
An initial look into the method best suited for examining time-to-event data
Survival Analysis in Python: A Quick Guide to The Weibull AnalysisJan 21, 2022
A Quick Guide to The Weibull Analysis
Hands-on Survival Analysis with PythonJul 4, 2021
What companies can learn from employee turnover data
A Complete Guide To Survival Analysis In Python, part 3 - KDnuggetsFeb 24, 2021
Concluding this three-part series covering a step-by-step review of statistical survival analysis, we look at a detailed example implementing the Kaplan-Meier fitter based on different groups, a Log-Rank test, and Cox Regression, all with examples and shared code.
Introduction to Survival Analysis: the Kaplan-Meier estimatorNov 22, 2020
Learn one of the most popular techniques used for survival analysis and how to implement it in Python!
Practical Survival Analysis — Concepts, techniques, modelsNov 21, 2020
With worked out examples using Python and Lifelines
svd
How to Perform Matrix Factorization Using SVD with NumPyAug 25, 2025
In this article, we will learn how to use SVD for matrix factorization with NumPy.
A Deep Dive into Autoencoders and Their Relationship to PCA and SVDJul 24, 2023
An in-depth exploration of autoencoders and dimensionality reduction
Essential Math for Data Science: Visual Introduction to Singular Value DecoJun 21, 2022
This article will cover singular value decomposition (SVD), which is a major topic of linear algebra, data science, and machine learning.
Game theory as an engine for large-scale data analysis | DeepMindMay 7, 2021
Modern AI systems approach tasks like recognising objects in images and predicting the 3D structure of proteins as a diligent student would prepare for an exam. By training on many example...
Singular value decomposition - WikipediaMay 7, 2021
In linear algebra, the singular value decomposition (SVD) is a factorization of a real or complex matrix into a rotation, followed by a rescaling followed by another rotation. It generalizes the eigendecomposition of a square normal matrix with an orthonormal eigenbasis to any matrix. It is related to the polar decomposition.
sveltejs
Getting Started With SvelteKitJan 24, 2023
SvelteKit is the latest of what I'd call next-gen application frameworks. It, of course, scaffolds an application for you, with the file-based routing,
Getting Started with Svelte and Rails 6Jan 17, 2022
Svelte is slowly rising to fame these days and it’s getting more and more traction with new version 3 being released in April.
Getting Acquainted With Svelte, The New Framework On The Block | CSS-TricksDec 13, 2021
For the last six years, Vue, Angular, and React have run the world of front-end component frameworks. Google and Facebook have their own sponsored frameworks,
Getting Started with SvelteKit: 10 TipsJul 13, 2021
Getting started with SvelteKit: 10 tips I learned building fast Svelte sites from tooling to integrating SEO components and Netlify config
The Svelte Compiler HandbookApr 5, 2020
The Svelte compilation process can be broken down into 4-steps, 1) parsing source code into AST, 2) tracking references and dependencies, 3) creating code blocks and fragments, and 4) generate code.
Build a Svelte JS App: Magic Framework (Svelte 3 Tutorial) - SnipcartDec 23, 2019
Svelte.js is a JS framework that simplifies the creation of fast, static web apps by turning raw code into sleek & interactive UI. Read this guide to get started.
svg
Chris’ Corner: SVG ToolsFeb 23, 2026
You can kinda smell a vibe-coded app these days. TypingSVG has that odor, but like… in a good way? An app like this absolutely should exist. Someone needed it, and how instead of it just bein…
Smashing Animations Part 7: Recreating Toon Text With CSS And SVG — Smashing MagazineDec 17, 2025
In this article, pioneering author and web designer [Andy Clarke](https://stuffandnonsense.co.uk) shows his techniques for creating [Toon Text titles](https://stuffandnonsense.co.uk/toon-text/index.html) using modern CSS and SVG.
An Interactive Guide to SVG Paths • Josh W. ComeauAug 22, 2025
SVG gives us many different primitives to work with, but by far the most powerful is the element. Unfortunately, it’s also the most inscrutable, with its compact Regex-style syntax. In this tutorial, we’ll demystify this infamous element and see some of the cool things we can do with it!
A Friendly Introduction to SVG • Josh W. ComeauAug 12, 2025
SVGs are one of the most remarkable technologies we have access to on the web. They’re first-class citizens, fully addressable with CSS and JavaScript. In this tutorial, I’ll cover all of the most important fundamentals, and show you some of the ridiculously-cool things we can do with this massively underrated tool. ✨
The Ultimate Guide to Free SVG GeneratorsMar 11, 2024
SVG (Scalable Vector Graphics) stand out for their crispness and scalability, making them...
Examples of SVG Shape Usage in Web DesignFeb 21, 2024
Learn how SVG shapes can enhance web design, offering scalable, responsive, and visually appealing elements for modern websites.
A Deep Dive Into SVG Path CommandsJul 22, 2023
An interactive guide to understanding SVG paths and path commands.
Customize and apply backgrounds fast | SVG BackgroundsMar 21, 2023
👉 Copy-and-paste backgrounds, patterns, icons, and other website graphics directly into projects. All customizable, tiny in file size, and licensed for multi-use.
Articles — Smashing MagazineFeb 22, 2023
Smashing Magazine — front-end, UX and design for front-end engineers and designers
Putting Gears In Motion: Animating Cars With HTML And SVGFeb 17, 2023
SVG `` provides a way to define how an element moves along a motion path. In this article, Paul Scanlon shares an idea of how to use it by animating race cars in an infinite loop as easy as one-two-three!
Easy SVG Customization And Animation: A Practical GuideFeb 17, 2023
Developers often feel discouraged from editing SVG markup and experimenting with SVG animations, thinking it’s a significant time investment or they need to use a complex animation library to do so. In this article, Adrian showcases his favorite tricks, which make the process streamlined and fun.
SVG — Smashing MagazineFeb 17, 2023
Smashing Magazine — front-end, UX and design for front-end engineers and designers
Creating an interactive SVG: The circle of fifthsFeb 9, 2023
Written by Mads Stoumann✏️ Not so long ago, these beautiful posters showed up in an advertisement on...
Magical SVG TechniquesMay 29, 2022
Smart SVG techniques, from generative SVG grids to SVG paths with masks, grainy SVG gradients, cut-out effects and fractional SVG stars. Let’s look at some magical SVG techniques that you can use right away.
An in-depth SVG tutorialMay 28, 2022
SVG is an awesome and incredibly powerful image format. This tutorial gives you an overview of SVG by explaining all you need to know in a simple way
A Practical Guide to SVGs on the webDec 26, 2021
Creating Graphics Using SVG and AngularJS | DotNetCurryDec 13, 2021
Learn to create interesting biological models and graphics using SVG and AngularJS
Creating Web Icons with SVG Online Class | LinkedIn Learning, formerly Lynda.comDec 13, 2021
Get crisper, smaller web graphics with SVG. Learn three different methods to implement SVG web icons on websites and in WordPress themes.
SVG Repo - Free SVG Vectors and IconsFeb 12, 2021
Free Vectors and Icons in SVG format. ✅ Download free mono or multi color vectors for commercial use. Search in 500.000+ Free SVG Vectors and Icons.
A Practical Guide To SVG And Design ToolsAug 29, 2019
To make the best of SVG, it’s useful not only to learn its syntax but also to understand how SVG is generated by graphic design software. Let’s take a closer look at the process of generating SVG with popular design apps and how we can use them to our own advantage. In this post, Mikolaj Dobrucki will shed light on three of the most popular design tools: Adobe Illustrator, Sketch, and Figma. There are also other tools available supporting SVG that may have other functionalities and implement other solutions. This article should be enough to deal with the most common use cases.
SVG Coding Examples: Useful Recipes For Writing Vectors By HandSep 24, 2018
Myriam Frisano explores the basics of hand-coding SVGs with practical examples to demystify the inner workings of common SVG elements. In this guide, you’ll learn about asking the right questions to solve common positioning problems and how to leverage JavaScript so that, by the end, you can add “SVG coding” to your toolbox. You’ll also be able to declare proudly, “I know how to draw literal pictures with words!”
svm
What are Support Vector Machines (SVM)? - DataconomyMar 12, 2025
Support Vector Machines (SVM) are supervised learning algorithms used for classification and regression by finding optimal decision boundaries between data classes.
Support Vector Machines: A Progression of AlgorithmsFeb 3, 2025
MMC, SVC, SVM: What’s the difference?
Support Vector Machine (SVM) AlgorithmNov 18, 2024
Support Vector Machines (SVMs) are a powerful and versatile supervised machine learning algorithm primarily used for classification and regression tasks. They excel in high-dimensional spaces and are particularly effective when dealing with complex datasets. The core principle behind SVM is to identify the optimal hyperplane that effectively separates data points into different classes while maximizing the margin between them. SVMs have gained significant popularity due to their ability to handle both linear and non-linear classification problems. By employing kernel functions, SVMs can map data into higher-dimensional feature spaces, capturing intricate patterns and relationships that may not be apparent in the
SVM and Kernels: The Math that Makes Classification MagicApr 8, 2024
Imagine you're at a party separating people who love pizza (yum!) from those who...well, have...
A Gentle Introduction to Support Vector MachinesJul 23, 2023
A guide to understanding support vector machines for classification: from theory to scikit-learn implementation.
scikit-and-tensorflow-workbooks/ch05-support-vector-machines.ipynb at master · bjpcjp/scikit-and-tensorflow-workbooksJan 16, 2022
based on "Hands-On Machine Learning with Scikit-Learn & TensorFlow" (O'Reilly, Aurelien Geron) - bjpcjp/scikit-and-tensorflow-workbooks
SVM Classifier and RBF Kernel — How to Make Better Models in PythonJan 19, 2021
A complete explanation of the inner workings of Support Vector Machines (SVM) and Radial Basis Function (RBF) kernel
Support Vector Machine (SVM) Tutorial: Learning SVMs From ExamplesDec 27, 2017
In this post, we will try to gain a high-level understanding of how SVMs work. I’ll focus on developing intuition rather than rigor. What that essentially means is we will skip as much of the math as possible and develop a strong intuition of the working principle.
swarms
A Behavior-Centric Taxonomy for Swarm Intelligence: Reclassifying Algorithms Based on Bio-Inspired MechanismsJan 6, 2026
Swarm Intelligence (SI) represents a significant paradigm within artificial intelligence, drawing inspiration from the collective behaviors of natural systems to solve complex computational problems. However, the conventional classification of SI algorithms often groups them monolithically or based on superficial characteristics like the inspiring organism, obscuring crucial differences in their underlying operational mechanisms. This article addresses this limitation by proposing a novel taxono
Particle Swarm Optimization (PSO) from scratch. Simplest explanation in pytMar 3, 2024
How to implement PSO
Complete Step-by-step Particle Swarm Optimization Algorithm from ScratchJun 23, 2022
And its implementation for solving a nonlinear control theory problem
Particle Swarm Optimization Visually ExplainedDec 22, 2020
Learn PSO algorithm as a bedtime story with GIFs and python code
Swarm Optimization: Goodbye Gradients - DataScienceCentral.comMay 12, 2018
Fish schools, bird flocks, and bee swarms. These combinations of real-time biological systems can blend knowledge, exploration, and exploitation to unify intelligence and solve problems more efficiently. There’s no centralized control. These simple agents interact locally, within their environment, and new behaviors emerge from the group as a whole. In the world of evolutionary alogirthms… Read More »Swarm Optimization: Goodbye Gradients
symbols
Why Knights Fought Snails in Medieval Illuminated ManuscriptsAug 18, 2025
The snail may leave a trail of slime behind him, but a little slime will do a man no harm... whilst if you dance with dragons, you must expect to burn.
- George R. R. Martin, The Mystery Knight
As any Game of Thrones fan knows, being a knight has its downsides.
Mathematical Symbols’ Wild History ExplainedFeb 7, 2025
A mathematician has uncovered the stories behind the symbols used in math
Ten Thousand Years - 99% InvisibleDec 21, 2024
In 1990, the federal government invited a group of geologists, linguists, astrophysicists, architects, artists, and writers to the New Mexico desert, to visit the Waste Isolation Pilot Plant. They would be there on assignment. The Waste Isolation Pilot Plant (WIPP) is the nation’s only permanent underground repository for nuclear waste. Radioactive byproducts from nuclear weapons manufacturing and nuclear power plants. WIPP was
How the Peace Sign Went From Powerful Protest Symbol to Lifestyle MotifMar 31, 2024
For a younger generation, the once-powerful protest symbol packs about as much of a punch as a smiley face.
Circles And SlashesMar 11, 2024
One of the best-known icons of modern society is a classic example of a symbol—it’s easy to spot, but hard to explain. Who came up with it?
Use of ‘Help Mark’ symbol spreading in JapanAug 30, 2022
News on Japan, Business News, Opinion, Sports, Entertainment and More article expired
Beyond Biohazard: Why Danger Symbols Can't Last Forever - 99% InvisibleJul 18, 2022
The world is full of icons that warn us to be afraid — to stay away from this or not do that. And many of these are easy to understand because they represent something recognizable, like a fire, or a person slipping on a wet floor. But some concepts are hard to communicate visually, especially
The rise, fall, and rise of the status pineappleJun 30, 2022
For a couple of centuries, the British were in an unlikely frenzy for the exotic fruit.
The Owl's Right Eye - Unintended ConsequencesJan 2, 2021
Why China considers a covered eye to be dangerous. And why people still do it. From the winking owl to the Hong Kong protest eye patch.
Reading, That Strange and Uniquely Human ThingDec 28, 2020
How we evolved to read is a story of one creative species.
L-SystemDec 19, 2020
An L-system or Lindenmayer system is a parallel rewriting system and a type of formal grammar. An L-system consists of an alphabet of symbols that can be used to make strings, a collection of production rules that expand each symbol into some larger string of symbols, an initial "axiom" string from which to begin construction, and a mechanism for translating the generated strings into geometric structures. L-systems were introduced and developed in 1968 by Aristid Lindenmayer, a Hungarian theoretical biologist and botanist at the University of Utrecht.[1] Lindenmayer used L-systems to describe the behaviour of plant cells and to model the growth processes of plant development. L-systems have also been used to model the morphology of a variety of organisms[2] and can be used to generate self-similar fractals.
A Dictionary of Symbols: Juan Eduardo Cirlot’s Classic Study of Symbols GetNov 6, 2020
How, exactly, does one go about making a global dictionary of symbols? It is a Herculean task, one few scholars would take on today, not only because of its scope but because the philological approach that gathers and compares artifacts from every culture underwent a correction:
Why Robot Brains Need SymbolsOct 9, 2019
We’ll need both deep learning and symbol manipulation to build AI.
Why Red Means Red in Almost Every Language - Issue 76: LanguageOct 4, 2019
Nautilus is a different kind of science magazine. Our stories take you into the depths of science and spotlight its ripples in our lives and cultures.
Why Symbols Aren’t ForeverSep 29, 2019
The removal of cultural emblems is not the erasure of history but part of it.
The Hobo Code: An Introduction to the Hieroglyphic Language of Early 1900sAug 23, 2018
Many of us now use the word hobo to refer to any homeless individual, but back in the America of the late 19th and early 20th century, to be a hobo meant something more.
This blue dot is taking over Nebraska. It might be the best political logo we’ve seen this electionSep 24, 2005
Yard signs featuring this mysterious blue dot are quickly gaining popularity among Nebraska Democrats. Here's what it means.
sympy
Beyond Numpy and Pandas: Unlocking the Potential of Lesser-Known Python LibSep 1, 2023
3 Python libraries for scientific computation you should know as a data professional.
SymPy makes math fun againFeb 26, 2023
An introduction into symbolic computations in Python. Don't worry, it's much simpler than it sounds. It's about making Python do your math for you with very little investment in the technology.
synthetic-data
Building Synthetic Medical Records using GANsAug 12, 2025
In this article, I'll walk you through building GANs from scratch to generate synthetic medical records using Python.
The market for synthetic data is bigger than you thinkJun 1, 2022
To understand what's happening, but also what's coming if synthetic data does get more broadly adopted, we talked to various CEOs and VCs over the last few months.
An overview of synthetic data types and generation methodsFeb 22, 2021
Synthetic data can be used to test new products and services, validate models, or test performances because it mimics the statistical property of production data. Today you'll find different types of structured and unstructured synthetic data.
Synthetic data generation — a must-have skill for new data scientistsAug 29, 2019
A brief rundown of packages and ideas to generate synthetic data for self-driven data science projects and deep diving into machine…
taxes
How to move to Europe as a self-employed American - Cardon & CompanyNov 16, 2025
Are you looking to migrate to Europe from the USA? There is no European country where an American can get a work and resident visa easier than in the Netherlands. The main requirement is: you need to become self employed. In this article we explain.
SafesendReturnsDec 23, 2024
The Getty Family’s Trust IssuesJan 20, 2023
Heirs to an iconic fortune sought out a wealth manager who would assuage their progressive consciences. Now their dispute is exposing dynastic secrets.
Ten Ways Billionaires Avoid Taxes on an Epic ScaleJul 1, 2022
After a year of reporting on the tax machinations of the ultrawealthy, ProPublica spotlights the top tax-avoidance techniques that provide massive benefits to billionaires.
Do You Have to Pay Capital Gains Tax on a Home Sale?Mar 23, 2022
Capital gains taxes on real estate and property can be reduced or not assessed when you sell your home, up to certain tax limits, if you meet the requirements.
Property Taxes by State in 2024Apr 12, 2021
All Personal FeedsFeb 9, 2021
Multinationals, billionaires, artists, sportsmen, criminals : an investigation by Le Monde reveals for the first time exhaustively what the Grand Duchy’s financial centre conceals, thanks to its tax advantages.
The Double Irish Dutch Sandwich: End of a Tax Evasion StrategySep 24, 2017
I wrote a decade ago about the Double Irish Dutch Sandwich, a strategy for corporations to evade taxes that was widespread and large-scale enough to come to the attention of the International Monetary Fund. But due to various changes in national and international tax agreements, the strategy seems to have faded substantially. Ana Maria Santacreu
taxonomy
Taxonomy as a serviceDec 26, 2024
When the truck makes a delivery at the nearby True Value hardware store, Danny needs to figure out which shelf to put it on. Should the extension cords go next to the hoses? After all, they both do…
Resources for Taxonomy Creation and Content ManagementJun 19, 2024
Resources for knowledge management, content management and taxonomy creation on the Web.
[2406.01506] The Geometry of Categorical and Hierarchical Concepts in LargeJun 11, 2024
The linear representation hypothesis is the informal idea that semantic concepts are encoded as linear directions in the representation spaces of large language models (LLMs). Previous work has...
Toward a unified taxonomy of text-based social media useFeb 29, 2024
The development of trolls appears to be the internet’s version of carcinization.
Tag-Based File Organization: Benefits, Linux Tagging Software, & LimitationsNov 1, 2022
We all have data that we need to store, and then find. Regardless of type, data tends to build up. Eventually, we need some system for organizing it into sensible categories. It turns out, this problem is harder than it seems. In this article, I'm going to be talking about
Taxonomy 101: Definition, Best Practices, and How It Complements Other IA WJul 3, 2022
A taxonomy is a backstage structure that complements the visible navigation. Taxonomies support consistent information retrieval by creating formal metadata rules.
T-LEAF: Taxonomy Learning and EvaluAtion FrameworkJun 24, 2022
How we applied qualitative learning, human labeling and machine learning to iteratively develop Airbnb’s Community Support Taxonomy.
Taxonomies: Connecting Users to ContentApr 8, 2021
Taxonomies may be thought of as hierarchies of categories to group and organize information to be found when browsing, or as a structured set of terms used to tag content so that it can be retrieved efficiently and accurately. Sometimes the same taxonomy may serve both purposes, and sometimes two different taxonomies are used, one for each purpose, for the same content or site. Taxonomies are not new, in fact there has been a lot written about them, including an
teamwork
How to build team spirit | Psyche GuidesJan 20, 2026
The glue, or spirit, that binds certain teams is not mystical – you can cultivate it by changing how you work together
The Secret Code of Pickup BasketballJun 19, 2024
The game presents a social problem: How does one find comity among a group of jostling strangers?
How to Encourage Your Team to Give You Honest FeedbackOct 29, 2022
Far too often, team members expect to be given downward feedback, but unless they’re explicitly invited to offer upward feedback, they won’t know that it’s even an option. As a manager, it’s your job to ask your employees for feedback on your own performance. How else will you know what you should keep doing and what you should be doing differently? Nevertheless, you might find that your direct reports are reluctant to give you the feedback you need to improve, or even sustain, what’s working. This article addresses five common barriers that managers face in getting helpful feedback from direct reports, and how to address them so that you can gain the insights you need.
An Exercise to Help Your Team Feel More Comfortable with ConflictJun 25, 2022
The ability to get issues on the table and work through them constructively is critical to having a healthy culture. Managers can normalize productive conflict on your team by using an exercise to map out the unique value of each role and the tensions that should exist among them. Draw a circle and divide that circle into enough wedges to represent each role on your team. For each role, ask: What is the unique value of this role on this team? On which stakeholders is this role focused? What is the most common tension this role puts on team discussions? Answer those questions for each member of the team, filling in the wedges with the answers. As you go, emphasize how the different roles are supposed to be in tension with one another. With heightened awareness and a shared language, your team will start to realize that much of what they have been interpreting as interpersonal friction has actually been perfectly healthy role-based tension.
What Silicon Valley "Gets" about Software Engineers that Traditional CompanJan 11, 2021
I've worked at various tech companies: from "traditional" shops and consultancies, through an investment bank, to high-growth tech firms. I've also talked with software engineers working at startups, banking, automotive, big tech, and more "traditional" companies. This mix had a healthy sample of Silicon-Valley companies and ones headquartered outside this
The Surprising Power of Simply Asking Coworkers How They’re DoingMar 3, 2019
A recent EY survey found that more than 40% of U.S. respondents reported feeling physically and emotionally isolated in the workplace. This group spanned generations, genders and ethnicities. People want more connection with those they work with. So how can companies connect more effectively with employees and help them feel like they belong within their workplace community? The survey points to one simple solution: establish more opportunities for colleagues to check in with one another. 39% of respondents feel the greatest sense of belonging when their colleagues check in with them, both personally and professionally. By reaching out and acknowledging their employees on a personal level, companies and leaders can significantly enhance the employee experience by making their people feel valued and connected.
Research: Whistleblowers Are a Sign of Healthy CompaniesNov 14, 2018
An analysis of more than 1.2 million records of internal reports made by employees of public U.S. companies reveals that whistleblowers are crucial to keeping firms healthy. The more employees use internal whistleblowing hotlines, the fewer lawsuits companies face, and the less money firms pay out in settlements. A one standard deviation increase in the use of an internal reporting system is associated with 6.9% fewer pending lawsuits and 20.4% less in aggregate settlement amounts over a three-year period.
Design the Team You Need to SucceedMay 17, 2017
Part One: Types of Teams Written to sort out my thoughts for my UXDC keynote. If you’d like me to speak at your conference on high performing teams, check out cwodtke.com “High Performing Team” is …
Designing High Performing TeamsMay 17, 2017
This is Part 2 of a three part series on high performing teams. Part one is of Design the Team You Need to Succeed Now you’ve decided you want more than a workgroup, what should you do? What does i…
telegram
Experts say Telegram’s ’30 engineers’ team is a security red flagJun 26, 2024
Telegram's founder Pavel Durov says his company only employs around 30 engineers. Security experts say that raises serious questions about the company's cybersecurity.
Ukrainians Are Using the Quiet Resistance Tools They NeedMar 15, 2022
The utilization of chat apps like Telegram underscores how, in a world where we expect everything to be public, lasting resistance requires privacy.
telephones
When disaster strikes, the world opens WhatsAppDec 15, 2024
Meta's messaging app has transformed communication in conflict and crisis areas.
Building the Bell SystemJul 3, 2024
If someone was making a list of the most important American companies today, it’s unlikely AT&T would be anywhere near the top.
Turning Back the Clock: The 1951 Bell Manual for Operating a Rotary TelephoFeb 19, 2024
In 1951, Bell Telephone System introduced a guide titled "The Telephone and How We Use It," designed to aid elementary school students and others in understanding the operation of classic rotary dial phones. The guide detailed everything from basic phone use, handling emergencies, to polite phone ma
tensorflow
Google AI Releases TensorFlow GNN 1.0 (TF-GNN): A Production-Tested LibraryFeb 16, 2024
Graph Neural Networks (GNNs) are deep learning methods that operate on graphs and are used to perform inference on data described by graphs. Graphs have been used in mathematics and computer science for a long time and give solutions to complex problems by forming a network of nodes connected by edges in various irregular ways. Traditional ML algorithms allow only regular and uniform relations between input objects, struggle to handle complex relationships, and fail to understand objects and their connections which is crucial for many real-world data. Google researchers added a new library in TensorFlow, called TensorFlow GNN 1.0 (TF-GNN)
How AMD May Get Across the CUDA MoatOct 7, 2023
When discussing GenAI, the term "GPU" almost always enters the conversation and the topic often moves toward performance and access. Interestingly, the word "GPU" is assumed to mean "Nvidia" products. (As an aside, the popular Nvidia hardware used in GenAI are not technically...
Why TensorFlow for Python is dying a slow deathJan 13, 2023
Many developers who use Python for machine learning are now switching to PyTorch. Find out why and what the future could hold for TensorFlow.
Real-time SKU detection in the browser using TensorFlow.jsJun 7, 2022
Realtime and offline SKU detection in the browser using Tensorflow.js
The Ultimate TensorFlow-GPU Installation Guide For 2022 And BeyondFeb 6, 2022
The Ultimate Guide To Always Install The Latest GPU Version Of TensorFlow on your PC no matter what
Engineering Trade-Offs in Automatic Differentiation: from TensorFlow and PyDec 27, 2021
To understand the differences between automatic differentiation libraries, let’s talk about the engineering trade-offs that were made. I would personally say that none of these libraries are “better” than another, they simply all make engineering trade-offs based on the domains and use cases they were aiming to satisfy. The easiest way to describe these trade-offs is to follow the evolution and see how each new library tweaked the trade-offs made of the previous. Early TensorFlow used a graph building system, i.e. it required users to essentially define variables in a specific graph language separate from the host language. You had to define “TensorFlow variables” and “TensorFlow ops”, and the AD would then be performed on this static graph. Control flow constructs were limited to the constructs that could be represented statically. For example, an `ifelse` function statement is very different from ... READ MORE
PyTorch vs TensorFlow in 2023Dec 14, 2021
Should you use PyTorch vs TensorFlow in 2023? This guide walks through the major pros and cons of PyTorch vs TensorFlow, and how you can pick the right framework.
Model Compression: A Look into Reducing Model SizeJan 10, 2021
Why is Model Compression important? A significant problem in the arms race to produce more accurate models is complexity, which leads to…
PyTorch vs. TensorFlow – a detailed comparisonNov 2, 2020
Delve into the comprehensive comparison of PyTorch and TensorFlow, two leading machine learning frameworks. This article covers vital differences in ease of use, graph definition, and deployment capabilities, including insights on transitioning from PyTorch to TensorFlow Lite.
Build an app to generate photorealistic faces using TensorFlow and StreamliApr 19, 2020
We’ll show you how to quickly build a Streamlit app to synthesize celebrity faces using GANs, Tensorflow, and st.cache.
tf.data: Creating data input pipelinesApr 19, 2020
Are you not able to load your NumPy data into memory? Does your model have to wait for data to be loaded after each epoch? Is your Keras…
Ultra-High Resolution Image Analysis with Mesh-TensorFlowMar 9, 2020
Posted by Le Hou and Youlong Cheng, Software Engineers, Google Research Deep neural network models form the backbone of most state-of-the-art ima...
Easy Image Dataset Augmentation with TensorFlow - KDnuggetsMar 9, 2020
What can we do when we don't have a substantial amount of varied training data? This is a quick intro to using data augmentation in TensorFlow to perform in-memory image transformations during model training to help overcome this data impediment.
Inside TensorFlow: Eager execution runtimeDec 14, 2019
Take an inside look into the TensorFlow team’s own internal training sessions--technical deep dives into TensorFlow by the very people who are building it. On this episode of Inside TensorFlow, Software Engineer Alex Passos discusses the eager execution runtime. Let us know what you think about this presentation in the comments below!
Watch more from Inside TensorFlow Playlist → https://goo.gle/Inside-TensorFlow
Subscribe to the TensorFlow channel → https://goo.gle/TensorFlow
Tensorflow Tutorial : Part 2 – Getting Started - DataScienceCentral.comOct 24, 2019
In this multi-part series, we will explore how to get started with tensorflow. This tensorflow tutorial will lay a solid foundation to this popular tool that everyone seems to be talking about. The second part is a tensorflow tutorial on getting started, installing and building a small use case. This post is the second part of… Read More »Tensorflow Tutorial : Part 2 – Getting Started
Scaling Jupyter notebooks with Kubernetes and TensorflowAug 29, 2019
In this article, you will explore how you can leverage Kubernetes, Tensorflow and Kubeflow to scale your models without having to worry about scaling the infrastructure.
Programmer's Guide | TensorFlowJun 8, 2018
Learn basic and advanced concepts of TensorFlow such as eager execution, Keras high-level APIs and flexible model building.
wiseodd/generative-models: Collection of generative models, e.g. GAN, VAE iNov 11, 2017
Collection of generative models, e.g. GAN, VAE in Pytorch and Tensorflow. - wiseodd/generative-models
terraform
OpenTofu: The Open Source Terraform AlternativeApr 11, 2024
What is OpenTofu OpenTofu is an open-source Terraform fork, a drop-in replacement for...
Deploying an Infrastructure as Code Project in GCP Using Terraform.Dec 28, 2022
The creation of resources in the cloud and the management of the lifecycle of these resources can be...
GitHub - hashicorp/terraform: Terraform enables you to safely and predictabJun 9, 2021
Terraform enables you to safely and predictably create, change, and improve infrastructure. It is a source-available tool that codifies APIs into declarative configuration files that can be shared ...
State of the Art Infrastructure as CodeDec 18, 2020
The newest layer of abstraction by Gruntwork that’ll make your life easier
Terraform vs Ansible: What's the difference and which one you should use?Dec 10, 2020
Preparing your Infrastructure as Code solution? Ansible and Terraform are two of the most popular choices. But what's the difference?
Introduction to TerraformAug 15, 2020
This week I explored Terraform as part of my exploration of development and operations topics. Terraform is a tool for automating the…
Install Terraform | Terraform - HashiCorp LearnMay 16, 2020
Install Terraform on Mac, Linux, or Windows by downloading the binary or using a package manager (Homebrew or Chocolatey). Then create a Docker container locally by following a quick-start tutorial to check that Terraform installed correctly.
testing
Rethinking Scan Chains In Semiconductor TestJul 2, 2025
Finding defects now requires multiple data types, and a much more thorough search.
Mock vs Stub vs Fake: Understand the differenceFeb 29, 2024
Introduction Testing software is like putting it through a series of challenges to make...
12 Ways to Test Your Forecasts like A ProMar 20, 2023
How to find the best performance estimation approach for time-series forecasts among 12 strategies proposed in the literature. With Python…
Essential Tools for a Successful DevOps EngineerMar 20, 2023
Introduction: The software development process has been transformed by the DevOps...
Write Readable Tests for Your Machine Learning Models with BehaveMar 12, 2023
Use natural language to test the behavior of your ML models
We need to talk about fixturesJul 5, 2022
How the principle of connascence will help us to move away from fixtures.
Writing better user stories with Gherkin and CucumberJul 5, 2022
Writing automated unit tests for the software we build can seem like a large amount of groundwork without a clear payoff. However, the…
Introduction to Front-End unit testingDec 25, 2020
An introduction meant for people who have never delved into unit testing
Why Data Format Slows Chip Manufacturing ProgressNov 3, 2020
Adoption of new format will take time, but it also will add consistency into data as volume grows.
What’s WAT? An Overview Of WAT/PCM Data?Nov 2, 2020
More about the data that the fab makes available to the fabless customer when the wafer is ready to ship.
Machine Learning Enabled High-Sigma Verification Of Memory DesignsOct 20, 2020
Variation-aware memory verification with brute force Monte Carlo accuracy in much less time.
text
google/langextract: A Python library for extracting structured information from unstructured text using LLMs with precise source grounding and interactive visualization.Aug 12, 2025
A Python library for extracting structured information from unstructured text using LLMs with precise source grounding and interactive visualization. - google/langextract
Text Mining with RMar 21, 2022
A guide to text analysis within the tidy data framework, using the tidytext package and other tidy tools
dbohdan/structured-text-tools: A list of command-line tools for manipulating structured text dataFeb 7, 2022
A list of command-line tools for manipulating structured text data - dbohdan/structured-text-tools
10 NLP Terms Every Data Scientist Should KnowFeb 7, 2021
Knowing the terminology is essential to understanding any tutorial.
Cross-Topic Argument Mining: Learning How to Classify TextsJan 27, 2021
Classifying cross-topic natural language texts based on their argumentative structure using deep learning
Text Mining with R: Gathering and Cleaning DataJun 1, 2020
Case study of tweets from comments on Indonesia’s biggest media
Table Detection and Extraction Using Deep LearningFeb 19, 2020
Extract table from image with Nanonets table detection OCR. Learn OCR table Deep Learning methods to detect tables in images or PDF documents.
Automatic Text Summarization in a Nutshell - KDnuggetsDec 23, 2019
Marketing scientist Kevin Gray asks Dr. Anna Farzindar of the University of Southern California about Automatic Text Summarization and the various ways it is used.
Getting Started with Automated Text SummarizationDec 14, 2019
This article will walk through an extractive text summarization process, using a simple word frequency approach, implemented in Python.
Knowledge extraction from unstructured texts | Tech BlogAug 30, 2019
There is an unreasonable amount of information that can be extracted from what people publicly say on the internet. Learn how to do it.
Comparison of the Text Distance Metrics | ActiveWizards: data science and engineering labAug 29, 2019
This article discusses and compares different approaches of how to compare two text strings.
Jeremy Mikkola - Rules for AutocompleteMar 22, 2019
agnusmaximus/Word2Bits: Quantized word vectors that take 8x-16x less space than regular word vectorsJun 8, 2018
Quantized word vectors that take 8x-16x less space than regular word vectors - agnusmaximus/Word2Bits
LightTag is a text annotation platform for data scientists creating AI traiMay 11, 2018
LightTag, a newly launched startup from a former NLP researcher at Citi, has built a "text annotation platform" designed to assist data scientists who
Understanding Feature Engineering (Part 3) — Traditional Methods for Text DApr 9, 2018
Traditional strategies for taming unstructured, textual data
Command-line-text-processing/ruby_one_liners.md at master · learnbyexample/Mar 16, 2018
:zap: From finding text to search and replace, from sorting to beautifying text and more :art: - learnbyexample/Command-line-text-processing
Prodigy - Radically efficient machine teachingFeb 1, 2018
A downloadable annotation tool for LLMs, NLP and computer vision tasks such as named entity recognition, text classification, object detection, image segmentation, evaluation and more.
theft
Lawyer reveals why shoppers should avoid self-checkout kiosks at stores andApr 18, 2024
Criminal defense lawyer Carrie Jernigan says that using self-checkouts can be risky and might land you in jail.
Story #1 - Embezzlers are Nice People | Stimmel LawApr 15, 2024
We spend a lot of time suing embezzlers. All over the world. Week in and week out. Big embezzlers, small embezzlers, smart embezzlers and very smart embezzlers… That’s right, no dumb embezzlers because almost all the embezzlers we encounter are smart. Some are very smart. Some are brilliant. And, almost always, most would have made more money and had a more profitable career if they had simply stopped stealing and starting working honestly.
Why Everything at Walgreens Is Suddenly Behind PlasticJan 21, 2023
The recent spike in shoplifting is both overblown and real. And almost everyone is profiting from it (including you).
The computer scientist who hunts for costly bugs in crypto codeJan 14, 2023
Programming errors on the blockchain can mean $100 million lost in the blink of an eye. Ronghui Gu and his company CertiK are trying to help.
thermal
The Hidden Physics of Running Data Centers in Orbit - EE TimesFeb 3, 2026
As data centers move toward Earth's orbit, thermal management becomes a major challenge, forcing engineers to rethink system design in space.
The Thermal Trap: How Dielectrics Limit Device PerformanceNov 20, 2025
Thin films for insulating different components are causing dissipation issues in advanced chips.
How thermal management is changing in the age of the kilowatt chipDec 28, 2023
Air cooling holdouts take notice, the fun stuff is all liquid
Introduction to Thermal Characterization ParametersJan 15, 2021
In this article, we’ll discuss another group of thermal data, called thermal characterization parameters denoted by the Greek letter Psi (Ψ).
Junction-to-Case Thermal Resistance in Thermal DesignJan 2, 2021
Learn about an important thermal metric for designing the interface between an IC package and a heat sink.
Designing with a Heat Sink for Junction-to-Case Thermal ResistanceJan 2, 2021
Watch the thermal measurement, junction-to-case thermal resistance, in action as we use it to calculate the thermal considerations for a given system.
How Junction-to-Ambient Thermal Resistance of an IC Package Affects ThermalDec 27, 2020
Assessing the thermal performance of an IC package becomes easier if you understand this common, but often misapplied, parameter known as theta JA.
thermodynamics
Classical Thermodynamics and Economics – Yuxi on the WiredOct 14, 2025
How to think like a classical thermodynamic-economist, delivered with many illustrations and some sci-fi metaphors. Particular emphasis on what traditional pedagogy gets wrong. Prerequisites: multivariate calculus and mathematical maturity.
How Maxwell’s Demon Continues to Startle ScientistsApr 27, 2021
The thorny thought experiment has been turned into a real experiment — one that physicists use to probe the physics of information.
The Most Famous Loop – alexdanco.comJun 24, 2020
Kevin Kwok had a great essay the other day on Figma, and how its runaway success is based on hundreds of successful loops baked into its product and business model: Why Figma Wins | Kevin Kwok It g…
thinking
How to Get Unstuck: Simple Somatic Regulation Practices - Ness LabsJan 15, 2026
Somatic regulation is the practice of using your body to change cognitive and emotional states instead of relying on top-down thinking alone.
Unknown Knowns: Five Ideas You Can't Unsee — LessWrongDec 26, 2025
Merry Christmas! Today I turn an earlier LW shortform into a full post and discuss "unknown knowns" "obvious" ideas that are actually hard to discuss…
How to Solve Impossible Problems: Lateral ThinkingDec 14, 2025
Every day we’re presented with what seem like impossible challenges. Issues that you can’t crack, even after weeks, months, or years of trying. How do you approach these challenges? Do you have a strategy that you follow, or do you just hope for the best? There’s a better way to solve impossible problems — improve the quality
How to talk to yourself | Psyche GuidesDec 12, 2025
Self-talk is a proven way to boost motivation, think clearly and process your emotions. These tips will help you use it well
17 Logical Fallacies Everyone Should KnowMay 11, 2025
This article examines 17 important logical fallacies in argumentation that everyone should know for better critical thinking.
Do you have an inner monologue? Here’s what it reveals about you.Apr 28, 2024
While experts disagree on how common self-talk really is, they wholeheartedly agree that it’s a valuable tool for self-discovery.
The marketplace of good and bad ideasApr 2, 2024
On why the free exchange of ideas is a complex breeding ground for truth, appealing falsehoods, and self-serving rationalisations.
How To Prove Prevention WorksFeb 19, 2024
Homer: Not a bear in sight. The Bear Patrol must be working like a charm. Lisa: That’s specious reasoning, Dad. Homer: Thank you, dear. Lisa: By your logic I could claim that this rock keeps tigers away. Homer: Oh, how does it work? Lisa: It doesn’t work. Homer: Uh-huh. Lisa: It’s just a stupid rock.
Tools for better thinking | UntoolsFeb 10, 2024
Collection of thinking tools and frameworks to help you solve problems, make decisions and understand systems.
Noise: A Flaw in Human Judgment - WikipediaJan 25, 2024
Noise: A Flaw in Human Judgment is a nonfiction book by professors Daniel Kahneman, Olivier Sibony and Cass Sunstein. It was first published on May 18, 2021. The book concerns 'noise' in human judgment and decision-making. The authors define noise in human judgment as "undesirable variability in judgments of the same problem" and focus on the statistical properties and psychological perspectives of the issue.
Think Like Feynman: Why You Should Have 12 Favorite ProblemsMay 2, 2023
Discover the practice of Nobel Prize-winning scientist Richard Feynman that has changed lives, including a method to find serendipitous answers to questions.
Understand the world better with 35 concepts | ConceptuallyJul 18, 2022
Understand the world and make better decisions using concepts from psychology, philosophy, economics and other disciplines, delivered straight to your inbox every Sunday.
The Profile Dossier: Charlie Munger, the Master of Mental ModelsFeb 20, 2021
“Deliver to the world what you would buy if you were on the other end."
List of Logical Fallacies with ExamplesJan 30, 2021
A comprehensive list of logical fallacies, with definitions, explanations, and examples that are easy-to-understand.
Second-Order Thinking: What Smart People Use to OutperformApr 5, 2019
Second-order thinking is a mental model that smart people like Warren Buffett & Howard Marks use to avoid problems. Read this article to learn how it works.
How to Think BetterDec 21, 2018
Being able to think clearly is not easy. Working memory is limited, making thinking harder. Luckily, there's a tool to expand and improve your thinking.
A long-overlooked brain region may be key to complex thoughtOct 6, 2018
The thalamus has traditionally been viewed just as the brain’s sensory relay station. But it may also play an important role in higher-level cognition, MIT’s Michael Halassa explains in a Q&A.
General thinking toolsMay 23, 2018
How To Tell If Someone Is Truly Smart Or Just AverageNov 12, 2017
Author’s Note: This article was written over 60 hours with love and care using the blockbuster mental model. If you like my writing style…
tickets
CFP bowl ticket prices have collapsed over the past 2 weeks (Cotton -90%, Rose -69%, Orange -78%, Sugar -11%)Jan 1, 2026
Posted by alpswd - 620 votes and 361 comments
StubHub vs. Ticketmaster vs. SeatGeek: What’s the Difference?Aug 2, 2024
Tickets are almost entirely bought and sold (and resold) online. What is the difference between Ticketmaster, StubHub, SeatGeek and other brokers?
Reverse Engineering TicketMaster's Rotating Barcodes (SafeTix)Jul 9, 2024
"Screenshots won't get you in", but Chrome DevTools will.
DOJ Mulls Hitting Live Nation With a Terrible Swift SwordMay 21, 2024
If the Justice Department sues Live Nation and Ticketmaster, it will be armed with antitrust arguments. But the defendants will have defenses ready.
Live Nation stock sinks because a DOJ antitrust lawsuit might be comingApr 16, 2024
The Ticketmaster parent company was the worst performer in the S&P 500 at midday
SeatGeek will calculate how much that ticket is worth | TechCrunchJun 23, 2022
Have you ever bought sweet tickets for a ballgame, a concert or some other live event, only to find out that you couldn't make it? The internet certainly
tiktok
Tiktok LLMFeb 22, 2025
grinning young couple points upward toward a caption reading “our simple seggs aftercare routine.” They playact the steps: shower, snuggle, bed. Scroll: next video, a woman in sunglasses tells us, …
TikTok and the Sorting Hat — Remains of the DayJan 29, 2025
NEXT POST: Part II of my thoughts on TikTok, on how the app design is informed by its algorithm and vice versa in a virtuous circle.
‘Thunder Run’: Behind Lawmakers’ Secretive Push to Pass the TikTok BillApr 25, 2024
A tiny group of lawmakers huddled in private about a year ago, aiming to keep the discussions away from TikTok lobbyists while bulletproofing a bill that could ban the app.
“Yapping” Is TikTok's New Favorite Word — Here's What It MeansApr 9, 2024
On TikTok and X, users love the word "yapping" and all of its derivatives to describe the act of talking too much. Here's what the slang term means online.
What Happens When TikTok Is Your Marketing DepartmentFeb 17, 2024
The Pink Stuff, a home cleaning paste, went from total obscurity to viral sensation — and Walmart staple — thanks to one “cleanfluencer” and her legion of fans.
Tiktok is full of tryhard slangFeb 15, 2024
The platform has seen a bizarre (and annoying) explosion of language as creators rush to coin terms.
Taylor Swift Is Off TikTok: Why Universal Music Pulled Its Songs - BloomberFeb 7, 2024
We’re about to find out how important TikTok is to the music industry.
Social media engagement hits a new low, except for TikTokFeb 23, 2023
Organic engagement and traffic from social networks has been shrinking every year.
The Secret Sauce of Tik-Tok’s Recommendations | Shaped BlogFeb 17, 2023
Dive into the inner workings of TikTok’s awesome real-time recommendation system and learn what makes it one of the best in the field!
I tried replacing Google with TikTok, and it worked better than I thoughtSep 24, 2022
TikTok won’t kill Google yet, but it’s a new and fun way to think about search.
For Gen Z, TikTok Is the New Search Engine (Published 2022)Sep 22, 2022
Need to find a restaurant or figure out how to do something? Young people are turning to TikTok to search for answers. Google has noticed.
‘After lockdown, things exploded’ – how TikTok triggered a books revolutionJun 13, 2022
Have teenagers taken control of publishing? With some authors notching up a billion views, we look at how TikTok is electrifying the world of books – creating bestsellers, reviving classics and rescuing neglected genres
Record Labels Dig Their Own Grave. And the Shovel is Called TikTok.Jun 10, 2022
It's not just the music biz—legacy media outlets everywhere are playing the same dangerous game. Here's how it will play out.
This New Tool Lets You Analyse TikTok HashtagsMay 12, 2022
TikTok has come to play a crucial role for open source researchers. By analysing how hashtags are used, this tool lets you dig even deeper.
BookTok Book List With 43 Billion Views Has Sent Barnes & Noble Sales SoaringMar 21, 2022
Barnes & Noble has found new life in a community of TikTokers that has taken the publishing industry by storm.
How TikTok Reads Your MindDec 6, 2021
It’s the most successful video app in the world. Our columnist has obtained an internal company document that offers a new level of detail about how the algorithm works.
The life cycle of a viral productJul 7, 2021
The video app is causing products to blow up — and flame out — faster than ever.
The Chinese content farms behind Factory TikTokJun 27, 2021
How workers manufacturing products like aloe jelly and gardening gloves also became the influencers selling them.
How TikTok Chooses Which Songs Go ViralMay 12, 2021
When Megan Thee Stallion took off her bright orange mask and walked onstage to accept her Grammy on March 14, she fought back tears and thanked God, her mother, and her managers for helping her become the first female rapper to win the award for best new artist in two decades.
How brands are using TikTok as a channel for customer service and product fMar 16, 2021
Brands have unsolicited feedback in their TikTok comments, allowing them to answer customer questions, see trends, and make product changes.
11 TikTok Video Ideas for MerchantsMar 2, 2021
You’ve downloaded TikTok and browsed the videos. Now you’re wondering what content to create for your ecommerce business. There are many types of videos to attract leads without dancing on camera. Here are 11 ideas for all types of merchants.
American Idle — Remains of the DayFeb 24, 2021
TikTok’s Warp Scan filter is a bizarre concept for a filter in and of itself, but the myriad of ways TikTok users put it to use just shows what happens when you throw random tools to the masses and allow for emergent creativity. It only takes a handful of innovators to unleash a meme tsunami.
How TikTok recommends videos #ForYouNov 3, 2020
TikTok's mission is to inspire creativity and bring joy. We're building a global community where you can create and share authentically, discover the world, and connect with others. The For You feed i
Seeing Like an Algorithm — Remains of the DaySep 24, 2020
time-series
5 Statistical Methods That Dominate Their Industries (and Why)Dec 22, 2025
Discover which statistical methods dominate healthcare, finance, tech, retail, and sports analytics, and why these industry-method pairings became indispensable standards.
A Coding Guide to Build an Autonomous Agentic AI for Time Series Forecasting with Darts and Hugging FaceOct 4, 2025
A Coding Guide to Build an Autonomous Agentic AI for Time Series Forecasting with Darts and Hugging Face. A Step by step guide
How to Use Kalman Filters for Time Series Analysis in PythonJun 10, 2025
The Kalman filter records the system's estimated state and the estimate's variance or uncertainty.
Time Series Decomposition: Extracting Seasonal, Trend, and Residual ComponentsFeb 7, 2025
Still, the exact application, challenges and shortcuts related to this technique are relatively unknown, and that’s what this article seeks to change.
Time Series Techniques You Should KnowMay 28, 2024
In this article, I'll take you through some essential time series techniques you should know as a Data Scientist.
Getting started predicting time series data with Facebook ProphetFeb 19, 2024
This article aims to take away the entry barriers to get started with time series analysis in a hands-on tutorial using Prophet
Build Complex Time Series Regression Pipelines with sktimeJul 13, 2022
How to forecast with scikit-learn and XGBoost models with sktime
Time Series Forecasting with ARIMAJun 21, 2022
In this article, I will take you through the task of Time Series Forecasting with ARIMA using the Python programming language.
Prophet | Forecasting at scale.May 5, 2021
Prophet is a forecasting procedure implemented in R and Python. It is fast and provides completely automated forecasts that can be tuned by hand by data scientists and analysts.
Time Series Forecasting with PyCaret Regression ModuleApr 22, 2021
PyCaret is an alternate low-code library that can be used to replace hundreds of lines of code with few lines only. See how to use PyCaret's Regression Module for Time Series Forecasting.
Using strip charts to visualize dozens of time series at onceJan 19, 2021
Strip charts are extremely useful to make heads or tails from dozens (and up to several hundred) of time series over very long periods of…
5 Machine Learning Techniques for Sales ForecastingApr 22, 2020
Comparing Linear Regression, Random Forest Regression, XGBoost, LSTMs, and ARIMA Time Series Forecasting
An introduction to time series forecasting Mar 9, 2020
DataRobot MLOps is helping to increase AI value by automating the deployment, optimization, and governance of machine learning applications.
List of Time Series Methods in One Picture - DataScienceCentral.comFeb 19, 2020
The picture below was found in some tweets posted by top data science influencers, though its origin is somewhat obscure. Many of these methods are described in Wikipedia. Many are also described on Data Science Central, see for instance here and here. The image seems to be coming from this website.
Beyond L2 Loss – How We Experiment with Loss FunctionsFeb 19, 2020
Estimating expected time of arrival (ETA) is crucial to what we do at Lyft. Estimates go directly to riders and drivers using our apps, as…
Arima Model – Complete Guide to Time Series Forecasting in PythonAug 30, 2019
Using ARIMA model, you can forecast a time series using the series past values. In this post, we build an optimal ARIMA model from scratch and extend it to Seasonal ARIMA (SARIMA) and SARIMAX models. You will also see how to build autoarima models in python
timekit: Time Series Forecast Applications Using Data MiningJun 8, 2018
The timekit package contains a collection of tools for working with time series in R. There’s a number of benefits. One of the biggest is the ability to use a time series signature to predict future values (forecast) through data mining techniques. W...
Time Series for Dummies – The 3 Step ProcessMar 12, 2018
Time series forecasting is an easy to use, low-cost solution that can provide powerful insights. This post will walk through introduction to three fundamental steps of building a quality model.
tokens
Tokenization And How Is It Changing Traditional Markets - DataconomyDec 12, 2025
The technology of tokenization of real assets is a component of the general digitalization of financial processes in the economy.
A Step-by-Step Guide to Setting Up a Custom BPE Tokenizer with Tiktoken for Advanced NLP Applications in PythonFeb 17, 2025
A Step-by-Step Guide to Setting Up a Custom BPE Tokenizer with Tiktoken for Advanced NLP Applications in Python
Unlocking the Best Tokenization Strategies: How Greedy Inference and SaGe LMar 18, 2024
The inference method is crucial for NLP models in subword tokenization. Methods like BPE, WordPiece, and UnigramLM offer distinct mappings, but their performance differences must be better understood. Implementations like Huggingface Tokenizers often need to be clearer or limit inference choices, complicating compatibility with vocabulary learning algorithms. Whether a matching inference method is necessary or optimal for tokenizer vocabularies is uncertain. Previous research focused on developing vocabulary construction algorithms such as BPE, WordPiece, and UnigramLM, exploring optimal vocabulary size and multilingual vocabularies. Some studies examined the effects of vocabularies on downstream performance, information theory, and cognitive plausibility. Limited work on
topic-modeling
What do countries talk about at the UN General Debate — Topic modelings using LDA.Nov 23, 2022
The intuition behind LDA and its limitations, along with python implementation using Gensim.
Topic Modeling with LSA, pLSA, LDA, NMF, BERTopic, Top2Vec: a ComparisonOct 14, 2022
A comparison between different topic modeling strategies including practical Python examples
Topic Modeling in Python | ToptalFeb 11, 2022
Topic modeling can bring NLP to the next level. Here’s how.
topology
Network Clustering and Triadic Closure: Revealing Relationship Patterns with PythonJan 13, 2026
Learn how to measure network clustering and triadic closure in Python to identify tightly-knit groups and bridge nodes.
What is Knot Theory? Solve These Puzzles to Find OutOct 4, 2025
Learn the fundamentals of the burgeoning field of knot theory while solving some puzzles along the way
These Mysterious Shapes Are at the Heart of Math’s Biggest PuzzlesJul 24, 2025
Mathematicians describe the most beautiful and beguiling forms and surfaces they know
New Sphere-Packing Record Stems From an Unexpected Source | Quanta MagazineJul 9, 2025
After just a few months of work, a complete newcomer to the world of sphere packing has solved one of its biggest open problems.
From Loops to Klein Bottles: Uncovering Hidden Topology in High Dimensional DataMar 26, 2025
Motivation • Dimensionality reduction is vital to the analysis of high dimensional data, i.e. data with many features. It allows for better understa…
An unusual introduction to manifoldsDec 29, 2023
This tutorial offers a bridge between the abstract mathematics of manifolds and computational practice.
After a Quantum Clobbering, One Approach Survives UnscathedDec 7, 2022
A quantum approach to data analysis that relies on the study of shapes will likely remain an example of a quantum advantage — albeit for increasingly unlikely scenarios.
TopologyNov 16, 2022
Topological Data Analysis for Machine LearningJul 10, 2022
Curves and Surfaces – Bartosz CiechanowskiNov 3, 2021
Interactive article explaining how curves and surfaces are modeled.
Topology 101: The Hole TruthJan 27, 2021
The relationships among the properties of flexible shapes have fascinated mathematicians for centuries.
Financial ServicesOct 28, 2018
Learn how SymphonyAI’s financial crime prevention solutions quickly deploy to uncover your risks, improve investigations, and transform your operations.
torrents
Build your own BitTorrent | CodeCraftersJan 7, 2024
Real-world proficiency projects designed for experienced engineers. Develop software craftsmanship by recreating popular devtools from scratch.
What Are Torrents & How Do They Work?Jan 12, 2022
Sharing files using torrents eliminates the need for pricey web servers. Anyone can upload or download large files with torrents. Here's how it works.
Building a BitTorrent client from the ground up in Go | Jesse LiFeb 19, 2020
What is the complete path between visiting thepiratebay and sublimating an mp3 file from thin air? In this post, we'll implement enough of the BitTorrent protocol to download Debian. Look at the [Source code](https://github.com/veggiedefender/torrent-client/) or skip to the [last bit](/posts/torrent#putting-it-all-together).
Torrent SearchFeb 19, 2020
This is a Torrent search engine. You can search Torrent files in the world.
Top PirateBay Alternatives — Free Movie and Torrent Download SitesAug 31, 2018
Discover the latest Piratebay news, best torrent sites, and top Piratebay proxies. Stay updated on the Piratebay alternative sites and secure VPN serv
toys
Toys with the highest play-time and lowest clean-up-timeDec 27, 2025
The worst toy is one with many pieces that my kids dump on the ground and then play with for only 2 minutes.
Stickerbox: Kids Say an Idea, AI Prints It as a Sticker in Seconds - Yanko DesignDec 5, 2025
https://www.youtube.com/watch?v=WxN-MqM_RKI Smart speakers for kids feel like a gamble most parents would rather skip. The promise is educational content and hands-free help, but the reality often involves screens lighting up at bedtime, algorithms deciding what comes next, and a lingering suspicion that someone is cataloging every question your child shouts into the room. The tension
Anglerfish Soft Stuffed Plush ToyDec 5, 2025
Anglerfish Soft Stuffed Plush Toy exclusive to Gage Beasley. One of the most dangerous fish in the world and they can produce light through their rod to lure preys. Bring home this unique looking fish today!
Skee-Ball Is Selling Home Units Now, Because Dreams Do Come TrueSep 30, 2025
Forget quarters and tokens. Throw your bed out, turn your bedroom into an arcade, and play Skee-Ball at home for free.
Inside Lego’s secretive creative process that brings its best sets to lifeSep 24, 2025
The Lego Ideas team, including its senior model designer, tells Fast Company how they turned 'Gremlins' icon Gizmo into a 1,125-piece set.
How the Etch A Sketch Etched Itself Into Pop CultureJul 13, 2025
Sixty-five years after it first hit store shelves, the iconic, red-framed drawing toy continues to enchant kids, artists, and collectors alike
How Pop Mart Won Young Customers in a Fragmented Attention EconomyJul 10, 2025
Three lessons from the Chinese brand behind Labubu.
TWINSCAN EXE:5000 Lego SetNov 29, 2024
Joining the ASML Lego Collection - the TWINSCAN EXE:5000. The latest addition to you ASML Lego collection has arrived. Rick Lenssen from D&E (designer of the Lego ASML Skyline and the Lego TWINSCAN NXE:3400C) has delivered another masterpiece in technology, once again made entirely of Lego: the TWINSCAN EXE:5000.
The Rise and Fall of Matchbox's Toy-Car Empire - Hagerty MediaOct 17, 2024
John Cena's not a small guy, but he—and Mattel's movie—have some big shoes to fill if they're telling the origin story of Matchbox.
Fun Delivered: World’s Foremost Experts on Whoopee Cushions and Silly PuttyJun 1, 2024
“Novelties are so much more than goofy, silly things,” Mardi says. “Everything that comes on to the marketplace starts out as a novelty.”
Got an Idea for a Toy? Toymakers Want to Hear From You.May 4, 2024
Companies like Lego and Mattel have divisions that seek out design concepts directly from collectors and other highly dedicated fan bases.
How Lego Became The Apple Of ToysFeb 15, 2024
After a decade-long slump, Lego has rebuilt itself into a global juggernaut. An exclusive look inside the company’s top-secret Future Lab.
How PEZ Evolved From an Anti-Smoking Tool to a Beloved Collector's ItemJul 28, 2023
Early in its history, the candy company made a strategic move to find its most successful market
Ohio toy store becoming one of the largest in the countryJul 26, 2023
The Toy Department is opening a new location.
The swing has a universal history of transgression | Aeon EssaysMay 2, 2023
Now associated with childhood fun, the swing has a near-universal history of ritual transgression and transformation
Magic: The Gathering Becomes a Billion-Dollar Brand for Toymaker Hasbro (Published 2023)Mar 5, 2023
The fantasy card game has surpassed the sales of the 100-year-old company’s other brands, including Transformers and G.I. Joe, but some are worried about the downsides of rapid growth.
Paper Airplane DesignsDec 21, 2022
A database of paper airplanes with easy to follow folding instructions, video tutorials and printable folding plans. Find the best paper airplanes!
Why Hot Wheels are one of the most inflation-proof toys in American historyDec 16, 2022
Inflation, the curse of our pocketbooks and the Federal Reserve, has hit almost every good in the U.S. But the price of a beloved toy has managed to hover around $1 — for more than 50 years.
For Amusement OnlyDec 13, 2022
Have you ever played those arcade games that give you tickets that you can redeem at the counter for prizes? Here’s a whole article about them.
Inside the heartwarming world of Hot Wheels collectingNov 7, 2022
What seems like a simple hobby can take you across the world.
How Do You Make the Perfect Toy? | The WalrusSep 29, 2022
Fads come and go, but how to create a toy that stands the test of time is the billion-dollar question
(1) New Messages!Sep 18, 2022
Hasbro has announced Hasbro Selfie Series figures—a groundbreaking endeavor to use 3D printing to manufacture personalized action figures at scale.
Massive Auction of Vintage Go Karts and Pedal Cars Will Rocket You Back toSep 15, 2022
More than 700 pedal cars, go-karts, and vintage cars will be up for auction from Elmer's Auto and Toy Museum.
How 10 Classic Toys Were InventedAug 27, 2022
Ever wonder how Lincoln Logs or Sea Monkeys found their way into 20th-century toy stores? Here are the little-known origins of 10 classic toys.
The mystery of the world's oldest toysAug 17, 2022
The world's oldest toys date back thousands of years – but determining whether ancient children played with them, and how, remains a mystery archaeologists are piecing together.
Lifelong Quests! Lawsuits! Feuds! A Super-Serious Story About Cereal.Jun 27, 2022
The world’s most obsessive breakfast-food fans demonstrate just how far humans will go for the sweet taste of nostalgia.
The Incredible Tale of the Greatest Toy Man You've Never KnownNov 14, 2021
He brought Pokémon, Yu-Gi-Oh!, and Cabbage Patch Kids to our living rooms. He made and lost fortunes. Can Al Kahn stay in the game?
Why Build ToysJul 13, 2021
I first wrote this essay a few years ago. A founder mentioned it to me over the weekend, and so I decided to re-publish it here. One thing that's bothered me in the time since I wrote it is the way...
Fold 'N Fly » Paper Airplane Folding InstructionsDec 25, 2020
A database of paper airplanes with easy to follow folding instructions, video tutorials and printable folding plans. Find the best paper airplanes!
Why Are Toys Such a Bad Business?Aug 10, 2020
Inflections in finance and tech. Click to read The Diff, by Byrne Hobart, a Substack publication.
The Accidental Invention of Play-DohDec 23, 2019
The much-loved children’s toy was a desperate spinoff of a putty used to clean soot off of wallpaper
The High-Stakes World of High-End Yo YosAug 29, 2019
The modern version of the toy is practically unrecognizable, an Object Lesson.
Watch Battered & Bruised Vintage Toys Get Mesmerizingly Restored to Near MiJun 26, 2019
They say that toys were once built to last. But though metal and wood didn't break quite so easily in the hands of children in the early 20th century as plastic does in the hands of their great- or great-great-grandchildren today, time still hasn't been especially kind to the playthings of yesteryear.
Dolls help children create wonderfully vivid and imaginative worlds while also serving as unsettlinSep 24, 2018
Dolls help children create wonderfully vivid and imaginative worlds, while also serving as unsettling reminders of the abyss
Forbidden Planet robot sets price record for auctioned film propNov 22, 2017
“Robby the Robot”, the seven-foot tall creature featured in the 1956 science fiction film Forbidden Planet, sold at auction for US$5.375 million, a record for a film prop, a New York auction house said on Tuesday.
tpu
How Google’s TPUs are reshaping the economics of large-scale AIDec 10, 2025
TPUv7 offers a viable alternative to the GPU-centric AI stack has already arrived — one with real implications for the economics and architecture of frontier-scale training.
The new AI calculus: Google’s 80% cost edge vs. OpenAI’s ecosystemApr 25, 2025
Explore the Google vs OpenAI AI ecosystem battle post-o3. Deep dive into Google's huge cost advantage (TPU vs GPU), agent strategies & model risks for enterprise
Google's Tensor G6 Chip Will Be Built on TSMC's 2nm Architecture For Major Performance and Efficiency Gains, Codenamed MalibuOct 22, 2024
Google Poxel 11s Tensor G6 codename leaks along with the Tensor G5 chip, expected to be built on TSMC's 2nm manufacturing process.
Trillium: Google’s TPU Powerhouse Behind Its New AI ModelsMay 21, 2024
Google's sixth-generation tensor processing unit (TPU) stole the company's I/O developer conference stage with its higher-than-ever computing performance.
Trillium TPU: Meet the hidden gem of Google I/OMay 15, 2024
Google revealed the sixth iteration of its Tensor Processing Unit (TPU), named Trillium, for data centers at the I/O 2024
Google just released its AI chip rival to NvidiaApr 10, 2024
Google’s new AI chip is a rival to Nvidia, and its Arm-based CPU will compete with Microsoft and Amazon
Grokking Groq’s GroqnessFeb 22, 2024
Startup Groq has developed an machine learning processor that it claims blows GPUs away in large language model workloads – 10x faster than an Nvidia GPU at 10 percent of the cost, and needing a tenth of the electricity. Update: Groq model compilation time and time from access to getting it up and running clarified. […]
Google’s TPU v4 Architecture: 3 Major FeaturesApr 8, 2023
A new technical paper titled “TPU v4: An Optically Reconfigurable Supercomputer for Machine Learning with Hardware Support for Embeddings” was published by researchers at Google. Abstract: “In response to innovations in machine learning (ML) models, production workloads changed radically and rapidly. TPU v4 is the fifth Google domain specific architecture (DSA) and its third supercomputer... » read more
Under The Hood Of Google’s TPU2 Machine Learning ClustersDec 11, 2021
As we previously reported, Google unveiled its second-generation TensorFlow Processing Unit (TPU2) at Google I/O last week. Google calls this new
Analysis and Comparison of Performance and Power Consumption of Neural NetwDec 8, 2021
In this work, we analyze the performance of neural networks on a variety of heterogenous platforms. We strive to find the best platform in terms of raw benchmark performance, performance per watt a…
Tearing Apart Google’s TPU 3.0 AI CoprocessorDec 7, 2021
Google did its best to impress this week at its annual IO conference. While Google rolled out a bunch of benchmarks that were run on its current Cloud TPU
First In-Depth Look at Google’s TPU ArchitectureDec 7, 2021
Four years ago, Google started to see the real potential for deploying neural networks to support a large number of new services. During that time it was
1704Dec 2, 2021
Google details new AI accelerator chipsMay 19, 2021
Google detailed TPUv4 at Google I/O 2021. They're accelerator chips that deliver high performance on AI workloads.
What Chip Startups Can Learn from Google’s TPU Design TeamFeb 17, 2021
The inception of Google’s effort to build its own AI chips is quite well known by now but in the interests of review, we’ll note that as early 2013 the
trademarks
Can a corporation "own" a color?Jun 29, 2022
A handful of companies have pushed the boundaries of intellectual property law by laying claim to individual colors.
The Complete Guide To Bidding On Competitor Brand Names & Trademarked TermsJun 24, 2022
It's been long known in the industry that brand term keywords garner a much higher click-through-rate. As a result, marketers often start by bidding on their own brand terms.
Trademarking color is absurd. But not for the reasons you think - Fast CompanyJun 23, 2022
Trying to crush other companies' use of color is not only petty; it completely misses the point of branding.
Likelihood of Confusion of Trademarks | TrademarkMar 4, 2020
When trademark infringement cases go to trial, the judge tries to determine the likelihood confusion taking place among consumers. Judges do not actually converse with consumers or take a poll among consumers, but they do use a set of criteria established by the Ninth Circuit Court of Appeals in the AMF, Inc v Sleekcraft Boats […]
transfer-learning
Methodology | Papers With CodeDec 21, 2020
**Transfer Learning** is a machine learning technique where a model trained on one task is re-purposed and fine-tuned for a related, but different task. The idea behind transfer learning is to leverage the knowledge learned from a pre-trained model to solve a new, but related problem. This can be useful in situations where there is limited data available to train a new model from scratch, or when the new task is similar enough to the original task that the pre-trained model can be adapted to the new problem with only minor modifications. ( Image credit: [Subodh Malgonde](https://medium.com/@subodh.malgonde/transfer-learning-using-tensorflow-52a4f6bcde3e) )
Transfer Learning – Machine Learning’s Next FrontierDec 27, 2017
Stay up-to-date on the latest data science and AI news in the worlds of artificial intelligence, machine learning, deep learning, implementation, and more.
transformers
Building Transformer Models from Scratch with PyTorch (10-day Mini-Course)Oct 30, 2025
You've likely used ChatGPT, Gemini, or Grok, which demonstrate how large language models can exhibit human-like intelligence. While creating a clone of these large language models at home is unrealistic and unnecessary, understanding how they work helps demystify their capabilities and recognize their limitations. All these modern large language models are decoder-only transformers. Surprisingly, their architecture is not overly complex.…
To Make Language Models Work Better, Researchers Sidestep Language | Quanta MagazineApr 20, 2025
We insist that large language models repeatedly translate their mathematical processes into words. There may be a better way.
On MLAJan 28, 2025
How LLMs Store and Use Knowledge? This AI Paper Introduces Knowledge Circuits: A Framework for Understanding and Improving Knowledge Storage in Transformer-Based LLMsDec 15, 2024
Large language models (LLMs) can understand and generate human-like text by encoding vast knowledge repositories within their parameters. This capacity enables them to perform complex reasoning tasks, adapt to various applications, and interact effectively with humans. However, despite their remarkable achievements, researchers continue to investigate the mechanisms underlying the storage and utilization of knowledge in these systems, aiming to enhance their efficiency and reliability further. A key challenge in using large language models is their propensity to generate inaccurate, biased, or hallucinatory outputs. These problems arise from a limited understanding of how such models organize and access knowledge. Without clear
Hugging Face Releases Sentence Transformers v3.3.0: A Major Leap for NLP EfficiencyNov 11, 2024
Natural Language Processing (NLP) has rapidly evolved in the last few years, with transformers emerging as a game-changing innovation. Yet, there are still notable challenges when using NLP tools to develop applications for tasks like semantic search, question answering, or document embedding. One key issue has been the need for models that not only perform well but also work efficiently on a range of devices, especially those with limited computational resources, such as CPUs. Models tend to require substantial processing power to yield high accuracy, and this trade-off often leaves developers choosing between performance and practicality. Additionally, deploying large models
Understanding Positional Embeddings in Transformers: From Absolute to RotarJul 20, 2024
A deep dive into absolute, relative, and rotary positional embeddings with code examples
Meet Sohu: The World’s First Transformer Specialized Chip ASICJun 28, 2024
The Sohu AI chip by Etched is a thundering breakthrough, boasting the title of the fastest AI chip to date. Its design is a testament to cutting-edge innovation, aiming to redefine the possibilities within AI computations and applications. At the center of Sohu's exceptional performance is its advanced processing capabilities, which enable it to handle complex computations at unprecedented speeds. With a capability of processing over 500,000 tokens per second on the Llama 70B model, the Sohu chip enables the creation of unattainable products with traditional GPUs. An 8xSohu server can effectively replace 160 H100 GPUs, showcasing their remarkable efficiency
A Visual Guide to Vision Transformers | MDTURPApr 16, 2024
This is a visual guide (scroll story) to Vision Transformers (ViTs), a class of deep learning models that have achieved state-of-the-art performance on image classification tasks.
Mamba ExplainedMar 30, 2024
Is Attention all you need? Mamba, a novel AI model based on State Space Models (SSMs), emerges as a formidable alternative to the widely used Transformer models, addressing their inefficiency in processing long sequences.
Position Embeddings for Vision Transformers, ExplainedFeb 29, 2024
The Math and the Code Behind Position Embeddings in Vision Transformers
Attention for Vision Transformers, ExplainedFeb 29, 2024
The Math and the Code Behind Attention Layers in Computer Vision
[2302.07730] Transformer models: an introduction and catalogOct 5, 2023
In the past few years we have seen the meteoric appearance of dozens of foundation models of the Transformer family, all of which have memorable and sometimes funny, but not self-explanatory,...
Hugging Face 101: A Tutorial for Absolute Beginners!Sep 25, 2023
Welcome to this beginner-friendly tutorial on sentiment analysis using Hugging Face's transformers...
Cracking Open the Hugging Face Transformers LibrarySep 25, 2023
A quick-start guide to using open-source LLMs
Optimizing Memory Usage for Training LLMs and Vision Transformers in PyTorcJul 23, 2023
This article provides a series of techniques that can lower memory consumption in PyTorch (when training vision transformers and LLMs) by approximately 20x without sacrificing modeling performance and prediction accuracy.
Edge 291: Reinforcement Learning with Human FeedbackMay 18, 2023
1) Reinforcement Learning with Human Feedback(RLHF) 2) The RLHF paper, 3) The transformer reinforcement learning framework.
Meta has built a massive new language AI—and it’s giving it away for freeApr 21, 2023
Facebook’s parent company is inviting researchers to pore over and pick apart the flaws in its version of GPT-3
What Are Transformer Models and How Do They Work?Apr 19, 2023
Transformer models are one of the most exciting new developments in machine learning. They were introduced in the paper Attention is All You Need. Transformers can be used to write stories, essays, poems, answer questions, translate between languages, chat with humans, and they can even pass exams that are hard for humans! But what are they? You’ll be happy to know that the architecture of transformer models is not that complex, it simply is a concatenation of some very useful components, each o
Optical TransformersFeb 26, 2023
The rapidly increasing size of deep-learning models has caused renewed and growing interest in alternatives to digital computers to dramatically reduce the energy cost of running state-of-the-art...
Hacker NewsFeb 7, 2023
Many new Transformer architecture improvements have been proposed since my last post on “The Transformer Family” about three years ago. Here I did a big refactoring and enrichment of that 2020 post — restructure the hierarchy of sections and improve many sections with more recent papers. Version 2.0 is a superset of the old version, about twice the length. Notations Symbol Meaning $d$ The model size / hidden state dimension / positional encoding size.
lucidrains/vit-pytorch: Implementation of Vision Transformer, a simple way to achieve SOTA in vision classification with only a single transformer encoder, in PytorchDec 18, 2022
Implementation of Vision Transformer, a simple way to achieve SOTA in vision classification with only a single transformer encoder, in Pytorch - lucidrains/vit-pytorch
All you need to know about ‘Attention’ and ‘Transformers’ — In-depth UndersSep 20, 2022
Attention, Self-Attention, Multi-head Attention, Masked Multi-head Attention, Transformers, BERT, and GPT
All you need to know about ‘Attention’ and ‘Transformers’ — In-depth UndersSep 20, 2022
Attention, Self-Attention, Multi-head Attention, and Transformers
TransformersNov 29, 2021
ankane/transformers-ruby: State-of-the-art transformers for RubyAug 24, 2021
State-of-the-art transformers for Ruby.
GPT-J-6B: 6B JAX-Based Transformer – Aran KomatsuzakiJul 5, 2021
Summary: We have released GPT-J-6B, 6B JAX-based (Mesh) Transformer LM (Github).GPT-J-6B performs nearly on par with 6.7B GPT-3 (or Curie) on various zero-shot down-streaming tasks.You can try out …
2106Jun 15, 2021
NielsRogge/Transformers-Tutorials: This repository contains demos I made with the Transformers library by HuggingFace.Jun 3, 2021
This repository contains demos I made with the Transformers library by HuggingFace. - NielsRogge/Transformers-Tutorials
The Illustrated Transformer – Jay Alammar – Visualizing machine learning onMay 29, 2021
Discussions: Hacker News (65 points, 4 comments), Reddit r/MachineLearning (29 points, 3 comments) Translations: Arabic, Chinese (Simplified) 1, Chinese (Simplified) 2, French 1, French 2, Italian, Japanese, Korean, Persian, Russian, Spanish 1, Spanish 2, Vietnamese Watch: MIT’s Deep Learning State of the Art lecture referencing this post Featured in courses at Stanford, Harvard, MIT, Princeton, CMU and others In the previous post, we looked at Attention – a ubiquitous method in modern deep learning models. Attention is a concept that helped improve the performance of neural machine translation applications. In this post, we will look at The Transformer – a model that uses attention to boost the speed with which these models can be trained. The Transformer outperforms the Google Neural Machine Translation model in specific tasks. The biggest benefit, however, comes from how The Transformer lends itself to parallelization. It is in fact Google Cloud’s recommendation to use The Transformer as a reference model to use their Cloud TPU offering. So let’s try to break the model apart and look at how it functions. The Transformer was proposed in the paper Attention is All You Need. A TensorFlow implementation of it is available as a part of the Tensor2Tensor package. Harvard’s NLP group created a guide annotating the paper with PyTorch implementation. In this post, we will attempt to oversimplify things a bit and introduce the concepts one by one to hopefully make it easier to understand to people without in-depth knowledge of the subject matter. 2020 Update: I’ve created a “Narrated Transformer” video which is a gentler approach to the topic: A High-Level Look Let’s begin by looking at the model as a single black box. In a machine translation application, it would take a sentence in one language, and output its translation in another.
Understanding Transformers, the machine learning model behind GPT-3May 22, 2021
How this novel neural network architecture changes the way we analyze complex data types, and powers revolutionary models like GPT-3 and BERT.
How Transformers work in deep learning and NLP: an intuitive introduction | AI SummerMay 18, 2021
An intuitive understanding on Transformers and how they are used in Machine Translation. After analyzing all subcomponents one by one such as self-attention and positional encodings , we explain the principles behind the Encoder and Decoder and why Transformers work so well
travel
16 French Phrases Tourists Always Wish They Knew Before Landing in FranceFeb 21, 2026
If you’re heading to France and feeling nervous about the language barrier, you’re not alone. The good news? You don’t need to be fluent to have a great trip, and even knowing a few key French words and phrases can go a long way. And honestly, you don’t need to speak any French at all...
Sandwiched Between New Orleans And Baton Rouge Is 'The Jambalaya Capital Of The World'Feb 20, 2026
Jambalaya is incredibly versatile with families passing down their variations on the dish. A festival in this town celebrates everything jambalaya.
I Asked Gemini Where Upper-Middle-Class Retirees Can Live Like Royalty on a Budget -- Here's What It SaidFeb 10, 2026
Retirees with solid nest eggs face a choice: Stretch that money in expensive U.S. cities or leverage it abroad for a lifestyle that would cost triple at home.
How to Spend a Weekend in Vega, a Quirky Route 66 Texas TownFeb 5, 2026
This small town in the Panhandle offers plenty of charm and Americana through its oddball museums and delicious homemade pies.
6th Annual John Prine Night | Marathon, TX | Oct 11, 2025Jan 21, 2026
John Prine Night is an annual gathering at The French Co. Grocer in Marathon, TX to celebrate the life, music, and spirit of John Prine. Hosted by Sam Stavinoha, the owner and proprietor of The French Co. Grocer, and emceed by Austin-based artist, writer and musician M. Walker, the event occurs each October on the week
Why American needs fewer bus stopsJan 20, 2026
Removing them can turn a service people tolerate into one they’re happy to use.
The Backcountry Rescue Squad at America’s Busiest National ParkJan 15, 2026
In the Great Smoky Mountains, an auxiliary team of élite outdoorsmen answers the call when park-goers’ hikes, climbs, and rafting adventures go wrong, Paige Williams writes.
Winter Camping in Quartzsite: Where Nomads Eat, Gather, and Belong - VanlifersDec 31, 2025
A firsthand look at winter camping in Quartzsite, Arizona—where nomads find affordable meals, unexpected community, and a place to belong.
The Island Without TimeDec 21, 2025
I traveled above the Arctic Circle to find out whether a town really can live free from the clock.
How to Leave the U.S.A.Dec 8, 2025
Atossa Araxia Abrahamian reports on the desire of some U.S. citizens to emigrate in the wake of President Trump’s reëlection, and joins an introductory tour of the Netherlands led by G.T.F.O. Tours, a relocation company founded by two Netherlands-based Americans.
The Airport-Lounge WarsNov 24, 2025
Airlines and their credit-card-company partners compete to provide the best food, alcohol, and bathrooms, and the right amount of access, in the contest to attract frequent fliers. Zach Helfand reports.
The curious life and lonely death of an American in KabulNov 16, 2025
Jeff Rigsby moved back to Afghanistan after the US withdrawal with a self-imposed mission to save lives and inform millions.
How to move to Europe as a self-employed American - Cardon & CompanyNov 16, 2025
Are you looking to migrate to Europe from the USA? There is no European country where an American can get a work and resident visa easier than in the Netherlands. The main requirement is: you need to become self employed. In this article we explain.
36 Hours on KauaiNov 7, 2025
With its pristine jungles and small towns, this Hawaiian island retains the unmanicured charm of Old Polynesia with few modern intrusions.
The Outpost - New River GorgeOct 27, 2025
Newly renovated campground situated less than a ¾ of a mile hike from the New River Gorge Bridge. The Outpost offers a variety of lodging options from newly renovated rustic cabins, recently paved RV camper hookup sites, updated tent platforms, field camping spaces and a Grateful Dead-themed camper. Amenities include; climate-controlled bathhouse, laundry facility, community fire pit and an temperature controlled lodge. We're also an outdoor music venue hosting live music events.
The stunning Canadian island you can see but not touchOct 26, 2025
Hidden deep in the Rockies and only visible by boat, Spirit Island is one of Canada's most iconic places – and a sacred site for those who have sealed it off from the world.
The Quest to Resurrect a Texas Ghost TownOct 17, 2025
A journey to find a true ghost town reveals vanishing histories and locals working to bring them back to life
The 'cool Camino': Why hikers are heading northOct 15, 2025
Every summer, Spain's iconic Camino bakes under extreme heat, but Norway's St Olav Ways offer pilgrims a quieter, cooler path to redemption.
Indefinite Backpack Travel – Jeremy MalufOct 7, 2025
Olson Observation Tower in Hambleton, West VirginiaSep 27, 2025
Climb the tallest remaining fire lookout tower in West Virginia for unparalleled views—if you dare.
North Sentinel Island, Home to One of the Last Uncontacted Tribes | TheCollectorAug 28, 2025
One of the most dangerous places to visit, North Sentinel Island, is not known for the hospitality of its inhabitants.
It’s the Happiest Country in the World. I Spent a Week There. I Wish I Could Unlearn Its Secret.Aug 27, 2025
The truth is both simpler and more complicated than it seems.
This Historical Town Just North Of Greenville Is South Carolina's Best-Kept SecretAug 18, 2025
With ancient mountain ranges and historic trails, Travelers Rest truly gets more beautiful with age.
Sleeping Bear Dunes National Lakeshore (U.S. National Park Service)Aug 3, 2025
Miles of sand beach, bluffs that tower 450’ above Lake Michigan, lush forests, clear inland lakes, unique flora and fauna make up the natural world of Sleeping Bear Dunes. High dunes afford spectacular views across the lake. An island lighthouse, US Life-Saving Service stations, coastal villages, and picturesque farmsteads reflect the park’s rich maritime, agricultural, and recreational history.
The Caribbean islands that give you a passport if you buy a homeJul 29, 2025
Five of the region's island nations offer such citizenship by investment for as little as $200,000.
A 210km drive through 'the most beautiful place on Earth'Jul 24, 2025
Following a traditional path used by traders and invaders, the Georgian Military Road has been a passageway for people and ideas since antiquity.
The Nickel Hotel Extols Charleston’s Old World AllureJun 29, 2025
Morris Adjmi Architects’ comprehensive design of The Nickel Hotel in Charleston marries local historical detail with modern convenience.
Ponza, Italy – the holiday island for in-the-know RomansJun 27, 2025
Ponza, Italy | The Italian island of Ponza has retained a gloriously retro sense of mystery with impossibly turquoise waters, golden cliffs, simple, fresh food and an elemental yet trippy magic atmosphere
Backyard Coffee And Jazz In Kyoto, JapanJun 24, 2025
A "magical" experience, and what we get when we let people pursue their passions
Sea moss punch: The Caribbean's cooling, healthy elixir for summerJun 24, 2025
Plucked from the ocean, Trinidad's answer to the summer milkshake is now part of a frenzied craze around the world.
How to Take the Ultimate American Stargazing Road TripJun 23, 2025
Head out West for dark skies for a Milky Way so bright it casts a shadow.
What I Found Driving Across Northern MichiganJun 21, 2025
Head “Up North” along the coast of Lake Michigan for sandy shores, sublime cherries, and butter-bathed, just-caught fish.
Notes on TunisiaMay 30, 2025
I spent almost three weeks in Tunisia, visiting the cities of Tunis, Bizerte, El Kef, Tozeur, Tataouine, El Jem, Sfax, Sousse, Monastir, Kairouan, and a few smaller towns in between. At first, I th…
The History of Faro, Portugal: A Guide for VisitorsMay 29, 2025
Located in the sunny Algarve, southern Portugal, Faro is the capital and largest city in the region. Although often overlooked, it hides a fascinating past.
Kappabashi Neighborhood Guide: Tokyo's Kitchen Supply ParadiseMay 28, 2025
Kappabashi is a neighborhood best known for two things: kitchen supplies and a Japanese mythological being, the kappa.
Blue Land of Enchantment lures unhappy TexansMay 21, 2025
New Mexico, the Land of Enchantment, has quietly become a blue refuge in the MAGA red West for Americans who are fleeing extreme conservative strongholds.
The Hobo Handbook by Jeremiah DavidMay 14, 2025
May 9, 2025 – “The Guide is either the train hopper’s Bible or an outdated relic, a must-have or a crutch, depending on whom you ask.”
Citizenship as a ServiceMay 13, 2025
Micro-states like Saint Kitts and Nevis now earn more from selling passports than all other exports combined. While tech utopians dream of digital republics, the growing marketplace for citizenship is already virtualizing sovereignty from within.
The Palisades Restaurant in EgglestonMay 1, 2025
Dine in a former general store from the Roaring Twenties, when Eggleston was a hot springs boomtown.
Reclaiming Sanya, one meal at a timeApr 28, 2025
Since 2018, Sanya Cafe has been building community in one of Tokyo’s most colorful — and infamous — neighborhoods.
Scotland’s Viking Isles: A History Lover’s Voyage to Orkney & ShetlandApr 26, 2025
Nordic or Scottish? For the residents of Shetland, the nearest train station is in Bergen, Norway. In Orkney, they speak Norn, derived from Old Norse.
Hōshi: A Short Documentary on the 1300-Year-Old Hotel Run by the Same Japanese Family for 46 GenerationsApr 24, 2025
Hōshi, a traditional Japanese inn in Komatsu, Japan, holds the distinction of being the second oldest hotel in the world—and “the oldest still running family business in the world.” Built in 718 AD, Hōshi has been operated by the same family for 46 consecutive generations.
These Are the Best Small Towns in JapanApr 14, 2025
Visiting small towns is the best way to discover the real Japan. Here's how to visit small towns in Japan in 2025, 2026 and beyond.
3 Hidden Gems in Occitanie, France: Off the Beaten PathApr 8, 2025
Undiscovered Occitanie, France begs to be explored with its castle ruins, gourmet restaurants, timeless abbeys, and possible buried treasure.
10 Must-See UNESCO World Heritage Sites in FranceApr 4, 2025
Travel through France’s greatest hits—ancient abbeys, royal palaces, cave art, and wine-soaked valleys—in this curated list of ten jaw-dropping UNESCO treasures.
10 Ancient Greek Islands to VisitMar 8, 2025
Before Athens and Sparta, before even the Parthenon, Greece’s islands shaped history. Explore 10 ancient isles where empires rose, myths were born, and time stands still.
Travelling Through India on the Himsagar ExpressMar 8, 2025
This was not a luxury train, but even here, as in Indian society as a whole, the distinctions between the haves and the have-nots were clear.
Long-stay visa - France-VisasFeb 24, 2025
For any stay in France longer than 90 days, you are required to apply in advance for a long-stay visa, where your nationality does not exempt you from requirements.
50 Years of Travel TipsFeb 16, 2025
I’ve been seriously traveling for more than 50 years, and I’ve learned a lot. I’ve traveled solo, and I’ve led a tour group of 40 friends. I’ve slept in dormitories and I’ve stayed in presidential suites with a butler. I’ve … Continue reading →
Signs Of Life In A Desert Of Death | NOEMAJan 30, 2025
In the dry and fiery deserts of Central Asia, among the mythical sites of both the first human and the end of all days, I found evidence that life restores itself even on the bleakest edge of ecological apocalypse.
Rick Steves Refuses to Get Cynical About the WorldDec 25, 2024
The guidebook writer and television personality reflects on his cancer diagnosis, social media’s corrosive effect on tourism and the transformative power of travel.
4 Can’t-Miss Towns in an Often Overlooked Corner of JapanOct 24, 2024
Kyushu, often passed over by international visitors, is rich in crafts, history and culture. Here are four destinations to consider.
Gibson & Associates LLPJul 30, 2024
6 Countries with Incentives to Retire ThereJul 21, 2024
From Greece to Panama, these countries offer tax breaks and steep discounts for foreign retirees.
Renew my Passport OnlineJul 8, 2024
This page includes information about our online passport renewal system, and instructions to complete your application.
A Local’s Guide to Cap Ferret, FranceJun 22, 2024
A guide to France’s Cap Ferret, with insider tips from Philippe Starck and three other locals.
Ride the Rails to Discover Hidden History and Incredible Hiking in ColoradoJun 13, 2024
Follow the footsteps of cowboys and coal miners—and catch a rare glimpse of the state’s wild inner core.
How Buc-ee’s gas stations became the unlikely champion of EVsJun 7, 2024
At a time when many electric vehicle makers are pulling back, the cult gas station brand is building out its EV charging infrastructure.
The 15 Best Things To Do In Wrightsville Beach, North CarolinaMay 27, 2024
Spend time in the sand, try out a new watersport, or explore the surfer-friendly village where great restaurants meet local shops. Here are the best things to do in Wrightsville Beach, North Carolina.
America's Best Mountain TownsMay 23, 2024
From Stowe, Vermont, to Aspen, Colorado, these are the best mountain towns to visit in the U.S., no matter the season.
Welcome to France-Visas - The official website for visa application to FranMay 11, 2024
Bienvenue sur France-Visas, le site officiel des visas pour la France.
Conflicting Times on the Camino de SantiagoApr 10, 2024
As increasing numbers of pilgrims walk the Camino de Santiago in Europe, local communities feel the pressure to keep up.
Tokyo is the new ParisApr 5, 2024
It's simply the greatest city in the world. If you haven't been there, you need to go.
A New Look at an Old Favorite for Adventure Seekers: La Paz, MexicoApr 4, 2024
New hotels and destination-worthy restaurants now complement the ever-appealing outdoors surrounding La Paz, the capital of Baja California Sur.
More American millionaires are considering leaving the U.S. Here's whyMar 21, 2024
Rising political tensions could be scaring millionaires away from the country
From Here You Can Take In the Splendor of West TexasMar 13, 2024
A rustic bench in Davis Mountains State Park beckons hikers to sit for a spell.
Fleeing TrumplandMar 11, 2024
Many Americans are vowing to move abroad if Trump returns to the White House. And this time, they may actually follow through.
20 Dog-Friendly Beaches For Sandy Paws In The SouthMar 10, 2024
From Alabama to Maryland, these are some of the best dog-friendly beaches in the South, so you never have to leave your pup behind while you vacation.
Montfort, Dordogne: The Perfect Retreat for Part-Time RetirementMar 1, 2024
IL France Correspondent Tuula Rampont travels to the picture-perfect village of Montfort in the southern region of the Dordogne to meet expats Robert and Wendy Arbeit. They explain why Montfort has all the right bells and whistles for an idyllic European getaway.
Sign up for our free daily e-letter to hear from more expats living their dream lives overseas: http://intliving.com/ILTVPostcards.
Every summer, Robert and Wendy Arbeit arrive at their home-away-from-home in Montfort, France. A tiny slip of a village, a single cobblestoned road takes visitors through the picturesque historic center—lined with shops, cafés, and the Arbeits’ own blond-stone village home.
You can read more about Robert and Wendy's dream retirement here: https://tinyurl.com/WendyRobertFrance
If you've ever dreamed of retiring in France in first-class style without breaking the bank, then I urge you to sign up for International Living Postcards today and receive your free Retire in France report. Find out what's included here: https://intliving.com/francereport
Please hit the subscribe button and turn on your notifications to avoid missing out on future episodes.
And thanks for watching…
For more info on ILTV & International Living, visit our website: https://internationalliving.com.
Don’t forget to follow us on all of our social channels:
▶️ Instagram: https://www.instagram.com/internationalliving
▶️ Facebook: https://www.facebook.com/International.Living
▶️ Podcast: https://biggerbetterworldpodcast.buzzsprout.com/
#monfortdordogne #monfortfrance #dordogne
Twilight on the MekongFeb 29, 2024
Chinese cargo shippers once dominated Southeast Asia’s rivers. Can they find their way back?
Manhattan or Pulau Rhun? In 1667, Nutmeg Made the Choice a No-Brainer.Feb 29, 2024
Growing a spice once worth its weight in gold, a tiny isle in Indonesia was so coveted that the Dutch traded Manhattan for it. Some 350 years later, life on the two islands couldn’t be more different.
Swimming in the Rivers and Springs of the Dominican RepublicJan 18, 2024
A world away from the country’s luxury all-inclusive beach resorts, cool, aquamarine natural pools tempt travelers to jump in and feel the tingle.
UPCOMING JUKE JOINT FESTIVAL DATESDec 29, 2023
The Best Restaurants in New OrleansOct 18, 2023
There’s plenty of great Creole and Cajun food, of course, but also outstanding Vietnamese, Indian and Trinbagonian cuisine.
In search of the eagle huntressesSep 25, 2023
In ancient times, women hunters were common in the nomadic Kazakh community in Central Asia. But where are they today?
Enjoy A Scenic Drive Along Some Of West Virginia’s Most Beautiful BackroadsSep 4, 2023
The Seneca Skyway is a newly designated scenic drive in West Virginia, offering stunning views and unique sights along a loop through the state’s
Accessible Independent Travel Is for All Ages and AbilitiesAug 28, 2023
See the world “any which way” you can, says a seasoned traveler in her 70s.
Take the high road: the man who visited every country in the world – withouAug 22, 2023
At 34, Torbjørn Pedersen embarked on a seemingly impossible journey that would take 10 years – and involve cerebral malaria and being held up at gunpoint. He reflects on the highs, the lows and the joy of getting married en route
The 50 most beautiful small towns in the worldAug 13, 2023
From Brazil to Japan, these communities are sure to charm you.
A High-Water Year for River RaftingJul 31, 2023
All that snow in the West? It’s water now, and it’s providing a banner season for white-water rafting. Here are five rivers to run this summer.
What Makes the Allsup’s Burrito So Legendary?Jul 29, 2023
It’s small-town Texas’s go-to convenience store snack. Texas Monthly’s taco editor finally gives it a go.
A funeral for fish and chipsJul 22, 2023
The long read: Plenty of people will tell you the East Neuk of Fife in Scotland is the best place in the world to eat fish and chips. So what happens when its chippies – and chippies across the UK – start to close?
A Perfect Weekend in TellurideJul 13, 2023
Well known for its ski resort, this mountain town in southwestern Colorado attracts plenty of summer and fall visitors, too. Here’s how to spend a few days.
Lille and Lyon, France: Gorgeous Alternatives to ParisJul 5, 2023
We all love Paris – but if you enjoy French food, history, and culture and aren’t fond of crowds, make room in your heart for Lyon and Lille. Here’s why they’re worth a visit (or two).
5 Best Cities and Towns to Live and Retire in FranceJul 5, 2023
For good healthcare and a relaxed lifestyle, France should be on your radar. Below are five of the best cities and towns in France for good-value living.
36 Hours in Split, CroatiaJun 11, 2023
This Croatian port city is fueled by long seafood lunches, ancient traditions and wine-filled evenings.
Visiting Suva, Fiji’s Capital CityApr 19, 2023
Suva, the Fijian capital, is not on many travelers’ itineraries, but with a multiethnic population from all over the country and the region, it defines the urban South Pacific.
Melba's Contains Multitudes — THE BITTER SOUTHERNERApr 19, 2023
New Orleans-based po’boy shop Melba’s sells more than just sandwiches, it offers literacy for lunch.
8 French Sandwiches to Eat Before You DieApr 19, 2023
French sandwiches are a thing of glory. Here are the classic combinations with baguettes, butter, and more to eat the next time you're in France — or ASAP elsewhere.
Why Does a Plastic-Wrapped Turkey Sandwich Cost $15 at the Airport? - Hell GateApr 16, 2023
We filed a public records request, but the Port Authority is treating airport pricing like a state secret.
The Great Goat War of Southern FranceApr 15, 2023
A former Parisian moved to the country, fell in love with goats and let them roam free and multiply. Her winemaking neighbors are not enchanted.
You Can Now Fly to Japan for $91 from the U.S. on this Airline - TheStreetApr 14, 2023
A low-cost Japanese airline is expanding its American offerings.
12 Of The Most Beautiful Hiking Trails In 2024Apr 1, 2023
Discover some of the most beautiful hiking in the world on these bucket list hikes, from the Dolomite High Route to Everest Base Camp and many more.
Hexatrek : The long distance thru hike in FranceApr 1, 2023
A long distance european hiking trail of 3034 km. The longest trek in France in the heart of the most beautiful national parks. Thru-hike the french mountains and hike through Vosges, Jura, Alps, Ecrins, Vercors, Ardèche, Cevennes, Languedoc and the Pyrenees.
Jackson Heights: The neighbourhood that epitomises New YorkMar 29, 2023
Travellers may go to Central Park or Times Square to see New York City, but there's no better place to feel the city's DNA and understand how it started than here.
Your guide to adventure on Vanuatu's most exciting island - Lonely PlanetMar 28, 2023
Home to one of the world’s most accessible live volcanos, the tiny island of Tanna in Vanuatu’s south is ready-made for unforgettable adventures.
Discovering Tikopia | Superyacht StoriesMar 28, 2023
The fabled island paradise of Tikopia is one of the most remote islands in the world, and while its heritage is Polynesian, Tikopia is a world unto its own
‘Dad said: We’re going to follow Captain Cook’: how an endless round-the-woMar 28, 2023
In 1976, Suzanne Heywood’s father decided to take the family on a three-year sailing ‘adventure’ – and then just kept going. It was a journey into fear, isolation and danger …
Why Are These Italians Massacring Each Other With Oranges?Mar 27, 2023
Every winter, Ivrea erupts into a ferocious three-day festival where its citizens pelt one another with 900 tons of oranges. (Yes, oranges.)
George Town, Malaysia: A Jewel Box Packed With Color and SpiceMar 21, 2023
George Town, a colonial port on the island of Penang, dazzles visitors with its winding alleys, pastel-painted storefronts, sumptuously restored hotels and mouthwatering food.
Australia's epic 1,077km road tripMar 19, 2023
Of Australia's great road trips, the Tanami Track might be the most intimidating. But the rugged nature that defines this epic desert journey could soon change.
Going Once, Going Twice: How to Bid on a First-Class Seat (Published 2023)Mar 5, 2023
Fliers on some airlines can upgrade at a discounted rate to avoid what could be a cramped flight. With some cruise ships and even Amtrak getting in on the act, is bidding up worth it?
The Stark Beauty of Tushetian Shepherds’ Journey Across Georgia’s CaucasusMar 3, 2023
These stunning photographs reveal the determination and resilience of a centuries-old way of life.
The East Village Shop That’s Been the Magic Weapon of Chefs for Nearly 30 YearsMar 1, 2023
Restaurants seek out SOS Chefs for its hard-to-find spices, vinegars, and oils from every corner of the globe
The Silk Roads | Into Far LandsFeb 7, 2023
Experience history's greatest journey along the veins of the world. Relive the interactive journey from Europe to China, explore the map of the Silk Roads, or choose an outpost to trave back in time to.
43 Hours on the Amtrak Southwest Chief – Lennart KoopmannFeb 4, 2023
In September 2022, after watching many YouTube videos of other people on long-distance Amtrak trips, I finally embarked on a journey of my own. I took the Amtrak Southwest Chief train from Chicago to Los Angeles. Continue reading to learn more about it and why I'll do it again on another route.
A New Zealand Road Trip: Wine, Salmon and Stunning ViewsJan 24, 2023
A road trip in the country’s South Island offered perfect wines, stunning views, intimate restaurants and the chance to make a pilgrimage to a salmon Shangri-La.
You’re Going to Need a Smaller Boat: Island Hopping in the GrenadinesDec 28, 2022
Forget about flying if you want to visit many of these stunning specks of land sprinkled across the Caribbean. Hop on a sailboat or a ferry, or you can always swim.
Festival/Event CalendarDec 21, 2022
Pakistan's lost city of 40,000 peopleNov 22, 2022
In the dusty plains of present-day Sindh in southern Pakistan lie the remains of one of the world's most impressive ancient cities that most people have never heard of.
Country List 3 | International Programs | SSANov 8, 2022
benefit payments abroad, beneficiaries outside the United States, taxation of benefits, reporting requirements, overseas direct deposit
Do Expats Get Social Security?Nov 8, 2022
US expat taxes are further complicated by Social Security. Do expats get social security? Click here to learn everything you need to know!
25 Days, 9 Countries, 1,959 Miles: Seeing Europe by TrainOct 20, 2022
For one British writer left adrift by Brexit, a cross-continental train trip might be the best way to reconnect with her European neighbors.
Bertrand Piccard’s Laps Around the WorldOct 19, 2022
The explorer’s grandfather travelled higher than anyone; his father went deeper. Now it was his turn to make a mark.
The world's highest ATM: Pakistan's mountaintop bank machineOct 18, 2022
It may be an unlikely spot for a cash machine, but the Khunjerab Pass ATM has been serving the small number of residents and border staff – and adventurous tourists – since 2016.
The 40 Top Restaurants Along The Pacific Coast HighwayOct 10, 2022
The Pacific Coast Highway is among the most gorgeous routes in the United States, and there are plenty of great restaurants to hit as you drive it.
Scenic parkway explores West Virginia's highest peaks - West Virginia ExploSep 24, 2022
MARLINTON, W.Va. — Traveling through a windswept landscape of spruce and cranberry, a scenic parkway that explores some of the highest elevations in West
23 of the world’s greatest hiking trails | CNNSep 22, 2022
From multiday treks tracing the routes of a Japanese poet to classic climbs in Argentina’s Lake District, here are the 23 best hiking trails in the world.
Where Europeans are going for less crowded vacations on the continent | CNNAug 27, 2022
Americans are crowding into Europe’s travel hot spots. Here are the less-crowded places where Europeans are going instead.
The Guilt-Free Pleasure of Airplane MoviesAug 27, 2022
Amid the endless tiny indignities of air travel, only one true retreat remains.
The value of not flyingJul 28, 2022
Why might people decline an offer of up to $10,000 just to keep their feet on the ground?
The American Amusement Park's Wild RideJul 16, 2022
From the trolley parks of the early 20th century to the theme parks of today, these spaces of shared pleasure have been both a reflection of urban life, and an escape from it.
America’s favorite family outings are increasingly out of reachJul 16, 2022
Taking the kids to a baseball game, a movie, or Disneyland is a bigger financial commitment than it used to be for middle-class families.
Recipe: Laotian lettuce wrapsJul 9, 2022
Light and fresh, this Southeast Asian favorite works as a party snack and a full meal.
The Best Vacation Rental Alternatives to AirbnbJun 30, 2022
Turns out you have options that don’t include a ridiculous cleaning fee.
23 Incredible Road Trips in the U.S.Jun 22, 2022
Welcome to the ultimate list of summer road trips (complete with podcasts and snacks).
Visiting Vladimir Putin’s Lost RussiaJun 18, 2022
An ex-Soviet state’s national myths—as well as the forces of nationalism, economics, culture, and religion—all pull it away from Moscow. Can Russia really compete?
This Stunning Mountain Destination Is an Outdoor Adventurer's Paradise — With Epic Hikes, Scenic Campgrounds, and Waterfall ViewsJun 1, 2022
Your guide to the dreamy Blue Ridge Mountains, including excellent hikes, beautiful drives, and the best hotels and campgrounds.
Walks of a Lifetime: Six Epic Mountain Hikes Across EuropeMay 30, 2022
From a sandstone labyrinth to bears and marmots, Europe’s hills and mountains offer exhilarating long-distance walks. Just don’t forget your poles and harness.
This Italian Island Has a 'Wild Blue' Hiking Trail — With Turquoise Fjords, Homemade Wines, and Mediterranean VistasMay 30, 2022
On Sardinia, a coastal hiking trail leads Gina DeCaprio Vercesi away from the crowds and into some of the Italian island’s most authentic corners.
8 Rails-to-Trails Adventures in the U.S. (Published 2022)May 25, 2022
Tens of thousands of miles of abandoned railroad tracks have been developed into recreational paths since the 1960s. Here are scenic pathways through deserts, valleys, mountain passages and more.
Travel Tips From Jim Kitchen, Who’s Visited Every Country on Earth—and SpaceMay 24, 2022
Pack a sheet, leave the wedding ring at home, and skip the street food.
Hacker NewsMay 13, 2022
Portugal, with its warm climate, plentiful sun and cheap cost of living, has become a destination for Californians.
A Woman Alone in Oman: Three Weeks Along the Arabian CoastMay 9, 2022
In December, a photographer set off on a 2,600-mile road trip, traveling from the Yemeni border to the Strait of Hormuz. Here’s what she saw.
Indonesia's 11 best beaches - Lonely PlanetApr 14, 2022
With a lush tropical climate and more miles of coastline than any other country on earth (except Canada), Indonesia is the world’s ultimate beach destination…
Electric Planes Are Coming Sooner Than You ThinkMar 13, 2022
Get ready to fly electric by 2026. Leading airlines are already onboard with the technology and are making plans.
The Eerie, Lunar Nothingness of Namibia’s Skeleton Coast (Published 2022)Jan 18, 2022
The stretch of coastline in southwest Africa is a strange and beautiful reminder that, in the end, we are powerless against nature and time.
Welcome to the land that no country wants | Jack Shenker | World news | TheJan 16, 2022
The long read: In 2014, an American dad claimed a tiny parcel of African land to make his daughter a princess. But Jack Shenker had got there first – and learned that states and borders are volatile and delicate things
They set out to hike three of America's longest trails in less than a year. What could go wrong?Nov 24, 2021
Jackson Parell and Sammy Potter hatched an ambitious plan during the height of the COVID-19 pandemic: to hike three of the nation’s most arduous trails — the Appalachian, Pacific Crest and Continental Divide — in a single year.
It’s Never Too Late to Pick Up Your Life and Move to ItalyNov 23, 2021
Holly Herrmann vowed to move to Italy when she was 20. Her dream came true 38 years later.
What Does The Average RV Campsite Cost In 2022?Nov 23, 2021
Is camping really an affordable activity? We break down the average RV campsite cost at luxury, mid-range, budget, and franchise RV parks.
The Ancient Persian way to keep coolAug 12, 2021
From ancient Egypt to the Persian Empire, an ingenious method of catching the breeze kept people cool for millennia. Now, it could come to our aid once again.
The Maldives Knows Y.O.L.O.Aug 7, 2021
The island nation is positioning itself as the place to go to rediscover the beauty of travel. But it needs to convince would-be visitors that it’s more than “just a beach.”
The Mother of All ‘Abandoned’ Airports (2015)Jun 10, 2021
West Berlin's lifeline during the Soviet Blockade, Tempelhof Airport has since become the city’s biggest park. Berliners will fight to keep it that way.
The World’s Northernmost Town Is Changing DramaticallyJun 3, 2021
Climate change is bringing tourism and tension to Longyearbyen on the Norwegian archipelago of Svalbard.
America Loves Gas Station Snacks. Here Are Some of the Finest by RegionMay 31, 2021
From Buc-ee’s Beaver Nuggets to 7-Eleven Spam musubi
7 Ghost Stations of Paris Metro and How to Get Into Illegaly - Urbex TourMay 29, 2021
Paris subways has long and interesting story. Illegal exploration of tunnels can show the power of the underground world of France.
How to make tonpeiyaki cabbage and pork omeletteApr 24, 2021
The much-easier cousin of okonomiyaki, stir-fried pork and spring cabbage are sandwiched between an omelette for a light, quick meal.
Hiking the Mountain Trails Less Traveled in Colorado – Texas MonthlyApr 16, 2021
The hills are alive with socially distant adventures.
Inside the Thrilling, Slightly Terrifying World of Austrian Hut-to-Hut HikingApr 16, 2021
Up, up, and away!
Yonder — OFLANDApr 8, 2021
Welcome to Ofland (formerly Yonder)! We've changed our name! New Name. Same Magic. More Adventure. Learn More here.
Will Fish Sauce and Charred Oranges Return the World Covid Took From Me? (Published 2021)Mar 9, 2021
Regaining my sense of smell is tedious and slow, but I’m using the only therapy proven to work.
‘The Truffle Hunters’ Review: In Dogged Pursuit of Culinary GoldMar 7, 2021
An enchanting documentary about men and their best friends combing the northern Italian forests for an unlikely delicacy.
Ventana Asheville - NC Real Estate | Asheville North CarolinaFeb 22, 2021
Discover the natural beauty that Ventana Asheville has to offer. This luxurious mountain real estate community is located in Western North Carolina and has
The Billy Motel & BarFeb 22, 2021
Treat Yourself to a Parisian Aperitif That Is Easy to Make at HomeJan 27, 2021
In France, savory cakes salés are served as a light nibble before dinner. They’re remarkably versatile and come together in a snap.
The Lost History of YellowstoneJan 8, 2021
Debunking the myth that the great national park was a wilderness untouched by humans
When COVID hit, a Colorado county kicked out second-home owners. They hit bJan 2, 2021
How a group of nonresident homeowners tried to influence a rural Colorado election.
Russian Off-Roaders Crossed 2,000 Miles of Siberia to Reach One Of The MostJan 1, 2021
Oh, you hit the fire road again with your lifted Wrangler? Cute.
Travel Throwback: Svalbard's call of the Arctic - Lonely PlanetJan 1, 2021
With so much of the world inaccessible right now, we’re taking a look through our archive of travel writing to revisit our past trips and to look at how Lonely…
7 Asheville Glamping Spots For Comfortable Camping in The SmokiesDec 25, 2020
Grab your hiking boots and a good book: These Asheville glamping options combine Blue Ridge Mountains hikes with outdoors luxury.
Selling New Zealand: The Railroad Posters That Made a Nation Want To See ThDec 12, 2020
[caption id="attachment_86105" align="alignright" width="1000"] "See New Zealand First," (detail), 1939, Marcus King (detail)[/caption]In the 21st century...
21 Beautiful Places in Romania - Condé Nast TravelerJul 24, 2020
Turns out, Dracula's home country is staggeringly beautiful.
General Data Protection Regulation (GDPR)Jul 18, 2020
101 Of The Most Beautiful Hikes In Colorado - 303 MagazineMay 25, 2020
Hiking is one of the most popular outdoor activities in Colorado, and for good reason. Our great state…
(33) My Favorite Places on Earth in 2019 - YouTubeApr 17, 2020
- ways to support -
My Patreon: https://www.patreon.com/johnnyharris
Our custom Presets & LUTs: https://store.dftba.com/products/johnny-iz-luts-and-presets
- where to find me -
Instagram: https://www.instagram.com/johnny.harris/
Tiktok: https://www.tiktok.com/@johnny.harris
Facebook: https://www.facebook.com/JohnnyHarrisVox
Iz's (my wife’s) channel: https://www.youtube.com/iz-harris
- how i make my videos -
Tom Fox makes my music, work with him here: https://tfbeats.com/
I make maps using this AE Plugin: https://aescripts.com/geolayers/?aff=77
All the gear I use: https://www.izharris.com/gear-guide
- my courses -
Learn a language: https://brighttrip.com/course/language/
Visual storytelling: https://www.brighttrip.com/courses/visual-storytelling
- about -
Johnny Harris is a filmmaker and journalist. He currently is based in Washington, DC, reporting on interesting trends and stories domestically and around the globe. Johnny's visual style blends motion graphics with cinematic videography to create content that explains complex issues in relatable ways. He holds a BA in international relations from Brigham Young University and an MA in international peace and conflict resolution from American University.
- press -
NYTimes: https://www.nytimes.com/2021/11/09/opinion/democrats-blue-states-legislation.html
NYTimes: https://www.nytimes.com/video/opinion/100000007358968/covid-pandemic-us-response.html
Vox Borders: https://www.youtube.com/watch?v=hLrFyjGZ9NU
Finding Founders: https://findingfounders.co/episodes/johnny-harris-2esj3-c3pet-2pg4c-xbtwa-5gaaa
NPR Planet Money: https://www.npr.org/transcripts/1072164745
How to See the Morocco Most Tourists Don’tFeb 23, 2020
On an epic bike trip through the Atlas Mountains and the Sahara Desert, a pair of travelers learns when to say yes to adventure.
This person works on a cargo ship and makes time lapses of his travels arouFeb 19, 2020
Source : https://www.youtube.com/watch?v=AHrCI9eSJGQ
The Best Little Museum You Never Visited in ParisFeb 19, 2020
The Museum of Arts and Crafts is a trove of cunning inventions
The quest to explore Colombia’s untouched jungleFeb 12, 2020
Colombia is on a mission to make sense of its rich biodiversity, isolated thanks to years of war. For researchers, it is a golden opportunity – and a breathtaking adventure.
10 of the coolest neighbourhoods in EuropeFeb 12, 2020
There are must-sees, of course, but to really get under the skin of Europe’s great cities go for our pick of less-touristy districts
This Is the Secret Michelin-Star Capital of the WorldJan 22, 2020
The best place to eat in Germany is in a little village in a forest.
A Pilgrimage to the Pub at the End of the WorldJan 20, 2020
For decades, the Old Forge was the holy grail of the British outdoors community. The UK's remotest pub, it could only be reached via boat or a three-day walk through one of Britain's last true wildernesses, the Knoydart peninsula in Scotland. A dispute between some locals and a new owner threatened the legend—until they decided to open up a pub of their own.
14 Towns Near Asheville, North Carolina, That Are Just as CoolJan 15, 2020
Known for its beautiful setting in the Blue Ridge Mountains, Asheville, North Carolina, is a charming metropolis for those seeking a mid-sized city to call home (its population is just a hair under 94,000). Aside from abundant natural beauty and a temperate climate, Asheville offers a lively arts and music scene, plus diverse cuisines and more breweries per capita than any other U.S. city. (Its unofficial nickname? Beer City USA.
The Secret History of Paris’s Catacomb MushroomsJan 12, 2020
In the 1800s, farmers cultivated mushrooms in abandoned quarries underneath the French capital.
What It’s Like to Live in a California Ghost TownJan 1, 2020
To be an off-season caretaker of Bodie, California (winter population: 5), you need a high tolerance for cold, solitude, and two-hour grocery runs.
Readers’ choice: Tokyo’s best ramen shopsDec 20, 2019
Last month, The Japan Times published its curated list of Tokyo's five best ramen shops. But Japan's capital city is a truly massive metropolis boasting restaurants galore, so we wanted to know: What did we overlook? And where are your favorite ramen shops?
Journey to the Place Where Pesto Was BornDec 15, 2019
Somewhere on its path to global ubiquity, pesto became a catchall name for any random herby sauce thrown in a blender. Now Ligurians want it back
Alone at the Top of TexasDec 8, 2019
With the state’s four highest peaks, Guadalupe Mountains National Park offers incredible vistas and rewarding trails, which you just might have mostly to yourself.
The buyers and sellers of Khorgos, a special trade zone on the Kazakhstan-COct 26, 2019
The town hasn't yet become the promised global-trade nexus. Nonetheless the shopping zone has lured entrepreneurs hoping to get rich and shoppers trying to get a bargain.
The empty seat on a crowded Japanese train: 10 years on, the 'gaijin seat' still gratesOct 25, 2019
If you're a conspicuous non-Japanese living in the country, then you've likely experienced the empty-seat phenomenon with varying frequency and intensity.
Inside the Members-Only Eating Clubs of San SebastiánOct 21, 2019
Step into the private kitchens of Basque country’s sociedades gastronómicas, where everything revolves around food
Spain's Happy Little Carless City - Reasons to be CheerfulOct 17, 2019
Wherever you find advocates for saner transportation, their dream scenario usually hinges on the same outcome: making cities blissfully free of cars. To this end, the Spanish city of Pontevedra, population 84,000, has done something remarkable: it has reduced car use in its historic core by 90 percent, and citywide...
36 Hours in Boone, N.C. (and Environs)Oct 3, 2019
A lively Appalachian college town, a genteel resort spot and stops along the Blue Ridge Parkway offer a colorful fall weekend of music, crafts, beer and majestic views.
On the Hunt for the World’s Rarest PastaSep 10, 2019
Delicate and impossible to replicate, su filindeu (or the “threads of God”) is a pasta made of hundreds of tiny strands by a single woman in a hillside town in Sardinia. She’ll make it for you too—if you’re willing to walk 20 miles overnight
Drifting Through Puglia, Italy’s HeelAug 29, 2019
Arriving exhausted, the 52 Places Traveler found Puglia the perfect place to go with the flow.
Dos and don'ts for tourists in Japan | Time Out TokyoAug 21, 2019
From local manners to social etiquette and cultural sensitivity, this guide will help you become a model traveller in Tokyo and Japan
Walking the Path of the Buddha in a Neglected Corner of IndiaAug 17, 2019
One man’s dream of bringing enlightenment back to its forgotten birthplace.
Sahara Desert Libraries Are Home to Thousands of Ancient TextsAug 17, 2019
These desert libraries have been around for centuries and they hold sacred texts from ancient times.
The beauty of Japan's lonely vending machines - CNN StyleAug 6, 2019
Photographer Eiji Ohashi has spent nine years photographing Japan’s ubiquitous vending machines in the most remote and sparsely populated locations.
This Italian Town Always Smells Like PanettoneAug 4, 2019
The Galup factory and its sweet Christmas bread is the pride of Pinerolo
Why Not The Worst?Aug 1, 2019
Don’t Camp at WalmartJul 31, 2019
Big-box parking lots are an easy stopgap, but there’s so much public land waiting for those willing to look a little.
The Murders That Shook a Mountain TownJul 30, 2019
Last winter, Moroccan officials found two hikers dead on the trail to the highest peak in the Atlas Mountains. The international investigation that followed revealed the fragility of the adventure travel economy, as well as what happens when a small tourist hub is suddenly made strange by violence.
Wanderland: a journey through Iran’s wild westJul 27, 2019
Nomads have been central to the country’s history for centuries. Anthony Sattin joins the roaming empire
The Seaside Portuguese Town That Inspired James BondJul 24, 2019
Estoril, which was once the wartime home of royalty seeking sanctuary—and the spies who watched them—enjoys an enchanting faded glamour today
The Lowest of Low Seasons at the Edge of the WorldJul 23, 2019
The 52 Places Traveler was one of four tourists on the remote Falkland Islands, also known as Las Malvinas. But there were thousands of penguins.
Seeing France’s Wild Mountains Through a Clouded, Classic Windshield - TheJul 15, 2019
The Citroën 2CV seemed like the perfect car for a road trip through the Cévennes region. And in its own slow, cranky way, it was.
Chefchaouen: a Moroccan Mountain Town Known as the "Blue Pearl"Jul 7, 2019
In a stunning series of photos, Tiago & Tania explore the beauty of Chefchaouen, a whimsical Moroccan mountain town known as the "Blue Pearl."
Tembo Tusk – Innovations for the Road Less TraveledJun 29, 2019
Camping equipment for the savvy off roader, overland traveler Camping grills, lantern hangers, 12 volt fridge slides and overland travel equipment.
‘The Rooster Must Be Defended’: France’s Culture Clash Reaches a CoopJun 24, 2019
A dispute between residents of a small island off France’s western coast and summer vacationers taps into France’s still unbroken connection to its agricultural past.
Opinion | The Land Where the Internet Ends (Published 2019)Jun 23, 2019
To find real solitude, you have to go out of range. But every year that’s harder to do, as America’s off-the-grid places disappear.
Someone Donated His Frostbitten Toe to a Canadian BarJun 16, 2019
The legend of the Sourtoe Cocktail continues.
30 Days Timelapse at Sea | 4K | Through Thunderstorms, Torrential Rain & Busy TrafficMay 21, 2019
Follow my adventures on Instagram! http://instagram.com/Jeffrey.hk
Dropped new timelapse! https://www.youtube.com/watch?v=9JBMpzW_B58
Hi all, i built a 24K resolution 360 camera specifically for upcoming 360 timelapse project. Check it out: https://www.youtube.com/watch?v=fseH9Kd5ooM
If you'd like to support my camera work so I can continue timelapse (this piece used up more than half of my D750 Shutter Life. Rain and camera also don't get along) please check out my patreon:
https://www.patreon.com/YTJeffHK
30 Days of Timelapse, about 80,000 photos combined. 1500GB of Project files. Sailing in the open ocean is a unique feeling and experience.I hope to capture and share it for everyone to see.
Support my photo/videography by buying through my affiliate links!
Best Value Fullframe for timelapse https://amzn.to/2MYk2vX
Fisheye lens used in 30 days timelapse https://amzn.to/30uE4Aw
360 camera I use https://amzn.to/2Qfgcku
Drone https://amzn.to/2Qhxk98
BIG JUICE powerbank for everything https://amzn.to/304fKJq
Gaffer Tape (no residue) https://amzn.to/2LCRLYq
Silica Gel Packs https://amzn.to/2N083xJ
Good intervalometer https://amzn.to/2N1ETOS
Good Entry Tripod https://amzn.to/2ZWp8e7
Pro Tripod https://amzn.to/2NYSlCH
Budget Time lapse Motion Control https://amzn.to/2A4H7Vd
Advance time lapse Motion control https://amzn.to/2PQ5ctn
Route was from Red Sea -- Gulf of Aden -- Indian Ocean -- Colombo -- Malacca Strait -- Singapore -- South East China Sea -- Hong Kong
Camera used: D750, Rokinon 12mm f/2.8
0:32 Milky Way
0:53 Sirius Star (I think) Correction: Jupiter the planet according to some viewers
1:17 Approaching Port of Colombo
1:45 Cargo Operation
2:08 Departure Colombo with Rainstorm
2:29 Beautiful Sunrise
3:13 Lightning Storm at Malacca Strait and Singapore Strait
3:29 Clear night sky Milky Way with lightning storm
4:01 Camera getting soaked
5:09 Arrival Singapore
5:56 Departure Singapore
6:20 Moon-lit night sky
6:48 Another Sunrise
8:30 Headed due north and you can see Ursa Major rotating neatly around Polaris.
8:36 Squid Boats
8:54 Chaotic Traffic
9:15 Arrival Hong Kong
Music:
Philip G Anderson - Winter (from 0:00 to 4:37 and 8:00 to 10:00)
Buy Winter here:
https://philipganderson.bandcamp.com/album/winter
Stellardrone - Billions And Billions (from 4:37 to 8:00)
=====10 Reasons Why Maritime is AWESOME =====
https://www.youtube.com/watch?v=0U18AHZbS_M
=====10 Reasons Why Maritime SUCKS =====
https://www.youtube.com/watch?v=tdMYEKwxTyo
=====How To Anchor a Mega-Ship =====
https://www.youtube.com/watch?v=62O7KYfb4GA
=====Where did I go last 2 months?? Cancun Adventure======
https://www.youtube.com/watch?v=nsizwRUXoa0
=====Navigation Bridge of a Mega Ship=====
https://www.youtube.com/watch?v=Bj3_peT4u9M
=====A Tour of Mega Ship's Engine Room=====
https://www.youtube.com/watch?v=s7BhBsVigZw
=====HEAVY SEAS! Bad Weather in Atlantic Ocean=====
https://www.youtube.com/watch?v=OZA6gNeZ5G4
=====Cargo Operations on Ship=====
https://www.youtube.com/watch?v=kj7ixi2lqF4
=====Top 6 Questions about Merchant Marine=====
https://www.youtube.com/watch?v=wBpQ9Y4jEfg
This woman quit her job to live on the road. Now capturing life on the roadApr 2, 2019
From artists to advocates, a new book highlights women in the outdoors.
A journey to the Disappointment IslandsMar 22, 2019
In 1765, an English explorer gave two islands a rather unfortunate name that has sheltered them from the world and preserved one of Earth’s last paradises.
100-Year-Old Negatives Discovered in Block of Ice in AntarcticaMar 21, 2019
For the past 100 years, a box of never-before-seen negatives has been preserved in a block of ice in Antarctica. Recently, Conservators of the New Zealand
Who Killed Tulum?Feb 20, 2019
Greed, gringos, diesel, drugs, shamans, seaweed, and a disco ball in the jungle.
Bangkok to Chiang Mai by train – best train times to see some of the highlights of ThailandFeb 14, 2019
The train from Bangkok to Chiang Mai is a great way to see more of Thailand, but depending on your travels it’s not always the best way. With some planning by picking the right trains, you can save…
The 'Ten Commandments' of running a genuine Irish pubFeb 10, 2019
British bars are ubiquitous in Kansai, but a genuine Irish establishment should follow these 'Ten Commandments':
How Heirloom Corn Is Making a Comeback in Mexico CityFeb 2, 2019
In Mexico City, the country’s native corn is experiencing a culinary renaissance.
A Guide to the Resplendent Riads of MarrakechFeb 2, 2019
An insider's guide to the riads of Morocco—and whether they're right for you.
Serenity Redefined at Bhutan’s Remote Gangtey LodgeJan 21, 2019
At Gangtey Lodge, guests feel ever so far away. More than three hours from the capital city of Thimphu, along the National Highway and ultimately beyond the single road that leads into the once-hid…
The Man in Seat Sixty-One - the train travel guide...Jan 16, 2019
How to travel by train from the UK to any country in mainland Europe, within Europe & around the world...
Cold, dry and lonely in one of the most remote places on the Indian subcontJan 10, 2019
Photographer Jayanta Roy documents the frigid landscape of the Tibetan Plateau.
In a Tokyo neighborhood’s last sushi restaurant, a sense of lossJan 7, 2019
'I'll have a draft,' says Yasuo Fujinuma, heaving himself down at the sushi counter. He pulls a pack of cigarettes from a frayed pocket of his sweater. From the corner of the restaurant, a small TV hums the noon weather forecast. He never drinks at noon.
Pamir Highway: A wild ride across Central AsiaJan 4, 2019
Stretching more than 1,200km between Kyrgyzstan and Tajikistan, the Pamir Highway is one of the world's wildest roads – and for the intrepid traveller, one of the most epic road trips.
Will Stanich's Ever Reopen? Why America's Best Burger Spot Closed Down - ThNov 17, 2018
If you love a burger...
From Lithuania, with loveOct 28, 2018
In February 2015, a cryptic email reached former NPR correspondent Ann Cooper from around the globe and across 28 years. It would pull her back into one of the most extraordinary reporting jobs in her career.
Nine Electric, Intoxicating Hours Inside Bogotá’s Wildest PartyOct 18, 2018
Like a Cheesecake Factory crossed with a nightclub on steroids, but with absolutely fantastic Colombian food
France Dispatch: At World’s Largest Food Market, a Sip of Wine After a NighOct 17, 2018
Rungis, a wholesale food market bigger than Monaco, is beloved in culinary circles, but this “working-class place” is unknown to most visitors to Paris.
Word of Mouth: San Miguel de AllendeOct 9, 2018
Based on the consistently fresh cuts and minimalist feel, you'd think AMP (A Mulher do Padre) was new to the scene. But the São Paulo-based label known for styles more akin to edgy Japa…
Imsouane in Imsouane, MoroccoOct 9, 2018
Hidden behind mountains in Morocco, a remote town hides a thriving surfing community.
Searching for chocolate’s roots, and enemies, in Colombia’s wildernessSep 14, 2018
A newfound peace has spurred the hunt for disease-resistant wild cacao within the nation’s borders. What scientists find could help the country expand its role in the global trade.
Luther Elkins Petroglyphs in Clear Fork, West VirginiaSep 12, 2018
Some claim this West Virginian rock art was written by Irish monks in the Ogham.
Camp your way | Discover the best camping near youSep 3, 2018
From seaside campsites to luxury treehouses, we're the most comprehensive guide to camping and glamping across the UK. Camp on farms, beaches and country estates.
A History of Moscow in 13 DishesAug 31, 2018
War, hunger, and some of the world’s great doomed social experiments all changed the way that Moscow eats.
The Mauritania Railway: backbone of the SaharaAug 31, 2018
Careening through the desert, a massive railway sustains life in northwest Africa
Sevanavank in Sevan, ArmeniaAug 31, 2018
This ancient monastery complex was transformed from an island to a peninsula when the lake was partially drained.
9 Food Markets Around the World We'd Hop on a Plane ForAug 28, 2018
Because food tourism is the best tourism.
Predators, Prey, and Vodka - Issue 63: HorizonsAug 9, 2018
Surveying muskoxen in the Russian far north.
A Map Of Wireless Passwords From Airports And Lounges Around The World (Updated Regularly)Aug 5, 2018
This map is now available in app form! WiFox is available on the App Store and Google Play. Finding an open
France Just Named This Tiny Place Its Favorite VillageJul 2, 2018
This small town in Alsace beat out 13 other villages for the title this year.
Life Below The Rim Of The Grand Canyon At Phantom RanchMay 27, 2018
Employees and guests alike will tell you that it's impossible to explain the feeling at Phantom Ranch, a bunkhouse and restaurant on the canyon's floor. It's a vibe you have to experience to get.
On the Strange, Artistic World of Marfa, TexasMay 19, 2018
I used to think Marfa was a kind of practical joke that West Texans were playing on cultural elites. It’s remote even for Texas. The nearest airports are in El Paso and Carlsbad, New Mexico, each 2…
You Don’t Have to Surf to Fall in Love With This Bohemian Moroccan Beach ToMay 3, 2018
This is the laid-back Moroccan surf town of your dreams.
In France, Our Dog Has His Day (Published 2018)Mar 1, 2018
Hotels, shops, bars, restaurants — dogs are welcomed warmly just about everywhere. For Pip (a.k.a. Pierre), the prancing was never better.
‘Feeding the spirit, soul and stomach’: Inside Pittsburgh’s famous fish friFeb 28, 2018
Disruptive technology is embraced in sectors where customers are eager to tear up and replace old models for doing business. That's not so much the case
Explorer: In the California Desert: Vast Darkness, Vibrant Music, an OasisDec 22, 2017
In Wonder Valley, the silence makes its own kind of noise. And Twentynine Palms makes its own kind of music.
How the Japanese Practice of “Forest Bathing”—Or Just Hanging Out in the WoDec 20, 2017
When the U.S. media began reporting on the phenomenon of “forest bathing” as a therapy for mental and physical health, the online commentariat—as it will—mocked the concept relentlessly as yet another pretentious, bourgeois repackaging of something thoroughly mundane.
The Marfa MystiqueNov 23, 2017
Outsiders remain fascinated with unraveling the secrets of this place. But locals can explain, one story at a time.
Thirty days of a cargo ship’s voyageOct 30, 2017
From the Red Sea to Hong Kong in 10 minutes – a stunning cargo-ship timelapse
In photos: India’s colonial coffee houses in an era of Starbucks and hipster cafesApr 14, 2017
A photographer captures time standing still inside the iconic joints.
tricks
Marines outwitted an AI security camera by hiding in a cardboard box and pretending to be treesAug 20, 2025
When tasked with defeating an AI programmed to detect human movement, a squad of Marines got creative.
Optical Illusions Can Fool AI Chatbots, TooMay 28, 2024
Experiments with optical illusions have revealed surprising similarities between human and AI perception
triggers
15 Psychological Triggers to Convert Leads into CustomersJul 18, 2022
Would you like to know how to get more customers who can’t wait to buy your products and services?
triton
Meta Introduces KernelLLM: An 8B LLM that Translates PyTorch Modules into Efficient Triton GPU KernelsMay 20, 2025
Installation — Triton documentationJul 27, 2023
Introducing Triton: Open-source GPU programming for neural networksJul 27, 2023
We’re releasing Triton 1.0, an open-source Python-like programming language which enables researchers with no CUDA experience to write highly efficient GPU code—most of the time on par with what an expert would be able to produce.
truecrime
Vigilantes at Dawn - LongreadsFeb 19, 2026
A forgotten deportation, a family archive, and the cost of belonging.
The extraordinary story of a soccer coach, a kidnapping and a Saudi job that didn’t existJan 21, 2026
Adrian Heath was duped into thinking he was on the verge of a new job – only to be held at knifepoint in Morocco. Turns out he's not alone
Unmasking “Rex Feral,” Author of the Infamous Hit Man ManualDec 28, 2025
A 1983 book inspired a triple murder and led to a major First Amendment case. Its until-now anonymous author is a 77-year-old great-grandmother wrestling with decades of guilt.
The Blue Book BurglarNov 4, 2025
The 'Social Register' was a who’s who of America’s rich and powerful—the heirs of robber barons, scions of political dynasties, and descendants of 'Mayflower' passengers. It was also the perfect hit list for the country’s hardest-working art thief.
The Pushkin job: unmasking the thieves behind an international rare books heistOct 7, 2025
The long read: Between 2022 and 2023, as many as 170 rare and valuable editions of Russian classics were stolen from libraries across Europe. Were the thieves merely low-level opportunists, or were bigger forces at work?
Conversations with a Hit ManJul 4, 2025
A former FBI agent traveled to Louisiana to ask a hired killer about a murder that haunted him. Then Larry Thompson started talking about a different case altogether.
Poison PillJun 3, 2025
Is the killer behind the 1982 Tylenol poisonings still on the loose? Exclusive revelations by investigators yield the first authoritative account of what happened and who likely did it. James William Lewis, also known as Robert Richardson, left behind a trail of clues while evading prosecution.
A Death in the WinelandsMar 14, 2025
Among the vineyards and fruit farms of South Africa’s Western Cape, the mysterious death of a farmworker reveals a violent history.
In search of the South Pacific fugitive who crowned himself kingMar 6, 2025
Noah Musingku made a fortune with a Ponzi scheme and then retreated to a remote armed compound in the jungle, where he still commands the loyalty of his Bougainville subjects
The Hunt for Malaysia's Elusive Wildlife Trafficker - bellingcatFeb 12, 2025
After a decade of elusive wildlife trafficking, we traced one anonymous dealer to a house in Malaysia, all thanks to a customer complaint.
Master of Make-BelieveMay 28, 2024
Zach Horwitz came to Los Angeles hoping to make it in the movies. He ended up running a seven-hundred-million-dollar scam, defrauding a sprawling group of investors, starting with his best friends.
There Are Places You Cannot GoMay 22, 2024
A friendship born out of the ruins of a nation, a dangerous journey home, and a 40-year search for the truth.
Why Leopold and Loeb Committed Cold-Blooded Murder in the 'Crime of the Century'May 21, 2024
A century ago, two Chicago teenagers killed an acquaintance named Bobby Franks for the thrill of it. The case captivated the nation and continues to fascinate the public today
Poison PillMay 12, 2024
Is the killer behind the 1982 Tylenol poisonings still on the loose? Exclusive revelations by investigators yield the first authoritative account of what happened and who likely did it.
‘Stay Away From Him. He’s Dangerous.’Apr 4, 2024
"For years, a mysterious figure preyed on gay men in Atlanta. People on the streets called him the Handcuff Man—but the police knew his real name."
Empty Frames and Other Oddities From the Unsolved Gardner Museum HeistMar 18, 2024
After 34 years, not one of the 13 works stolen during the largest art theft in history has surfaced but the puzzling peculiarities of the case still draw interest.
In Ancient Bones, a Reminder that Northern Ireland’s Ghosts Are Never FarFeb 29, 2024
When skeletal remains surfaced in Northern Ireland last year, the discovery was shaded with a discomforting question: Was this an archaeological site, or a crime scene?
How a Nuclear Weapons Lab Helped Crack a Serial-Killer CaseFeb 22, 2024
Lawrence Livermore's Forensic Science Center played a crucial role in helping to solve a notorious 1990s murder case.
The Expert Who Convinced a Jury That Jeffrey Dahmer Was SaneFeb 19, 2024
From 1994: Forensic medicine allowed Park Dietz to become a doctor while pursuing his true calling: “to study and spend my time on the strangest of crimes.”
A Teen’s Fatal Plunge Into the London UnderworldFeb 6, 2024
After Zac Brettler mysteriously plummeted into the Thames, his grieving parents discovered that he’d been posing as an oligarch’s son. Would the police help them solve the puzzle of his death?
Kyle Deschanel, the Rothschild Who Wasn’tSep 4, 2023
Kyle de Rothschild Deschanel was an instant New York sensation who seemed to live on a 24/7 carousel of mega-dollar deals and raucous parties. Then his best friend found an ID marked “Aryeh Dodelson.”
Notes From the Inner Lives of Con ArtistsJul 22, 2023
Venture inside the minds of some of the greatest scammers.
When ClearFiber came to townJun 15, 2023
The company promised customers fast, affordable internet. Now it’s bankrupt and faces allegations of overcharging customers, property damage and unpaid bills.
$100 Million Gone in 27 MinutesJun 1, 2023
After possibly the most expensive jewelry heist in U.S. history, Brink’s went after the victims.
The Last Gamble of Tokyo JoeMay 14, 2023
Ken Eto rose through the ranks of the Chicago mob, and then it tried to kill him. The underworld would never be the same.
How a Team of Ambitious Crooks in 1960s Montreal Planned the Biggest Bank Heist Anyone Had Ever SeenMar 26, 2023
In the spring of 1961, Georges Lemay, a dapper thirty-six-year-old French Canadian, spent his days holed up in his cottage on a private island on a river in the Laurentian Mountains north of Montre…
Crime of the CenturiesMar 19, 2023
Tomb raiders, crooked art dealers, and museum curators fed billionaire Michael Steinhardt’s addiction to antiquities. Many also happened to be stolen.
11 of the Greatest Scams of All Time, Curated by ‘Scam Goddess’ Laci MosleyMar 16, 2023
The comedian and podcast host—and bonafide scam expert—shares her favorite capers, along with what makes them so irresistible.
How the Biggest Fraud in German History UnravelledFeb 28, 2023
The tech company Wirecard was embraced by the German élite. But a reporter discovered that behind the façade of innovation were lies and links to Russian intelligence.
Avenging Billy: How amateur sleuths took on a gay porn actor’s haunting Hollywood murderFeb 15, 2023
Local sleuths help find a suspect in gay porn actor Bill Newton's murder. His dismembered head and feet were found in a Hollywood dumpster in 1990.
The husband-and-wife forgers who fooled the art market — and made millions | CNNFeb 15, 2023
Wolfgang and Helene Beltracchi’s forgeries infiltrated museums, auction houses and private collections. A decade after their conviction, psychoanalyst Jeannette Fischer asks: Why did they do it?
The Spectacular Case of Lørenskog: Norway's Ongoing Search for a MurdererJan 26, 2023
Anne-Elisabeth Hagen, 68, was married to one of the wealthiest men in Norway. But four years ago, she disappeared, and police still have no solid leads. The entire country has been obsessed by the case ever since.
The $65 Million Art Heist That Put ‘Ocean’s Eleven’ to ShameNov 22, 2022
A billionaire playboy’s alleged murder is at the center of the world’s most confounding heist job.
The Most Lawless County in TexasOct 30, 2022
Suzanne Wooten did the impossible and became the first candidate to defeat a sitting judge in Collin County. What followed is the unbelievable, epic tale of the craziest case in the history of jurisprudence.
What Canada’s Largest Art Heist Reveals about the Art World’s Shady Side | The WalrusSep 24, 2022
The stolen masterpieces have never turned up—and nobody’s really looking for them
Family, identity and one of the longest manhunts in U.S. historyAug 9, 2021
Fifty years ago, a shooting that nearly killed police officer Daril Cinquanta set in motion a decadeslong chase across the American West
“The Only Thing I Knew How to Do Was Kill People”: Inside the Rash of UnexpJul 7, 2021
Dozens of people were killed, died by suicide, or went missing from the Texas military base last year alone. What is behind the violence and tragedy at Fort Hood?
Three Family Members, One Business. Robbing Armored Cars.May 27, 2021
A man returns home from the army and gets a surprising offer from his father: Join the family business and help mom & pop pull off a string of daring cross-country heists. No one expects the betrayals coming.
Cryptoqueen: How this woman scammed the world, then vanished - BBC NewsMay 16, 2021
How did Ruja Ignatova make $4bn selling her fake cryptocurrency to the world - and where did she go?
Tome Raiders: Solving the Great Book HeistMay 9, 2021
When nearly $3.5M of rare books were stolen in an audacious heist at Feltham in 2017, police wondered, what’s the story?
An investigation details a $243M crypto heist in August 2024 in which a social engineering attack taOct 24, 2010
Brian Krebs / Krebs on Security: An investigation details a $243M crypto heist in August 2024 where attackers used a phone-based social engineering attack on a user of Gemini's crypto exchange
trust
https://garryslist.org/posts/half-the-ai-agent-market-is-one-category-the-rest-is-wide-openFeb 22, 2026
How to build team spirit | Psyche GuidesJan 20, 2026
The glue, or spirit, that binds certain teams is not mystical – you can cultivate it by changing how you work together
Teaching when to trustDec 12, 2025
As fake news accelerates, we need to teach our children how to think critically. Finnish schools are leading the charge
The SIFT methodSep 7, 2025
The SIFT method is "an evaluation strategy developed by digital literacy expert, Mike Caulfield, to help determine whether online content can be trusted for credible or reliable sources of information." …
5 Tips for Rebuilding Trust in a RelationshipAug 23, 2025
There are healthy ways to regain that faith in your partner and relationship. Here are five ways to rebuild trust in a relationship.
Williams Syndrome: The people who are too friendlyMay 15, 2025
People with Williams Syndrome treat strangers as their new best friends. Now the condition is giving clues to our evolutionary past – and what makes us human.
Is generosity the most underrated leadership skill?Mar 20, 2025
Leadership isn’t about a title or position — it’s about generosity, says organizational expert Joe Davis. Drawing on his extensive experience as a people manager, he shares three essential tips for leaders to unlock the potential of their teams by listening generously, embracing vulnerability and leading with humanity — and shows how it's possible to both earn trust and drive results.
The fear of being duped is ubiquitous, but excessive scepticism makes it haJul 24, 2023
The fear of being duped is ubiquitous, but excessive scepticism makes it harder to trust one another and cooperate
How We Determine What to Believe as TrueJul 22, 2023
Psychologists have been studying a very basic cognitive function that appears to be of increasing importance - how do we choose what to believe as true or false? We live in a world awash in information, and access to essentially the world's store of knowledge is now a trivial matter for many people, especially in
The PR Power of Fessing UpFeb 7, 2023
Research shows that a company’s confessions to past wrongs enhances people’s perception of its corporate responsibility.
How Darknet Sellers Build TrustJul 18, 2022
The Amazon for drug dealing is built around user reviews.
CEOs Don't Come Pre-Made, Authentic Leadership Has To Be Learned | TechCrunchJul 18, 2022
Editor’s note: Scott Weiss is a partner at Andreessen Horowitz and the former co-founder and CEO of IronPort Systems, which was acquired by Cisco in 2007. An approachable and authentic CEO is essential to fostering a high-performance, open communications culture.
Neil Patel's Digital Marketing BlogJul 18, 2022
Your #1 resource for digital marketing tips, trends, and strategy to help you build a successful online business.
Willful Disobedience: Character Traits of Independent Thinkers in the Military - Modern War InstituteJul 18, 2022
In a speech on October 4 at the Association of the United States Army’s 2016 Annual Meeting, Chief of Staff of the Army Gen. Mark Milley shared a vision of […]
Ten Techniques To (Quickly) Build Trust With AnyoneJul 18, 2022
Ten techniques for building quick trust and rapport with anyone from the FBI’s Counterintelligence training program.
How Modern Marketplaces Like Uber and Airbnb Build Trust to Achieve LiquidityJul 5, 2022
Anand Iyer, former Head of Product at Threadflip, on how marketplaces can build trust in order to build their businesses.
Cross-chain Deals and Adversarial CommerceJun 29, 2022
This paper appeared in VLDB'19 and is authored by Maurice Herlihy, Barbara Liskov, and Liuba Shrira. How can autonomous, mutually-distrust...
Why are we so uncharitable to those doing good deeds?Jun 3, 2021
From veganism to fundraising, psychologists have found acts of altruism often attract mistrust and even anger
The High Price of MistrustJan 25, 2021
When we can’t trust each other, nothing works. As we participate in our communities less and less, we find it harder to feel other people are trustworthy. But if we can bring back a sense of trust in the people around us, the rewards are incredible.
How SaaS Products Ascend the “Trust Pyramid”Aug 20, 2019
SaaS products may be the future of how we work, but that future will only happen if we can learn how to build trust with your customers.
The 3 most effective ways to build trust as a leaderApr 27, 2019
Based on data from 597 people, the best ways to build trust as a leader aren’t what you think they are. How do you build trust as a leader? The answer seems intuitive enough. For many of us, …
tshirts
Rocky and Bullwinkle Bull Brains T-ShirtFeb 4, 2026
This Rocky and Bullwinkle Show adult t-shirt features the dim-witted Bullwinkle J Moose. This bold print is distressed for that vintage worn appeal. This burnt orange, standard fit shirt is made from 50% cotton / 50% polyester. Be sure to check out our Size Chart to get an idea of the average size and dimensions of thi
Mothman Gothic Dark Art Print T-ShirtDec 12, 2025
Description SPU: BLG760882 Material: Cotton Style: Casual/Work/Daily/Vintage/Street Pattern Type: Mixed Print Type: Positioning Print Elastic: Yes(Elastic) Fit Type: Loose *The item does not include any accessories in the picture, unless stated otherwise in the product description. Size chart Size Shoulder Bust Clothing Length CM INCH CM INCH CM INCH S 50.0 19.68 106.0 41.73 68.0 26.77 M 53.0 20.87 112.0 44.09 71.0 27.95 L 56.0 22.05 118.0 46.46 74.0 29.13 XL 59.0 23
Premium TeesNov 22, 2025
Heavyweight 100% U.S. cotton. Garment-dyed for softness and lasting color. Built to wear hard, feel good, and stand out with bold original art.
I Hanker for a Hunk o’ Cheese Timer T-Shirt – GiftNov 20, 2025
Introduce a playful twist to your wardrobe with our I Hanker for a Hunk o’ Cheese Timer T-Shirt. This unique design is perfect for cheese enthusiasts and adds a dash of humor to any casual outfit. Serve up a big slice of Saturday-morning nostalgia with this vintage-inspired Timer tee! Featuring the classic cheese-lovin
New in – Page 2 – GoWithFitNov 19, 2025
Geeksoutfit Acme Corporation T-Shirt for Sale onlineApr 6, 2025
Discover Acme Corporation T-Shirt up to 20% off Sale at Geeksoutfit. Designed geeky t shirts & nerdy t shirts will help you Feel Comfortable and Stylish.Free Shipping $69+.
Body By Tacos I Hope They Serve Tacos In Hell T-ShirtMar 23, 2025
For Taco Freaks Only! Wear this one every Tuesday and for those long romantic walks to the taco truck. • 100% ring-spun cotton True To Size• Fast Shipping With Tracking• Customer Satisfaction Always Guaranteed
Blue Note Collegiate Tee - Blue Note RecordsFeb 26, 2025
This tee is sure to bring those Good Friday Blues. Inspired by vintage campus designs, Return To Casual with this Blue Note Collegiate Tee. 6.1oz Jersey100% Ring-spun cottonRelaxed FitBlue Note Collegiate design printed on front Blue Note goes to college with our new fall collection featuring a number of ‘collegiate’
Mama triedJun 12, 2024
The best Texas-themed unisex t-shirts! Super-soft, comfortable, & with a bit of stretch. Only available here at Paris Texas Apparel Co. Get Yours Today!
Jason Archer Ghost Of Charlie TeeJun 3, 2024
TYLER'S carries the best selection of clothing, shoes, and accessories with over 250 brands including William Murray Golf, Melin, HeyDude, On Running, and Yeti.
Ramen Gobbler T-shirtApr 30, 2024
The perfect mix of culture, comfort and style. Made with heavyweight cotton and premium DTG printing, our shirts are built to last with a relaxed and comfortable fit. 100% cotton Heavyweight, 260gsm Direct-to-garment printing Soft and comfortable Pre-shrunk Relaxed unisex fit
SUN RECORDS Deluxe T-Shirt, Sun RoosterAug 6, 2023
Sun Records licensed T-Shirt, Rock and roll, pop, rockabilly, country blues, gospel, rhythm and blues, Elvis Presley, Charlie Rich, Roy Orbison, Jerry Lee Lewis, Carl Perkins, Johnny Cash, Sam Phillips, Memphis, Tennessee, Million Dollar Quartet, Paul McCartney, Sun Entertainment Corporation, Miller Sisters
Maybe Today Satan Funny Men/Unisex T-ShirtMay 28, 2023
Everybody has their day
Say hello to your new favorite t-shirt. Our tees feature a classic set-in crew neck collar, a modern fit with tapered shoulders make it an ideal choice for a wide range of body types. Side seam stitched construction ensures it keeps its shape wash after wash. We use an incredibly soft cotton that’s combed and ringspun. With a fabric weight of 4.2 oz, they have just the right amount of comfort and breathability.
Solid colors feature 100% cotton, heather colors feature a 52/48 cotton/poly blend with the exception of Athletic Heather which is a 90/10 blend. Fabric is not pre-shrunk so some shrinking should be expected.
Old Gods of Appalachia: Fauna and Flora (by @aleks7even – dark print) by oldgodsofappalachiaAug 31, 2022
Original art by Aleks7 Illustration (@aleks7even), inspired by Eldritch horror podcast Old Gods of Appalachia and licensed by Old Gods of Appalachia.
star trek - captain kirk - black t-shirt - crazy kirk - william shatnerMar 16, 2022
CULT RATED - Original T-Shirt designs featuring art from your favorite movies, artists and cult culture icons.
Get this hand printed 100% ringspun cotton STAR TREK inspired t-shirt featuring the one the only, Captain Kirk being all demented and crazy - get your crazy kirk!
Available in sizes S-2X
1 color hand screen-print
Feel free to message me with any questions.
- Cult Rated
Armored Assault Possum – Put On The DayFeb 28, 2022
Get your laughs with our 'Armored Assault Possum' shirt, available in military green, white, and charcoal gray. Perfect for those who love a good twist! And yes, technically it's "opossum."
Stand up to bullies. Chase them out of office. Buy and read banned books.Feb 28, 2022
— Bitter Southerner (@BitterSouth)
record label t shirts - Google SearchJan 16, 2022
Bluebird Records Logo T-Shirt - Classic Heavy CottonJan 16, 2022
BlueBirds Records was known for recording notable Chicago blues musicians in 1932. Order this classic heavy cotton Bluebirds logo t-shirt and rep it today!
Extrovert T-Shirt – CalamitywareMar 21, 2021
To some of us, the scariest creature we ever encounter is an extrovert. Sociable. Outgoing. Gregarious. Yikes! But a few extroverts are irresistible. The chap (who you may recognize from our order confirmation emails) gracing this t-shirt is like a monster version of a big, goofy, excitable golden retriever—just thrilled to say hi to everyone he encounters. Printed on Bella+Canvas olive green t-shirt (100% Airlume combed and ringspun cotton).
I.R.S. Records | Retro Music Apparel | Old School ShirtsMar 14, 2021
The International Record Syndicate, or I.R.S. Records, was a label founded by Miles Copeland and Jay Boberg. It was home to some of the most groundbreaking bands of the '80s.
http://www.teefury.com/doctoramaDec 25, 2020
I Woke Up Like This Funny Men's T-Shirt | Headline ShirtsDec 25, 2020
Headline has been a pioneering force of funny graphic t-shirts for men, women, and kids since the early 2000s. Their intelligently funny sense of humor and refined design aesthetic converge into vintage inspired tees delivered with artistic deftness and singular style that sets them apart from the novelty tee crowd.
Apparel - Bitter Southerner General StoreDec 25, 2020
Bar tshirts | DesteenationDec 25, 2020
Shop Graphic Tees, Hoodies, and More. | Cotton BureauDec 25, 2020
Find your next favorite t-shirt, tank top, hoodie, fleece, or phone case at Cotton Bureau. Custom tees and phone cases from the world’s best graphic designers.
Girl with Pizza Slice Men's Funny T-Shirt | Headline ShirtsDec 25, 2020
Headline has been a pioneering force of funny graphic t-shirts for men, women, and kids since the early 2000s. Their intelligently funny sense of humor and refined design aesthetic converge into vintage inspired tees delivered with artistic deftness and singular style that sets them apart from the novelty tee crowd.
Looney Tunes T-Shirts - 80sTeesJul 23, 2020
What's up, Doc? Find Looney Tunes shirts and more classic cartoon gear in-stock. Get Your 80sTees On Now. Retro clothing and fan gear store.
ICEE Faded Logo T-Shirt - GrayJul 23, 2020
The Un-brrr-lieveably Good Frozen Beverage! Enjoy the nostalgia of the instantly recognizable ICEE logo - distressed and printed on a graphite gray heather tee. This Tee Luv ICEE shirt is officially licensed, and available in sizes Small to 2XL.
The Big LebowskiMay 11, 2020
Alright, way to go Donny! You've just found the best collection of Big Lebowski gear in existence. It should be obvious that we are, on a personal level, really enormous fans. .
Lebowski Baseball - The Dude's DesignsApr 28, 2020
It's the shirt The Dude wears when the millionaire Lebowski tasks him with the money drop. Jeff Bridges is known to use his own wardrobe in films when he can. Apparently this shirt was passed down from his father and he always thought it was cool. Among other personal wardrobe items in The Big Lebowski were his hilari
Count Chocula T-Shirt - GrayApr 23, 2020
I Want To Eat Your Cereal! Enjoy the nostalgia of Count Chocula with this authentic monster cereal t-shirt featuring the sweet-toothed vampire - printed on a poly-cotton heather grey tee. Officially licensed by General Mills and available in sizes Small to 3XL.
Federation Architecture Overview - BlueskyMay 7, 2023
Soon, we’re launching a sandbox environment for federation. In advance, we want to share some technical details about our design decisions.
Elon Musk reportedly purchases thousands of GPUs for generative AI projectApr 13, 2023
Reports say it’s a commitment to AI, despite signing cautionary AI “pause” letter.
Among all of his mistakes, don’t forget Elon Musk is singlehandedly crushing a big chunk of Internet research for no good reasonApr 6, 2023
Access to Twitter's API has been mostly free to researchers for more than a decade. So how does $210,000 a month sound?
Twitter alternative T2 launches new verification program, hires Discord engMar 31, 2023
T2, a new Twitter alternative, is preparing to take flight
The Man Behind Mastodon Built It for This MomentNov 23, 2022
People fleeing Twitter have turned to Eugen Rochko’s alternative. He says social networks can support healthy debate—without any one person in control.
Twitter partners with Shopify to bring merchants' products to Twitter Shopping | TechCrunchJun 22, 2022
As part of its ongoing efforts to expand into e-commerce, Twitter today announced a new partnership with Shopify. The deal will see Twitter launching a
Building a Threat Intelligence Feed using the Twitter API and a bit of codeMay 29, 2022
The InfoSec community is highly active on Twitter. The platform is, among other things, used is for sharing malware and phishing URLs…
Twitter Wants to Reinvent Itself, by Merging the Old With the New (Published 2022)Mar 7, 2022
The company is undertaking a far-reaching effort to change how it works. For some, it is an echo of their early idealism and a vision for what the internet could have been.
12 Twitter Sentiment Analysis Algorithms ComparedFeb 1, 2021
12 sentiment analysis algorithms were compared on the accuracy of tweet classification. The fasText deep learning system was the winner.
Twitter analysis: identifying a propaganda bot networkDec 23, 2019
Conducting a Twitter network analysis uncovers a widespread bot network targeting West Papua with pro-Indonesian Government content on major social platforms.
Twitter’s Pre-Musk Plans Mirrored Elon’s Vision—Until He Abandoned Trashed Or Ignored ThemSep 24, 2017
Today, the new book by NY Times reporters Kate Conger and Ryan Mac, Character Limit: How Elon Musk Destroyed Twitter, comes out. If you’re at all interested in what went down, I can’t recommend it …
typescript
A Gentle Introduction to TypeScript for Python ProgrammersOct 6, 2025
Why every Python developer should give TypeScript a serious look (and how to get productive fast)
TypeScript 5.5: Faster, Smarter and More PowerfulJun 25, 2024
TypeScript 5.5 brings a set of new features and performance enhancements for an upgraded standard for JavaScript development.
TypeScript Utility Types: The 6 Most UsefulJun 20, 2022
I have been working with typescript for almost a year now, and I have learned and implemented a lot...
Learn TypeScript — The Ultimate Beginners Guide : Built-in TypesJun 19, 2022
TypeScript Fundamentals in One Place 1. Introduction Programming...
TypeScript for Beginners, Part 1: Getting StartedJan 12, 2022
This tutorial will show you how to get started with TypeScript, including the installation process, writing some code, and compiling it to JavaScript.
TutorialDec 14, 2021
Migrate to typescript - the advance guideDec 9, 2020
About a year ago I wrote a guide on how to migrate to typescript from javascript on node.js and it g...
ubuntu
nvidia - Installing CUDA on Ubuntu 23.10 - libt5info not installable - AskJul 30, 2024
Today I've installed from scratch Ubuntu 23.10 on my computer.
After having installed all the software I need, I tried to install CUDA from the NVIDIA website, following their instructions: https://
Introduction to Omakub, a Curated Ubuntu Environment by DHHJul 20, 2024
Omakub is a heavily curated Ubuntu installation for developers, offered by Ruby on Rails creator David Heinemeier Hansson. We test it out.
How To Install and Use PostgreSQL on Ubuntu 20.04 | DigitalOceanFeb 29, 2024
PostgreSQL, or Postgres, is a relational database management system that provides an implementation of the SQL querying language. This guide demonstrates how…
How To Install MySQL on Ubuntu 22.04 | DigitalOceanJan 16, 2023
MySQL is an open-source database management system, commonly installed as part of the popular LAMP (Linux, Apache, MySQL, PHP/Python/Perl) stack. It implemen…
After GRUB appears I see ACPI BIOS ERROR messages before Ubuntu 20.04 starts normally. How do I solve the problem?Jun 21, 2022
I've installed Ubuntu 20.04 on a Lenovo Ideapad 330 as single operating system. In normal boot on my laptop, after choosing the operating system at the GRUB menu it shows some ACPI BIOS ERROR and o...
Apt - PostgreSQL wikiMay 29, 2022
How To Install PostgreSQL on Ubuntu 20.04 [Quickstart] | DigitalOceanMay 29, 2022
PostgreSQL, or Postgres, is a relational database management system that provides an implementation of the SQL querying language. This quickstart guide demon…
How to free up space in UbuntuMay 26, 2022
Whenever you are running out of disk space on Ubuntu server/desktop , There are several ways to free...
How To Install Ruby on Rails with rbenv on Ubuntu 20.04 | DigitalOceanMay 25, 2022
Ruby on Rails is one of the most popular application stacks for developers looking to create sites and web apps. Using rbenv will provide you with a solid en…
Ubuntu 21.10 suspension problemsMar 26, 2022
I'm using Ubuntu 21.10 on a Lenovo Legion laptop:
GNOME 40.4.0
Windowing X11
15.5GB DDR3, 1.3TB HD
Intel i7-9750 @ 2.6GHz + nV GTX 1660
This system recently forgot how to suspend - from both the ...
18.04 Screen remains blank after wake up from suspend - Ask UbuntuMar 14, 2022
So, when I suspend my laptop, then wake it up later, my laptop does turn on, I'm able to, for example, turn up and down the volume with audio confirmation using the kepboard, but my screen remains ...
How To Configure the Apache Web Server on an Ubuntu or Debian VPS | DigitalOceanJan 4, 2022
The Apache web server is the most popular way to serve web content on the internet. The Apache provides a modular and scalable server that can satisfy the n…
How To Install and Use PostgreSQL on Ubuntu 14.04 | DigitalOceanDec 14, 2021
PostgreSQL is one of the most powerful and popular relational database management systems available for open source platforms. In this guide, we’ll talk abo…
How to Install Nvidia Driver on Ubuntu 20.04Dec 11, 2020
Intel RSTDec 10, 2020
Ubuntu successfully virtualized on M1Nov 27, 2020
- the ISO file needed: ubuntu-20.04.1-live-server-arm64.iso - apart from the ISO, using disk images is not implemented. - SimpleVM.app is only a proof-of-concept. - it is possible to SSH into the...
Switch between workspacesNov 18, 2020
ui-ux
Getting Started With The Popover APIMar 2, 2026
What happens if you rebuild a single tooltip using the browser’s native model without the aid of a library? The Popover API turns tooltips from something you simulate into something the browser actually understands. Opening and closing, keyboard interaction, Escape handling, and much of the accessibility now come from the platform itself, not from ad-hoc JavaScript.
Friction Science: Why Users Drop Off - UX MagazineFeb 10, 2026
Most teams worry about small changes to UI when users stop using the product. But research shows that the real problem is psychological friction. This is when your brain has hidden mental interruptions that make you think, "Maybe later." This article looks at the four types of friction that can stop people from buying your products, and why 91% of people leave websites when there are problems with these things happening at the same time. Spoiler: You're not designing for screens. You're designing for the human mind.
The Psychology Gap: Why Teams Misinterpret User Behavior - UX MagazineJan 21, 2026
Your product isn't failing because of bad design. It's failing because your team is designing in clarity while your users are drowning in chaos. The gap between how you think users behave and how they actually feel their way through your product is quietly breaking every flow, feature, and conversion you build. And it starts long before any user ever clicks a button.
Top 10 UX Study Guides and Glossaries: 2025 EditionDec 27, 2025
The study guides and glossaries that were most popular in 2025.
How To Measure The Impact Of Features — Smashing MagazineDec 19, 2025
Meet TARS — a simple, repeatable, and meaningful UX metric designed specifically to track the performance of product features. Upcoming part of the Measure UX & Design Impact (use the code 🎟 IMPACT to save 20% off today).
Web UX: Study GuideDec 18, 2025
Unsure where to start? Use this collection of links to our articles and videos to learn how users interact with the web and how to design effective web user experiences.
Top 10 UX Articles of 2025Dec 13, 2025
These 10 user-experience articles published in 2025 were those that our audience read the most.
Customer Journey Mapping 101Nov 27, 2025
Mastering the Art of Customer Journey Mapping: A Step-by-Step Guide
Good Visual Design, ExplainedNov 14, 2025
To create visually appealing designs, align typography and elements to a grid, establish a clear visual hierarchy, use color strategically, and be consistent in your application of various design elements.
How Visual Cues Drive Sales: Practical Strategies for RetailersOct 10, 2025
Step into a flagship on Oxford Street or a pop-up in Manchester and the same truth applies: what shoppers see first shapes what they do next. Visual cues, whether bold colour blocking, angled shelving, or lighting accents, are the quiet persuaders of retail. They do more than decorate space. They guide behaviour, build trust, and […]
Designing with Psychology to Make Products StickOct 9, 2025
Product design has a lot to do with psychology. It’s less about how people should behave and more about how they actually do. In this piece, we’re sharing some principles that can be useful to keep in mind. The names might sound quite technical at first, but once you see the examples from everyday products, you’ll realise they’re just simple patterns of human nature, and when applied well, they can help your product do good.
Six Circles : A Experience Design FrameworkAug 29, 2025
Six Circles : A Experience Design Framework
Six Circles - an experience design framework is a book written by James Kelway. This e-book has explored some of the experience design aspects of digital …
319 Top Ecommerce Sites Ranked by User Experience Performance – BaymardAug 20, 2025
See the ranked UX performance of the 319 leading ecommerce sites in the US and Europe. The chart summarizes 100,000+ UX performance ratings.
On Designing For ChildrenJul 28, 2025
I’ve been building Kidz Fun Art (web, iPad & Windows) since 2021, so 4 years at time of writing. It’s a tablet optimized application intended to be used by children of all ages R…
Unmasking The Magic: The Wizard Of Oz Method For UX Research — Smashing MagazineJul 10, 2025
The Wizard of Oz method is a proven UX research tool that simulates real interactions to uncover authentic user behavior. Victor Yocco unpacks the core principles of the WOZ method, explores advanced real-world applications, and highlights its unique value, including its relevance in the emerging field of agentic AI.
“How you design the beep is important.” Behind the movement for calmer gadgetsMay 22, 2025
Warm lights, tactile buttons, intuitive usage.
How privilege impacts empathy - UX CollectiveApr 22, 2025
I recently met a woman named Dolores*, an older Hispanic woman, living in Queens, NY with her mother and teenage daughter. As the primary provider for her family, she had come to the organization…
Ecommerce: A List of TacticsApr 22, 2025
Dive into the customer's mind. Read guides. Watch cool videos. Pricing, sales, design, negotiation, and more.
Design Guidance: Principles, Patterns, Heuristics, and Team ChartersApr 18, 2025
Design teams rely on a combination of principles, patterns, heuristics, and charters to create consistent and usable experiences in a collaborative way.
Tools and resources our designers are using right nowApr 14, 2025
A list of what tools and resources are most relevant for our designers right now.
The Dark Side of UX: Lessons from OnlyFans’ Addictive DesignFeb 17, 2025
OnlyFans leverages a meticulously crafted UX to create a powerful sense of intimacy and exclusivity, captivating users while sparking ethical debates about manipulation and exploitation.
SWOT AnalysisFeb 7, 2025
A SWOT analysis helps teams understand how well a product, service, or organization is positioned in the market to serve its customers.
Why UX is more important than UIDec 31, 2024
“I want to make it pop!”, but not at the expense of your customer experience. Here’s why.
Top 10 Study Guides and Glossaries: 2024 EditionDec 28, 2024
Study guides and glossaries that were most popular in 2024
Testing Visual Design: A Comprehensive GuideDec 13, 2024
Use methods like 5-second testing, first-click testing, and preference testing to gain insights into how users perceive your visual design.
Top 10 UX Articles of 2024Dec 13, 2024
These 10 user-experience articles published in 2024 were those that our audience read the most.
The secret tricks hidden inside restaurant menusDec 2, 2024
Great thought and effort go into creating restaurant menus – and there are some very powerful psychological tricks employed to make you choose.
Product & UX GlossaryOct 25, 2024
Use this glossary to quickly clarify key terms and concepts related to product management and UX.
How To Manage Dangerous Actions In User InterfacesOct 19, 2024
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.
Reverse Engineering TicketMaster's Rotating Barcodes (SafeTix)Jul 9, 2024
"Screenshots won't get you in", but Chrome DevTools will.
Why toggle switches suck (and what to do instead)Jul 3, 2024
Adam Silver – interaction designer - London, UK
Card Sorting: Pushing Users Beyond Terminology MatchesJun 16, 2024
Labels in a card sorting study must be neutral to prevent keyword matching and encourage careful, conceptual groupings from users.
Storyboards Help Visualize UX IdeasJun 11, 2024
Storyboards are visual representations of UX stories, which capture attention, provide clarity, and inspire us to take action.
Decent PatternsJun 11, 2024
Decent Patterns is a collective effort to further the adoption of decentralized technologies by providing open tooling and resources for the community.
The power of beauty in communicating complex ideasJun 11, 2024
Can designers defend pursuing beauty when communicating science or innovation?
Visual Hash | Decent PatternsJun 11, 2024
Decent Patterns is a collective effort to further the adoption of decentralized technologies by providing open tooling and resources for the community.
What is visual hierarchy, and why do you need it?May 30, 2024
Crowded and hard-to-navigate designs are two of the biggest reasons users leave a website. When users quickly leave, engaging them and boosting
UI DensityMay 23, 2024
I speak and write about design, front-end code, leadership, and (occasionally) math.
Hidden vs. Disabled In UXMay 21, 2024
Should you hide or disable a feature? You’ve probably been there before. Here are some considerations for hiding versus disabling, along with possible alternatives to improve UX. An upcoming part of [Smart Interface Design Patterns](https://smart-interface-design-patterns.com).
Complicated SticksMay 20, 2024
Potential in place of purpose is what separates an iPad from an iPod, blockchains from databases, and generative AI from text editors. The more complex the product, the more potential it has to have potential. The more it can distract from it's own lack of usefulness.
7 Tips for Memorable and Easy-to-Understand ImageryMay 4, 2024
A few relevant, high-quality visuals placed next to associated text can boost users’ comprehension of your content and its memorability.
13 Website Usability Testing ToolsApr 30, 2024
For merchants, elevating a site's user experience means more conversions. Usability testing platforms can identify pain points, collect feedback, more.
Affinity Diagramming for Collaboratively Sorting UX Findings and Design IdeApr 29, 2024
Use affinity diagramming to cluster and organize research findings or to sort design ideas in ideation workshops.
F-Shape Pattern And How Users ReadApr 23, 2024
Scrolling, scanning, skipping: How do users consume content online? Here’s what you need to know about reading behavior and design strategies to prevent harmful scanning patterns. An upcoming part of Smart Interface Design Patterns.
3 Types of Online Calculator and Quiz ToolsApr 14, 2024
Most calculator and quiz tools provide at least one or more of the following services: converting inputs, predicting the future, or providing recommendations.
Responsive Images – The Definitive GuideApr 11, 2024
A practical guide to responsive image best practices. By a responsive designer with 20+ years web experience.
Examples of Prototypes – From Low-Fidelity to High-Fidelity PrototypesApr 5, 2024
Let's go through 6 carefully-picked prototype examples and learn about the difference between low and high fidelity prototypes.
24 Eye-catching HTML CSS Chat Box Designs to Enhance Your WebsiteMar 3, 2024
Elevate your website's user experience and engagement with 24 captivating HTML CSS chat box designs. From sleek and modern to fun and whimsical, there's a design to match every website's style and tone.
Modern CSS Tooltips And Speech Bubbles (Part 1)Mar 1, 2024
Tooltips are a very common pattern used in CSS for years. There are a lot of ways to approach tooltips in CSS, though some evoke headaches with all the magic numbers they require. In this article, Temani Afif presents modern techniques to create tooltips with the smallest amount of markup and the greatest amount of flexibility.
Mental ModelsFeb 29, 2024
What users believe they know about a user interface impacts how they use it. Mismatched mental models are common, especially with designs that try something new.
Spatial Computing: A New Paradigm of InteractionFeb 29, 2024
Web magazine about user experience matters, providing insights and inspiration for the user experience community
Card Sorting vs. Tree TestingFeb 29, 2024
Card sort studies help shape information architectures; tree-testing studies evaluate them.
Hotwire Modals in Ruby on Rails with Stimulus and Turbo FramesFeb 23, 2024
In the first part of our series, we'll explore two Hotwire methods to make modals accessible in your Rails application.
Card Sorting: Uncover Users' Mental Models for Better Information ArchitectFeb 19, 2024
In a card-sorting study, users organize topics into groups. Use this research method to create an information architecture that suits your users' expectations.
Visual Hierarchy: Making User Experiences Easier to UnderstandFeb 11, 2024
Web magazine about user experience matters, providing insights and inspiration for the user experience community
Get started with official documentation and guides · SketchFeb 11, 2024
Learn how to design, prototype and collaborate with the official documentation for Sketch. Get started in UI/UX/app/web design here.
Complex Approvals – How to Design an App to Streamline ApprovalsFeb 11, 2024
Read our guide on designing an app for streamlining complex approval processes. Discover UX rules, UI tips, and more.
Best App Landing Page Examples and Why They WorkFeb 10, 2024
Discover best App Landing Page Examples and find out what makes them work. The tips include UI, UX, and copy advise to steal.
Memory Recognition and Recall in User InterfacesJan 17, 2024
Recalling items from scratch is harder than recognizing the correct option in a list of choices because the extra context helps users retrieve information from memory.
Psychology for UX: Study GuideJan 17, 2024
Unsure where to start? Use this collection of links to our articles and videos to learn about some principles of human psychology and how they relate to UX design.
A Periodic Table of Visualization MethodsJan 17, 2024
UI Design DailyJan 7, 2024
A large database of 100% free UI components and design source files available in formats popular in the industry.
The invisible problem – Scott JensonSep 27, 2023
7 reasons to replace advanced search with filters so users can easily findAug 27, 2023
Adam Silver – interaction designer - London, UK
✨? An Eye-Catching Card with a nice Hover Effect using HTML and SCSSAug 15, 2023
A post by Smit Prajapati
8 Ways to Emotionally Reward Your Users | Web Designer DepotAug 7, 2023
They made this digital faux-Montana delightful enough that I don’t want to leave. But hey, you can use these powers for good.Anyway, my point is that people want payoff for the effort they put into things, and that includes the websites they browse. But you can build emotional rewards into just…
Design of complex tablesJul 22, 2023
Virtual Queues: 13 Best Practices for Managing the WaitJul 13, 2023
Many journeys include touchpoints where users must wait in line, whether for a physical or online interaction. Well-designed virtual queues help manage the wait to free up users to do other things.
Quantitative UX: GlossaryJul 2, 2023
Use this glossary to quickly clarify key terms and concepts related to quantitative user studies.
Advanced Search UX Done Right — Powerful Examples and TipsJun 30, 2023
Learn about designing advanced search features. Explore key elements of search UI and build a user-friendly search input.
8 Tips for Shaping Product Aesthetics with UI Mood BoardsJun 10, 2023
Discover what UI moodboards are and learn how they can help you perfect product aesthetics. Get our do's and dont's of UI mood board.
From Netflix to HBO, the terrible design of streaming is ruining TVMay 18, 2023
Why in 2023 is streaming TV such a terrible experience?
Give it the Craigslist test — Erica HeinzMay 7, 2023
All the AI design hype got me twitching enough to write about the business risks of working so high-fidelity so fast.
Discoverability in UX and UI Design — 9 Techniques to TryApr 13, 2023
Try those 9 techniques and improve discoverability in your product. Make your users happy and create a smooth ux for them.
Lean UX & Agile GlossaryApr 8, 2023
Unsure of what a word means and how it applies to UX in-practice? Use this glossary to quickly clarify key terms and Agile concepts.
What Is the Optimal Pattern of a Customer Journey?Mar 31, 2023
Even though customer experience (CX) leaders are becoming increasingly focused on optimizing their firms’ customer journeys, they face a clear challenge: Which touchpoints along the journey should they invest in? That is, which moments when the customer interacts with their brand are most impactful to the customer’s overall experience? One way to think of customer journeys is as continuous patterns of mental experiences traced over time. Thinking of customer journeys as patterns raises a new set of productive questions, such as: Which patterns are most successful? And what features of those patterns lead to success? Some have argued that the best patterns are smooth and frictionless, while others have made the case for patterns that fluctuate, given that they are likely to be more eventful and stimulating. This article covers research and data on which patterns are most effective, and where CX managers should be investing their limited resources for the best possible customer experience outcomes.
Dark Patterns in UX Design — Which Ones Are the Most Deceptive?Mar 28, 2023
Learn about dark patterns and ways of spotting them, no matter the type of the pattern apply. We will shed the light for you.
8 Amazing Metallic Effects Built With CSS and JavaScriptMar 26, 2023
Create realistic metallic effects with these CSS and JavaScript code snippets. Create metallic text, buttons, backgrounds, and more.
Avoiding 3 Common Pitfalls of Affinity DiagrammingMar 19, 2023
Inexperienced facilitation in affinity diagramming workshops can lead to groupings that do not serve the team goals or misrepresent underlying issues.
Say Goodbye to Boring Dropdowns: Create Custom Dropdown Menus with Headless UIMar 19, 2023
Creating a website is no small feat. It requires careful planning, strategic design, and thoughtful...
mathesar-foundation/mathesar: Web application providing an intuitive user experience to databases.Mar 16, 2023
Web application providing an intuitive user experience to databases. - mathesar-foundation/mathesar
As a user, I don’t want toMar 14, 2023
Task-oriented user stories mix up customer value with cost. But they are easy to turn into a tool for thinking bigger.
What is Progressive Disclosure? Show & Hide the Right InformationMar 13, 2023
When is the right time to disclose information? How much of it should you disclose? Let's explore progressive disclosure, a UX technique.
The Anatomy of a Good Design: An Analysis of 4 SitesMar 5, 2023
Visually pleasing designs use consistent type styles and spacing, create a visual hierarchy, and utilize an underlying grid structure.
25 Fantastic Tutorials For Learning FigmaFeb 24, 2023
From UI basics to more advanced techniques, with the help of these tutorials, you'll be able to learn and master Figma in no time.
9 Ways to Grow Repeat BuyersFeb 22, 2023
Repeat customers are the lifeblood of successful ecommerce stores. Here are helpful tips for encouraging buyers for the long term.
6 Storybook Tutorials for Product Development TeamsFeb 22, 2023
Learn about Storybook and how it streamlines product development. Check the most popular tutorials on Storybook.
Articles — Smashing MagazineFeb 22, 2023
Smashing Magazine — front-end, UX and design for front-end engineers and designers
When to Use Empathy Maps: 3 OptionsFeb 15, 2023
Empathy maps are a powerful, flexible tool that can be used to plan for future research studies, capture insights during current user research, and communicate research insights from research that has already been conducted to others.
76 CSS CardsFeb 15, 2023
Welcome to our collection of CSS cards! In this comprehensive compilation, we have gathered a wide range of free HTML and CSS card code examples from various reputable sources, including CodePen, GitHub, and other valuable resources.
Shopping for Apparel in an Online World: UI/UX Design for Virtual ClothingFeb 10, 2023
How AR and VR are reshaping apparel e-commerce.
10 Essential Design System ComponentsJan 24, 2023
Learn about design system components. Deepen your knowledge of atomic design and see how you can use it for product design. Enjoy!
7 Principles of Design Psychology Every UX Designer Should KnowJan 9, 2023
Web magazine about user experience matters, providing insights and inspiration for the user experience community
An Ultimate Guide On Sizing, Spacing, Grids And Layout In Web And UI/UX DesDec 30, 2022
A grid is like invisible glue that holds a design together. Even when elements are physically separated from each other, something invisible connects them together. Grids help designers to build better products by tying different design elements together to achieve effective hierarchy, alignment and consistency, with little effort. If executed properly, your designs will appear thoughtful and organized. In this article Nick Babich aims to give you a good understanding of grid systems, what they are, and how they can be applied to your design process. Understanding how to use grids will come from practical experience.
How to design almost any UI element (list of ~58 articles of how to properlDec 23, 2022
Buttons. 7 Basic Rules for Button Design by @101babich Button Design Cheatsheet for...
Why vinyl records survive in the digital age | Ars TechnicaDec 21, 2022
Don’t underestimate ritual and tactility.
9 UX Learnings From the World's Best Ecommerce SiteDec 18, 2022
Ecommerce websites require great user experience (UX) to achieve the reason for which they’re...
9 Best Ecommerce UX Practices From the World's Best Ecommerce SiteDec 17, 2022
Discover the 9 best ecommerce UX practices from the world's top B2B ecommerce sites that made the top of HackerNews as the best ecommerce site.
Top UX Design Tools to Try in 2023Dec 13, 2022
Check out the list of top UX design tools that will make you design a stellar user experience. Learn what you can expect from each tool.
UX Mapping Methods: Visual-Design GuideDec 9, 2022
Visual-design principles can be applied consistently throughout the process of creating a polished UX map. Start by choosing a tool, then create a visual system, establish the basic layout, and finally add content and make adjustments.
The Uses of FrictionDec 6, 2022
Plus! Market-Making; Poaching and Equity Currency; China's Covid Economy; The Cost of AI; Friendshoring; Diff Jobs
5 CSS Card Design Ideas!Nov 30, 2022
Disclaimer: There is a video version of this tutorial, watch it here Here are 5 card designs, with...
Why and How to Use Demographics in UXNov 27, 2022
Well-designed questions related to age, gender, race, income and other demographic characteristics help UX researchers screen participants, recruit a diverse participant pool, and segment data. These questions are sensitive and should put research participants at ease.
Three Pillars of User DelightNov 27, 2022
Delight can be experienced at the visceral, behavioral, and reflective levels. A great design achieves all three of these levels and is best evaluated with specific research methods.
The Data Cards Playbook: A Toolkit for Transparency in Dataset DocumentatioNov 21, 2022
Posted by Mahima Pushkarna, Senior Interaction Designer, and Andrew Zaldivar, Senior Developer Relations Engineer, Google Research As machine learn...
Content Strategy 101Nov 14, 2022
A content strategy is a high-level plan that guides the intentional creation and maintenance of information in a digital product.
Hostile Patterns in Error MessagesNov 6, 2022
Premature error messages, aggressively styled fields, and unnecessarily disruptive system-status messages feel bad-mannered and increase cognitive load for users during otherwise simple tasks.
A Design Language for Touch, Gesture, and Motion :: UXmattersNov 5, 2022
Web magazine about user experience matters, providing insights and inspiration for the user experience community
Pokemon Cards Holo effect v2Oct 27, 2022
The Playful Power of Card Design UIOct 20, 2022
Learn the pros/cons and best practices for card design UI, a popular interface design elements. Plenty of examples included, so dive in!
Personas: Study GuideOct 9, 2022
Unsure where to start? Use this collection of links to our articles and videos to learn about personas and how to create and apply them.
Isomorphic-Table-Cards ·Sep 24, 2022
Table and Cards views with animated transitions on sorting, switching view, and browser resizing (no dependencies, just vanilla Javascript, CSS, and HTML). - evoluteur/isomorphic-table-cards
Sanding UISep 24, 2022
Writing about the big beautiful mess that is making things for the world wide web.
What Are Design Tokens?Sep 17, 2022
Learn more about design tokens and find out more about using them in your product design process. See if you need them.
5 Figma Alternatives for UI & UX Designers - Stack DiarySep 16, 2022
Interested in Figma alternatives? This article covers the best choices for professional UI & UX designers. Free and paid.
Accessibility UX Best Practices – 8 Tactics for Web DesignSep 14, 2022
Learn 8 accessibility hacks that will make your website suitable for a variety of users, including those who have certain challenges.
Design System Glossary – 34 Powerful Terms You Should KnowSep 14, 2022
What is pattern library, UI kit, and brand voice? Learn all the terms that you need to build and use a long-lasting design system.
Antipersonas: What, How, Who, and Why?Sep 12, 2022
Antipersonas help anticipate how products can be misused in ways that can harm users and the business.
The Realities And Myths Of Contrast And Color — Smashing MagazineSep 8, 2022
In this article, Andrew Somers, a 35-year veteran of the Hollywood film and television industry, shares his experience about the hard-fought battles and lessons learned designing for illuminated presentations.
Top 5 Technology Trends in UX DesignSep 5, 2022
Web magazine about user experience matters, providing insights and inspiration for the user experience community
BASIC UX Framework – Definition, Benefits, and ApplicationSep 1, 2022
Discover BASIC UX, a top framework that UX designers use to shape their solution, and build the best product possible.
How to Analyze Qualitative Data from UX Research: Thematic AnalysisAug 17, 2022
Identifying the main themes in data from user studies — such as: interviews, focus groups, diary studies, and field studies — is often done through thematic analysis.
The two types of quality // Zeno RochaAug 17, 2022
The Japanese define quality in two ways — atarimae hinshitsu and miryokuteki hinshitsu. Understanding the difference between them is the key to building products that users love.
Elevate Your E-commerce Journey With Animated UX MicrointeractionsAug 17, 2022
Microinteraction best practices that improve e-commerce UX.
Tests | GoodUIAug 13, 2022
Mobile UX: Study GuideJul 26, 2022
Unsure where to start? Use this collection of links to our articles and videos to learn how to write and present information that aligns with users’ needs and online behaviors.
Figma UI Design Tutorial: Get Started in Just 24 Minutes! (2022) - YouTubeJul 8, 2022
✅ Check out our FREE FACILITATION TRAINING and learn the 5 things you can do to become a top 1% facilitator and earn 6 figures while doing it! 👉https://go.ajsmart.com/start?utm_source=youtube&utm_medium=channel-video&utm_campaign=081220
________
Do you want to learn Figma but don’t know where to start? Well, if you follow this step-by-step tutorial, it will only take you 24 minutes to learn all the basics you need to know to start designing apps and websites in Figma.
In this Figma tutorial for beginners, UX designer Amr guides you through Figma’s interface and tools following a very valuable principle to start mastering this tool. “If you want to learn the basics, you should copy other designs”.
Do you have more questions about Figma or the next steps you should take? Leave them in the comments below ⬇️
✅ If you want to learn about facilitation and workshopping join our FREE FACILITATION COMMUNITY where hundreds of workshop facilitators gather to share their resources, insights and experiences 👉 https://www.skool.com/facilitatorclub
Also if you haven't already, subscribe to our Youtube channel for weekly UX / UI / Career / and Design Sprint videos: ❤️ https://www.youtube.com/AJ&Smart?sub_confirmation=1 😉
🛠Free resources mentioned in this video:
1️⃣ Figma website - https://www.figma.com/
2️⃣ Figma resources (Food delivery app UI template) - https://www.figma.com/community/file/852455074698003039
3️⃣ Free Figma icons - https://www.figma.com/resources/assets/evericons-for-figma/
4️⃣ Unsplash (Free images) - https://unsplash.com/
⏰ Video Timestamps
0:00 Intro
0:22 Advantages of using Figma
1:22 How to log in into figma.com
1:36 Why you should copy other designs
Start of Tutorial
2:28 How to start a project from a TEMPLATE
5:10 Interface OVERVIEW
5:27 Create a FRAME
6:38 SHAPE and COLOR creation
8:28 CORNER RADIUS adjustment
10:12 Create a CIRCLE
12:25 How to use an ICON
14:28 How to paste IMAGES
15:32 How to use TEXT
18:39 BUTTON UI
21:39 Conclusion
22:32 Next steps
Thanks for watching!
----
#Figma #FigmaTutorial #UXDesign
📣 FREE FACILITATION TRAINING! 👉 https://go.ajsmart.com/start
We’ve JUST launched a new 1-hour facilitation training, where we’ll teach you:
✅How we landed facilitation gigs with the world’s best companies (Google, Twitter, LEGO & more!)
✅How to successfully build & facilitate ANY workshop, even when you’re not a subject-matter expert
✅How to become a high-paid facilitator in 90 days or less, using our special ‘5-1-6 method’.
Interested? This training is available for a limited time only, so unlock it now and start watching!
If you want to stay ahead of the UX game, level up your career, and be in the know on the nerdiest, ‘techiest’ things, sign up for our FREE newsletter here: 📩 👇
📝 https://aj-smart.ck.page/21100f1c73 👀
Want more? Join 200,000+ people subscribing to our AJ&Smart YouTube, LinkedIn and Instagram channels for free content to help you and your team do more valuable work.
AJ&Smart is the #1 design sprint firm in the world, the official Design Sprint training partner with Jake Knapp inventor of the google design sprint and partner of choice for the world's most successful brands.
Figma UI Design Tutorial: Get Started in Just 24 Minutes! (2021)
https://youtu.be/FTFaQWZBqQ8
8 Reasons Users Don’t Fill Out Sign Up FormsJul 5, 2022
Signing up for a website is a big commitment to most people. Users who sign up for your site are giving you their personal information. If you misuse their personal information, you could abuse their trust. Most users today are more wary than ever about who handles their personal information. In a cyber world full of […]
Taxonomy 101: Definition, Best Practices, and How It Complements Other IA WJul 3, 2022
A taxonomy is a backstage structure that complements the visible navigation. Taxonomies support consistent information retrieval by creating formal metadata rules.
Neil Patel's Digital Marketing BlogJun 29, 2022
Your #1 resource for digital marketing tips, trends, and strategy to help you build a successful online business.
How Lumosity Spiked Active Users 10% with Complexity, Not SimplicityJun 25, 2022
It's not always true that simplicity makes the best product. Sometimes making things less simple will get you the users you truly want.
GTA V: 9 Facts That Will Blow Your MindJun 23, 2022
UX vs. UI: Guide to Distinguishing User Experience and User Interface DesigJun 23, 2022
Read this guide to learn how to Distinguish between User Experience and User Interface Design.
Hotjar: Website Heatmaps & Behavior Analytics ToolsJun 23, 2022
The next best thing to sitting beside someone browsing your site. See where they click, ask what they think, and learn why they drop off. Get started for free.
Hacker NewsJun 23, 2022
An introduction to Web Authentication (WebAuthn), the new API that can replace passwords with strong authentication.
The World's Most Satisfying Checkbox | !Boring SoftwareJun 21, 2022
The Art of Game Feel (a.k.a Juice) in Product Design
6 In-demand Marketing Skills for Your Design CVJun 21, 2022
In today’s tech-savvy world, being a great designer is not all about being a whiz at tools such as Adobe Photoshop and Adobe Illustrator. The job is
You’re not still using “Read More” are you?Jun 21, 2022
It’s probably not the first time you’ve heard that using links like “Read More” or “Click Here” is bad practice. This topic has been…
The Benefits and Pitfalls of GamificationJun 13, 2022
Gamification is becoming a hot commodity around the web, but what is it? Is it being used correctly? Let's have a look at various aspects of gamification and how they can be used and...
Setting UX Roles and Responsibilities in Product Development: The RACI TempJun 7, 2022
Use a flexible responsibility-assignment matrix to clarify UX roles and responsibilities, anticipate team collaboration points, and maintain productivity in product development.
Style TilesJun 4, 2022
A Style Tile is a design deliverable consisting of fonts, colors and interface elements that communicates the evolution of a visual brand for the web. Learn how to use them here.
Google's six rules for great data design - Fast CompanyJun 2, 2022
Google's data viz team, formed just last year, has put out best practices for designing charts.
Competitive Analysis for UX – Top 6 Research MethodsJun 1, 2022
Learn how to run a competitive analysis for UX and check out our 6 research methods, so you know what to do what to look at.
Why So Many Luxury Brands Are Terrible at EcommerceMay 30, 2022
Until recently, a lack of digital prioritization and desire to control access have led to sub-par luxury ecommerce experiences. Many luxury brands are struggling to improve.
gztchan/awesome-design: 🌟 Curated design resources from all over the world.May 28, 2022
🌟 Curated design resources from all over the world. - gztchan/awesome-design
Two Tips for Better UX StorytellingMay 28, 2022
Effective storytelling involves both engaging the audience and structuring stories in a concise, yet effective manner. You can improve your user stories by taking advantage of the concept of story triangle and of the story-mountain template.
Personas vs. ArchetypesMay 15, 2022
Archetypes and personas used for UX work contain similar insights, are based on similar kinds of data, and differ mainly in presentation. Personas are presented as a single human character, whereas archetypes are not tied to specific names or faces.
The Principles Of Visual Communication — Smashing MagazineMay 6, 2022
We’re taught to communicate with words. We write essays, prepare speeches, and take written notes. But words aren’t always the best option for conveying information and ideas. Sometimes the best way to tell stories is through thoughtfully crafted visuals, not long paragraphs of text. Visual storytelling is the process of conveying ideas using things you can see. In this article, Elizabeth Lin will explore visual principles, highlight why visual storytelling is a valuable skill for everyone to learn, and demonstrate how you can improve your visual storytelling through play.
Creating Style GuidesApr 15, 2022
A style guide, also referred to as a pattern library, is a living document that details the front-end code for all the elements and modules of a website or application. It also documents the site’s…
UX Project ChecklistApr 15, 2022
Start your next UX project with this checklist and don't forget about anything!
10 Best UI/UX Books that Every Designer Should Read [2022]Apr 13, 2022
If you're looking for the best books on web design topics, you are in the right place. In this...
The Science of Familiarity: Increasing Conversions by Being UnoriginalApr 11, 2022
Familiarity has a major impact on our decision-making process. Understanding the psychology behind it will lead to better UX / design, copy and CTAs.
User Interfaces, Usability, and User Experience: The Square Milk Jug EditionApr 11, 2022
How do UI design, usability, and user experience combine to impact your success?
How Sephora “sucks” all my money through great UX and psychologyApr 11, 2022
My girlfriends always complain to me that Sephora is like a black hole that sucks up all their money. Some of my girlfriends even have to…
Ham biscuit on – Eric BaileyApr 10, 2022
The problem is we don’t know the initial state of the ham biscuit sign and who it is intended for.
The joy of sketching - UXMMar 28, 2022
The most important tool for any UX designer is a pen and a stack of paper. Why? Because before you even think about designing an interface you should be sitting down to sketch out your ideas. Find out why you should be ditching the computer and embracing pen and paper.
Trend Alert: What is Flat Design?Mar 28, 2022
Flat design is a big trend right now when it comes to design projects â€" from logos to letterhead to website design. And if you don’t get familiar with it, you might get left behind.
Optimize Micro-Interactions to Enhance your UX DesignMar 28, 2022
Micro-interactions are usually overlooked by designers as a "nice-to-have" rather than a "must-have." Know why micro-interactions are important for your brand.
Storyboarding UX Part 1 An Introduction - Johnny HollandMar 28, 2022
Storyboarding UX Part 1 An Introduction Welcome to the immersive world of UX design where every click, swipe, and scroll tells a story.
8 CSS & JavaScript Snippets for Creating Cool Card UI Hover EffectsMar 23, 2022
From bold transformations to simple highlights, we share some fantastic CSS & JavaScript card UI hover effect snippets.
UI and UX Design Trends that Dominate 2022 and BeyondMar 16, 2022
Time to take a look and the user interface at UI and UX design trends and make them a source of inspiration. Learn about top 10 trends.
The Catalog of Design PatternsMar 14, 2022
The catalog of design patterns grouped by intent, complexity, and popularity. The catalog contains all classic design patterns and several architectural patterns.
https://blog.mobile-patterns.com/practical-ux-design-tips-for-startups-and-teams-on-a-budget-fac58299984bFeb 24, 2022
Leaks | GoodUIFeb 24, 2022
Interactive: The secret to hotel room design is part art, part scienceFeb 24, 2022
There’s more than meets the eye to room design
Using interactions to shape user behavior patternsFeb 24, 2022
Facebook Messenger: Long Press to Swipe
Awesome Package Design Blogs to Inspire Your WorkFeb 24, 2022
If you’re a creative entrepreneur who understands the power of branding in your packaging design, you’re already
The Hidden Cost of TouchscreensFeb 23, 2022
In 2012 I tried out a brand new luxury vehicle at a automotive conference. It was a minimalist European model, and nothing seemed out of…
A short history of door handles | Apollo MagazineFeb 23, 2022
Door handles can be the first and only part of a building we touch, but their design is all too often an afterthought, writes Edwin Heathcote
The Weird Science Behind Chain Restaurant MenusFeb 23, 2022
I was a corporate restaurant consultant. Here’s how the sausage gets made.
Annotation Is Now a Web Standard : HypothesisFeb 23, 2022
Over the years, many have tried to bring us web annotations. On 23 February 2017, things took a giant leap forward when the W3C, the standards body for the web, standardized annotation. Yesterday, on February 23, things took a giant leap forward when the W3C, the standards body for the Web, standardized annotation. Twenty four years after Marc Andreessen first built collaborative annotation into Mosaic and tested it on a few “guinea pigs” before turning it off, annotations have finally become first-class citizens of the web.
Autocomplete as an interfaceFeb 23, 2022
the real reason zsh beats bash • how I got twice as fast in python • autocompleting all the things • maximizing user-interface bandwidth
Patterns | GoodUIFeb 23, 2022
Reflections from a designer turned product manager: 6 unexpected differencesFeb 23, 2022
Two years ago, I transitioned from design to product management (PM). After 10 years as a designer, from interning to managing a team, I…
Deceptive Patterns - Types of Deceptive PatternFeb 23, 2022
From "sneaking" to "forced action", explore the various types of deceptive patterns used by companies to mislead and trick users, and gain insights on how to protect yourself.
The UX of LEGO Interface PanelsFeb 23, 2022
LEGO interface panels are beautiful, iconic, and great for learning interface design basics. I bought 52 of them from BrickLink to explore the design, layout and organisation of complex interfaces.
Figma Crash CourseFeb 23, 2022
Deep dives into powerful Figma features. Skip the basics and learn prototyping, auto-layout, systems, and illustration with your instructor, Pablo Stanley.
Visual Tools To Aid Your Daily Inspirational ProcessFeb 20, 2022
Today we have gathered together a small but interesting toolkit which is going to help you find and harness the inspiration you need on a daily basis. The creative process for web designers is unrelenting,...
Library of design inspiration examples & user flows from web apps • NicelyFeb 12, 2022
Browse a curated design library of web app screens, UI components and User flows from top SaaS web apps, inspiring product teams from leading companies.
A step by step guide to scenario mapping - UXMFeb 12, 2022
Scenario mapping is a really quick, easy and dare I say it even fun way to collaboratively create, discuss and communicate user scenarios. Find out how to go about creating scenario maps and why they’re so damn useful in the first place.
18 Cognitive Bias Examples Show Why Mental Mistakes Get MadeFeb 10, 2022
Here are 18 of the most common mental mistakes in business and investing. Make sure to learn from these cognitive bias examples to make better decisions.
Storming Reddit's MoatFeb 8, 2022
A Guide to Reddit, Its Key Competitive Advantages, and How to Unbundle It
Design PrinciplesFeb 8, 2022
What Color Is This? | Stitch Fix Technology – MultithreadedFeb 8, 2022
We need to know what colors our merch is. But because downstream users include many different people and algorithms, we need to describe colors as a hierarch...
A Survey of Explore and Exploit InterfacesFeb 8, 2022
Some of the most popular apps today are highly personalized — everyone sees content tailored to them. This is typically powered with…
The secret to happy UX, according to a legendary game designer - Fast CompanyFeb 8, 2022
The famous rhythm game Lumines is back, and it's a reminder of where things went wrong.
15 reasons why grid approach will improve your designFeb 8, 2022
Master the use of grids and do wonders with your designs.
How to Use Tooltips as MicrointeractionsFeb 8, 2022
They’re generally very helpful, clear-cut in their communication, and unobtrusive, so users can do what the tooltips suggest without running into any impediment.Looked at in this way, your average tooltip is easily a micro interaction, as it helps users achieve a single task or helps users…
Creating animations with uikit caFeb 8, 2022
Free UX tools - UXMFeb 8, 2022
Over 50 great free UX tools, including tools to help with prototyping, design, user research, user testing, surveys, card sorting, annotating, screen grabbing, sitemapping, analytics and accessibility.
Redesigning the Boarding Pass - Journal - Boarding Pass / FailFeb 7, 2022
This is the actual boarding pass I got from Delta. It's a nightmare. Note all the random alignment...
UI-Patterns.comFeb 7, 2022
User Interface Design Pattern Library. UI patterns for web designers. See screenshot examples and learn how to do great design like the pros.
10 Great Sites for UI Design PatternsJan 29, 2022
We’ve put together a list of some of the best places to find UI design patterns on the web—so you don’t have to spend your whole life redesigning the wheel.
2019 UI and UX Design Trends | Shakuro | ShakuroJan 29, 2022
The year 2019 is promising a lot of new discoveries in UI/UX design. The trends created last year will unlock their real potential with technology behind design
Building Your Color Palette - Refactoring UIJan 29, 2022
Learn how to design awesome UIs by yourself using specific tactics explained from a developer's point-of-view.
Figma-Linux/figma-linux: Figma is the first interface design tool based in the browser, making it easier for teams to create software. Join us in https://t.me/figma_linuxJan 29, 2022
Figma is the first interface design tool based in the browser, making it easier for teams to create software. Join us in https://t.me/figma_linux - Figma-Linux/figma-linux
It’s time to do away with the UX disciplineJan 29, 2022
The business world has accepted the idea that innovation can come from anywhere; it now needs to understand that user experience must come from everywhere.
The 3 Laws of LocalityJan 29, 2022
Where to put controls in your UI designs · Conceptual and physical areas of the interface · Styling controls that are distant from what they control
Feature design checklistJan 29, 2022
Questions that ensure you consider e̶v̶e̶r̶y̶t̶h̶i̶n̶g̶ a few things when designing a new feature.
10 UX lessons I learned building my product from scratchJan 29, 2022
So you like our media brand Growth Quarters? You should join our Growth Quarters event track at TNW2020, where you’ll hear how the most successful founders kickstarted and grew their companies. This article was originally published by Buil
How to design better buttonsJan 29, 2022
A button is an interactive element that results in the action described on it. If it says “save” on a button, clicking it will most likely “save” something. It’s also one of the most important interactive elements of any digital product. It
Tailwind UI - Official Tailwind CSS Components & TemplatesJan 29, 2022
Beautiful UI components and templates by the creators of Tailwind CSS.
Weber’s Law - NeuroLogica BlogJan 29, 2022
I confess I have never heard (or at least don't remember ever hearing) about Weber's Law (pronouned vayber) until reading about it with this news item. It is the Law of Just Noticeable Differences. It deals with the minimum difference in a stimulus necessary to notice. While clearly established, and there are many hypotheses to
Example UX docs and deliverables - UXMJan 29, 2022
Need to produce a UX document? Get inspired by these example UX documents and deliverables.
How to adapt your product’s UX for the Chinese marketJan 29, 2022
Did you know TNW’s Couch Conference has a track fully dedicated to exploring new design trends this year? Check out the full ‘Sprint’ program here. Having started MING Labs in China in 2011, we have seen a big development from the old-inter
Access 150,000+ Hours of UX Research & Insights – Baymard InstituteJan 29, 2022
Empower your digital team with instant access to industry-specific UX insights. Improve ROI on your projects and increase confidence in decisions.
18,000+ E-Commerce Design Examples Organized Across 62 Page Types – Baymard InstituteJan 29, 2022
Every single one of the 18,000+ screenshots is annotated with highlights of UX “violations” and “adherences” (i.e. what the page design does well from a UX perspective, and what it does poorly).
The ultimate guide to proper use of animation in UXJan 29, 2022
Nowadays it’s hard to impress or even surprise with an interface animation. It shows interactions between screens, explains how to use the…
Scarcity in UX: The psychological bias that became the normJan 29, 2022
Short analysis on the current state of affairs and a few tips to keep in mind.
https://asktog.com/atc/the-third-user/Jan 29, 2022
250 Top E-Commerce Sites Ranked by User Experience Performance – Baymard InstituteJan 29, 2022
See the ranked UX performance of the 250 leading e-commerce sites in the US and Europe. The chart summarizes 50,000+ UX performance ratings.
Good UX = Boring UI. Don't Be Creative – UX EngineerJan 29, 2022
The best user experiences are often found on the most boring interfaces. If you want your product to stand out above the rest, then be average.
A beginner’s guide to kerning like a designerJan 29, 2022
In this article, we talk about the definition of kerning and its importance in design. Learn more about kerning here, and start kerning like a pro!
7 Best Figma Tutorials for Beginners [2024 SEP]— Learn Figma OnlineJan 29, 2022
Learn Figma for UI/UX Design with the best Figma tutorials for beginners in 2024.
7 Rules for Creating Gorgeous UI (Part 2)Jan 29, 2022
A guide to visual aesthetics, written by a nerd
Responsive Images - A Reference Guide from A to ZJan 29, 2022
Chapter 1 - What is responsive images? In this guide, we will learn everything related to...
Eight Habits of Expert Software Designers: An Illustrated GuideJan 29, 2022
The best designers employ specific habits, learned practices, and observed principles when they work. Here are a few of them.
Patterns | GoodUIJan 29, 2022
The Experience EconomyJan 29, 2022
SAP’s acquisition of Qualtrics shows how the shift in technology has changed business; it is a perfect example of using the Internet to one’s advantage.
10 open source SVG icon libraries that you can use for your next project - Themesberg BlogJan 29, 2022
Read more about these top 10 open source and free SVG powered icon libraries that you can use for your next project
How to run an heuristic evaluation - UX MasteryJan 29, 2022
The advantages and disadvantages of heuristic evaluation plus step by step instructions for running a successful inspection of your design's usability.
UX Crash Course: User PsychologyJan 29, 2022
My mission for 2014 was to get more people started in User Experience (UX) Design. In January, hundreds of thousands of people did the original UX Crash Course and it was translated into Spanish, Portuguese and Korean by amazing volunteers. In May we continued with a User Psychology lesson every day.
If you Run a Small Business Park In the Back of the Parking LotJan 29, 2022
As a rule of thumb business owners should be primarily focused on delighting their customers in any way possible. Every subtle interaction should be closely optimized for customer enchantment, and a decision as simple as where to park your car can subconsciously attract or detract a customer.
Do We Create Shoplifters? - Unintended ConsequencesJan 29, 2022
The history of technology is one of subtracting humans and replacing them with machines. Do the unintended consequences include creating shoplifters?
Ultimate UI/UX glossary to speak same language with design teamJan 26, 2022
Building a dream UI/UX design for your app is very much about communication with your design team. Here is a list of 57 essential terms.
7 things I wish every search box didJan 23, 2022
It’s one thing to say “let’s have search” and draw a box with a magnifying glass on the right. It’s a whole other task to implement good search.
batoreh/awesome-ux: a awesome list about User Experience disciplinesJan 23, 2022
a awesome list about User Experience disciplines.
Three Ways to Improve Your Design Research with Wordle - Boxes and ArrowsJan 23, 2022
“Above all else show the data.” –Edward Tufte Survey responses. Product reviews. Keyword searches. Forums. As UX practitioners, we commonly scour troves of qualitative data for customer insight. But can we go faster than line-by-line analysis? Moreover, how can we provide semantic analysis to project stakeholders? Enter Wordle. If you haven’t played with it yet, Wordle is a free Java application that generates visual word clouds. It can provide a compelling snapshot of user feedback for analysis or presentation. Using
Explore the Book » Designing Web InterfacesJan 23, 2022
887 ‘Cart’ Design Examples – Baymard InstituteJan 23, 2022
How to design a logo: 15 pro tipsJan 23, 2022
The golden rules of how to design a logo for successful branding, from the idea to implementation.
GoodUIJan 23, 2022
Reach higher conversions faster by repeating what worked for others and avoiding what failed.
robinstickel/awesome-design-principles: ✨ A curated list of awesome design principlesJan 23, 2022
✨ A curated list of awesome design principles.
How to Design a Large Scale Responsive Site | UX BoothJan 23, 2022
In 2011, Elaine McVicar wrote an article describing the process of designing one of the first complex responsive sites. Now that the concept is no longer in its infancy, we're taking another look at how to redesign a large scale responsive site.
Login | FigmaJan 23, 2022
Smart Interface Design Patterns In Your Pocket: Checklist Cards PDF — Smashing MagazineJan 23, 2022
Meet our Smart Interface Design Patterns Checklist Cards, a deck of 100 cards with questions to ask when designing and building any interface component — carousel, hamburger, table, date picker, autocomplete, slider, onboarding, pricing plans, authentication, web forms and many others. Check the preview (PDF) and jump to description ↓
A comprehensive list of UX design methods & deliverablesJan 23, 2022
The most common tool, methods, processes, and deliverables that designers use throughout the digital product design process.
Chapter 2. Who’s using the app? · Usability Matters: Mobile-first UX for developers and other accidental designersJan 23, 2022
Seeing yourself as different · Knowing who the app is for · Understanding how people differ · Appreciating how people use the app
Why Facebook Is Blue: The Science of Colors in MarketingJan 23, 2022
How do colors affect us when we buy things? The latest research reveals the science of colors in marketing and how to use it for your advantage:
Home | Laws of UXJan 23, 2022
Laws of UX is a collection of best practices that designers can consider when building user interfaces.
Atkinson Hyperlegible Font May Be Pretty Good If Your Granny Can't See WellJan 23, 2022
My grandmother approves of Atkinson Hyperlegible free font for her phone book printout
To Truly Delight Customers, You Need Aesthetic IntelligenceJan 23, 2022
Pauline Brown, former chairman of North America for the luxury goods company LVMH, argues that in additional to traditional and emotional intelligence, great leaders also need to develop what she calls aesthetic intelligence. This means knowing what good taste is and thinking about how your services and products stimulate all five senses to create delight. Brown argues that in today’s crowded marketplace, this kind of AI is what will set companies apart — and not just in the consumer products and luxury sectors. B2B or B2C, small or large, digital or bricks-and-mortar, all organizations need to hire and train people to think this way. Brown is the author of the book “Aesthetic Intelligence: How to Boost It and Use It in Business and Beyond.”
Never use the word “User” in your codeJan 23, 2022
You’re six months into a project when you realize a tiny, simple assumption you made at the start was completely wrong. And now you need to fix the problem while keeping the existing system running—with far more effort than it would’ve taken if you’d just gotten it right in the first place. Today I’d like to tell you about one common mistake, a single word that will cause you endless trouble. I am speaking, of course, about “users”. There are two basic problems with this word: “User” is almost never a good description of your requirements. “User” encourages a fundamental security design flaw. The concept “user” is dangerously vague, and you will almost always be better off using more accurate terminology.
Google says Flutter, its open source UI framework, now has nearly 500,000 developers, up 10% month-over-month in March, as it outlines future changesJan 23, 2022
Emil Protalinski / VentureBeat: Google says Flutter, its open source UI framework, now has nearly 500,000 developers, up 10% month-over-month in March, as it outlines future changes
The Obvious UI is Often the Best UIJan 23, 2022
Design clear interactions instead clever ones, and users will follow
http://designinginterfaces.com/patterns/Jan 23, 2022
4 Rules for Intuitive UXJan 17, 2022
Obey the Law of Locality · ABD: Anything But Dropdowns · Pass the Squint Test · Teach by example
Brilliant Barcode DesignsJan 17, 2022
Barcodes are so common and frequent that we do not even notice them anymore. From now on, we’re going to be more attentive to them, because it turns out that sometimes they’re quite brilliant and very creative. h/t: sadnaduseless
8-Point Grid: Vertical RhythmJan 17, 2022
The 8-point grid is a powerful system for creating consistent and visually appealing user interfaces (UIs). This post is about how to establish vertical rhythm and set typography in an 8pt grid...
Great products do less, but betterJan 17, 2022
When feature bloat can hurt more than help your business goals.
SaaS UX design | LyssnaJan 17, 2022
Unlock the growth potential of your SaaS UX design. From reducing churn rates to boosting customer engagement, discover the benefits of great UX design for SaaS. Get inspired by real-life examples and learn best practices from experienced UX practitioners.
Performant Front-end Architecture | DebugBearJan 17, 2022
Make your client-side apps load fast and provide a good user experience.
How to Gather Quantitative Data on User BehaviorsJan 17, 2022
The quantitative methods we used were all time and cost-efficient, demonstrating that user research doesn’t require thousands of dollars and endless time.
6 Customer Journey Map Examples: How UX Pros Do ItJan 17, 2022
What's the best way to learn to create a user journey map? Seeing how experts do it. Get guidelines and examples for journey mapping.
UX Design Psychology Tricks for Design ExcellenceJan 17, 2022
Human brain processes information as well as how it forms certain patterns of behavior. Discover cognitive psychology tips for UX.
Privacy UX: Privacy-Aware Design Framework — Smashing MagazineJan 17, 2022
Many mobile applications require access to location, photos, and even the camera during installation, which isn’t something most customers would be happy to consent to. In this series of articles, Vitaly Friedman talks about privacy-related design patterns. You’ll be exploring some of the respectful ways to approach privacy and data collection, and how to deal with the notorious cookie consent prompts, intrusive push notifications, glorious permission requests, malicious third-party tracking and offboarding experience.
Optimizing Information Design :: UXmattersJan 17, 2022
Web magazine about user experience matters, providing insights and inspiration for the user experience community
Drag–and–Drop: How to Design for Ease of UseJan 17, 2022
Clear signifiers and clear feedback at all stages of the interaction make drag–and–drop discoverable and easy to use.
Creating a UX Design Style Guide :: UXmattersJan 17, 2022
Web magazine about user experience matters, providing insights and inspiration for the user experience community
5 Ways to Boost Engagement With AnimationJan 17, 2022
Used correctly, it can capture audience attention, make your website more engaging, and even improve your chances of delivering conversions for your clients.Unfortunately, like many things in the web design world, it’s also easy to get too carried away with animation. As professional designers and…
Mobile-App Onboarding: An Analysis of Components and TechniquesJan 17, 2022
Onboarding is the process of getting users familiar with a new interface. It can involve one or more of the following components: feature promotion, customization, and instructions.
User Experience Careers: What a Career in UX Looks Like TodayJan 17, 2022
Free Nielsen Norman Group report on UX professionals' career experience and what a career in UX looks like today.
UX Guidelines for Ecommerce Product PagesJan 17, 2022
Customers shopping online rely on product pages to decide what to buy. Help them by answering questions, enabling comparison, providing reviews, and facilitating the purchase process.
Readability Formulas: 7 Reasons to Avoid Them and What to Do Instead :: UXmattersJan 17, 2022
Web magazine about user experience matters, providing insights and inspiration for the user experience community
Front-End Performance Checklist 2021 (PDF, Apple Pages, MS Word) — Smashing MagazineJan 17, 2022
Let’s make 2021... fast! An annual front-end performance checklist, with everything you need to know to create fast experiences on the web today, from metrics to tooling and CSS/JavaScript techniques.
How to Create Better Alerts and Symbols in Your Designs :: UXmattersJan 17, 2022
Web magazine about user experience matters, providing insights and inspiration for the user experience community
Designing for Progressive Disclosure :: UXmattersJan 17, 2022
Web magazine about user experience matters, providing insights and inspiration for the user experience community
Split Buttons: DefinitionJan 17, 2022
A split button is a dual-function menu button that offers a default action as well as the possibility of choosing a different action by selecting from a set of alternatives.
Molding Yourself into a Leader, Part 1 :: UXmattersJan 17, 2022
Web magazine about user experience matters, providing insights and inspiration for the user experience community
Designing Card-Based User Interfaces — Smashing MagazineJan 17, 2022
Today, people seek out information quickly, and cards serve it up well, regardless of device. Most of you probably have a better understanding why card-style design is so popular and will continue to increase in popularity. This trend won’t end anytime soon. Cards are here to stay and continue to be an essential part of app design. In this article, Nick Babich will explain what cards mean to UI designers, and he'll review three popular card-based services.
What Parallax LacksJan 17, 2022
Parallax-scrolling effects add visual interest, but they make content slow to load or hard to read. Consider if the benefits are worth the cost.
Great Wireframe ExamplesJan 17, 2022
yEd Graph EditorJan 17, 2022
yEd is a free desktop application to quickly create, import, edit, and automatically arrange diagrams. It runs on Windows, macOS, and Unix/Linux.
Cognitive Maps, Mind Maps, and Concept Maps: DefinitionsJan 17, 2022
Cognitive maps, concept maps, and mind maps are diagramming techniques that can be utilized throughout the UX process to visualize knowledge and surface relationships among concepts.
Book Review: The Lean Product Playbook :: UXmattersJan 17, 2022
Web magazine about user experience matters, providing insights and inspiration for the user experience community
7 Ecommerce UX Tips That Drive Sales :: UXmattersJan 17, 2022
Web magazine about user experience matters, providing insights and inspiration for the user experience community
Different Information-Seeking Tasks: Behavior Patterns and User ExpectationsJan 17, 2022
Fact-finding tasks were less memorable, while complex research-based tasks required more effort from users. Top user expectations for each task type varied.
'The most effective technology is technology that no one sees': Lowe's CEOJan 17, 2022
Coming out of a banner year, Marvin Ellison discusses how initiatives put in place years ago contributed to the retailer's success.
Design Principles: Space And The Figure-Ground Relationship — Smashing MagazineJan 17, 2022
Design is an arrangement of both shapes and space. Learn to see the shapes that space forms and how space communicates. This is second part of a series on design principles for beginners. The first part covered an introduction to gestalt; today Steven Bradley will build on those gestalt principles and show you how many of the fundamental principles you work with as designers have their origin there. Make an effort to spend time observing how space is used in design!
Design Principles – An Introduction to Visual Hierarchy | Toptal®Jan 17, 2022
The theory of visual hierarchy is different from its practical application. More advanced concepts of visual perception are worth exploring because their mastery is key for great visual design. #ui #ux #design
Usability Testing 101Jan 17, 2022
UX researchers use this popular observational methodology to uncover problems and opportunities in designs.
10 Ways to Use Exit-Intent Popups for GoodJan 17, 2022
Exit intent popups can provide a good customer experience and offer benefits to users who are about to leave a website.
Storybook TutorialsJan 17, 2022
Learn how to develop UIs with components and design systems. Our in-depth frontend guides are created by Storybook maintainers and peer-reviewed by the open source community.
The User Experience of Public Bathrooms [APRIL FOOLS]Jan 17, 2022
Public restrooms are plagued by unusable toilet-paper dispensers, difficult flushing controls, and poor stall-status visibility. Many of these issues can be addressed by following standard usability practices.
The Authority PrincipleJan 17, 2022
A perceived high-authority status of the person making a request can make people more compliant with that request. Applying this principle in UX can ease users' decision-making process.
Privacy UX: Better Notifications And Permission Requests — Smashing MagazineJan 17, 2022
With so many applications and services and people and machines and chatbots fighting for our attention, staying focused is a luxury that needs to be savored and protected, and so no wonder notifications don’t enjoy a decent reputation these days. More than that, often they feel off the point and manipulative, too. In this series of articles, Vitaly Friedman will talk about privacy-related design patterns. He’ll be exploring some of the respectful ways to approach privacy and data collection, and how to deal with those notorious cookie consent prompts, intrusive push notifications, glorious permission requests, malicious third-party tracking and offboarding experience.
uxbox.io - Domain Name For Sale | Dan.comJan 17, 2022
I found a great domain name for sale on @undeveloped. Check it out!
Frictionless UX: How to Create Smooth User FlowsJan 17, 2022
As designers and developers, it’s beneficial to familiarize yourself with methods that allow you to create frictionless interactions.In this article, I’ll analyze steps in user flow that often cause friction and propose solutions on how to optimize them. In this product, interactions are intuitive,…
12 Best Free UX/UI Prototyping Tools for Web/App Designers in 2020 - noupeJan 17, 2022
A good prototyping tool can not only bring your design idea into life with ease. It also helps you to test, demonstrate, iterate and share your design
Landing Pages: The Complete Guide to Effective UX DesignJan 17, 2022
A guide for helping designers and developers build landing pages that convert visitors to customers and customers to brand advocates.
Executing UX Animations: Duration and Motion CharacteristicsJan 17, 2022
Define a trigger, transformations, duration, and easing of the animation, and be mindful of accessibility issues and annoying the user.
Capture Attention Through Color Psychology :: UXmattersJan 17, 2022
Web magazine about user experience matters, providing insights and inspiration for the user experience community
Understanding Cultures :: UXmattersJan 17, 2022
Web magazine about user experience matters, providing insights and inspiration for the user experience community
How Color Impacts UXJan 17, 2022
Color impacts everything from how a user feels when they interact with a design, to how they use the design, to whether they can fully see and understand it. Quite simply, color is a lot more than a decorative tool; color is central to user experience.
Button Design – Get Site Visitors to Actually Click Your ButtonsJan 17, 2022
Buttons are one of the most common UI elements making it possible for users to interact with apps and sites, and take action.
Designing for Touch :: UXmattersJan 17, 2022
Web magazine about user experience matters, providing insights and inspiration for the user experience community
Creating Low-Fidelity or High-Fidelity Prototypes, Part 2 :: UXmattersJan 17, 2022
Web magazine about user experience matters, providing insights and inspiration for the user experience community
W3Schools.comJan 17, 2022
W3Schools offers free online tutorials, references and exercises in all the major languages of the web. Covering popular subjects like HTML, CSS, JavaScript, Python, SQL, Java, and many, many more.
How to Create a Wireframe? Step-by-Step Guide + ExamplesJan 17, 2022
Read about creating a wireframe for digital products. Learn the exact stepsand see the benefits of starting design with wireframing.
Animation for Attention and ComprehensionJan 17, 2022
Motion is a powerful tool to attract users’ attention. When designing an animation consider its goal, its frequency of occurrence, and its mechanics.
Creepiness–Convenience TradeoffJan 17, 2022
As people consider whether to use the new "creepy" technologies, they do a type of cost-benefit analysis weighing the loss of privacy against the benefits they will receive in return.
Change Blindness in UX: DefinitionJan 17, 2022
Significant changes in a web page can remain unnoticed when they lack strong cues, due to the limitations of human attention.
Design Psychology and the Neuroscience of Awesome UX | Toptal®Jan 17, 2022
Human cognition is complex, and many factors play into instant impressions. Design psychology is coming to the forefront as more and more companies are using neuroscience to design better user experiences. Great user experience design isn’t magic—it’s science.
The Dangers of OverpersonalizationJan 17, 2022
Too much personalization leads to homogeneous experiences for users and can generate content fatigue and lack of diversity.
What You Need to Know About Negotiating Design Ideas with Skeptical CustomersJan 17, 2022
A fully interactive prototype created in UXPin can reduce confusion on expectations as both you and the customer are visualizing the same end product.
The Critical Incident Technique in UXJan 17, 2022
The CIT is a research method for systematically obtaining recalled observations of significant events or behaviors from people who have first-hand experience.
Similarity Principle in Visual DesignJan 17, 2022
Design elements that appear similar in some way — sharing the same color, shape, or size — are perceived as related, while elements that appear dissimilar are perceived as belonging to separate groups.
Visual Design: GlossaryJan 17, 2022
Use this glossary to quickly clarify key terms and concepts related to visual design.
Crafting a UX Portfolio :: UXmattersJan 17, 2022
Web magazine about user experience matters, providing insights and inspiration for the user experience community
Creating Low-Fidelity or High-Fidelity Prototypes, Part 1 :: UXmattersJan 17, 2022
Web magazine about user experience matters, providing insights and inspiration for the user experience community
UX Design — Smashing MagazineJan 17, 2022
User Experience (UX) Design is the process of creating experiences that aren't just attractive to look at, but that also work well for our users. In this guide we round up some of the articles on Smashing that can help you to create beautiful sites and applications that also help people to get things done.
8 Design Guidelines for Complex ApplicationsJan 17, 2022
Despite great diversity in the workflows and end users supported by complex applications, these 8 design guidelines are generally applicable.
7 Ways to Analyze a Customer-Journey MapJan 17, 2022
Evaluate your journey map to identify low and high points, failures to set expectations, unnecessary or too long steps, channel transitions, and moments of truth. Use this information to find opportunities for improving the journey.
How to Leverage Thematic Analysis for Better UX | Toptal®Jan 17, 2022
Thematic analysis, an approach used to analyze qualitative data, is central to credible research and can be used to improve UX design by uncovering user needs, motivations, and behaviors. #Research #Product #Design #UX #Web #B2B
The Role Of Storyboarding In UX Design — Smashing MagazineJan 17, 2022
UX designers use a lot of different research techniques, such as interviews and workshops. They summarize research findings into user stories and user flows and communicate their thinking and solutions to the teams. But somewhere in all of this, there are real people for whom the products are being designed for. In order to create better products, designers must understand what’s going on in the user’s world. And that’s where storyboards come in. In this article, Nick Babich will focus on storyboards as a means to explore solutions to UX issues, as well as to communicate these issues and solutions to others.
Vanity Metrics: Add Context to Add MeaningJan 17, 2022
Tracked analytics metrics should reflect change in the user experience. Vanity metrics appear impressive, but their fluctuations are not actionable.
UI Animation – All You Need to Know and ExamplesJan 17, 2022
Are you using UI animation to make your products exciting and accessible? Draw inspiration from these four UI animations.
The Role of Animation and Motion in UXJan 17, 2022
Animation in UX must be unobtrusive, brief, and subtle. Use it for feedback, state-change and navigation metaphors, and to enhance signifiers.
UI Design Best Practices for Better Scannability | Toptal®Jan 17, 2022
Sixty percent of first-time visitors leave a website in less than fifteen seconds. Yet, there is an often overlooked usability factor that improves visitor retention—scannability. These UI design tips for using research, science, and strategy to layout content help convert short-term visitors to long-lasting users.
Front-End Performance Checklist 2021 (PDF, Apple Pages, MS Word) — Smashing MagazineJan 17, 2022
Let’s make 2021... fast! An annual front-end performance checklist, with everything you need to know to create fast experiences on the web today, from metrics to tooling and CSS/JavaScript techniques.
Using Cognitive Psychology in UX Design: What to Know - noupeJan 17, 2022
Even if a website is spotless from the UI viewpoint, it could still deliver poor user experiences. Apart from their technical knowledge, UX developers
Sympathy vs. Empathy in UXJan 17, 2022
The majority of UX professionals practice sympathy instead of empathy for their users.
Web Layout Best Practices – 12 Timeless UI Patterns | Toptal®Jan 17, 2022
What makes a web UI pattern timeless? Adherence to web layout best practices that result in a combination of user-friendliness and adaptability to changing trends and technology. #design #ui #design #ux #web #product
The Paradox of Intelligent Assistants: Poor Usability, High AdoptionJan 17, 2022
Frequent users of Siri, Alexa, and Google Assistant report attempting low-complexity tasks such as simple fact retrievals, weather forecast, navigation, playing music, setting timers.
Benchmarking UX: Tracking MetricsJan 17, 2022
Quantitatively evaluate a product or service’s user experience by using metrics to gauge its relative performance against a meaningful standard.
Good UX: What I Learned While Working in RestaurantsJan 17, 2022
Good UX has great customer service at its base. Restaurants provide many instructive examples for designers.
User-Experience Quiz 2023Jan 17, 2022
Test your usability knowledge by taking our quiz. All questions and answers are based on articles that we published last year.
The Lawn Mower Eyetracking Pattern for Scanning Comparison TablesJan 17, 2022
Users are likely to methodically scan comparison tables row by row, from right to left and back again.
The 6 UX Methods That Proved to Be Effective in Driving ResultsJan 17, 2022
Experimenting with creative UX methods. Creativity plays an important role, but your designs must drive results to make products successful.
In Defense of Post-itsJan 17, 2022
Sticky notes strengthen team dynamics and represent an egalitarian, concise means for expressing ideas in UX design projects.
Learnability in UX DesignJan 17, 2022
Building a learnable website is much tougher than it sounds.One thinks one’s design is clear and comprehensible; however, a design that might be obvious for you, might be perceived totally different by a user with a different set of experiences. Therefore, the goal is to design a clear user path…
Navigating Ambiguity :: UXmattersJan 17, 2022
Web magazine about user experience matters, providing insights and inspiration for the user experience community
Book Review: The Jobs To Be Done Playbook :: UXmattersJan 17, 2022
Web magazine about user experience matters, providing insights and inspiration for the user experience community
Dot Voting: A Simple Decision-Making and Prioritizing Technique in UXJan 17, 2022
By placing colored dots, participants in UX workshops, activities, or collaborative sessions individually vote on the importance of design ideas, features, usability findings, and anything else that requires prioritization.
Journey Mapping 101Jan 17, 2022
A journey map is a visualization of the process that a person goes through in order to accomplish a goal.
How To Deliver A Successful UX Project In The Healthcare Sector — Smashing MagazineJan 17, 2022
UX researchers can learn a lot from hospital patients through empathetic interviews — but that alone is not enough. Instead, you need to pay particular attention to how your users’ clinical context influences their perceptions, trust, and the care they receive. If you are a UX researcher about to embark on a project with hospitalized patients and you want to avoid missing out on deep concerns and problems of users, then maybe this article can help you strengthen your awareness for particular challenges of clinical UX.
UX Guidelines for Ecommerce Homepages, Category Pages, and Product Listing PagesJan 17, 2022
Streamline users’ path to products by providing clear, differentiating product information at all levels — from the homepage to product listing pages.
3 Persona Types: Lightweight, Qualitative, and StatisticalJan 17, 2022
For most teams, approaching persona creation qualitatively is the right balance of effort vs. value, but very large or very small organizations might benefit from statistical or lightweight approaches, respectively.
Better Link Labels: 4Ss for Encouraging ClicksJan 17, 2022
Specific link text sets sincere expectations and fulfills them, and is substantial enough to stand alone while remaining succinct.
Cognitive Mapping in User ResearchJan 17, 2022
In cognitive mapping sessions, users are asked to produce a visual representation of their mental models. Cognitive mapping guides conversation and acts as a facilitation aid.
‘Our Users Are Everyone’: Designing Mass-Market Products for Large User AudiencesJan 17, 2022
Even if your target demographics are very broad, you should still identify specific groups of users within that audience to use for UX research and design.
Artificial Intelligence, Supervised Learning, and User Experience :: UXmattersJan 17, 2022
Web magazine about user experience matters, providing insights and inspiration for the user experience community
Top books, movies, and series recommended by designers in 2019Jan 17, 2022
Here’s a list of great books, movies, and tv series that designers liked in 2019. It’s probably not the most objective, but surely very interesting.
Design Principles: Compositional Flow And Rhythm — Smashing MagazineJan 17, 2022
Compositional flow determines how the eye is led through a design: where it looks first, where it looks next, where the eye pauses, and how long it stays. You have a lot of control over where people look when they’re viewing a webpage you’ve designed. On a text-heavy and graphic-light page, a visitor’s eye likely follows something like a Z-pattern or F-pattern across and down the page. However, as soon as you design page elements and add graphics, those patterns no longer apply. Your visitor’s eye will follow the flow, movement and rhythm you create.
The Complete Guide to UX Research Methods | Toptal®Jan 17, 2022
UX research provides invaluable insight into what people need and value. Not only will UX research reduce the risk of a wrong guess, but it’ll also uncover new opportunities for innovation. #ux #uxresearch #ProductDesign
Discussion Guide Gaffes and How to Fix Them :: UXmattersJan 17, 2022
Web magazine about user experience matters, providing insights and inspiration for the user experience community
Hick’s Law: Making the choice easier for usersJan 17, 2022
Use Hick’s Law to examine how many functions you should offer at any part of your website & how this will affect your users’ overall approach to decision making.
What is Change Blindness in UX Design - noupeJan 17, 2022
When researchers carry out usability testing, they have often observed that users overlook a change on the screen otherwise considered obvious and highly
Design Principles: Visual Weight And Direction — Smashing MagazineJan 17, 2022
Visual direction is the perceived direction of forces acting on and exerted by elements. A visually heavy element will attract the eye to it. The direction is a cue to the viewer’s eye to move elsewhere. We refer to this force as visual weight and to the perceived direction of visual forces as visual direction. Both are important concepts to understand if you want to create hierarchy, flow, rhythm and balance in your composition. Many intrinsic characteristics can be modified to make an element visually weightier or lighter.
Avoid PDF for On-Screen ReadingJan 17, 2022
Forcing users to browse PDF files causes frustration and slow task completion, compared to standard webpages. Use PDF only for documents that users will print. In those cases, following 10 basic guidelines will minimize usability problems.
Is The F-Pattern Still Relevant in Web Design?Jan 17, 2022
When we refer to patterns like the F-pattern, Gutenberg layout, or layer-cake pattern in web design, what we’re talking about is how readers scan the content on a page. As you can see from these eye-tracking studies from NNG, the F-pattern isn’t always an explicit “F” shape.Instead, it refers to a…
Lessons on Visualization from the Industrial Environment :: UXmattersJan 17, 2022
Web magazine about user experience matters, providing insights and inspiration for the user experience community
Login Walls Stop Users in Their TracksJan 17, 2022
Demanding that users register or log in before they can use an app or see website information has high interaction cost and defies the reciprocity principle.
Spatial Memory: Why It Matters for UX DesignJan 17, 2022
With repeated practice, users develop imprecise memory of objects and content in a UI, but still need additional visual and textual signals to help them find a specific item.
10 Tips for Building a Visual LanguageJan 17, 2022
A visual language is just like any other form of communication. Elements from color to style to type of photos or illustrations establish what a brand or company is. A visual language includes both the written and spoken elements of a website or brand, as well as every design technique, photo,…
How to Film and Photograph for Usability: UX Details for Videos and ImagesJan 17, 2022
Consider how your audience will be using the visuals to determine the optimal camera angle, set the right tone, choose the right props, and maintain attention.
Front-End Performance Checklist 2021 (PDF, Apple Pages, MS Word) — Smashing MagazineJan 17, 2022
Let’s make 2021... fast! An annual front-end performance checklist, with everything you need to know to create fast experiences on the web today, from metrics to tooling and CSS/JavaScript techniques.
7 Steps to Benchmark Your Product’s UXJan 17, 2022
Benchmark your UX by first determining appropriate metrics and a study methodology. Then track these metrics across different releases of your product by running studies that follow the same established methodology.
Building Narrative into Your User Interface, Part 2 :: UXmattersJan 17, 2022
Web magazine about user experience matters, providing insights and inspiration for the user experience community
How Lorem Ipsum Kills Your DesignsJan 17, 2022
It’s tempting to add Lorem ipsum to early designs. Unfortunately, this can create more problems than it solves. UXPin helps you avoid this.
Remote Moderated Usability Tests: How to Do ThemJan 17, 2022
The key to good remote moderated testing is to be thoroughly prepared and organized. Follow these 7 steps to ensure your study’s success.
Design Principles: Visual Perception And The Principles Of Gestalt — Smashing MagazineJan 17, 2022
Gestalt principles are important to understand. They sit at the foundation of everything we do visually as designers. They describe how everyone visually perceives objects. This article is part of a new series about design principles that can serve both as a refresher for seasoned designers and reference for newcomers to the industry. Hopefully, the content covered here isn't too obvious and self-explanatory, but it's always great to have a nice quick refresher every now and again, isn't it?
Design Principles: Dominance, Focal Points And Hierarchy — Smashing MagazineJan 17, 2022
Emphasis is relative. For one element to stand out, another has to serve as the background from which the first is to stand out. Some elements need to dominate others in order for your design to display any sort of visual hierarchy. By varying the visual weight of some elements and the visual direction of others, you can establish different levels of dominance. Three levels is ideal; they’re all that most people can discern. Designing different levels of emphasis or dominance will create a visual hierarchy in your design, with more important information being more visually prominent. It will help you communicate with visitors quickly and efficiently.
Design Principles: Connecting And Separating Elements Through Contrast And Similarity — Smashing MagazineJan 17, 2022
Showing that some things are the same and some are different is the first step in visual communication. It’s the primary way that viewers derive meaning. Contrast and similarity have different functions. They are used in varying degree and in combination. You’ll always see some of both because neither exists without the other. Changing one means also changing the other. They are clues to design elements. The goal is to contrast similar layers. The way we structure contrasting and similar elements creates hierarchy, flow and compositional balance.
Smart Interface Design Patterns Checklists PDF — Smashing MagazineJan 17, 2022
Announcing a set of checklists to help you create smart interface design patterns. Totally free if you sign up for our friendly newsletter. These checklists are based on the work Vitaly has been doing for many years, exploring and examining examples of desktop and mobile interfaces. Learning what works and what doesn’t in usability tests and user interviews.
Applying UX-Workshop Techniques to the Hiring ProcessJan 17, 2022
Create an effective hiring process by borrowing techniques used in UX workshops.
Bootcards - Nền tảng Framework UI dạng card dựa trên BootstrapJan 16, 2022
Bootcards- UI Framework được xây dựng dựa với mục đích áp dụng những template dạng thẻ cho các yếu tố thành phần của thiết kế website
7 Practical Tips for Cheating at DesignJan 16, 2022
Improving your designs with tactics instead of talent.
Coolors - The super fast color palettes generator!Jan 16, 2022
Generate or browse beautiful color combinations for your designs.
User Onboarding: Principles and GuidelinesJan 12, 2022
Web magazine about user experience matters, providing insights and inspiration for the user experience community
5 UX Tricks You Must Know in 2022Jan 9, 2022
Do you have what it takes to be an outstanding UX Developer in 2022? Add these tricks to your arsenal...
54 years ago, a computer programmer fixed a massive bug — and created an existential crisisJan 7, 2022
A blinking cursor follows us everywhere in the digital world, but who invented it and why? From block printing to the Apple II, this is the forgotten history of the blinking cursor
Useful UX Guidelines, Tools And ResourcesDec 23, 2021
A meaningful user experience is what can set your site apart from others. But what makes an experience truly meaningful? And how to achieve that? The tools, tips, and resources in this post not only help you to come up with a UX strategy that works for you and your team but also to circumvent potential UX pitfalls.
UX ToolsDec 23, 2021
Product design mastery in one weekly e-mail. Practical lessons, resources and news in just 5 minutes a week.
1000+ Free HTML Website Templates (2024) - HTML TemplatesDec 15, 2021
The ultimate showcase of the best high-quality free HTML website templates on the internet. Free Download without registration!
9 tips to get bare minimum of web accessibilityDec 14, 2021
Making an accessible site means making it for ‘almost’ everyone. And the good news is that its very easy to make an acceptably accessible…
colors.lol - Overly descriptive color palettesDec 14, 2021
A fun way to discover interesting color combinations.
Recognize Strategic Opportunities with Long-Tail DataDec 12, 2021
Be a strategic thinker by recognizing opportunities at scale with seemingly small and insignificant data.
UI EventsDec 11, 2021
The Vinyl Renaissance: Take Those Old Records Off the ShelfNov 29, 2021
If listeners today can stream just about any song they want, why are so many music aficionados still buying records? Ryan Raffaelli and Gold Rush Vinyl CEO Caren Kelleher discuss the resurgence of vinyl.
The end of “click to subscribe, call to cancel”? One of the news industry’sNov 17, 2021
Most U.S. news organizations won't let readers cancel online. The Federal Trade Commission wants that to change.
5 Prioritization Methods in UX RoadmappingNov 14, 2021
The best prioritization method depends on project context, team culture, and success criteria.
DesignOps: Study GuideNov 14, 2021
Unsure where to start? Use this collection of links to our articles and videos to learn about the components of DesignOps and get started implementing DesignOps activities.
White Label Designs – All About Implementation, Design Systems, and New TecOct 15, 2021
Building white label products is more profitable than starting a new design every time. Learn how to properly implement white labelling.
Web UI Best Practices: UI Design from the ExpertsOct 11, 2021
Learn techniques from visual design, interface design, and UX design. Web UI is analyzed from over 33 companies.
17 Useful UX and UI Design ToolsSep 28, 2021
User experience and user interface tools can help with every stage of website and mobile-app design — from early whiteboard brainstorming to testing your prototype with end-users. Here is a list of useful UX and UI design tools.
60 Awesome UI and UX resources for Developers and Designers 2021Aug 3, 2021
Yearning organizers, genuine solopreneurs, and sprouting visual creators all need a convincing...
What is an Affinity Diagram and How It Can Help YouJul 25, 2021
Affinity diagrams are especially helpful in the design process. See how this method can help you organize and plan product ideas.
Designing the Smallest Possible ThingJul 24, 2021
If designers want to get more agile, they should learn how to make small things, get feedback and embrace experimentation, iteration and refactoring.
HTML Line Spacing: The Fine Line Between Good and Bad UX DesignJul 13, 2021
HTML line spacing matters in UX design. Read all you need to know about line height and how it can help your UX.
How to Draw a Wireframe (Even if You Can’t Draw)Jun 20, 2021
Even people with limited drawing abilities can learn to sketch a wireframe if they learn a few common conventions used to represent various design elements.
The UX of video game tutorials. What decisions a designer will run into… |Jun 19, 2021
What decisions a designer will run into while designing learning experiences.
4 Testimonial Page Examples for UX/UI DesignJun 5, 2021
In these testimonial page examples, you’ll see how UX designers help clients provide social proof for their products and services.
The Expanse UI Design — HUDS GUISMay 26, 2021
Here’s a look at the various FUI designs from the sci-fi series The Expanse . Special thanks to Brian Benton who suggested this and provided some great links as well! A lot of the images have been collected from this massive image dump from drainsmith and further below we have some insights and
10 Useful UI/UX Design Articles for UX PractitionersMay 18, 2021
As a designer, you never stop learning and these UX/UI articles are perfect for staying up to date on the latest in the design world.
Three Levels of Pain Points in Customer ExperienceMay 17, 2021
Pain points are problems that occur at the different levels of the customer experience: interaction level, customer-journey level, or relationship level.
chart-doctor/README.md at master · ft-interactive/chart-doctorMay 13, 2021
Sample files to accompany the FT's Chart Doctor column - Financial-Times/chart-doctor
Aspect Ratios: All You Need to KnowMay 11, 2021
Learn all about aspect ratios in UX/UI design, including how they affect images, videos, and responsive layouts across devices.
The Psychology behind Data Visualization TechniquesMay 9, 2021
A short excursion into the world of human visual information processing
Taxonomies: Connecting Users to ContentApr 8, 2021
Taxonomies may be thought of as hierarchies of categories to group and organize information to be found when browsing, or as a structured set of terms used to tag content so that it can be retrieved efficiently and accurately. Sometimes the same taxonomy may serve both purposes, and sometimes two different taxonomies are used, one for each purpose, for the same content or site. Taxonomies are not new, in fact there has been a lot written about them, including an
Overlay Fact SheetApr 5, 2021
Sticky Headers: 5 Ways to Make Them BetterApr 4, 2021
Persistent headers can be useful to users if they are unobtrusive, high-contrast, minimally animated, and fit user needs.
Dark patterns, the tricks websites use to make you say yes, explainedApr 2, 2021
How design can manipulate and coerce you online
Font size is useless; let’s fix it @ tonsky.meApr 1, 2021
What happens when you set fontSize: 32 in your favorite editor
Benefits of Using a Random Name GeneratorMar 20, 2021
Do you need to make a prototype for a website or app? The effectiveness of these random name generator benefits may surprise you.
15 Psychology Principles Every Designer Should KnowMar 18, 2021
As a web designer, you’re not really in the business of building websites that your clients will love. I know that may seem counterintuitive, but think about how vast the differences often are between your clients’ personal aesthetics and what actually works to turn visitors into customers.
A Thread from @Tocelot: "The best apps today are games in disguise @calm @tMar 15, 2021
Get a selection of good threads from Twitter every day
Speed Is the Killer FeatureMar 2, 2021
Teams consistently overlook speed. Instead, they add more features (which ironically make things slower). Products bloat over time and performance goes downhill.
11 Easy UI Design Tips for Web DevsFeb 17, 2021
Whilst learning web development, most of us don’t have much design experience or access to a UI desig...
Top Product Management and UX Articles of 2020Dec 22, 2020
These were my favorite product management and UX articles of 2020, which is the 5th year I’ve compiled this list. Though 2020 was a…
[Infographic] The Periodic Table of UX ElementsDec 10, 2020
140 votes, 14 comments. 177K subscribers in the ProductManagement community. Product Management
Want to ditch Pinterest? Here are the best alternatives for visual inspiratNov 3, 2020
If the recent discrimination allegations against Pinterest are leaving you uninspired (if not quesy), here are some great alternatives.
Designing Mobile TablesAug 10, 2020
Web magazine about user experience matters, providing insights and inspiration for the user experience community
Salience: The psychology of an experience you can’t ignoreJun 1, 2020
Customers can’t buy from a brand they don’t notice
Salience: The psychology of an experience you can’t ignore | UX MagazineMay 27, 2020
Customers can’t buy from a brand they don’t notice
The Baymard Institute: A glorious, evidence-based trove of UX best practicesApr 21, 2020
What’s so great about Baymard and why aren’t there more organizations on the same level?
Ask a researcher: How do needs drive intent?Feb 19, 2020
Consumer needs spark consumer journeys. How can marketers identify those needs and address them? The latest consumer research from Google will help.
Study of Over 11,000 Online Stores Finds 'Dark Patterns' on 1,254 sitesDec 23, 2019
A large-scale academic study that analyzed more than 53,000 product pages on more than 11,000 online stores found widespread use of user interface "dark patterns" -- practices meant to mislead customers into making purchases based on false or misleading information. from a report: The study -- prese...
Design Psychology and the Neuroscience of Awesome UX | ToptalAug 30, 2019
Human cognition is complex, and many factors play into instant impressions. Design psychology is coming to the forefront as more and more companies are using neuroscience to design better user experiences. Great user experience design isn’t magic—it’s science.
How to use data in user research when you have no web analyticsAug 30, 2019
When we think about the data we hold on our services, the first thing that comes to mind is often website analytics. But there are other valuable and occasionally overlooked types of data that can be really useful to user researchers.
How to run an heuristic evaluation – UX MasteryAug 29, 2019
The advantages and disadvantages of heuristic evaluation plus step by step instructions for running a successful inspection of your design's usability.
Making the Hook Model actionableAug 29, 2019
Learn exactly what persuasive techniques you need to use to build habit-forming products.
The Value of Inconvenient DesignAug 29, 2019
Technology makes seemingly inconvenient tasks easier — but at what cost?
The principle of design principlesAug 29, 2019
Your team’s not dysfunctional – you just need shared principles.
Disruptive Interfaces & The Emerging Battle To Be The DefaultAug 29, 2019
A new battle is brewing to be the default of every choice we make. As modern interfaces like voice remove options, augmented reality…
See Google's first guidelines for data visualizationAug 23, 2019
Google's data viz team, formed just last year, has put out best practices for designing charts.
Feature design checklist – UX CollectiveMay 15, 2019
Questions that ensure you consider e̶v̶e̶r̶y̶t̶h̶i̶n̶g̶ a few things when designing a new feature.
People, Products, and Epiphanies – Google Design – MediumApr 21, 2019
How a user-first culture led to a decade of eureka moments at Google UX
Making the Fogg Behavior Model actionableApr 19, 2019
Whether you are helping your users establish habits, engage in something new or unknown, onboard, or just want to motivate your users into giving your product a try, the Fogg Behavior Model can guide you.
I wanted to write a book, but ended up with a card deckApr 19, 2019
One of my life goals is to publish a book about how to build great products. I hope to help others learn from my hard-earned lessons to get ahead of the game. Ultimately, I want to help product builders to kick ass at what they love to do.
Reciprocity DecayMar 12, 2019
Our desire to give back wanes rapidly with time - Why if you want people to return a favor, you need to act fast
How to Respond to Skepticism of Testing Small Groups of UsersMar 12, 2019
“That’s just one person” and “Our real users aren’t like that” are common objections to findings from qualitative usability testing. Address these concerns proactively to ensure your research is effective.
This is the most interesting UI design of the year so farNov 16, 2018
What if clearing trackers was as easy as cleaning your computer screen?
NN/g’s Free UX Templates and GuidesSep 24, 2013
Use this curated set of free NN/g templates and guides for inspiration and to accelerate your product development activities and UX career.
The Practical Guide to Empathy Maps: 10-Minute User PersonasSep 24, 2009
A step-by-step process to creating an empathy map as a lean user persona with examples from leading design tool - UXPin.
umap
How to Analyze 100-Dimensional Data with UMAP in Breathtakingly Beautiful WOct 1, 2021
Create breathtaking visuals and “see” your data
How UMAP Works — umap 0.3 documentationOct 7, 2019
unbalanced
7 Techniques to Handle Imbalanced Data - KDnuggetsOct 1, 2022
This blog post introduces seven techniques that are commonly applied in domains like intrusion detection or real-time bidding, because the datasets are often extremely imbalanced.
scikit-learn-contrib/imbalanced-learn: A Python Package to Tackle the Curse of Imbalanced Datasets in Machine LearningJun 21, 2022
A Python Package to Tackle the Curse of Imbalanced Datasets in Machine Learning - scikit-learn-contrib/imbalanced-learn
Handling imbalanced dataset in supervised learning using family of SMOTE algorithm. - DataScienceCentral.comMay 15, 2020
Consider a problem where you are working on a machine learning classification problem. You get an accuracy of 98% and you are very happy. But that happiness doesn’t last long when you look at the confusion matrix and realize that majority class is 98% of the total data and all examples are classified as majority… Read More »Handling imbalanced dataset in supervised learning using family of SMOTE algorithm.
How to Handle Imbalanced Classes in Machine LearningDec 27, 2017
Imbalanced classes put "accuracy" out of business. This is a surprisingly common problem in machine learning, and this guide shows you how to handle it.
uplift
Uplift Modeling — A Data Scientist’s Guide to Optimizing a Credit Card ReneJul 23, 2023
Applying causal machine learning to trim the campaign target audience
Uplift Modeling with Cost OptimizationMar 19, 2023
How to adjust CATE to consider costs associated with your treatments
Beyond Churn: An Introduction to Uplift ModelingDec 18, 2020
Knowing which customers might churn is helpful, but uplift modeling can give you a new window into the nuances of customers’ responses…
user-generated-content
With first-party data, Allrecipes is able to bake reader comments into adveDec 10, 2020
Publisher comment sections are not only seen has hotbeds for toxicity, but historically have been very difficult to monetize.
uv
How uv got so fastDec 27, 2025
uv’s speed comes from engineering decisions, not just Rust. Static metadata, dropping legacy formats, and standards that didn’t exist five years ago.
vaex
Vaex: Pandas but 1000x fasterMay 17, 2021
If you are working with big data, especially on your local machine, then learning the basics of Vaex, a Python library that enables the fast processing of large datasets, will provide you with a productive alternative to Pandas.
Are You Still Using Pandas to Process Big Data in 2021?Mar 1, 2021
Pandas doesn’t handle well Big Data. These two libraries do! Which one is better? Faster?
vagrant
Introduction | Vagrant | HashiCorp DeveloperDec 12, 2021
Vagrant is a tool for building complete development environments. With an easy-to-use workflow and focus on automation, Vagrant lowers development environment setup time, increases development/production parity, and makes the "it works on my machine" excuse a relic of the past.
Quick Start | Vagrant | HashiCorp DeveloperDec 2, 2021
Vagrant isolates dependencies and their configuration within a single disposable and consistent development environment.
What is Vagrant? - DevOps LibraryNov 3, 2020
Vagrant up timeout - Stack OverflowMar 31, 2020
Having some issues to get my vagrant up,
Got the box, run vagrant init and after vagrant up command I get this message.
Bringing machine 'default' up with 'virtualbox' provider...
==> defa...
OpenStackCookbook/vagrant-openstack: Vagrant OpenStack-Ansible EnvironmentAug 30, 2019
Vagrant OpenStack-Ansible Environment used by OpenStack Cloud Computing Cookbook 4th Edition - OpenStackCookbook/vagrant-openstack
value-prop
Van Westendorp's Price Sensitivity MeterJan 3, 2026
market technique for determining consumer price preferences
5 Statistical Methods That Dominate Their Industries (and Why)Dec 22, 2025
Discover which statistical methods dominate healthcare, finance, tech, retail, and sports analytics, and why these industry-method pairings became indispensable standards.
Maximizing Value: How to Leverage Psychology to Raise Your PricesMay 18, 2024
Clients often ask me, "How can we charge more?" The answer is simple: Make the value you offer crystal clear.In economics this is called value exchange.Many brands provide the value, but they don't communicate it clearly, consistently, or in language that resonates with their buyer. So how can we use principles from marketing psychology and
A value creation checklistJul 19, 2022
This project you’re working on, the new business or offering, what sort of value does it create? Who is it for? What mindset and worldview and situation?Is it paid for by organizations or individua…
How to get your first 10 customersJun 25, 2022
Preface: the assumption for this essay is that you're building a B2B app, and you have something built but you're having trouble getting people to pay for it There are three problems with getting your first few customers: You (probably) don't know how to sell things You don't know who you're selling to You don't even really know what you're selling Nobody tells you how to answers these questions, and so most people go out
values
When Values Eat Their Young: How Ideal-Driven Groups Drift into Their Own ShadowSep 17, 2025
Picture this: A Slack channel for an open-source project that prominently displays "Be excellent to each other" in its community guidelines. Six month
The Virtue of IntegrityAug 13, 2025
The only way out of our wreckage is to rewrite the cultural script, to make excellence in character admired again.
Young Chinese Ask: Does This Life Spark Joy?Mar 15, 2023
In growing online communities devoted to minimalism, young Chinese swap tricks for scoring bargains or cutting down on unnecessary purchases. But the real motivation is regaining a sense of control in an uncertain world.
Here’s How To Know If Your “Values” Are Really ValuesJul 18, 2022
Amidst the flurry of recent disclosures about people and companies in our little northern hemisphere who are doing things they say they’re…
A List Of 8 Core Values I Live ByJul 18, 2022
Our values matter not because of how we are perceived, but because of how they define our character and set us apart from all others.
MediumJan 30, 2021
variational
Diffusion PrimerAug 25, 2025
Diffusion, a class of generative models, boils down to an MSE between added noise and network predicted noise.
Why would learning to predict the nois…
Uncovering Anomalies with Variational Autoencoders (VAE): A Deep Dive intoJan 17, 2023
An example use case of using Variational Autoencoders (VAE) to detect anomalies in all types of data
vector-databases
Vector Databases Explained from Scratch | Aman KharwalJan 23, 2026
In this article, I’ll explain vector databases from scratch and build a simple semantic search engine in Python for free.
Comparing Memory Systems for LLM Agents: Vector, Graph, and Event LogsNov 10, 2025
Learn how different memory systems affect multi-agent planning. Comparing Memory Systems for LLM Agents highlights key performance metrics.
37 Things I Learned About Information Retrieval in Two Years at a Vector Database Company – Leonie MonigattiJul 4, 2025
From BM25 to RAG: Everything I learned about vector databases, embedding models, and vector search - and everything in between.
Do you really need a Vector Search Database?Apr 30, 2025
Reflections on Intercom’s decision to stick with Elasticsearch
Don't use cosine similarity carelessly - Piotr MigdałJan 15, 2025
Cosine similarity - the duct tape of AI. Convenient but often misused. Let's find out how to use it better.
Vector Embeddings are Lossy. Here’s What to Do About It.Oct 19, 2024
AI systems aren’t perfect (GASP!) and these are some of the reasons why.
Use Your Data in LLMs With the Vector Database You Already HaveJul 13, 2024
Open source vector databases are among the top options out there for AI development, including some you may already be familiar with or even have on hand.
An SQL Vector Database To Enhance Text Search: How We Did ItMay 28, 2024
Performance testing shows integrating Tantivy’s full-text search engine library into vector search significantly improves speed and performance.
Pinecone launches its serverless vector database out of previewMay 21, 2024
Pinecone, the vector database startup founded by Edo Liberty, the former head of Amazon's AI Labs, has long been at the forefront of helping businesses
Cosine SimilarityMay 13, 2024
Cosine similarity can measure the proximity between two documents by transforming words into vectors within a vector space.
Comparative Analysis of Top 14 Vector Databases: Features, Performance, andApr 22, 2024
Vector databases have become increasingly prominent, especially in applications that involve machine learning, image processing, and similarity searches. Unlike traditional databases that store data as scalar values (numbers and strings), vector databases are designed to handle multidimensional data points, typically represented as vectors. These vectors can be used to model complex items like images, videos, and text in a format that machines can interpret for tasks such as content recommendation, anomaly detection, and more. Let’s explore 14 different vector databases and provide a comparative analysis of several key parameters. Faiss (Facebook AI Similarity Search) Faiss, developed by Facebook AI, is
I accidentally built a meme search engine | Harper Reed's BlogApr 16, 2024
I built a magical meme search engine using siglip/CLIP and vector encoding images. It was a fun way to learn about this powerful technology. I'm sharing the code so you can build your own and discover forgotten gems in your photo library. Let's unleash the power of AI on our images!
What We Learned When We Built a Vector Database-and Our Customers Started UFeb 18, 2024
Everyone is talking about vectors these days. Cosines, ANN searches, normalizations, sentence...
Pinecone: New vector database architecture a ‘breakthrough’ to curb AI hallJan 17, 2024
Today Pinecone launched a serverless vector database architecture that CEO Edo Liberty calls a 'significant' breakthrough for the industry.
Meet Chroma: An AI-Native Open-Source Vector Database For LLMs: A Faster WaAug 20, 2023
Word embedding vector databases have become increasingly popular due to the proliferation of massive language models. Using the power of sophisticated machine learning techniques, data is stored in a vector database. It allows for very fast similarity search, essential for many AI uses such as recommendation systems, picture recognition, and NLP. The essence of complicated data is captured in a vector database by representing each data point as a multidimensional vector. Quickly retrieving related vectors is made possible by modern indexing techniques like k-d trees and hashing. To transform big data analytics, this architecture generates highly scalable, efficient solutions for
Scalar Quantization and Product Quantization - Zilliz blogMay 28, 2023
A hands-on dive into scalar quantization (integer quantization) and product quantization with Python.
Not All Vector Databases Are Made EqualMay 28, 2023
A detailed comparison of Milvus, Pinecone, Vespa, Weaviate, Vald, GSI and Qdrant
What is a Vector Database? | PineconeMay 7, 2023
Discover Vector Databases: How They Work, Examples, Use Cases, Pros & Cons, Selection and Implementation. They have combined capabilities of traditional databases and standalone vector indexes while specializing for vector embeddings.
eBay’s Blazingly Fast Billion-Scale Vector Similarity EngineMay 2, 2023
The Similarity Engine's use cases include item-to-item similarity for text and image modality and user-to-item personalized recommendations based on a user’s historical behavior data.
Top 10 Best Vector Databases & LibrariesApr 19, 2023
Vector database is a type of database that stores data as high-dimensional vectors, which are...
HNSW Flat or Inverted Index: Which Should You Choose for Your Search? This AI Paper Offers OperatiSep 24, 2016
A significant challenge in information retrieval today is determining the most efficient method for nearest-neighbor vector search, especially with the growing complexity of dense and sparse retrieval models. Practitioners must navigate a wide range of options for indexing and retrieval methods, including HNSW (Hierarchical Navigable Small-World) graphs, flat indexes, and inverted indexes. These methods offer different trade-offs in terms of speed, scalability, and quality of retrieval results. As datasets become larger and more complex, the absence of clear operational guidance makes it difficult for practitioners to optimize their systems, particularly for applications requiring high performance, such as search engines and
venv
How to Manage Python Virtual Environments for Data ProjectsJun 25, 2025
Tired of breaking your Python setup? Learn how virtual environments keep everything organized and working smoothly.
Python venv: How To Create, Activate, Deactivate, And Delete • Python LandMay 29, 2024
How to create, activate, use, and delete a Python venv on Windows, Linux, and MacOS. We'll also look at how a Python venv works internally.
Mastering Python Development Environments: A Comprehensive Guide to VirtualDec 28, 2023
Python has been my go-to programming language since I started coding. Python, as a programming...
python - Using virtualenv on Jupyter Notebook - Stack OverflowOct 15, 2023
I trying to use virtualenv on jupyter notebook, to use all packages installed in an environment, but inside jupyter they are not recognized.
Already tried:
pip install tornado==4.5.3
pip install
How-To: using Python Virtual Environments - DebuntuNov 3, 2020
A nice thing about Python is that there is tons of modules available out there. Not all those modules are readily available for your distro and even if there were, chances are that a newer release with new features is already out there.
verilog
Understanding Verilog Shift Registers - Technical ArticlesDec 11, 2021
This article will discuss how to implement a shift register in Verilog. The register described can be synthesized and downloaded to an FPGA for test in actual hardware.
Using Verilog to Describe a Sequential Circuit - Technical ArticlesDec 2, 2021
This article focuses on using Verilog to describe synchronous sequential circuits.
video
FFmpeg at Meta: Media Processing at Scale - Engineering at MetaMar 2, 2026
FFmpeg is truly a multi-tool for media processing. As an industry-standard tool it supports a wide variety of audio and video codecs and container formats. It can also orchestrate complex chains of…
OpenAI’s Sora Makes Disinformation Extremely Easy and Extremely RealOct 3, 2025
The new A.I. app generated videos of store robberies and home intrusions — even bomb explosions on city streets — that never happened.
Generation 2 4680 Tested // Results & AnalysisNov 29, 2024
Enjoy the videos and music you love, upload original content, and share it all with friends, family, and the world on YouTube.
Researchers at NVIDIA AI Introduce ‘VILA’: A Vision Language Model that canMay 7, 2024
The rapid evolution in AI demands models that can handle large-scale data and deliver accurate, actionable insights. Researchers in this field aim to create systems capable of continuous learning and adaptation, ensuring they remain relevant in dynamic environments. A significant challenge in developing AI models lies in overcoming the issue of catastrophic forgetting, where models fail to retain previously acquired knowledge when learning new tasks. This challenge becomes more pressing as applications increasingly demand continuous learning capabilities. For instance, models must update their understanding of healthcare, financial analysis, and autonomous systems while retaining prior knowledge to make informed decisions. The
HVision-NKU/StoryDiffusionMay 7, 2024
Accepted as [NeurIPS 2024] Spotlight Presentation Paper - HVision-NKU/StoryDiffusion
15 Apps for Live Streaming VideoApr 23, 2024
This all-new update to our popular resource features apps from social networks and live-streaming platforms to produce and broadcast solo or multi-source video.
Meet Google Lumiere AI, Bard’s video maker cousinFeb 29, 2024
Step into the future of video creation with Google Lumiere, the latest breakthrough from Google Research that promises to redefine
The killer app of Gemini Pro 1.5 is videoFeb 29, 2024
Last week Google introduced Gemini Pro 1.5, an enormous upgrade to their Gemini series of AI models. Gemini Pro 1.5 has a 1,000,000 token context size. This is huge—previously that …
Sora early access: Your guide to securing a spotFeb 29, 2024
Are you looking for the news everyday for Sora early access like us? Well you are absolutely right because OpenAI's
A technical guide to video SEOFeb 26, 2024
Discover advanced SEO techniques for video content, including self-hosting versus YouTube embedding and fool-proof indexing checks.
12 Apps for Creating, Editing VideosFeb 20, 2024
Sophisticated videos require only a smartphone and an app. Here's an update to our long-running resource of tools to create, edit, and transform videos.
SoraFeb 17, 2024
Sora is an AI model that can create realistic and imaginative scenes from text instructions.
15 Useful ‘FFmpeg’ Commands for Video, Audio and Image Conversion in LinuxFeb 11, 2024
This article explores FFmpeg's capabilities for converting video, audio, and image files with practical examples in Linux.
10 AI Deepfake Generators for Photo and Video in 2023Sep 17, 2023
Video and audio recordings of people saying or doing things they never said or did can be created using AI deepfake generators and software tools that use artificial intelligence to make convincing fakes. A neural network is trained using a massive collection of authentic media featuring the target individual to accomplish this. The web is trained to recognize individuals and imitate their appearance, speech, and behavior. There is a wide range of potential good and bad uses for AI deepfake generators. You can use them to make comedic videos or instructional materials. Here are some AI deepfake generators for photos
The Complete Collection Of MTV’s Headbangers Ball: Watch 1,215 Videos fromJun 1, 2023
Premiering in April 1987, MTV's Headbangers Ball featured music videos from metal and hard rock bands of the 80s and 90s--everyone from AC/DC and Mötley Crüe, to Ozzy Osbourne, Def Leppard and Twisted Sister, to Judas Priest, Iron Maiden and Van Halen.
Create Stunning Videos with These 7 AI-Powered Editing ToolsMay 1, 2023
Attention developers: do you want to create high-quality videos but are short on time? Say goodbye to...
SpaceBalls AlienApr 13, 2023
It's just like in the Ridley Scott classic film... just with a little more style!
Burning ice, metal clouds, gemstone rain – tour the strangest known exoplanets | Aeon VideosFeb 21, 2023
An operatic, 3D-animated tour of some of the most fascinating exoplanets yet discovered reveals burning ice and gemstone rain
Text-to-4D dynamic scene generationJan 29, 2023
Find it here, via Ryan Watkins. Further improvement is required, but the pace of current breakthroughs is remarkable.
How to install PipeWire on Ubuntu Linux - Linux Tutorials - Learn Linux ConDec 24, 2022
The purpose of this tutorial is to install PipeWire on Ubuntu Linux. PipeWire is a sound server that can handle playback and capturing of audio and video streams. It is a worthy replacement to other…
GIFs Without the .gif: The Most Performant Image and Video Options Right NoSep 30, 2022
So you want an auto-playing looping video without sound? In popular vernacular this is the very meaning of the word GIF. The word has stuck around but the
No, YouTube, I will not subscribe to PremiumSep 22, 2022
Do you think YouTube Premium subscription pop-ups and the platform's burgeoning number of ads are in bad taste? You're not alone.
Video Streaming Protocols: What Are They & How to Choose The Best OneSep 15, 2022
Understanding legacy and modern streaming protocols will enable you to make an informed choice for...
Free screen recorder for Mac and PC | LoomAug 17, 2022
Best free online screen recording tool with advanced video editing and video storage trusted by over 21 million people and easy sharing from Loom.com.
Open Broadcaster Software®️ | OBSJun 24, 2022
OBS (Open Broadcaster Software) is free and open source software for video recording and live streaming. Stream to Twitch, YouTube and many other providers or record your own videos with high quality H264 / AAC encoding.
Video Tools ArchivesJun 23, 2022
13 Platforms for Shoppable VideoJun 23, 2022
Video is increasingly impacting ecommerce. Consumers use it for purchase decisions. Influencers live-stream product endorsements. And brands deploy video for engagement and product offerings. Here is a list of platforms for shoppable video.
BooksAndOtherExternalResources – FFmpegFeb 24, 2022
leandromoreira/digital_video_introduction: A hands-on introduction to video technology: image, video, codec (av1, vp9, h265) and more (ffmpeg encoding). Translations: 🇺🇸 🇨🇳 🇯🇵 🇮🇹 🇰🇷 🇷🇺 🇧🇷 🇪🇸Dec 3, 2021
A hands-on introduction to video technology: image, video, codec (av1, vp9, h265) and more (ffmpeg encoding). Translations: 🇺🇸 🇨🇳 🇯🇵 🇮🇹 🇰🇷 🇷🇺 🇧🇷 🇪🇸 - leandromoreira/digital_video_introduction
Video Compression BasicsMay 11, 2021
Deep Nostalgia AI brings your photos to life just like in the ‘Harry PotterMar 7, 2021
Deep Nostalgia AI brings your photos to life just like in the Harry Potter movies.
11 TikTok Video Ideas for MerchantsMar 2, 2021
You’ve downloaded TikTok and browsed the videos. Now you’re wondering what content to create for your ecommerce business. There are many types of videos to attract leads without dancing on camera. Here are 11 ideas for all types of merchants.
FacebookFeb 20, 2021
10 fabulous free apps for working with audio, video, and imagesJan 25, 2021
Whether you just need to crop a photo or are ready to edit an ambitious video, you can get the job done without paying a dime.
PeerTube v3: it’s a live, a liiiiive ! – FramablogJan 14, 2021
Today we are releasing a major new version of PeerTube, our alternative to centralized video platforms like YouTube. Please note: La version Française (originale) de cet article est disponible ici...
Discrete Cosine Transform in Video Compression - Explain Like I'm Five | OTNov 29, 2020
Understand how the Discrete Cosine Transform or DCT works and is used in Image and Video compression to reduce the size of the data without affecting quality.
Let's build a video conferencing appNov 3, 2020
Hello Everyone👋, In this article we will see how to build a video conferencing app. Prerequisites:...
Video Advertising Glossary - SelectMediaNov 3, 2020
View our video advertising glossary and learn common terms that will help you understand better the world of video advertising.
Gifsicle: Command-Line Animated GIFsJul 30, 2020
Gifsicle is a powerful, simple command line tool for creating, editing, and optimizing animated GIFs.
JellyfinFeb 19, 2020
The volunteer-built media solution that puts you in control of your media. Stream to any device from your own server, with no strings attached.
Why your next TV needs ‘filmmaker mode’Feb 9, 2020
TVs this year will ship with a new feature called "filmmaker mode," but unlike the last dozen things the display industry has tried to foist on consumers, this one actually matters. It doesn't magically turn your living room into a movie theater, but it's an important step in that direction.
16 Tools to Grow a YouTube ChannelJan 13, 2020
Here is a list of tools to grow an audience on YouTube. There are tools to produce and distribute content, manage campaigns, improve search engine optimization, find the right influencers and consultants, and track results.
7 Fantastic eCommerce Product Videos and The Lessons They Taught UsDec 23, 2019
Due to availability and ease of use, eCommerce companies have all but taken most markets by storm, becoming the preferred purchase alternative for
An Ode to the Video Store Chain, on the Occasion of Blockbuster’s DemiseDec 15, 2019
Ah, video stores, where viewers—and cinephile clerks—got to develop eclectic tastes.
12 Sites for Free Stock VideoOct 26, 2019
Adding video to your website design, particularly your home page, can engage visitors. But producing original videos can be difficult and expensive. Here is a list of websites to find free stock videos for commercial use.
30 Days Timelapse at Sea | 4K | Through Thunderstorms, Torrential Rain & Busy TrafficMay 21, 2019
Follow my adventures on Instagram! http://instagram.com/Jeffrey.hk
Dropped new timelapse! https://www.youtube.com/watch?v=9JBMpzW_B58
Hi all, i built a 24K resolution 360 camera specifically for upcoming 360 timelapse project. Check it out: https://www.youtube.com/watch?v=fseH9Kd5ooM
If you'd like to support my camera work so I can continue timelapse (this piece used up more than half of my D750 Shutter Life. Rain and camera also don't get along) please check out my patreon:
https://www.patreon.com/YTJeffHK
30 Days of Timelapse, about 80,000 photos combined. 1500GB of Project files. Sailing in the open ocean is a unique feeling and experience.I hope to capture and share it for everyone to see.
Support my photo/videography by buying through my affiliate links!
Best Value Fullframe for timelapse https://amzn.to/2MYk2vX
Fisheye lens used in 30 days timelapse https://amzn.to/30uE4Aw
360 camera I use https://amzn.to/2Qfgcku
Drone https://amzn.to/2Qhxk98
BIG JUICE powerbank for everything https://amzn.to/304fKJq
Gaffer Tape (no residue) https://amzn.to/2LCRLYq
Silica Gel Packs https://amzn.to/2N083xJ
Good intervalometer https://amzn.to/2N1ETOS
Good Entry Tripod https://amzn.to/2ZWp8e7
Pro Tripod https://amzn.to/2NYSlCH
Budget Time lapse Motion Control https://amzn.to/2A4H7Vd
Advance time lapse Motion control https://amzn.to/2PQ5ctn
Route was from Red Sea -- Gulf of Aden -- Indian Ocean -- Colombo -- Malacca Strait -- Singapore -- South East China Sea -- Hong Kong
Camera used: D750, Rokinon 12mm f/2.8
0:32 Milky Way
0:53 Sirius Star (I think) Correction: Jupiter the planet according to some viewers
1:17 Approaching Port of Colombo
1:45 Cargo Operation
2:08 Departure Colombo with Rainstorm
2:29 Beautiful Sunrise
3:13 Lightning Storm at Malacca Strait and Singapore Strait
3:29 Clear night sky Milky Way with lightning storm
4:01 Camera getting soaked
5:09 Arrival Singapore
5:56 Departure Singapore
6:20 Moon-lit night sky
6:48 Another Sunrise
8:30 Headed due north and you can see Ursa Major rotating neatly around Polaris.
8:36 Squid Boats
8:54 Chaotic Traffic
9:15 Arrival Hong Kong
Music:
Philip G Anderson - Winter (from 0:00 to 4:37 and 8:00 to 10:00)
Buy Winter here:
https://philipganderson.bandcamp.com/album/winter
Stellardrone - Billions And Billions (from 4:37 to 8:00)
=====10 Reasons Why Maritime is AWESOME =====
https://www.youtube.com/watch?v=0U18AHZbS_M
=====10 Reasons Why Maritime SUCKS =====
https://www.youtube.com/watch?v=tdMYEKwxTyo
=====How To Anchor a Mega-Ship =====
https://www.youtube.com/watch?v=62O7KYfb4GA
=====Where did I go last 2 months?? Cancun Adventure======
https://www.youtube.com/watch?v=nsizwRUXoa0
=====Navigation Bridge of a Mega Ship=====
https://www.youtube.com/watch?v=Bj3_peT4u9M
=====A Tour of Mega Ship's Engine Room=====
https://www.youtube.com/watch?v=s7BhBsVigZw
=====HEAVY SEAS! Bad Weather in Atlantic Ocean=====
https://www.youtube.com/watch?v=OZA6gNeZ5G4
=====Cargo Operations on Ship=====
https://www.youtube.com/watch?v=kj7ixi2lqF4
=====Top 6 Questions about Merchant Marine=====
https://www.youtube.com/watch?v=wBpQ9Y4jEfg
Max Cooper - EmergenceDec 24, 2018
Emergence is the story of natural laws and processes, their inherent beauty, and their action to yield the universe, us and the world we live in.
The Mauritania Railway: backbone of the SaharaAug 31, 2018
Careening through the desert, a massive railway sustains life in northwest Africa
The art of flying (short version)Nov 24, 2017
One of the most wondrous markers of the end of the day is a murmuration of starlings
Thirty days of a cargo ship’s voyageOct 30, 2017
From the Red Sea to Hong Kong in 10 minutes – a stunning cargo-ship timelapse
violin
Get startedMay 28, 2023
Explore the fundamentals of music via Ableton's interactive website. Experiment with beats, melody, harmony, basslines, and song structure in your web browser.
Learn violin - Freddie's SiteDec 21, 2022
How to Play the ViolinDec 21, 2022
The violin is one of the most rewarding and beautiful instruments to play. The road to learning the violin is a long one, but with patience, discipline, and enthusiasm, these steps will help you start down the road to success with this...
virality
19 One-Hit Wonders That Rank Among the Catchiest Songs EverJan 11, 2026
It only takes one hit song to etch your name in history.
How to design a referral programAug 17, 2022
Neil Patel's Digital Marketing BlogJul 19, 2022
Your #1 resource for digital marketing tips, trends, and strategy to help you build a successful online business.
The Greatest Word of Mouth Follow-up Question... Ever!Jul 19, 2022
Word of mouth is powerful... but this follow-up question allows you to harness that power to supercharge your marketing. Use it wisely and carefully.
Neil Patel's Digital Marketing BlogJul 18, 2022
Your #1 resource for digital marketing tips, trends, and strategy to help you build a successful online business.
Jonah Berger’s 75 Examples Of Infectious MarketingJul 18, 2022
Make your brand messages viral with the 6 STEPPS from Jonah Berger's Contagious, including 75 real-life marketing examples to learn from.
User Acquisition: The Five Sources of TrafficJul 18, 2022
This is the first post in a three post series on user acquisition. The topic of this blog post may seem simplistic to those of you who have been in the trenches, working hard to grow visits and vis…
9 Ways to Build Virality into your ProductJul 18, 2022
If your startup is building a consumer product, your product has to be viral. For consumer products, the average revenue per user tends to…
User Acquisition: Viral Factor BasicsJul 5, 2022
This is the second post in a three post series on user acquisition. In the first post in this series, we covered the basics of the five sources of traffic to a web-based product. This next post co…
Batman Is A Growth HackerJul 5, 2022
B.J. Mendelson breaks down how Batman is a growth hacker, and what we can learn about the field from him.
28 Clever Under the Radar Growth Hack ExamplesJul 5, 2022
We all know about the Paypal, Hotmail, and Airbnb growth hacks. Here are 28 new growth hack examples to help you market your web and mobile
What Makes Content Spread: Anatomy of a Post With 500,000+ LikesJun 25, 2022
How can I make my content go viral? I sat down with the viral marketing geniuses Marc and Angel to discuss content marketing and other key tips.
RapGenius Growth Hack ExposedJun 24, 2022
Yesterday RapGenius posted the following announcement on their Facebook page: As a contributor to various blogs and an endearing fan of RapGenius, I took
9 Ways To Make Your Startup Grow VirallyJun 24, 2022
Liquidity hacking: Solving the chicken-egg dilemma with marketplace startupsJun 24, 2022
Guest How to get a two-sided marketplace startup like Airbnb, Exec, or eBay up and running -- the painless way.
Q: What Makes a Product Attract Early Adopters? - SKMurphy, Inc.Jun 23, 2022
This is an edited version of a recent online conversation I had with a team of bootstrappers about how to make their product attract early adopters.
19 Tactics to Solve the Chicken-or-Egg Problem and Grow Your MarketplaceJun 23, 2022
An inside look at 19 tactics top marketplaces have used to solve the chicken-or-egg problem and kickstart growth.
The Tribal Network Effect (nfx #15)Feb 10, 2022
Today, we’re sharing the newest social nfx we've identified—the 15th type of network effect: Tribal Network Effects.
How TikTok Chooses Which Songs Go ViralMay 12, 2021
When Megan Thee Stallion took off her bright orange mask and walked onstage to accept her Grammy on March 14, she fought back tears and thanked God, her mother, and her managers for helping her become the first female rapper to win the award for best new artist in two decades.
Why People Share: The Psychology Behind "Going Viral"Feb 27, 2021
James Currier is making public the "8 Motivation Clusters" that cause people to share—to help Founders engineer virality into their products.
‘Stop asking for a ‘viral’ anything’: Why Ocean Spray’s successful meme canOct 12, 2020
As much as marketers would like to control the narrative around their brands doing so is a fallacy.
The Technium: 1,000 True FansAug 10, 2020
This is an edited, updated version of an essay I wrote in 2008 when this now popular idea was embryonic and ragged. I recently rewrote it to convey the core ideas, minus out-of-date details. This revisited essay appears in Tim … Continue reading →
A Mathematician’s Guide to How Contagion SpreadsJul 10, 2020
Adam Kucharski wrote The Rules of Contagion before Covid-19. He talks about misinformation, bank failures, and coming up with hypotheses during a crisis.
The Most Famous Loop – alexdanco.comJun 24, 2020
Kevin Kwok had a great essay the other day on Figma, and how its runaway success is based on hundreds of successful loops baked into its product and business model: Why Figma Wins | Kevin Kwok It g…
Canva’s Digital Growth StrategyJan 12, 2020
Canva are one of Australia's most successfull startups. In this case study we analyse how they use digital channels to attract and acquire new users
Network Effects: Measure Them, Nurture Them (3 of 3)Aug 29, 2019
Some of the most successful companies and products have been predicated on the concept of network effects, where the network becomes more valuable to users as more people use it… if managed well. But you can’t manage what you can’t measure. So, what metrics should you look at to determine if you even have network...
Network Effects: Categories & Debates (2 of 3)Aug 29, 2019
We’ve defined network effects — from what they are and aren’t to how to measure and manage them in practice — but network effects have still always been hotly debated: Where are they, are they real, are they enduring… and so on. So in this second video of our three-part miniseries on network effects, a16z...
Network Effects: So, Is It a Network Effect? (1 of 3)Aug 29, 2019
Some of the most successful companies and products — from the phone era to the internet era — have all been predicated on the concept of network effects, where the network becomes more valuable to users as more people use it. But how do you tell network effects apart from scale effects, brand preference, or...
virtualbox
A Complete Guide to Using VirtualBox on Your ComputerDec 12, 2021
VirtualBox is designed to run VMs on your physical machine without reinstalling your OS on a physical machine. Learn how to use VirtualBox on your computer
Linux_Downloads – Oracle VirtualBoxDec 2, 2021
Vagrant up timeout - Stack OverflowMar 31, 2020
Having some issues to get my vagrant up,
Got the box, run vagrant init and after vagrant up command I get this message.
Bringing machine 'default' up with 'virtualbox' provider...
==> defa...
virtualization
Disgruntled customers discuss quitting VMwareOct 31, 2024
Ars Technica speaks with users and channel partners disgruntled by Broadcom’s changes.
Mastering Python Development Environments: A Comprehensive Guide to VirtualDec 28, 2023
Python has been my go-to programming language since I started coding. Python, as a programming...
vision
Autonomous Driving: Assessment Of YOLO Algorithms (RMIT et al.)Feb 11, 2026
A new technical paper titled “Advances in You Only Look Once (YOLO) algorithms for lane and object detection in autonomous vehicles” was published by RMIT University, Kyungpook National University, Deakin University and the RCA Robotics Laboratory, Royal College of Art. Abstract “Ensuring the safety and efficiency of Autonomous Vehicles (AVs) necessitates highly accurate perception, especially... » read more
Newfound 'Reality Signal' Helps the Brain Tell Imagination from Real LifeSep 5, 2025
Seeing and imagining use similar brain machinery. New research reveals the brain circuit that identifies what is real, which may help scientists understand conditions such as schizophrenia
Is It Cake? How Our Brain Deciphers Materials - NautilusJul 9, 2025
Neuroscientists are discovering how this basic ability, essential to our survival, works
Aphantasia: Inside The Brains Of People Who Have No Mind’s EyeJan 28, 2025
Did you know some people can’t see images in their minds? It’s a real issue—and it has a name: aphantasia.
A Visual Guide to Vision Transformers | MDTURPApr 16, 2024
This is a visual guide (scroll story) to Vision Transformers (ViTs), a class of deep learning models that have achieved state-of-the-art performance on image classification tasks.
Blinking is more than meets the eyeApr 15, 2024
Eye blinks aren't just a mechanism to keep our eyes moist. Research finds that blinking plays a key role in processing visual information.
Memory Recognition and Recall in User InterfacesJan 17, 2024
Recalling items from scratch is harder than recognizing the correct option in a list of choices because the extra context helps users retrieve information from memory.
My left and right eyes see slightly different colors. Is that normal?Mar 31, 2023
Vox is a general interest news site for the 21st century. Its mission: to help everyone understand our complicated world, so that we can all help shape it. In text, video and audio, our reporters explain politics, policy, world affairs, technology, culture, science, the climate crisis, money, health and everything else that matters. Our goal is to ensure that everyone, regardless of income or status, can access accurate information that empowers them.
The Art of the Shadow: How Painters Have Gotten It Wrong for CenturiesFeb 25, 2023
The goal is not to expose the “slipups” of the masters but to understand the human brain.
[1702.04680v1] Visual Discovery at PinterestDec 21, 2022
Over the past three years Pinterest has experimented with several visual search and recommendation services, including Related Pins (2014), Similar Looks (2015), Flashlight (2016) and Lens (2017)....
How ‘The Dress’ Sparked a Neuroscience BreakthroughJul 2, 2022
The color debate that broke the internet raised new questions about the relationship between perception and consciousness.
This Optical Illusion Has a Revelation About Your Brain and Eyes (Published 2022)Jun 11, 2022
Your pupils may be dilating when you see images like this one as your brain tries to anticipate the near future.
Everything We See Is a Mash-up of the Brain’s Last 15 Seconds of Visual InformationFeb 20, 2022
The brain is basically a time machine that ensures what we see is stable and continuous.
Semantic hand segmentation using PytorchDec 18, 2020
Semantic segmentation is the task of predicting the class of each pixel in an image. This problem is more difficult than object detection…
Cameras and Lenses – Bartosz CiechanowskiDec 11, 2020
Interactive article explaining how cameras and lenses work.
YOLO v4 or YOLO v5 or PP-YOLO? Which should I use?Dec 10, 2020
What are these new YOLO releases in 2020? How do they differ? Which one should I use?
AI system for high precision recognition of hand gesturesDec 10, 2020
Scientists have developed an Artificial Intelligence (AI) system that recognises hand gestures by combining skin-like electronics with computer vision.
FavoritesDec 9, 2020
Welcome to Feedly — the platform where businesses and curious minds stay ahead of the curve! We're passionate about helping teams track competitors, discover new trends, and research emerging security threats. Feedly AI is a collection of machine learning models that automatically collect, analyze, and help you share actionable insights from millions of sources in real-time.
Computer Vision Recipes: Best Practices and ExamplesNov 3, 2020
This is an overview of a great computer vision resource from Microsoft, which demonstrates best practices and implementation guidelines for a variety of tasks and scenarios.
Yolo v5 Object Detection TutorialNov 3, 2020
How to set up and train a Yolo v5 Object Detection model?
What is Perspective Warping ? | OpenCV and PythonNov 3, 2020
A step-by-step guide to apply perspective transformation on images
Image Annotation for Computer Vision | CloudFactoryNov 3, 2020
Machine learning is often fueled by image data. In this guide, learn the basics about image annotation, common techniques, and key workforce considerations.
End to End Pipeline for setting up Multiclass Image Classification for Data Scientists - MLWhizNov 3, 2020
In this post, we’ll create an end to end pipeline for image multiclass classification using Pytorch.This will include training the model, putting the model’s results in a form that can be shown to business partners, and functions to help deploy the model easily. As an added feature we will look at Test Time Augmentation using Pytorch also.
How to cluster images based on visual similarityNov 2, 2020
Use a pre-trained neural network for feature extraction and cluster images using K-means.
Novel object captioning surpasses human performance on benchmarksNov 2, 2020
Visual vocabulary advances novel object captioning by breaking free of paired sentence-image training data in vision and language pretraining. Discover how this method helps set new state of the art on the nocaps benchmark and bests CIDEr scores of humans.
Hacked Billboards can Make Teslas See 'Phantom Objects' and Cause HavocNov 2, 2020
Tesla's Autopilot system relies on vision rather than LIDAR, which means it can be tricked by messages on billboards and projections created by hackers.
From fluffy to valuable: How the brain recognises objectsOct 19, 2020
To recognise a chair or a dog, our brain separates objects into their individual properties and then puts them back together. Until recently, it has remained unclear what these properties are. Scientists at the Max Planck Institute for Human Cognitive and Brain Sciences in Leipzig have now identified them - from "fluffy” to “valuable” - and found that all it takes is 49 properties to recognise almost any object.
A Mathematical Model Unlocks the Secrets of VisionOct 13, 2020
Mathematicians and neuroscientists have created the first anatomically accurate model that explains how vision is possible.
Oil Storage Tank’s Volume Occupancy On Satellite Imagery Using YoloV3Sep 2, 2020
Recognition of Oil Storage Tanks in satellite images using the Yolov3 object detection model from scratch using Tensorflow 2.x and…
New Approaches to Object DetectionSep 2, 2020
A brief introduction to CenterNet (Objects as Points), TTFNet and their implementation in TensorFlow 2.2+.
Why Red Means Red in Almost Every LanguageAug 10, 2020
The confounding consistency of color categories.
Where We See Shapes, AI Sees Textures | Quanta MagazineAug 10, 2020
To researchers’ surprise, deep learning vision algorithms often fail at classifying images because they mostly take cues from textures, not shapes.
FORTH-ModelBasedTracker/MocapNET: We present MocapNET, an ensemble of SNN eJul 11, 2020
We present MocapNET, a real-time method that estimates the 3D human pose directly in the popular Bio Vision Hierarchy (BVH) format, given estimations of the 2D body joints originating from monocula...
YOLOv5 is Here: State-of-the-Art Object Detection at 140 FPSJun 24, 2020
Less than 50 days after the release YOLOv4, YOLOv5 improves accessibility for realtime object detection. June 29, YOLOv5 has released the first official version of the repository. We wrote a new deep dive on YOLOv5. June 12, 8:08 AM CDT Update: In response to to community feedback, we have
Dimensionality Reduction in Hyperspectral Images using PythonJun 24, 2020
Dimensionality Reduction Techniques for Hyperspectral Images.
Image Augmentation Mastering: 15 Techniques and Useful Functions with PythJun 24, 2020
Smooth python codes to augment your image datasets by yourself.
Virtual Background in Webcam with Body Segmentation TechniqueJun 1, 2020
Webcam background change is not limited to Zoom now, I just did it in the browser with tensorflow.js body-pix model
Data Augmentation in YOLOv4Jun 1, 2020
State of the art modeling with image data augmentation and management
Image Segmentation With 5 Lines 0f CodeJun 1, 2020
Computer vision is evolving on a daily basis. Popular computer vision techniques such as image classification and object detection have been used extensively to solve a lot of computer vision…
Understanding Associative EmbeddingMay 19, 2020
An elegant method to group predictions without labeling
Master the COCO Dataset for Semantic Image SegmentationMay 15, 2020
Explore and manipulate the COCO image dataset for Semantic Image Segmentation with PyCoco, Tensorflow Keras Python libraries
Master the COCO Dataset for Semantic Image SegmentationMay 15, 2020
Create a data generator and train your model on the COCO image dataset for Semantic Image Segmentation with PyCoco, Tensorflow Keras py
Sony’s first AI image sensor will make cameras everywhere smarterMay 14, 2020
More computer in your camera
A Deep Dive into Lane Detection with Hough TransformMay 6, 2020
A detailed step-by-step guide to build a Lane Line Detection algorithm in OpenCV.
Some shirts hide you from cameras—but will anyone wear them?Apr 17, 2020
It’s theoretically possible to become invisible to cameras. But can it catch on?
Object Detection using YoloV3 and OpenCVApr 1, 2020
An Introduction to Object Detection with YoloV3 for beginners
Image Data Labelling and Annotation — Everything you need to knowApr 1, 2020
Learn about different types of annotations, annotation formats and annotation tools
nandinib1999/object-detection-yolo-opencv: Object Detection using Yolo V3 and OpenCVApr 1, 2020
Object Detection using Yolo V3 and OpenCV .
Computer Vision 101: Working with Color Images in PythonApr 1, 2020
Learn the basics of working with RGB and Lab images to boost your computer vision projects!
Disrupting Deepfakes: Adversarial Attacks on Image Translation Networks (CoApr 1, 2020
🔥🔥Defending Against Deepfakes Using Adversarial Attacks on Conditional Image Translation Networks - natanielruiz/disrupting-deepfakes
Building an Image-Taking Interface Application for Your Image Recognition MApr 1, 2020
Explore the Real-World Applications of Your Model
Brain Tumor Detection using Mask R-CNNApr 1, 2020
Mask R-CNN has been the new state of the art in terms of instance segmentation. Here I want to share some simple understanding of it to give you a first look and then we can move ahead and build our model.
Self Supervised Depth Estimation: Breaking down the ideasMar 9, 2020
Learning depth without manual annotation
Learning to See Transparent ObjectsMar 9, 2020
Posted by Shreeyak Sajjan, Research Engineer, Synthesis AI and Andy Zeng, Research Scientist, Robotics at Google Optical 3D range sensors, like R...
Using Pytesseract to Convert Images into a HTML SiteMar 9, 2020
Convert images to a string with Google Tesseract and then into a static HTML site using python
Introduction to Histogram EqualizationMar 9, 2020
How can digital signal processing help you equalize histograms for digital photography? Learn more here.
Dive Really Deep into YOLO v3: A Beginner’s GuideFeb 19, 2020
443K subscribers in the learnmachinelearning community. A subreddit dedicated to learning machine learning
kornia/kornia: Open Source Differentiable Computer Vision Library for PyTorFeb 19, 2020
Geometric Computer Vision Library for Spatial AI.
Table Detection and Extraction Using Deep LearningFeb 19, 2020
Extract table from image with Nanonets table detection OCR. Learn OCR table Deep Learning methods to detect tables in images or PDF documents.
Powerful computer vision algorithms are now small enough to run on your phoneNov 24, 2019
Researchers have shrunk state-of-the-art computer vision models to run on low-power devices. Growing pains: Visual recognition is deep learning’s strongest skill. Computer vision algorithms are analyzing medical images, enabling self-driving cars, and powering face recognition. But training models to recognize actions in videos has grown increasingly expensive. This has fueled concerns about the technology’s carbon…
Keras Mask R-CNN - PyImageSearchAug 30, 2019
In this tutorial you will learn how to use Keras, Mask R-CNN, and Deep Learning for instance segmentation (both with and without a GPU).
YOLO: Real-Time Object DetectionAug 29, 2019
You only look once (YOLO) is a state-of-the-art, real-time object detection system.
Computer Vision for Beginners: Part 1Aug 23, 2019
Image processing is performing some operations on images to get an intended manipulation. Think about what we do when we start a new data analysis. We do some data preprocessing and feature engineering. It’s the same with image processing.
The Hitchhiker’s Guide to Feature ExtractionAug 20, 2019
Some Tricks and Code for Kaggle and Everyday work. This post is about useful feature engineering methods and tricks that I have learned and end up using often.
LouieYang/deep-photo-styletransfer-tf: Tensorflow (Python API) implementatiJun 8, 2018
Tensorflow (Python API) implementation of Deep Photo Style Transfer - LouieYang/deep-photo-styletransfer-tf
Learning to write programs that generate imagesJun 8, 2018
Through a human’s eyes, the world is much more than just the images reflected in our corneas. For example, when we look at a building and admire the intricacies of its design, we can appreciate...
Real-time object detection with deep learning and OpenCV - PyImageSearchJun 8, 2018
In this tutorial I demonstrate how to apply object detection with deep learning and OpenCV + Python to real-time video streams and video files.
Topic: computer-visionMay 12, 2018
GitHub is where people build software. More than 100 million people use GitHub to discover, fork, and contribute to over 420 million projects.
Region of interest pooling explainedFeb 2, 2018
Dive into our detailed explanation of what is Region of Interest (RoI) Pooling in deep learning. Enhance your skills. Discover more now!
visualization
How to make a Smith chartOct 23, 2025
Deriving the basic mathematical properties of the Smith chart from electrical engineering
Generate a Full EDA Report in One Line of Python CodeOct 4, 2025
In this article, I'll explain how to automate 80% of the initial analysis and generate an EDA report with just one line of Python code.
10 Python One-Liners for Statistical PlottingJul 29, 2025
Master fast, powerful ways to visualize data with these compact, ready-to-use Python one-liners.
Visualizing Data: A Statology Primer - KDnuggetsJul 23, 2025
This collection of tutorials from our sister site Statology center on data visualization. Learn more about visualizing your data right here.
The Book Of ShadersJun 30, 2025
Gentle step-by-step guide through the abstract and complex universe of Fragment Shaders.
Statology Sprint: Visual Model Evaluation with YellowbrickMay 2, 2025
This Sprint focuses on Yellowbrick, a Python visualization library that extends the scikit-learn API to incorporate visual diagnostics in your machine learning workflow.
Random Points on a SphereApr 19, 2025
Apache EChartsApr 9, 2025
Apache ECharts, a powerful, interactive charting and visualization library for browser
From Loops to Klein Bottles: Uncovering Hidden Topology in High Dimensional DataMar 26, 2025
Motivation • Dimensionality reduction is vital to the analysis of high dimensional data, i.e. data with many features. It allows for better understa…
Visual VocabularyMar 18, 2025
mermaid/README.md at develop · mermaid-js/mermaidMar 9, 2025
Generation of diagrams like flowcharts or sequence diagrams from text in a similar manner as markdown - mermaid-js/mermaid
Visualizing all the books in the worldFeb 26, 2025
To show a catalog of almost 100 million books in one view, phiresky mapped them based on International Standard Book Numbers, or ISBNs, with an interactive visualization.
The best R packages for data visualizationSep 24, 2024
A list of the most powerful R packages to create stunning graphs.
I found a hidden gem in Matplotlib’s library: Packed Bubble Charts in PythoJul 30, 2024
Ever wished to design those beautiful Tableau based packed bubble charts? Follow along for a tutorial on the Matplotlib solution
Run Charts - Improvement | theCompleteMedicJul 3, 2024
Create your first run chart and start interpreting your data using just four rules. Your go-to QI resource.
Race Charts In R: How To Visualize And Compare Change Over Time With GganimJun 25, 2024
So, you’ve mastered the basics of ggplot2 animation and are now looking for a real-world challenge? You’re in the right place. After reading this one, you’ll know how to download and visualize stock data change through something known as race charts. You can think of race charts as dynamic visualizations (typically bar charts) that display […] The post appeared first on appsilon.com/blog/.
Something a llttle different: Hexbin mapsJun 25, 2024
Something a llttle different: Hexbin maps by Jerry Tuttle I recently became acquainted with hexbin maps, so I thought I would experiment with one. In a hexbin map, each geographical region is represented by an equall...
Decent PatternsJun 11, 2024
Decent Patterns is a collective effort to further the adoption of decentralized technologies by providing open tooling and resources for the community.
The power of beauty in communicating complex ideasJun 11, 2024
Can designers defend pursuing beauty when communicating science or innovation?
Visual Hash | Decent PatternsJun 11, 2024
Decent Patterns is a collective effort to further the adoption of decentralized technologies by providing open tooling and resources for the community.
Why you shouldn’t use boxplotsJun 9, 2024
Box plots are a very common tool in data visualization to show how your data is distributed. But they have a crucial flaw. Let’s find out what that flaw is. And if you’re interested in the video version of this blog post, you can find it here: ...
Advanced Data Visualization ConceptsMay 15, 2024
In this article, I'll take you through some advanced data visualization concepts you should know to enhance your graphs.
Bubbles, they bounce! Introducing bubble chartsMay 11, 2024
Bubble charts are an engaging way to visualize groups of people or events. Flourish allows you to create interactive bubble charts with multiple image and label options.
wireviz/WireViz: Easily document cables and wiring harnesses.Apr 16, 2024
Easily document cables and wiring harnesses.
Conquering System Design Diagrams: My Shift to Mermaid.jsApr 9, 2024
Diagrams are the cornerstone of software development, illuminating complex systems and fostering...
Implementing Bloom Effect with Mapbox and Three.jsApr 9, 2024
Bloom effects are typically used to enhance the brightness and lighting effects of images or scenes,...
5 Useful Visualizations to Enhance Your AnalysisMar 24, 2024
Use Python’s statistical visualization library Seaborn to level up your analysis.
Airfoil – Bartosz CiechanowskiFeb 29, 2024
Interactive article explaining the physics of an airfoil and what makes airplanes fly
Welcome | SupersetFeb 29, 2024
Community website for Apache Superset™, a data visualization and data exploration platform
Matrix Product Interpretations and VisualizationsFeb 27, 2024
Matrix Product Interpretations and Visualizations: Learn Linear Algebra from scratch. Build a foundation for Machine Learning and other key technologies.
Drawing 10 Million Points With ggplot: Clifford AttractorsFeb 22, 2024
For me, mathematics cultivates a perpetual state of wonder about the nature of mind, the limits of thoughts, and our place in this vast cosmos (Clifford A. Pickover - The Math Book: From Pythagoras to the 57th Dimension, 250 Milestones in the History of Mathematics) I am a big fan of Clifford Pickover and I
Matplotlib: Make Your Plotting Life Easier with rcParamsFeb 21, 2024
Consistently beautiful plots with less code and minimal effort
Grow a Treemap with Python and Plotly ExpressJan 17, 2024
Turn a government PDF into a financial planning tool
A Periodic Table of Visualization MethodsJan 17, 2024
Inside the Matrix: Visualizing Matrix Multiplication, Attention and BeyondSep 25, 2023
Use 3D to visualize matrix multiplication expressions, attention heads with real weights, and more.
Creating Incredible Decision Tree Visualizations with dtreevizJul 23, 2023
How to visualize decision tree models with this useful library
✚ Visualization Tools and Learning Resources – March 2023 RoundupMar 31, 2023
This is the good stuff for March.
Designing Beautiful Tables in RMar 26, 2023
Learn how to design beautiful tables in R! Join our workshop on Designing Beautiful Tables in R which is a part of our workshops for Ukraine series. Here’s some more info: Title: Designing Beautiful Tables in R Date: Thursday, April 27th, 18:00 – 20:00 CEST (Rome, Berlin, Paris timezone) Speaker: Tanya Shapiro is a freelance … Continue reading Designing Beautiful Tables in RDesigning Beautiful Tables in R was first posted on March 25, 2023 at 3:28 pm.
Configuring the spyrograph trace method to explore stunning geometric visuaMar 25, 2023
DISCLAIMER: This blog post was written by a human with the help of AI Hypotrochoids and epitrochoids...
3 Unique Charts You Wouldn’t Think Were Created with MatplotlibMar 21, 2023
Utilising Python’s Matplotlib to Create Advanced Data Visualisations
50 chart types for data visualization explainedMar 20, 2023
Charts are a powerful tool for data visualization, but with so many chart types available, it can be...
Erich's Packing CenterMar 19, 2023
How to make 40 interactive plots to analyze your machine learning pipelineMar 19, 2023
A quick guide on how to make clean-looking, interactive Python plots to validate your data and model
Using PyGWalker to Enhance Your Jupyter Notebook EDA ExperienceMar 3, 2023
An Introduction to the PyGWalker Library for Easy Data Visualisation
kauffecup/react-bubble-chart: A React+D3 animated bubble chartFeb 11, 2023
A React+D3 animated bubble chart.
Creating an interactive SVG: The circle of fifthsFeb 9, 2023
Written by Mads Stoumann✏️ Not so long ago, these beautiful posters showed up in an advertisement on...
3 Simple Ways to Create a Waterfall Plot in PythonFeb 9, 2023
Learn how to quickly create a presentation-ready plot to aid your data storytelling
How to Create Beautiful Waffle Charts for Data Visualisation in PythonFeb 9, 2023
A Great Alternative to Pie Charts for Data Visualisation
Unimpressed With Your Scatter and Bar Plots? Give These Four Classic AlternJan 18, 2023
Better alternatives to scatter, bar, and line plots.
red-data-tools/YouPlot: A command line tool that draw plots on the terminal.Jan 16, 2023
A command line tool that draw plots on the terminal. - red-data-tools/YouPlot
How to draw ideas - Ralph AmmerJan 15, 2023
Four ways how to use drawing to get more ideas: Study, Explore, Develop, and Show. They will boost your creativity.
aBiogenesis on BehanceDec 28, 2022
Obsidian Canvas - ObsidianDec 22, 2022
Obsidian Canvas gives you infinite space to research, brainstorm, diagram, and lay out your ideas.
Orthographic shading / D3 | ObservableDec 22, 2022
Step 1. Create a grid Use d3.geoGraticule10 to create lines of constant longitude and latitude. Step 2. Apply clipping Set projection.clipAngle to 90° to show only the front hemisphere. Stroke the outline of the sphere to better separate the globe from the background. Step 3. Apply a radial gradient Apply a radial gradient to simulate lighting on a diffuse surface. Appendix
Adaptive SamplingDec 22, 2022
D3’s projections use adaptive sampling to increase the accuracy of projected lines and polygons while still performing efficiently. Without sampling, only the input vertices of polygons are projected. This results in the artifacts (visible above) due to projected lines becoming curves. Uniform sampling improves the appearance by adding interstitial samples between input vertices. It is inefficient because most samples are not needed, and even areas of extreme distortion still exhibit artifacts! Adaptive sam
11 Less Used but Important Plots for Data ScienceNov 23, 2022
Some Unique Data Visualization Techniques for Getting High-Level Insight into the Data
The Data Cards Playbook: A Toolkit for Transparency in Dataset DocumentatioNov 21, 2022
Posted by Mahima Pushkarna, Senior Interaction Designer, and Andrew Zaldivar, Senior Developer Relations Engineer, Google Research As machine learn...
5 Ways to use a Seaborn Heatmap (Python Tutorial)Oct 30, 2022
Using a heatmap to visualise a confusion matrix, time-series movements, temperature changes, correlation matrix and SHAP interaction values
5 Ways to Transform Your Seaborn Data VisualisationsOct 30, 2022
Simple and easy pieces of code to enhance your seaborn scatter plots
Step Up Your Game in Making Beautiful Choropleth MapsOct 30, 2022
A guide on how to make different types of maps using Python
Hands-on Guide to Create beautiful Sankey Charts in d3js with Python.Oct 21, 2022
The Sankey chart is a great way to discover the most prominent contributions just by looking at how individual items flow across states.
12 Essential Visualizations and How to Implement Them, Part 2Oct 19, 2022
We look at how to create the 12 most useful graphs and charts in Python and Streamlit
How to Create Storytelling Moving Bubbles Charts in d3js with Python.Oct 14, 2022
The MovingBubble chart is one of those mind-blowing charts to look at. Learn how to create them using your own data set and Python!
19 Examples of Merging plots to Maximize your Clustering Scatter plotOct 14, 2022
Mix and match plots to get more information from a scatter plot
Fundamentals of Data VisualizationOct 4, 2022
A guide to making visualizations that accurately reflect the data, tell a story, and look professional.
D3Blocks: The Python Library to Create Interactive and Standalone D3js CharSep 22, 2022
Create interactive, and stand-alone charts that are built on the graphics of d3 javascript (d3js) but configurable with Python.
How to Use UMAP For Much Faster And Effective Outlier DetectionSep 14, 2022
Let’s catch those high-dimensional outliers
rbokeh: How To Create Interactive Plots In RAug 25, 2022
Effective interactive data visualizations in R
9 Visualizations with Python that Catch More Attention than a Bar ChartAug 8, 2022
Creating eye-catching graphs with Python to use instead of bar charts.
Developer Center | Targomo Developers!Jul 30, 2022
Build the next generation of Location Intelligence applications with the Targomo API
Isochrone Map Generator: How to Create Travel Time Maps | BlogJul 30, 2022
Learn how to create isochrones for different transport modes with our free isochrone map generator, Isochrone API or software plugins.
Stream Graphs Basics with Python's MatplotlibJul 26, 2022
The good-looking cousin of stacked area charts
4 Quick Tricks For Better Plots in MatplotlibJul 26, 2022
Easily adding arrows, multiple axes, gradient fill, and more
6 Hierarchical DataVisualizationsJul 7, 2022
Create a variety of data visualizations with hierarchical data
Life in Motion: A Guide to Animating Mobile Data VisualizationsJul 6, 2022
Animation can help people make sense of all the data at their fingertips.
✚ Visualization Tools and Learning Resources, June 2022 RoundupJul 6, 2022
Here’s the good stuff for June.
Density ContoursJun 29, 2022
This chart shows the relationship between idle and eruption times for Old Faithful. See also the importable chart component version of this example.
Web Design Done Well: Delightful Data Visualization ExamplesJun 23, 2022
All the data in the world won’t do anyone any good if we can’t make sense of it. Or better yet, make it sing. Here are some stunning examples of data visualization in the wild, and some pointers on how to start making your own.
Sankey Diagram: Transform Your Data Flows into InsightsJun 23, 2022
A Sankey diagram is a collection of nodes which are connected with each other to show data flow or hierarchical data connected from one to another.
What type of Data Does a Sankey Diagram Generally Use?Jun 23, 2022
Data visualization breaks down complex data values into simple and flexible elements that you can easily deal with without being worried.
The Battle of Choropleths — Part 3 — FoliumJun 22, 2022
Using the Folium Package to Create Stunning Choropleths
Designers take note: a freemium version of Photoshop is in the worksJun 22, 2022
Adobe Photoshop is still the king of the graphics software industry, by name if not in practice. It is still the bread and butter of artists, designers, illustrators, and creatives, even when there are more focused applications available, like ones for making comics or manga, for example. Despite its popularity, getting legitimate access to Photoshop
Creating Choropleth Maps with Python’s Folium LibraryJun 22, 2022
How to make choropleths with different data structures in Python
Magical SVG TechniquesMay 29, 2022
Smart SVG techniques, from generative SVG grids to SVG paths with masks, grainy SVG gradients, cut-out effects and fractional SVG stars. Let’s look at some magical SVG techniques that you can use right away.
An in-depth SVG tutorialMay 28, 2022
SVG is an awesome and incredibly powerful image format. This tutorial gives you an overview of SVG by explaining all you need to know in a simple way
10 Must-know Seaborn Functions for Multivariate Data Analysis in PythonMay 7, 2022
Learn how to visualize data using Seaborn’s axes-level and figure-level plots
Best Seaborn Visualizations for Data ScienceApr 29, 2022
Exploring some of the best visualization options for data science projects with the Seaborn library
R Graphics Cookbook, 2nd editionMar 21, 2022
This cookbook contains more than 150 recipes to help scientists, engineers, programmers, and data analysts generate high-quality graphs quickly—without having to comb through all the details of R’s graphing systems. Each recipe tackles a specific problem with a solution you can apply to your own project and includes a discussion of how and why the recipe works.
Want to ditch Pinterest? Here are the best alternatives for visual inspiration - Fast CompanyJan 29, 2022
If the recent discrimination allegations against Pinterest are leaving you uninspired (if not quesy), here are some great alternatives.
Neat R Plots with the Cairo Graphics LibraryJan 24, 2022
R graphics tutorial: scatterplots with anti-aliasing, using the Cairo library. Two lines of code to make much better visualizations in R.
category-scatterplot/demo.ipynb at master · bjpcjp/category-scatterplotJan 17, 2022
Based on scatterplot by Myriam Barnes. A simple to viz categories in a scatter plot. - bjpcjp/category-scatterplot
Creating Beautiful Topography Maps with PythonJan 17, 2022
Who needs GIS when you can build eye-catching 3D topography maps with Python?
Amelia WattenbergerJan 16, 2022
Visualizing AlgorithmsJan 16, 2022
✚ How to Make Frequency Trails in ExcelDec 27, 2021
Also known as ridgelines, use the method to create a compact visualization where you can easily identify major patterns and outliers.
Making a map in d3 js v 5Dec 16, 2021
Machine-Learning-Tokyo/Interactive_Tools: Interactive Tools for Machine Learning, Deep Learning and MathDec 13, 2021
Interactive Tools for Machine Learning, Deep Learning and Math - Machine-Learning-Tokyo/Interactive_Tools
How to Analyze 100-Dimensional Data with UMAP in Breathtakingly Beautiful WOct 1, 2021
Create breathtaking visuals and “see” your data
Detecting knee- / elbow points in a graphAug 31, 2021
Using “Kneedle” algorithmus detecting knees with Python package “kneed”
PyMOL | pymol.orgJul 18, 2021
d3/d3-sankey: Visualize flow between nodes in a directed acyclic network.Jul 13, 2021
Visualize flow between nodes in a directed acyclic network. - d3/d3-sankey
Deep ScatterplotsJun 26, 2021
SubmarineCableMap2021Jun 7, 2021
Interpreting Scattertext: a seductive tool for plotting textMay 30, 2021
Scroll down to see how to interpret a plot created by a great tool for comparing two classes and their corpora.
PowerBI — The tool that is beating ExcelMay 18, 2021
Data analysis and visualization have always been extremely important issues in the professional environment and a fundamental tool for decision-making in companies. In this environment, Microsoft…
Show HN: MPL Plotter – Python library to make technical plots more efficienMay 18, 2021
Publication-quality data representation library based on Matplotlib. - alopezrivera/mpl_plotter
chart-doctor/README.md at master · ft-interactive/chart-doctorMay 13, 2021
Sample files to accompany the FT's Chart Doctor column - Financial-Times/chart-doctor
The Psychology behind Data Visualization TechniquesMay 9, 2021
A short excursion into the world of human visual information processing
Make Beautiful Spatial Visualizations with Plotly and MapboxMay 5, 2021
I recently wrote a post about visualizing weather data from NOAA. We walked through processing the data and making some basic interactive maps with Plotly. In this article I want to use the same data…
newline-sandbox/d3-user-interactionsApr 18, 2021
A D3 project showing a barchart that allows user interactions
How to make a beeswarm plot | RAWGraphsJan 23, 2021
How to Create PDF Reports with Python — The Essential GuideJan 19, 2021
Create PDF reports with beautiful visualizations in 10 minutes or less.
Using strip charts to visualize dozens of time series at onceJan 19, 2021
Strip charts are extremely useful to make heads or tails from dozens (and up to several hundred) of time series over very long periods of…
chart-doctor/visual-vocabulary at master · ft-interactive/chart-doctorJan 2, 2021
Sample files to accompany the FT's Chart Doctor column - Financial-Times/chart-doctor
Annotated Heatmaps of a Correlation Matrix in 5 Simple Steps | by Julia KhoDec 26, 2020
A heatmap is a graphical representation of data in which data values are represented as colors. That is, it uses color in order to…
Treemaps: Data Visualization of Complex HierarchiesDec 25, 2020
Creating usable, readable treemaps is difficult. They are a complex, area-based data visualization for hierarchical data that can be hard to interpret precisely.
Gallery / D3 / ObservableDec 24, 2020
Looking for a good D3 example? Here’s a few (okay, …) to peruse. Animation D3’s data join, interpolators, and easings enable flexible animated transitions between views while preserving object constancy. Interaction D3’s low-level approach allows for performant incremental updates during interaction. And D3 supports popular interaction methods including dragging, brushing, and zooming. Analysis D3 is for more than visualization; it includes tools for quantitative analysis, such as data transformation, rand
Treemap | the D3 Graph GalleryDec 10, 2020
How to build a treemap with Javascript and D3.js: from the most basic example to highly customized examples.
A Step by Step Guide to Interactive Choropleth Map in PythonDec 10, 2020
Learn to Develop Choropleth Map Easily Using Python’s Folium Library
Figures library - Impossible worldDec 10, 2020
Library of impossible figures. There's greyscale and wireframe versions of figures.
Data Visualization Using Pandas BokehDec 10, 2020
Create stunning visualizations for Pandas DataFrames
Want to ditch Pinterest? Here are the best alternatives for visual inspiratNov 3, 2020
If the recent discrimination allegations against Pinterest are leaving you uninspired (if not quesy), here are some great alternatives.
Choropleth Maps — 101 using PlotlyNov 3, 2020
I have been working as a Data Analyst for almost 5 years now but, in this time I have mostly used business intelligence software for all…
Penrose: from mathematical notation to beautiful diagramsAug 10, 2020
Materials from our SIGGRAPH '20 paper.
Top 6 Python Libraries for Visualization: Which one to Use?Jul 25, 2020
Confused about which Visualization Tool to Use? I Broke Down the Pros and Cons of Each Libary for You
Extraordinary Data Visualisation — Circular ChartJul 18, 2020
A circular chart shows proportion and position relationships implemented in Python Plotly
Spike MapJul 5, 2020
Estimated population by county, 2016. See also the bubble map as an alternative presentation of this data, and an alternative implementation with Observable Plot. Data: American Community Survey This dataset comes from the U.S. Census API and contains three columns: the estimated population (as a string), the two-digit state FIPS code, and the three-digit county FIPS code. Since this dataset doesn’t include the positions of the counties, this centroid helper method is used. It takes a (already projected) Ge
Creating High Resolution Satellite Images with Mapbox and PythonJun 1, 2020
Ultra high resolution satellite and elevation imagery
How to create Voronoi regions with Geospatial data in PythonJun 1, 2020
A step by step guide on creating and plotting Voronoi diagrams in Python
Creating typography using word cloud in pythonJun 1, 2020
A Picture is worth a thousand words. Literally! there are 2200+ words in this picture. 😱
Q-Q Plots ExplainedJun 1, 2020
Not a Funnel! Use Sankey to represent your sales processJun 1, 2020
Traditional sales visualizations miss critical information about what is happening in the sales process.
Hyperspectral Image Analysis — Getting StartedMay 15, 2020
A Walkthrough on Hyperspectral Image Analysis Using Python.
Histograms vs. KDEs ExplainedMay 15, 2020
Histograms and Kernel Density Estimators explained with bricks and sandpiles
Rendering One Million Datapoints with D3 and WebGLMay 6, 2020
This blog post introduces the WebGL components which we recently added to D3FC, this suite of components make it easy to render charts with very large numbers of datapoints using D3. Throughout this post I'll describe the creation of the following visualisation, which displays 1 million books from the Hathi Trust library
OpenAI Open Sources Microscope and the Lucid Library to Visualize Neurons in Deep Neural Networks - KDnuggetsApr 24, 2020
The new tools shows the potential of data visualizations for understanding features in a neural network.
3 Python Visualization Libraries You MUST Know as A Data ScientistApr 19, 2020
In real life, data preprocessing is really a pain for most data scientists. But with the help of data visualization libraries, it actually…
Dynamic subplot layout in SeabornApr 19, 2020
Seaborn is one of the most used visualization libraries and I enjoy working with it. In my latest projects, I wanted to visualize multiple…
Visualizing Three-Dimensional Data — Heatmaps, Contours, and 3D Plots withApr 19, 2020
Plotting heatmaps, contour plots, and 3D plots with Python
Visualize Categorical Relationships With CatscatterApr 8, 2020
What if you can create a scatter plot for categorical features?
✚ How to Make a Dynamic Multi-population Pyramid in ExcelMar 9, 2020
Create better population pyramids that allow for improved comparisons between sexes and populations.
Zoomable TreemapFeb 19, 2020
This treemap supports zooming: click any cell to zoom in, or the top to zoom out.
Zoomable Area ChartFeb 19, 2020
This zoomable time series area chart shows the number of flights per day. The effect of the September 11, 2001 attacks on air travel is evident.
Rahul Agarwal on LinkedIn: #datavisualization #awesomevisualization #seaborn #pythonFeb 19, 2020
"Enter into picture Swarmplots, just like their name." https://lttr.ai/MJtZ #datavisualization #awesomevisualization #seaborn #python
507 Mechanical MovementsFeb 19, 2020
Five Hundred and Seven Mechanical Movements, now Animated for the Internet.
Bar Chart Race, ExplainedDec 23, 2019
This is a pedagogical implementation of an animated bar chart race. Read on to learn how it works, or fork this notebook and drop in your data! The data for the race is a CSV with columns date (in YYYY-MM-DD format), name, value and optionally category (which if present determines color). To replace the data, click the file icon
Task-based effectiveness of basic visualizationsOct 25, 2019
Installation — Datashader v0.16.3Aug 30, 2019
How I draw figures for my mathematical lecture notes using InkscapeApr 29, 2019
In my previous blog post, I explained how I take lecture notes using Vim and LaTeX. In this post, I’ll talk about how I draw figures for my notes using Inkscape and about my custom shortcut manager.Some examples First, let me show you some examples of figures…
Welcome to Bokeh — Bokeh 1.0.4 documentationApr 2, 2019
Bokeh is a Python library for creating interactive visualizations for modern web browsers. It helps you build beautiful graphics, ranging from simple plots to complex dashboards with streaming data...
Max Cooper - EmergenceDec 24, 2018
Emergence is the story of natural laws and processes, their inherent beauty, and their action to yield the universe, us and the world we live in.
Python Data Visualization 2018: Why So Many Libraries?Nov 26, 2018
Anaconda is the birthplace of Python data science. We are a movement of data scientists, data-driven enterprises, and open source communities.
Sector HeatmapsNov 10, 2018
Stock market rotation has been a pretty big theme this year but you wouldn't necessarily know it from our sector performance heatmap.
D3 circle scatteringOct 28, 2018
reiinakano/scikit-plot: An intuitive library to add plotting functionalityJun 8, 2018
An intuitive library to add plotting functionality to scikit-learn objects. - reiinakano/scikit-plot
ObservableFeb 1, 2018
The end-to-end solution for creating expressive data apps, dashboards, and reports. Discover richer insights in your data today.
Top 50 ggplot2 Visualizations - The Master List (With Full R Code)Dec 27, 2017
R Language Tutorials for Advanced Statistics
The Beauty of Bresenham's AlgorithmDec 27, 2017
Layered Data Visualizations Using R, Plotly, and DisplayrDec 27, 2017
If you have tried to communicate research results and data visualizations using R, there is a good chance you will have come across one of its great limitations. R is painful when you need to...
Data Visualization – Part 2Dec 27, 2017
Stay up-to-date on the latest data science and AI news in the worlds of artificial intelligence, machine learning, deep learning, implementation, and more.
Parfit — quick and powerful hyper-parameter optimization with visualizationNov 29, 2017
An introduction to parfit
The Python Graph Gallery – Visualizing data – with PythonNov 11, 2017
The Python Graph Gallery displays hundreds of charts made with Python, always with explanation and reproduciible code
voila
Table of contents — voila 0.5.0a0 documentationMar 24, 2023
The 8 surprising ways how to use Jupyter Notebook | MLJARJun 1, 2022
Explore the Jupyter Notebook beyond its traditional use. Discover 8 alternative ways to utilize this versatile tool, making it even more powerful for coding, experimentation, and collaboration.
vue
Meteor Vue JS Storybook = A Complete Guide To Scalable UI SystemApr 14, 2022
It has been more than one year since we have introduced Vue Js in our Meteor Production App, and last month we have implemented the…
PacktPublishing/Learning-Vuejs-2: This is the code repository for Learning Vue.js 2, published by Packt.Jan 16, 2022
This is the code repository for Learning Vue.js 2, published by Packt. - PacktPublishing/Learning-Vuejs-2
What Is Vue.js?Jan 12, 2022
What is Vue.js? In short, it's a progressive framework for building user interfaces using HTML and JavaScript. If you'd like a more detailed explanation, watch this quick video from my course, A...
Vue CLI 3.0 is here!Dec 16, 2021
Over the past few months, we’ve been working really hard on the next generation of Vue CLI, the standard build toolchain for Vue…
Vue.js And SEO: How To Optimize Reactive Websites For Search Engines And Bots — Smashing MagazineDec 14, 2021
Do websites created with reactive frameworks get indexed by Google and other search engines? Is it compulsory to set up pre-rendering, as your SEO consultants suggest? Or are they wrong? In this article, Paolo Mioni will talk mostly about Vue.js, since it is the framework he’s used most, and with which he has direct experiences in terms of indexing by the search engines on major projects, but most of what will be covered is valid for other frameworks, too.
vuejs/awesome-vue: 🎉 A curated list of awesome things related to Vue.jsDec 14, 2021
🎉 A curated list of awesome things related to Vue.js - vuejs/awesome-vue
Building An Interactive Infographic With Vue.js — Smashing MagazineDec 11, 2021
Have you ever had a requirement in which you had to design and build an interactive web experience but the grid system fell short? Furthermore, the design elements turned into unusual shapes that just wouldn’t fit into the regular web layouts? In this article, Krutie Patel is going to build an interactive infographic using Vue.js, SVG and GreenSock by using dynamic data and unusual layout.
Angular v/s React v/s Vue: The Complete ComparisonAug 27, 2020
"Framework is heart of every technology." Whether you are a beginner, a senior developer, a freela...
An introduction to Vue.js - Chapter 1 - Basic SetupDec 27, 2017
This is a simple introduction to Vue.js, starting with a simple setup
An introduction to Vue.js - Chapter 2 - Components (Part I)Dec 27, 2017
This is a simple introduction to Vue.js, this time with simple components
water
‘Bubbles’ turn air into drinkable waterAug 26, 2025
An atmospheric water harvester based on an origami-inspired hydrogel works anywhere—even Death Valley.
How Does the US Use Water?Aug 21, 2025
Water infrastructure often gets less attention and focus than other types of infrastructure.
A Spring in Every Kitchen — The New AtlantisMay 1, 2025
We know how to produce clean water. Why don't we have enough of it?
web-crawlers
How to Remove a Web Page from GoogleOct 20, 2025
The reasons for deindexing a page haven't much changed over the years, although the tools and tactics have evolved.
How to Fingerprint Websites With WhatWeb - A Practical, Hands-On GuideOct 17, 2025
Another one of our simple, hands-on pen-testing tutorials. This one teaches you to finger a website for status code, server info, CMS etc.
Crawlers And Agents And Bots, Oh My: Time To Clarify Robots.txtJul 4, 2024
Perplexity is an up-and-coming AI company that has broad ambition to compete with Google in the search market by providing answers to user queries with AI as its core technology. They’ve been…
Can Robots.txt Files Really Stop AI Crawlers?Feb 19, 2024
The text file that runs the internetFeb 15, 2024
As unscrupulous AI companies crawl for more and more data, the basic social contract of the web is falling apart.
Training Data for the Price of a Sandwich: Common Crawl’s Impact on Generative AIFeb 10, 2024
Mozilla research finds that Common Crawl's outsized role in the generative AI boom has improved transparency and competition, but is also contributing to biased and opaque generative AI models.
How to Use Web Crawlers for SEODec 22, 2022
Web crawler tools are essential for search engine optimization, but the info they provide can be overwhelming. Here's how to prioritize and cut through the clutter.
Making a DNS query in Ruby from scratchNov 7, 2022
SEO How-to, Part 9: Diagnosing Crawler IssuesJun 28, 2022
Search engines must crawl and index your site before it can rank in organic search. Thus optimizing your content is pointless if search engines cannot access it. This is the ninth installment in my “SEO How-to” series.
Usage · ArchiveBox/ArchiveBox Wiki · GitHubJun 23, 2022
🗃 Open source self-hosted web archiving. Takes URLs/browser history/bookmarks/Pocket/Pinboard/etc., saves HTML, JS, PDFs, media, and more... - ArchiveBox/ArchiveBox
web-hosting
Top 20 Web Hosting Services in 2024 - Choose the Best for Your Website ?Feb 29, 2024
Top 20 Web Hosting Services in 2024 - Choose the Best for Your Website 🚀 Hostinger :- Get Hosting...
Top 20 Free Static Web Hosting Services in 2024 ⚡️Feb 11, 2024
Top 20 Free Static Web Hosting Services in 2024 ⚡️ Hostinger :- Get Hosting on Big Discount...
How we handle 80TB and 5M page views a month for under $400Jan 7, 2022
How the heck do we run a massively popular website and asset resource while being funded primarily by donations?
ngrok - secure introspectable tunnels to localhostJun 7, 2021
ngrok is a secure ingress platform that enables developers to add global server load balancing, reverse proxy, firewall, API gateway and Kubernetes Ingress to applications and APIs.
Paperspace | Gradient ProjectsDec 18, 2020
Build and scale ML applications with a cloud platform focused on speed and simplicity.
Introducing Gradient Community Notebooks: Easily Run ML Notebooks on Free GDec 14, 2019
Gradient Community Notebooks provide free GPUs with pre-configured environments for machine learning and deep learning projects.
web-scraping
With Spotify’s Library Plundered, the Door Is Open for Music Preservation, but Also for AI CompaniesDec 22, 2025
Spotify's library was scraped in the name of music preservation, but will this make illegally training AI even easier?
How to Combat AI Bot Traffic on Your WebsiteMay 7, 2025
AI bots are straining our websites by ignoring robots.txt and scraping our content. Learn how you can fight back with tools, plugins, and CDN services to block unwanted AI crawlers and protect resources.
A Step by Step Guide to Build a Trend Finder Tool with Python: Web Scraping, NLP (Sentiment Analysis & Topic Modeling), and Word Cloud VisualizationMar 9, 2025
A Step by Step Guide to Build a Trend Finder Tool with Python: Web Scraping, NLP (Sentiment Analysis & Topic Modeling), and Word Cloud Visualization
Cutting-edge web scraping techniques at NICARMar 9, 2025
Here's the handout for a workshop I presented this morning at [NICAR 2025](https://www.ire.org/training/conferences/nicar-2025/) on web scraping, focusing on lesser know tips and tricks that became possible only with recent developments …
Top 15 Web Scraping Tools for Data CollectionNov 16, 2024
Web scraping has emerged as a crucial method for gathering data, allowing companies and researchers to extract insightful information from the abundance of publicly accessible online content. Selecting the best online scraping tool might be difficult because there are so many of them accessible, each with its own special features and capabilities. The best 15 web scraping tools in the market have been examined in this article, along with their salient features, advantages, and applications. These tools offer a variety of choices to effectively extract, process, and analyze data from various web sources. Scrapy A powerful, open-source Python framework called
Firecrawl: A Powerful Web Scraping Tool for Turning Websites into Large LanJun 20, 2024
In the rapidly advancing field of Artificial Intelligence (AI), effective use of web data can lead to unique applications and insights. A recent tweet has brought attention to Firecrawl, a potent tool in this field created by the Mendable AI team. Firecrawl is a state-of-the-art web scraping program made to tackle the complex problems involved in getting data off the internet. Web scraping is useful, but it frequently requires overcoming various challenges like proxies, caching, rate limitations, and material generated with JavaScript. Firecrawl is a vital tool for data scientists because it addresses these issues head-on. Even without a sitemap,
Web Scraping in Ruby: Complete Guide 2023 - ZenRowsMar 17, 2023
Get started with web scraping in Ruby using this step-by-step tutorial! Learn how to scrape a site with Nokogiri and RSelenium libraries.
Web Scraping Blog - ZenRowsMar 17, 2023
Master your web scraping skills. Learn all the tips and insights we know about data collection at scale. Everything from guides to easy-to-follow tutorials.
Web Scraping With Puppeteer for Total NoobsJan 31, 2023
Web scraping is something I never thought I'd do. I'm primarily a UI developer, although my career...
vifreefly/kimuraframework: Kimurai is a modern web scraping framework writtJan 31, 2023
Kimurai is a modern web scraping framework written in Ruby which works out of box with Headless Chromium/Firefox, PhantomJS, or simple HTTP requests and allows to scrape and interact with JavaScrip...
Web Scraping with Ruby | ScrapingBeeJan 30, 2023
Learn web scraping with Ruby with this step-by-step tutorial. We will see the different ways to scrape the web in Ruby through lots of example with gems like Nokogiri, Kimurai and HTTParty.
Web Scraping - A Complete GuideJan 22, 2023
Introduction Web Scraping, also known as data extraction or data scraping, is the process...
Hacker NewsNov 13, 2022
Command-line XML and HTML beautifier and content extractor - sibprogrammer/xq
Scraping JSON, HTML, and ZIP Files with Pure SQLiteOct 4, 2022
a.k.a. leave BeautifulSoup in the past and embrace SQL I used DALL·E to generate thumbnails for this post: “cute cartoon|claymation abominable snowman scraping ice off his frozen car windshield” is nightmare fuel Some of the most common web-scraping tasks can be done in pure SQLite - meaning no Python, Node, Ruby, or other programming languages necessary, only the SQLite CLI and some extensions. The main extension that enables this: sqlite-http, which allows you to make HTTP requests and sa
Finding an Image on a Web Page | TestComplete DocumentationSep 20, 2022
Create and run automated tests for desktop, web and mobile (Android and iOS) applications (.NET, C#, Visual Basic .NET, C++, Java, Delphi, C++Builder, Intel C++ and many others).
Download ParseHub | Our Quickstart GuideAug 30, 2022
13 Tips on How to Crawl a Website Without Getting BlockedJun 14, 2022
It’s not a secret that businesses and individuals use web scrapers to collect public data from...
Ruby Web ScrapingMay 28, 2022
86K subscribers in the ruby community. Celebrate the weird and wonderful Ruby programming language with us!
How to Scrape and Extract Data from PDFs Using Python and tabula-pyFeb 21, 2022
You want to make friends with tabula-py and Pandas
Scrape Data from PDF Files Using Python and PDFQueryFeb 21, 2022
Extract Data from PDF Files Effectively
Crawling - The Most Underrated Hack by @ttunguzDec 26, 2021
It’s been a little while since I traded code with anyone. But a few weeks ago, one of our entrepreneurs-in-residence, Javier, who joined Redpoint from VMWare, told me about a Ruby gem called Mechanize that makes it really easy to crawl websites, particularly those with username/password logins. In about 30 minutes I had a working LinkedIn crawler built, pulling the names of new followers, new LinkedIn connections and LinkedIn status updates.
When is a Scrape a Breach?Dec 23, 2021
A decade and a bit ago during my tenure at Pfizer, a colleague's laptop containing information about customers, healthcare providers and other vendors was stolen from their car [https://www.doj.nh.gov/consumer/security-breaches/documents/pfizer-20110610.pdf] . The machine had full disk encryption and it's not known whether the
How to Crawl the Web with ScrapyOct 1, 2021
How to use the python web scraping framework Scrapy to crawl indeed.com. Learn data engineering strategies for getting actionable insights from public information.
Top 4 Data Extraction ToolsMay 31, 2021
Data extraction tools give you the boost you need for gathering information from a multitude of data sources. These four data extraction tools will help liberate you from manual data entry, understand complex documents, and simplify the data extraction process.
Web Scraping to Create a Dataset using PythonMay 18, 2021
In this article, I'm going to walk you through a tutorial on web scraping to create a dataset using Python and BeautifulSoup.
6 Web Scraping Tools That Make Collecting Data A Breeze | by Sara A. MetwalJan 29, 2021
The first step of any data science project is data collection.
Scrape the Web at Scale With the scrapestack APIJan 27, 2021
Introduction to Web Scraping Businesses need better information to target and reach wider audiences. They get this information by scraping the web for content from social media platforms,...
Holy sheet: Here’s how to grab a web page’s data with Google SheetsMar 31, 2020
You don’t need any coding skills to scrape data from websites.
HTML Parser: How to scrap HTML content | Python CentralDec 23, 2019
A tutorial about a HTML parser for Python 3. Learn about the basic of a library for easily parsing web pages and extracting useful information.
Turn the web into a database: An alternative to web crawling/scraping - Mixnode News BlogOct 8, 2018
Mixnode allows you to execute SQL against the web.
web-servers
SSH Hardening: Best Practices for Securing Your ServerFeb 4, 2026
Learn how to harden your SSH server with best practices including key-only authentication, disabling root login, changing the default port, and setting up Fail2Ban.
The dangers of SSL certificatesDec 28, 2025
Yesterday, the Bazel team at Google did not have a very Merry Boxing Day. An SSL certificate expired for and as shown in this screenshot from the github issue. This expired certificate apparently b…
How to Fingerprint Websites With WhatWeb - A Practical, Hands-On GuideOct 17, 2025
Another one of our simple, hands-on pen-testing tutorials. This one teaches you to finger a website for status code, server info, CMS etc.
How to Combat AI Bot Traffic on Your WebsiteMay 7, 2025
AI bots are straining our websites by ignoring robots.txt and scraping our content. Learn how you can fight back with tools, plugins, and CDN services to block unwanted AI crawlers and protect resources.
How SSL Misconfigurations Impact Your Attack SurfaceApr 2, 2025
53.5% of websites have weak SSL setups—leaving attack surfaces exposed and increasing breach risk.
Zero-downtime with Rails credentialsNov 16, 2024
Transitioning the codebase from using environment variables to Rails Credentials for Zero-Downtime Deploys.
Powerful open-source server solutionsMay 11, 2024
Proxmox develops powerful and efficient open-source server solutions like the Proxmox VE platform, Proxmox Backup Server, and Proxmox Mail Gateway.
Should I use Nginx or Apache Server?Apr 7, 2024
Both Nginx and Apache are popular webservers that are used to host applications and websites on the...
NGINX vs Apache : A Comparison of Web ServersApr 12, 2023
When it comes to choosing a web server for your website or web application, two popular options are...
How to implement a Load Balancer Using Nginx & DockerApr 7, 2023
Scaling becomes a necessary part for your system when your system grows in popularity. There are two...
Hosting Your Own Web Application: A Beginner's Guide with NginxMar 24, 2023
#Introduction Have you ever desired you could develop a web application locally on your computer...
Mastering Nginx for Node.js: Best Practices and TipsFeb 19, 2023
Nginx is a popular web server that is widely used to serve static content, reverse proxy, and load...
Build Your Own Web Server With Ruby - RubyGuidesNov 8, 2022
Have you ever built your own web server with Ruby? We already have many servers, like: Puma Thin Unicorn But I think this is a great learning exercise
Use One Big Server - Speculative BranchesAug 2, 2022
Building a Web server in Bash, part I - socketsAug 1, 2022
Have you ever wondered how a Web server works under the hood? Moreover, would you be willing to...
File: README — Puma masterJun 4, 2022
Using Siege to Stress Test an ApplicationJan 16, 2022
Recently the company I work for migrated to new servers. During this migration we were all fairly confident that our new architecture would work and would be able to sustain considerable traffic. How much traffic is "considerable traffic"? In all honesty, none of our team and even our consultants, could
Performance Tuning – Tips & TricksJan 16, 2022
Let’s Build A Web Server. Part 2.Jan 12, 2022
Remember, in Part 1 I asked you a question: “How do you run a Django application, Flask application, and Pyramid application under your freshly minted Web server without making a single change to the server to accommodate all those different Web frameworks?” Read on to find out the answer. In …
Let’s Build A Web Server. Part 1.Jan 12, 2022
Out for a walk one day, a woman came across a construction site and saw three men working. She asked the first man, “What are you doing?” Annoyed by the question, the first man barked, “Can’t you see that I’m laying bricks?” Not satisfied with the answer, she …
Nginx Guide Code Tutorials | Envato Tuts+Jan 12, 2022
More than 20% of sites on the internet use Nginx as their web server. How can you use it for your website?
imthenachoman/How-To-Secure-A-Linux-Server: An evolving how-to guide for securing a Linux server.Jan 12, 2022
An evolving how-to guide for securing a Linux server. - imthenachoman/How-To-Secure-A-Linux-Server
How To Configure the Apache Web Server on an Ubuntu or Debian VPS | DigitalOceanJan 4, 2022
The Apache web server is the most popular way to serve web content on the internet. The Apache provides a modular and scalable server that can satisfy the n…
Beginner’s GuideJan 4, 2022
Let’s Build A Web Server. Part 3.Jan 2, 2022
“We learn most when we have to invent” —Piaget In Part 2 you created a minimalistic WSGI server that could handle basic HTTP GET requests. And I asked you a question, “How can you make your server handle more than one request at a time?” In this article you will …
Four Linux server monitoring toolsDec 13, 2021
Here is four strong monitoring tools i would like to present for you. htop - interactive process viewer You may know the standard tool for watching real time processes on your machine top. If not, run $ top to see it in action, and $ man top to read the manual. The
Home : The Official Microsoft IIS SiteDec 13, 2021
My First 10 Minutes On a Server - Primer for Securing Ubuntu | CodelittDec 12, 2021
How to secure an ubuntu server against attacks.
A Fast, Concurrent Web Server for Ruby & Rack - PumaDec 12, 2021
Puma - A Fast, Concurrent Web Server for Ruby & Rack.
Caddy - The Ultimate Server with Automatic HTTPSDec 12, 2021
Caddy is a powerful, enterprise-ready, open source web server with automatic HTTPS written in Go
Glossary: Cybersecurity Terms & DefinitionsDec 11, 2021
Learn about common industry terms and definitions related to cybersecurity and application delivery from the experts at F5.
Glossary: Cybersecurity Terms & DefinitionsDec 2, 2021
Learn about common industry terms and definitions related to cybersecurity and application delivery from the experts at F5.
Common Nginx misconfigurations that leave your web server open to attackFeb 25, 2021
Detectify analyzed 50,000 unique Nginx configuration files on GitHub and reported some common misconfigurations.
Performance Tuning - Tips & Tricks - NGINXFeb 12, 2019
webassembly
Ruby on Rails on WebAssemblyFeb 6, 2025
Step-by-Step Guide To Using WebAssembly for Faster Web AppsOct 17, 2024
Boost web app performance and security by integrating WebAssembly with these practical steps.
Why We Chose WebAssembly (Wasm) for Our Edge RuntimeMay 28, 2024
Discover why Gcore chose Wasm for building a new serverless edge computing service, and how Wasm helps with deploying distributed applications.
Level Up with WebAssembly BookJan 16, 2022
A practical book for web developers looking to get started with WebAssembly, even if you don't know any C or C++.
I want to… - WebAssemblyDec 11, 2021
How We Used WebAssembly To Speed Up Our Web App By 20X (Case Study) — Smashing MagazineDec 11, 2021
WebAssembly is a new language that runs in the browser alongside JavaScript. In this article, Robert Aboukhalil explores how you can speed up web applications by replacing slow JavaScript calculations with compiled WebAssembly. This is a case study on using WebAssembly to speed up a data analysis web tool. To that end, Robert will take an existing tool written in C that performs the same computations, compile it to WebAssembly, and use it to replace slow JavaScript calculations.
webdev
Getting Started With The Popover APIMar 2, 2026
What happens if you rebuild a single tooltip using the browser’s native model without the aid of a library? The Popover API turns tooltips from something you simulate into something the browser actually understands. Opening and closing, keyboard interaction, Escape handling, and much of the accessibility now come from the platform itself, not from ad-hoc JavaScript.
DNS Explained - How Domain Names Get ResolvedFeb 6, 2026
Learn how DNS works: hierarchy, records (A, CNAME, MX, TXT), TTL caching, and the full resolution process. Plus commands to view and clear DNS cache.
The dangers of SSL certificatesDec 28, 2025
Yesterday, the Bazel team at Google did not have a very Merry Boxing Day. An SSL certificate expired for and as shown in this screenshot from the github issue. This expired certificate apparently b…
How To Measure The Impact Of Features — Smashing MagazineDec 19, 2025
Meet TARS — a simple, repeatable, and meaningful UX metric designed specifically to track the performance of product features. Upcoming part of the Measure UX & Design Impact (use the code 🎟 IMPACT to save 20% off today).
Masonry: Things You Won’t Need A Library For AnymoreDec 2, 2025
CSS Masonry is almost here! Patrick Brosset takes a deep dive into what this long-awaited feature means for web developers and how you could make use of it in your own work.
Linking to text fragments with a bookmarkletSep 15, 2025
I've written a bookmarklet that helps me link to specific text on a web page.
Tools and resources our designers are using right nowApr 14, 2025
A list of what tools and resources are most relevant for our designers right now.
Apache EChartsApr 9, 2025
Apache ECharts, a powerful, interactive charting and visualization library for browser
Everything you need to start blogging as a developer!May 1, 2024
Hashnode is a free developer blogging platform that allows you to publish articles on your own domain and helps you stay connected with a global developer community.
Creating CSS masonry-style layoutsMar 22, 2023
Written by Nwani Victory✏️ When designing a page with content overflowing the viewport, an indirect...
Mastering CSS Flexbox: From Basics to Advanced TechniquesFeb 18, 2023
Introduction Are you tired of using tables, floats, and other traditional CSS layout...
Putting Gears In Motion: Animating Cars With HTML And SVGFeb 17, 2023
SVG `` provides a way to define how an element moves along a motion path. In this article, Paul Scanlon shares an idea of how to use it by animating race cars in an infinite loop as easy as one-two-three!
Easy SVG Customization And Animation: A Practical GuideFeb 17, 2023
Developers often feel discouraged from editing SVG markup and experimenting with SVG animations, thinking it’s a significant time investment or they need to use a complex animation library to do so. In this article, Adrian showcases his favorite tricks, which make the process streamlined and fun.
SVG — Smashing MagazineFeb 17, 2023
Smashing Magazine — front-end, UX and design for front-end engineers and designers
76 CSS CardsFeb 15, 2023
Welcome to our collection of CSS cards! In this comprehensive compilation, we have gathered a wide range of free HTML and CSS card code examples from various reputable sources, including CodePen, GitHub, and other valuable resources.
Relearn CSS layoutFeb 13, 2023
Web Design & Development ToolkitFeb 12, 2023
Discover hundreds of web design & development resources in this carefully curated collection.
Npm vs Yarn: What Should you use for managing packages in React?Feb 11, 2023
Both npm (Node Package Manager) and Yarn are popular package managers for JavaScript projects,...
How To Build A Magazine Layout With CSS Grid AreasFeb 10, 2023
Web development, especially what you can do with CSS, has become increasingly complex. With the added capabilities of CSS Grid, it is now possible to achieve layouts that look like they were laid out by hand. Let’s tackle a practical example of how to do something like that.
Native CSS masonry layout | pawelgrzybek.comFeb 10, 2023
A masonry type of layout, one of the biggest obsessions of UX designers, is finally coming to CSS. Style popularized by Pinterest, where elements fill the vertical gaps instead of being aligned to the row axis.
Sticky Notes with CSS3Feb 7, 2023
What is a sticky notes with css3, How do you make a sticky notes with css3? Sticky Notes with CSS3...
Using Curl to make REST API requests | LinuxizeFeb 4, 2023
In this article, we're going to discuss how to use Curl to interact with RESTful APIs. Curl is a command-line utility for transferring data from or to a remote server.
Google Arts & CultureFeb 4, 2023
Google Arts & Culture features content from over 2000 leading museums and archives who have partnered with the Google Cultural Institute to bring the world's treasures online.
5 Node.js Tools to Learn in 2023Feb 1, 2023
Check out 5 Node.js tools that can help boost your productivity in 2023.
7 Open-Source Log Management Tools that you may consider in 2023Jan 31, 2023
Effective log management is a fundamental aspect of maintaining and troubleshooting today's complex...
CSS Named Colors: Groups, Palettes, Facts, & FunJan 26, 2023
Note: Due to publishing limitations, the groups of colors in this post are inserted as images. For...
10 Essential Design System ComponentsJan 24, 2023
Learn about design system components. Deepen your knowledge of atomic design and see how you can use it for product design. Enjoy!
Level Up Your CSS Skills With The :has() SelectorJan 24, 2023
The CSS relational selector :has() offers what was previously impossible without JavaScript. Let’s explore some magical powers that :has brings.
The Top Five Static Site Generators (SSGs) for 2023 — and when to use themJan 17, 2023
There’s no shortage of static site generators (SSGs) to choose from, though I’ve limited the below...
What if writing tests was a joyful experience?Jan 13, 2023
At Jane Street we use a pattern/library called “expect tests” thatmakes test-writing feel like a REPL session, or like exploratoryprogramming in a Jupyter no...
Animation Techniques with anime.js: Timing, Easing, and KeyframesJan 1, 2023
Welcome to the second tutorial in this series on animating with anime.js! In the previous post,...
An Ultimate Guide On Sizing, Spacing, Grids And Layout In Web And UI/UX DesDec 30, 2022
A grid is like invisible glue that holds a design together. Even when elements are physically separated from each other, something invisible connects them together. Grids help designers to build better products by tying different design elements together to achieve effective hierarchy, alignment and consistency, with little effort. If executed properly, your designs will appear thoughtful and organized. In this article Nick Babich aims to give you a good understanding of grid systems, what they are, and how they can be applied to your design process. Understanding how to use grids will come from practical experience.
InnerHTML vs. InnerText vs. TextContent: A Guide | Built InDec 23, 2022
InnerHTML, innerText and textContent can each help to manipulate JavaScript code, but they contain subtle differences. Here’s what to know
How to design almost any UI element (list of ~58 articles of how to properlDec 23, 2022
Buttons. 7 Basic Rules for Button Design by @101babich Button Design Cheatsheet for...
UTM Parameters Best Practices & Intro | RafflecopterDec 21, 2022
Do you know where your site traffic comes from? Which of your campaigns drives the most traffic? Let's investigate UTM parameters best practices.
When to use gRPC vs GraphQL - Stack OverflowDec 10, 2022
Counting unique visitors without using cookies, UIDs or fingerprinting.Nov 30, 2022
Building a web analytics service without cookies poses a tricky problem: How do you distinguish unique visitors?
Build Your Own Web Server With Ruby - RubyGuidesNov 8, 2022
Have you ever built your own web server with Ruby? We already have many servers, like: Puma Thin Unicorn But I think this is a great learning exercise
Making a DNS query in Ruby from scratchNov 7, 2022
Introducing Turbopack: Rust-based successor to Webpack – VercelOct 26, 2022
Introducing Turbopack, the Rust-based successor to Webpack.
Security Best Practices for Your Rails ApplicationOct 5, 2022
Ensure your Rails application stays secure by following some best practices and habits.
The Thorny Problem of Keeping the Internet’s TimeOct 2, 2022
An obscure software system synchronizes the network’s clocks. Who will keep it running?
GIFs Without the .gif: The Most Performant Image and Video Options Right NoSep 30, 2022
So you want an auto-playing looping video without sound? In popular vernacular this is the very meaning of the word GIF. The word has stuck around but the
25 Free Tools to Test Your WebsiteSep 27, 2022
This all-new update to our popular resource includes tools to evaluate page speed, security, accessibility, regulatory compliance, code, and more.
Render: Awesome alternative for HerokuSep 22, 2022
Heroku will stop offering its free tiers this November, leaving developers to choose other...
Finding an Image on a Web Page | TestComplete DocumentationSep 20, 2022
Create and run automated tests for desktop, web and mobile (Android and iOS) applications (.NET, C#, Visual Basic .NET, C++, Java, Delphi, C++Builder, Intel C++ and many others).
Accessibility UX Best Practices – 8 Tactics for Web DesignSep 14, 2022
Learn 8 accessibility hacks that will make your website suitable for a variety of users, including those who have certain challenges.
TIL: You Can Access A User's Camera with Just HTMLSep 8, 2022
The HTML capture attribute is interesting because it allows you to activate a user's camera with just HTML. This article covers it in more depth.
The Realities And Myths Of Contrast And Color — Smashing MagazineSep 8, 2022
In this article, Andrew Somers, a 35-year veteran of the Hollywood film and television industry, shares his experience about the hard-fought battles and lessons learned designing for illuminated presentations.
gchq/CyberChef: The Cyber Swiss Army Knife - a web app for encryption, encoding, compression and data analysisSep 5, 2022
The Cyber Swiss Army Knife - a web app for encryption, encoding, compression and data analysis - gchq/CyberChef
CyberChefSep 5, 2022
The Cyber Swiss Army Knife - a web app for encryption, encoding, compression and data analysis
Infinite Scrolling: When to Use It, When to Avoid ItSep 5, 2022
Infinite scrolling minimizes interaction costs and increases user engagement, but it isn’t a good fit for every website. For some, pagination or a Load More button will be a better solution.
Heroku no longer offers free service, what's the best alternative now?Aug 30, 2022
Heroku was such a simple and free experience to host side project and start developing. What is the...
Heroku no longer offers free service, what's the best alternative now?Aug 30, 2022
Heroku was such a simple and free experience to host side project and start developing. What is the...
Free Alternatives to HerokuAug 30, 2022
Given the recent news about Heroku bringing an end to free dynos and PostgreSQL databases, what other...
Top 10 JavaScript Frameworks to Use in 2022Aug 29, 2022
Introduction Being a multi-paradigm language, JavaScript maintains programming styles...
10 ways to speed up JavaScript loadingAug 19, 2022
In many modern websites, there is a lot of JavaScript. In fact, according to the HTTP Archive, the...
Kits | Foundation 6Aug 5, 2022
Building a Web server in Bash, part I - socketsAug 1, 2022
Have you ever wondered how a Web server works under the hood? Moreover, would you be willing to...
Build Your Own Web Framework – VercelJul 30, 2022
Build your own web framework that deploys to edge and serverless infrastructure.
Test Your Product On A Crappy Laptop | CSS-TricksJul 29, 2022
There is a huge and ever-widening gap between the devices we use to make the web and the devices most people use to consume it. It’s also no secret
vs. : How To Choose The Right One — Smashing MagazineJul 29, 2022
In this article, Olushuyi explores a mental model that helps you decide between the `` and `` elements when writing documents. You will explore how grouping content affects accessibility and how you can make it all count for users.
Productivity Tips And Tools For A More Efficient Workflow — Smashing MagazineJul 27, 2022
Who doesn’t love a good timesaver? In this post, we compiled useful productivity tips and tools that help you speed up routine tasks, enhance your development workflow, and stay organized.
Emoji Kitchen BrowserJul 26, 2022
Browse thousands of delightful Emoji Kitchen combinations, available in Gboard for Android.
The Magical Use of Uncommon Labels Fieldset and LegendJul 26, 2022
How to use Fieldset and Legend to create an amazing border effect.
Introduction to TCP and SocketsJul 20, 2022
Scaling Engineering Teams via RFCs: Writing Things DownJul 18, 2022
I have recently been talking at small and mid-size companies, sharing engineering best practices I see us use at Uber, which I would recommend any tech company adopt as they are growing. The one topic that gets both the most raised eyebrows, as well the most "aha!" moments is the
Eye-Catching Typography To Get More LeadsJul 6, 2022
Noupe passionately delivers stylish and dynamic news for designers and Web developers across the globe on all subjects of design; ranging from CSS, Photography, JavaScript, Web design, Graphics, Typography and much more.
Learn the Python Anvil FrameworkJul 5, 2022
3 Best Website Uptime Monitoring Tools Jul 4, 2022
One way to achieve this is by employing uptime and downtime monitoring tools. Why Is Website Uptime Monitoring Important? An uptime monitoring solution can help you prevent or reduce these losses. Thus, you must employ a dependable tool that detects downtime or any interruptions related to your…
Bootstrap CSS is still the sh*t. But we can make it better.Jul 1, 2022
Bootstrap is an amazing CSS framework for those who struggle with design, css, or need to build...
Hotjar: Website Heatmaps & Behavior Analytics ToolsJun 23, 2022
The next best thing to sitting beside someone browsing your site. See where they click, ask what they think, and learn why they drop off. Get started for free.
Hacker NewsJun 23, 2022
An introduction to Web Authentication (WebAuthn), the new API that can replace passwords with strong authentication.
Perfect CTA Placement: Above-The-Fold Vs. Below-The-FoldJun 21, 2022
Should You Place a CTA Above the Fold? Experts in the design and digital marketing world have frequently claimed that if you want to get the best results with a CTA , you need to place it above the fold. Just look at this landing page from Lyft, for instance, you immediately see what you need to do…
6 In-demand Marketing Skills for Your Design CVJun 21, 2022
In today’s tech-savvy world, being a great designer is not all about being a whiz at tools such as Adobe Photoshop and Adobe Illustrator. The job is
You’re not still using “Read More” are you?Jun 21, 2022
It’s probably not the first time you’ve heard that using links like “Read More” or “Click Here” is bad practice. This topic has been…
13 Tips on How to Crawl a Website Without Getting BlockedJun 14, 2022
It’s not a secret that businesses and individuals use web scrapers to collect public data from...
21 Examples of Pricing Pages in Web DesignJun 13, 2022
Find a good available .com domain | Derek SiversJun 13, 2022
The attacker’s toolkit: Ransomware-as-a-serviceJun 12, 2022
In recent years, threat actors have begun collaborating in a ransomware-as-a-service (RaaS) model to infiltrate organizations.
8 CSS Snippets That Demonstrate the Power of Shadow EffectsJun 12, 2022
A collection of useful code snippets that demonstrate the usefulness and what you can fully achieve with CSS shadow effects.
15 Beautiful Color Gradients using CSSJun 12, 2022
👋, I am here with another list. In this post I have enlisted 15 aesthetic color gradients using CSS...
10 Surprising Things You Didn't Know About HTTP | Web Dev GuildJun 11, 2022
HTTP is a staple of the web, but that doesn't mean it doesn't have some secrets.
gRPC vs. REST: Getting Started With the Best API Protocol | ToptalJun 11, 2022
Discover gRPC's fresh, new approach to web communication.
Write HTML RightJun 11, 2022
Even with a lot of help from a good text editor, writing HTML can be a drag. Nice documents end up as tag-swamps with little bits of content perched atop hills of tabs. Editing them becomes a test of patience and we get sick at the thought of having to look at our once-loved text. It doesn't have to be like this! There's a lightweight, easygoing way to write HTML that's been around since the beginning of the web.
#HEXWORDSJun 9, 2022
Style TilesJun 4, 2022
A Style Tile is a design deliverable consisting of fonts, colors and interface elements that communicates the evolution of a visual brand for the web. Learn how to use them here.
4 technical SEO issues auditing tools won’t show youJun 1, 2022
Here are four of the top technical SEO issues that your auditing tools won't show you and how to find them.
Markdown Tutorial Using Rails appMay 30, 2022
In this markdown tutorial using rails app learn a step-by-step process to add Markdown support to the Rails app using Redcarpet and Coderay gems.
Magical SVG TechniquesMay 29, 2022
Smart SVG techniques, from generative SVG grids to SVG paths with masks, grainy SVG gradients, cut-out effects and fractional SVG stars. Let’s look at some magical SVG techniques that you can use right away.
gztchan/awesome-design: 🌟 Curated design resources from all over the world.May 28, 2022
🌟 Curated design resources from all over the world. - gztchan/awesome-design
An in-depth SVG tutorialMay 28, 2022
SVG is an awesome and incredibly powerful image format. This tutorial gives you an overview of SVG by explaining all you need to know in a simple way
Deploy app servers close to your users · FlyMay 20, 2022
The Future of Search Is Boutique | FutureMay 18, 2022
The way to improve search is not to mimic Google, but instead to build boutique search engines that index, curate, and organize things in new ways.
CSS Tips - Marko Denic - Web DeveloperMay 12, 2022
CSS tips and tricks you will not see in most tutorials.
Total number of Websites - Internet Live StatsMay 5, 2022
How many websites are there on the Web? Number of websites by year and growth from 1991 to 2016. Historical count and popular websites starting from the first website until today. Charts, real time counter, and interesting info.
https://social.techcrunch.com/2022/04/23/seo-scammers-buy-expired-domains-vexing-google-trust/May 3, 2022
Creating Style GuidesApr 15, 2022
A style guide, also referred to as a pattern library, is a living document that details the front-end code for all the elements and modules of a website or application. It also documents the site’s…
Seriously, stop using RSA | Trail of Bits BlogApr 3, 2022
Here at Trail of Bits we review a lot of code. From major open source projects to exciting new proprietary software, we’ve seen it all. But one common denominator in all of these systems is that fo…
Tao of Node - Design, Architecture & Best Practices | Alex Kondov - SoftwarMar 27, 2022
One of the main benefits of JavaScript is that it runs both in the browser and the server. As an engineer you need to master a single language and your skills…
This browser you've never heard of is now worth a billion dollarsMar 27, 2022
Island is among the fastest companies to reach unicorn status
8 CSS & JavaScript Snippets for Creating Cool Card UI Hover EffectsMar 23, 2022
From bold transformations to simple highlights, we share some fantastic CSS & JavaScript card UI hover effect snippets.
What Is Nix and Why You Should Use ItMar 23, 2022
Learn how the Nix package manager can help you make the development process more efficient and simpler.
Amazing Resources for Web DevelopersMar 22, 2022
Found amazing resources which will save you tons of time as a web developer👇 1. 10015...
RunaCapital/awesome-oss-alternatives: Awesome list of open-source startup aMar 16, 2022
Awesome list of open-source startup alternatives to well-known SaaS products 🚀 - RunaCapital/awesome-oss-alternatives
The Catalog of Design PatternsMar 14, 2022
The catalog of design patterns grouped by intent, complexity, and popularity. The catalog contains all classic design patterns and several architectural patterns.
Smashing NewsletterFeb 13, 2022
Security Risks On Rails: Misconfiguration and Unsafe IntegrationsJan 31, 2022
This article was originally written by Diogo Souza on the Honeybadger Developer Blog. In the third...
Why Japanese Web Design Is So… DifferentJan 29, 2022
Ultimate UI/UX glossary to speak same language with design teamJan 26, 2022
Building a dream UI/UX design for your app is very much about communication with your design team. Here is a list of 57 essential terms.
Never use the word “User” in your codeJan 23, 2022
You’re six months into a project when you realize a tiny, simple assumption you made at the start was completely wrong. And now you need to fix the problem while keeping the existing system running—with far more effort than it would’ve taken if you’d just gotten it right in the first place. Today I’d like to tell you about one common mistake, a single word that will cause you endless trouble. I am speaking, of course, about “users”. There are two basic problems with this word: “User” is almost never a good description of your requirements. “User” encourages a fundamental security design flaw. The concept “user” is dangerously vague, and you will almost always be better off using more accurate terminology.
2013 04 12 package managers an introductoJan 23, 2022
320 free resources for learning fullstack, frontend and backendJan 20, 2022
You only need this post to become a Developer because this post has nearly unlimited amount of every...
When 0748 Means “Go Die": The Secret Messages Inside Chinese URLsJan 17, 2022
URLs like 4008-517-517.com mean a lot more than they appear.
Front-End Performance Checklist 2021 (PDF, Apple Pages, MS Word) — Smashing MagazineJan 17, 2022
Let’s make 2021... fast! An annual front-end performance checklist, with everything you need to know to create fast experiences on the web today, from metrics to tooling and CSS/JavaScript techniques.
10 Tips for Building a Visual LanguageJan 17, 2022
A visual language is just like any other form of communication. Elements from color to style to type of photos or illustrations establish what a brand or company is. A visual language includes both the written and spoken elements of a website or brand, as well as every design technique, photo,…
Front-End Performance Checklist 2021 (PDF, Apple Pages, MS Word) — Smashing MagazineJan 17, 2022
Let’s make 2021... fast! An annual front-end performance checklist, with everything you need to know to create fast experiences on the web today, from metrics to tooling and CSS/JavaScript techniques.
Understanding Webpacker in Rails 6 | Road to Rails 6Jan 17, 2022
Starting with Rails 6, Webpacker is the default JavaScript compiler. It means that all the JavaScript code will be handled by Webpacker instead of the old assets pipeline aka Sprockets. Webpacker is different from asset pipeline in terms of philosophy as well as implementation. In this blog post, we will
gitleaks/gitleaks: Protect and discover secrets using Gitleaks 🔑Jan 17, 2022
Protect and discover secrets using Gitleaks 🔑.
Perf toolingJan 17, 2022
Some ways DNS can breakJan 17, 2022
grab/front-end-guide: 📚 Study guide and introduction to the modern front end stack.Jan 16, 2022
📚 Study guide and introduction to the modern front end stack. - grab/front-end-guide
Front-end Developer Handbook 2019 - Learn the entire JavaScript, CSS and HTML development practice!Jan 16, 2022
A guide for front-end developers to equip themselves with latest learning resources and development tools in front-end engineering.
Front-End Developer Handbook 2018 - Learn the entire JavaScript, CSS and HTML development practice!Jan 16, 2022
A guide for front-end developers to equip themselves with latest learning resources and development tools in front-end engineering.
Serverless: Zero-Friction Serverless Apps On AWS Lambda & Beyond.Jan 16, 2022
Easily build auto-scaling, low-overhead applications on AWS Lambda, API Gateway, DynamoDB, and other managed services with the Serverless Framework.
20 Chrome Extensions for Web DesignJan 16, 2022
Here is a list of Chrome extensions for design. There are tools to find the right font, develop color palettes, discover and create inspirational images, customize graphics, measure elements, and analyze your pages as well as your competitors'.
dexteryy/spellbook-of-modern-webdev: A Big Picture, Thesaurus, and Taxonomy of Modern JavaScript Web DevelopmentJan 16, 2022
A Big Picture, Thesaurus, and Taxonomy of Modern JavaScript Web Development - dexteryy/spellbook-of-modern-webdev
7 Practical Tips for Cheating at DesignJan 16, 2022
Improving your designs with tactics instead of talent.
Coolors - The super fast color palettes generator!Jan 16, 2022
Generate or browse beautiful color combinations for your designs.
The WebSocket Handbook: learn about the technology behind the realtime webJan 15, 2022
Learn about the core building blocks of the WebSocket technology and discover the benefits of event-driven architectures with WebSockets.
HTTP Status Codes GlossaryJan 13, 2022
Wondering what an HTTP status code means? Browse this list of HTTP status codes for definitions and code references.
Progressive Web Apps | web.devJan 12, 2022
Water.cssJan 12, 2022
A drop-in collection of CSS styles to make simple websites like this just a little bit nicer.
This tool confuses Google's ad network to protect your privacy | MIT TechnoJan 12, 2022
Current privacy laws don’t shield people from the pervasive surveillance of Big Tech. Guerrilla tactics are all we’ve got.
15 awesome CSS animation libraries you need to know.Jan 11, 2022
Transitions from one CSS style configuration to another can be animated using CSS animations. A style...
5 UX Tricks You Must Know in 2022Jan 9, 2022
Do you have what it takes to be an outstanding UX Developer in 2022? Add these tricks to your arsenal...
How we handle 80TB and 5M page views a month for under $400Jan 7, 2022
How the heck do we run a massively popular website and asset resource while being funded primarily by donations?
5 Best Practices for Securing SSHJan 6, 2022
This article explores 5 SSH best practices you should observe to boost the security of your infrastructure.
An Introduction to DNS Terminology, Components, and Concepts | DigitalOceanJan 4, 2022
DNS, or the Domain Name System, is an integral part of how the internet functions today. However, the way that DNS works is often quite mysterious for new a…
CSS Object Model (CSSOM) - Web APIs | MDNJan 4, 2022
The CSS Object Model is a set of APIs allowing the manipulation of CSS from JavaScript. It is much like the DOM, but for the CSS rather than the HTML. It allows users to read and modify CSS style dynamically.
The HTML5 test - How well does your browser support HTML5?Jan 2, 2022
The HTML5 test score is an indication of how well your browser supports the upcoming HTML5 standard and related specifications. How well does your browser support HTML5?
Let’s Build A Web Server. Part 3.Jan 2, 2022
“We learn most when we have to invent” —Piaget In Part 2 you created a minimalistic WSGI server that could handle basic HTTP GET requests. And I asked you a question, “How can you make your server handle more than one request at a time?” In this article you will …
A Practical Guide to SVGs on the webDec 26, 2021
Crawling - The Most Underrated Hack by @ttunguzDec 26, 2021
It’s been a little while since I traded code with anyone. But a few weeks ago, one of our entrepreneurs-in-residence, Javier, who joined Redpoint from VMWare, told me about a Ruby gem called Mechanize that makes it really easy to crawl websites, particularly those with username/password logins. In about 30 minutes I had a working LinkedIn crawler built, pulling the names of new followers, new LinkedIn connections and LinkedIn status updates.
Chrome DevTools | Chrome for DevelopersDec 26, 2021
Debug and optimize your web applications with Chrome DevTools.
Modern CSS Explained For DinosaursDec 26, 2021
CSS is strangely considered both one of the easiest and one of the hardest languages to learn as a web developer. It’s certainly easy…
CSS ReferenceDec 26, 2021
CSS Reference is a free visual guide to CSS. It features the most popular properties, and explains them with illustrated and animated examples.
Responsive images - Learn web development | MDNDec 26, 2021
That's a wrap for responsive images — we hope you enjoyed playing with these new techniques. As a recap, there are two distinct problems we've been discussing here:
Drawing to the Screen | Web Browser EngineeringDec 23, 2021
Useful UX Guidelines, Tools And ResourcesDec 23, 2021
A meaningful user experience is what can set your site apart from others. But what makes an experience truly meaningful? And how to achieve that? The tools, tips, and resources in this post not only help you to come up with a UX strategy that works for you and your team but also to circumvent potential UX pitfalls.
UX ToolsDec 23, 2021
Product design mastery in one weekly e-mail. Practical lessons, resources and news in just 5 minutes a week.
HTTP ToolkitDec 23, 2021
Beautiful, cross-platform & open-source tools for debugging, testing and building with HTTP(S), on Windows, Linux & Mac.
Gulp: A Web Developer's Secret Weapon for Maximizing Site Speed | Toptal®Dec 17, 2021
When dealing with web-based projects that run in the production environment, being able to build and deploy changes quickly is a top priority. However, repetitive processes such as building front-end assets, when not automated, can be prone to critical errors. In this article, Toptal Freelance Software Engineer A...
Web Components - Web APIs | MDNDec 17, 2021
Web Components is a suite of different technologies allowing you to create reusable custom elements — with their functionality encapsulated away from the rest of your code — and utilize them in your web apps.
URL StandardDec 17, 2021
The Web Platform: Browser technologiesDec 17, 2021
New tool: Mess with DNS!Dec 16, 2021
Werner's Nomenclature of ColoursDec 15, 2021
A recreation of the original 1821 color guidebook with new cross references, photographic examples, and posters designed by Nicholas Rougeux
41 Best SEO Tools in 2024 (Free & Paid)Dec 15, 2021
These tools have helped my site get 600k+ visits per month. (Most of which came from SEO) The best part? All of these tools work GREAT in 2024.
Get Firefox browser — Mozilla (US)Dec 14, 2021
Choose from Desktop, iOS, Android, or let us email you a mobile download link.
75 Web Animation Tools You Have to TryDec 13, 2021
Its popularity fluctuates, but it’s always there somewhere, as an essential component in any web site.From tiny, barely visible, loading spinners, to whole page transitions like a movie experience, animation reaches into every area of our designs.For designers looking to incorporate animation,…
Tools QA - Page Not FoundDec 13, 2021
A short and simple guide to BabelDec 13, 2021
Babel is an awesome entry in the Web Developer toolset. It's an awesome tool, and it’s been around for quite some time, but nowadays almost every JavaScript developer relies on it, and this will continue going on, because Babel is now indispensable and has solved a big problem for everyone.
CodeSandbox: Instant Cloud Development EnvironmentsDec 13, 2021
CodeSandbox is a cloud development platform that empowers developers to code, collaborate and ship projects of any size from any device in record time.
Connect the Web With WebSocketsDec 13, 2021
WebSockets make it possible to have interactive, two-way communication sessions between the user's browser and a server. With this API, you can receive event-driven messages without having to poll...
How JavaScript works: memory management + how to handle 4 common memory leaksDec 13, 2021
A few weeks ago we started a series aimed at digging deeper into JavaScript and how it actually works: we thought that by knowing the…
Hacking Your Webpage's Head Tags for Speed and ProfitDec 13, 2021
One of the most important parts of any webpage's performance is the content and organization of the head element. We'll take a deep dive on some easy optimiz...
Introduction · Front-end Developer Handbook 2017Dec 13, 2021
Complete Intro to Computer Science Course by Brian Holt | FEMDec 13, 2021
Learn our computer science intro course and understand Algorithms and Big O Analysis, Recursion, Sorting, Data Structures, AVL Trees, and more.
A Comprehensive Guide to Font Loading Strategies—zachleat.comDec 13, 2021
A post by Zach Leatherman (zachleat)
Creating Web Icons with SVG Online Class | LinkedIn Learning, formerly Lynda.comDec 13, 2021
Get crisper, smaller web graphics with SVG. Learn three different methods to implement SVG web icons on websites and in WordPress themes.
The Basics of Web Application SecurityDec 13, 2021
Security is both very important and often under-emphasized. While many targeted techniques help, there are some basic clean code habits which every developer can and should be doing
Welcome to NetlifyDec 12, 2021
Learn how to build fast and reliable web experiences with our enterprise-ready composable platform.
I want to… - WebAssemblyDec 11, 2021
What is a Domain Name? - Learn web development | MDNDec 11, 2021
Domain names are a key part of the Internet infrastructure. They provide a human-readable address for any web server available on the Internet.
How We Used WebAssembly To Speed Up Our Web App By 20X (Case Study) — Smashing MagazineDec 11, 2021
WebAssembly is a new language that runs in the browser alongside JavaScript. In this article, Robert Aboukhalil explores how you can speed up web applications by replacing slow JavaScript calculations with compiled WebAssembly. This is a case study on using WebAssembly to speed up a data analysis web tool. To that end, Robert will take an existing tool written in C that performs the same computations, compile it to WebAssembly, and use it to replace slow JavaScript calculations.
Markdown CheatsheetDec 11, 2021
Google Chrome, Firefox, and Thunderbird extension that lets you write email in Markdown and render it before sending. - adam-p/markdown-here
A Beginner’s Guide To Progressive Web Apps — Smashing MagazineDec 11, 2021
PWAs take advantage of the latest technologies to combine the best of web and mobile apps. Think of it as a website built using web technologies but that acts and feels like an app. In this article, Kevin Farrugia will look into recent advancements in the browser and the opportunities you, as developers, have to build a new generation of web apps. This is merely an appetizer for progressive web apps. You could do a lot more to create that app-like experience users are looking for, whether by supporting push notifications with the Push API, making the app re-engageable, or using IndexedDB and background syncing to improve the offline experience.
The Illustrated TLS 1.2 ConnectionDec 7, 2021
Every byte of a TLS connection explained and reproduced
DNS doesn't "propagate"Dec 6, 2021
Converting and Optimizing Images From the Command Line | CSS-TricksNov 29, 2021
Images take up to 50% of the total size of an average web page. And if images are not optimized, users end up downloading extra bytes. And if they’re
5 Useful and Interesting Web Animation LibrariesNov 28, 2021
Introduction Libraries help us to code faster through their predefined classes for...
Remix | Remix Docs HomeNov 23, 2021
11 A/B Testing Tools to Optimize ConversionsNov 17, 2021
A/B testing, the process of exposing randomized visitors to one or more variables, is among the most effective strategies to optimize user experiences and conversion rates. Here is a list of A/B testing tools.
The Complete CSS Tags Reference - CSS CheatsheetNov 9, 2021
If you are using CSS for frontend web development, you may be interested in this article. The gist of...
Minification of CSS and JavaScriptNov 3, 2021
Minification is the process of deleting unneeded or redundant data from a resource without altering...
Web Browser EngineeringOct 21, 2021
17 Useful UX and UI Design ToolsSep 28, 2021
User experience and user interface tools can help with every stage of website and mobile-app design — from early whiteboard brainstorming to testing your prototype with end-users. Here is a list of useful UX and UI design tools.
How to use htmlq to extract content from HTML files on Linux, macOS or FreeSep 8, 2021
Most of us use love and use the jq command. It works on Linux or Unix-like systems to extract data from JSON documents. Recently I found htmlq, which is like jq and written in Rust lang. Imagine being able to sed or grep for HTML data. We can search, slice, and filter HTML data with htmlq. Let us see how to install and use this handy tool on Linux or Unix and play with HTML data.
Meet the Self-Hosters, Taking Back the Internet One Server at a TimeSep 2, 2021
Tired of Big Tech monopolies, a community of hobbyists is taking their digital lives off the cloud and onto DIY hardware that they control.
58% of Hacker News, Reddit and tech-savvy audiences block Google AnalyticsAug 31, 2021
Is Google Analytics still useful and how accurate are its stats? How much data is missing from Google Analytics due to adblockers and privacy-friendly browsers?
The most underused browser feature | Frank's blogAug 28, 2021
A great feature that is available in almost every browser allows you to reject the cookie consent popup.
A huge list of web design toolsAug 7, 2021
This is a very big list of Web Design tools for designers. If you want improve your skills and be a...
10 Super easy CSS Shapes for beginnersAug 5, 2021
Hello there, In this post we will be talking about creating basic shapes in HTML & CSS. Many...
60 Awesome UI and UX resources for Developers and Designers 2021Aug 3, 2021
Yearning organizers, genuine solopreneurs, and sprouting visual creators all need a convincing...
Free for dev - list of software (SaaS, PaaS, IaaS, etc.)Jul 27, 2021
Content by github.com/ripienaar/free-for-dev Contributors:...
No, we don’t use KubernetesJul 20, 2021
“No, we don’t use Kubernetes”. That always gets raised eyebrows... so we decided to write about our reasoning behind this cloud architecture decision.
A deep dive into ARIAJul 13, 2021
Have you heard about ARIA attributes but don’t really understand what they are, or how to use them?...
Top 6 Ethical Hacking ToolsJul 7, 2021
1. Kali Linux Kali Linux is the most used Ethical Hacking distro available, it is provided with...
How to poison the data that Big Tech uses to surveil youJun 24, 2021
Algorithms are meaningless without good data. The public can exploit that to demand change.
Improving The Performance Of An Online Store (Case Study)Jun 3, 2021
Getting a good performance score from Google is hard for any website — but doing so for an online store is even harder. We achieved green scores — even several for mobile. Here is how we did it.
The Cost of Cloud, a Trillion Dollar Paradox | Andreessen HorowitzMay 30, 2021
The pressure the cloud puts on margins can start to outweigh the benefits you scale and growth slows. Understand how much market cap is being suppressed by the cloud to help inform the decision-making framework on managing infrastructure as companies scale.
15 Advanced CSS Techniques To Master In 2021May 27, 2021
CSS is used to describe how HTML elements should be presented on the web page. CSS can not only...
30 ? Awesome CSS Animation ResourcesMay 24, 2021
Here is the list of awesome CSS animation resources that will help you to animate components quickly...
CSS Flexbox in 5 MinutesMay 24, 2021
What is CSS Flexbox CSS Flexbox is a one-dimensional layout module that can be used to mak...
13 eCommerce Site Search Strategies to Boost Revenue from Existing VisitorsMay 7, 2021
Let's be clear about something right at the start: If you're not optimizing your site search to convert more visitors into buyers, you're missing out on
Advanced YAML Syntax CheatsheetMay 7, 2021
YAML (YAML Ain’t Markup Language) is a data serialization language used to create key-value pair conf...
Two awesome card hover effects you never seen before.May 4, 2021
1 I suggest you to view demo in full new window. Click on top right most button to vi...
15 amazing CSS tips and tricks you should knowMay 1, 2021
This article was originally published at: https://www.blog.duomly.com/12-css-tips-and-tricks-which-he...
12 Simple CSS Hover EffectsMay 1, 2021
Here is the list of 12 simple beginner level CSS menu button hover animation, it use simple CSS anim...
My current HTML boilerplate - Manuel MatuzovićApr 30, 2021
Every element I use for the basic structure of a HTML document, with explanations why.
Lessons I learned from achieving a 99.99% platform uptimeApr 27, 2021
Voice123 is the first (and arguably foremost) open marketplace for voice actors. Today, Voice123 ha...
Phishing Tests Are Necessary. But They Don’t Need to Be Evil.Apr 2, 2021
Although phishing tests can be helpful to protect users, using questionable tactics has the potential for harming relationships between a company and its employees. The authors suggest that managers avoid this damage by employing phishing tests with three criteria: Test teams, not individuals; don’t embarrass anyone; and gamify and reward.
Dark patterns, the tricks websites use to make you say yes, explainedApr 2, 2021
How design can manipulate and coerce you online
NyxtMar 22, 2021
15 Psychology Principles Every Designer Should KnowMar 18, 2021
As a web designer, you’re not really in the business of building websites that your clients will love. I know that may seem counterintuitive, but think about how vast the differences often are between your clients’ personal aesthetics and what actually works to turn visitors into customers.
Baserow: Open source online database toolMar 14, 2021
Discover Baserow, the open-source no-code platform for building databases and applications. No code or technical skills needed. Start creating for free today!
Jon Lai on Twitter: "The best apps today are games in disguise @calm @tiktoMar 14, 2021
Thread 👇
— Jon Lai (@Tocelot)
Free prototyping tool for web & mobile apps - JustinmindMar 11, 2021
Easily create web and mobile app prototypes and wireframes with Justinmind UI prototyping tool. It's FREE. Start prototyping now!
Free for developersFeb 24, 2021
Developers and Open Source authors now have a massive amount of services offering free tiers, but it can be hard to find them all to make informed decisions.
11 Easy UI Design Tips for Web DevsFeb 17, 2021
Whilst learning web development, most of us don’t have much design experience or access to a UI desig...
NoCodeAPI – The easiest way to connect APIs without codeFeb 13, 2021
NoCode API is a great place to experiment with APIs and interact with them, without the need to setup servers and infrastructures. It gets the work done, reliable.
Learn Enough Custom Domains to Be Dangerous | Learn Enough to Be DangerousFeb 13, 2021
Custom domains for websites, web apps, and email
SVG Repo - Free SVG Vectors and IconsFeb 12, 2021
Free Vectors and Icons in SVG format. ✅ Download free mono or multi color vectors for commercial use. Search in 500.000+ Free SVG Vectors and Icons.
WHOIS Lookup - Domain Lookup and Availability Checker | Domain.comFeb 12, 2021
Use our WHOIS lookup tool to search available domain names or current domain owners. Start your search today!
Building an Advanced Fingerprinting Detector AIJan 30, 2021
Here is how you can build an advanced AI fingerprinter detector by refining it to take the dynamic behavior of JavaScript files into account.
Online HTML To YAML ConverterJan 30, 2021
This free online tool lets you convert a HTML file into a YAML file. No need to download or install any software. Click to convert your file now.
6 Web Scraping Tools That Make Collecting Data A Breeze | by Sara A. MetwalJan 29, 2021
The first step of any data science project is data collection.
Top Developer Tools of 2020Jan 28, 2021
Scrape the Web at Scale With the scrapestack APIJan 27, 2021
Introduction to Web Scraping Businesses need better information to target and reach wider audiences. They get this information by scraping the web for content from social media platforms,...
17 Free Design Tools for 2021Jan 21, 2021
We update our rundown of free design tools every year. This 2022 installment includes apps for web design, logos, fonts, color palettes, photo and video resources, and much more.
isarisariver/webdev: A collection of helpful resources for web development.Jan 13, 2021
A collection of helpful resources for web development. - isarisariver/webdev
The Ultimate Guide to Web Performance ? - DEV Community ????Dec 18, 2020
There's so many ways to speed up your site. Don't you wish every web performance tip was in one place...
DevOps Roadmap: Learn to become a DevOps Engineer or SREDec 18, 2020
Learn to become a modern DevOps engineer by following the steps, skills, resources and guides listed in our community-driven roadmap.
Finding Your Way With Domain MappingDec 18, 2020
It’s no secret that having a custom domain name is an essential piece of any company’s branding strategy. While there are a myriad of hosting plans available that offer domains like your company.webhost.com, making the shift from one of those to simply yourcompany.com is an important step.
Periodic table of the web's APIsDec 13, 2020
17 Tools I Can’t Design WithoutAug 11, 2020
I think of a creative practice as a combination of an approach (a design philosophy) and a series of techniques (craft skills); a good tool facilitates a technique, which in turn supports an approach.It wasn’t until I sat down to write a list of tools I can’t design without, that I realized just…
2020 Chrome Extension Performance Report | DebugBearJun 16, 2020
A look at how Chrome extensions affect CPU usage, page rendering, and browser memory consumption.
The 2019 Web AlmanacJun 1, 2020
The Web Almanac is an annual state of the web report combining the expertise of the web community with the data and trends of the HTTP Archive.
Holy sheet: Here’s how to grab a web page’s data with Google SheetsMar 31, 2020
You don’t need any coding skills to scrape data from websites.
Google’s new treatment of nofollow linksFeb 28, 2020
Here’s what you need to be aware of as Google begins viewing nofollow links as a hint for crawling and indexing.
Show HN: Userbase – Add user accounts and persistence to your static siteFeb 19, 2020
Create secure and private web apps using only static JavaScript, HTML, and CSS.
TinyPNG – Your account dashboardFeb 19, 2020
ImageOptim — better Save for WebFeb 19, 2020
A free app that makes images load faster and take less disk space, without sacrificing quality. Removes private EXIF data from photos and improves compression.
Web Scraping with a Headless Browser: A Puppeteer Tutorial - DataScienceCentral.comFeb 19, 2020
Web development has moved at a tremendous pace in the last decade with a lot of frameworks coming in for both backend and frontend development. Websites have become smarter and so have the underlying frameworks used in developing them. All these advancements in web development have led to the development of the browsers themselves too. Most… Read More »Web Scraping with a Headless Browser: A Puppeteer Tutorial
GitterJan 12, 2020
Front-end technologiesDec 31, 2019
The front-end is everything involved with what the user sees, including design and some languages like HTML and CSS.
Bizcoder - Optimizing for the Speed of LightDec 29, 2019
You might be wondering what on earth I am talking about but this is something I see API developers getting confused about regularly.
Here’s why the internet will always have enough space for all our devicesDec 23, 2019
It seems that every five years, news emerges that the digital sky is falling in. Back in 2010 and 2015, rumors spread that the internet would soon run out of IP addresses. Now, the regulator of Europe’s internet domains has predicted that t
How tracking pixels work - Julia EvansDec 23, 2019
https://docs.simpleanalytics.com/uniquesDec 23, 2019
Top 5 amazing tools for every web developerDec 23, 2019
Top five tools for all web developers to increase their productivity and product quality!
The Growth Stacks of 2019 - Segment Tech StackDec 23, 2019
Google Analytics, Amazon S3, New Relic, Twilio, and HubSpot are some of the popular tools that The Growth Stacks of 2019 uses. Learn more about the Language, Utilities, DevOps, and Business Tools in Segment's Tech Stack.
23 Free Web Design Tools from Fall 2019Dec 11, 2019
Free resources from the design community can add value to your ecommerce site. Here is a list of new web tools and design elements from fall 2019. There are designer and developer apps, coding resources, color tools, fonts, and more. All of these tools are free, though some also offer premium versions.
sindresorhus/awesome: Curated list of awesome listsAug 30, 2019
😎 Awesome lists about all kinds of interesting topics - sindresorhus/awesome
4 Design Patterns In Web DevelopmentAug 23, 2019
Right now, you're code is using some kind of design pattern. There are 23 official ones, but a few of them show up almost every day in web development. Here are 4 of the most commonly used design patterns in web development.
I’m Not a Good Web Developer, I’m Just Good at Googling ThingsJun 24, 2019
Dev diaries is a development community providing daily tips and tricks about web development. Learn about how to become a better dev, and get a refreshed perspective on what it means to be a web developer. We share daily web development tips on Instagram, Twitter, Facebook, & Pinterest. Being a good web developer comes down to a lot of things, but one of the major skills is being able to Google and find the right answer on Stackoverflow...
Zdog · Round, flat, designer-friendly pseudo-3D engine for canvas and SVGJun 2, 2019
Round, flat, designer-friendly pseudo-3D engine for canvas and SVG
LisaDziuba/Awesome-Design-Tools: The best design tools for everything ?May 14, 2019
The best design tools and plugins for everything 👉 - goabstract/Awesome-Design-Tools
Performance Tuning - Tips & Tricks - NGINXFeb 12, 2019
Ghost sites, domain spoofing, fake apps: A guide to knowing your ad fraudJan 31, 2019
Digital ad fraud is a volume game. Here’s a primer on how to spot the core techniques used to generate CPM fraud.
How Much Internet Traffic Is Fake? Turns Out, a Lot of It, Actually.Dec 31, 2018
Long-time Slashdot reader AmiMoJo shared this article from New York magazine: In late November, the Justice Department unsealed indictments against eight people accused of fleecing advertisers of $36 million in two of the largest digital ad-fraud operations ever uncovered... Hucksters infected 1.7 m...
Everything you should know about certificates and PKI but are too afraid to askDec 24, 2018
Certificates and public key infrastructure (PKI) are hard. No shit, right? I know a lot of smart people who''ve avoided this particular rabbit hole. Eventually, I was forced to learn this stuff because of what it enables: PKI lets you define a system cryptographically. It''s universal and vendor-neutral yet poorly documented. This is the missing manual.
The Power of Web Components - Mozilla Hacks - the Web developer blogNov 17, 2018
Web Components comprises a set of standards that enable user-defined HTML elements. These elements can go in all the same places as traditional HTML. Despite the long standardization process, the ...
Cloudflare Registrar: what happens when you register a domain?Oct 7, 2018
Every website, large or small, started with an idea, rapidly followed by registering a domain. Most registrars offer promotions for your initial domain registration and then quietly hike the price with each renewal.
The AT ProtocolSep 24, 2018
netdev day 1: IPsec!Jul 13, 2018
Web Caching Explained by Buying Milk at the SupermarketJul 1, 2018
This visual explanation will help you understand all the common ways to implement caching
Using React, Firebase, and Ant Design to Quickly Prototype Web ApplicationsJun 8, 2018
In this guide I will show you how to use Firebase, React, and Ant Design as building blocks to build functional, high-fidelity web applications. To illustrate this, we’ll go through an example of building a todo list app. These days, there are so many tools available for web development
Browser Extensions I Actually Use - The Media Temple BlogMay 27, 2018
I'm a web developer and blogger. These are the browser extensions that I actually use right now.
Fade to Grey: Will Headless Browsers Kill Web Design?Mar 12, 2018
Is the browser as we know it today a phase-out model? Can we use the web without it? The answer to the second question is a clear yes. Will headles...
A Comprehensive Website Planning Guide (Part 3)Mar 8, 2018
Planning is essential for most businesses and organizations. Unfortunately, when it comes to websites there is often a failure to plan properly or at all. This guide aims to change that. Always remember that a good website isn't a one-time event, but rather an extensible communications tool. Once you've built a great website, keep the momentum going. Devote resources to regular maintenance, and check in with your site visitors regularly to identify areas for improvement.
Best Social Media Image Size Chart 2018Dec 28, 2017
It's impossible to remember the required size of images uploaded to Facebook, Twitter and other social media sites. To end your confusion, we offer the Best Social Media Size Chart. Continue reading
The what and how of Web PushDec 27, 2017
Native apps have had the privilege of being able to send engaging and timely content to their users for a while. The web is closely following.
When to Track on the Client vs. ServerDec 27, 2017
When deciding whether to track users on the server or on the client, there are many gotchas and factors to consider. Here is a short guide with pros and cons of each.
Anvil: Web Apps with Nothing but PythonOct 31, 2017
Yes, really, nothing but Python! Anvil has a drag-and-drop editor, Python in the browser and on the server, and one-click deployment.
12 Terminal Commands Every Web Developer Should Know About - TutorialzineAug 21, 2017
A collection of Unix commands that will greatly improve your web dev workflow.
webpack
Introducing Turbopack: Rust-based successor to Webpack – VercelOct 26, 2022
Introducing Turbopack, the Rust-based successor to Webpack.
webpackJan 16, 2022
webpack is a module bundler. Its main purpose is to bundle JavaScript files for usage in a browser, yet it is also capable of transforming, bundling, or packaging just about any resource or asset.
Modern web apps without JavaScript bundling or transpilingAug 20, 2021
I didn't much care for vanilla JavaScript prior to ES6. Through all of the 2000s, I chased different approaches to avoid writing too much of it. First there was RJS (Ruby-to-JavaScript). Then there was CoffeeScript. Both transpiling approaches that turned more enjoyable-to-write source code into the kind of JavaScript that browsers wou...
Webpacker in Rails 6Jul 7, 2021
Webpacker is the default JavaScript compiler for Rails 6 applications. Which means that all the...
The Four Core Concepts of webpackJun 7, 2021
webpack is a famous static module bundler. Module bundlers are used to bundle Javascript modules into...
webpacker
Upgrading to Rails 7: Moving away from WebpackerApr 14, 2023
Webpacker was retired for Rails 7. Let’s explore some options for replacing it when making an upgrade.
Understanding Webpacker in Rails 6 | Road to Rails 6Jan 17, 2022
Starting with Rails 6, Webpacker is the default JavaScript compiler. It means that all the JavaScript code will be handled by Webpacker instead of the old assets pipeline aka Sprockets. Webpacker is different from asset pipeline in terms of philosophy as well as implementation. In this blog post, we will
Webpacker in Rails 6Jul 7, 2021
Webpacker is the default JavaScript compiler for Rails 6 applications. Which means that all the...
Rails with Webpacker : a full setupMay 18, 2021
Article was originally published here : https://bootrails.com/blog/rails-webpacker-full-setup Webpac...
ruby on rails - Webpacker can't find application - Stack OverflowNov 10, 2020
I'm creating a new rails application according to "Getting Started with Rails". The application starts normally in step 4.1. But when i create my first controller, i have a webpack error.
I'm new in
Introducing jQuery in Rails 6 Using WebpackerFeb 19, 2020
Maintain Control: A Guide to Webpack and React, Pt. 1Dec 23, 2019
Escape Create React App's orbit with this Webpack customization tutorial!
Maintain Control: A Guide to Webpack and React, Pt. 2Dec 23, 2019
Optimize Webpack for TypeScript, CSS, web workers, and service workers.
websockets
Get Started with Hotwire in Your Ruby on Rails AppJul 6, 2022
Learn the basics of Hotwire and how to use it in your Rails app.
The WebSocket Handbook: learn about the technology behind the realtime webJan 15, 2022
Learn about the core building blocks of the WebSocket technology and discover the benefits of event-driven architectures with WebSockets.
Connect the Web With WebSocketsDec 13, 2021
WebSockets make it possible to have interactive, two-way communication sessions between the user's browser and a server. With this API, you can receive event-driven messages without having to poll...
Real-Time Apps With WebSockets and Action Cable | Learn Enough News & BlogFeb 6, 2021
News & blog about Learn Enough (including the Ruby on Rails Tutorial)
Realtime with React and Rails - via @codeship | via @codeshipJun 8, 2018
To showcase using ActionCable in a Rails app with React
How WhatsApp Took Over the Global ConversationJan 13, 2026
The platform has become a core technology around the world, relied on by governments and extended families alike, Sam Knight writes. What are we all doing there?
When disaster strikes, the world opens WhatsAppDec 15, 2024
Meta's messaging app has transformed communication in conflict and crisis areas.
Movie stars, matchmakers, and aunties: How WhatsApp became an unstoppable cultural forceDec 11, 2024
The world’s most popular messaging platform is synonymous with the internet for millions of people.
whistleblowing
See something, say something? The science of speaking outAug 20, 2025
From tattling to whistleblowing, a sociologist explores what drives people to tell on one another
How to Encourage Employees to Speak Up When They See WrongdoingJul 23, 2025
Traditional compliance tools aren’t enough. Behavioral science can help.
Why a Devoted Justice Department Lawyer Became a Whistle-BlowerJul 10, 2025
In the first Trump Administration, “they didn’t say ‘Fuck you’ to the courts,” Erez Reuveni said.
Whistleblowers Are the Conscience of Society, Yet Suffer Gravely For TryingApr 30, 2023
Why Don’t More People Support Whistleblowers? ...Legislatures Should Provide the Protections They Deserve [Author’s Note: I blew the whistle and was met with an experience so destructive that I did not have the words to describe what happened to me. I set out to learn if what happened to me is a known phenomenon and,
Why Open Secrets Exist in OrganizationsAug 29, 2019
Why do issues remain open secrets in organizations, where multiple employees know about a problem or a concern, but no one publicly brings it up? Researchers recently explored this in a set of studies. They found that as issues become more common knowledge among frontline employees, the willingness of any individual employee to bring those issues to the attention of the top-management decreased. Instead of speaking up, what they observed among their participants was something like the bystander effect, a psychological phenomena describing how people stay on the sidelines as passive bystanders, waiting for others to act rather than do something themselves. If managers want to avoid the bystander effect so that problems don’t go unresolved, they should tell employees that their voices are not redundant and that they need to share their opinions even if others have the same information.
Research: Whistleblowers Are a Sign of Healthy CompaniesNov 14, 2018
An analysis of more than 1.2 million records of internal reports made by employees of public U.S. companies reveals that whistleblowers are crucial to keeping firms healthy. The more employees use internal whistleblowing hotlines, the fewer lawsuits companies face, and the less money firms pay out in settlements. A one standard deviation increase in the use of an internal reporting system is associated with 6.9% fewer pending lawsuits and 20.4% less in aggregate settlement amounts over a three-year period.
white-label
The hidden makers of Costco’s Kirkland Signature and Trader Joe’s O’s | CNN BusinessAug 14, 2022
Store brands are shrouded in secrecy. Who makes them?
White Label Designs – All About Implementation, Design Systems, and New TecOct 15, 2021
Building white label products is more profitable than starting a new design every time. Learn how to properly implement white labelling.
wifi
The Aluminum Foil WiFi Hack You Probably Didn't KnowMar 26, 2024
Subscribing to a high-speed internet plan may be all well and good, but it won't matter that much if there are places in your house where you can't get any WiFi signal at all. WiFi behaves similarly to radio or light waves which means obstructions like walls or floors can affect the strength of the transmission as well as its reach.Generally, to boost your WiFi signal, your ISPs might suggest buying a WiFi extender which will increase the coverage of your WiFi. However, those ...
10 Ways to Improve Your Wi-Fi Without Buying AnythingMar 7, 2023
Before you run out and spend money on a new Wi-Fi router, read these tips.
Wi-Fi’s biggest upgrade in decades is starting to arriveJan 9, 2021
Expect to see plenty of Wi-Fi 6E devices very soon.
5 quick ways to boost your iPhone's signal strength from Kim Komando.Dec 8, 2020
No matter which iPhone you use, you’ll invariably deal with a bad or no signal at some point. Kim Komando offers 5 ways to boost signal strength.
winloss
Fail Better with Win/Loss AnalysisJul 18, 2022
If you're in sales, you'll fail sometimes. Failing is great if you learn from why you lost deals. Win/Loss Analysis can help you fail better.
24 Tips for a Winning Win / Loss AnalysisOct 11, 2017
Running a win loss analysis can greatly impact your bottom line. But how do you do so effectively? Get all the tips here.
How to Conduct a Win/Loss Analysis with Zach GoldenAug 24, 2008
Collin interviews Zach Golden, from Anova Consulting Group, to uncover the value and intricacies of win-loss analysis in sales.
wireframes
Examples of Prototypes – From Low-Fidelity to High-Fidelity PrototypesApr 5, 2024
Let's go through 6 carefully-picked prototype examples and learn about the difference between low and high fidelity prototypes.
Great Wireframe ExamplesJan 17, 2022
How to Draw a Wireframe (Even if You Can’t Draw)Jun 20, 2021
Even people with limited drawing abilities can learn to sketch a wireframe if they learn a few common conventions used to represent various design elements.
Free prototyping tool for web & mobile apps - JustinmindMar 11, 2021
Easily create web and mobile app prototypes and wireframes with Justinmind UI prototyping tool. It's FREE. Start prototyping now!
word2vec
Dense Vectors | PineconeDec 28, 2022
Intuitive Understanding of Word Embeddings: Count Vectors to Word2VecDec 27, 2017
Word embeddings are techniques used in natural language processing. This includes tools & techniques like word2vec, TD-IDF, count vectors, etc. Explore Now!
Word2Vec (skip-gram model): PART 1 - Intuition.Dec 27, 2017
Most of the content here is from Chris’s blog. I have condensed it and made minor adaptations.
wordclouds
A Step by Step Guide to Build a Trend Finder Tool with Python: Web Scraping, NLP (Sentiment Analysis & Topic Modeling), and Word Cloud VisualizationMar 9, 2025
A Step by Step Guide to Build a Trend Finder Tool with Python: Web Scraping, NLP (Sentiment Analysis & Topic Modeling), and Word Cloud Visualization
An overlooked and powerful editing toolJun 8, 2024
Consider building a word cloud of your writing. It might be all the text on your website, or the last 50 emails you sent. It might be your new book or the speech you’re going to give at Rice …
wordpress
The Slow Implosion of WordPress: 2025 and the CMS That’s Losing Its SoulJul 24, 2025
WordPress in 2025 isn’t thriving — it’s rotting. Bloated, outdated, and hijacked by commercial greed, the world’s most popular CMS has become a cautionary tale of innovation gone stale. If you’re still building on WordPress, you’re clinging to a corpse.
WordPress, Spam Filtering, and You: From SPF to DKIM to BlocklistsSep 9, 2018
There is no one key to making sure WordPress site emails are sent reliably and stay out of the recipient’s spam folder. A common recommendation is to use a dedicated…
writing
National Magazine Awards 2026 NominationsMar 1, 2026
The best writing of 2025 as chosen by the American Society of Magazine Editors
The Electric TypewriterFeb 7, 2026
Great articles and essays by the world's best journalists and writers.
The triumph of logical English - Works in Progress MagazineJan 4, 2026
English prose has become much easier to read. But shorter sentences had little to do with it.
George Orwell's Six Rules for Writing Clear and Tight ProseDec 4, 2025
Image via Wikimedia Commons
Most everyone who knows the work of George Orwell knows his 1946 essay “Politics and the English Language” (published here), in which he rails against careless, confusing, and unclear prose. “Our civilization is decadent,” he argues, “and our language… must inevitably share in the general collapse.” The examples Orwell quotes are all guilty in various ways of “staleness of imagery” and “lack of precision.”
Ultimately, Orwell claims, bad writing results from corrupt thinking, and often attempts to make palatable corrupt acts: “Political speech and writing are largely the defense of the indefensible.” His examples of colonialism, forced deportations, and bombing campaigns find ready analogues in our own time.
[Linkpost] A Field Guide to Writing Styles — LessWrongOct 1, 2025
Windows, Mirrors, and Lenses: On Intentional Prose
What is writing style? Is it a) an expression of your personality, a mysterious, innate quality, o…
The Only Right Way to Ask for an Intro (Everything Else Is Wrong)Sep 15, 2025
intro requests that don’t suck
10 Best Japanese Stationery To Achieve Peak Productivity: Ultimate List For Next-Level EfficiencyAug 18, 2025
Back-to-school shopping usually means grabbing whatever's cheapest at the campus bookstore, but Japanese stationery culture operates on a completely different level. While you're stocking up on basic supplies, Japanese designers are obsessing over how every tiny detail can make your semester smoother, more enjoyable, and genuinely more productive. It's the difference between tools that barely
Why Knights Fought Snails in Medieval Illuminated ManuscriptsAug 18, 2025
The snail may leave a trail of slime behind him, but a little slime will do a man no harm... whilst if you dance with dragons, you must expect to burn.
- George R. R. Martin, The Mystery Knight
As any Game of Thrones fan knows, being a knight has its downsides.
To instantly sound more sincere, do thisJul 25, 2025
If you aren’t careful, you may come across as less sincere because your writing doesn’t translate your intent. Here’s how to make sure that doesn’t happen.
Writing is thinkingJul 24, 2025
On the value of human-generated scientific writing in the age of large-language models.
Thrive in obscurityJun 3, 2025
The path to creative mastery begins with years of silence. Publish anyway.
The Golden Age of Japanese Pencils, 1952-1967Mar 5, 2025
It was the summer of 1952, and the executives of Tombow Pencil were about to revolutionize the Japanese pencil industry—or, possibly, fall flat on their faces. Hachiro Ogawa, the son of founder Harunosuke Ogawa, was Tombow's managing director, and he had just finished a years-long project, at enormous cost,
Sentence structure for writers: understanding weight and clarity [extract]Nov 19, 2024
Some sentences just sound awkward. In order to ensure clarity, writers need to consider more than just grammar: weight is equally important. In the following extract from Making Sense, acclaimed linguist David Crystal shows how sentence length (and weight) affects writing quality.
ChatGPT Doesn’t Have to Ruin CollegeNov 10, 2024
The power of a robust honor code—and abundant institutional resources
Beyond the Basics: Top 10 Cutting-Edge Trends in Stationery Design - Yanko DesignOct 31, 2024
Stationery remains essential, adapting to global trends like sustainability, and minimalism, and bridging the gap between digital and analog domains. With technological advancements, stationery for school and office settings is progressing towards smarter, sustainable products, transforming traditional items into symbols of productivity and creativity. This transformation underscores a fusion of innovation and timeless design, enhancing
Every Page is Page OneOct 19, 2024
Use A Work Journal To Recover Focus Faster And Clarify Your ThoughtsJul 15, 2024
You’re working on the most complex problem in computer science: fixing permissions on a deployment pipeline. It’s been 4 days you started on that simple task...
A Close Reading of the Best Opening Paragraph of All TimeJun 29, 2024
From Shirley Jackson's ‘We Have Always Lived in the Castle’, of course.
Graham Greene and The Art of the Opening ParagraphMay 14, 2024
Ten great opening paragraphs from one iconic author.
50 Types of Social Media Posts ?Apr 13, 2024
50 Types of Social Media Posts to Engage Your Audience In the vibrant world of social...
5 Best Online Writing Tools In 2024Mar 22, 2024
Read our article to learn about the best online writing tools out there to help you with your writing projects.
Paraphrasing Tool - QuillBot AIFeb 10, 2024
Write effortlessly and efficiently with QuillBot's suite of AI tools. Paraphrase, check grammar, analyze tone, improve fluency, and more. Start doing your best work.
The Craft of Writing Effectively: Essential Lessons from the Longtime DirecJan 27, 2024
Academic writing has a bad reputation.
Publishing to my blog from ObsidianDec 28, 2023
This is how I publish to my Git-based blog straight from Obsidian (kind of)
The fascinating evolution of typing Chinese charactersAug 27, 2023
From Wubi to Zhineng ABC, here are the different ways Chinese people have typed their language over the years.
See Inside One of America’s Last Pencil FactoriesJul 4, 2023
The family-owned facility in Tennessee produces more than 70 million pencils annually
What the Heck is Cuneiform, Anyway?May 14, 2023
The writing system is 6,000 years old, but its influence is still felt today
Carl Braun on Communicating Like a Grown-UpMar 30, 2023
Industrial genius Carl Braun believed that clear thinking and clear communication go hand in hand. Here the guide on writing productively to get things done.
The brief but shining life of Paul Laurence Dunbar, a poet who gave dignity to the Black experienceMar 17, 2023
Paul Laurence Dunbar became the first Black writer to earn international acclaim through his poetry, essays and musical lyrics.
Content Syndication: What It Is & How to Do It SuccessfullyFeb 16, 2023
This article will discuss content syndication in more detail, how it works, and the benefits of using this technique.
The Strange Real-Life Mystery Behind Edgar Allan Poe’s “The Black Cat”Feb 16, 2023
George Stebbins was tearing down a stone wall in the cellar of his home in Northfield, Massachusetts when he uncovered the bones. A skull emerged first, then the spine and the bones of the arms and…
This personal whiteboard has everything you need to take notes anywhere, anFeb 1, 2023
https://youtu.be/txci5QkpSWc Writing things by hand has become fashionable again despite the prevalence of computers and smartphones. In fact, some have embraced this "analog" system of note-taking exactly as a reaction to the dominant reliance on technology. Whatever the reason, this resurgence in demand for paper products might also have negative effects on the environment when
The Shapes of StoriesNov 6, 2022
21K votes, 289 comments. 5.5M subscribers in the coolguides community. Picture based reference guides for anything and everything. If it seems like…
The Real Star of M*A*S*HOct 22, 2022
A personal tribute to the overlooked genius of writer W.C. Heinz.
The Anatomy of an Amazon 6-pagerSep 3, 2022
A deep dive into writing detailed planning docs from one of the most successful companies in the world
The messages that survived civilisation's collapse - BBC FutureAug 22, 2022
The Sumerians, Maya and other ancient cultures created texts that have lasted hundreds and even thousands of years. Here's what they can teach us about crafting an immortal message.
5 tips for writing amazingly jargon-free product copyJul 22, 2022
These five tactics will help simplify and clarify your technical copy.
The 50 Greatest Fictional Deaths of All TimeJul 20, 2022
The most tearjerking, hilarious, satisfying, and shocking death scenes in 2,500 years of culture.
14 Persuasive Writing Techniques That Trigger A ResponseJul 18, 2022
Here are 14 persuasive writing techniques that will make your website appeal to visitors and increase your conversion rates.
RTFM? How to write a manual worth readingJul 18, 2022
Patience and empathy are the basis of good documentation, much as they are the basis for being a decent person. Here's a how-to for creating better open source project docs, which can help your users and grow your community.
“Writing is Thinking”—an annotated twitter threadJul 18, 2022
“Writing is thinking” is my favorite expression for how to work in a company. This annotated thread explores the value of writing.
Kurt Vonnegut on the 8 "shapes" of storiesJul 16, 2022
Before fame, Kurt Vonnegut wrote a master's thesis on the shapes of stories for the anthropology department at the University of Chicago.
The Ten Commandments for Detective Fiction (1929): A Brief History and Update – Elizabeth Spann CraigJul 6, 2022
Writer @GretchenMdm9524 gives a brief history of 1929's 10 Commandments for Detective Fiction and offers some modern updates.
12 Innovative Mobile Payment AppsJul 5, 2022
Paying with a smartphone is easier than ever. Innovative mobile payment apps are providing consumers with new ways to exchange money with peers, purchase
The History of the Singular 'They'Jul 5, 2022
The singular form of 'they' has been endorsed by writers like Jane Austen and William Shakespeare.
Improve Your Storytelling with the Word "But"Jun 29, 2022
Telling a story is the most powerful way to activate our brains . If you want to become a better storyteller, UCLA Film School Howard Suber says you
Ultimate TermsJun 25, 2022
There are words which have special meaning within each culture and carry power where they are used.
How To Improve Your Writing: 5 Secrets From Hollywood - Barking Up The Wrong TreeJun 24, 2022
Andrew Kevin Walker, writer of the movie "Seven", gives five tips on how to improve your writing.
How to Write Email with Military Precision | FlipboardJun 24, 2022
Harvard Business Review - When you send an email, the first thing your recipient sees is the subject line, so make sure it’s as clear as possible: What is your email’s purpose? What do you want your recipient to do? Take a page from military personnel. Their subject lines use keywords in all caps to note the email’s …
30 Genius Cover Letter Openers Recruiters Will LOVEJun 23, 2022
Don’t waste space with “I’m writing to apply…”
Elmore Leonard's rules for writersJun 23, 2022
Next month, the doyen of hardboiled crime writers is publishing a new book, 10 Rules of Writing. The following is a brief summary of his advice
How the Ballpoint Pen Killed CursiveJun 19, 2022
Thicker ink meant it didn't smudge as easily as its predecessor, the fountain pen—but it also made writing by hand more physically demanding.
How to Write Better with The Why, What, How FrameworkJun 14, 2022
Three documents I write (one-pager, design doc, after-action review) and how I structure them.
43 of the Most Iconic Short Stories in the English LanguageMay 27, 2022
From Washington Irving to Kristen Roupenian.
I've Used All The Notebooks - Tyler CiprianiMay 1, 2022
The power of TKMar 24, 2022
The origin of the editor’s mark “TK” is murky. It’s what you write when there’s a fact or addition you’re waiting on. Instead of stopping everything, simply type…
How I learned to stop worrying and structure all writing as a listMar 23, 2022
We like lists because they are an objectively good way to organize information. They allow readers to quickly and easily get what they want.
Six Tips on Writing from John SteinbeckMar 16, 2022
On the value of unconscious association, or why the best advice is no advice.
What Makes a Great Opening Line?Mar 14, 2022
Maybe it has happened to you: a stranger catches your eye while you peruse the plant identification section of the library, or wander a mossy hillock speckled with Amanita bisporigera, or shuffle a…
In a world gone digital, Moleskine still believes in the power of paperFeb 9, 2022
"Paper is not going away, it's not going anywhere," CEO Daniela Riccardi said. Here's how she's keeping it relevant for consumers.
Kurt Vonnegut’s Greatest Writing AdviceJan 23, 2022
No-nonsense advice with a little bit of nonsense.
The 41 Best Pens for 2022: Gel, Ballpoint, Rollerball, and Fountain Pens |Jan 6, 2022
We draw on years of testing to crown the best beginner fountain pen, best gel pen, best pen for note-taking, and more. Each recommendation includes links to related guides so that you can evaluate the competition for yourself.
Japan's Paper Culture | JetPensDec 31, 2021
With Japan’s rich traditions in paper, it’s no wonder that paper is such a big part of Japanese culture. Keep reading to learn more about why paper is so important in Japan—plus, take a look at a few of our favorite Japanese paper companies.
Taking Humor Seriously on “The Simpsons”Nov 23, 2021
David Owen’s 2000 Profile of George Meyer: Humor has to reframe reality, Meyer says. “It’s like seeing in two dimensions and then opening the other eye or looking through a View-Master and suddenly seeing in three.”
Two Tips That Instantly Improve Your Everyday Writing ForeverNov 23, 2021
If you think about it, you accomplish most daily tasks with writing.
The Commas That Cost Companies MillionsNov 23, 2021
For most people, a stray comma isn’t the end of the world. But in some cases, the exact placement of a punctuation mark can cost huge sums of money.
Writing wellNov 17, 2021
Learn how to write well. Topics include figuring out what to write about, how to write an introduction, the writing process, writing style, and copyediting.
Chekhov's gunSep 5, 2021
Chekhov's gun is a narrative principle that states that every element in a story must be necessary and irrelevant elements should be removed. For example, if a writer features a gun in a story, there must be a reason for it, such as it being fired some time later in the plot. All elements must eventually come into play at some point in the story. Some authors, such as Hemingway, do not agree with this principle.
21 Rhetorical Devices Explained - Mental Floss - PocketAug 22, 2021
From the ones you know to a few new tricks. Pleonasm, anyone?
Raymond Chandler’s guide to street, hoodlum, and prison lingoJul 7, 2021
Writers keep notebooks because ideas come in the most unexpected of places. Notebooks contain a junkyard of treasures waiting to be discovered. They provide ports of entry to the imagination. And as Joan Didion once wrote, a place to keep “on nodding terms with the people we used to be”. Thomas Hardy kept four … Continue reading "Raymond Chandler’s Guide to Street, Hoodlum, and Prison Lingo"
How to Create the Plot of a Story: The Ultimate Guide for WritersJul 3, 2021
Having trouble developing the plot of a story? You aren't alone—this is no small task. But that doesn't mean it's impossible. This guide is here to help.
The Joy of Writing a RecommendationMay 29, 2021
5 tips on putting together a recommendation to help a young adult
From teen wizards to Harry Styles romances: How Wattpad created a user-geneMay 21, 2021
Wattpad is turning these user-generated stories into books, TV shows, and movies.
The one where writing books is not really a good idea - The NovelleistMay 11, 2021
Could the creator economy provide a better one?
John Swartzwelder, Sage of “The Simpsons” | The New YorkerMay 2, 2021
The first major interview with one of the most revered comedy writers of all time.
The Six Keys to Positive CommunicationApr 30, 2021
Communicating better can help you achieve your goals and deepen your relationships.
How to | How to write cold emails to investors – lessons from 30 VCsApr 30, 2021
Want to get your cold email to investors opened and read? Learn from the tips of some of the top VC investors.
These 7 phrases can help you sound more powerful at work - Fast CompanyApr 18, 2021
Sometimes, it really is what you say that makes a difference.
How to create compelling characters | Psyche GuidesFeb 11, 2021
It’s not only writer’s intuition. Use personality psychology to create just the right blend of surprise and believability
List of Logical Fallacies with ExamplesJan 30, 2021
A comprehensive list of logical fallacies, with definitions, explanations, and examples that are easy-to-understand.
10 Rules For Writing Thought-Provoking ArticlesJan 20, 2021
Over the past five years, I’ve written nearly 400 articles and reached millions of readers. Here's my process for writing articles.
The difference between note-taking and note-makingJan 19, 2021
Note-taking is fast, uses the original author's language, and feels easier. Note-making is slower, more involved, and uses your own language.
Perspective | My two weeks with John le Carré: What I learned about writing, fame and grace when I showed him around Miami in 1991.Jan 6, 2021
He wanted to learn about the Miami drug world and had been told I could help.
Reading, That Strange and Uniquely Human ThingDec 28, 2020
How we evolved to read is a story of one creative species.
One Writer Used Statistics to Reveal the Secrets of What Makes Great WritingNov 19, 2020
In his new book, data journalist Ben Blatt takes a by-the-numbers look at literary classics and finds some fascinating patterns
MemosNov 3, 2020
Dropbox PaperAug 10, 2020
Swiped, Best Copywriting Inspiration→ https://swiped.co/ Marketing Examples on Copywriting→ https://marketingexamples.
Why I Keep a Research BlogFeb 19, 2020
Writing is Thinking: Learning to Write with ConfidenceDec 23, 2019
Learning to write is learning to think, because writing is thinking. They are two peas in a powerful pod. This article goes over my writing process, focused on minimizing the activation energy to get started.
BLUF: The Military Standard That Can Make Your Writing More Powerful - AnimDec 23, 2019
BLUF is a military communications acronym—it stands for “bottom line up front”—that’s designed to enforce speed and clarity in reports and emails.
Novelist Cormac McCarthy’s tips on how to write a great science paperSep 30, 2019
Nature - The Pulitzer prizewinner shares his advice for pleasing readers, editors and yourself.
How I Learned To Write Dialogue By Reviewing Police ComplaintsSep 23, 2019
“Did you see the badge number or nameplate of the officer who hit you?” I heard myself say as I played back the interview tape. “No.” As the tinny reply sounded in my headphones, I could picture th…
How to write zines with simple toolsSep 2, 2019
Learn How to Write Copy That SellsAug 29, 2019
Increase your sales with the tips from the Step-by-Step Copywriting Secrets.
How to Write Email with Military PrecisionAug 24, 2019
A few tips on how to quickly and clearly relay information and avoid miscommunication.
How the Hell Has Danielle Steel Managed to Write 179 Books?May 12, 2019
The author works a 20-hour shift, loves chocolate, and writes best in her cashmere nightgown.
How I Write Online ArticlesMay 4, 2019
I like to write, and when I do, I prefer writing in markdown. Lately, people have been asking my writing process involves, so I decided to write it down in this short post. This is my process and in no way should you feel obligated to use it. Hopefully, this
The Psychology of Writing and the Cognitive Science of the Perfect Daily RoutineApr 27, 2019
How work schedules, rituals, and writing environments affect the amount and quality of time invested in trying to write.
I wrote a story that became a legend. Then I discovered it wasn’t true. - CMar 25, 2019
In 2003, with what felt like an angel on my shoulder, I wrote a story that became a myth. It was a once-in-a-lifetime piece. An emblem for human courage in the face of adversity, and an inspiration for motorcyclists like me, that swept the world in its small way. It would have been the story […]
Get started with Joplin, a note-taking appJan 26, 2019
Learn how open source tools can help you be more productive in 2019. First up, the Joplin note-taking app.
Writing copy for landing pagesDec 21, 2018
Write copy that delights visitors, persuades prospects, and wins customers.
StetOct 27, 2018
There’s a term in copyediting called “stet.” That’s what you write when you want the copyeditor to not make the indicated change. It’s probably Latin for, “leave…
Hemingway, a Lost Suitcase, and the Recipe for StupidityOct 22, 2018
No matter how good our intentions, sometimes we do incredibly stupid things, like lose a suitcase full of priceless writings. In this article, learn how to recognize the potential for stupidity before it happens.
I make up to $6,000 a day writing quotes on Instagram — here's howOct 11, 2018
Insider gathered advice from successful entrepreneurs on turning passions into profitable businesses.
How to Write Awesome Tech SpecsOct 31, 2017
Tech specs have more utility than most engineers realize.
wv
The Outpost - New River GorgeOct 27, 2025
Newly renovated campground situated less than a ¾ of a mile hike from the New River Gorge Bridge. The Outpost offers a variety of lodging options from newly renovated rustic cabins, recently paved RV camper hookup sites, updated tent platforms, field camping spaces and a Grateful Dead-themed camper. Amenities include; climate-controlled bathhouse, laundry facility, community fire pit and an temperature controlled lodge. We're also an outdoor music venue hosting live music events.
Olson Observation Tower in Hambleton, West VirginiaSep 27, 2025
Climb the tallest remaining fire lookout tower in West Virginia for unparalleled views—if you dare.
How Tucker residents lost any say on a data centerAug 3, 2025
Tucker County residents fought for details of a data center campus planned in their community. Lawmakers made sure they couldn’t do anything about it.
Ella Hanshaw: Woman on FireJul 16, 2025
Author Kelly Kerney tells the story behind the newly released West Virginia gospel album Ella Hanshaw’s Black Book.
A grassroots effort brought public transit to Monroe CountyJun 1, 2025
Monroe County has three new bus routes operated by the Mountain Transit Authority as a result of grassroots organizing efforts.
Water level monitorsApr 4, 2025
Developers drop out of Appalachian hydrogen hub over strict carbon emission capsNov 25, 2024
Several of the initial development partners balk at the terms of a federal tax credit that places restrictions on the amount of carbon in the hydrogen production process.
Aa former West Virginia steel mill is now home to a cutting-edge battery plant - Fast CompanyOct 25, 2024
Form Energy uses iron-air technology to store energy far longer than a lithium-ion battery can.
North Bend CampingAug 1, 2024
Found among the Mid-Ohio Valley’s rolling hills, lakes and streams, North Bend State Park offers a multitude of recreational facilities in a beautiful
How to Find a Good, Well-Staffed Nursing HomeJul 12, 2024
Here are the telltale signs to look for in nursing homes to avoid, and resources that can point to better places.
Patti Hamilton: Will you still feed me when I'm 64? (Opinion)Jul 3, 2024
Aging has been on my mind lately following the 100 year birthday celebration our family held for Aunt Jo, my late dad’s younger sibling by one year. Our dad died
In one of the most dangerous workplaces in West Virginia, a poultry giant hJun 5, 2024
Seeking safety and jobs, people from around the world have come to Hardy County to work at a poultry processing plant.
Thousands of West Virginia voters lack choices on their ballots. Here are tMay 13, 2024
In West Virginia, a large number of races on county primary ballots only include one candidate.
West VirginiaMay 13, 2024
The Progressive Running to End the Dominance of Coal in West VirginiaMay 10, 2024
Zach Shrewsbury, a thirty-two-year-old Marine Corps veteran, is vying for Joe Manchin’s soon-to-be-vacant Senate seat on a platform of bringing well-paying, renewable-energy jobs to the state.
As small businesses in West Virginia struggle to get off the ground, some eApr 22, 2024
Entrepreneurs trying to get their business off the ground say West Virginia’s funding programs and education networks can be hard to navigate
Lost HighwaysMar 5, 2024
Hosted by Bill Lynch Fridays at 10 p.m. & Saturdays at 8 p.m. on WVPB Radio Lost Highways: indie rock, alternative country, Americana, rock-a-billy
Change would exempt West Virginia private schools from state vaccination reFeb 29, 2024
As of now, the West Virginia Department of Education boasts that the state has one of the most effective school-entry vaccine preventable laws in the nation.
Biden is touting hydrogen as a source of clean energy and West Virginia offSep 26, 2023
“Green hydrogen” vs “blue hydrogen”; the ARCH2 hydrogen hub; and West Virginia’s role: hydrogen energy in the state, explained.
Enjoy A Scenic Drive Along Some Of West Virginia’s Most Beautiful BackroadsSep 4, 2023
The Seneca Skyway is a newly designated scenic drive in West Virginia, offering stunning views and unique sights along a loop through the state’s
Hanging Rock Raptor ObservatoryJul 28, 2023
Nature's Haven And Celestial Spectacle By Jonathan Eggleston, for RealWV Perched atop Peters Mountain, in Monroe County WV, the Hanging Rock Raptor Obse
‘Domino effect’: Eastern Panhandle residents struggle to get vital health cJun 22, 2023
The end of Ryneal Medical Transport has brought transportation issues to a crisis level in West Virginia’s Eastern Panhandle.
When ClearFiber came to townJun 15, 2023
The company promised customers fast, affordable internet. Now it’s bankrupt and faces allegations of overcharging customers, property damage and unpaid bills.
You can probably manufacture closer to home than you thinkMar 19, 2023
Let's take a closer look at how nonprofit FORGE helps founders manufacture on the other side of town instead of the other side of the world.
A West Virginia company with a history of safety violations is pushing to lMar 6, 2023
A West Virginia company with a history of safety violations is pushing to limit payouts to injured workers who were knowingly endangered.
Display Glass Products | Agama Glass TechnologiesDec 8, 2022
Agama Glass Technologies is the only US manufacturer of chemically etched anti-glare glass. We offer a wide selection of display glass products and technical glass processing solutions.
https://www.countyoffice.org/property-records-search/?q=1132-greenberry-dr-elkview-wv-25071Dec 2, 2022
A Secret Door Will Take You To An Underground Speakeasy In West Virginia That Was Built In 1900Oct 26, 2022
Hale House in Charleston, West Virginia, offers a unique dining experience with a hidden speakeasy and a vast selection of
Why Joe Mazzulla, molded by West Virginia, was destined to become Celtics’ head coachOct 19, 2022
Joe Mazzulla’s path to head coach of the Celtics was 15 years in the making, and it could have been seen coming from Morgantown, West Virginia.
Scenic parkway explores West Virginia's highest peaks - West Virginia ExploSep 24, 2022
MARLINTON, W.Va. — Traveling through a windswept landscape of spruce and cranberry, a scenic parkway that explores some of the highest elevations in West
A Rural Doctor Gave Her All. Then Her Heart Broke. (Published 2022)Sep 20, 2022
Physicians suffer one of the highest burnout rates among professionals. Dr. Kimberly Becher, one of two family practitioners in Clay County, West Virginia, learned the hard way.
Old Gods of Appalachia: Fauna and Flora (by @aleks7even – dark print) by oldgodsofappalachiaAug 31, 2022
Original art by Aleks7 Illustration (@aleks7even), inspired by Eldritch horror podcast Old Gods of Appalachia and licensed by Old Gods of Appalachia.
J.Q. Dickinson Appalachian MercantileAug 21, 2022
Curator of Appalachian food, crafts, home and bath goods. Get a subscription to have an assortment delivered monthly or seasonally. Appalachia's finest goods. Appalachia is home to high quality artisans and producers. We want to share these fine products with the world.
1576 Lee St E APT A, Charleston, WV 25311 | ZillowApr 14, 2022
1576 Lee St E Apt A, Charleston WV, is a Apartment home that contains 1100 sq ft.It contains 2 bedrooms and 1 bathroom. The Rent Zestimate for this Apartment is $856/mo, which has increased by $856/mo in the last 30 days.
When Wall Street came to coal country: how a big-money gamble scarred AppalSep 14, 2021
The long read: Around the turn of the millennium, hedge fund investors put an audacious bet on coal mining in the US. The bet failed – but it was the workers and the environment that paid the price
Serving Up West Virginia History, Not All of It Sweet (Published 2019)Aug 21, 2021
While big-name chefs take up Appalachian cooking, a farm couple are using old seeds and recipes to tell a more complex story and lift up their region.
The Billy Motel & BarFeb 22, 2021
West Virginia Has Everyone’s Attention. What Does It Really Need? - The NewFeb 8, 2021
With the right federal response, it could become a model of renewal for other places around the country that prosperity has left behind.
This Flood-Savaged Hamlet Proves Climate Change Isn’t Just a Coastal ConcernJan 12, 2020
Nine inches of rain nearly wiped Richwood, West Virginia, off the map. As waters rise around the globe, this tiny town offers a terrifying vision of our future—if we don’t act.
This little butcher shop in rural West Virginia is turning out world-classNov 6, 2019
A young couple’s grocery store could start a patty pilgrimage to Capon Bridge.
Long Misunderstood, Appalachian Food Finds the SpotlightSep 10, 2019
Chefs like Sean Brock and Katie Button are embracing and expanding on the region’s cooking, which is far more varied than most people realize.
Losing the NewsJul 27, 2019
The Charleston Gazette-Mail, known for its dogged accountability journalism, survived a merger and bankruptcy. Will it survive a new owner with ties to the very industries its reporters have been watchdogging?
Opinion | The Land Where the Internet Ends (Published 2019)Jun 23, 2019
To find real solitude, you have to go out of range. But every year that’s harder to do, as America’s off-the-grid places disappear.
Horns Down should become college football’s universal hand signalNov 30, 2018
It offends rich people who don’t like fun, and what’s more fun than that?
“I Don’t Want to Shoot You, Brother”Nov 30, 2018
In 2016, a West Virginia police officer came upon a young man in distress who asked the officer to shoot him. The officer didn’t. A few minutes, another officer did. Only one of them lost their job.
Moonshine and the Mountaineers: West Virginia's tailgate traditionNov 8, 2018
The potent homemade whiskey is a hand-me-down through generations and a favorite of visiting fans. It's also illegal -- not that anyone cares.
West Virginia’s Small-Town RevivalOct 10, 2018
Remote as they seem, communities just three hours from Washington, D.C., are more than a jumping-off point for world-class outdoor adventures.
How to Win in Trump CountrySep 13, 2018
For Joe Manchin, it's simple: Keep it local. Focus on health care. And don't run against the president.
Luther Elkins Petroglyphs in Clear Fork, West VirginiaSep 12, 2018
Some claim this West Virginian rock art was written by Irish monks in the Ogham.
A lost vision of West Virginia – Explore Parts UnknownApr 30, 2018
Famous photos of Appalachia in the Depression tell only part of the story.
'Heroin(e)': The Women Fighting Addiction In Appalachia : NPRMar 8, 2018
An Oscar-nominated documentary short explores the country's opioid crisis through the heroism of women in Huntington, W.Va. — women like fire chief Jan Rader and drug court judge Patricia Keller.
Vulcan Bridge in Vulcan West VirginiaOct 24, 2011
This rural bridge gave the government of West Virginia a red scare.
yaml
What is a YAML file? A guide from basics to practical useOct 31, 2025
YAML is a data serialization format used for configuration files and more. This article explains YAML fundamentals and practical applications in Kubernetes and other environments.
YAML: The Norway ProblemApr 13, 2025
Earlier this week, Haroen Viaene posted this tweet about YAML: worst part of yaml: https://yaml.org/type/bool.html — Haroen Viaene (@haroenv) January 10, 2022 The linked-to page contains the documentation on what defines a boolean in YAML, and details that it can be parsed using this regex: y|Y|yes|Yes|YES|n|N|no|No|NO |true|True|TRUE|false|False|FALSE |on|On|ON|off|Off|OFF The reason to why this is problematic … Continue reading "YAML: The Norway Problem"
Using Arrays in YAML: Practical ExamplesDec 17, 2024
Make your config files even more useful by adding a list of items in a sequence in YAML.
Liquid YAML: Programmatic Data | Ben CongdonMay 4, 2024
I’ve been working on a configuration management project recently, and as a consequence have been working regularly with YAML. It’s a very capable markdown language, but it gets unwieldy very quickly. I’ve come up with a hacky - yet, in my mind, pretty awesome - ‘solution’ to cut down on YAML bulk and allow for some pretty surprising templatization of data.
module Psych - Documentation for Ruby 3.4Apr 16, 2024
Converting JSON to YAML and Vice Versa in the Command Line | Baeldung on LiApr 14, 2024
Learn ways to convert from JSON to YAML and from YAML to JSON using the Linux command line.
Why YAML is better than JSON (read before screaming)Mar 20, 2023
You have probably seen or used the YAML format in configuration files. YAML (a recursive acronym for...
Python YAML: How to Load, Read, and Write YAML • Python Land TutorialMar 19, 2023
YAML is easy to write for humans, and read for computers. Learn how to open, parse, and read YAML with Python. With lots of example code!
YAMLlint - The YAML ValidatorMar 13, 2023
Validate, Verify and Reformat your YAML documents, optimized for Ruby on Rails
Nested lists in yaml - Stack OverflowFeb 25, 2023
How can I create nested lists in YAML? I want to get:
{"Hello": ["as", ["http://", ["cat"]]]}
Here's my YAML that doesn't work (with pyYaml):
Hello:
- &
Merge - yqJun 21, 2021
Saving/Retrieving Data With a YAML file in Ruby: The Basics | by Kristen FlMay 28, 2021
Writing and reading yaml files can be very simple. Here are a few examples.
Advanced YAML Syntax CheatsheetMay 7, 2021
YAML (YAML Ain’t Markup Language) is a data serialization language used to create key-value pair conf...
YAML - Collections and Structures - TutorialspointFeb 18, 2021
YAML - Collections and Structures - YAML includes block collections which use indentation for scope. Here, each entry begins with a new line. Block sequences in collections indicate each entry with a dash and space (-). In YAML, block collections styles are not denoted by any specific indicator. Block collection in YAML can distingui
Online HTML To YAML ConverterJan 30, 2021
This free online tool lets you convert a HTML file into a YAML file. No need to download or install any software. Click to convert your file now.
yarn
Package Managers: Understanding npm, npx and yarnMay 27, 2023
In the development scenario using JavaScript/TypeScript, it is unthinkable to build professional...
Npm vs Yarn: What Should you use for managing packages in React?Feb 11, 2023
Both npm (Node Package Manager) and Yarn are popular package managers for JavaScript projects,...
NPM vs Yarn: let's settle things out.Apr 13, 2022
Yarn and NPM are two of the most popular Node.js package managers. They allow downloading,...
NPM vs. YARN: Basic CommandsNov 28, 2021
Here is a quick reference guide for basic commands that we can use when dealing with Node and...
yellowbrick
Statology Sprint: Visual Model Evaluation with YellowbrickMay 2, 2025
This Sprint focuses on Yellowbrick, a Python visualization library that extends the scikit-learn API to incorporate visual diagnostics in your machine learning workflow.
How to Analyze Features Using YellowbrickMar 4, 2025
In this article, we'll walk through the process of aggregating claims data to create meaningful provider features, visualize patterns using Yellowbrick's Parallel Coordinates, and explore other visualization tools available for feature analysis.
yoga
How to Exercise More Day to Day: 7 Tips That Actually WorkMar 17, 2023
Try these easy ways to sneak exercise into your daily routine and improve your everyday health.
Periodic Table of Bodyweight ExercisesDec 21, 2022
Strength Stack 52 Bodyweight Exercises Games make exercising fun. Play dozens of different fitness games with your friends.
Yoga Poses, Postures and Asanas | The Yoga PosesDec 21, 2022
Yoga for Beginners: The Best Basic Stretches to Get You StartedJan 23, 2022
Yoga stretches are great for everything from pain relief to stress relief, and they’re really easy to work into your day. Yoga instructor Donna Noble explains how.
10 Best Stretches to Ease Your Lower Back Pain, According to TrainersSep 20, 2021
These exercises will bring you the relief you’ve been craving.
https://www.dosome.yoga/Aug 10, 2020
youtube
How YouTube redrew the TV map - in graphsMay 13, 2025
As YouTube has risen over the past 20 years to the streaming giant it is today, the platform has changed the way people watch TV.
The hidden world beneath the shadows of YouTube's algorithmMar 9, 2025
There's a secret side of YouTube, just beyond the guiding hand of the algorithm – and it’s nothing like what you know.
YouTube at 20: How the Video Colossus Launched the Creator Economy and Turned From Hollywood Foe to FriendMar 8, 2025
At 20, YouTube is a multibillion-dollar streamer that powers thousands of creator businesses and has become a force media companies can't ignore.
YouTube dominates streaming, forces media companies to adaptJun 28, 2024
YouTube is gaining share of viewership on TVs, and legacy media doesn't have a uniform strategy to deal with the threat.
Let's reproduce GPT-2 (124M)Jun 19, 2024
We reproduce the GPT-2 (124M) from scratch. This video covers the whole process: First we build the GPT-2 network, then we optimize its training to be really fast, then we set up the training run following the GPT-2 and GPT-3 paper and their hyperparameters, then we hit run, and come back the next morning to see our results, and enjoy some amusing model generations. Keep in mind that in some places this video builds on the knowledge from earlier videos in the Zero to Hero Playlist (see my channel). You could also see this video as building my nanoGPT repo, which by the end is about 90% similar.
Links:
- build-nanogpt GitHub repo, with all the changes in this video as individual commits: https://github.com/karpathy/build-nanogpt
- nanoGPT repo: https://github.com/karpathy/nanoGPT
- llm.c repo: https://github.com/karpathy/llm.c
- my website: https://karpathy.ai
- my twitter: https://twitter.com/karpathy
- our Discord channel: https://discord.gg/3zy8kqD9Cp
Supplementary links:
- Attention is All You Need paper: https://arxiv.org/abs/1706.03762
- OpenAI GPT-3 paper: https://arxiv.org/abs/2005.14165 - OpenAI GPT-2 paper: https://d4mucfpksywv.cloudfront.net/better-language-models/language_models_are_unsupervised_multitask_learners.pdf- The GPU I'm training the model on is from Lambda GPU Cloud, I think the best and easiest way to spin up an on-demand GPU instance in the cloud that you can ssh to: https://lambdalabs.com
Chapters:
00:00:00 intro: Let’s reproduce GPT-2 (124M)
00:03:39 exploring the GPT-2 (124M) OpenAI checkpoint
00:13:47 SECTION 1: implementing the GPT-2 nn.Module
00:28:08 loading the huggingface/GPT-2 parameters
00:31:00 implementing the forward pass to get logits
00:33:31 sampling init, prefix tokens, tokenization
00:37:02 sampling loop
00:41:47 sample, auto-detect the device
00:45:50 let’s train: data batches (B,T) → logits (B,T,C)
00:52:53 cross entropy loss
00:56:42 optimization loop: overfit a single batch
01:02:00 data loader lite
01:06:14 parameter sharing wte and lm_head
01:13:47 model initialization: std 0.02, residual init
01:22:18 SECTION 2: Let’s make it fast. GPUs, mixed precision, 1000ms
01:28:14 Tensor Cores, timing the code, TF32 precision, 333ms
01:39:38 float16, gradient scalers, bfloat16, 300ms
01:48:15 torch.compile, Python overhead, kernel fusion, 130ms
02:00:18 flash attention, 96ms
02:06:54 nice/ugly numbers. vocab size 50257 → 50304, 93ms
02:14:55 SECTION 3: hyperpamaters, AdamW, gradient clipping
02:21:06 learning rate scheduler: warmup + cosine decay
02:26:21 batch size schedule, weight decay, FusedAdamW, 90ms
02:34:09 gradient accumulation
02:46:52 distributed data parallel (DDP)
03:10:21 datasets used in GPT-2, GPT-3, FineWeb (EDU)
03:23:10 validation data split, validation loss, sampling revive
03:28:23 evaluation: HellaSwag, starting the run
03:43:05 SECTION 4: results in the morning! GPT-2, GPT-3 repro
03:56:21 shoutout to llm.c, equivalent but faster code in raw C/CUDA
03:59:39 summary, phew, build-nanogpt github repo
Corrections:
I will post all errata and followups to the build-nanogpt GitHub repo (link above)
SuperThanks:
I experimentally enabled them on my channel yesterday. Totally optional and only use if rich. All revenue goes to to supporting my work in AI + Education.
Let's build GPT: from scratch, in code, spelled out. - YouTubeApr 9, 2024
We build a Generatively Pretrained Transformer (GPT), following the paper "Attention is All You Need" and OpenAI's GPT-2 / GPT-3. We talk about connections to ChatGPT, which has taken the world by storm. We watch GitHub Copilot, itself a GPT, help us write a GPT (meta :D!) . I recommend people watch the earlier makemore videos to get comfortable with the autoregressive language modeling framework and basics of tensors and PyTorch nn, which we take for granted in this video.
Links:
- Google colab for the video: https://colab.research.google.com/drive/1JMLa53HDuA-i7ZBmqV7ZnA3c_fvtXnx-?usp=sharing
- GitHub repo for the video: https://github.com/karpathy/ng-video-lecture
- Playlist of the whole Zero to Hero series so far: https://www.youtube.com/watch?v=VMj-3S1tku0&list=PLAqhIrjkxbuWI23v9cThsA9GvCAUhRvKZ
- nanoGPT repo: https://github.com/karpathy/nanoGPT
- my website: https://karpathy.ai
- my twitter: https://twitter.com/karpathy
- our Discord channel: https://discord.gg/3zy8kqD9Cp
Supplementary links:
- Attention is All You Need paper: https://arxiv.org/abs/1706.03762
- OpenAI GPT-3 paper: https://arxiv.org/abs/2005.14165
- OpenAI ChatGPT blog post: https://openai.com/blog/chatgpt/
- The GPU I'm training the model on is from Lambda GPU Cloud, I think the best and easiest way to spin up an on-demand GPU instance in the cloud that you can ssh to: https://lambdalabs.com . If you prefer to work in notebooks, I think the easiest path today is Google Colab.
Suggested exercises:
- EX1: The n-dimensional tensor mastery challenge: Combine the `Head` and `MultiHeadAttention` into one class that processes all the heads in parallel, treating the heads as another batch dimension (answer is in nanoGPT).
- EX2: Train the GPT on your own dataset of choice! What other data could be fun to blabber on about? (A fun advanced suggestion if you like: train a GPT to do addition of two numbers, i.e. a+b=c. You may find it helpful to predict the digits of c in reverse order, as the typical addition algorithm (that you're hoping it learns) would proceed right to left too. You may want to modify the data loader to simply serve random problems and skip the generation of train.bin, val.bin. You may want to mask out the loss at the input positions of a+b that just specify the problem using y=-1 in the targets (see CrossEntropyLoss ignore_index). Does your Transformer learn to add? Once you have this, swole doge project: build a calculator clone in GPT, for all of +-*/. Not an easy problem. You may need Chain of Thought traces.)
- EX3: Find a dataset that is very large, so large that you can't see a gap between train and val loss. Pretrain the transformer on this data, then initialize with that model and finetune it on tiny shakespeare with a smaller number of steps and lower learning rate. Can you obtain a lower validation loss by the use of pretraining?
- EX4: Read some transformer papers and implement one additional feature or change that people seem to use. Does it improve the performance of your GPT?
Chapters:
00:00:00 intro: ChatGPT, Transformers, nanoGPT, Shakespeare
baseline language modeling, code setup
00:07:52 reading and exploring the data
00:09:28 tokenization, train/val split
00:14:27 data loader: batches of chunks of data
00:22:11 simplest baseline: bigram language model, loss, generation
00:34:53 training the bigram model
00:38:00 port our code to a script
Building the "self-attention"
00:42:13 version 1: averaging past context with for loops, the weakest form of aggregation
00:47:11 the trick in self-attention: matrix multiply as weighted aggregation
00:51:54 version 2: using matrix multiply
00:54:42 version 3: adding softmax
00:58:26 minor code cleanup
01:00:18 positional encoding
01:02:00 THE CRUX OF THE VIDEO: version 4: self-attention
01:11:38 note 1: attention as communication
01:12:46 note 2: attention has no notion of space, operates over sets
01:13:40 note 3: there is no communication across batch dimension
01:14:14 note 4: encoder blocks vs. decoder blocks
01:15:39 note 5: attention vs. self-attention vs. cross-attention
01:16:56 note 6: "scaled" self-attention. why divide by sqrt(head_size)
Building the Transformer
01:19:11 inserting a single self-attention block to our network
01:21:59 multi-headed self-attention
01:24:25 feedforward layers of transformer block
01:26:48 residual connections
01:32:51 layernorm (and its relationship to our previous batchnorm)
01:37:49 scaling up the model! creating a few variables. adding dropout
Notes on Transformer
01:42:39 encoder vs. decoder vs. both (?) Transformers
01:46:22 super quick walkthrough of nanoGPT, batched multi-headed self-attention
01:48:53 back to ChatGPT, GPT-3, pretraining vs. finetuning, RLHF
01:54:32 conclusions
Corrections:
00:57:00 Oops "tokens from the _future_ cannot communicate", not "past". Sorry! :)
01:20:05 Oops I should be using the head_size for the normalization, not C
Understanding YouTube Campaign TypesFeb 19, 2024
Google Ads offers seven YouTube campaign subtypes, ranging from reaching users while browsing to driving conversions.
Adam Sandler: Lunch Lady Land - SNL - YouTubeJan 23, 2024
Adam Sandler performs "Lunch Lady Land," a song about the lunch lady (Chris Farley) and how the angry food revolted against her, until Sloppy Joe (Kevin Nealon) saved the day. [Season 19, 1994]
#SNL
Subscribe to SNL: https://goo.gl/tUsXwM
Get more SNL: http://www.nbc.com/saturday-night-live
Full Episodes: http://www.nbc.com/saturday-night-liv...
Like SNL: https://www.facebook.com/snl
Follow SNL: https://twitter.com/nbcsnl
SNL Tumblr: http://nbcsnl.tumblr.com/
SNL Instagram: http://instagram.com/nbcsnl
SNL Pinterest: http://www.pinterest.com/nbcsnl/
What I learned from 100 days of rejection | Jia Jiang | TEDJan 16, 2024
Jia Jiang adventures boldly into a territory so many of us fear: rejection. By seeking out rejection for 100 days -- from asking a stranger to borrow $100 to requesting a "burger refill" at a restaurant -- Jiang desensitized himself to the pain and shame that rejection often brings and, in the process, discovered that simply asking for what you want can open up possibilities where you expect to find dead ends.
TEDTalks is a daily video podcast of the best talks and performances from the TED Conference, where the world's leading thinkers and doers give the talk of their lives in 18 minutes (or less). Look for talks on Technology, Entertainment and Design -- plus science, business, global issues, the arts and much more.
Find closed captions and translated subtitles in many languages at http://www.ted.com/translate
Follow TED news on Twitter: http://www.twitter.com/tednews
Like TED on Facebook: https://www.facebook.com/TED
Subscribe to our channel: http://www.youtube.com/user/TEDtalksDirector
The Secretive, Delightful Man Changing Everything We Know About Theme ParksJul 9, 2023
The only thing more fun than the rides themselves is this guy’s staggering analysis of them.
From Spotify to YouTube: How I Built a Python Script to Convert PlaylistsApr 26, 2023
I developed the script to convert the Spotify playlist to YouTube playlist. I am here to share how I...
YouTube Music will let you make your own custom radio stationsFeb 22, 2023
You can choose artists, variability, moods, and more.
Why YouTube spent the money on NFL Sunday TicketDec 27, 2022
YouTube chief product officer Neal Mohan tells us the steaming giant is making a big bet on TVs, where it’s seeing the fastest growth.
3 Useful Python Automation ScriptsNov 8, 2022
The post highlights three useful applications of using python to automate simple desktop tasks. Stay tuned till the end of the post to find the reference for a bonus resource.
No, YouTube, I will not subscribe to PremiumSep 22, 2022
Do you think YouTube Premium subscription pop-ups and the platform's burgeoning number of ads are in bad taste? You're not alone.