LICNYC
All about Long Island City arts, culture, restaurants, real estate, and life
Browse: Home / 2012 / September / 04 / Spend This Saturday at SculptureCenter’s LIC Block Party!

Spend This Saturday at SculptureCenter’s LIC Block Party!

By amol on September 4, 2012

 

Yes, Labor Day has come and gone, but there are still about three more weeks until summer is officially over. So, dear readers, it would be wise to make the next few weekends count. Why not start with this Saturday, September 8 for Long Island City’s first-ever, all-ages, totally free Block Party?

Meet us at noon on Purves Street at Jackson Ave. and 43rd Street for live music, interactive performances, large scale sculptures, local food, an artist’s market, and a whole lot more that we don’t have the space to list here. But ok, fine, we’ll list our favorites—tarot readings with Jesse van Buren, pom pom-making with Abby Walton and Travis Boyer, Cubist face-painting with Stephanie Dodes, and balloon activities with Ross Moreno! Phew. Plus, the all-female mariachi group Mariachi Flor do Toloache will perform, as will the Kate Bush Dance Troupe (yes, this exists). Pick up some art, zines, jewelry, records, or anything else you could possibly want, at the Artists Market from Jessica Barensfied, Ariel Dill, Gina Beavers, Twig Terrariums and more.

The party starts at noon, and it’ll go until 5pm. The LIC Block Party is presented by SculptureCenter and the Purves Street Block Association. For more information, e-mail [email protected].

Tags: LIC Block Party

 

Subscribe to this thread:

Subscribing…

Showing 1- of



