Thursday, May 14, 2026
Home Blog Page 10

These are the 5 options that make the Samsung Galaxy Watch 8 value it

0


Among the many compelling choices from Samsung, Google, and OnePlus, I went with the Galaxy Watch 8 as my Put on OS smartwatch of selection. The value was an enormous motive, for the reason that Samsung Galaxy Watch 8 begins at $350, and reductions and trade-ins additional decrease the fee. One other issue was the watch’s design, which is far thinner and lower-profile than a Pixel Watch or OnePlus Watch. Greater than the rest, the Samsung Well being suite received me over.

There are a handful of Samsung Well being options that genuinely present perception into your health and long-term well being utilizing the Galaxy Watch 8’s sensors. I can look at my watch just a few occasions day by day and get prompt snapshots of how I am feeling utilizing underlying sensor information. You’ll be able to too, utilizing these 5 Galaxy Watch 8 options. They’re additionally obtainable on the Galaxy Watch 8 Traditional and the Galaxy Watch Extremely.

Newton’s Regulation of Gravity Simply Handed Its Greatest Check Ever : ScienceAlert

0


The movement of galaxy clusters within the distant Universe has simply yielded the largest-scale take a look at but of the legal guidelines of gravity.

Throughout scales that span lots of of thousands and thousands of light-years, gravity continues to behave the way in which Isaac Newton predicted in his common legislation of gravitation.

In line with this legislation, each particle within the Universe exerts a gravitational power on different particles proportional to its mass, and inversely proportional to the sq. of the gap between the facilities of mass of the 2 particles.

Observing this impact in galaxy clusters billions of light-years away strengthens our present understanding of gravity – and it additionally strengthens the case for the mysterious theoretical supply of unexplained gravitational pull generally known as darkish matter.

Galaxy clusters can include hundreds of galaxies, and can be utilized to probe excessive physics. This one is MACS J1149.6+2223. (NASA, ESA, and S. Rodney/JHU and the FrontierSN group; T. Treu/UCLA, P. Kelly/UC Berkeley, and the GLASS group; J. Lotz/STScI and the Frontier Fields group; M. Postman/STScI and the CLASH group; and Z. Levay/STScI)

“It’s outstanding that the legislation of the inverse of the squares – proposed by Newton within the seventeenth century after which integrated by Einstein’s idea of normal relativity – continues to be holding its floor within the twenty first century,” says cosmologist Patricio Gallardo of the College of Pennsylvania.

Once we gaze out upon the Universe, a wierd discrepancy emerges.

Primarily based on a census of all the conventional, baryonic matter on the market – that is the stuff that all the things we will see is made from, together with stars, galaxies, black holes, planets, mud, and even us – and our understanding of how that matter behaves, issues do not transfer the way in which they need to.

Galaxies rotate too quick. Gentle touring by way of the Universe follows a space-time gravitational curvature too pronounced for baryonic mass alone.

Galaxy clusters that ought to fly aside are as a substitute sure tightly collectively. Tiny ripples within the cosmic microwave background solely make sense if a lot of the matter within the Universe is invisible.

Diagram illustrating gravitational lensing.
Diagram illustrating gravitational lensing. (NASA, ESA & L. Calçada)

There are two most important explanations for these discrepancies. One among them is darkish matter – one thing we will not instantly detect that solely interacts with the baryonic Universe by way of gravity.

Primarily based on measurements of the aforementioned phenomena, roughly 85 p.c of the matter within the Universe is darkish.

The opposite rationalization is that there is one thing lacking from our definitions of gravity, first delivered by Newton after which refined by Albert Einstein.

“That’s the central puzzle,” Gallardo says. “Both gravity behaves otherwise on very massive scales, or the Universe incorporates extra matter that we can’t instantly see.”

One approach to interrogate these choices is to search for new proof of darkish matter. One other is to check whether or not gravity behaves in a fashion per the legal guidelines of physics.

Gallardo and his colleagues selected the latter, measuring the velocities of distant galaxy clusters in a quantity of area round 5 to 7 billion light-years away.

This pattern incorporates round 686,000 galaxies, a lot of that are sure up in clusters gravitationally shifting in the direction of one another.

The outer edges of galaxies transfer manner too quick to be defined by baryonic mass. (ESA/Hubble & NASA)

To measure the velocities of those clusters, the researchers used one thing known as the kinematic Sunyaev-Zeldovich impact. The primary mild to stream freely by way of the Universe is all over the place round us at this time – that is the cosmic microwave background, or CMB.

On its manner in the direction of us, mild from the CMB usually passes by way of the huge clouds of scorching gasoline that encompass galaxy clusters. If the cluster will not be shifting, then the sunshine simply travels in a straight line; but when the cluster is shifting, then CMB photons scatter off free electrons, barely shifting the CMB sign.

By measuring the extent of the shift, scientists can decide how briskly the cluster was touring when mild was passing by way of it. The velocities at which two clusters are racing in the direction of one another can then be used to probe the plenty concerned and the conduct of the gravitational forces at play.

If a modification had been required to our theories of gravity, the gravitational forces could be stronger at massive distances from the plenty concerned; that’s, they might weaken extra slowly with distance.

Subscribe to ScienceAlert's free fact-checked newsletter

What the researchers noticed as a substitute was that the gravitational pull between clusters pale rapidly at better distances – per the theories of Newton and Einstein.

Associated: Spectacular New Einstein Cross Found Warping Area-Time

This implies that darkish matter is a greater supported rationalization for the unusual gravitational results noticed all through the Universe than modified gravity, but it surely nonetheless leaves many questions unanswered.

“This examine strengthens the proof that the Universe incorporates a element of darkish matter, however we nonetheless have no idea what that element is made from,” Gallardo says.

“With so many unanswered questions, gravity stays probably the most fascinating areas of analysis. It is a naturally engaging area.”

The analysis has been revealed in Bodily Evaluation Letters.

How you can Construct Vector Search From Scratch in Python


 

Introduction

 
You have in all probability typed a query right into a search bar and gotten outcomes that matched your phrases however fully missed your which means. Or watched a advice engine floor one thing eerily related although you by no means looked for it instantly. The hole between “discovering actual phrases” and “understanding what somebody really means” is what makes a search characteristic helpful.

Vector search closes that hole by representing textual content as factors in high-dimensional area, the place geometric proximity encodes semantic similarity. Two sentences can share zero phrases and nonetheless find yourself neighbors as a result of the mannequin realized that their meanings are shut.

