'+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; })); }); -->

Tantalum carbide

Tantalum carbides form a family of binary chemical compounds of tantalum and carbon with the empirical formula TaCx, where x usually varies between 0.4 and 1. They are extremely hard, brittle, refractory ceramic materials with metallic electrical conductivity. They appear as brown-gray powders which are usually processed by sintering. Being important cermet materials, tantalum carbides are commercially used in tool bits for cutting applications and are sometimes added to tungsten carbide alloys. The melting points of tantalum carbides peak at about 3880 °C depending on the purity and measurement conditions; this value is among the highest for binary compounds. Only tantalum hafnium carbide may have a slightly higher melting point of about 3942 °C, whereas the melting point of hafnium carbide is comparable to that of TaC.

Preparation

TaCx powders of desired composition are prepared by heating a mixture of tantalum and graphite powders in vacuum or inert gas atmosphere (argon). The heating is performed at temperature of about 2000 °C using a furnace or an arc-melting setup. An alternative technique is reduction of tantalum pentoxide by carbon in vacuum or hydrogen gas atmosphere at a temperature of 1500–1700 °C. This method was used to obtain tantalum carbide back in 1876, but it lacks control over the stoichiometry of the product.

CTA-102

In astronomy, CTA 102, also known by its B1950 coordinates as 2230+114 (QSR B2230+114) and its J2000 coordinates as J2232+1143 (QSO J2232+1143), is a quasar discovered in the early 1960s by a radio survey carried out by the California Institute of Technology. It has been observed by a large range of instruments since its discovery, including WMAP, EGRET, GALEX, VSOP and Parkes, and has been regularly imaged by the Very Long Baseline Array since 1995. It has also been detected in gamma rays, and a gamma-ray flare has been detected from it.

In 1963 Nikolai Kardashev proposed that the then-unidentified radio source could be evidence of a Type II or III extraterrestrial civilization on the Kardashev scale. Follow-up observations were announced in 1965 by Gennady Sholomitskii, who found that the object's radio emission was varying; a public announcement of these results caused a worldwide sensation. The idea that the emission was caused by a civilization was rejected when the radio source was later identified as one of the many varieties of a quasar.

