prunerye

joined 2 years ago
[–] [email protected] 13 points 1 week ago (3 children)

Honestly the most shocking number to me is that 65% of Americans own a house. How can 62% have a household income "over $50,000" and 65% own a house? Is it all old people?

[–] [email protected] 4 points 1 week ago

Doug the Moleman

[–] [email protected] 24 points 2 weeks ago (1 children)

Wait, the dog doesn't like Matt? That's a huge red flag, Emily. Dogs know. Take it seriously.

[–] [email protected] 1 points 1 month ago

I'd argue neoconservativism started with WW2, but neoliberalism is probably better tied to Nixon. So I agree, 9/11 was just a continuation of neocon power grabs, but invoking post-WW2 "capitalism" doesn't make much sense to me; the New Deal was comparatively great for workers. Neoconservativism isn't really an economic movement like neoliberalism is.

[–] [email protected] 4 points 3 months ago

In my area, most drivers don't start the turn signal until they've reached the intersection or have already started the turn. Infuriates me to no end. This is also true for left turns at red lights; they don't activate their turn signals until they stop, sometimes not even until the green light, so you have no chance to change lanes before they block you.

[–] [email protected] 1 points 3 months ago (1 children)

Even if this was a filibuster, which would be the more likely motivation? Cory Booker shares your values, or Cory Booker is angling to run for President?

[–] [email protected] 2 points 3 months ago

This is good stuff; your argument is well reasoned. Brings me back to my Bible study days.

I still think "all hierarchies" might be overbroad. The Bible itself prescribes elders/bishops and deacons to administer the church, for instance, and it's radical enough regarding obedience to authority that, in my experience, modern day theologically conservative churches trend toward authoritarianism and mostly unchecked abuse of power more often than not. This would have been contemporaneous with the communes.

As for the more heavenly hierarchies, I looked back at some of the points of evidence that I was going to bring up here that I thought supported my case, but the "outer darkness" in Matthew 22 I once thought might not necessarily be hell sure seems like hell upon rereading, and as for the parable of the unforgiving servant who was sent to the "torturers" despite his debts being forgiven, it looks like that word "torturers" is connected to jailers, i.e. debtors' prison, so I can't argue confidently that the servant was "saved" from anything and given a different punishment instead. There are still a few passages I can't totally square though:

The parable of the prodigal son (Luke 15:11-32): He gets welcomed back into the family, and he sure seems saved in the sense that I think most Christians would read into it, but his inheritance is spent; he doesn't get more. All the father has belongs to the other son.

The purifying fire of 1 Corinthians 3:9-15: Both groups of people are explicitly "saved". One is rewarded, the other suffers loss.

The parable of the talents/minas: In the Matthew 25 version of the parable, the first two servants get the same reward (authority over "many things"). No issue there. But in the Luke 19 version, the rewards are proportional. And the one with 10 minas gets a bonus at the end.

That's as far as I got before my eyes glazed over.

[–] [email protected] 5 points 3 months ago (1 children)

I never had much use for non-religious secondary sources back when I was a believer, so I can't recommend any, but the New Testament isn't actually that long; you could probably finish it in a week if you read 20-30 chapters a day, and the chapters are short. The first three books, Matthew, Mark, and Luke, and to a lesser extent the fourth, John, are all the same; you can probably just pick one (John is probably the most interesting) and read the rest of the NT as is. Whether or not it's worth your time is entirely up to you. I certainly have no intention of reading it again any time soon.

[–] [email protected] 4 points 3 months ago (1 children)

Is that a Catholic thing?

[–] [email protected] 10 points 3 months ago* (last edited 3 months ago) (8 children)

"Least"/"Greatest" in "the kingdom of heaven" is a construction that appears at least once off the top of my head, Matthew 5:19. I'm sure there are more. But also, Jesus is depicted as a literal monarch and heaven a kingdom like you said, so there's at least one extra class right there.

[–] [email protected] 43 points 3 months ago (24 children)

To be fair, the heaven of the Bible is neither stateless nor classless. "The nations" are still present in Revelation 21 and 22, and inequality in heaven is a common theme in Jesus's parables.

 