This text builds a vector search engine from scratch in Python utilizing solely NumPy, so you possibly can see precisely what occurs at every step: how embeddings get saved and normalized, why cosine similarity reduces to a dot product, and what the ensuing search area really appears like while you mission it down to 2 dimensions.

You will get the code on GitHub.

 

What Is Vector Search?

 
Conventional key phrase search appears for actual phrase matches. Vector search works in a different way: it converts paperwork and queries into numerical vectors referred to as embeddings, then finds the vectors which are closest to one another in high-dimensional area.

The important thing perception is that closeness in vector area means semantic similarity. Two sentences that imply the identical factor — even when they share no phrases — may have embeddings which are close to one another.

The gap metric you utilize to measure “closeness” is what drives the entire system. The most typical one is cosine similarity, which measures the angle between two vectors moderately than their absolute distance. This makes it scale-invariant — helpful while you care about course or which means moderately than magnitude or phrase depend.

 

Setting Up the Dataset

 
We’ll work with a set of quick product descriptions from a fictional e-commerce catalog. These are pre-embedded as 8-dimensional vectors — a a lot diminished dimensionality that’s practical sufficient to reveal the ideas.

In an actual system, you’d generate these embeddings from a mannequin like sentence-transformers. For this tutorial, we simulate that step with managed random knowledge that has a transparent cluster construction.

import numpy as np

np.random.seed(42)

# Product catalog — 3 semantic clusters: electronics, clothes, furnishings
merchandise = [
    "Wireless noise-cancelling headphones with 30-hour battery",
    "Bluetooth speaker with waterproof design",
    "USB-C hub with 7 ports and power delivery",
    "4K HDMI cable 6ft braided",
    "Mechanical keyboard with RGB backlight",
    "Men's slim-fit chino pants navy blue",
    "Women's merino wool turtleneck sweater",
    "Unisex running jacket lightweight windbreaker",
    "Leather chelsea boots for men",
    "Organic cotton crew neck t-shirt",
    "Solid oak dining table seats 6",
    "Ergonomic mesh office chair lumbar support",
    "Linen sofa 3-seater natural beige",
    "Bamboo bookshelf 5-tier adjustable",
    "Memory foam mattress queen size medium firm",
]

# Simulate embeddings with cluster construction
# Cluster facilities in 8D area
electronics_center = np.array([0.9, 0.1, 0.2, 0.8, 0.1, 0.3, 0.7, 0.2])
clothing_center    = np.array([0.1, 0.8, 0.7, 0.1, 0.9, 0.2, 0.1, 0.8])
furniture_center   = np.array([0.2, 0.3, 0.9, 0.2, 0.1, 0.9, 0.3, 0.1])

n_per_cluster = 5
noise = 0.08

embeddings = np.vstack([
    electronics_center + np.random.randn(n_per_cluster, 8) * noise,
    clothing_center    + np.random.randn(n_per_cluster, 8) * noise,
    furniture_center   + np.random.randn(n_per_cluster, 8) * noise,
])

print(f"Embeddings form: {embeddings.form}")

 

Output:

Embeddings form: (15, 8)

 

Every row is a product. Every column is one dimension of its embedding. The product names will not be utilized by the search engine; solely the embeddings matter.

 

How to Build Vector Search from Scratch in Python
Picture by Creator

 

Constructing the Index

 
The “index” in a vector search engine is simply the saved set of normalized embeddings. Normalization is essential right here as a result of it makes cosine similarity equal to a dot product, which is cheaper to compute.

def normalize(vectors: np.ndarray) -> np.ndarray:
    """L2-normalize every row vector."""
    norms = np.linalg.norm(vectors, axis=1, keepdims=True)
    # Keep away from division by zero
    norms = np.the place(norms == 0, 1e-10, norms)
    return vectors / norms

class VectorIndex:
    def __init__(self):
        self.vectors = None
        self.labels = None

    def add(self, vectors: np.ndarray, labels: checklist):
        self.vectors = normalize(vectors)
        self.labels = labels
        print(f"Listed {len(labels)} gadgets with {vectors.form[1]}-dimensional embeddings.")

    def search(self, query_vector: np.ndarray, top_k: int = 3):
        query_norm = normalize(query_vector.reshape(1, -1))
        # Cosine similarity = dot product of normalized vectors
        scores = self.vectors @ query_norm.T  # form: (n_items, 1)
        scores = scores.flatten()
        # Get top-k indices sorted by descending rating
        top_indices = np.argsort(scores)[::-1][:top_k]
        return [(self.labels[i], float(scores[i])) for i in top_indices]

index = VectorIndex()
index.add(embeddings, merchandise)

 

Output:

Listed 15 gadgets with 8-dimensional embeddings.

 

The search methodology does three issues: normalizes the question, computes dot merchandise towards each saved vector, then kinds by rating and returns the top-k outcomes. That matrix multiplication (self.vectors @ query_norm.T) is all the retrieval step.

 

Working Queries

 
Now let’s check what we have constructed with just a few queries. We assemble question vectors by ranging from one of many cluster facilities and including just a little noise to simulate an actual question embedding.

def make_query(heart: np.ndarray, noise_scale: float = 0.05) -> np.ndarray:
    return heart + np.random.randn(8) * noise_scale


queries = {
    "audio tools": make_query(electronics_center),
    "informal put on":     make_query(clothing_center),
    "dwelling furnishings":  make_query(furniture_center),
}

for query_name, q_vec in queries.gadgets():
    print(f"nQuery: '{query_name}'")
    outcomes = index.search(q_vec, top_k=3)
    for rank, (label, rating) in enumerate(outcomes, 1):
        print(f"  {rank}. [{score:.4f}] {label}")

 

Output:


Question: 'audio tools'
  1. [0.9856] Wi-fi noise-cancelling headphones with 30-hour battery
  2. [0.9840] USB-C hub with 7 ports and energy supply
  3. [0.9829] Mechanical keyboard with RGB backlight

Question: 'informal put on'
  1. [0.9960] Males's slim-fit chino pants navy blue
  2. [0.9958] Leather-based chelsea boots for males
  3. [0.9916] Ladies's merino wool turtleneck sweater

Question: 'dwelling furnishings'
  1. [0.9929] Bamboo bookshelf 5-tier adjustable
  2. [0.9902] Linen couch 3-seater pure beige
  3. [0.9881] Stable oak eating desk seats 6

 