Podcasts:

  • S8:EP1 | Is It Possible To Earn Money Doing Nothing? | Rina Hicks & Pius Muchiri | #CiS

    Contact Faida Investment Bank WhatsApp: (+254) 743 552 341 Call: (+254) 719 212 349 E-mail: oak@fib.co.ke https://oak.africa/ Head Office Address: Crawford Business Park, State House Rd, Nairobi Kenya. ----------------------------------------------------- Contact Nabo Capital Call: (+254) 709 902 700 Email: invest@nabocapital.com https://nabocapital.com/ Head Office Address: 5th Floor, International House, Mama Ngina Street, Nairobi ----------------------------------------------------- Thank you for your support by helping us create content. MPESA TILL (BUY GOODS) - 5236949 PAYPAL - Njau.richard@gmail.com CARD PAYMENTS - https://checkout.mookhpay.com/cta SEND WAVE - (+254) 0728-595-022 Don't forget to SUBSCRIBE - http://bit.ly/SubscribeToCTA -------------------------------------...

    published: 11 Nov 2024
  • CTA Train Operator Before Fatal Accident

    This video released by the CTA shows a now-fired train operator's actions in the moments before his train struck a woman on the Red Line recently on the South Side.

    published: 26 Jul 2019
  • FOX 32's Nate Rodgers goes undercover as smoking plagues CTA trains

    Smoking is prohibited on CTA buses, trains and within station premises, but riders continue to disregard the rule. Nate Rodgers goes undercover on the trains and catches passengers in the act. Subscribe to FOX 32 Chicago: https://www.youtube.com/fox32chicago?sub_confirmation=1 Watch FOX 32 Chicago Live: https://www.fox32chicago.com/live FOX 32 Chicago delivers breaking news, live events, investigations, politics, entertainment, business news and local stories from Chicago and across the nation. Watch more FOX 32 Chicago on YouTube: FOX 32 Headlines: https://www.youtube.com/playlist?list=PL2-nR6U1joOT92lWD_QLYoNijiDo9uYaP Good Day Chicago: https://www.youtube.com/playlist?list=PL2-nR6U1joORm02SSjflpEVzL0ydEqeFu Special reports and stories: https://www.youtube.com/playlist?list=PL2-nR6U...

    published: 08 Feb 2024
  • The Inspiring Rise Of Njugush (Full Interview)

    Welcome to our channel where we bring you the most inspiring stories of ordinary people achieving extraordinary things. In this video, we're going to tell you about the incredible rise of Njugush, the Kenyan comedian who went from being an unknown talent to a national icon. Thank you for your support in helping us create content. MPESA TILL (BUY GOODS) - 5236949 PAYPAL - Njau.richard@gmail.com CARD PAYMENTS - https://checkout.mookhpay.com/cta SEND WAVE - (+254) 0701-000-777 Don't forget to SUBSCRIBE - http://bit.ly/SubscribeToCTA

    published: 17 Jan 2023
  • CTA's Ride the Rails: Purple Line Real-time (2019) v1.1

    CTA's Ride the Rails Real-time Collection: https://www.youtube.com/playlist?list=PL0-sTc_CuqtURaOftjTXX5iRMCOasE1M9 CTA's Ride the Rails Time-lapse Collection: https://www.youtube.com/playlist?list=PL0-sTc_CuqtVbR2-3_NV8m4ls4_6p2qV3 Ever wonder what it would be like to see Chicago as if you were a CTA train operator? In 2014, the Chicago Transit Authority released its most popular video series, “Ride the Rails,” a collection of videos highlighting CTA’s eight rail lines, each seen from the perspective of the rail operator. Since its release, “Ride the Rails” has garnered nearly 3 million views worldwide. A lot has changed in five years: two new stations have been built (Washington-Wabash and Cermak-McCormick Place), two stations have been rebuilt (Wilson and 95th/Dan Ryan), and one stat...

    published: 18 Oct 2019
  • S8:EP2 | How Do I Start Making Money Without Doing Anything? | Rina Hicks & Pius Muchiri | #CiS

    Contact Faida Investment Bank WhatsApp: (+254) 743 552 341 Call: (+254) 719 212 349 E-mail: oak@fib.co.ke https://oak.africa/ Head Office Address: Crawford Business Park, State House Rd, Nairobi Kenya. ----------------------------------------------------- Contact Nabo Capital Call: (+254) 709 902 700 Email: invest@nabocapital.com https://nabocapital.com/ Head Office Address: 5th Floor, International House, Mama Ngina Street, Nairobi ----------------------------------------------------- Thank you for your support by helping us create content. MPESA TILL (BUY GOODS) - 5236949 PAYPAL - Njau.richard@gmail.com CARD PAYMENTS - https://checkout.mookhpay.com/cta SEND WAVE - (+254) 0728-595-022 Don't forget to SUBSCRIBE - http://bit.ly/SubscribeToCTA -------------------------------------...

    published: 11 Nov 2024
  • 1798. My Childhood Upbringing - Patricia Ithau #leadership #cta101

    Thank you for your support by helping us create content. MPESA TILL (BUY GOODS) - 5236949 PAYPAL - Njau.richard@gmail.com CARD PAYMENTS - https://checkout.mookhpay.com/cta SEND WAVE - (+254) 0728-595-022 Get the latest CTA Merchandise. Reach out to us here at (+254) 727 237102 (Nick - Merchandise Manager) Don't forget to SUBSCRIBE - http://bit.ly/SubscribeToCTA Patricia Ithau is a seasoned leader with over 30 years of experience in senior leadership roles, driving the growth and expansion of leading consumer brands across Eastern Africa. Her career spans prominent global companies, including Unilever, Diageo/East African Breweries Ltd, and L’Oréal. In addition to her executive leadership, Patricia serves on multiple boards, including ABSA Bank Kenya PLC, TradeMark East Africa Ltd, Jam...

    published: 19 Jan 2025
  • CTA HD 60fps: Chicago "L" Trains @ Tower 18 Interlocking on The Loop (2/8/19)

    READ: EDIT; Thanks for making this hit 3 million views! Before I see another comment about how slow CTA trains are in the loop, GO HERE: https://www.youtube.com/watch?v=2XwBSl15pwk Some rush hour action from one of the country's most famous railway interlocking junctions, located on the northwest corner of The Loop in downtown Chicago. Enjoy and stay tuned for more action =) The Loop (all stations): https://youtu.be/26ztyzT-Mco

    published: 09 Feb 2019
  • CTA Optimization | How to Avoid Poor Website Engagement: Test Your Calls to Action

    🤝 Need help embracing AI and automation assistance with content marketing to scale your business more easily and quickly? Schedule a one-to-call call with me now: https://calendly.com/cjclapp/online40 🙋🏾 Want some agency-level help at membership-level prices? Check out The Mighty 'High-Click' CTA Club: https://the-mighty-high-click-cta-club.mn.co 🆓 Free SEO Audit: https://onlinemarketingdone4you.com/free-seo-audit-report/ Unlocking High-Converting CTAs: Simple Testing Secrets In this video, discover the secrets to creating effective calls to action (CTAs) that truly convert. Learn why testing, not guessing, is the key to success, and follow our guide on establishing baseline metrics and implementing the 'one change' rule. Explore essential split tests, including timing, color, and form...

    published: 29 Jan 2025
  • Why Chicago still hasn't fixed the Loop

    If you want better transit in your city: https://forms.gle/CsfQuHABB5HNUmzv7 Stormy Kara's AMAZING video about Western + Ashland BRT: https://youtu.be/s7ep_4jumfw?si=2slt9tu-UDxtukDj Follow on instagram: https://www.instagram.com/theflyingmooseca/ I cannot understate how challenging this video was to make - and I'm sure I still missed a ton. #Chicago has a truly complex yet illustrious history, something reflected in the convoluted legacy of the city's #transit. Hopefully this overview of the Crosstown Expressway, Mid-City Transitway, and Circle Line helps shed some light on why Chicago's transit is the way it is today - and that you learnt a little bit more about what we have to do to build better transit. Huge thank you to Stormy Kara, Austin Busch, and Stephen E. Schlickman for helpi...

    published: 20 Jul 2024
