Contest mocks Jacob Frey, fundraises rent relief



In the Minneapolis spirit of absurdist protest and whimsical humor, a weekend fundraiser supported mutual aid efforts while also criticizing Mayor Jacob Frey.

The “Performative Mayor Contest” raised $5,000 for rent relief in Minneapolis, according to organizers, with comedic performances by Frey lookalikes.

The community event drew hundreds of people in very Minnesotan weather — light snow in April — and a political climate focused on helping neighbors recover after federal immigration agents flooded the state.

Minneapolis comedian and event host Comrade Tripp said he’s critical of Frey’s time in office — not just during the ICE surge — and condemned his veto use. Frey has vetoed 22 actions in his last eight years of office, far more than the previous two mayors.

Tripp particularly took issue with Frey vetoing an eviction notice extension for residents unable to pay rent because of the federal immigration enforcement surge in recent months.

“The mayor is a performative person. He has a lot of words with no actions,” said Tripp, who hosted the event.

With the veto, Frey instead proposed $1 million in city funds be redirected toward rental assistance. Several local shelters and affordable housing landlords had also spoken against an eviction extension, with concerns it could ultimately harm residents.

Frey appeared to take the event in stride in a statement to MPR News on Friday.

“I’ve been saying this whole time that rental assistance is the way to tackle this problem. So if making fun of me raises more money for rental assistance, that’s a great outcome,” Frey wrote.

The Minneapolis mayor later reshared an organizer’s video promoting the event to his Instagram story with the caption: “Rental support is the right solution. And this is a cause worthy of a donation.”

Anne Lehman, a sex educator and social media manager at Smitten Kitten, organized the “Performative Mayor Contest.” The adult store became a community hub after the start of “Operation Metro Surge” in December and has fundraised to support neighbors for months.

Lehman said donations have dropped since the drawdown, though they still have a long list of families in need.

They took inspiration from drag shows and “performative male” contests trending on social media where men carry items like tote bags and feminist books to virtue signal to women. Lehman found the contest a creative opportunity to build community, and fundraise, after a tense few months.

“Whimsy is important to refill your cup,” Lehman said.

Despite the wet snowfall and temperatures in the 30s, a large crowd gathered at Bryant Square Park in Minneapolis for the contest, where several performers put forth their best impressions of Frey.

For comedian Pearl Rose, that entailed jean shorts, a slim-fit button-up and an ab shirt.

“There’s a few photos of him with his abs out, kind of flashing them, online. Which is totally fine,” said Rose. “Like I’m also shameless. It’s like, the most wholesome way you can really hate someone.”

Miles Chastain, 23, competed with a puppet of Frey in a suitcase. The artist said they appreciated the space to critique the mayor.

“He isn't doing a good job right now and I feel like an appropriate measure towards that is satire,” Chastain said.

Lehman said the “Performative Mayor Contest” is the start of many more fundraisers Smitten Kitten plans to host in upcoming months.

Lehman said people sometimes ask what they think Frey should do. They want to see politicians on the ground, finding solutions.

“Why are you asking the people that work at the dildo store what the government should be doing right now?” Lehman said. “But also, I won’t be mad if you take notes.”





Source link

Leave a Reply

Subscribe to Our Newsletter

Get our latest articles delivered straight to your inbox. No spam, we promise.

Recent Reviews


What are the controllers and their types?

Salesforce controllers, also known as Visualforce controllers, are used to execute a set of instructions. Controllers specify what happens when a user interacts with the Visualforce Markup components such as Visualforce tags, HTML, fields, etc. When a user clicks on a button or link on a Visualforce page, the associated controllers will display the data related to the user action or component. The controllers have the ability to modify component behavior. They work on an MVC(Model-View-Controller) approach. Salesforce provides the below types of controllers.

  • Standard controllers
  • Standard List Controllers 
  • Custom Controllers