Scores near 1.0 imply near-identical course in embedding area, which is precisely what you anticipate for queries constructed from the identical cluster heart as their goal paperwork.

 

Visualizing the Embedding House

 
Excessive-dimensional knowledge is difficult to purpose about visually. Principal element evaluation (PCA) tasks the 8-dimensional embeddings right down to 2D so we will see the cluster construction. We’ll implement a minimal PCA utilizing solely NumPy.

The next code computes the 2D PCA projection and plots all product embeddings with labels and cluster colours:

import matplotlib.pyplot as plt
import matplotlib.patches as mpatches

projected = pca_2d(embeddings)

cluster_colors = (
    ["#4A90D9"] * 5 +   # electronics — blue
    ["#E8734A"] * 5 +   # clothes — orange
    ["#5BAD72"] * 5     # furnishings — inexperienced
)
cluster_labels = ["Electronics"] * 5 + ["Clothing"] * 5 + ["Furniture"] * 5

fig, ax = plt.subplots(figsize=(6, 4))
ax.scatter(projected[:, 0], projected[:, 1],
           c=cluster_colors, s=100, edgecolors="white", linewidths=0.7, zorder=3)

 

This half tasks question vectors into the identical area, overlays them, and finalizes the plot:

# Plot question projections
q_projected = pca_2d(
    np.vstack(checklist(queries.values())) - embeddings.imply(axis=0)
)
for (qname, _), (qx, qy) in zip(queries.gadgets(), q_projected):
    ax.scatter(qx, qy, marker="*", s=200, shade="gold",
               edgecolors="#333", linewidths=0.6, zorder=4)
    ax.annotate(f"⟵ question: {qname}", (qx, qy),
                textcoords="offset factors", xytext=(6, -8),
                fontsize=7, shade="#555555", type="italic")

legend_patches = [
    mpatches.Patch(color="#4A90D9", label="Electronics"),
    mpatches.Patch(color="#E8734A", label="Clothing"),
    mpatches.Patch(color="#5BAD72", label="Furniture"),
    mpatches.Patch(color="gold",    label="Query vectors"),
]
ax.legend(handles=legend_patches, loc="higher left", fontsize=6)
ax.set_title("Vector Search — Embedding House (PCA projection)", fontsize=10, pad=10)
ax.set_xlabel("PC 1"); ax.set_ylabel("PC 2")
ax.grid(True, linestyle="--", alpha=0.4)
plt.tight_layout()
plt.savefig("embedding_space_queries_only.png", dpi=150)
plt.present()

 

Output:

 

Vector Search — Embedding Space (PCA projection)
Vector Search — Embedding House (PCA projection)

 

The clusters separate cleanly. Every gold star (question vector) lands contained in the cluster it was constructed from. That is the geometry that vector search makes use of.

 

Visualizing the Similarity Rating Distribution

 
For any given question, it is helpful to see how similarity scores are distributed throughout the entire index — and never simply the top-k. This tells you whether or not the highest result’s a transparent winner or simply marginally higher than all the pieces else.

q_vec_furniture = queries["home furniture"]
q_norm_furniture = normalize(q_vec_furniture.reshape(1, -1))
all_scores_furniture = (index.vectors @ q_norm_furniture.T).flatten()

sorted_idx_furniture = np.argsort(all_scores_furniture)[::-1]
sorted_scores_furniture = all_scores_furniture[sorted_idx_furniture]
sorted_labels_furniture = [products[i][:30] + "…" if len(merchandise[i]) > 30
                           else merchandise[i] for i in sorted_idx_furniture]

# Outline bar colours: inexperienced for furnishings gadgets, grey for others
bar_colors_furniture = []
for i in sorted_idx_furniture:
    if i >= 10 and that i <= 14:  # Furnishings gadgets are initially at indices 10-14
        bar_colors_furniture.append("#5BAD72") # Inexperienced for furnishings
    else:
        bar_colors_furniture.append("#cccccc") # Grey for others

fig, ax = plt.subplots(figsize=(10, 5))
bars = ax.barh(sorted_labels_furniture[::-1], sorted_scores_furniture[::-1],
               shade=bar_colors_furniture[::-1], edgecolor="white", peak=0.65)

ax.axvline(sorted_scores_furniture[2], shade="#5BAD72", linestyle="--",
           linewidth=1.2, label="Prime-3 cutoff")
ax.set_xlim(sorted_scores_furniture.min() - 0.002, 1.001)
ax.set_xlabel("Cosine Similarity Rating")
ax.set_title("Question: 'dwelling furnishings' — Similarity Throughout All Merchandise", fontsize=11, pad=12)
ax.legend(fontsize=8)
ax.grid(axis="x", linestyle="--", alpha=0.4)
plt.tight_layout()
plt.savefig("score_distribution_furniture.png", dpi=150)
plt.present()

 

Output:

 

Query: 'home furniture' — Similarity Across All Products
Question: ‘dwelling furnishings’ — Similarity Throughout All Merchandise

 

There is a seen hole between the furnishings cluster (prime 5 bars) and all the pieces else. In follow, you’d use this hole to set a similarity threshold beneath which ends are suppressed fully.

 

Wrapping Up

 
You constructed a vector search engine with about 50 traces of NumPy: an index class that normalizes and shops embeddings, a search methodology that makes use of matrix multiplication to compute cosine similarity, and two visualizations that reveal the geometry behind the outcomes.

The following step is to switch the simulated embeddings with actual ones. Attempt loading sentence-transformers and embedding your individual textual content corpus. The index code right here will work with none modifications.

If you would like to learn extra “from scratch” articles, tell us what you’d wish to see subsequent!
 
 

Bala Priya C is a developer and technical author from India. She likes working on the intersection of math, programming, knowledge science, and content material creation. Her areas of curiosity and experience embrace DevOps, knowledge science, and pure language processing. She enjoys studying, writing, coding, and occasional! At present, she’s engaged on studying and sharing her information with the developer group by authoring tutorials, how-to guides, opinion items, and extra. Bala additionally creates participating useful resource overviews and coding tutorials.



Unbabel’s AI Translation Platform Updates: Q1 2025 Launch Notes


Innovation by no means stops at Unbabel, and we’re thrilled to share our newest product enhancements designed to make your multilingual communication extra highly effective, environment friendly, and cost-effective.

This quarter’s releases give attention to increasing language capabilities, bettering translator instruments, and supplying you with higher management over your initiatives. Let’s dive into what’s new!