S8:EP1 | Is It Possible To Earn Money Doing Nothing? | Rina Hicks & Pius Muchiri | #CiS
10:40

S8:EP1 | Is It Possible To Earn Money Doing Nothing? | Rina Hicks & Pius Muchiri | #CiS

  • Order:
  • Duration: 10:40
  • Uploaded Date: 11 Nov 2024
  • views: 67277
Contact Faida Investment Bank WhatsApp: (+254) 743 552 341 Call: (+254) 719 212 349 E-mail: oak@fib.co.ke https://oak.africa/ Head Office Address: Crawford Business Park, State House Rd, Nairobi Kenya. ----------------------------------------------------- Contact Nabo Capital Call: (+254) 709 902 700 Email: invest@nabocapital.com https://nabocapital.com/ Head Office Address: 5th Floor, International House, Mama Ngina Street, Nairobi ----------------------------------------------------- Thank you for your support by helping us create content. MPESA TILL (BUY GOODS) - 5236949 PAYPAL - Njau.richard@gmail.com CARD PAYMENTS - https://checkout.mookhpay.com/cta SEND WAVE - (+254) 0728-595-022 Don't forget to SUBSCRIBE - http://bit.ly/SubscribeToCTA ----------------------------------------------------- Welcome to another episode of Class in Session! Today, we’re exploring an intriguing question many of us have wondered about: Is it possible to earn money by doing absolutely nothing? Yes, you heard it right. This question might seem unrealistic, but in the world of finance and passive income, it’s worth exploring. Before diving deeper, let’s introduce our guests—two respected voices in finance: Rina Hicks and Pius Muchiri. Rina Hicks, the Operations Director at Faida Investment Bank, joins us with a wealth of experience. She’s not only a financial professional but also an author, financial coach, and passionate advocate for financial literacy. Rina’s commitment to helping people invest and grow their wealth is evident in her work, and she’s excited to share insights on the possibility of earning money passively. Alongside her, we have Pius Muchiri, the CEO of Nabo Capital. Pius describes his mission as one of creating wealth for others, with extensive experience in investment and wealth management across African markets. Together, they bring valuable expertise to this discussion. The reason for today’s conversation runs deep. As I’ve reflected on my own financial goals, I’ve realized that success for me is not only about fulfilling personal ambitions but also about financial stability—reaching a place where income flows in without needing constant, active involvement. To achieve this, I’ve invited Rina and Pius to discuss if it’s possible to generate income without direct work and, if so, how to approach this journey toward financial independence. Our experts answered with an encouraging “yes”—passive income is achievable. They pointed out that financial independence is indeed a journey, not an overnight success, and they themselves are on that path. Though they are not fully there yet, they’re working toward creating income streams that support them, even in their absence. In the upcoming session, we’ll dig into the first steps of this journey. For anyone interested in financial freedom, stay tuned; this series has the potential to change lives.
https://wn.com/S8_Ep1_|_Is_It_Possible_To_Earn_Money_Doing_Nothing_|_Rina_Hicks_Pius_Muchiri_|_Cis
CTA Train Operator Before Fatal Accident
0:38

CTA Train Operator Before Fatal Accident

  • Order:
  • Duration: 0:38
  • Uploaded Date: 26 Jul 2019
  • views: 5639150
This video released by the CTA shows a now-fired train operator's actions in the moments before his train struck a woman on the Red Line recently on the South Side.
https://wn.com/Cta_Train_Operator_Before_Fatal_Accident
FOX 32's Nate Rodgers goes undercover as smoking plagues CTA trains
2:44

FOX 32's Nate Rodgers goes undercover as smoking plagues CTA trains

  • Order:
  • Duration: 2:44
  • Uploaded Date: 08 Feb 2024
  • views: 18196