Wish to make a career in the world of salesforce? Start with HKR’S  salesforce online training !

1.Standard controllers

The standard controllers are the default controllers provided by Salesforce. They contain the same logic and functionality that are used for standard Salesforce pages. Every Salesforce object contains a standard controller that can be queried using the Salesforce Lightning Platform API. When a user interacts with a component on the page, the controller interacts with the database, fetches the relevant data, and displays it on the page. To display the relevant data on the Visualforce page, we need a record ID. So, we need to send an ID as a query string parameter in the page URL. The standard controller has a getter method that returns the record related to the query ID. If a user doesn’t have access to a certain object (or component) on the page, which is associated with a standard controller, it will display an insufficient privileges error message to the user. 

Associating a standard controller with a Visualforce page

To associate a standard controller to a Visualforce page, we have to use the “standardController” attribute on the tag. We should specify the name of any Salesforce object, which can be queried using the Lightning Platform API. Here is the syntax to associate a standard controller to a standard object on a page,

Salesforce Training

  • Master Your Craft
  • Lifetime LMS & Faculty Access
  • 24/7 online expert support
  • Real-world & Project Based Learning

2.Standard List Controllers

Standard list controllers are used for displaying or act on a set of records on the Visualforce pages. Related lists, list pages, and mass action pages are some of the examples of Salesforce pages that work with a set of records. The following are the objects that can be used with standard list controllers.

  • Account
  • Contract
  • Idea
  • Order
  • Product2
  • Solution
  • User
  • Lead
  • Opportunity
  • Asset
  • Campaign
  • Case
  • Contact
  • Custom objects

Associating a standard list controller with a Visualforce page

Associating a standard list controller is very much similar to associating a standard controller. In the standard list controller, we can set an object through the “standardController” attribute on the tag and then set the recordSetVar attribute on the same component. Here is the syntax to associate a standard list controller with an object on a page,

Once the standard list controller is associated, we can act on a set of records using expression language syntax. We can use a standard list controller to add pagination to a page with the help of the next and previous actions.

Cloud Technologies, salesforce-controllers-description-0, Cloud Technologies, salesforce-controllers-description-1

Subscribe to our YouTube channel to get new updates..!

3.Custom Controllers

Custom controllers are used to implementing custom logic and data manipulation for a Visualforce page. If we want to perform things like calling an external web service, validate and insert data, we can use a custom controller. The custom controllers override the existing functionality and implement customized navigation through an application. They execute entirely in system mode and users will have full control over the app’s logic. 

Create a Visualforce page that uses a custom controller

To add a custom controller to a Visualforce page, we have to set the “controller” attribute in the tag. When we use a custom controller, we cannot use a standard controller. Here is the syntax to associate a custom controller to a Visualforce page,

Controller Extensions

A controller extension overrides behavior in a standard or custom controller. Any Apex class with a constructor that takes a single argument of type “ApexPages” is referred to as a controller extension. We can implement the functionality of another controller to an apex tag while adding custom logic. Here is an example class for controller extension.


public class myControllerExtension {

//custom code

}

We can extend this controller extension on a Visualforce page like below.
Both the controller extension and custom controller use the action, getter, and setter methods. The custom controllers and controller extension classes ignore user permissions and field-level security as they execute in system mode. So, the custom controllers and controller extensions are mainly used to set organization-wide defaults. Based on the user profile, we can even define whether a user can execute methods in a custom controller or controller extension class. 

Salesforce Training

Weekday / Weekend Batches

Conclusion

Apex is a complete programming language that we can use to implement effective Visualforce pages. We can use Apex properties, which are a combination of a variable with getter and setter methods. We can implement anything on a Visualforce page with the help of controllers in Apex code. Using controllers, we can implement features like dropdown on a Visual page. They allow you to filter the records displayed on the page. While working with controllers, you should have an eye out for validation rules. You should be able to handle the validation rule exceptions. 

Related Articles:



Source link