New TowerLLM Variations: Extra Languages, Higher Efficiency

Our TowerLLM expertise has leveled up with expanded protection to 22 languages and considerably improved efficiency throughout difficult domains. We’ve enhanced customization capabilities that higher adhere to model particular tone and language necessities. Whether or not you’re translating technical documentation or artistic advertising content material, these enhancements guarantee constant high quality throughout all of your multilingual communications.

PDF Translation Made Easy (BETA)

Say goodbye to doc conversion complications. Now you can translate PDF paperwork instantly within the Initiatives App at no extra value. Merely add your PDF, choose the suitable filter, and obtain your translations in both PDF or Phrase format, streamlining your workflow and saving invaluable time.

Information at Your Fingertips: Stories App Export Characteristic

Making data-driven choices simply bought simpler with our new Export Stories characteristic. Extract translation metrics and price knowledge from the Portal with a easy click on, enabling seamless sharing with stakeholders and integration together with your present enterprise intelligence programs. Whether or not you’re monitoring efficiency or justifying translation investments, this characteristic places the facility of information in your fingers.

Streamlined Venture Administration

Reference File Integration

Communication is vital to nice translations. Now you may securely add reference recordsdata instantly throughout the challenge creation move, offering invaluable context to translation groups with out extra steps.

Translation Pipeline Flexibility

Why create a number of initiatives when one will do? Our new functionality permits you to choose completely different Translation Pipelines for every file inside a single challenge, streamlining your workflow and saving invaluable time.

Enhanced Initiatives App: Extra Management, Higher Workflow

We’ve up to date the Initiatives App with a number of options that offer you much more management over your translation initiatives:

Versatile Estimation

Have to make changes after seeing the preliminary value estimate? Now you can modify your challenge and immediately obtain up to date estimates earlier than closing submission, supplying you with full price range management.

Clear Value Monitoring

Preserve your funds in verify with improved visibility into challenge prices. As soon as your challenge is full, you’ll see the closing value instantly in your challenge particulars, making expense monitoring simple.

Versatile Content material Submission

Combine and match your content material submission strategies by combining file uploads with pasted textual content in a single challenge. This flexibility accommodates numerous content material sorts while not having to create separate initiatives.

Preview Earlier than You Commit

Eradicate formatting surprises by previewing how your chosen file filter will have an effect on your paperwork earlier than submission. This visible affirmation ensures your translated content material will keep the formatting you anticipate.

Smarter Instruments for Translators

Translator Copilot

Our new AI-powered Copilot characteristic is like having a high quality assistant for each translator. By leveraging High quality Estimation (QE) checks and LLM solutions, translators can rapidly determine potential errors and align their work together with your particular directions. The consequence? Increased high quality translations delivered extra effectively.

Displaying Tag Sort

We’ve made the interpretation course of extra intuitive by displaying tag sorts instantly within the enhancing interface. Translators can now simply determine formatting, placeholders, and customized tags, leading to fewer errors and extra assured dealing with of complicated content material.

What’s Subsequent for Unbabel?

These releases characterize our ongoing dedication to creating multilingual communication extra accessible, environment friendly, and efficient for international companies. Our product staff continues to innovate primarily based in your suggestions, so keep related for extra thrilling updates within the coming months.

Wish to see these new options in motion? Schedule a personalised demo in the present day, or in case you’re an present buyer, attain out to your Account Supervisor to learn to leverage these enhancements to your particular wants.

In regards to the Creator

Chloé Andrews

Chloé is Unbabel’s Product & Buyer Advertising Supervisor. She focuses on enhancing buyer understanding of Unbabel’s merchandise and worth via focused messaging and strategic communication.

My new favourite AI-powered app homes 70+ AI chatbots with ease

0


Andy Walker / Android Authority

Generative AI is in every single place, whether or not it’s used as a cornerstone of a service, used to construct apps, or employed to spice up performance inside them. However with so many new merchandise showing on a regular basis, which of them are price testing?

We’re right here to assist with a brand new bi-weekly sequence protecting the perfect and freshest AI apps and providers that it is best to learn about.

Should you’d like your app or service to be thought of for future editions of this sequence or have discovered an app worthy of inclusion, attain out to us through electronic mail or drop a remark down beneath. Alternatively, to assure your app will get showcased for all our fantastic readers to see, get in contact with our partnerships crew!

Why set up a number of AI chatbots when one will do?

ai hub ai app 4

Andy Walker / Android Authority

Scrolling via the apps listing on my telephone, I see that I’ve ChatGPT, Claude, Gemini, and Perplexity at present put in — 4 apps that accomplish kind of comparable duties. Whereas this loopy association is important for testing functions, you don’t should observe in my stead. That is the place our focus AI app this week comes into play.

AI Hub is a superb open supply container for myriad AI providers and chatbots. It’s primarily an internet wrapper that makes it tremendous straightforward to navigate to those platforms’ net pages. The true kicker is simply what number of of those providers it makes obtainable. Not one, not ten, however 78. Sure, you learn that proper — 78! Some are utterly obscure providers you seemingly by no means even heard of tucked away in there, whereas others embody frequent heavy hitters, like ChatGPT, DeepSeek, DuckDuckGo’s Duck AI, and Grok.

ai hub ai app 3

Andy Walker / Android Authority

If I wish to use a selected chatbot to perform a process, I can faucet the menu button, filter or seek for it, or just faucet the service I need. The app permits a number of bots to stay open within the background concurrently, making it supreme for evaluating outputs. AI Hub conveniently reopens on the bot I final accessed too.

What I actually admire about AI Hub is its deal with privateness. Sure, chatbots aren’t precisely synonymous with discretion, however the app genuinely tries to focus on the shortcomings of varied bots. It’ll spotlight which providers are utterly free, freemium, or paid, and that are protected to make use of for personal use utilizing “Privateness pleasant” and “Privateness centered” descriptors. That is extremely necessary provided that many of those providers can be relatively obscure to these new to chatbots past ChatGPT.

ai hub ai app 2

Andy Walker / Android Authority

Better of all, AI Hub blocks trackers and adverts as extensively as attainable and presents to forbid third-party cookies. Some providers merely don’t work nicely when these are disabled, however I really like that the developer offers customers the choice.

Whereas I actually wouldn’t suggest AI Hub as the first portal to particular chatbots for individuals who maintain accounts with them — you’re seemingly a lot better served by putting in these particular person apps — it’s excellent for everybody else. Customers who simply need a broad spectrum of choices with out awkwardly navigating to every through an internet browser or putting in these apps will discover AI Hub extraordinarily helpful and handy.