Smoking is prohibited on CTA buses, trains and within station premises, but riders continue to disregard the rule. Nate Rodgers goes undercover on the trains and catches passengers in the act. Subscribe to FOX 32 Chicago: https://www.youtube.com/fox32chicago?sub_confirmation=1 Watch FOX 32 Chicago Live: https://www.fox32chicago.com/live FOX 32 Chicago delivers breaking news, live events, investigations, politics, entertainment, business news and local stories from Chicago and across the nation. Watch more FOX 32 Chicago on YouTube: FOX 32 Headlines: https://www.youtube.com/playlist?list=PL2-nR6U1joOT92lWD_QLYoNijiDo9uYaP Good Day Chicago: https://www.youtube.com/playlist?list=PL2-nR6U1joORm02SSjflpEVzL0ydEqeFu Special reports and stories: https://www.youtube.com/playlist?list=PL2-nR6U1joOTGGgDx9B31HcT9IM60Al0- Download the FOX 32 Chicago News app: https://fox32chicago.onelink.me/KNQ9?pid=social&c=youtube&af_web_dp=https%3A%2F%2Fwww.fox32chicago.com%2Fapps Download the FOX 32 Chicago Weather app: https://www.fox32chicago.com/apps Follow FOX 32 Chicago on Facebook: https://www.facebook.com/Fox32Chicago/ Follow FOX 32 Chicago on Twitter: https://twitter.com/fox32news/ Follow FOX 32 Chicago on Instagram: https://www.instagram.com/fox32chicago/ Subscribe to the FOX 32 Chicago newsletter: https://www.fox32chicago.com/newsletters
https://wn.com/Fox_32's_Nate_Rodgers_Goes_Undercover_As_Smoking_Plagues_Cta_Trains
The Inspiring Rise Of Njugush (Full Interview)
6:06:46

The Inspiring Rise Of Njugush (Full Interview)

  • Order:
  • Duration: 6:06:46
  • Uploaded Date: 17 Jan 2023
  • views: 229071
Welcome to our channel where we bring you the most inspiring stories of ordinary people achieving extraordinary things. In this video, we're going to tell you about the incredible rise of Njugush, the Kenyan comedian who went from being an unknown talent to a national icon. Thank you for your support in helping us create content. MPESA TILL (BUY GOODS) - 5236949 PAYPAL - Njau.richard@gmail.com CARD PAYMENTS - https://checkout.mookhpay.com/cta SEND WAVE - (+254) 0701-000-777 Don't forget to SUBSCRIBE - http://bit.ly/SubscribeToCTA
https://wn.com/The_Inspiring_Rise_Of_Njugush_(Full_Interview)
CTA's Ride the Rails: Purple Line Real-time (2019) v1.1
1:55:47

CTA's Ride the Rails: Purple Line Real-time (2019) v1.1

  • Order:
  • Duration: 1:55:47
  • Uploaded Date: 18 Oct 2019
  • views: 495304
CTA's Ride the Rails Real-time Collection: https://www.youtube.com/playlist?list=PL0-sTc_CuqtURaOftjTXX5iRMCOasE1M9 CTA's Ride the Rails Time-lapse Collection: https://www.youtube.com/playlist?list=PL0-sTc_CuqtVbR2-3_NV8m4ls4_6p2qV3 Ever wonder what it would be like to see Chicago as if you were a CTA train operator? In 2014, the Chicago Transit Authority released its most popular video series, “Ride the Rails,” a collection of videos highlighting CTA’s eight rail lines, each seen from the perspective of the rail operator. Since its release, “Ride the Rails” has garnered nearly 3 million views worldwide. A lot has changed in five years: two new stations have been built (Washington-Wabash and Cermak-McCormick Place), two stations have been rebuilt (Wilson and 95th/Dan Ryan), and one station has been retired and demolished (Randolph/Wabash). For the series’ 5th Anniversary, CTA is releasing an update to “Ride the Rails,” which you can view in both real-time and time-lapse versions. All eight lines have been recaptured from the operator’s perspective, this time in stunning 4K video. The CTA recorded the ride at various times of the day, including sunrise and sunset, and morning and evening rush hours. You’ll even learn facts about the CTA system in the real-time version. So, hop aboard and enjoy the ride! v1.1 - corrected station signage
https://wn.com/Cta's_Ride_The_Rails_Purple_Line_Real_Time_(2019)_V1.1
S8:EP2 | How Do I Start Making Money Without Doing Anything? | Rina Hicks & Pius Muchiri | #CiS
13:54

S8:EP2 | How Do I Start Making Money Without Doing Anything? | Rina Hicks & Pius Muchiri | #CiS

  • Order:
  • Duration: 13:54
  • Uploaded Date: 11 Nov 2024
  • views: 47162
