NEA grants for six institutions, one poet in Arkansas | Arkansas Blog
The Arts
NEA grants for six institutions, one poet in Arkansas
Posted
by David Koon on
Tue, Nov 27, 2012 at 11:19 AM
The National Endowment for the Arts announced their 2012 NEA grants today, and six Arkansas institutions and a poet from Benton made the cut, with grants in the state totaling $100,000
Poet Stuart Youngman "Sy" Hoahwah received one of 40 $25,000 literary fellowships awarded by the NEA to poets this year. Hoahwah, the author of the books "Black Knife" and "Velroy and the Madischie Mafia," is a graduate of the University of Arkansas creative writing program, and a member of the Comanche Nation of Oklahoma. You can read a bio of Hoahwah and some of his poetry here.
The other awards in the state went to institutions, including a $10,000 grant to the Arkansas Symphony Orchestra Society; $10,000 to the Oxford American Literary Project; $10,000 to the Arts & Science Center for Southeast Arkansas; $15,000 to the Walton Arts Center Council; $20,000 to Fayetteville's TheatreSquared theatre to help support the 2012 Arkansas New Play Festival and $10,000 to John Brown University in Siloam Springs to create a writing festival for high school students.
More details about the Arkansas winners here.
Tags: NEA Grant, Hoahwah, Oxford American, National Endowment for the Arts
Speaking of...
Matthew Bell to run Oxford American restaurant, South on Main
November 6, 2012
Matthew Bell, sous chef at Ashley?s at the Capital Hotel, will open the restaurant and bar South on Main in the Oxford American magazine?s venue of the same name at 1300 Main St. /more/
UCA Board approves new partnership with Oxford American
October 12, 2012
The University of Central Arkansas Board of Trustees today approved a new five-year working agreement with the Oxford American magazine, which has editorial offices on campus. /more/
Another week done
October 5, 2012
The Friday night line commences. Finishing up: * ON THE FARM: Democrat Scott Ellington goes after agricultural issues, one Republican Rep. Rick Crawford's several failings, in a new ad posted on YouTube above. /more/
Hodge shares his OA vision
September 26, 2012
Roger Hodge, the new editor of Oxford American magazine, talked about his rise at Harper's, his writing philosophy and his plans for the OA before a full crowd last Wednesday at the Clinton School. /more/
New Oxford American editor Roger Hodge shares plan
September 19, 2012
Roger Hodge talked about his past experience and future plans for the Oxford American at a Clinton School event on Sept. 19. /more/
Oxford American names Roger Hodge as new editor
September 10, 2012
The New York Times is reporting that Oxford American, the Southern magazine based in Little Rock and Conway, has a new editor ? Roger Hodge, 45, editor of Harper's from 2006 to 2010. /more/
More ?
'); } else if (jQuery(this).attr("id") == "sortSelect"){ jQuery("#BlogComments .sortSpinner").show(); } var url = "/ArkansasBlog/archives/2012/11/27/nea-grants-for-six-institutions-one-poet-in-arkansas"; var myStart = jQuery(this).attr("id") == "sortSelect" ? "1" : jQuery(this).attr("rel"); var showAllComments = jQuery(this).attr("id") == "showAllComments" ? "yes" : "no"; if (!myStart) var myStart = "1"; var mySort = jQuery("#sortSelect").val() || "asc"; var params = { sort: mySort, ajaxComponent: componentId, startIndex: myStart, showAll: showAllComments }; jQuery.ajax({ url: url, data: (params), success: function (data) { jQuery("#"+componentId+"_PaginationBottom").remove(); jQuery("#"+componentId+"_commentContent .brandNewComment").remove(); jQuery("#BlogComments .sortSpinner").hide(); if (myStart == "1") jQuery("#"+componentId+"_commentContent").html(data); else jQuery("#"+componentId+"_commentContent").append(data); } }); }; function removeEdit(oid){ if (oid){ var cont = jQuery("#BlogComments-comment-"+oid).closest(".brandNewComment"); cont.find(".newCommentOptions").fadeOut("fast", function(){ jQuery(this).remove(); }); } } function getComment(oid){ var url = "/ArkansasBlog/archives/2012/11/27/nea-grants-for-six-institutions-one-poet-in-arkansas"; if (oid){ var params = { ajaxComponent: componentId, commentOid: oid }; jQuery.ajax({ url: url, data: (params), success: function (data) { if (!jQuery.trim(jQuery("#"+componentId+"_commentContent").html())){ jQuery("#"+componentId+"_commentContent").append(data).find(".brandNewComment").fadeIn("fast"); } else { jQuery("#"+componentId+"_commentContent").children("div.comment, div.brandNewComment").filter(":last").after(data).parent().find(".brandNewComment").fadeIn("fast"); } var t=setTimeout(function(){removeEdit(oid)},300000); var myTotal = parseInt(jQuery("#comments_total").text(), 10); myTotal++; updateCommentTotals(false,myTotal); } }); } } 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);
}
}
function deleteComment(e){
e.preventDefault();
var thisComment = $(this);
var params = {
macro: "deleteComment",
comment: thisComment.attr("data-comment")
};
$.ajax({
url: "/gyrobase/Macros/ToolsAjax",
data: (params),
type: "POST",
dataType: "html",
success: function (data) {
thisComment.closest(".brandNewComment").fadeOut("fast", function(){
$(this).remove();
var myTotal = parseInt(jQuery("#comments_total").text(), 10);
myTotal--;console.log(myTotal);
updateCommentTotals(false,myTotal);
});
}
});
}
function editComment(e){
e.preventDefault();
var thisComment = $(this);
var commentCont = thisComment.closest(".brandNewComment").find(".description");
var commentTemp = thisComment.closest(".brandNewComment").find(".commentTemp");
var commentText = commentTemp.html();
var toolbar = thisComment.closest(".brandNewComment").find(".commentToolbar");
commentCont.next(".commentEditCont").remove();
commentCont.after(''); toolbar.fadeOut("fast"); commentCont.fadeOut("fast", function(){ commentCont.next(".commentEditCont").fadeIn("fast"); }); $(".brandNewComment textarea.expandableBox").autoBoxResize(); } function editCommentSave(e){ e.preventDefault(); var thisComment = $(this); var editCont = thisComment.closest(".commentEditCont"); var commentTemp = thisComment.closest(".brandNewComment").find(".commentTemp"); var newText = thisComment.prevAll("textarea").val(); var toolbar = thisComment.closest(".brandNewComment").find(".commentToolbar"); var params = { macro: "editComment", comment: thisComment.attr("data-comment"), commentText: newText }; $.ajax({ url: "/gyrobase/Macros/ToolsAjax", data: (params), type: "POST", dataType: "html", success: function (data) { editCont.fadeOut("fast", function(){ editCont.prev(".description").html($.trim(data)); commentTemp.html(newText); editCont.prev(".description").fadeIn("fast"); toolbar.fadeIn("fast"); }); } }); } function editCommentCancel(e){ e.preventDefault(); var editCont = $(this).closest(".commentEditCont"); var toolbar = $(this).closest(".brandNewComment").find(".commentToolbar"); editCont.fadeOut("fast", function(){ editCont.prev(".description").fadeIn("fast"); toolbar.fadeIn("fast"); editCont.remove(); }); } $("#BlogComments").on('click', ".bottomOptionBar a#doSubscribe", activateSubscribe); $("#BlogComments").on('click', ".bottomOptionBar a.togglePanelClose", function(){$(this).parent().fadeOut("fast"); return false;}); $("#BlogComments").on('click', ".brandNewComment a.commentDeleteLink", deleteComment); $("#BlogComments").on('click', ".brandNewComment a.commentEditLink", editComment); $("#BlogComments").on('click', ".brandNewComment a.doneEditLink", editCommentSave); $("#BlogComments").on('click', ".brandNewComment a.cancelEditLink", editCommentCancel); })(jQuery); jQuery(document).ready(function($){ $("#BlogComments").on('click', '#showMoreComments,#showAllComments', getMoreComments); $("#BlogComments #sortSelect").change(getMoreComments); getMoreComments(); new Foundation.PostCommentComponent(componentId); var nc = Foundation.NotificationCenter.sharedNotificationCenter(); nc.observe("comment:added", function (e) { var comment = e.data; getComment(comment.get("oid")); // clear rating if (jQuery(".commentFormRating").length!=0){ jQuery(".commentFormRating input[name='reviewRating']").val(""); jQuery(".commentFormRating .goldStarContainer").css("left", zeroPos+"px"); } }); var subscribeCheckBox = $("#BlogComments_commentSubscribe"); subscribeCheckBox.prop("checked", getCookie("subscribeToThread") === "true" ? true : false); subscribeCheckBox.change(function (e) { var subscribeToThread = $(this).prop("checked"); setCookie("subscribeToThread", subscribeToThread ? "true" : "false", 30); }); var shareFacebookBox = $("#BlogComments_postCommentToFacebook"); shareFacebookBox.prop("checked", getCookie("shareOnFacebook") === "true" ? true : false); shareFacebookBox.change(function (e) { var shareOnFacebook = $(this).prop("checked"); setCookie("shareOnFacebook", shareOnFacebook ? "true" : "false", 30); }); $("#BlogComments").on('click', 'a.likeLink', doLikeComment); $("#BlogComments").on('click', 'a.reportCommentLink', reportComment); });
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.