- published: 24 Apr 2024
- views: 12029
'+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; })); }); -->
Lirr or LIRR may refer to:
Lirr is the Oeridian goddess of Prose, Poetry, Literature, and Art in the World of Greyhawk campaign setting for the Dungeons & Dragons fantasy role-playing game. Her symbol is an illustrated book.
Lirr was first detailed for the Dungeons & Dragons game in the World of Greyhawk Fantasy Game Setting (1983), by Gary Gygax.
Lirr was one of the deities described in the From the Ashes set (1992), for the Greyhawk campaign. Lirr is described as one of the good deities that celestials can serve in the supplement Warriors of Heaven (1999).
Lirr's role in the 3rd edition Greyhawk setting was defined in the Living Greyhawk Gazetteer (2000). Lirr's priesthood is detailed for 3rd edition in Complete Divine (2004).
Lirr is usually depicted as a fresh-faced Oeridian woman with dark blue eyes and long black hair. The goddess carries a tome that can show any prose, poetry, spell, or artwork ever created. Lirr gladly cooperates with all who respect knowledge, learning, and the arts, and opposes those that would destroy knowledge and art or hide it from others.
The Long Island Rail Road (reporting mark LI), legally known as the Long Island Rail Road Company and often abbreviated as the LIRR, is a commuter rail system in southeastern New York, stretching from Manhattan to the eastern tip of Suffolk County on Long Island. With an average weekday ridership of 337,800 passengers in 2014, it is the busiest commuter railroad in North America. It is also one of the few commuter systems in the world that runs 24 hours a day, 7 days a week, year-round. It is publicly owned by the Metropolitan Transportation Authority, as MTA Long Island Rail Road. The current LIRR logo combines the circular MTA logo with the text Long Island Rail Road, and appears on the sides of trains. The LIRR is one of two commuter rail systems owned by the MTA, the other being Metro-North Railroad. Established in 1834 and having operated continuously since then, it is the oldest U.S. railroad still operating under its original name and charter.
There are 124 stations, and more than 700 miles (1,100 km) of track, on its two lines to the two forks of the island and eight major branches, with the passenger railroad system totaling 319 miles (513 km) of route.
The Long Island Rail Road commemorates its 190th anniversary, celebrating its remarkable history and impact on New York’s transportation landscape. Photos courtesy of New York Transit Museum and David Morrison, retired LIRR Branch Line Manager.
An epidemic of disability claims by veteran Long Island Rail Road retirees is unprecedented. Subscribe to the Times Video newsletter for free and get a handpicked selection of the best videos from The New York Times every week: http://bit.ly/timesvideonewsletter Subscribe on YouTube: http://bit.ly/U8Ys7n Watch more videos at: http://nytimes.com/video --------------------------------------------------------------- Want more from The New York Times? Twitter: https://twitter.com/nytvideo Facebook: https://www.facebook.com/nytimes Google+: https://plus.google.com/+nytimes/ Whether it's reporting on conflicts abroad and political divisions at home, or covering the latest style trends and scientific developments, New York Times video journalists provide a revealing and unforgettable vie...
“Don’t Shortcut Your Life,” LIRR Urges in New Public Safety Campaign Aimed at Stopping Trespassing on Railroad Tracks Stark Statistic: 35 People Struck by LIRR Trains Last Year. 28 Were Killed
The Long Island Rail Road (or LIRR) is a commuter rail that goes through Manhattan, Brooklyn, Queens, Nassau, and Suffolk. It's a great way to see the areas east of New York City (which is Long Island). I use it to go to Far Rockaway beach, Citifield for a Mets game, and Billie Jean King/Arthur Ashe for the US Open Tennis. But how do you take the LIRR? How do you ride the Long Island Rail Road? In this video, I'm going to cover everything you need to know about the Long Island Rail Road — from defining what it is to buying a ticket from a machine or phone, finding and boarding your train, figuring out transfers, and so much more. Enjoy and Happy New York-ing! RELATED LINKS: Video on JFK to New York (Manhattan) → https://youtu.be/wIb5sAgNkp8 Video on how to use the MetroCard (and everythin...
Hello, and welcome to Jamaica! Today we are going to be riding on the Long Island Rail Road back to New York’s Penn Station. Check out the previous video where I saw some incredible thunderstorms over Texas on my flight from LA to Austin: https://youtu.be/fKOQajbvxlg ---- Train Information ---- Train Number: 3:47pm service to NY Penn Train Consist: Six, bombardier M7 EMUs Departure Time: 3:47pm Arrival Time: 4:10pm Journey Time: 23 min Top Speed: 80mph Ticket Price: $7.75 Riding on an LIRR M9 from Far Rockaway to Jamaica: https://youtu.be/vJNK0ktqQYE Metro North Action at Williams Bridge: https://youtu.be/-mCCH63Yoak I also recommend checking out the main channel, where I post more rail and aviation videos. Thanks for watching and I hope you enjoyed! Subscribe: https://www.youtube....
Rails rattle and shake with idling diesel engines, and now residents in one community want it to stop. CBS2's Jennifer McLogan reports.
FOX 5 NY's Arthur Chi'en talked to riders at Grand Central who took the same route. Subscribe to FOX 5 NY: https://www.youtube.com/fox5ny?sub_confirmation=1 Watch FOX 5 NY Live: https://www.fox5ny.com/live FOX 5 NY delivers breaking news, live events, investigations, politics, entertainment, business news and local stories from New York City and across the nation. Watch more FOX 5 NY on YouTube: Black Entrepreneurs: https://www.youtube.com/playlist?list=PLcuHpcV2MbFhCA1ErwiU_6G6XSA-HBg0r STREET SOLDIERS with LISA EVERS: https://www.youtube.com/playlist?list=PLcuHpcV2MbFgxNyloxnZwYu5p0oWN_lSJ A.I. ALL IN: https://www.youtube.com/playlist?list=PLcuHpcV2MbFgcJsok-gL3gwY8OfzVkacP Finding Faith: https://www.youtube.com/playlist?list=PLcuHpcV2MbFg7_GyPTOJfF9PiWwo9sgMd The Big Idea: http...
I haven't showcased my O-Scale LIRR in awhile! Here's some action of it running in a 2 car consist! NOTE: This is NOT the Lionchef set. This is the ORIGINAL 4-car set that these 2 cars are from. The Lionchef set comes ONLY with 3-Cars + a Special Controller with announcements. The original 4 car set doesn't have any as it comes with a 40 watt transformer with 2 terminals. I had this set for quite awhile, I do plan to get the Lionchef set one day if I can. Enjoy the video. The next Munipals action will be a collab! Stay tuned for that! #mtasubway #longislandrailroad #modeltrains #lioneltrains
EDIT; Mineola action (8/26/16): http://www.youtube.com/watch?v=o2ykd8tLuU8 All LIRR mainline action from 4:00 pm to 5:50 pm (not quite two hours, but close enough). Lots and lots of horn action from M7s, DE30ACs, DM30ACs, and an M3. Even a short MP15AC powered freight operated by New York & Atlantic Railway manages to sneak into the action. Enjoy =)
The Long Island Rail Road (or LIRR) is a commuter rail that goes through Manhattan, Brooklyn, Queens, Nassau, and Suffolk. It's a great way to see the areas east of New York City (which is Long Island). I use it to go to Far Rockaway beach, Citifield for a Mets game, and Billie Jean King/Arthur Ashe for the US Open Tennis. But how do you take the LIRR? How do you ride the Long Island Rail Road? In this video, I'm going to cover everything you need to know about the Long Island Rail Road — from defining what it is to buying a ticket from a machine or phone, finding and boarding your train, figuring out transfers, and so much more. Enjoy and Happy New York-ing! RELATED LINKS: Video on JFK to New York (Manhattan) → https://youtu.be/wIb5sAgNkp8 Video on how to use the MetroCard (and everythin...
Howdy folks, Welcome to this trip report onboard a Long Island Railroad service bound to Oyster Bay! I was so hyped about this trip and rode the C3 coaches and the DE30AC and it was great, until.... Well enjoy and let me know your thoughts in the comments - TRIP INFORMATION - RECORDED IN DECEMBER 2020 Railroad company: Long Island Railroad (MTA) Train type : EMD DE30AC + 3 coaches From : Jamaica Station to East Williston Time : 21 min Price : €4.99 - $6 LINK TO THE NEW PATREON PAGE : https://www.patreon.com/simply_railway Video made by Railways Explained on the NYC rail system. https://www.youtube.com/watch?v=Df61SuaVVNA Go check out the Youtube channel of @RailwaysExplained https://www.youtube.com/channel/UCGq3OyOoLPYj4Oyk1DWnKxQ - INSTAGRAM - https://www.instagram.com/simply_rai...
Hi guys! In this video Johny takes an mta subway train ride on the Long Island railroad from Atlantic Terminal To Jamaica station. On this subway train ride we see other mta subway trains and long island railroad trains too. Thank You for watching! SUBSCRIBE and share! Remember you are AWESOME Check out our other videos: Old mta train ride https://youtu.be/nUG1l1cUK58 MTA train ride to Rockefeller center https://youtu.be/ebbc68yA94U mta train ride to grand central station and holiday train show https://youtu.be/t--K-y8s_qg Staten island subway train ride https://youtu.be/zUsxZ44weOo Moscow Bus ride https://youtu.be/Zai0GU_M3aM Aeroexpress train ride https://youtu.be/fWfNgZM0j7s Moscow Train Ride https://youtu.be/mzg8VGJQD-k Moscow Tram Ride https://youtu.be/Z4EGrbEBdX8 Airtrain ri...
In this video, we'll take a look at the Long Island Railroad. The focus will be on the lines that run on the north side of the island. We will see electrically powered multiple unit cars as well as the dual mode DE30AC locomotives pulling trains and even a brief view of a work train. All aboard! CoasterFan2105 is home to train videos for everyone! Subscribe to the channel for the latest updates and check back every Friday at 9:00 AM Pacific Time for a new video! See you down the line! Website: http://coasterfan2105.com Channel Page: http://www.youtube.com/coasterfan2105 Facebook: http://www.facebook.com/coasterfan2105 Twitter: http://www.twitter.com/coasterfan2105 Photos: http://www.railpictures.net/coasterfan2105 Flickr: http://www.flickr.com/mikesarmstrong
EDIT; Mineola action (8/26/16): http://www.youtube.com/watch?v=o2ykd8tLuU8 All LIRR mainline action from 4:00 pm to 5:50 pm (not quite two hours, but close enough). Lots and lots of horn action from M7s, DE30ACs, DM30ACs, and an M3. Even a short MP15AC powered freight operated by New York & Atlantic Railway manages to sneak into the action. Enjoy =)
READ: Definitely not good for publicity, considering the LIRR literally just tweeted asking for people to take pictures of the M9 train LOL. http://www.facebook.com/mtalirr/photos/a.10150110217672315/10156095235042315/?type=3 Thanks for keeping me entertained though. This clip was featured on NBC news, as recorded by my friend here: https://youtu.be/dJASGIh2RUc EDIT: So some of you are having a hard time hearing this guy, so here are captions: "Yo, stop filming. Don't film me either." "YOO, I told you twice already to stop filming; the cops are on their way, alright?" (flips me off, lmao) The best part of this is that I wasn't even filming him, just the trains. If he had ignored me and not said anything at all, this video would never even exist. But notice that on the M9 (he was deadh...
Hello, and welcome to Jamaica! Today we are going to be riding on the Long Island Rail Road back to New York’s Penn Station. Check out the previous video where I saw some incredible thunderstorms over Texas on my flight from LA to Austin: https://youtu.be/fKOQajbvxlg ---- Train Information ---- Train Number: 3:47pm service to NY Penn Train Consist: Six, bombardier M7 EMUs Departure Time: 3:47pm Arrival Time: 4:10pm Journey Time: 23 min Top Speed: 80mph Ticket Price: $7.75 Riding on an LIRR M9 from Far Rockaway to Jamaica: https://youtu.be/vJNK0ktqQYE Metro North Action at Williams Bridge: https://youtu.be/-mCCH63Yoak I also recommend checking out the main channel, where I post more rail and aviation videos. Thanks for watching and I hope you enjoyed! Subscribe: https://www.youtube....
A full ride on the Long Island Railroad from Woodside to Babylon in October 2022. Google Maps Route: https://goo.gl/maps/71yGFhtmsLAvpTrLA Recorded October 20, 2022 💲 Support Me 💲 💵 PayPal: https://paypal.me/actionkidyt?locale.x=en_US 💵 Cash App: $actionkid 💵 Patreon: https://www.patreon.com/actionkid 💵 Merchandise Store: https://the-actionkid-store.creator-spring.com 😀 Social 😀 📸 My website: http://www.actionkidtv.com/ 📸 Follow me on Instagram: https://www.instagram.com/actionkidtv/ 📸 Follow me on Twitter: https://twitter.com/actionkidtv 📸 Discord Server : https://discord.gg/sw7SCeu ******************************************************* The links below contain Amazon affiliate links, which means that if you click on one of the product links, I'll receive a small commission from y...
Today we’re going to take arguably the best option for someone traveling to get into New York City from JFK International Airport. The Long Island Rail Road (LIRR), which is under the banner of the Metropolitan Transportation Authority (MTA), operates trains from suburban Long Island into New York Penn Station. Although the subways (metro) and busses are also under the MTA banner, the LIRR requires a different ticket to ride. From Jamaica, it takes on average just 20 minutes to reach Penn Station via the LIRR, taking upwards of six times as long on the (E) subway from Jamaica Center. The LIRR costs more than the subway, but the ride is quicker, the trains are cleaner, and the experience is generally much better. Long Island Rail Road Pros: - Quickest option from Jamaica (averaging 20 ...
Note: This footage was taken from a publicly accessible part of the train. No footage shown in this video was recorded from a non-public viewpoint. Please do not trespass and/or place cameras in non-publicly accessible areas. The Long Island Rail Road operates a small fleet of M3-type cars, which have a front window that is accessible to passengers! This is a full, real-time, video of the view from Long Beach to New York Penn Station, the entire length of the Long Beach Branch. Enjoy! Join this channel to get access to special perks! ▶️ https://www.youtube.com/channel/UCyo3FdxKWiVZt0b7zJwb7vw/join Click here to Subscribe! http://bit.ly/SubwayVideo Join the DJH Trains Discord! ▶️ https://discord.gg/zWbQkpn "Like" the Facebook page! ▶️ https://www.facebook.com/DJHTrains Join the Transport...
Lirr or LIRR may refer to:
When the neon lights shine down,
and there's no one else around,
whatcha gonna do when the clock strikes two,
and all the freaks come out,
On the ave....
When the neon lights shine down,
and there's no one else around,
whatcha gonna do when the clock strikes two,
and all the freaks come out,
On the ave....
When you're on the ave...
Now I got a reason for breathin,
goodbye Hollywood and hello Cleveland.
I didn't tell my girl I was leavin,
packed my bags, jumped in the Lincoln.
Suicide doors more to the meaning,
Four on the floor, three on the tree and,
I'm doin' speed on the 405 freeway,
Officer give a white boy some leeway.
Downtown with the he-say she-say,
Dont mean nothin cause the he-she's cliche.
Downtown where your dreams just decay,
$40 for a ? $20 for a BJ
But uptown they play my CD's
Girls wanna fuck me, boys wanna be me.
Who's Mickey, she said, and smiled in a special way.
When the neon lights shine down,
and there's no one else around,
whatcha gonna do when the clock strikes two,
and all the freaks come out,
On the ave....
When you're on the ave...
Now I'm gonna keep on creepin'
Latchkey kids gettin' high all weekend.
Lookin past the hood of my Fleetwood,
Jesus on the dash and the king on the speaker.
You can find me in the back of the theater like
Pee Wee Herman, holdin my weiner.
I ain't seen her since the milk went bad
and I didn't mean to beat her is what I told her dad..
Round town it's a stone cold fact,
Avalon got a gun in his lap.
Round town you can hear the clap,
when I take the stage, and shake my ass.
Out of town you can feel the heat,
when my bus pulls up and steals your freaks.
Out of town you can feel the noise,
come on girls, rock your boys!
When the neon lights shine down,
and there's no one else around,
whatcha gonna do when the clock strikes two,
and all the freaks come out,
On the ave...
When you're on the ave...
When the neon lights shine down,
and there's no one else around,
whatcha gonna do when the clock strikes two,
and all the freaks come out,
On the ave....
When you're on the ave...
Now I'm gonna speak on freedom,
do what you like fuck other people.
They tell you what you're supposed to do,
how about your girl do me, and you do you.
Now kick rocks before you get shot,
in the back of the head all you heard was POP
Goes to weasel cause the weasel smoke rock,
Hypodermic needle paramedic on the block.
Chop your body up, drop it off the dock,
why you gotta go and call the mothafuckin cops?
It's too late babe it could've been great,
but you had to go and stab me in the back with a steak knife.
Late night, waste away,
Chain smokin' til the drapes turn grey.
Cocaine helps me face the day,
and then the pills wash the pain away.
I won't be blamed for your mistakes,
burned at the stake,
for God's sake.
When the neon lights shine down,
and there's no one else around,
whatcha gonna do when the clock strikes two,
and all the freaks come out,
On the ave....
When you're on the ave...
When the neon lights shine down,
and there's no one else around,
whatcha gonna do when the clock strikes two,
and all the freaks come out,
On the ave....