Contact Faida Investment Bank WhatsApp: (+254) 743 552 341 Call: (+254) 719 212 349 E-mail: oak@fib.co.ke https://oak.africa/ Head Office Address: Crawford Business Park, State House Rd, Nairobi Kenya. ----------------------------------------------------- Contact Nabo Capital Call: (+254) 709 902 700 Email: invest@nabocapital.com https://nabocapital.com/ Head Office Address: 5th Floor, International House, Mama Ngina Street, Nairobi ----------------------------------------------------- Thank you for your support by helping us create content. MPESA TILL (BUY GOODS) - 5236949 PAYPAL - Njau.richard@gmail.com CARD PAYMENTS - https://checkout.mookhpay.com/cta SEND WAVE - (+254) 0728-595-022 Don't forget to SUBSCRIBE - http://bit.ly/SubscribeToCTA ----------------------------------------------------- In this episode of Class in Session, we’re delving into the foundational steps for achieving financial independence through passive income, starting with the essential question: Where does one begin on this journey of earning money without active work? Our financial experts, Rina Hicks and Pius Muchiri, emphasize that while the dream of earning money while doing nothing is indeed valid, every journey toward financial independence must begin with a steady income. Whether it’s a regular salary, freelance payments, or earnings from the gig economy, income provides the groundwork for building wealth. Rina clarifies that “income” refers to any money that flows into your account, regardless of the source or amount. It could be from a traditional job, freelance work, or even a creative gig like music or design. The critical point is that income, no matter how modest, is essential. Once you have this income, the next step is to start putting a portion aside, which is where the discipline of saving and investing begins. As Rina shares, even small amounts saved over time can grow significantly, proving that financial growth isn’t necessarily about the size of each income stream but the consistency with which it is handled. Pius expands on this by discussing the importance of defining success as having both money and, crucially, time. For him, true wealth isn’t just about financial assets but also about freedom. He argues that time is far more valuable than money, as it grants you the freedom to live meaningfully and be present for loved ones. Wealth that consumes all your time, he notes, isn’t truly wealth. This broader view of success requires an early shift in mindset, where time management becomes just as vital as income generation. Rina reflects on a pivotal experience with a young client, who, despite limited means, consistently invested small amounts from his university loan over several years. By staying disciplined and committed, he accumulated a significant sum, underscoring the transformative power of consistent investment. Her client’s story serves as a reminder that true wealth-building is rooted in disciplined habits and a mindset shift. Starting the journey to financial independence requires income, time, and, above all, the mindset to prioritize and protect both.
https://wn.com/S8_Ep2_|_How_Do_I_Start_Making_Money_Without_Doing_Anything_|_Rina_Hicks_Pius_Muchiri_|_Cis
1798. My Childhood Upbringing - Patricia Ithau #leadership #cta101
31:47

1798. My Childhood Upbringing - Patricia Ithau #leadership #cta101

  • Order:
  • Duration: 31:47
  • Uploaded Date: 19 Jan 2025
  • views: 10946
Thank you for your support by helping us create content. MPESA TILL (BUY GOODS) - 5236949 PAYPAL - Njau.richard@gmail.com CARD PAYMENTS - https://checkout.mookhpay.com/cta SEND WAVE - (+254) 0728-595-022 Get the latest CTA Merchandise. Reach out to us here at (+254) 727 237102 (Nick - Merchandise Manager) Don't forget to SUBSCRIBE - http://bit.ly/SubscribeToCTA Patricia Ithau is a seasoned leader with over 30 years of experience in senior leadership roles, driving the growth and expansion of leading consumer brands across Eastern Africa. Her career spans prominent global companies, including Unilever, Diageo/East African Breweries Ltd, and L’Oréal. In addition to her executive leadership, Patricia serves on multiple boards, including ABSA Bank Kenya PLC, TradeMark East Africa Ltd, Jambojet Ltd, the British Chamber of Commerce and Industry, and Vivo Activewear Ltd. She is also a Trustee on the Boards of the Vodafone Foundation UK and the M-Pesa Foundation, showcasing her dedication to corporate governance and community development. Before her appointment as Group CEO and Executive Director at WPP Scangroup, Patricia was the Regional Director at the Stanford Institute for Innovation in Developing Economies (Seed). This initiative, part of the Stanford Graduate School of Business, focuses on addressing global poverty by supporting the growth of small and medium-sized enterprises in developing economies. Her work at Seed exemplifies her passion for fostering sustainable development, building globally connected leadership networks, and driving transformative change from Silicon Valley to sub-Saharan Africa. In recognition of her efforts in enterprise development, Patricia was awarded the prestigious Head of State Commendation (HSC) – Civilian Division in 2020. She holds an MBA in Strategic Management from the United States International University-Africa and a Bachelor of Commerce degree from the University of Nairobi. Additionally, Patricia has completed advanced leadership programs, including the Advanced Management Program at Strathmore Business School/IESE Business School, Barcelona, the General Management Program at INSEAD – CEDEP, and a Certificate Program in Scenario Planning at Saïd Business School, University of Oxford. As an accredited executive coach and certified Emotional Intelligence practitioner, Patricia is committed to fostering holistic leadership and organizational transformation. She works closely with business leaders to drive growth, resilience, and innovation. Her dedication to creating opportunities that improve lives and her extensive expertise in leadership development make her a highly respected figure in the business landscape.
https://wn.com/1798._My_Childhood_Upbringing_Patricia_Ithau_Leadership_Cta101
CTA HD 60fps: Chicago "L" Trains @ Tower 18 Interlocking on The Loop (2/8/19)
18:00

CTA HD 60fps: Chicago "L" Trains @ Tower 18 Interlocking on The Loop (2/8/19)

  • Order:
  • Duration: 18:00
  • Uploaded Date: 09 Feb 2019
  • views: 3446529
