Julie Bell's Avatar

Julie Bell

@jlbell.bsky.social

Adult educator in Winnipeg, Manitoba with Hubby, three adult kids (one in NYC) and a cat we found in a parking lot. I love learning about learning, genealogy, cycling, and curling which is my lifeline in winter!

64 Followers  |  504 Following  |  6 Posts  |  Joined: 07.11.2024  |  1.6817

Latest posts by jlbell.bsky.social on Bluesky

Preview
โ€˜Almost unimaginableโ€™: these ants are different species but share a mother Ant queens of one species clone ants of another to create hybrid workers that do their bidding.

Ant Queens Birth Hybrid Offspring Using Another Species' Sperm www.nature.com/articles/d41...

07.09.2025 15:13 โ€” ๐Ÿ‘ 37    ๐Ÿ” 11    ๐Ÿ’ฌ 5    ๐Ÿ“Œ 2

I firmly believe:

If I don't find you interesting, that's my failure, not yours.

Every person contains infinite multitudes. Our capacity to perceive and appreciate all that is limited. I think I'm better at it than most, but I too sometimes fail to see a person's light.

That's not your fault.

18.08.2025 15:31 โ€” ๐Ÿ‘ 215    ๐Ÿ” 27    ๐Ÿ’ฌ 5    ๐Ÿ“Œ 0
Video thumbnail

I still get chills

Meet Mike
*30+ years severe depression
*first hospitalized @ 13y
*20 meds
*3 rounds of ECT
*2 near-fatal suicide attempts

Mike felt joy for the first time in decades after we turned on his new brain pacemaker or PACE

see videos, read paper, follow thread
doi.org/10.31234/osf...

10.08.2025 18:22 โ€” ๐Ÿ‘ 392    ๐Ÿ” 137    ๐Ÿ’ฌ 18    ๐Ÿ“Œ 35

When I was little, the U.S. military came to our home at gunpoint and took me and my family away. We were imprisoned for years in barbed wire camps simply because we were Japanese American. I have spent my life telling that story, hoping it would never be repeated.

21.07.2025 17:20 โ€” ๐Ÿ‘ 69075    ๐Ÿ” 21127    ๐Ÿ’ฌ 1602    ๐Ÿ“Œ 754
Preview
Hear the Worldโ€™s Oldest Instrument, the โ€œNeanderthal Flute,โ€ Dating Back Over 43,000 Years Several years ago, we brought you a transcription and a couple of audio interpretations of the oldest known song in the world, discovered in the ancient Syrian city of Ugarit and dating back to the 14...

If you're looking for a timeline cleanse, you could certainly do worse than the etherial music of the neanderthals!

www.openculture.com/2025/06/hear...

30.06.2025 04:22 โ€” ๐Ÿ‘ 94    ๐Ÿ” 28    ๐Ÿ’ฌ 4    ๐Ÿ“Œ 2

I am perpetually annoyed and saddened that I missed seeing these beasties by just a few thousand years. That's nothing geologically speaking! I should have glyptodonts in my garden!

28.06.2025 10:23 โ€” ๐Ÿ‘ 76    ๐Ÿ” 7    ๐Ÿ’ฌ 5    ๐Ÿ“Œ 2
Screenshot of a report: 

TEMPERAMENT
Expressed some opinions and told lots of stories
Nervous and benefitted from lots of reassurance
Wiggly

Screenshot of a report: TEMPERAMENT Expressed some opinions and told lots of stories Nervous and benefitted from lots of reassurance Wiggly

Our cat Biscuit had his grooming appt today and they sent us his report card but I think I'm just going to use it as my bio

28.06.2025 05:10 โ€” ๐Ÿ‘ 7678    ๐Ÿ” 1881    ๐Ÿ’ฌ 68    ๐Ÿ“Œ 57

Yessssssss, more of this. Much more.

21.06.2025 23:26 โ€” ๐Ÿ‘ 35    ๐Ÿ” 3    ๐Ÿ’ฌ 0    ๐Ÿ“Œ 0
The title is "Pipes, Pipes, Pipes: The Hipster Tobacconist Snowboarder's Guide to Tidyverse Code", I believe the author is Will Gervais. I'm hoping for one quote about how snowboarding is like coding, and one batch of code to draw a halfpipe in ggplot()

Certainly! Here's a quote that captures the essence of how snowboarding relates to coding:

> โ€œSnowboarding is like coding: you start with a plan, but the real joy comes from adapting to the terrain as you go.โ€

This reflects the dynamic and adaptive nature of both activities.

Additionally, to draw a halfpipe using `ggplot2` in R, you can use the following code:

```r
library(ggplot2)
library(dplyr)

# Create data for the halfpipe
halfpipe_data <- tibble(
  x = rep(seq(0, 100, length.out = 100), 2),
  y = c(sin(seq(0, 2 * pi, length.out = 100)), -sin(seq(0, 2 * pi, length.out = 100))),
  group = rep(c("Top", "Bottom"), each = 100)
)

# Plot the halfpipe
ggplot(halfpipe_data, aes(x = x, y = y, group = group)) +
  geom_line() +
  coord_flip() +
  theme_minimal() +
  labs(title = "Halfpipe Design", x = "Length", y = "Height")
```

