- published: 01 Aug 2023
- views: 386167
'+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; })); }); -->
Katherine Houghton "Kate" Beckett is a fictional character of the ABC crime series Castle. She is portrayed by Stana Katic.
Katherine Houghton Beckett was born to Jim and Johanna Beckett and was raised in Manhattan.
Her grandfather was an amateur magician and frequently brought her to the famous Drake's Magic Shop after school in her early teens, resulting in her fascination of the art. She is also a comic book fan, having bought her first when she was 14 and envisioning herself as Elektra if she had a choice of what character to be. She was also raised by her father to be a baseball fan.
Beckett went to Stuyvesant High School, a public school in New York City reserved for highly gifted students; in "Food to Die For", she becomes reacquainted with her old high school friend, Madison Queller, who stated they shared 9th grade French and expressed her surprise that "the biggest scofflaw at Stuy became a cop". She then studied pre-law at Stanford University, dreaming of becoming the first female Chief Justice of the Supreme Court, before transferring to New York University after her mother's death to pursue a career in law enforcement. Between her junior and senior year of college, she spent a semester studying in Kiev, Ukraine.
Kate is a feminine given name. It may refer to:
Kate is a feminine given name and nickname. It is a short form of multiple feminine names, most notably Katherine but also Caitlin and others.
Two Pints of Lager and a Packet of Crisps is a British comedy television series sitcom that ran from 26 February 2001 to 24 May 2011 and starred Sheridan Smith, Will Mellor, Ralf Little, Natalie Casey, Kathryn Drysdale and Luke Gell. Created and written by Susan Nickson, it is set in the town of Runcorn in Cheshire, England, and originally revolves around the lives of five twenty-somethings. Little departed after the airing of the sixth series with Smith and Drysdale leaving following the airing of the eighth series. The ninth and final series had major changes with new main cast members and new writers.
The core cast have been augmented by various recurring characters throughout the series, including Beverly Callard, Lee Oakes, Hayley Bishop, Alison Mac, Thomas Nelstrop and Jonathon Dutton. The show was first broadcast in 2001 on BBC Two. The title was inspired by the 1980 hit single “Two Pints of Lager and a Packet of Crisps Please” by Splodgenessabounds. On 23 July 2011, it was confirmed that the series would not be returning due to BBC Three wanting to make room for new comedies and feeling that the series had come to a natural end following the departures of most of the main cast members.
Castle (2009–2016) ★ Then and Now 2023 [How They Changed] Castle 2009 Main Cast:- Nathan Fillion Ruben Santiago-Hudson Susan Sullivan Jon Huertas Tamala Jones Molly Quinn Penny Johnson Jerald Toks Olagundoye Seamus Dever Stana Katic Castle 2009 Cast Then and Now 2023, Castle 2009 Cast Before and After 2023, castle cast now, richard castle, castle (tv program), castle tv show, cast of castle, castle 2009 cast, stana katic castle, castle episode, castle 2009 cast then and now, castle tv series, my castle, castle (tv series), castle full series, castle full episodes, lego castle, nathan fillion castle, richard castle, stana katic, stana katic castle, stana katic interview, stana katic now, The Mentalist Cast Then and Now 2023, Kate Beckett Best of Beckett "Jealous over Castle Moments" ment...
*WATCH IN HD + EARPHONES* This video is a tribute to the extraordinary Katherine Beckett, forever my favorite tv character. I'll never love any other character as much as I love her. I love everything about her, I love that she's flawed, that she cares, she tries, she fails, she succeeds, she falls down, she gets up, she loves, she fights... All of this make her so relatable and so human. With this video, I also wanted to show how incredible Stana Katic is and if Kate Beckett is so extraordinary it's thanks to her. No one else could have played her. So thank you Stana for your incredible acting, for giving your heart and soul to the part and to the show and for making Kate Beckett so enjoyable to watch. You two made Mondays matter. And thank you MilMar for creating such a strong, real...
Castle's unexpected cancellation nearly left fans and the creative team with nothing but a cliffhanger. What the heck happened and why? #Castle #Ending #Explained Sudden death | 0:00 New direction | 1:23 Behind-the-scenes drama | 2:42 Hurt feelings | 3:33 The wrap-up | 4:21 New sheriff in town | 5:19 Did they have to? | 6:09 Flash forward | 7:26 Ratings dive | 8:40 Belt tightening | 9:49 Voiceover By: TK Dennis Read Full Article: https://www.looper.com/1098757/the-ending-of-castle-explained/
No copyright infringement intended.
Tribute to one of the most badass female characters ever! #castle #caskett #beckett #katebeckett
Castle & Beckett in Always (4x23). Music: "In My Veins" - Andrew Belle
*All rights belong to ABC From S04E23 of Castle; Entitled "Always" Warning: Contains scenes from "Always" which aired May 7, 2012 If you have not seen the episode yet, please do not watch! This scene breaks my heart, but they finally address what they've been skirting around since last season's finale! It is so wonderfully written and executed. Stana and Nathan deserve an Emmy for this! Synopsis: Castle finally tells Kate that he's been holding things from her. He's been intentionally keeping her from her mother's case. He tells her why! Memorable Quotes: "Four years, I've been right here. For years. Waiting for you to open your eyes and see that I'm right here!" Castle to Beckett "How the hell could you do this?" Beckett "Because I love you. But you already know that, don't you?...
Part Two Here - http://www.youtube.com/watch?v=I-Xz5qilaQ0&feature=relmfu The best clips of Beckett getting all jealous over her man "mmhmmm" June 7 at 02:35PM EDT by Wetpaint Entertainment Staff Get comfy, Castle fans, because this fan video with tons of examples of Beckett getting jealous of Castle clocks in at nearly 15 minutes. That's right, click play for almost 15 minutes of Caskett awesomeness! thanks wetpaint for featuring this video! all clips belong to abc and andrew marlowe.
I do not own any copy rights. Song is by Sia. Please check her out. She is an amazing artist. Video made by Lulugirlgo
*Warning This Video Contains Flirty Beckett, Kick-Ass Beckett, Jealous Beckett, Bitchy Beckett, Bossy Beckett, Sarcastic Beckett, Hilarious Beckett, Sexy Beckett, Naughty Beckett and FULL ON SASSY Beckett!! Well All the reason's we absolutely ADORE her character really. (played by Stana Katic) S1-7 // HD - // Sounds Best with Headphones. This video was actually inspired by another youtube vidder (MarianaProdz) who did the same song to a Sassy Regina (OUAT) Video which is AMAZING. It wasn't until I started putting this together I realised how Sassy Beckett actually is! She's Hilarious! Hope you's like it :) All Clips Belong to Andrew Marlowe and ABC.
After she’s poisoned, a ruthless criminal operative has less than 24 hours to exact revenge on her enemies and in the process forms an unexpected bond with the daughter of one of her past victims. There’s no time for mercy. Watch KATE, on Netflix September 10:https://www.netflix.com/title/80216200 SUBSCRIBE: http://bit.ly/29qBUt7 About Netflix: Netflix is the world's leading streaming entertainment service with over 209 million paid memberships in over 190 countries enjoying TV series, documentaries and feature films across a wide variety of genres and languages. Members can watch as much as they want, anytime, anywhere, on any internet-connected screen. Members can play, pause and resume watching, all without commercials or commitments. KATE | Official Trailer | Netflix https://youtub...
In this video, we are going to be playing Draw and Switch on Roblox. Janet and Kate are drawing using their own themes. ✔Subscribe to our channel: http://bit.ly/2nQC3gv ✔Follow Us on Facebook: https://www.facebook.com/janetandkate ✔Follow Us on Instagram: https://www.instagram.com/janetandkate ✔Follow Us on Twitter: https://www.twitter.com/janetandkate ✔Subscribe to Tad's channel: https://bit.ly/2Oy4Gjo ✔Our Roblox Star Code: TEAMJK ►Previous Video: https://youtu.be/EQKs4Dr7GxQ ►Play Draw and Switch on Roblox: https://www.roblox.com/games/17477960154 #JanetandKate #TeamJK #Roblox
In this video, we are going to be playing Chained Cars on Roblox. This is an obby where Janet and Kate will be driving cars that are chained together. ✔Subscribe to our channel: http://bit.ly/2nQC3gv ✔Follow Us on Facebook: https://www.facebook.com/janetandkate ✔Follow Us on Instagram: https://www.instagram.com/janetandkate ✔Follow Us on Twitter: https://www.twitter.com/janetandkate ✔Subscribe to Tad's channel: https://bit.ly/2Oy4Gjo ✔Our Roblox Star Code: TEAMJK ►Previous Video: https://youtu.be/us9V6XJZ2gE ►Play Chained Cars on Roblox: https://www.roblox.com/games/128520572013466 #JanetandKate #TeamJK #Roblox
This video is sponsored by Bilt Start earning points on your rent today! https://go.biltrewards.com/podcast-r/lolpodcast Subscribe To Our Other Channels! LOL Club: https://www.youtube.com/@LOLClubTv LOL Gaming: https://www.youtube.com/@LOL-MusicTv LOL Clips: youtube.com/@LOL-Podcast-Clips LOL Reacts: https://www.youtube.com/@LOLReactsShow Cash and Maverick: https://youtube.com/@Cashandmaverickbaker Cash and Katie: https://youtube.com/@cashandkate Kate Marie: https://youtube.com/@katemariess?si=b1M684rLgdoYQD19 Maverick and Kenzie: https://youtube.com/@MavAndKenzie Ky and Tie: https://www.youtube.com/@KyandTie Harper: https://www.youtube.com/@harperzilmer Listen To Our Podcast! Spotify: https://open.spotify.com/show/6E1u3kxII5CbbFR4VObax4 Apple: https://podcasts.apple.com/us/podcast/the...
Harper's video: https://youtu.be/EuwdWTOtp0c?si=gkwiH7Ii_yCjM1AZ Subscribe To Our Other Channels! LOL Podcast: https://www.youtube.com/@LOLPodcast-Show LOL Club: https://www.youtube.com/@LOLClubTv LOL Reacts: https://www.youtube.com/@LOL-MusicTv LOL clips: youtube.com/@LOL-Podcast-Clips LOL Bros: https://www.youtube.com/@LOLReactsShow Cash and Maverick: https://www.youtube.com/@Cashandmaverickbaker Cash and Kate: https://www.youtube.com/@cashandkate Maverick and Kenzie: https://youtube.com/@MavAndKenzie?si=E7Mh5MoUA0sQSRry Ky and Tie: https://www.youtube.com/@KyandTie Listen To Our Podcast! Spotify: https://open.spotify.com/show/6E1u3kxII5CbbFR4VObax4 Apple: https://podcasts.apple.com/us/podcast/the-lol-podcast/id1698051187 Check Out My Other Socials! Tiktok: https://www.tiktok.com/@k...
Marami ang kinikilig sa "magical" Hong Kong trip nina Shining Inheritance star Kate Valdez at Japanese personality na si Fumiya Sankai. Ano na nga ba ang real score sa pagitan ng dalawa? 24 Oras is GMA Network’s flagship newscast, anchored by Mel Tiangco, Vicky Morales and Emil Sumangil. It airs on GMA-7 Mondays to Fridays at 6:30 PM (PHL Time) and on weekends at 5:30 PM. For more videos from 24 Oras, visit http://www.gmanews.tv/24oras. #GMAIntegratedNews #KapusoStream Breaking news and stories from the Philippines and abroad: GMA Integrated News Portal: http://www.gmanews.tv Facebook: http://www.facebook.com/gmanews TikTok: https://www.tiktok.com/@gmanews Twitter: http://www.twitter.com/gmanews Instagram: http://www.instagram.com/gmanews GMA Network Kapuso programs on GMA Pinoy TV: h...
Watch as Louis is comforted by Mum during the annual Christmas 🎅 day service at Sandringham Also Princess Catherine is hugged and kissed by well wishers and given a sign "We love you Kate". Also watch as Catherine manges to greet so many people in the line on Christmas Day at Sandringham after attending the morning Service at Mary Magdalene Church on the grounds of Sandringham House Prince Louis and Prince George overload on Chocolate and cuddly toys. Watch as he nervously thanks well wishes in the crowd.
The worst gift Prince William gave Kate Middleton for Christmas. William revealed: I gave my wife binoculars once, she never let me forget it. It was at the very beginning of the infancy of their relationship. I think it was a big problem as it didn't go down well and To be honest I have no idea why I bought her the binoculars, at the time it seemed like a good idea. Now Kate often reminisces about the situation when teasing William.
NO SPEND JANUARY 2025 is here! What can you spend on and what do you pass on in January? It's the classic battle of needs vs wants. Join us this year! For my entire NO SPEND playlist, click here: https://www.youtube.com/watch?v=69nbkHwEsYo&list=PLVticj4vuyvGeMBAt469tPkic7qLAyoig Join this channel to support Kate Kaden: https://www.youtube.com/channel/UClhu-dkUv9icumrazpEOBkg/join What can you expect on this channel? I love talking about frugal living, budgeting, saving money ...and I like having fun doing it! I'm so glad you're here. Welcome the the family! Support the channel and get cozy: Grab a hoodie, mug or new KSquad tee! Thank you for your support! https://teespring.com/stores/kate-kaden-ksquad-gear Or Become a member of the channel! https://www.youtube.com/channel/UClhu-dkUv9...
Katherine Houghton "Kate" Beckett is a fictional character of the ABC crime series Castle. She is portrayed by Stana Katic.
Katherine Houghton Beckett was born to Jim and Johanna Beckett and was raised in Manhattan.
Her grandfather was an amateur magician and frequently brought her to the famous Drake's Magic Shop after school in her early teens, resulting in her fascination of the art. She is also a comic book fan, having bought her first when she was 14 and envisioning herself as Elektra if she had a choice of what character to be. She was also raised by her father to be a baseball fan.
Beckett went to Stuyvesant High School, a public school in New York City reserved for highly gifted students; in "Food to Die For", she becomes reacquainted with her old high school friend, Madison Queller, who stated they shared 9th grade French and expressed her surprise that "the biggest scofflaw at Stuy became a cop". She then studied pre-law at Stanford University, dreaming of becoming the first female Chief Justice of the Supreme Court, before transferring to New York University after her mother's death to pursue a career in law enforcement. Between her junior and senior year of college, she spent a semester studying in Kiev, Ukraine.