READ: EDIT; Thanks for making this hit 3 million views! Before I see another comment about how slow CTA trains are in the loop, GO HERE: https://www.youtube.com/watch?v=2XwBSl15pwk Some rush hour action from one of the country's most famous railway interlocking junctions, located on the northwest corner of The Loop in downtown Chicago. Enjoy and stay tuned for more action =) The Loop (all stations): https://youtu.be/26ztyzT-Mco
https://wn.com/Cta_Hd_60Fps_Chicago_L_Trains_Tower_18_Interlocking_On_The_Loop_(2_8_19)
CTA Optimization | How to Avoid Poor Website Engagement: Test Your Calls to Action
8:29

CTA Optimization | How to Avoid Poor Website Engagement: Test Your Calls to Action

  • Order:
  • Duration: 8:29
  • Uploaded Date: 29 Jan 2025
  • views: 8
🤝 Need help embracing AI and automation assistance with content marketing to scale your business more easily and quickly? Schedule a one-to-call call with me now: https://calendly.com/cjclapp/online40 🙋🏾 Want some agency-level help at membership-level prices? Check out The Mighty 'High-Click' CTA Club: https://the-mighty-high-click-cta-club.mn.co 🆓 Free SEO Audit: https://onlinemarketingdone4you.com/free-seo-audit-report/ Unlocking High-Converting CTAs: Simple Testing Secrets In this video, discover the secrets to creating effective calls to action (CTAs) that truly convert. Learn why testing, not guessing, is the key to success, and follow our guide on establishing baseline metrics and implementing the 'one change' rule. Explore essential split tests, including timing, color, and format variations, to identify what works best for your audience. Remember, consistent and targeted testing leads to micro wins and prevents regression. Join us in the next episode for more pro tips to drive growth through optimized CTAs. #calltoaction #cta101 #conversionrateoptimization 00:00 Introduction: The Secret to Effective Calls to Action 00:00 The Importance of Testing and Measuring 00:24 #1 Establish Baseline Metrics 01:09 #2 Use the 'One Change' Rule 02:05 3 Essential Split Tests for CTA Optimization 02:15 Split Test #1: The 'Too Soon' Timing Test 04:56 Split Test #2: The 'Too Plain' Color Test 06:01 Split Test #3: The 'Too Many' Test 07:40 Conclusion and Next Steps Affiliate links/recommendations: CTA Creation Tool [ConvertBox]: https://onlinemarketingdone4you.com/go/convertbox/ ------------------------------- Disclosure: Affiliate marketing is an additional way for agency content creators to generate revenue (by linking to items we recommend and/or use). Note that some links in my video descriptions may include affiliate links, and at no extra charge, I may earn a commission if you make a purchase after clicking them. -------------------------------
https://wn.com/Cta_Optimization_|_How_To_Avoid_Poor_Website_Engagement_Test_Your_Calls_To_Action
Why Chicago still hasn't fixed the Loop
24:35

Why Chicago still hasn't fixed the Loop

  • Order:
  • Duration: 24:35
  • Uploaded Date: 20 Jul 2024
  • views: 560781
If you want better transit in your city: https://forms.gle/CsfQuHABB5HNUmzv7 Stormy Kara's AMAZING video about Western + Ashland BRT: https://youtu.be/s7ep_4jumfw?si=2slt9tu-UDxtukDj Follow on instagram: https://www.instagram.com/theflyingmooseca/ I cannot understate how challenging this video was to make - and I'm sure I still missed a ton. #Chicago has a truly complex yet illustrious history, something reflected in the convoluted legacy of the city's #transit. Hopefully this overview of the Crosstown Expressway, Mid-City Transitway, and Circle Line helps shed some light on why Chicago's transit is the way it is today - and that you learnt a little bit more about what we have to do to build better transit. Huge thank you to Stormy Kara, Austin Busch, and Stephen E. Schlickman for helping out. Music from epidemic sound: https://share.epidemicsound.com/umc748 (affiliate link) 00:00 What's wrong 02:25 Crosstown Expressway 08:03 Mid-City Transitway 14:50 Circle Line 22:25 I need your help
https://wn.com/Why_Chicago_Still_Hasn't_Fixed_The_Loop
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • S8:EP1 | Is It Possible To Earn Money Doing Nothing? | Rina Hicks & Pius Muchiri | #CiS
    10:40
    S8:EP1 | Is It Possible To Earn Money Doing Nothing? | Rina Hicks & Pius Muchiri | #CiSremove from playlist
  • CTA Train Operator Before Fatal Accident
    0:38
    CTA Train Operator Before Fatal Accidentremove from playlist
  • FOX 32's Nate Rodgers goes undercover as smoking plagues CTA trains
    2:44
    FOX 32's Nate Rodgers goes undercover as smoking plagues CTA trainsremove from playlist
  • The Inspiring Rise Of Njugush (Full Interview)
    6:06:46
    The Inspiring Rise Of Njugush (Full Interview)remove from playlist
  • CTA's Ride the Rails: Purple Line Real-time (2019) v1.1
    1:55:47
    CTA's Ride the Rails: Purple Line Real-time (2019) v1.1remove from playlist
  • S8:EP2 | How Do I Start Making Money Without Doing Anything? | Rina Hicks & Pius Muchiri | #CiS
    13:54
    S8:EP2 | How Do I Start Making Money Without Doing Anything? | Rina Hicks & Pius Muchiri | #CiSremove from playlist
  • 1798. My Childhood Upbringing - Patricia Ithau #leadership #cta101
    31:47
    1798. My Childhood Upbringing - Patricia Ithau #leadership #cta101remove from playlist
  • CTA HD 60fps: Chicago
    18:00
    CTA HD 60fps: Chicago "L" Trains @ Tower 18 Interlocking on The Loop (2/8/19)remove from playlist
  • CTA Optimization | How to Avoid Poor Website Engagement: Test Your Calls to Action
    8:29
    CTA Optimization | How to Avoid Poor Website Engagement: Test Your Calls to Actionremove from playlist
  • Why Chicago still hasn't fixed the Loop
    24:35
    Why Chicago still hasn't fixed the Loopremove from playlist
