Instance: piefed.social
Joined: 10 months ago
Posts: 1
Comments: 17
Posts and Comments by brandon, brandon@piefed.social
Comments by brandon, brandon@piefed.social
Thinking that, for example, Houston is “easily” better than Boston is such an insane take. I don’t think I’ve ever been anywhere more miserable than Houston.
The New York street grid was planned out well before the invention of the automobile:
There’s no doubt that New York is expensive. However, I don’t think it’s even the most expensive city in the country. San Francisco, Seattle, and Boston all come to mind as probably more expensive, at least in terms of rent.
Still, you will pay a premium to live in the five boroughs compared to most other places in the country. Salaries tend to be higher in the city compared to other parts of the country, but it’s not unusual for New Yorkers to spend 40%-50% or more of their income on rent. Especially for those who earn less.
But, there’s a reason most New Yorkers aren’t chomping at the bit to move out to flyover country.
There will be additional proceedings to determine the amount of punitive damages to apply as well. So this probably isn’t the entire judgement.
Whether it survived appeal to establish a precedent for other complaints is another story.
They have a portion of one of these models at the Museum of the Moving Image in Queens. It’s my favorite movie so it was very cool to see in person.
They also have Big Bird and a Skeksis, so if you get a chance to go, you should.
Boycott
Divest
Sanctions
Masochism
But, topically, will not block YouTube ads
If you never give a tv the internet, it stays a dumb tv, so far.
I think it’s only a matter of time before TV manufacturers start disabling the TVs if they can’t connect periodically. Or they’ll start shipping them with SIM cards.
I’m not sure if you’re being serious, but software engineering and IT systems administration are different roles typically filled by different people.
A company or organization can have a quite sophisticated IT department without having any software engineers on staff.
This is already happening.
https://m.youtube.com/watch?v=QptwxcByzTI&pp=0gcJCa4KAYcqIYzv
It’s not a branch, it’s the trunk
Don’t take career advice from Joe Piscopo.
FYI, Tidal is approximately the same price as Spotify and there are several tools floating around on GitHub which will allow you to download high quality flac files from that service.
The elements are positioned via the use of CSS grid. Horizontal position is set with the grid-column property. So if you set the grid-column for the previews to 1, and shift everything else’s column over, you should get the images on the left.
Slightly improved version:
div.post_teaser {
padding-top: 8px;
padding-bottom: 8px !important;
}
.col.post_teaser_body {
display: grid;
grid-template-columns: auto 170px;
}
.col.post_teaser_body h3 {
grid-column: 1;
grid-row: 1;
}
.col.post_teaser_body .author {
grid-column: 1;
grid-row: 2;
}
.col.post_teaser_body .post_teaser_image_preview {
margin-left: auto;
margin-top: 0;
grid-column: 2;
grid-row: 1/4;
height: 90px;
width: 170px;
}
.col.post_teaser_body .post_teaser_image_preview .post_link {
width: 100%;
height: 100%;
}
.col.post_teaser_body .post_teaser_image_preview .post_link img {
object-fit: cover;
object-position: center;
width: 170px;
height: 100%;
border-radius: 5px;
}
.post_list .post_teaser .thumbnail img, .post_teaser_image_preview img {
border-radius: 5px;
}
.col.post_teaser_body .col_thumbnail.thumbnail {
grid-column: 2;
grid-row: 1/4;
height: 100%;
}
.col.post_teaser_body .post_utilities_bar {
grid-row: 3;
grid-column: 1/2;
}
div.navbar {
min-height: 40px;
}
div.navbar a.navbar-brand {
line-height: 40px;
padding-top: 0;
padding-bottom: 0;
}
div.navbar .navbar-brand img {
width: 20px;
height: 20px;
}
RetroFed

Thinking that, for example, Houston is “easily” better than Boston is such an insane take. I don’t think I’ve ever been anywhere more miserable than Houston.
The New York street grid was planned out well before the invention of the automobile:
https://en.wikipedia.org/wiki/Commissioners’_Plan_of_1811
There’s no doubt that New York is expensive. However, I don’t think it’s even the most expensive city in the country. San Francisco, Seattle, and Boston all come to mind as probably more expensive, at least in terms of rent.
Still, you will pay a premium to live in the five boroughs compared to most other places in the country. Salaries tend to be higher in the city compared to other parts of the country, but it’s not unusual for New Yorkers to spend 40%-50% or more of their income on rent. Especially for those who earn less.
But, there’s a reason most New Yorkers aren’t chomping at the bit to move out to flyover country.
There will be additional proceedings to determine the amount of punitive damages to apply as well. So this probably isn’t the entire judgement.
Whether it survived appeal to establish a precedent for other complaints is another story.
They have a portion of one of these models at the Museum of the Moving Image in Queens. It’s my favorite movie so it was very cool to see in person.
They also have Big Bird and a Skeksis, so if you get a chance to go, you should.
Boycott Divest
Sanctions Masochism
https://www.youtube.com/watch?v=BFhMRvnj0n4
But, topically, will not block YouTube ads
If you never give a tv the internet, it stays a dumb tv, so far.
I think it’s only a matter of time before TV manufacturers start disabling the TVs if they can’t connect periodically. Or they’ll start shipping them with SIM cards.
I’m not sure if you’re being serious, but software engineering and IT systems administration are different roles typically filled by different people.
A company or organization can have a quite sophisticated IT department without having any software engineers on staff.
This is already happening.
https://alpha.school/
https://m.youtube.com/watch?v=QptwxcByzTI&pp=0gcJCa4KAYcqIYzv
She’s an ape, not a monkey, have some respect.
It’s not a branch, it’s the trunk
Don’t take career advice from Joe Piscopo.
FYI, Tidal is approximately the same price as Spotify and there are several tools floating around on GitHub which will allow you to download high quality flac files from that service.
The elements are positioned via the use of CSS grid. Horizontal position is set with the grid-column property. So if you set the grid-column for the previews to 1, and shift everything else’s column over, you should get the images on the left.
Slightly improved version:
Consistent Compact Layout
This stylesheet uses CSS grids to force a consistent look between link posts and image posts when using the compact layout option. There’s probably a better way to accomplish this, but this is quick & dirty & it works.