Different new AI apps and providers it is best to know!

There are many different nice new AI apps and providers on the market, together with:

Off Grid

off grid ai app 3

Andy Walker / Android Authority

One other free and open supply AI app, Off Grid, acts as a facilitator for LLMs that may run and course of knowledge on a tool.

So what does this imply? For one, you may choose between numerous fashions to obtain through the app, or import your individual to be used. Off Grid highlights advised fashions primarily based in your machine’s capabilities.

You possibly can then use these LLMs as your individual chat apps to perform numerous duties — generate pictures, crunch knowledge, or just situation numerous prompts. There’s a number of extra superior options for energy customers, too, together with undertaking creation, help for distant server connections, and particular person mannequin tweaks.

Better of all, when you’ve downloaded the fashions you need, Off Grid runs totally, nicely, off grid. Since LLMs crunch knowledge in your telephone, there’s no have to ever hook up with the web for assist, making this an effective way to securely experiment with on-device AI.

Yaps

yaps ai ai app 1

Andy Walker / Android Authority

I actually love the thought of Yaps. It’s an Android keyboard app that focuses on processing fuzzy, disordered dictation into clear, ordered textual content. All the information is processed on-device — a pleasant safety measure given the attainable delicate nature of texts and private dictation.

Throughout my checks, I discovered that it really works far, far faster than Gboard’s dictation, which frequently mishears me or fails to account for the context of my responses. Yaps does rather well on this regard.

The app additionally retains monitor of dictation stats, together with how a lot theoretical time I’ve saved utilizing the app versus typing, and what number of phrases the app has processed. It helps 5 languages at current, specifically English, Spanish, French, German, and Portuguese, and permits customers to rapidly swap between these from the keyboard itself.

Yaps is free for the primary week or 1,000 processed phrases, after which you’ll have to pay for entry via a weekly ($4.99) or annual ($144.99) subscription. It’s undoubtedly dear, however given its modern transcription abilities, it could be nicely price it for individuals who merely hate typing.

DealHunt

DealHunt is owned by Authority Media, the mother or father firm of Android Authority.

dealhunt site 1

Andy Walker / Android Authority

Lastly, how have you learnt when a tech deal is basically price it? I usually run into this drawback, particularly when in search of particular merchandise. I’ll see a 25% off marker, however does this imply I ought to lastly purchase it? Ought to I wait?

DealHunt is the authority on simplifying tech specials and offering context for Amazon pricing particulars.

Enter the product URL you’re involved in, and let DealHunt do the remainder. It compares the present value to the everyday value and the all-time low, and offers particulars on different comparable tech merchandise. It additionally collates variants, making it a lot simpler to select a colorway, calculates the product’s common value over time, and predicts the chance of a future value drop.

Total, DealHunt’s signature characteristic is the DealHunt Rating, which quantifies the standard of the present deal primarily based on numerous knowledge factors. That is extremely helpful for planning purchases, as a result of there’s nothing extra annoying than hitting purchase solely to see that product drop in value three days later.

Don’t wish to miss the perfect from Android Authority?

google preferred source badge light@2xgoogle preferred source badge dark@2x

Thanks for being a part of our group. Learn our Remark Coverage earlier than posting.

Hantavirus outbreak won’t trigger a covid-style pandemic, says WHO

0


Medics escort an individual with a suspected hantavirus an infection to an ambulance after being flown to Amsterdam, the Netherlands

Peter Dejong/Related Press/Alamy

The outbreak of hantavirus on board the cruise ship MV Hondius is unlikely to grow to be an epidemic, the World Well being Group introduced at the moment.

In a press briefing, a panel of WHO scientists sought to quell worldwide fears over the outbreak and reassure the general public that we aren’t about to see a repeat of the covid-19 pandemic. The panel additionally mentioned it meant to remain till all journalists’ questions have been answered and expressly acknowledged that it was necessary that folks not be alarmed by the cluster on the ship.

“This isn’t covid; this isn’t influenza,” mentioned WHO scientist Maria Van Kerkhove on the briefing. “This isn’t the beginning of an epidemic; this isn’t the beginning of a pandemic.”

Thus far, there have been 5 confirmed instances of hantavirus and three extra suspected instances. Three of those that fell ailing have died.

Two sufferers in hospital within the Netherlands and an individual in intensive care in South Africa are all reported to be bettering, the WHO mentioned.

Hantaviruses are a bunch of viruses carried by rodents that may trigger extreme illness in people. Folks normally get contaminated by contact with contaminated rodents or their urine, droppings or saliva.

Checks in South Africa carried out on two passengers from the ship have recognized the pathogen as Andes virus, the one identified hantavirus that may unfold from human to human.

It is usually one of many hantaviruses identified to trigger a extreme sickness in people known as hantavirus cardiopulmonary syndrome, with a mortality fee of as much as 50 per cent.

Tedros Adhanom Ghebreyesus, director common of the WHO, mentioned in a press briefing that as a result of the incubation interval of the virus is six weeks, it’s attainable extra instances might be reported in coming weeks

Nevertheless, the general public well being dangers stay low as a result of the virus requires shut bodily contact to transmit between individuals, and cautious contact tracing and worldwide cooperation will break the chain of transmission, mentioned Ghebreyesus.

Thus far, each nation known as on to help in managing the disaster has cooperated totally, he mentioned.

“There’s no must panic your entire inhabitants,” mentioned Abdirahman Mahamud, additionally on the WHO.

He mentioned solely symptomatic, contaminated individuals must be remoted. Those that might have been uncovered to the virus will solely require “lively monitoring”.

Mahamud mentioned the present state of affairs is most analogous to an outbreak of Andes virus in Argentina between November 2018 and February 2019 that contaminated 34 individuals and triggered 11 deaths. That started at a birthday celebration with roughly 100 friends. Whereas the outbreak was severe, the virus didn’t go on to unfold extensively locally.

“The principle concern is the opportunity of restricted person-to-person transmission,” Luis Marcos at Stony Brook Drugs in New York state tells New Scientist. “Nevertheless, such transmission seems to be inefficient and might sometimes be managed with commonplace isolation and quarantine precautions.”

“General, the danger of widespread transmission stays low, and the present stage of concern could also be larger than warranted,” he says.