PLAYLIST TIME:

S8:EP1 | Is It Possible To Earn Money Doing Nothing? | Rina Hicks & Pius Muchiri | #CiS

Contact Faida Investment Bank WhatsApp: (+254) 743 552 341 Call: (+254) 719 212 349 E-mail: oak@fib.co.ke https://oak.africa/ Head Office Address: Crawford Business Park, State House Rd, Nairobi Kenya. ----------------------------------------------------- Contact Nabo Capital Call: (+254) 709 902 700 Email: invest@nabocapital.com https://nabocapital.com/ Head Office Address: 5th Floor, International House, Mama Ngina Street, Nairobi ----------------------------------------------------- Thank you for your support by helping us create content. MPESA TILL (BUY GOODS) - 5236949 PAYPAL - Njau.richard@gmail.com CARD PAYMENTS - https://checkout.mookhpay.com/cta SEND WAVE - (+254) 0728-595-022 Don't forget to SUBSCRIBE - http://bit.ly/SubscribeToCTA ----------------------------------------------------- Welcome to another episode of Class in Session! Today, we’re exploring an intriguing question many of us have wondered about: Is it possible to earn money by doing absolutely nothing? Yes, you heard it right. This question might seem unrealistic, but in the world of finance and passive income, it’s worth exploring. Before diving deeper, let’s introduce our guests—two respected voices in finance: Rina Hicks and Pius Muchiri. Rina Hicks, the Operations Director at Faida Investment Bank, joins us with a wealth of experience. She’s not only a financial professional but also an author, financial coach, and passionate advocate for financial literacy. Rina’s commitment to helping people invest and grow their wealth is evident in her work, and she’s excited to share insights on the possibility of earning money passively. Alongside her, we have Pius Muchiri, the CEO of Nabo Capital. Pius describes his mission as one of creating wealth for others, with extensive experience in investment and wealth management across African markets. Together, they bring valuable expertise to this discussion. The reason for today’s conversation runs deep. As I’ve reflected on my own financial goals, I’ve realized that success for me is not only about fulfilling personal ambitions but also about financial stability—reaching a place where income flows in without needing constant, active involvement. To achieve this, I’ve invited Rina and Pius to discuss if it’s possible to generate income without direct work and, if so, how to approach this journey toward financial independence. Our experts answered with an encouraging “yes”—passive income is achievable. They pointed out that financial independence is indeed a journey, not an overnight success, and they themselves are on that path. Though they are not fully there yet, they’re working toward creating income streams that support them, even in their absence. In the upcoming session, we’ll dig into the first steps of this journey. For anyone interested in financial freedom, stay tuned; this series has the potential to change lives.
10:40
S8:EP1 | Is It Possible To Earn Money Doing Nothing? | Rina Hicks & Pius Muchiri | #CiS
Contact Faida Investment Bank WhatsApp: (+254) 743 552 341 Call: (+254) 719 212 349 E-mail...
published: 11 Nov 2024
Play in Full Screen
0:38
CTA Train Operator Before Fatal Accident
This video released by the CTA shows a now-fired train operator's actions in the moments b...
published: 26 Jul 2019
Play in Full Screen
2:44
FOX 32's Nate Rodgers goes undercover as smoking plagues CTA trains
Smoking is prohibited on CTA buses, trains and within station premises, but riders continu...
published: 08 Feb 2024
Play in Full Screen
6:06:46
The Inspiring Rise Of Njugush (Full Interview)
Welcome to our channel where we bring you the most inspiring stories of ordinary people ac...
published: 17 Jan 2023
Play in Full Screen
1:55:47
CTA's Ride the Rails: Purple Line Real-time (2019) v1.1
CTA's Ride the Rails Real-time Collection: https://www.youtube.com/playlist?list=PL0-sTc_C...
published: 18 Oct 2019
Play in Full Screen
13:54
S8:EP2 | How Do I Start Making Money Without Doing Anything? | Rina Hicks & Pius Muchiri | #CiS
Contact Faida Investment Bank WhatsApp: (+254) 743 552 341 Call: (+254) 719 212 349 E-mail...
published: 11 Nov 2024
Play in Full Screen
31:47
1798. My Childhood Upbringing - Patricia Ithau #leadership #cta101
Thank you for your support by helping us create content. MPESA TILL (BUY GOODS) - 5236949...
published: 19 Jan 2025
Play in Full Screen
18:00
CTA HD 60fps: Chicago "L" Trains @ Tower 18 Interlocking on The Loop (2/8/19)
READ: EDIT; Thanks for making this hit 3 million views! Before I see another comment about...
published: 09 Feb 2019
Play in Full Screen
8:29
CTA Optimization | How to Avoid Poor Website Engagement: Test Your Calls to Action
🤝 Need help embracing AI and automation assistance with content marketing to scale your bu...
published: 29 Jan 2025
Play in Full Screen
24:35
Why Chicago still hasn't fixed the Loop
If you want better transit in your city: https://forms.gle/CsfQuHABB5HNUmzv7 Stormy Kara's...
published: 20 Jul 2024
Play in Full Screen
'); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->