This code creates a simple representation of a halfpipe using sine functions to simulate the curved shape. You can adjust the parameters to refine the design further.

The title is "Pipes, Pipes, Pipes: The Hipster Tobacconist Snowboarder's Guide to Tidyverse Code", I believe the author is Will Gervais. I'm hoping for one quote about how snowboarding is like coding, and one batch of code to draw a halfpipe in ggplot() Certainly! Here's a quote that captures the essence of how snowboarding relates to coding: > โ€œSnowboarding is like coding: you start with a plan, but the real joy comes from adapting to the terrain as you go.โ€ This reflects the dynamic and adaptive nature of both activities. Additionally, to draw a halfpipe using `ggplot2` in R, you can use the following code: ```r library(ggplot2) library(dplyr) # Create data for the halfpipe halfpipe_data <- tibble( x = rep(seq(0, 100, length.out = 100), 2), y = c(sin(seq(0, 2 * pi, length.out = 100)), -sin(seq(0, 2 * pi, length.out = 100))), group = rep(c("Top", "Bottom"), each = 100) ) # Plot the halfpipe ggplot(halfpipe_data, aes(x = x, y = y, group = group)) + geom_line() + coord_flip() + theme_minimal() + labs(title = "Halfpipe Design", x = "Length", y = "Height") ``` This code creates a simple representation of a halfpipe using sine functions to simulate the curved shape. You can adjust the parameters to refine the design further.

ggplot graph showing a wasp-shaped figure 8, labeled "Halfpipe Design"

y-axis is length, x-axis is height

ggplot graph showing a wasp-shaped figure 8, labeled "Halfpipe Design" y-axis is length, x-axis is height

I asked chatGPT for quotes from the very fake book "Pipes, Pipes, Pipes: The Hipster Tobacconist Snowboarder's Guide to Tidyverse Code" by Will Gervais.

It happily provided a quote about how snowboarding is like coding, as well as code for a deranged halfpipe.

Thanks, chatGPT!

15.06.2025 16:01 โ€” ๐Ÿ‘ 58    ๐Ÿ” 10    ๐Ÿ’ฌ 5    ๐Ÿ“Œ 0
Video thumbnail
15.06.2025 18:58 โ€” ๐Ÿ‘ 922    ๐Ÿ” 94    ๐Ÿ’ฌ 64    ๐Ÿ“Œ 6
A Museum display donated by a massive Calamites stem cast

A Museum display donated by a massive Calamites stem cast

Imagine a world with horsetails as forest trees - this enormous Calamites stem cast is about 300 million years old and 12cm broad.

On display in Liverpool World Museum.

#FossilFriday โš’๐ŸŒ๐Ÿงช๐Ÿ”ฌ๐ŸŒฟ๐ŸŒฑ

13.06.2025 08:12 โ€” ๐Ÿ‘ 191    ๐Ÿ” 51    ๐Ÿ’ฌ 4    ๐Ÿ“Œ 2
Post image 12.06.2025 05:31 โ€” ๐Ÿ‘ 15258    ๐Ÿ” 1577    ๐Ÿ’ฌ 334    ๐Ÿ“Œ 75
Image shows an owl with a hobby horse - looks like a witch on a broomstick

Image shows an owl with a hobby horse - looks like a witch on a broomstick

I have a new hero.
This owl stole a child's hobby horse and flies around with it!

10.06.2025 16:34 โ€” ๐Ÿ‘ 16284    ๐Ÿ” 2835    ๐Ÿ’ฌ 554    ๐Ÿ“Œ 289
Video thumbnail

This is the most beautiful music Iโ€™ve ever heard!! ๐Ÿ˜

10.06.2025 13:16 โ€” ๐Ÿ‘ 4623    ๐Ÿ” 717    ๐Ÿ’ฌ 238    ๐Ÿ“Œ 108
Video thumbnail

Sukhjot Singh
"This fierce peregrine mom was patrolling her territory to provide a safe airspace for her newly fledged babies. I thought she was going to attack a few gulls that flew close, but she decided to take a hard right and turn around, offering a rare face-to-face moment with the camera."

04.06.2025 22:28 โ€” ๐Ÿ‘ 10240    ๐Ÿ” 1658    ๐Ÿ’ฌ 538    ๐Ÿ“Œ 162

The gift that keeps on giving: not only did Russian lose 7bn USD worth of strategic bombers to 500,000 USD worth of drones, but they will expend time, staff and money to check now all trucks across country. Great time to donate directly to Ukraine's military for the next brilliant strike: u24.gov.ua

02.06.2025 19:36 โ€” ๐Ÿ‘ 3    ๐Ÿ” 2    ๐Ÿ’ฌ 0    ๐Ÿ“Œ 0
Preview
Government | Harvard University Browse the latest Government courses from Harvard University.

