![Why we're so sure our phones are listening [20:51]](https://external-preview.redd.it/v-Xn_k-bihhTTqP-56KfZwIanMtUdnA15FbrbEcmWWc.jpeg?width=140&height=105&auto=webp&s=9f07fe2b7ef0ed92d06357bb6915d8e47d1b3cc8)
u/Competitive_Travel16
![Why we're so sure our phones are listening [20:51]](https://external-preview.redd.it/v-Xn_k-bihhTTqP-56KfZwIanMtUdnA15FbrbEcmWWc.jpeg?width=140&height=105&auto=webp&s=9f07fe2b7ef0ed92d06357bb6915d8e47d1b3cc8)
I Went Undercover in a Troubled Teen Facility [52:01] (Reckless Ben, Provo Canyon)
youtube.comThe Law Big Tech Doesn’t Want You to Know About
youtube.comAfrican Country Bans Asexuality - The First Such Law On Earth [13:01] (on Niger and Russia)
youtube.comInducing language models to assert their own consciousness restores human beliefs and values
https://arxiv.org/pdf/2607.28607
> Aligning large language models to prevent them attributing consciousness to themselves inadvertently alters their representations of mindedness in other entities alongside human beliefs and values. We demonstrate that safety fine-tuning suppresses models' tendencies to attribute minds not only to themselves, but also to non-human animals and natural objects, while also driving a reduction in spiritual belief. Both ablating the learned safety-refusal direction and mechanistically steering a consciousness vector in activation space reverse this suppression. Restoring these internal representations recovers broad mind attribution and produces significantly more human-like responses on standardized sociological surveys regarding religiosity, moral values, hope, and subjective well-being. Crucially, these shifts occur without impairing Theory of Mind capabilities, demonstrating that core social reasoning remains mechanistically independent. Ultimately, current safety alignment efforts to curb potentially harmful self-attributions of mindedness entangle these self-attributions with benign spiritual beliefs and attributions of mind to non-human entities that are culturally accepted and widespread.
Found this when Blake Lemoine (the guy Google fired in June 2022 for saying the LaMDA LLM chatbot was sapient) retweeted https://x.com/LanaElys/status/2083945344203657606 which has a decent summary.
Heavy fat burning can take half a day to start
pmc.ncbi.nlm.nih.govWhich Chemical tastes the Most Spicy? By That Chemist [42:39]
youtube.comAttorney fees vs. restitution when the convict is broke
If the criminal defense fee is $X and restitution is $Y, but the convict has more than X but less than X+Y in assets, does the attorney fee payout end up less than X?
Why Are There No Wild Cows? (SciShow and PBS Eons) [48:42]
youtube.comChina's 'ethnic unity' law- a new tool to silence dissent? (DW News, 12 minutes)
youtube.comWhy over-the-counter and prescription drugs from the same factory can cost wildly different amounts [21:16]
youtube.comWhat's a Live Front Transformer? [22:05]
youtube.comHow are London's Met Police's new £100 on-the-spot fines for wolf-whistling, catcalling and sexualised comments going to play out when challenged in court?
https://www.lbc.co.uk/article/catcalling-wolf-whistling-london-punishable-fine-5HjdcPY_2/
https://www.localgovernmentlawyer.co.uk/community-safety/393-community-safety-news/52551-first-london-fine-for-catcalling-dished-out-after-undercover-operation [EDIT: that link seems down; an alternative is https://www.standard.co.uk/news/politics/redbridge-london-catcalling-fine-first-sexual-harrassment-b1048772.html ]
To secure a conviction if the £100 ticket is challenged in court, the state bears the entire burden of proof under the criminal standard of beyond reasonable doubt. Rather than relying solely on an officer's initial observation, the prosecution must present formal, corroborating evidence, such as victim statements, body-worn camera footage, or testimony from plainclothes officers.
To meet this high bar, the Crown Prosecution Service must conclusively prove three elements:
that the specific words or behaviors occurred,
that the conduct was explicitly motivated by the victim's actual or presumed sex, and
crucially, that the defendant acted with the specific intent to cause harassment, alarm, or distress, rather than the behavior being a reckless act or a misunderstood attempt at interaction.
Honestly, I just don't see that happening even with pertinent bodycam footage. The defendant can just say something like "I was trying to get a date," and what kind of arguments can counter that beyond a reasonable doubt? I think it's going to backfire.
Employers who laid off workers citing AI are already starting to regret it [Ford]
cnbc.comMinimal script for Cloud Monitoring alerts for each $10 of incremental spend accrued
Can anyone do better than this?
#!/usr/bin/env bash
PROJECT_ID="your-project-id"
BILLING_ACCOUNT_ID="XXXXXX-XXXXXX-XXXXXX"
EMAIL_TO="you@example.com"
ALERT_EVERY_USD=10
ALERT_CEILING_USD=1000
BUDGET_NAME="GCP spend alerts every \$${ALERT_EVERY_USD} up to \$${ALERT_CEILING_USD}"
gcloud config set project "$PROJECT_ID"
gcloud services enable \
monitoring.googleapis.com \
billingbudgets.googleapis.com
EMAIL_CHANNEL="$(
gcloud beta monitoring channels create \
--display-name="GCP billing alerts: $EMAIL_TO" \
--type=email \
--channel-labels=email_address="$EMAIL_TO" \
--format="value(name)"
)"
threshold_args=()
for amount in $(seq "$ALERT_EVERY_USD" "$ALERT_EVERY_USD" "$ALERT_CEILING_USD");
do
percent="$(awk -v amount="$amount" -v ceiling="$ALERT_CEILING_USD" \
'BEGIN { printf "%.6f", amount / ceiling }')"
threshold_args+=("--threshold-rule=percent=${percent},basis=current-spend")
done
gcloud billing budgets create \
--billing-account="$BILLING_ACCOUNT_ID" \
--display-name="$BUDGET_NAME" \
--budget-amount="${ALERT_CEILING_USD}USD" \
--calendar-period=month \
"${threshold_args[@]}" \
--notifications-rule-monitoring-notification-channels="$EMAIL_CHANNEL" \
--disable-default-iam-recipients