Latest News for: cta

Edit

EJME (Portugal) Aircraft Management, Lda - suspension of licence (CTA - Canadian Transportation Agency)

Public Technologies 02 May 2025
The Licensee will cease to meet the requirement to have the prescribed liability insurance coverage under subparagraph 73(1)(a)(iii) of the Canada Transportation Act, SC 1996, c 10 (CTA), unless the prescribed liability insurance coverage is renewed.
Edit

Sanford Medical Center carrying on business as Sanford AirMe - suspension of licence (CTA - Canadian Transportation Agency)

Public Technologies 02 May 2025
The Licensee will cease to meet the requirement to have the prescribed liability insurance coverage under subparagraph 73(1)(a)(iii) of the Canada Transportation Act, SC 1996, c 10 (CTA), unless the prescribed liability insurance coverage is renewed.
Edit

CTA denies Schaeffler's claim for additional P2.5-M tax refund

Manila Bulletin 02 May 2025
The Court of Tax Appeals (CTA) has denied the petition of Schaeffler Philippines, Inc ... The firm then filed a petition for review before the CTA on Oct ... In resolving the issue, the CTA sided with the BIR.
Edit

Aer Lingus Limited - Enforcement Action (CTA - Canadian Transportation Agency)

Public Technologies 02 May 2025
) Contravention ... Date of Issuance. Thursday, May 1, 2025. Penalty. Monetary penalty. $2,500 ... Disclaimer. CTA - Canadian Transportation Agency published this content on May 01, 2025, and is solely responsible for the information contained herein ... (noodl.
Edit

250430-CTA-TRAIN-AA.jpg

The Pantagraph 01 May 2025
A Chicago Transit Authority Red Line train heads south from the Addison station on Chicago’s north side ... .
Edit

CTA announces Volume-Related Composite Price Indices for Crop Year 2025–2026 for CN and CPKC2025-04-30 (CTA - Canadian Transportation Agency)

Public Technologies 30 Apr 2025
As part of the process of determining the annual VRCPI, the CTA examines and verifies detailed railway submissions ... For more information on the CTA's maximum revenue entitlement determinations since 2000, please see Western Grain ... media@otc-cta.gc.ca.
Edit

Viz.ai Launches Viz 3D CTA™ to Deliver Enhanced Imaging and Accelerate Clinical Decision-Making

Business Wire 30 Apr 2025
SAN FRANCISCO--(BUSINESS WIRE)-- #ai--Viz.ai, the leader in AI-powered disease detection and ...
Edit

3122999 MANITOBA LTD. carrying on business as Cranberry Air - suspension of licence (CTA - Canadian Transportation Agency)

Public Technologies 30 Apr 2025
... of paragraph 61(a) of the CTA continue to be met ... CTA - Canadian Transportation Agency published this content on April 29, 2025, and is solely responsible for the information contained herein.
Edit

CTA announces Volume-Related Composite Price Indices for Crop Year 2025-2026 for CN and CPKC Français

Canada Newswire 30 Apr 2025
As part of the process of determining the annual VRCPI, the CTA examines and verifies detailed railway submissions. The VRCPI will be applied when the CTA makes its Maximum Revenue Entitlement determinations by , for the 2025–2026 crop year.
Edit

VIA Rail Canada Inc. - Certificate of Fitness (CoF) 97012‑7 (CTA - Canadian Transportation Agency)

Public Technologies 30 Apr 2025
... subsection 93.1(1) of the Canada Transportation Act (CTA) ... CTA - Canadian Transportation Agency published this content on April 29, 2025, and is solely responsible for the information contained herein.
Edit

Canadian National Railway Company - 2025-2026 Crop Year Cost of Capital Rate for the Transportation of Western Grain (CTA - Canadian Transportation Agency)

Public Technologies 30 Apr 2025
) April 29, 2025 ... Case number.. 25-13631 ... The resulting deemed capital structure is contained in Appendix B ... CTA - Canadian Transportation Agency published this content on April 29, 2025, and is solely responsible for the information contained herein.
×