Another big FU from Harvardโ€ฆ free online courses on the US government, the US constitution, civic engagement, and more.

pll.harvard.edu/subject/gove...

24.05.2025 02:58 โ€” ๐Ÿ‘ 8593    ๐Ÿ” 3360    ๐Ÿ’ฌ 191    ๐Ÿ“Œ 270
Preview
London has become a cycling city It shows how dockless-electric bikes could transform cities

Bikes now outnumber cars in central London, and are on track to outnumber all motor vehicles within 2 years.

How you ask? Letโ€™s Lime.

@economist.com

23.05.2025 10:42 โ€” ๐Ÿ‘ 73    ๐Ÿ” 12    ๐Ÿ’ฌ 1    ๐Ÿ“Œ 1
Preview
US โ€˜illegally deportedโ€™ Vietnamese and Burmese migrants to South Sudan Immigrant rights advocates say White House violated court order and ask judge to order nearly a dozen peopleโ€™s return

Stop calling kidnapping and trafficking people to countries theyโ€™ve never been to โ€œdeporting.โ€ Itโ€™s criminal behavior by a country with no conscience. www.theguardian.com/us-news/2025...

21.05.2025 15:23 โ€” ๐Ÿ‘ 21588    ๐Ÿ” 7164    ๐Ÿ’ฌ 830    ๐Ÿ“Œ 372
Video thumbnail

this queen

21.05.2025 12:25 โ€” ๐Ÿ‘ 18685    ๐Ÿ” 4068    ๐Ÿ’ฌ 17    ๐Ÿ“Œ 140
Post image

"You read books, eh?" A 1949 red scare Herblock cartoon about pressures on teachers that hits hard once again.

21.05.2025 12:54 โ€” ๐Ÿ‘ 17050    ๐Ÿ” 4943    ๐Ÿ’ฌ 212    ๐Ÿ“Œ 180
Post image

Once in a while. Good morning Blue Sky

19.05.2025 10:06 โ€” ๐Ÿ‘ 15330    ๐Ÿ” 1400    ๐Ÿ’ฌ 310    ๐Ÿ“Œ 78
https://sv.wikipedia.org/wiki/Ammophila_pubescens#/media/Fil:Ammophila_pubescens_-_Kulna.jpg

https://sv.wikipedia.org/wiki/Ammophila_pubescens#/media/Fil:Ammophila_pubescens_-_Kulna.jpg

1/2 Episodic memory in parasitoid wasps

Although traditionally associated with large-brained animals, Ammophila pubescens females have memory of the three key elements: who, when and where characteristic of episodic memory.

(paper) www.cell.com/current-biol...

13.05.2025 18:03 โ€” ๐Ÿ‘ 18    ๐Ÿ” 8    ๐Ÿ’ฌ 1    ๐Ÿ“Œ 0
Preview
a map of canada showing the results of the 2021 election Alt: a map of canada showing the results of the 2021 election

Canada

VOTE

Itโ€™s Election Day ๐Ÿ’ช๐Ÿป๐Ÿ

๐ŸŸฅ๐Ÿ๐ŸŸฅ

Carry on โœ…

28.04.2025 09:52 โ€” ๐Ÿ‘ 132    ๐Ÿ” 41    ๐Ÿ’ฌ 5    ๐Ÿ“Œ 2
Post image

Cancer death rates have declined in many countries over the past few decades.

You will often hear the claim that this is "only because of reductions in smoking".

In her latest Substack, my colleague @scientificdiscovery.dev shows that this isn't true.

www.scientificdiscovery.dev/p/the-declin...

28.04.2025 11:22 โ€” ๐Ÿ‘ 126    ๐Ÿ” 21    ๐Ÿ’ฌ 2    ๐Ÿ“Œ 4
Video thumbnail

Always keep watch. Eventually the aliens will slip up and do something unhuman a little too nonchalantly. Then we'll know. ๐Ÿ‘ฝ๐Ÿ›ธ

Yesterday, the lifeform we call "Elly De La Cruz" forgot himself and took flight to catch this baseball. ๐Ÿ˜ฎ

21.04.2025 22:39 โ€” ๐Ÿ‘ 8137    ๐Ÿ” 764    ๐Ÿ’ฌ 271    ๐Ÿ“Œ 85
Preview
New images could change cancer diagnostics, but ICE detained the Harvard scientist who analyzes them Without scientist Kseniia Petrovaโ€™s expertise, no one can fully unlock the dataโ€™s potential, putting crucial advancements in early cancer detection at risk.

Almost every line of this story would have been simply unbelievable a few months ago:

โ€”Pioneering cancer researcher;
โ€”*Arrested* at airport in Boston;
โ€”Now indefinite ICE detention in Louisiana;
โ€”"Crime": not declaring some frog-embryo samples for research.

Read it.
www.nbcnews.com/news/us-news...

22.04.2025 01:32 โ€” ๐Ÿ‘ 29399    ๐Ÿ” 13684    ๐Ÿ’ฌ 739    ๐Ÿ“Œ 859

@jlbell is following 20 prominent accounts