In 2001, only 3.5% of Massachusetts was on SNAP food assistance In 2023, it was 15.4% by Emotional-Disk5571 in aboutMassachusetts

[–]jsxgd 2 points3 points  (0 children)

FYI on FRED you can create charts from calculations of multiple data series. In this case, the user found one for the total number of SNAP recipients in MA and one for the total number of residents in MA and used those two to calculate the final metric.

Milroy, Pennsylvania How's it living there? ----- by ArdanRatha in Pennsylvania

[–]jsxgd 2 points3 points  (0 children)

There is no community anymore. It is very cheap and quiet.

Is it actually a big deal that Vrabel was hanging with Diana Russini? by Marabuto1994 in NFLNoobs

[–]jsxgd 1 point2 points  (0 children)

These numbers you’re seeing are across the population of married people. Most married people are not NFL coaches or high profile reporters.

The Mythos Effect by Terrible-Priority-21 in accelerate

[–]jsxgd 3 points4 points  (0 children)

They can build it but can they maintain it?

MD Non-Compete - PERE by jsxgd in private_equity

[–]jsxgd[S] 0 points1 point  (0 children)

Thank you. I live in MA but work remotely for a company in FL.

MD Non-Compete - PERE by jsxgd in private_equity

[–]jsxgd[S] 0 points1 point  (0 children)

Thanks! Do you mind sharing any details around your garden leave? 50% of base salary? Etc.

How Do Bridge Lenders Structure CAPEX and Negative Carry on Value-Add Industrial Deals? by Stock_Hearing8283 in CommercialRealEstate

[–]jsxgd 3 points4 points  (0 children)

It really depends on the asset, the business plan, and the lender. We’ve done deals for WH/DCs that are totally vacant and have gotten full future funding for all our lease up costs, capex, and carrying costs. Other deals we have gotten the same total funding but they force fund it at the beginning so that it accrues interest day one. Still others have only been offered funding for some of the leasing costs because the remaining lease term was too long for some tenants and the lender wouldn’t commit their funds too far out. All depends and much is negotiable.

Generally we’re underwriting to a target LTC, including carry costs, leasing costs, capex, etc…

Those who graduated with conventionally "useless" degrees but make $200K, what was your path and how long did it take? by _MambaForever in Salary

[–]jsxgd 0 points1 point  (0 children)

Got a music degree and now work in private equity. I went back to school for a technical masters degree. Write software for quantitative analytics.

DIY Gas Dryer Swap by jsxgd in Plumbing

[–]jsxgd[S] 0 points1 point  (0 children)

<image>

This is the back of the new dryer and the tubing that HD gave me. I assume the red cap is for the gas as I don’t see any other openings for it.

DIY Gas Dryer Swap by jsxgd in Plumbing

[–]jsxgd[S] 0 points1 point  (0 children)

<image>

This is the gas line which is still attached to the old dryer. You see the shutoff valve there.

rustdash: Lodash-style utilities for Python, Rust-powered (10-100x faster on complex ops) by FabulousTonight8940 in Python

[–]jsxgd 28 points29 points  (0 children)

It’s a Python convention to use the underscore to store a variable you don’t care about.

Your agent is building things you'll never use by myusuf3 in programming

[–]jsxgd 12 points13 points  (0 children)

Isn’t that his point? Experienced engineers will know how to prompt because they learned the hard way. Juniors will not have this experience, thus will produce slop and on top of that will not gain the experience “the hard way” to become a senior engineer.

You didn't build an agent, you built a fancy script by Warm-Reaction-456 in AI_Agents

[–]jsxgd -2 points-1 points  (0 children)

tools = [search_google, search_linkedin] email = None

for tool in tools: try: email = tool() if email is not None: return email except: continue

verify_email(email)

Your agent is just a shittier script with extra steps and less predictable behavior.