- published: 08 Jun 2023
- views: 210
'+pages+''); $('.stream > div:odd').addClass('bgr_color'); updateHeight('#history'); }); window.activateTabArea = ensure(function(tab, areas){ var parsed = false; var parts = (areas || '').split('/'); window.fsonload = $.inArray('fs', parts) >= 0; if(fsonload){ parts.splice(parts.indexOf('fs'), 1); } var replayMode = false; if($.inArray('replay', parts)>=0){ replayMode = 'replay'; } var noSoundMode = false; if($.inArray('nosound', parts)>=0){ noSoundMode = 'nosound'; } if($.inArray('ns', parts)>=0){ noSoundMode = 'ns'; } var previewMode = null; if($.inArray('p', parts)>=0){ previewMode = 'p'; } if($.inArray('preview', parts)>=0){ previewMode = 'preview'; } if($.inArray('repeat', parts)>=0){ replayMode = 'repeat'; } if($.inArray('r', parts)>=0 || $.inArray('ro', parts)>=0){ replayMode = 'r'; } if(replayMode){ parts.splice(parts.indexOf(replayMode), 1); } if(noSoundMode){ parts.splice(parts.indexOf(noSoundMode), 1); } if(previewMode){ parts.splice(parts.indexOf(previewMode), 1); } if(previewMode){ if(!parts.length){ parts = ['1-14', '999:59']; } } var area = parts[0]; if(tab == 'history' && false){ var page = parseInt(area || '1') || 1; $.ajax({ url: 'https://login.wn.com/recent/json/?pp='+history_pp+'&skip='+history_pp*(page-1), dataType: 'jsonp', success: function(response){ $ensure(function(){ renderHistory(response, page); }); } }); return true; } if(tab == 'global_history' && false){ var page = parseInt(area || '1') || 1; globalHistory.fetchStream(page, '', function(){ updateHeight('#global_history'); }); return true; } if(tab == 'my_playlists' && false){ var page = parseInt(area || '1') || 1; myPlaylists.fetchStream(page, '', function(){ updateHeight('#my_playlists'); }); return true; } if(tab == 'my_videos' && false){ var page = parseInt(area || '1') || 1; myVideos.fetchStream(page, '', function(){ updateHeight('#my_videos'); }); return true; } if(tab == 'related_sites' && areas && matchPosition(areas)){ var seconds = parsePosition(areas); scrollRelated(seconds); return false; } if(matchPosition(area) || matchAction(area)){ parts.unshift('1'); area = parts[0]; } if(tab == 'expand' && area && area.match(/\d+/)) { var num = parseInt(area); if(num < 100){ //FIX ME. Load news page with ajax here } else if(num > 1900){ //FIX ME. Load timeline page with ajax here } } else if(tab.match(/^playlist\d+$/)){ var playerId = parseInt(tab.substring(8)); var vp = videoplayers[playerId]; window.descriptionsholder = $('.descriptionsplace'); if(!vp) return; // why? no player? if(replayMode){ $('.replaycurrent'+playerId).attr('checked', true); vp.setReplayCurrent(true); } var playQueue = []; window.playQueue = playQueue; var playQueuePosition = 0; var playShouldStart = null; var playShouldStop = null; var parseList = function(x){ var items = x.split(/;|,/g); var results = []; for (i in items){ try{ var action = parseAction(vp, items[i]); if(!action.video){ if(window.console && console.log) console.log("Warning: No video for queued entry: " + items[i]); }else{ results.push(action); } }catch(e){ if(window.console && console.log) console.log("Warning: Can''t parse queue entry: " + items[i]); } } return results; }; var scrollToPlaylistPosition = function(vp){ var ppos = vp.getPlaylistPosition(); var el = vp.playlistContainer.find('>li').eq(ppos); var par = el.closest('.playlist_scrollarea'); par.scrollTop(el.offset().top-par.height()/2); } var updateVolumeState = function(){ if(noSoundMode){ if(noSoundMode == 'turn-on'){ clog("Sound is on, vsid="+vp.vsid); vp.setVolumeUnMute(); noSoundMode = false; }else{ clog("Sound is off, vsid="+vp.vsid); vp.setVolumeMute(); noSoundMode = 'turn-on'; } } } var playQueueUpdate = function(){ var playPosition = playQueue[playQueuePosition]; vp.playFromPlaylist(playPosition.video); scrollToPlaylistPosition(vp); playShouldStart = playPosition.start; playShouldStop = playPosition.stop; }; var playQueueAdvancePosition = function(){ clog("Advancing play position..."); playQueuePosition ++; while(playQueuePosition < playQueue.length && !playQueue[playQueuePosition].video){ playQueuePosition ++; } if(playQueuePosition < playQueue.length){ playQueueUpdate(); }else if(vp.getReplayCurrent()){ playQueuePosition = 0; playQueueUpdate(); vp.seekTo(playShouldStart); vp.playVideo(); }else{ vp.pauseVideo(); playShouldStop = null; playShouldStart = null; } }; function loadMoreVideos(playerId, vp, start, finish, callback){ var playlistInfo = playlists[playerId-1]; if(playlistInfo.loading >= finish) return; playlistInfo.loading = finish; $.ajax({ url: '/api/upge/cheetah-photo-search/query_videos2', dataType: 'json', data: { query: playlistInfo.query, orderby: playlistInfo.orderby, start: start, count: finish-start }, success: function(response){ var pl = vp.getPlaylist().slice(0); pl.push.apply(pl, response); vp.setPlaylist(pl); callback(); } }); } if(parts.length == 1 && matchDash(parts[0])){ var pl = vp.getActualPlaylist(); var vids = parseDash(parts[0]); parts = []; for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': null }) } if(vids.length){ if(vids[vids.length-1]-1>=pl.length){ loadMoreVideos(playerId, vp, pl.length, vids[vids.length-1], function(){ if(fsonload){ activateTabArea(tab, parts[0]+'/fs'); }else{ activateTabArea(tab, parts[0]); } var pls = vp.getPlaylist(); vp.playFromPlaylist(pls[pls.length-1]); vp.playVideo(); scrollToPlaylistPosition(vp); }); return true; } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; playShouldStart = 0; } } if(previewMode){ var vids = []; var dur = 0; var pl = vp.getActualPlaylist(); area = parts[0]; if(parts.length == 1 && matchPosition(parts[0])){ vids = parseDash('1-'+pl.length); dur = parsePosition(parts[0]); parts = []; }else if(parts.length == 1 && matchDash(parts[0])){ vids = parseDash(parts[0]); dur = parsePosition("999:59"); parts = []; } if(parts.length == 2 && matchDash(parts[0]) && matchPosition(parts[1])){ vids = parseDash(parts[0]); dur = parsePosition(parts[1]); parts = []; } for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': dur }) } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } } if(parts.length>1){ for(var i = 0; i < parts.length; i++){ var sel = findMatchingVideo(vp, parts[i]); if(sel){ playQueue.push({ 'video': sel, 'start': 0, 'stop': null }) } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } }else if(area){ var sel = findMatchingVideo(vp, area); if(sel){ vp.playFromPlaylist(sel); playShouldStart = 0; parsed = true; } } if(fsonload || replayMode){ playShouldStart = 0; } if(document.location.search.match('at=|queue=')){ var opts = document.location.search.replace(/^\?/,'').split(/&/g); for(var o in opts){ if(opts[o].match(/^at=(\d+:)?(\d+:)?\d+$/)){ playShouldStart = parsePosition(opts[o].substr(3)) } if(opts[o].match(/^queue=/)){ playQueue = parseList(opts[o].substr(6)); if(playQueue){ playQueuePosition = 0; playQueueUpdate(); } } } } if(matchPosition(parts[1])){ playShouldStart = parsePosition(parts[1]); parsed = true; } if(matchAction(parts[1])){ var action = parseAction(vp, area+'/'+parts[1]); playShouldStart = action.start; playShouldStop = action.stop; parsed = true; } if(playShouldStart !== null && !playQueue.length){ playQueue.push({ video: vp.getCurrentVideo(), start: playShouldStart, stop: playShouldStop }); } if(playShouldStart != null){ setInterval(function(){ if(playShouldStop && vp.currentPlayer && vp.currentPlayer.getCurrentTime() > playShouldStop){ playShouldStop = null; if(vp.getCurrentVideo() == playQueue[playQueuePosition].video){ playQueueAdvancePosition(); }else{ playShouldStart = null; } } }, 500); vp.playerContainer.bind('videoplayer.player.statechange', function(e, state){ if(state == 'ended'){ // advance to the next video playQueueAdvancePosition(); } }); vp.playerContainer.bind('videoplayer.player.readychange', function(e, state){ if(state){ updateVolumeState(); if(playShouldStart !== null){ vp.seekTo(playShouldStart); playShouldStart = null; }else{ playShouldStop = null; // someone started other video, stop playing from playQueue } } if(fsonload) { triggerFullscreen(playerId); fsonload = false; } }); } } else if(tab.match(/^wiki\d+$/)){ if(firstTimeActivate){ load_wiki($('#'+tab), function(){ if(area){ var areaNode = $('#'+area); if(areaNode.length>0){ $('html, body').scrollTop(areaNode.offset().top + 10); return true; } } }); } } return parsed; }) window.activateTab = ensure(function(tab, area){ window.activeArea = null; if(tab == 'import_videos'){ if(area){ import_videos(area); }else{ start_import(); } return true; } if(tab == 'chat'){ update_chat_position($('.chat').eq(0)); window.activeArea = 'chat'; jQuery('.tabtrigger').offscreentabs('activateTab', 'chat'); return true; } if(tab in rev_names){ tab = rev_names[tab]; } if(tab.match(':')){ return false; } var sup = $('ul li a[id=#'+tab+']'); if(sup && sup.length>0){ window.activeArea = area; sup.first().click(); if(!window.activateTabArea(tab, area)){ window.activeArea = null; } window.activeArea = null; return true; }else{ var have_tabs = $('#playlist_menu li').length; if(tab.match(/^playlists?\d+$/)){ var to_add = +tab.substring(8).replace(/^s/,'')-have_tabs; if(to_add>0 && have_tabs){ add_more_videos(to_add); return true; } } } return false; }); window.currentPath = ensure(function(){ return window.lastHistory.replace(basepath, '').split('?')[0]; }); window.main_tab = window.main_tab || 'videos'; window.addHistory = ensure(function(path){ if(window.console && console.log) console.log("Adding to history: "+path); if(window.history && history.replaceState && document.location.hostname.match(/^(youtube\.)?(\w{2,3}\.)?wn\.com$/)){ if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = basepath; } else if( path.match('^'+main_tab+'/') ){ path = basepath + '/' + path.replace(main_tab+'/', '').replace('--','/'); } else { path = basepath + '/' + path.replace('--','/'); } if(document.location.search){ path += document.location.search; } if(window.lastHistory) { history.pushState(null, null, path); } else if(window.lastHistory != path){ history.replaceState(null, null, path); window.lastHistory = path; } } else{ path = path.replace('--','/'); if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = ''; } if(window.lastHistory != '/'+path){ window.location.hash = path? '/'+path : ''; window.lastHistory = '/'+path; } } }); $('.tabtrigger li a').live('click', ensure(function() { var tab = $(this).attr('id'); if(tab.substring(0,1) == '#'){ var name = tab.substring(1); if(name in menu_names){ name = menu_names[name][0]; } realTab = rev_names[name]; $('#'+realTab).show(); if(window.console && console.log) console.log("Triggering tab: "+name+(window.activeArea?" activeArea="+window.activeArea:'')); var path = name; if(window.activeArea){ path = path + '/' + window.activeArea; } if(tab.match(/#playlist\d+/) || tab.match(/#details\d+/)){ $('.multiple-playlists').show(); $('.related_playlist').show(); $('.longest_videos_playlist').show(); }else { $('.multiple-playlists').hide(); $('.related_playlist').hide(); $('.longest_videos_playlist').hide(); } // start the related script only when the tab is on screen showing if (tab.match(/related_sites/)) { if (mc) { mc.startCredits(); } } window.activeTab = realTab; addHistory(path); setTimeout(ensure(function(){ if(tab.match(/language--/)){ $('.tabtrigger').offscreentabs('activateTab', 'language'); } if(tab.match(/weather/)) { $('.tabtrigger').offscreentabs('activateTab', 'weather'); loadContinent(); } updateMenus(tab); updateHeight(); }), 10); } return false; })); }); -->
Brooklyn Community Board 2 is a New York City community board that encompasses the Brooklyn neighborhoods of Downtown Brooklyn, Brooklyn Heights, DUMBO, Vinegar Hill, Fulton Mall, Boerum Hill, Fort Greene, Brooklyn Navy Yard, Fulton Ferry, and Clinton Hill. It is delimited by East River on the west and the north, by Kent and Classon Avenues on the east, as well as by Atlantic Avenue, Pacific Street, Fourth Avenue, Warren and Court Streets on the south.
Its current chair is John Dew, and its district manager Robert Perris.
As of the United States Census, 2000, the Community Board had a population of 98,620, up from 94,534 in 1990 and 92,732 in 1980.
In 2000, 39,916 (40.5%) residents were African-American, 33,931 (34.4%) were White non Hispanic, 4,629 (4.7%) Asian or Pacific Islander, 213 (0.2%) American Indian or Native Alaskan, 473 (0.5%) of some other race, 2,923 (3%) of two or more race, 16,535 (16.8%) of Hispanic origins.
In 2004, 17.4% of the population benefited from public assistance, down from 22.5% in 2000.
The land area is 1,910.1 acres (7.730 km2).
Community Boards of Brooklyn are New York City community boards in the borough of Brooklyn, which are appointed by the Borough President. Each of the 18 Community Boards in Brooklyn consists of 50 non-paid members. They do not have any administrative rights, but they may present requests, regarding community needs, to City Administration. There is no guarantee that the request will be approved by City, but in practice the most of reasonable problems have been resolved.
Brooklyn Community Board 1 encompasses Flushing Avenue, Williamsburg, Greenpoint, Northside, and Southside. It is delimited by the Newtown Creek and Queens Borough line on the east, Flushing and Kent Avenue on the south, as well as by the East River on the west.
Brooklyn Community Board 2 includes Brooklyn Heights, DUMBO, Vinegar Hill, Fulton Mall, Boerum Hill, Fort Greene, Brooklyn Navy Yard, Fulton Ferry, and Clinton Hill. It is delimited by East River on the west and the north, by Kent and Classon Avenues on the east, as well as by Atlantic Avenue, Pacific Street, 4th Avenue, Warren and Court Streets on the south.
Brooklyn is a given name that has increased in popularity for girls in the United States and Canada in recent years. It has occasionally been used as a name in honor of Brooklyn, the New York City borough, but is usually regarded as simply a combination of the names Brook or Brooke, a name derived from an English surname meaning "one who lives near a brook" and the suffix -lyn, which is an element in other popular contemporary names in the United States such as Kaitlyn.
The name was the 26th most popular name for baby girls in the United States in 2014 and was the 16th most popular name for baby girls born in British Columbia, Canada in 2006. Spelling variants include, but are not limited to, Brook Lynn, Brooke Lynn, Brookelynn, Brookelynne, Brooklynn and Brooklynne.
The son of football player David Beckham and his wife Victoria, AKA "Posh Spice", was also given the name Brooklyn.
Brooklyn, also Kings County, is a borough of New York City, New York.
Brooklyn may also refer to:
U District Station (formerly known by the temporary working name Brooklyn Station) will be an underground light rail station on the Northgate Link Extension of Sound Transit in the University District neighborhood in Seattle. It is scheduled to open along with the rest of the North Link project in 2021. Sound Transit estimates that there will be 12,000 daily boardings at the station in 2030.
The U District Station will be deep underground underneath Brooklyn Ave NE between NE 45th and NE 43rd Streets. It will have two entrances, one in the plaza at the base of the UW Tower at the southwest corner of 45th and Brooklyn, and the other at the northeast corner of 43rd and Brooklyn. It is one block west of The Ave, at the heart of the University District.
Brooklyn Community Board 2 (CB2) Health, Environment & Social Services (HESS) Committee Wednesday, June 07, 2023 // 6:00pm remote via Zoom https://madmimi.com/p/0af1761 00:00:00 - Welcome & Opening Business PRESENTATION: 00:06:10 - Introductions 00:10:55 - Acacia Network / Change of DSS Provider for 316 Atlantic 00:28:33 - Q&A 00:36:44 - Committee Business For Recommendation to the State Liquor Authority: 00:42:21 - 150 Smith / La Rose 00:46:18 - 82 Washington / Le Petit Monstre 00:52:10 - 385 Flatbush / Brooklyn Paramount Theater 01:20:05 - 455 Myrtle / Venerdi Inc 01:33:13 - 14 Jay / Hawkward LLC 01:46:15 - 860 Fulton / Belli 01:49:49 - 65 Jay / Junsui 01:56:43- 857 Atlantic / Socialites Lounge 02:09:25 - 11 Adams / Kinjo 02:23:40 - 68 Jay / Love & Dough 02:30:35 - 154 Carlton / Ta...
Brooklyn Community Board 2 (CB2) Transportation & Public Safety (T&PS) Committee Thursday, March 16, 2023 // 6:00pm remote via Zoom https://madmimi.com/p/746ec51/preview 00:00:00 - Welcome & Opening Business 00:06:40 - District-Level Crash Statistics PRESENTATION and Q&A: 00:12:55 - MTA: Borough Hall ADA Elevators (A-37145) 00:25:58 - Q&A DISCUSSION: 00:48:27 - DOT: 2023 Open Streets Intro 00:51:30 - Discussion and Q&A 01:49:07 - Chairperson's Report 01:50:58 - Other Committee Business 01:51:13 - Community Forum 01:53:43 - Adjourn
Brooklyn Community Board 2 (CB2) General Meeting Wednesday, April 14, 2021 // 6:00pm remote via Webex 00:00:00 - Welcome 00:01:15 - Approval of Agenda 00:01:40 - Approval of March 2021 Minutes 00:02:09 - Chair's Report 00:10:55 - District Office Report PUBLIC REPRESENTATIVES: 00:22:40 - NBlackshear (Brooklyn Borough President Eric Adams) 00:28:03 - GMayhew (State Senator Brian Kavanagh) 00:30:48 - ECerna (Mayor's Office) 00:35:48 - MStinson (Comptroller Scott Stringer) 00:37:42 - JWatkins (District Attorney Eric Gonzalez) COMMITTEES FOR ACTION: 00:42:43 - Health, Environment & Social Services Committee 01:03:35 - Land Use Committee 01:13:14 - Senate Majority Leader Charles Schumer COMMITTEES TO REPORT: 01:56:12 - Economic Development & Employment Committee 02:01:22 - Parks & Recreatio...
Brooklyn Community Board 2 (BKCB2) General Meeting Wednesday, January 11, 2023 // 6:00pm remote via Zoom https://madmimi.com/p/32ea551/preview 00:00:00 - Welcome 00:00:41 - Adoption of Agenda 00:00:56 - Adoption of December 2022 Minutes 00:01:22 - Chairperson's Report ELECTED REPRESENTATIVES: 00:08:52 - NY State Senator Jabari Brisport 00:14:18 - NY State Assembly Member Jo Anne Simon (52) 00:28:41 - C.Olsen for NY State Senator Andrew Gounardes (26) 00:35:42 - B.Schmid for US Congressman Daniel Goldman (10) 00:40:10 - A.Wright for NY City Council Member Crystal Hudson (35) 00:43:18 - J.Watkins for Brooklyn D.A. Eric Gonzalez CITY AGENCIES & COMMUNITY PARTNERS: 00:47:32 - NYPD 88th Pct 00:48:01 - Renee Collymore 00:50:11 - Brooklyn Academy of Music 00:52:11 - NYC Dept of Buildings 00:52...
Brooklyn Community Board 2 (CB2) Land Use Committee Thursday, September 09, 2021 // 6:00pm remote via Zoom https://madmimi.com/p/6e61d21/preview 00:00:00 - Welcome & Review of CB2 Meeting Protocols 00:03:35 - Chair's Report 00:15:20 - Approval: June 2021 Committee Minutes 00:15:52 - Presentation: Brooklyn Navy Yard Amendment ULURP # 210463ZRK, #210462ZM Certificate of Appropriateness Applications For Recommendation to Landmarks Preservation Commission (LPC) 00:27:40 - 53 Pearl Street - Dumbo Historic District 00:40:30 - 295-297 Hicks Street - Brooklyn Heights Historic District 01:12:45 - Community Forum 01:13:34 - Other Committee Business 01:39:40 - Adjourn
Brooklyn Community Board 2 (CB2) General Meeting Wednesday, January 12, 2022 // 6:00pm remote via Zoom https://madmimi.com/p/c15c531/preview 00:00:00 - Welcome & Approval of Agenda 00:00:28 - Approval: December 2021 Minutes 00:01:23 - Review of Board Protocols 00:05:58 - PRESENTATION and Q&A: Planning Fellow, Fund for the City of New York ELECTED OFFICIALS: 00:24:55 - NY State Assembly Member Jo Anne Simon (52) 00:39:06 - NY State Senator Jabari Brisport (25) 00:47:29 - NY State Senator Brian Kavanagh (26) 01:00:25 - NY City Council Member Lincoln Restler (33) 01:05:14 - NY City Council Member Crystal Hudson (35) 01:07:25 - Brooklyn Borough President Antonio Reynoso 01:13:02 - 2022 BKCB2 Executive Committee Swearing In COMMITTEE ACTIONS: 01:17:26 - Health, Environment & Social Service...
Brooklyn Community Board 2 (CB2) General Meeting Wednesday, May 12, 2021 // 6:00pm remote via Webex https://madmimi.com/p/5682521/preview 00:00:00 - Welcome 00:01:50 - Approval of Agenda 00:02:21 - Approval of March 2021 Minutes 00:03:14 - Chair's Report 00:23:06 - Assembly Member Jo Anne Simon 00:36:25 - District Office Report PUBLIC REPRESENTATIVES: 00:43:48 - Darryl White (Attorney General Letitia James) 00:49:12 - GMayhew (State Senator Brian Kavanagh) 00:53:56 - MStinson (Comptroller Scott Stringer) 00:59:00 - NBlackshear (Brooklyn Borough President Eric Adams) COMMITTEES FOR ACTION: 01:02:50 - Land Use - Zoning For Transit Accessibility COMMITTEES TO REPORT: 01:26:42 - Economic Development & Employment 01:31:55 - Health, Environment & Social Services 01:41:55 - Parks & Recreation...
Brooklyn Community Board 2 (BKCB2) General Meeting Wednesday, May 10, 2023 // 6:00pm remote via Zoom https://madmimi.com/p/0437361/preview 00:00:00 - Welcome & Opening Business 00:01:43 - Chairperson's Report ELECTED REPRESENTATIVES: 00:07:25 - City Council Member Lincoln Restler (33) 00:16:46 - B.Schmid for Congressman Daniel Goldman (10) 00:22:35 - J.Pierre for City Council Member Crystal Hudson (35) 00:28:06 - C.Olsen for State Senator Andrew Gounardes (26) 00:33:19 - B.Kepple for State Assemblymember Phara Souffrant Forrest (57) 00:36:27 - J.Gonzalez for NYC Public Advocate Jumaane Williams 00:38:04 - D. Abramson for Brooklyn Borough President Antonio Reynoso 00:40:31 - E.Cen for NYC Comptroller Brad Lander 00:42:16 - J.Watkins for Brooklyn District Attorney Eric Gonzalez COMMITTEE...
Brooklyn Community Board 2 (CB2) General Meeting Wednesday, February 09, 2022 // 6:00pm remote via Zoom https://madmimi.com/p/99f9731/preview 00:00:00 - Welcome & Approval of Agenda 00:01:31 - Approval: January 2022 Minutes 00:02:07 - Public Commentary 00:05:44 - NY State Senator Jabari Brisport (25) COMMITTEE ACTIONS: 00:14:07 - Health, Environment & Social Services 00:21:08 - Land Use ELECTED OFFICIALS: 00:41:30 - NY City Council Member Lincoln Restler (33) 00:58:48 - A.Mingus for NY State Assembly Member Jo Anne Simon (52) 01:00:38 - A.Wright for NY City Council Member Crystal Hudson (35) 01:02:36 - D.Louis for Mayor's Office of Community Affairs 01:03:49 - G.Mayhew for NY State Senator Brian Kavanagh (26) 01:09:33 - J.Watkins for District Attorney Eric Gonzalez COMMITTEE REPORTS: ...
00:47:03 - Brooklyn Community Board 2 (CB2) General Meeting Wednesday, October 13, 2021 // 6:00pm remote via Zoom https://madmimi.com/p/32f3f21/preview 00:00:00 - Welcome COMMITTEE REPORT: 00:00:57 - Economic Development & Employment 00:07:07 - Approval: Agenda 00:08:16 - Approval: June 2021 Minutes COMMITTEE ACTION: 00:08:55 - Health, Environment & Social Services 00:31:48 - Chair's Report 00:34:39 - District Office Report PUBLIC REPRESENTATIVES: 00:39:16 - NBlackshear (Brooklyn Borough President Eric Adams) 00:43:50 -JWatkins (Brooklyn District Attorney Eric Gonzalez) COMMITTEE REPORTS: 00:47:03 - Finance & Personnel 00:48:00 - Land Use 00:48:26 - Parks & Recreation 00:51:22 - Transportation & Public Safety 00:53:42 - Youth, Education & Cultural Affairs PUBLIC REPRESENTATIVE: 00:...
Brooklyn Community Board 2 is a New York City community board that encompasses the Brooklyn neighborhoods of Downtown Brooklyn, Brooklyn Heights, DUMBO, Vinegar Hill, Fulton Mall, Boerum Hill, Fort Greene, Brooklyn Navy Yard, Fulton Ferry, and Clinton Hill. It is delimited by East River on the west and the north, by Kent and Classon Avenues on the east, as well as by Atlantic Avenue, Pacific Street, Fourth Avenue, Warren and Court Streets on the south.
Its current chair is John Dew, and its district manager Robert Perris.
As of the United States Census, 2000, the Community Board had a population of 98,620, up from 94,534 in 1990 and 92,732 in 1980.
In 2000, 39,916 (40.5%) residents were African-American, 33,931 (34.4%) were White non Hispanic, 4,629 (4.7%) Asian or Pacific Islander, 213 (0.2%) American Indian or Native Alaskan, 473 (0.5%) of some other race, 2,923 (3%) of two or more race, 16,535 (16.8%) of Hispanic origins.
In 2004, 17.4% of the population benefited from public assistance, down from 22.5% in 2000.
The land area is 1,910.1 acres (7.730 km2).