Marcos suspects a most of 10 to fifteen individuals who have been on the cruise will find yourself being contaminated. Quarantine of individuals from the cruise might be sufficient, he says, and there’s “no pandemic potential in any respect”.

Luis Escobar at Virginia Tech warns that the menace posed by hantaviruses must be taken significantly. “I imagine hantavirus has pandemic threat, particularly hantavirus inflicting respiratory syndromes,” he says.

He and his workforce revealed a examine in 2025 reporting that there have been extra hosts of the virus than beforehand identified. They analysed over 14,000 blood samples for hantavirus from 49 species at 45 subject websites, discovering 296 constructive samples throughout 15 rodent species, together with six new species not beforehand reported as hosts. The workforce recognized Colorado, Virginia and Texas as explicit hotspots for the virus.

Nevertheless, Escobar believes the general public well being measures being taken will mitigate the pandemic threat from the present outbreak.

Matters:

final day in America (for 8 weeks)

0

Right this moment I’m double checking my packing, making ready to go away for 8 weeks in Europe. Each time I journey, I neglect one essential factor. So I’m excited to see after I get there what that one factor is. Within the meantime, let me clear out these browser tabs. Thanks once more everybody for all of your help!

Lakers are indignant about how the refs are officiating. Thunder is up 2.

Couple of fascinating papers I noticed introduced this week at an NBER workshop on AI and healthcare. This one is about AI serving to clear FDA medical units coverage hurdles.

However I actually discovered Carolyn Stein’s examine about Alphafold (with Ryan Hill) fascinating.

I heard this GPT on LinkedIn would possibly show you how to decide a journal on your paper. Or relatively, possibly get a way of what an editor would assume.

This weeks ransomware assault on Canvas obtained me occupied with that Pitt season two episode the place the hospital obtained hit with a cyberattack. This new AEJ paper Sayeh Nikpay, Hannah Neprash, and Claire McGlave regarded on the query empirically and located ransomware/cyber assaults on hospital have main disruptive results and even trigger mortality to rise by round 35%.

The Anthropic Institute pronounces its 4 analysis agendas: financial diffusion (eg who makes use of AI), threats and resilience (eg like cyber assaults), AI pushed R&D, and AI methods within the wild.

The Financial Science Society is a brand new affiliation selling rigorous causal inference, methodological range and amongst different issues prioritizes using AI in science.

Lydia Ashton’s web site. Her new paper on “vibe econometrics” may be very related to a paper I’m revising.

lat.md is a software that lets programmers write plain-English notes about what their code does and the way it’s organized, stored in a format that AI coding assistants can learn and comply with. The thought is that the AI does higher work when it has a human-written “map” of the venture to discuss with, as a substitute of getting to determine all the pieces out from scratch every time.​​​​​​​​​​​​​​​​

ClaudeHUD is a small Mac app that places Claude in your menu bar so you possibly can chat with it in a floating panel with out switching home windows, with extras like a number of tabs, session historical past, and Obsidian notes. It’s a wrapper across the Claude command-line software, constructed by economist Ben Daniels for individuals who need Claude at all times one click on away whereas they work.​​​​​​​​​​​​​​​​

The papers finding out the habits of AI brokers are exhibiting up. You in all probability noticed this paper by Serafin Grundl. Serafin had AI brokers (Codex and Claude Code) and 146 human analysis groups (ie many analyst design and plenty of agent design) independently estimate the identical DACA causal impact, and located the AI submissions and people produced related central estimates whereas AI reviewers constantly ranked the AI work above the human work.​​​​​​​​​​​​​​​​

Justin Wolfers has a brand new media enterprise. New York Occasions has a story on it. Good luck Justin in the event you’re studying this!

AI brokers can join a cloudflare account, pay for it, register it, and reply a working web site — with out the human ever copying API keys, getting into a bank card, going to a dashboard, nothing. All dealt with by Stripe.

Alan Moore continues his a long time lengthy complaining in regards to the comics business. Yawn. I might make an Alan Moore chatbot in an hour; all it could do is say the way it hates tremendous hero comics and that it regrets writing Watchmen.

Does faith make distinction in hooking up in school? Perhaps.

5 Harvard college, together with Dan Carpenter (chair of presidency dept) named Harvard school professors. Dan is superb.

I probably gained’t be watching this documentary footage.

AI Brokers for monetary companies. An Anthropic joint.

A brand new Bear episode, prequel, on Hulu. Trying ahead to checking it out.

Right here’s a summer time playlist Spotify made me. I’m digging their adoption of AI tbh. I feel that wager will repay.

Character.ai will get sued for impersonating a health care provider.

New paper in Nature finds the mind adjustments with one dose of psilocybin.

If you wish to cease cognitive decline, take into account not retiring. Excellent news for me; I intend to be a kind of economists who dies at his desk. In all probability procrastinating on grading and a referee report, which is able to in all probability will probably be on the tombstone.

Three inverse legal guidelines of AI. Not endorsing this, however I’ve been occupied with it. I do really feel that anybody who makes an inventory like this needs to be required to rank their favourite Star Wars episodes, the place they had been once they first watched Terminator 2, and which comics they collected as a child. As a result of actually, I discover some individuals talking boldly and authoritatively about human-AI relationships to sound like individuals who had very completely different upbringings than me. I grew up with C-3PO and R2D2 serving to Luke, and younger John Connor turning into pals with Arnold Schwarzenegger. Generally I get the distinct sense others have elected themselves to talk for everybody however that mentioned, I learn it and it was provocative and doubtless I’m simply being defensive.

The journal, Group Science, has seen over 40% in submissions since ChatGPT. Not Claude Code — ChatGPT.

Texas Month-to-month’s editor Aaron Parsley gained the Pulitzer Prize for his writing about his household surviving the harrowing floods. Clear eyes, full hearts.

Boston College enters the podcast sport with “Conversations with Economists”.

Nice essay, and a subject I’ve been speaking to universities about too. The largest bottleneck in social science isn’t producing analysis however verifying its high quality, which is an issue AI makes worse, since pretend or sloppy work is now low cost to generate however costly to verify. Atz walks by means of three doable fixes (AI reviewers, extra open-science disclosure, social/skilled reforms), finds every inadequate by itself, and tentatively bets on a clear AI reviewer that produces a public report of what was checked relatively than pretending to certify fact.​​​​​​​​​​​​​​​​

The provide aspect of AI. However within the longrun, provide is elastic, so I count on this retains flattening.