Edit: TL;DR, a literal can't contain multiple children. The opening bracket that starts the literal must be closed at the end of the literal, with no other yuck appended.

I've been playing with Elkowar's Wacky Widgets in an attempt to replace tint2 on openbox. Specifically, I've been working on a taskbar widget. So far, I've managed to make a few bash scripts to generate all the necessary yuck (and png files) to create a rudimentary icon-only taskbar that updates itself every time _NET_ACTIVE_WINDOW changes. I've confirmed that the yuck works when I manually copy/paste the output of the bash script into eww.yuck.

Anyway, I've assigned this script to a deflisten variable called "tasks". When I run "eww state" in a terminal, I confirm that "tasks" is indeed defined (and regularly updated) with yuck that looks like this.

spoiler(box :tooltip Xfce4-terminal (eventbox :onclick ~/.config/eww/scripts/taskbaractions.sh 0x120000a 0x120000a (image :image-height 16 :path /home/prunerye/.config/eww/scripts/iconstorage/Xfce4-terminal.png))) (box :tooltip Geany (eventbox :onclick ~/.config/eww/scripts/taskbaractions.sh 0xe00010 0x120000a (image :image-height 16 :path /home/prunerye/.config/eww/scripts/iconstorage/Geany.png))) (box :tooltip Thunar (eventbox :onclick ~/.config/eww/scripts/taskbaractions.sh 0x140000d 0x120000a (image :image-height 16 :path /home/prunerye/.config/eww/scripts/iconstorage/Thunar.png)))

(Unrelated, but why doesn't eww recognize "~/" in image filepaths?)

But when I use "tasks" to generate my taskbar widget with a literal, nothing appears, save for a slight overall change in the spacing on my topbar, though this happens inconsistently. Here is the relevent yuck.

spoiler(defwidget task_bar [] (box :orientation "horizontal" :space-evenly true :spacing 2 :halign "start" (literal :content tasks)))

Here's the full tree:

spoiler(defwindow main :class "main" :monitor 0 :geometry (geometry :x "0px" :y "0px" :width "100%" :height "16px" :anchor "top center") :vexpand false :stacking "fg" :windowtype "dock" :wm-ignore true :reserve (struts :distance "16px" :side "top") (topbar))

(defwidget topbar [] (box :orientation "h" :space-evenly false (foo) (task_bar) (bar)))

(deflisten tasks ~/.config/eww/scripts/taskbarliteral.sh)

(defwidget task_bar [] (box :orientation "horizontal" :space-evenly true :spacing 2 :halign "start" (literal :content tasks)))

I found a possibly related closed issue at https://github.com/elkowar/eww/issues/871 but the issue doesn't provide much detail.

Any idea what I'm doing wrong?

Edit: Lemmy does funny things with ` quotes. Click the view source button to see raw text.

Edit2: I booted up my openbox/eww setup this morning and was shocked to find a working task bar when I opened a window... but only the first window. Once I open a second window, my taskbar is blank.

Edit3: Edit2 was my eureka moment. Why would only the first window load? I now have a suspicion that eww literals are treated as parents that can't have more than one child; when I shifted the literal's parent "box" into the bash script, the task bar suddenly worked! The new task_bar defwidget looks like this.

spoiler(defwidget task_bar [] (literal :content tasks))

And "tasks" is now defined as

spoiler(box :orientation "horizontal" :space-evenly true :spacing 2 :halign "start" (box :tooltip Xfce4-terminal (eventbox :onclick ~/.config/eww/scripts/taskbaractions.sh 0x120000a 0x120000a (image :image-height 16 :path /home/prunerye/.config/eww/scripts/iconstorage/Xfce4-terminal.png))) (box :tooltip Geany (eventbox :onclick ~/.config/eww/scripts/taskbaractions.sh 0xe00010 0x120000a (image :image-height 16 :path /home/prunerye/.config/eww/scripts/iconstorage/Geany.png))) (box :tooltip Thunar (eventbox :onclick ~/.config/eww/scripts/taskbaractions.sh 0x140000d 0x120000a (image :image-height 16 :path /home/prunerye/.config/eww/scripts/iconstorage/Thunar.png))) )

view more: next ›