- published: 04 Dec 2024
- views: 6101
'+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; })); }); -->
PS, P.S., ps, and other variants may refer to:
POS, Pos or PoS may refer to:
In Mahayana Buddhism, bodhisattva is the Sanskrit term for anyone who, motivated by great compassion, has generated bodhicitta, which is a spontaneous wish to attain buddhahood for the benefit of all sentient beings. Bodhisattvas are a popular subject in Buddhist art.
In early Indian Buddhism, the term bodhisattva was primarily used to refer specifically to Gautama Buddha in his former life. The Jataka tales, which are the stories of the Buddha's lives, depict the various attempts of the bodhisattva to embrace qualities like self-sacrifice and morality.
From this Jataka tales, Bodhisattva originally meant the Buddhism practitioner of austerities that surpassed Śrāvakayana and Pratyekabuddhayana by far and completed Bodhisattvayana. Mount Potalaka, for example, is one of Bodhisattvayana. The name for practitioners who do not yet reach Bodhisattvayana was not fixed, but the terms Śrāvaka-Bodhisattva (聲聞菩薩) or Pratyekabuddha-Bodhisattva (縁覚菩薩) already appear in Āgama which is sutras of early Indian Buddhism.
The term "marketing-mix" was first coined by Neil Borden, the president of the American Marketing Association in 1953. It is still used today to make important decisions that lead to the execution of a marketing plan. The various approaches that are used have evolved over time, especially with the increased use of technology.
The marketing mix is a business tool used in marketing and by marketers. The marketing mix is often crucial when determining a product or brand's offer, and is often associated with the four Ps: price, product, promotion, and place. In service marketing, however, the four Ps are expanded to the seven Ps or Seven Ps to address the different nature of services.
In the 1990s, the concept of four C's was introduced as a more customer-driven replacement of four P's. There are two theories based on four Cs: Lauterborn's four Cs (consumer, cost, communication, convenience), and Shimizu's four Cs (commodity, cost, communication, channel).
In 2012, a new four P's theory was proposed with people, processes, programs, and performance.
p.s. is a 2004 drama film directed by Dylan Kidd. The screenplay by Kidd and Helen Schulman is based on Schulman's 2001 novel p.s. The film stars Laura Linney and Topher Grace.
Thirty-nine-year old divorcée Louise Harrington (Linney) works in the admissions office at Columbia University School of the Arts. She is unnerved when she receives an application from F. Scott Feinstadt (Grace), the same name of her high school sweetheart who was killed in a car crash, and calls the student to arrange an interview. His appearance, mannerisms, and painting style closely resemble those of her former love, and she begins to suspect the young artist may be the reincarnation of her old flame. Hours after meeting, the two embark upon an affair. Also complicating Louise's life are her relationship with her ex-husband Peter (Gabriel Byrne), who confesses he is learning to cope with a sex addiction that, unknown to her, plagued their marriage; her ne'er-do-well brother Sammy (Paul Rudd), who is favored by their mother Ellie (Lois Smith) despite his shortcomings; and her best friend Missy (Marcia Gay Harden), who stole the original Scott from Louise before his death and seems intent on doing the same with the contemporary version.
"P.S." is a mini episode of the seventh series of Doctor Who, written by Chris Chibnall. Set after the departure of Amy Pond and Rory Williams in "The Angels Take Manhattan", it depicts a letter that Rory sent to his father Brian explaining why he and Amy are not returning. This episode was dubbed "the scene that was never shot", as it was released in complete storyboard drawings.
The final scene from "The Power of Three" is shown, before the titles.
Afterwards, in complete drawing format, Brian is shown watering the plants, when there is a knock at the door. A man, Anthony, from New York, hands Brian a letter. Anthony tells Brian that he'll wait indoors until he has read it.
Brian sits down and reads the letter, which is from his son Rory. It explains that Brian will never be able to see him or Amy again, and he apologises. Rory also explains that the person who delivered the letter is Brian's grandson, Anthony Brian Williams, whom Amy and Rory adopted in 1946.
After Brian reads the letter, he walks out to Anthony, who offers a handshake. The two then embrace in a hug as the episode closes.
What are the best PS5 Pro Enhanced games? Aaron's here with a breakdown of the top 10 games that benefit the most from the Pro. --- 00:00 - The Best PS5 Pro Enhanced Games 00:17 - Kayak VR Mirage 00:40 - The Last Of Us Part 2 Remastered 01:39 - Dead Island 2 02:28 - The Crew Motorfest 03:23 - Gran Turismo 7 04:08 - Final Fantasy VII Rebirth 05:03 - God of War Ragnarok 05:48 - Horizon Forbidden West 06:32 - Lords of the Fallen 07:24 - No Man's Sky 08:28 - Spider-Man 2 09:30 - What is your favourite PS5 Pro game? #ps5 #gaming #playstation5 For more information, visit: http://www.pushsquare.com Twitter: http://www.twitter.com/pushsquare Facebook: http://www.facebook.com/pushsquare
The Sony PlayStation TV was a console version of the PS Vita and for $100 it was pretty cool.
Unboxing the upcoming PlayStation Portal handheld console for the PS5. Gifted by PlayStation AD #playstation #ps5 #playstationportal #unboxing
he PlayStation Classic is a dedicated video game console by Sony Interactive Entertainment that emulates games originally released on its 1994 PlayStation console. The PlayStation Classic received generally negative reviews from critics overall, with criticism being directed at the game line up, lack of popular titles, the use of PAL versions for certain titles, the use of the original controller, which lacked analog sticks, and the $100 price tag. ___ Music: Dark Hollow - Spyro the Dragon [OST] https://youtu.be/JhqNfvJLEss ___
You can play PlayStation 5 Games on this portable little device! Yes, this is the all new official PlayStation Portal and you can play any installed Playstation game right on this! You get the Dual Sense controller with haptics, lights, and even the fun adaptive triggers! There’s this 8” touchscreen, you get Dual speaker setup with a headphone jack, and you even get the trackpad right on the screen. Plus is super lightweight! You obviously need to connect this to your PlayStation to remotely play games with PS remote play, because this is basically a streaming device. But you get like 5-6 hours of battery backup as well. Subscribe for more amazing tech videos like this one.
I took the PlayStation Portal to Disneyland Paris, and while there tested the public wifi connection to see how it would work #ps5 #playstation #playstationportal #gaming #review
Subscribe here! - http://bit.ly/GameCrossSubscribe Sources- Intro - 0:00 PS Plus December Games Out Now - 1:07 https://blog.playstation.com/2024/11/27/playstation-plus-monthly-games-for-december-it-takes-two-aliens-dark-descent-temtem/ New PS+ Game Trial - 3:34 https://store.playstation.com/en-us/product/UP4133-PPSA04452_00-SPACEMARINESII00 Kingdom Come Deliverance 2 Release Date Update - 5:27 https://www.gematsu.com/2024/12/kingdom-come-deliverance-ii-release-date-moved-up-to-february-4-2025 #ps4 #ps5 #playstation
Most Influential Gaming Handhelds of All time (For Me)
Sueco - POS [Music Video] Stream/Download: https://sueco.lnk.to/POSID Get tickets to WASTED SPACE WORLD TOUR: https://sueco.com/tour Director: Nas Bogado Lyrics: you’re a piece of shit no one cares if you go missing you could jump right off a bridge and the world would not be different cause you’re just a waste of space no one likes you anyway fuck your therapy you’ll never be okay SHUT THE FUCK UP voice in my head is my own worst critic maybe it’s a product of my bad decisions woke up face down in the damn kitchen 2 shots 2 many past my limit happiness seems so far away but it get closer off the chardonnay tryna make sense can’t concentrate with a voice in my brain screaming every day you’re a piece of shit no one cares if you go missing you could jump right off a bridge and the wor...
Sueco - POS [Official Audio] Stream/Download: https://sueco.lnk.to/POSID Get tickets to WASTED SPACE WORLD TOUR: https://sueco.com/tour Lyrics: you’re a piece of shit no one cares if you go missing you could jump right off a bridge and the world would not be different cause you’re just a waste of space no one likes you anyway fuck your therapy you’ll never be okay SHUT THE FUCK UP voice in my head is my own worst critic maybe it’s a product of my bad decisions woke up face down in the damn kitchen 2 shots 2 many past my limit happiness seems so far away but it get closer off the chardonnay tryna make sense can’t concentrate with a voice in my brain screaming every day you’re a piece of shit no one cares if you go missing you could jump right off a bridge and the world would not be di...
Thanks for watching. We hope you enjoyed it. And please subscribe to our channel for more videos. Stream/Download: https://sueco.lnk.to/POSID Sueco: http://tiktok.com/@sueco http://instagram.com/suecothechild http://twitter.com/suecothechild http://facebook.com/suecomusic http://soundcloud.com/sueco Lyrics: you’re a piece of shit no one cares if you go missing you could jump right off a bridge and the world would not be different cause you’re just a waste of space no one likes you anyway fuck your therapy you’ll never be okay SHUT THE FUCK UP voice in my head is my own worst critic maybe it’s a product of my bad decisions woke up face down in the damn kitchen 2 shots 2 many past my limit happiness seems so far away but it get closer off the chardonnay tryna make sense can’t concentra...
What Is POS Software and Why Do Retailers Need It? ✅ FREE Shopify Trial ► https://bit.ly/40lBED1 Watch this video to find out! SUBSCRIBE to @learnwithshopify to get the knowledge you need to start and grow your online business: https://bit.ly/3vHxSYi -- FREE TRIAL -- Build your home based business using a FREE trial of Shopify , one platform with all the ecommerce features you need to start, run, and grow your business. ►https://bit.ly/40lBED1 -- FREE COURSE FIRST DAY TO FIRST SALE -- ► Sign up here: https://bit.ly/40phjwL -- DOWNLOAD FREE TEMPLATES -- ► List of Business Ideas https://bit.ly/3KOBD4O ► Video Ad Strategy Template https://bit.ly/3omNpvA ► Brand Positioning Analysis https://bit.ly/3H0GoXL ► Value Proposition Template https://bit.ly/43ScIG2 ► Creative Brief for Product P...
Mobile Point of Sale #Loyverse Search our facebook page for order Potinskie eservices
A display unit to show the billing A keyboard/touchscreen device to select products and enter data Barcode scanner to scan billed objects A Printer to print the receipt Cash register – for storage of cash obtained during sales A software interface to complete the process
Get yourself a POS that works for your business needs 🙌 Read more here: https://squ.re/3OBvN9D #PoweredBySquare #Square #SmallBusiness #Business #Entrepreneurship Subscribe to our channel for the latest tips, recommendations, and resources to start, run, and grow your business: https://www.youtube.com/c/SquareAustralia Connect with us: Instagram: https://www.instagram.com/squareau/ Twitter: https://twitter.com/SquareAU Facebook: https://www.facebook.com/squareaustralia TikTok: https://www.tiktok.com/@square.au LinkedIn: https://www.linkedin.com/company/joinsquare/ Web: https://squareup.com/au/en At Square, we're so much more than the little white card reader. We help businesses of all sizes start, run, and grow every day. Whether it's the food truck establishing a brick-and-mortar re...
KRIDAR M2 Android Retail POS System Test with POS Software APK
#bansospkhdanbpnt #pkhhariini #tahap3 KAGET! KPM PKH POS CAIR 4,8 JUTA, BEGINI PENJELASANNYA. Tonton Videonya sampai akhir dan jangan di skipp biar tidak salah paham. kalau video ini bermanfaat silahkan like dan comment & subscribe dan aktifkan loncengnya. @pkhtariksidoarjo #pengumumanpenting #pkhhariini #pkh #infopkhhariini #pkhbpnthariini #pkhtahap32024kapancair #infopkhbpnthariini #pkhtahap3kapancair #pkhmeijunikapancair #bpnt #bpnthariini #infobpnthariini #bpntmei2024kapancair #bpntmeikapancair #bpnttahap4kapancair #diarybansos #diarybansoshariini #infodiarybansos #diarybansosterbaru #diarypkh #diarypkhhariini #diarypkhterbaru #infodiarypkh #bltmrp #bltmitigasiresikopangankapancair #bltmrpkapancair #pip #pip2024 #pip2024kapancair #pengumumanpentingbagikpmpkhdanbpnt pkh hari ...
PS, P.S., ps, and other variants may refer to:
My big sister is best of all sisters in the world.
She says enjoying of the life is the main thing.
I agree with her.
She's standing by me when I've got hard times,
I like about her precense.
Even if I fight with her sometimes it's pretty easy to make friends.
I'm sorry about all, I make apology.
I contess that I was wrong.
You have your reasons to get angry to me,
but if you won't be I'm asking you to be my friend.
My big sister is the foolest, dummest girl I've ever seen.
She is so selfish, irritating, don't you see what I mean.
She is a target of my hate 'n' hate is growing every day.
I will get rid of her 'n' price won't matter, I will find the way.