Liked this text about how a lot Jane Fonda admired her recurring costar Robert Redford. Appears like some main crush vitality bordering on unrequited love.

Friendship declines.

We might have gotten sadder through the pandemic, and possibly it hasn’t bounced again, and possibly gained’t.

You need to dwell some time longer? You then want cash. However the way you gonna get more cash once you’re not working?

Are AI methods going to start out constructing themselves? I assumed they already had. Claude wrote 90% of Claude Code.

Import AI 455: AI methods are about to start out constructing themselves.

Welcome to Import AI, a e-newsletter about AI analysis. Import AI runs on arXiv and suggestions from readers. When you’d wish to help this, please subscribe…

Learn extra

5 days in the past · 262 likes · 42 feedback · Jack Clark

Cue an article about AI writing absolutely automated analysis papers.

Jersey Shore concludes.

Wild to assume psychedelic reform of all issues could also be bipartisan. I wager the psychological well being advantages was the important thing, significantly using psychedelics to assist vets with power PTSD. That alone creates quite a bit empathy for a remedy, even one thing seemingly as taboo as magic mushrooms.

Open name for a convention for AI in science for these .

The actress Jessica Chastain mentioned one in all her favourite lessons within the Kennedy College was a quantitative strategies class. I’ll wager $50 that was Dan Levy’s class. I truly obtained a e-book about Dan, written by a pupil no much less, this week within the mail. It’s entitled “Invisible Studying: The Magic Behind Dan Levy’s Legendary Harvard Statistics Course”.

Are you wanting a primer to Claude Code and Claude Cowork? One thing that will help you get began? Give this URL to Claude (or simply learn it). That is by Chris Cornwell, an econometrician at Georgia and my former advisor and present coauthor.

Tyler Applied sciences possesses a variety of the nation’s courtroom data.

11 instances Spotify made relationships sophisticated and awkward.

I had NotebookLM work up a brief video of a manuscript I’m engaged on about on-line courting. I had forgot that they had constructed this performance. It is a paper I’m engaged on about how on-line courting just isn’t merely a two sided matching platform, however can also be virtually solely (if not solely) a platform for blind dates and the way that has led to the demand for screening mechanisms.

A framework for evaluating reproducibility in financial analysis.

And as soon as once more, a mattress body I simply can’t appear to delete from my browsers.

And that’s all! Solely took an hour too. Now again to packing. Want me luck. This time tomorrow I can’t be in Boston. Boston you have got my coronary heart, and I can’t wait to see you once more in 8 weeks.

The Subsequent Paradigm in Environment friendly Inference Scaling – The Berkeley Synthetic Intelligence Analysis Weblog




Overview of adaptive parallel reasoning.

What if a reasoning mannequin might resolve for itself when to decompose and parallelize unbiased subtasks, what number of concurrent threads to spawn, and coordinate them based mostly on the issue at hand? We offer an in depth evaluation of current progress within the discipline of parallel reasoning, particularly Adaptive Parallel Reasoning.

When cloud giants meddle in markets

0

Regular market fluctuation or not

Giant-scale, even aggressive procurement is just not inherently unlawful. Corporations are allowed to purchase what they need, negotiate quantity reductions, and use their scale as leverage. Nevertheless, it strays into unlawful territory when the identical corporations that dominate public cloud demand profit most from the rising value of the {hardware} their clients want to stay impartial. If nothing else, we should always not less than acknowledge the optics. If your small business mannequin income when enterprise consumers can not afford to construct or refresh their very own infrastructure, that go-to-market technique deserves scrutiny.

Whereas there isn’t a suggestion of a secret conspiracy or an overt plot to deprive enterprises of reminiscence modules, the truth is extra mundane and extra harmful. Market manipulation in expertise usually doesn’t arrive with a smoking gun. It arrives by incentives, asymmetry, and scale. One group of consumers can afford to overpurchase, precommit, and outbid the remainder of the market. One other group can not. The result’s a lawful however extremely consequential distortion that modifications structure selections throughout the business.

Pressured structure selections

Too many enterprises nonetheless deal with the talk of cloud versus on-premises as a purely technical resolution. It isn’t. It’s a enterprise resolution, an working mannequin resolution, a governance resolution, and, more and more, a provide chain resolution. If the value of reminiscence rises as hyperscalers vacuum up provide to assist AI enlargement, the cloud could seem cheaper within the quick time period. However cheaper underneath these circumstances doesn’t imply higher. It means the baseline has shifted.

That is the traditional entice. A CIO sees a delayed server refresh, inflated reminiscence costs, and a good funds. The cloud vendor provides a fast repair: transfer workloads, eat on demand, and skip capital prices. Which may go well with some workloads, but when a distorted element market drives the choice, the enterprise isn’t selecting an structure. Relatively, it’s reacting to financial stress from an ecosystem that advantages from that response.

Progressives’ new affordability plan to reclaim the working class, defined

0


For years, one of many bedrock adages of electoral politics was “it’s the financial system, silly.” The quip, coined by former Invoice Clinton strategist James Carville, warned social gathering leaders that financial considerations will at all times outrank different points within the thoughts of voters

However lately, Carville’s iconic recommendation feels prefer it’s been forgotten.

In President Joe Biden’s administration, social and cultural considerations rose on the Democrats’ precedence listing. Insurance policies like a $15 minimal wage and addressing worth gouging in grocery shops weren’t entrance and heart to Vice President Kamala Harris’s brief presidential marketing campaign (or not less than, not as entrance and heart as different points).

Beneath President Donald Trump, who received partly on a promise to decrease costs for client items, costs have nonetheless gone the other way, pushed by his punitive tariff technique and a conflict with Iran that has disrupted the vitality market.

Due to this, considerations in regards to the financial system — and particularly the price of residing — have by no means been extra vital to voters. That actuality has led each events’ candidates within the 2026 midterms (in addition to potential candidates within the 2028 presidential election) to undertake a brand new give attention to “affordability.”

The A-word simply is perhaps the buzziest factor in politics proper now. It’s in coverage papers and tv adverts, and on the marketing campaign path after it was popularized by New York Metropolis Mayor Zohran Mamdani, whose profitable 2025 marketing campaign was laser-focused on the difficulty. At its coronary heart, the concept just isn’t that totally different from Carville’s: A candidate should present credibility on “kitchen desk” points earlier than anything, particularly at this second.

