Toes♀
🦋⃟💙 This city makes me feel so small A million people in this town But I could scream without a sound So I get high to pass the time Talk to someone I met online To make myself feel less alone
- 9 Posts
- 292 Comments
Toes♀@ani.socialto
No Stupid Questions@lemmy.world•Do Costcos usually have an ATM machine?
8·11 days agoYou can call your local one and ask.
It probably varies from store to store.
Your bank will also be able to tell you about any in network ones to save on fees.
By god they are right, this might change the future of mathematics!
// 2024‑edition Rust use std::rc::Rc; /// Church numeral: given a successor `s: fn(u32) -> u32`, /// returns a function that applies `s` n times. type Church = Rc<dyn Fn(fn(u32) -> u32) -> Rc<dyn Fn(u32) -> u32>>; /// 0 ≡ λs.λx.x fn zero() -> Church { println!("Define 0"); Rc::new(|_s| Rc::new(|x| { println!(" 0 applied to {}", x); x })) } /// succ ≡ λn.λs.λx. s (n s x) fn succ(n: Church) -> Church { // `label` is printed *before* the closure is created, so the closure // does not capture any non‑'static reference. println!("Build successor"); Rc::new(move |s| { // `inner` is the predecessor numeral applied to the same successor let inner = n(s); Rc::new(move |x| { // first run the predecessor let y = inner(x); println!(" predecessor applied to {} → {}", x, y); // then apply the extra successor step let z = s(y); println!(" +1 applied to {} → {}", y, z); z }) }) } /// Convert a Church numeral to a Rust integer, printing each step. fn to_int(n: &Church) -> u32 { let inc: fn(u32) -> u32 = |k| { println!(" inc({})", k); k + 1 }; let f = n(inc); // f: Rc<dyn Fn(u32) -> u32> println!(" evaluate numeral starting at 0"); f(0) } /// Even ⇔ divisible by 2 fn is_even(n: &Church) -> bool { to_int(n) % 2 == 0 } fn is_odd(n: &Church) -> bool { !is_even(n) } fn main() { // ---- build the numerals step‑by‑step ---- let zero = zero(); // 0 let one = succ(zero.clone()); // 1 = succ 0 let two = succ(one.clone()); // 2 = succ 1 // ---- show the numeric values (trace) ---- println!("\n--- evaluating 0 ---"); println!("0 as integer → {}", to_int(&zero)); println!("\n--- evaluating 1 ---"); println!("1 as integer → {}", to_int(&one)); println!("\n--- evaluating 2 ---"); println!("2 as integer → {}", to_int(&two)); // ---- parity of 2 (the proof) ---- println!("\n--- parity of 2 ---"); println!("Is 2 even? {}", is_even(&two)); // true println!("Is 2 odd? {}", is_odd(&two)); // false // Proof: “divisible by 2” ⇔ “even”. // Since `is_odd(&two)` is false, no odd number can satisfy the // divisibility‑by‑2 condition. assert!(!is_odd(&two)); println!("\nTherefore, no odd number is divisible by 2."); }
I’m guessing a chargeback caused this?
Toes♀@ani.socialto
Lemmy Shitpost@lemmy.world•I've seen a lot but this leaves me speechless
41·19 days agoI can’t see the post 😭
Toes♀@ani.socialto
Lemmy Shitpost@lemmy.world•Do you ever watch old classic TV shows and realize that they are all dead
12·19 days agoStar Trek is going to be really difficult to watch once captain Picard joins Q for the last time.
I wonder what a chicken nugget version of this would look like.
Toes♀@ani.socialto
Lemmy Shitpost@lemmy.world•This meme is super funny, Especially for people in the UK
10·1 month agohaha you got me
Would be crazy if it was also running steamos (arch)
Enjoy your library being mostly 30fps 720p games.
Toes♀@ani.socialto
Lemmy Shitpost@lemmy.world•What's your answer? And in the picture which news story is being reported?
8·2 months agoFor myself that would be 9/11. I remember being confused when the teacher put it on the tv. Thought we were watching an action movie.
Toes♀@ani.socialto
No Stupid Questions@lemmy.world•What are the most popular conspiracy theories?
24·2 months agoThe most destructive one I’ve seen has been the anti-vax crowd. Almost feels like a state actor trying to gaslight the world.
Toes♀@ani.socialto
No Stupid Questions@lemmy.world•Are there good Movies, TV Shows, Anime, with wholesome family (particularly parent-child) relations?
3·2 months agoUsagi Drop is an anime about an unwanted orphan being adopted by someone with a big heart and no experience. https://anilist.co/anime/10162/Usagi-Drop/
Toes♀@ani.socialto
No Stupid Questions@lemmy.world•Are there communities online where artists share their art for free / donation?
3·2 months agohttps://www.pixiv.net/en/ artists post all kinds of works and the ones that want donations typically have a fanbox or something similar in their bio.
Toes♀@ani.socialto
No Stupid Questions@lemmy.world•Is there a way to listen to only the radio topics I actually care about?
2·3 months agoTry satellite radio like XM. Lots of channels to surf




Here are some brief goals that could improve the country.
Go through this list and ratify any treaties that are still relevant.
https://en.wikipedia.org/wiki/List_of_treaties_unsigned_or_unratified_by_the_United_States
Build a new city with homes and opportunities pro bono.
Guarantee right to repair with complete access to all relevant source code, parts and schematics.
Eliminate gerrymandering and enforce ranked choice voting for all spheres of government.
Eliminate the commoditization of essential goods and services (such as food, water, homes, education and healthcare).
Enrich public transportation to the level of Japan.
Only do business with entities that respect humanity and ecological life.