‘);
}
var url = “/gyrobase/blogs/Post”;
var myStart = jQuery(this).attr(“id”) == “sortSelect” ? “1” : jQuery(this).attr(“rel”);
var showAllComments = jQuery(this).attr(“id”) == “showAllComments” ? “yes” : “no”;
var params = {
oid: “2259689”,
sort: jQuery(“#sortSelect”).val(),
ajaxComponent: componentId,
startIndex: myStart,
showAll: showAllComments
};
jQuery.ajax({
url: url,
data: (params),
dataType: “html”,
success: function (data) {
jQuery(“#”+componentId+”_PaginationBottom”).remove();
if (myStart == “1”) jQuery(“#”+componentId+”_commentContent”).html(data);
else jQuery(“#”+componentId+”_commentContent”).append(data);
}
});
};

function doLikeComment(e){
e.preventDefault();
if (!this.clicked){
var oid = jQuery(this).attr(“data-commentOid”);
jQuery(“#BlogComments #”+oid+”_likeLinks a”).addClass(“dimmed”).css(“opacity”,”0.4″).each(function(){this.clicked = true;});

var myCurrentLikes = jQuery(“#”+oid+”_rating_likes”).html() || 0;
var myCurrentDislikes = jQuery(“#”+oid+”_rating_dislikes”).html() || 0;

var thisRating = jQuery(this).attr(“rel”);
if (thisRating == “Like”){
myCurrentLikes = parseFloat(myCurrentLikes)+1;
} else {
myCurrentDislikes = parseFloat(myCurrentDislikes)+1;
}
var myNewLine = ” + myCurrentLikes + ‘ like’;
if (myCurrentLikes != 1) {
myNewLine += ‘s’;
}
myNewLine += ‘, ‘ + ” + myCurrentDislikes + ‘ dislike’;
if (myCurrentDislikes != 1) {
myNewLine += “s”;
}

jQuery(“#”+oid+”_rating_sub”).html(myNewLine);
jQuery(“#”+oid+”_rating_sub”).show();

var params = {
oid: oid,
rating: thisRating
};
jQuery.ajax({
url: “/gyrobase/Tools/AjaxLike”,
type: “POST”,
data: (params),
success: function (data) {
jQuery(“#”+oid+”_rating_sub”).html(data);
if (thisRating == “Like”){
jQuery(“#BlogComments #”+oid+”_likeLinks a.dislike”).removeClass(“dimmed”).css(“opacity”,”1″).each(function(){this.clicked = false;});
} else {
jQuery(“#BlogComments #”+oid+”_likeLinks a.like”).removeClass(“dimmed”).css(“opacity”,”1″).each(function(){this.clicked = false;});
}
}
});
}
}

function reportComment(e){
e.preventDefault();
e.stopPropagation();
var oid = jQuery(this).attr(“rel”);
var elem = jQuery(“#”+oid+”_report”);
elem.click(function(e){e.stopPropagation();})
if (!elem.is(“:visible”)){
jQuery(“#BlogComments .reportCommentContainer”).hide();
if (elem.is(“:empty”)){
var params = {
oid: oid,
ajaxComponent: “ReportComment”
};
jQuery.ajax({
url: “/gyrobase/Tools/ReportComment”,
data: (params),
success: function (data) {
elem.html(data);
elem.fadeIn(“fast”);
}
});
} else {
elem.fadeIn(“fast”);
}
}
// attach close event handler to the html
jQuery(“html”).one(“click”, function(){
jQuery(“#BlogComments .reportCommentContainer:visible”).hide();
});
}

function closeReport(obj){
jQuery(obj).closest(“.reportCommentContainer”).fadeOut(“fast”);
}

function submitReport(e){
var params = jQuery(e).closest(“form”).serialize()+”ajaxComponent=ReportComment”;
jQuery.ajax({
url: “/gyrobase/Tools/ReportComment”,
type: “POST”,
data: (params),
success: function (data) {
jQuery(e).closest(“.reportCommentContainer”).html(data);
}
});
}

(function($) {

var subscribed=false;

function showFollowPanel(e){
e.preventDefault();
myPanel = $(this).parent().next(“.togglePanel”);
myPanel.fadeIn(“fast”);
}

function doSubscribe(obj){
var myPanel = obj.parent().next(“.togglePanel”);
myPanel.fadeIn(“fast”);
if (!subscribed){
var myLink = obj.parent();
var myLoader = myPanel.children(“.loading”);
var myUpdater = myPanel.children(“.ajaxUpdater”);
var params = {
object: myPanel.attr(“data-toolsoid”),
macro: myPanel.attr(“data-toolsajaxmacro”),
url: window.location
};

$.ajax({
url: “/gyrobase/Macros/ToolsAjax”,
data: (params),
type: “POST”,
dataType: “html”,
success: function (data) {
subscribed = true;
if (myUpdater){
myUpdater.html(data);
myLoader.fadeOut(“fast”, function(){
myUpdater.fadeIn(“fast”, function(){
setTimeout(function(){
myPanel.fadeOut(“fast”);
}, 3000);
});
});
} else {
myPanel.fadeOut(“fast”);
}
}
});
}
}

function activateSubscribe(e){
e.preventDefault();
var myObj = $(this);
var isAuthenticated = Foundation.SessionManager.sharedSessionManager().isAuthenticated();
if (!isAuthenticated){
new Foundation.Login.Dialog({
“feelingShy”: false,
“callback”: function(){doSubscribe(myObj);}
});
return false;
} else {
// Proceed
doSubscribe(myObj);
}
}

$(“#BlogComments”).on(‘click’, “.bottomOptionBar a#doSubscribe”, activateSubscribe);
$(“#BlogComments”).on(‘click’, “.bottomOptionBar a.togglePanelClose”, function(){$(this).parent().fadeOut(“fast”); return false;});

})(jQuery);

jQuery(document).ready(function($){

$(“#BlogComments”).on(‘click’, ‘#showMoreComments,#showAllComments’, getMoreComments);
$(“#BlogComments #sortSelect”).change(getMoreComments);

$(“#BlogComments”).on(‘click’, ‘a.likeLink’, doLikeComment);
$(“#BlogComments”).on(‘click’, ‘a.reportCommentLink’, reportComment);

});

 

Posted in Wires | Tagged wires

« Previous Next »

LIC Doing

  • 5 Ptz
  • Alobar
  • Breadbox Cafe
  • Laughing Devil Comedy
  • LIC Bar
  • LIC Market
  • Little Oven
  • Noguchi
  • PS1
  • Sage General Store
  • SculptureCenter
  • Waterfront Crabhouse

LIC Links

  • Gallery
  • Kenny Neon's LIC site
  • LIqCity
  • NYTimes LIC
  • Queens Crap

LICNYC

  • About
  • List your events

Past posts

September 2012
MonTueWedThuFriSatSun
 12
3456789
10111213141516
17181920212223
24252627282930
« Aug Oct »

Created by LICNYC. © 2025 LICNYC.