That being mentioned, affordability means so many issues to so many individuals (together with to Trump, who has referred to as it a “hoax”). I needed to spend this week on America, Really breaking down the buzzword and getting a way of the coverage positions that inform this new focus.

So I talked to Rep. Greg Casar (D-TX), who chairs the Congressional Progressive Caucus, in regards to the group’s lately launched “New Affordability Agenda.” It’s a 10-point coverage proposal outlining in additional concrete phrases what progressive Democrats imply once they say affordability.

I feel the timing of the proposal is especially attention-grabbing, with Democrats out of energy in each chambers of Congress and Trump nonetheless within the White Home. Why are progressives releasing this now? And what number of of those proposals do they consider can garner bipartisan assist?

Learn on for an excerpt of our dialog, frivolously edited for size and readability. There’s way more within the full present, so take heed to America, Really wherever you get your podcasts or watch it on Vox’s YouTube channel.

Why launch this agenda now? Democrats are clearly not within the congressional majority. Why at this second?

The brand new affordability agenda is the Progressive Caucus’s 10-point plan to deliver down prices for on a regular basis folks, particularly by taking up the large firms and the ultra-rich which can be screwing you over and making their cash jacking up your costs. And the explanation that we put this agenda out now could be as a result of we wish candidates campaigning on this agenda of their primaries.

We wish folks to win their elections by going and connecting with their voters about driving down prices. Right here’s the unconventional half: If we take the bulk, I would like us to move these sorts of insurance policies to deliver down your utility invoice by $500 subsequent yr, to cap your childcare price or cut back that prescribed drugs price, after which dare Donald Trump to attempt to block it.

In the event that they move it, nice. In the event that they block it, then voters will know who accountable. However proper now, the concept I hear from a number of voters is, okay, they know who Trump is. They is perhaps actually pissed off at his lies and the way he’s, however they wish to know what Democrats stand for, particularly in relation to these day-to-day financial points.

Congress hasn’t essentially gotten itself a repute for passing large payments during the last couple years. How achievable is these things?

Voters are so upset and rightfully pissed off proper now on the manner their prices preserve going up and up and up. And so I hear from elected officers throughout, however particularly my Democratic colleagues, that we’ve acquired to do one thing about this. And so I feel this can be a key alternative to lastly beat Huge Pharma and begin producing tons of our personal generic medication as a rustic and collapse the costs of so lots of the medication folks depend on for his or her healthcare.

Proper now could be a second to lastly tackle these tremendous PACs which can be making an attempt to purchase politicians and elections and insurance policies. And so I scent blood within the water on this second, whereas voters are upset, to forge a brand new consensus within the Democratic Social gathering.

It sounds such as you’re saying a few of this agenda ought to be seen as a sign to fellow Democrats in 2026 and 2028, saying, “That is what affordability means to us.”

As a progressive in a progressive district, I might put ahead an financial agenda that polls rather well in Austin, Texas, however possibly has extra bother, say, in some rural elements of the nation. We selected strategically not to do this and as a substitute put out an agenda that polls very effectively with two out of three Trump voters, seven out of 10 independents.

We did that as a result of we wish to get this agenda handed. It is a no-excuses agenda. It performs effectively in each district and helps voters with the factor we hear on daily basis, which is how rattling costly life is getting on this nation.

To that time, is that the explanation that I don’t see issues like local weather change and even Medicare for All listed amongst these planks?

As a progressive caucus, we’ve got issues referred to as our flagship agenda. That features Medicare for All and the Inexperienced New Deal. We carry on preventing for these flagship payments and to deliver extra elements of the social gathering collectively round these concepts.

However these are usually not our flagships. This new slate are our battleships along with our flagships. These are the sorts of points the place we’ve acquired, in some instances, 80 p.c assist of voters, not good now, however constantly. And so let’s transfer that stuff, since we are able to have consensus on it whereas nonetheless pushing for the large concepts.

It does really feel slightly bit, although, that Democrats are speaking about local weather much less. Is that true?

What we’d like to ensure we do within the local weather motion is join it to on a regular basis folks’s lives. The second that Republicans tried to make it appear that tackling the local weather disaster was about shopping for costlier merchandise or was sort of an elite luxurious, we took an enormous hit.

And so I feel that it’s essential, if we care about having a livable local weather agenda, that we have to speak about how electrification is gonna make issues cheaper.

Let’s get this restarted by taking up the insane worth of your electrical invoice, earn folks’s belief, after which present of us how an agenda on local weather can really make your life extra inexpensive as a substitute of costlier.

I needed to additionally ask in regards to the ban on surveillance pricing. I do know you launched a invoice on that coverage, and your invoice would prohibit using surveillance-based pricing and wage setting. It might additionally forestall using AI to set wages.

This all is smart to me, but it surely feels downstream from an even bigger query of tech and AI regulation that we’ve heard from members of the Home who’ve referred to as for a moratorium on knowledge facilities total.

Why isn’t one thing like that on this listing, and it’s as a substitute a give attention to surveillance pricing?

We want AI rules large time. However let’s get began with, for my part, taking up the AI foyer on one thing that is smart to principally everyone.

Let’s simply speak about surveillance pricing for a second as a result of it rightly pisses folks off. We had the opposite day someone on Twitter tweet at JetBlue, “I’m making an attempt to get to a funeral. Any individual simply died, and within the final day, the worth on this flight has gone up like $250.” And the customer support rep responded from JetBlue saying, “Clear your cache. Clear your cookies.”

And that is the factor that folks know is occurring. You’re getting your non-public knowledge scooped up, they run it via AI, and so they determine the way to set a worth for you. That’s the sort of factor that ought to unite Democrats, but additionally tons of unbiased and Republican voters to say, “Yeah, these of us are utilizing AI to screw us.”

A part of the premise of this episode is we wish to break down buzzwords like affordability and even progressive. We talked in regards to the former, however I feel the latter issues in addition to it’s one that may be misdefined.

What does being a progressive imply to you in 2026, and the way would you distinguish it from simply being a Democrat?

For me, being a progressive means not less than two issues. One, being prepared to unite heaps and plenty of folks, the entire of us which can be getting screwed over in opposition to the powers that be which can be making your life worse, whether or not that’s oppressing you on a civil rights concern or jacking up your prices like we simply talked about. It’s about bringing the on a regular basis individual, who might not have [financial] energy however ought to have political energy, collectively to take them on.

Second, I feel being progressive is an primarily hopeful enterprise. I feel that the world may be significantly better, that we don’t must accept crumbs or accept the established order.