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

Podcasts:

  • Parusa ng Republic Act No. (RA) 9262 / Anti-VAWC Law / Tagalog Version

    Ano ba possibleng penalty ng akusado sa kasong Republic Act No. (RA) 9262 or Anti-VAWC Act of 2004? Ito ang topic sa video na ito. 1) Playlist - RA 9262 / Anti-VAWC Law - https://www.youtube.com/playlist?list=PLjsTsqbrwGR7dQvjNA0DCYEMyAp-C7Wwz Please support the channel by clicking the link before you checkout from Shopee: 1) Veco Journal Notebook 6x8.5inches - https://shp.ee/j7dnrzc 2) Veco Journal Notebook 7x10inches - https://shp.ee/w9ziy4a 3) Platinum Preppy (Fine) - https://shp.ee/mxdgmdi 4) Pilot Fountain Pen Ink (30ml) - https://shp.ee/uif2euu This video is NOT sponsored. Some product links are affiliate links which means if you buy anything I'll receive a small commission. Follow me on: 1) Facebook: @baconpalacio 2) Instagram: @baconpalacio If you like my content ple...

    published: 02 May 2020
  • Intro to Philippine Republic Act 8371 / IPRA / Batas sa Pilipinas

    Indigenous Peoples' Rights Act of 1997 (IPRA) Para sa mga katutubo IPs/ICCs © Photos by Social Community Official owner © Instrumental sound by Filmora Go, Edited in Filmora Go.

    published: 02 Aug 2019
  • Republic Act 7610 | Legal Diaries | #KalingangKatribu

    Learn more about Republic Act 7610 or the Special Protection of Children Against Abuse, Exploitation and Discrimination Act in this episode of #KalingangKatribu Legal Diaries. Hosted by: Venice Bautista with Atty. Alfred Campañano. Follow us on Facebook: https://www.facebook.com/tribunephl Twitter: https://twitter.com/tribunephl Instagram: https://www.instagram.com/tribunephl Visit our website: https://tribune.net.ph #DailyTribune #LegalDiaries #RA7610 #SpecialProtectionOfChildrenAgainstAbuse

    published: 25 Dec 2021
  • Article 335, RPC, Republic Act No. 8353, Republic Act No. 11648: Criminal Law Discussion

    Criminology Books, Reviewers, and Criminology Related Memory Aids! DISCUSSION TYPE: 📌The Revised Penal Code Book 1 and 2: https://shope.ee/5paOHRTBoH 📌Evidence: Lecture Notes: ç MULTIPLE CHOICE QUESTIONS WITH ANSWERS: 📌Criminal Law, Jurisprudence and Procedure: https://shope.ee/8zXQ3AJhB3 📌Correctional Administration: https://shope.ee/3Kt3Ix0Kzw 📌Criminology: https://shope.ee/7KPC4AFQ1o 📌Law Enforcement Administration: https://shope.ee/9en6qctV1U 📌Crime Detection and Investigation: https://shope.ee/7KPC4GZ8CI 📌Forensic Science: https://shope.ee/6zmLfd5arq 6 BOOKS: https://shope.ee/30GCuAO3s0 TERMS AND PHRASES TO REMEMBER, Volume I, II, III: https://shope.ee/6f9VGpG6ra FLASHCARDS: 📌Criminal Law Q&A: https://shope.ee/6ADEgE18Pw 📌Laws Related to criminology: https://shope.ee/7A5ls5sOZ6 ...

    published: 26 Apr 2023
  • ANO ANG REPUBLIC ACT NO. 4136 AT ANO ANG MGA NAKASAILALIM SA BATAS NA ITO? | LTO R.A. No. 4136

    ANO ANG REPUBLIC ACT NO. 4136 AT ANO ANG MGA NAKASAILALIM SA BATAS NA ITO? | LAND TRANSPORTATION AND TRAFFIC CODE | LTO RA 4136 #republicact4136 #lto #RA4136 Hi guys… please support my youtube channel by clicking the SUBSCRIBE and hit the 🔔 button for more updated videos. LINK YTC 🌻 https://youtube.com/channel/UCcyxeiNI6_l-nJQ0TAiXpUg ⭕️ MamiZang Vlog * LTO REPUBLIC ACT UPDATED 2022 | REPUBLIC ACT NO. 10666 | REPUBLIC ACT NO. 10586 | LTO R.A. NO. Link: https://youtu.be/Qqtw2IYgEHE * LTO REPUBLIC ACT UPDATED 2022 | REPUBLIC ACT NO. 10054 | REPUBLIC ACT NO. 8794 | LTO R.A. NO. Link: https://youtu.be/MwpdLrFwGxQ * LTO REPUBLIC ACT UPDATED 2022 | REPUBLIC ACT NO. 8750 | REPUBLIC ACT NO. 8749 | LTO R.A. NO. Link: https://youtu.be/KNvso2uJMT0 * ANO NGA BA ANG REPUBLIC ACT 8794? | ...

    published: 29 Nov 2022
  • REPUBLIC ACTS TO REMEMBER PRACTICE TEST QUESTIONS (LET REVIEWER)

    Take this test to familiarize yourself with the RA's that are common in the Licensure Exam for Teachers. Don't forget to LIKE and SUBSCRIBE. Have a good day! God bless you :)) VALIDITY AND RELIABILITY (REVIEW) https://www.youtube.com/watch?v=wRNLYGh6tM0&t=82s VALIDITY AND RELIABILITY PRACTICE TEST (QUESTIONS 1-10) https://www.youtube.com/watch?v=lNzil38q_ms REPUBLIC ACTS TO REMEMBER (REVIEW) https://www.youtube.com/watch?v=cVlwvDHQhwM&t=28s REPUBLIC ACTS PRACTICE TEST (QUESTIONS 1-10) https://www.youtube.com/watch?v=aykuL2FlPrM&t=22s FAMOUS EDUCATIONAL PHILOSOPHERS (REVIEW) https://www.youtube.com/watch?v=YF-vGEUmjkc FAMOUS EDUCATIONAL PHILOSOPHERS PRACTICE TEST (QUESTIONS 1-10) https://www.youtube.com/watch?v=v9WKnljYMrI&t=27s EDUCATIONAL PHILOSOPHIES (REVIEW) https://www.youtube...

    published: 04 Jul 2019
  • National Integrated Protected Areas System Act of 1992 Republic Act No 7586

    The National Integrated Protected Areas System Act of 1992 (Republic Act No. 7586) is a Philippine law designed to establish and manage a nationwide network of protected areas. The law aims to conserve the country’s biodiversity, natural resources, and ecosystems by protecting key areas such as forests, wetlands, and marine habitats. It empowers the Department of Environment and Natural Resources (DENR) to oversee the creation of protected areas and ensures sustainable management practices. The Act is a vital step in preserving the Philippines' rich natural heritage for future generations.

    published: 09 Dec 2024
  • Ano ang mga krimen sa Republic Act (RA) 9262 / Anti-VAWC Act of 2004 / Tagalog Version

    Tinalakay ko ng maigi ang mga krimen na pinaparusahan ng Republic Act No. 9262 or yung Anti-VAWC Act of 2004, at kung saan mo dapat ihain yung kaso ng RA 9262. 1) Playlist - RA 9262 / VAWC - https://www.youtube.com/playlist?list=PLjsTsqbrwGR7dQvjNA0DCYEMyAp-C7Wwz Please support the channel by clicking the link before you checkout from Shopee: 1) Veco Journal Notebook 6x8.5inches - https://shp.ee/j7dnrzc 2) Veco Journal Notebook 7x10inches - https://shp.ee/w9ziy4a 3) Platinum Preppy (Fine) - https://shp.ee/mxdgmdi 4) Pilot Fountain Pen Ink (30ml) - https://shp.ee/uif2euu This video is NOT sponsored. Some product links are affiliate links which means if you buy anything I'll receive a small commission. Follow me on: 1) Facebook: @baconpalacio 2) Instagram: @baconpalacio If you ...

    published: 29 Jun 2019
Parusa ng Republic Act No. (RA) 9262 / Anti-VAWC Law / Tagalog Version
5:16

Parusa ng Republic Act No. (RA) 9262 / Anti-VAWC Law / Tagalog Version

  • Order:
  • Duration: 5:16
  • Uploaded Date: 02 May 2020
  • views: 159061
Ano ba possibleng penalty ng akusado sa kasong Republic Act No. (RA) 9262 or Anti-VAWC Act of 2004? Ito ang topic sa video na ito. 1) Playlist - RA 9262 / Anti-VAWC Law - https://www.youtube.com/playlist?list=PLjsTsqbrwGR7dQvjNA0DCYEMyAp-C7Wwz Please support the channel by clicking the link before you checkout from Shopee: 1) Veco Journal Notebook 6x8.5inches - https://shp.ee/j7dnrzc 2) Veco Journal Notebook 7x10inches - https://shp.ee/w9ziy4a 3) Platinum Preppy (Fine) - https://shp.ee/mxdgmdi 4) Pilot Fountain Pen Ink (30ml) - https://shp.ee/uif2euu This video is NOT sponsored. Some product links are affiliate links which means if you buy anything I'll receive a small commission. Follow me on: 1) Facebook: @baconpalacio 2) Instagram: @baconpalacio If you like my content please consider supporting me on: 1) Patreon: https://www.patreon.com/baconpalacio 2) Youtube Membership: https://www.youtube.com/channel/UCbC4t2qjl71hJKR9ecGZuQg/join Timestamps: 0:00 Video Topic 0:19 Penalties for Section 5, RA 9262 0:33 Section 5(a), RA 9262 1:00 Section 5(b), RA 9262 1:09 Section 5(c) and (d), RA 9262 1:30 Section 5(e), RA 9262 3:10 Section 5(g), RA 9262 3:29 Article 266-A, Revised Penal Code 3:53 Section 5(f), RA9262 4:12 Section 5(h) (i), RA 9262 4:48 Message from Bacon Palacio #baconpalacio #learnlawwithme #tagaloglegaleducator Tagalog version only. THIS IS NOT LEGAL ADVICE. If you need legal advice please seek the services of a lawyer.
https://wn.com/Parusa_Ng_Republic_Act_No._(Ra)_9262_Anti_Vawc_Law_Tagalog_Version
Intro to Philippine Republic Act 8371 / IPRA / Batas sa Pilipinas
0:56

Intro to Philippine Republic Act 8371 / IPRA / Batas sa Pilipinas

  • Order:
  • Duration: 0:56
  • Uploaded Date: 02 Aug 2019
  • views: 11903
Indigenous Peoples' Rights Act of 1997 (IPRA) Para sa mga katutubo IPs/ICCs © Photos by Social Community Official owner © Instrumental sound by Filmora Go, Edited in Filmora Go.
https://wn.com/Intro_To_Philippine_Republic_Act_8371_Ipra_Batas_Sa_Pilipinas
Republic Act 7610 | Legal Diaries | #KalingangKatribu
44:17

Republic Act 7610 | Legal Diaries | #KalingangKatribu

  • Order:
  • Duration: 44:17
  • Uploaded Date: 25 Dec 2021
  • views: 36585
Learn more about Republic Act 7610 or the Special Protection of Children Against Abuse, Exploitation and Discrimination Act in this episode of #KalingangKatribu Legal Diaries. Hosted by: Venice Bautista with Atty. Alfred Campañano. Follow us on Facebook: https://www.facebook.com/tribunephl Twitter: https://twitter.com/tribunephl Instagram: https://www.instagram.com/tribunephl Visit our website: https://tribune.net.ph #DailyTribune #LegalDiaries #RA7610 #SpecialProtectionOfChildrenAgainstAbuse
https://wn.com/Republic_Act_7610_|_Legal_Diaries_|_Kalingangkatribu
Article 335, RPC, Republic Act No. 8353, Republic Act No. 11648: Criminal Law Discussion
5:54

Article 335, RPC, Republic Act No. 8353, Republic Act No. 11648: Criminal Law Discussion

  • Order:
  • Duration: 5:54
  • Uploaded Date: 26 Apr 2023
  • views: 9559
Criminology Books, Reviewers, and Criminology Related Memory Aids! DISCUSSION TYPE: 📌The Revised Penal Code Book 1 and 2: https://shope.ee/5paOHRTBoH 📌Evidence: Lecture Notes: ç MULTIPLE CHOICE QUESTIONS WITH ANSWERS: 📌Criminal Law, Jurisprudence and Procedure: https://shope.ee/8zXQ3AJhB3 📌Correctional Administration: https://shope.ee/3Kt3Ix0Kzw 📌Criminology: https://shope.ee/7KPC4AFQ1o 📌Law Enforcement Administration: https://shope.ee/9en6qctV1U 📌Crime Detection and Investigation: https://shope.ee/7KPC4GZ8CI 📌Forensic Science: https://shope.ee/6zmLfd5arq 6 BOOKS: https://shope.ee/30GCuAO3s0 TERMS AND PHRASES TO REMEMBER, Volume I, II, III: https://shope.ee/6f9VGpG6ra FLASHCARDS: 📌Criminal Law Q&A: https://shope.ee/6ADEgE18Pw 📌Laws Related to criminology: https://shope.ee/7A5ls5sOZ6 📌Personalities in the field of criminology: https://shope.ee/Aw1XHdYV0 📌Criminal Procedure Q&A: https://shope.ee/5fGy5Mb1Ye 📌Evidence Q&A: https://shope.ee/2L0W7K3MUW 📌PPNP, BJMP, BFP Ranks: https://shope.ee/9zPxFNsrCb LAMINATED CHARTS: https://shope.ee/7zesrlYBKy Shopee Store: https://shope.ee/1fkpJKCVDV Lazada Store: https://s.lazada.com.ph/s.5Wxch
https://wn.com/Article_335,_Rpc,_Republic_Act_No._8353,_Republic_Act_No._11648_Criminal_Law_Discussion
ANO ANG REPUBLIC ACT NO. 4136 AT ANO ANG MGA NAKASAILALIM SA BATAS NA ITO? | LTO R.A. No. 4136
3:54

ANO ANG REPUBLIC ACT NO. 4136 AT ANO ANG MGA NAKASAILALIM SA BATAS NA ITO? | LTO R.A. No. 4136

  • Order:
  • Duration: 3:54
  • Uploaded Date: 29 Nov 2022
  • views: 23807
ANO ANG REPUBLIC ACT NO. 4136 AT ANO ANG MGA NAKASAILALIM SA BATAS NA ITO? | LAND TRANSPORTATION AND TRAFFIC CODE | LTO RA 4136 #republicact4136 #lto #RA4136 Hi guys… please support my youtube channel by clicking the SUBSCRIBE and hit the 🔔 button for more updated videos. LINK YTC 🌻 https://youtube.com/channel/UCcyxeiNI6_l-nJQ0TAiXpUg ⭕️ MamiZang Vlog * LTO REPUBLIC ACT UPDATED 2022 | REPUBLIC ACT NO. 10666 | REPUBLIC ACT NO. 10586 | LTO R.A. NO. Link: https://youtu.be/Qqtw2IYgEHE * LTO REPUBLIC ACT UPDATED 2022 | REPUBLIC ACT NO. 10054 | REPUBLIC ACT NO. 8794 | LTO R.A. NO. Link: https://youtu.be/MwpdLrFwGxQ * LTO REPUBLIC ACT UPDATED 2022 | REPUBLIC ACT NO. 8750 | REPUBLIC ACT NO. 8749 | LTO R.A. NO. Link: https://youtu.be/KNvso2uJMT0 * ANO NGA BA ANG REPUBLIC ACT 8794? | ALAMIN ANG ANTI-OVERLOADING LAW MULTA AT LIMITASYON | RANo. 8794 Link: https://youtu.be/gJ0Kg-Cbqs4 land transportation and traffic code ra 4136 land transportation and traffic code republic act no. 4136 land transportation and traffic code land transportation and traffic code pdf land transportation and traffic code is land transportation and traffic code section 44 land transportation and traffic code of the philippines land transportation office traffic rules and regulations land transportation and traffic code of the philippines pdf land transportation and traffic code (republic act no. 4136) republic act 4136 (land transportation and traffic code) the land transportation and traffic code land transportation traffic code philippines what is traffic code c and c transportation llc land-link traffic systems c and n transport llc c&l transportation land transportation flashcards florida transportation code what is transportation code 521.121(c) land link traffic systems googletrans.langcodes transportation code golf carts g and l transportation g&g land and livestock colfax wa land transportation and traffic code hand signals land transportation and traffic code hand signals section land transportation code j and a traffic products j and t transportation jersey city traffic and transportation department j and l transportation k town transportation hours land transportation and traffic code lawphil land transportation list maryland code transportation m and l transport md transportation code m and t transportation inc section ng land transportation and traffic code the traffic and land transportation code of the philippines land transportation office restriction code ra 4136 land transportation code q and a transportation transportation code quizlet traffic code quizlet land transportation and traffic code republic act no. 4136 land transportation and traffic code (r.a. 4136) how much is bus and tram ticket highway code traffic islands v.t.c.a. transportation code vdot land track texas transportation code traffic violations vtrans traffic counts transportation code speeding y & l transportation transportation code definition z transportation requirements z transportation lawsuit z transportation locations z transportation terminals z transportation trucking land transportation and traffic code of 1964 land transportation and traffic code section 1 transportation code 251 transportation code 223 two-lane roads what is a traffic code transportation code 544 5 modes of land transportation transportation code 551a transportation code 541 transportation code 683 transportation code 621.506 transportation code 683.002 transportation code title 7. vehicles and traffic transportation code title 7 code 7 transportation transportation code 730 transportation code 724 8 transportation llc transportation code abandoned vehicle transportation code definitions san francisco transportation code
https://wn.com/Ano_Ang_Republic_Act_No._4136_At_Ano_Ang_Mga_Nakasailalim_Sa_Batas_Na_Ito_|_Lto_R.A._No._4136
REPUBLIC ACTS TO REMEMBER PRACTICE TEST QUESTIONS (LET REVIEWER)
7:09

REPUBLIC ACTS TO REMEMBER PRACTICE TEST QUESTIONS (LET REVIEWER)

  • Order:
  • Duration: 7:09
  • Uploaded Date: 04 Jul 2019
  • views: 54437
Take this test to familiarize yourself with the RA's that are common in the Licensure Exam for Teachers. Don't forget to LIKE and SUBSCRIBE. Have a good day! God bless you :)) VALIDITY AND RELIABILITY (REVIEW) https://www.youtube.com/watch?v=wRNLYGh6tM0&t=82s VALIDITY AND RELIABILITY PRACTICE TEST (QUESTIONS 1-10) https://www.youtube.com/watch?v=lNzil38q_ms REPUBLIC ACTS TO REMEMBER (REVIEW) https://www.youtube.com/watch?v=cVlwvDHQhwM&t=28s REPUBLIC ACTS PRACTICE TEST (QUESTIONS 1-10) https://www.youtube.com/watch?v=aykuL2FlPrM&t=22s FAMOUS EDUCATIONAL PHILOSOPHERS (REVIEW) https://www.youtube.com/watch?v=YF-vGEUmjkc FAMOUS EDUCATIONAL PHILOSOPHERS PRACTICE TEST (QUESTIONS 1-10) https://www.youtube.com/watch?v=v9WKnljYMrI&t=27s EDUCATIONAL PHILOSOPHIES (REVIEW) https://www.youtube.com/watch?v=DMlR0XyyEVE&t=180s EDUCATIONAL PHILOSOPHIES PRACTICE TEST (QUESTIONS 1-10) https://www.youtube.com/watch?v=wZtOkHYD_iA&t=21s
https://wn.com/Republic_Acts_To_Remember_Practice_Test_Questions_(Let_Reviewer)
National Integrated Protected Areas System Act of 1992 Republic Act No  7586
31:01

National Integrated Protected Areas System Act of 1992 Republic Act No 7586

  • Order:
  • Duration: 31:01
  • Uploaded Date: 09 Dec 2024
  • views: 33
The National Integrated Protected Areas System Act of 1992 (Republic Act No. 7586) is a Philippine law designed to establish and manage a nationwide network of protected areas. The law aims to conserve the country’s biodiversity, natural resources, and ecosystems by protecting key areas such as forests, wetlands, and marine habitats. It empowers the Department of Environment and Natural Resources (DENR) to oversee the creation of protected areas and ensures sustainable management practices. The Act is a vital step in preserving the Philippines' rich natural heritage for future generations.
https://wn.com/National_Integrated_Protected_Areas_System_Act_Of_1992_Republic_Act_No_7586
Ano ang mga krimen sa Republic Act (RA) 9262 / Anti-VAWC Act of 2004 / Tagalog Version
10:34

Ano ang mga krimen sa Republic Act (RA) 9262 / Anti-VAWC Act of 2004 / Tagalog Version

  • Order:
  • Duration: 10:34
  • Uploaded Date: 29 Jun 2019
  • views: 176736
Tinalakay ko ng maigi ang mga krimen na pinaparusahan ng Republic Act No. 9262 or yung Anti-VAWC Act of 2004, at kung saan mo dapat ihain yung kaso ng RA 9262. 1) Playlist - RA 9262 / VAWC - https://www.youtube.com/playlist?list=PLjsTsqbrwGR7dQvjNA0DCYEMyAp-C7Wwz Please support the channel by clicking the link before you checkout from Shopee: 1) Veco Journal Notebook 6x8.5inches - https://shp.ee/j7dnrzc 2) Veco Journal Notebook 7x10inches - https://shp.ee/w9ziy4a 3) Platinum Preppy (Fine) - https://shp.ee/mxdgmdi 4) Pilot Fountain Pen Ink (30ml) - https://shp.ee/uif2euu This video is NOT sponsored. Some product links are affiliate links which means if you buy anything I'll receive a small commission. Follow me on: 1) Facebook: @baconpalacio 2) Instagram: @baconpalacio If you like my content please consider supporting me on: 1) Patreon: https://www.patreon.com/baconpalacio 2) Youtube Membership: https://www.youtube.com/channel/UCbC4t2qjl71hJKR9ecGZuQg/join Timestamps 0:00 Video Topic 0:13 VAWC, defined 0:39 Dating Relationship 0:50 Sexual Relationship 1:07 Acts punishable by RA 9262 1:22 Physical Violence 1:46 Sexual Violence 2:49 Psychological Violence 4:45 Economic Abuse 5:31 Discussion on spousal and child support 8:33 Can the children file a suit for RA 9262 against their father? 9:42 Venue for RA 9262 case #baconpalacio #learnlawwithme #tagaloglegaleducator Tagalog version only. THIS IS NOT LEGAL ADVICE. If you need legal advice please seek the services of a lawyer. Footnotes: 1) Estrada v. Escritor (2006) - 455 Phil. 411 2) Estrada v. Escritor (2003) - 525 Phil. 110
https://wn.com/Ano_Ang_Mga_Krimen_Sa_Republic_Act_(Ra)_9262_Anti_Vawc_Act_Of_2004_Tagalog_Version
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • Parusa ng Republic Act No. (RA) 9262 / Anti-VAWC Law / Tagalog Version
    5:16
    Parusa ng Republic Act No. (RA) 9262 / Anti-VAWC Law / Tagalog Versionremove from playlist
  • Intro to Philippine Republic Act 8371 / IPRA / Batas sa Pilipinas
    0:56
    Intro to Philippine Republic Act 8371 / IPRA / Batas sa Pilipinasremove from playlist
  • Republic Act 7610 | Legal Diaries | #KalingangKatribu
    44:17
    Republic Act 7610 | Legal Diaries | #KalingangKatriburemove from playlist
  • Article 335, RPC, Republic Act No. 8353, Republic Act No. 11648: Criminal Law Discussion
    5:54
    Article 335, RPC, Republic Act No. 8353, Republic Act No. 11648: Criminal Law Discussionremove from playlist
  • ANO ANG REPUBLIC ACT NO. 4136 AT ANO ANG MGA NAKASAILALIM SA BATAS NA ITO? | LTO R.A. No. 4136
    3:54
    ANO ANG REPUBLIC ACT NO. 4136 AT ANO ANG MGA NAKASAILALIM SA BATAS NA ITO? | LTO R.A. No. 4136remove from playlist
  • REPUBLIC ACTS TO REMEMBER PRACTICE TEST QUESTIONS (LET REVIEWER)
    7:09
    REPUBLIC ACTS TO REMEMBER PRACTICE TEST QUESTIONS (LET REVIEWER)remove from playlist
  • National Integrated Protected Areas System Act of 1992 Republic Act No  7586
    31:01
    National Integrated Protected Areas System Act of 1992 Republic Act No 7586remove from playlist
  • Ano ang mga krimen sa Republic Act (RA) 9262 / Anti-VAWC Act of 2004 / Tagalog Version
    10:34
    Ano ang mga krimen sa Republic Act (RA) 9262 / Anti-VAWC Act of 2004 / Tagalog Versionremove from playlist
PLAYLIST TIME: 0:00 / 1:49:01

Parusa ng Republic Act No. (RA) 9262 / Anti-VAWC Law / Tagalog Version

Ano ba possibleng penalty ng akusado sa kasong Republic Act No. (RA) 9262 or Anti-VAWC Act of 2004? Ito ang topic sa video na ito. 1) Playlist - RA 9262 / Anti-VAWC Law - https://www.youtube.com/playlist?list=PLjsTsqbrwGR7dQvjNA0DCYEMyAp-C7Wwz Please support the channel by clicking the link before you checkout from Shopee: 1) Veco Journal Notebook 6x8.5inches - https://shp.ee/j7dnrzc 2) Veco Journal Notebook 7x10inches - https://shp.ee/w9ziy4a 3) Platinum Preppy (Fine) - https://shp.ee/mxdgmdi 4) Pilot Fountain Pen Ink (30ml) - https://shp.ee/uif2euu This video is NOT sponsored. Some product links are affiliate links which means if you buy anything I'll receive a small commission. Follow me on: 1) Facebook: @baconpalacio 2) Instagram: @baconpalacio If you like my content please consider supporting me on: 1) Patreon: https://www.patreon.com/baconpalacio 2) Youtube Membership: https://www.youtube.com/channel/UCbC4t2qjl71hJKR9ecGZuQg/join Timestamps: 0:00 Video Topic 0:19 Penalties for Section 5, RA 9262 0:33 Section 5(a), RA 9262 1:00 Section 5(b), RA 9262 1:09 Section 5(c) and (d), RA 9262 1:30 Section 5(e), RA 9262 3:10 Section 5(g), RA 9262 3:29 Article 266-A, Revised Penal Code 3:53 Section 5(f), RA9262 4:12 Section 5(h) (i), RA 9262 4:48 Message from Bacon Palacio #baconpalacio #learnlawwithme #tagaloglegaleducator Tagalog version only. THIS IS NOT LEGAL ADVICE. If you need legal advice please seek the services of a lawyer.
5:16
Parusa ng Republic Act No. (RA) 9262 / Anti-VAWC Law / Tagalog Version
Ano ba possibleng penalty ng akusado sa kasong Republic Act No. (RA) 9262 or Anti-VAWC Act...
published: 02 May 2020
Play in Full Screen
0:56
Intro to Philippine Republic Act 8371 / IPRA / Batas sa Pilipinas
Indigenous Peoples' Rights Act of 1997 (IPRA) Para sa mga katutubo IPs/ICCs © Photos by S...
published: 02 Aug 2019
Play in Full Screen
44:17
Republic Act 7610 | Legal Diaries | #KalingangKatribu
Learn more about Republic Act 7610 or the Special Protection of Children Against Abuse, Ex...
published: 25 Dec 2021
Play in Full Screen
5:54
Article 335, RPC, Republic Act No. 8353, Republic Act No. 11648: Criminal Law Discussion
Criminology Books, Reviewers, and Criminology Related Memory Aids! DISCUSSION TYPE: 📌The...
published: 26 Apr 2023
Play in Full Screen
3:54
ANO ANG REPUBLIC ACT NO. 4136 AT ANO ANG MGA NAKASAILALIM SA BATAS NA ITO? | LTO R.A. No. 4136
ANO ANG REPUBLIC ACT NO. 4136 AT ANO ANG MGA NAKASAILALIM SA BATAS NA ITO? | LAND TRANSPOR...
published: 29 Nov 2022
Play in Full Screen
7:09
REPUBLIC ACTS TO REMEMBER PRACTICE TEST QUESTIONS (LET REVIEWER)
Take this test to familiarize yourself with the RA's that are common in the Licensure Exam...
published: 04 Jul 2019
Play in Full Screen
31:01
National Integrated Protected Areas System Act of 1992 Republic Act No 7586
The National Integrated Protected Areas System Act of 1992 (Republic Act No. 7586) is a Ph...
published: 09 Dec 2024
Play in Full Screen
10:34
Ano ang mga krimen sa Republic Act (RA) 9262 / Anti-VAWC Act of 2004 / Tagalog Version
Tinalakay ko ng maigi ang mga krimen na pinaparusahan ng Republic Act No. 9262 or yung Ant...
published: 29 Jun 2019
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: republic act

Edit

Guv Gwen files rap versus Ombudman

Sun Star 11 May 2025
... offense punishable by one to six years in prison, disqualification from public office and loss of voting rights under Republic Act (RA) 9006 in relation to Section 264 of the Omnibus Election Code.
Edit

Lawmakers propose act on HK ‘origin laundering’

Taipei Times 10 May 2025
... (蔡易餘), who initiated the proposal, said that since the passage of the Hong Kong and Macau act, Taiwan has considered the two territories’ residents separate from the People’s Republic of China (PRC).
Edit

Legarda secures better retirement benefits for DFA personnel

The Philadelphia Inquirer 10 May 2025
MANILA, PhilippinesSenator Loren Legarda lauded the signing into law of Republic Act No. 12181, or the Adjusted DFA Retirement Benefits Act, ...
Edit

Campaign period ends Saturday, no more wooing voters May 11-12

The Philadelphia Inquirer 10 May 2025
11085, or the rules and regulations implementing Republic Act No. 9006 or the Fair Election Act for the May 2025 elections and the ...
Edit

Campaign period ends: Comelec warns vs wooing voters

The Philadelphia Inquirer 10 May 2025
11085, or the rules and regulations implementing Republic Act No. 9006 or the Fair Election Act for the May 2025 elections and the ...
Edit

P1.5M worth of shabu seized in Sampaloc buy-bust

Manila Bulletin 10 May 2025
... detained at the local police station and are facing charges for violation of Sections 5 and 11, Article II of Republic Act 9165, also known as the Comprehensive Dangerous Drugs Act of 2002.
Edit

NPD seizes over P360,000 shabu inside Navotas Cemetery

Manila Bulletin 10 May 2025
... of Section 5 (Selling of Dangerous Drugs), Section 11 (Possession of Dangerous Drugs), and Section 26 (Conspiracy) of the Republic Act 9165 or the “Comprehensive Dangerous Drugs Act of 2002.” .
Edit

Cops hunt down 3 linked to gun suspect tasked to monitor vote-buying in Pasay

Manila Bulletin 10 May 2025
“ he said.The suspect is now detained at the Pasay City Police custodial facility and faces charges for violating Republic Act 10591 (Comprehensive Firearms and Ammunition Regulation Act ) in relation to RA 7166 (Omnibus Election Code).
Edit

Poe hails LTO for action on viral dog-in-trunk incident

Manila Bulletin 10 May 2025
... the owner or driver of the car may face a string of administrative cases, including reckless driving and improper person to operate a motor vehicle under sections 48 and 27 of Republic Act (RA) No.
Edit

Tolentino grateful for Bangsamoro groups’ endorsement

The Philadelphia Inquirer 10 May 2025
Tolentino authored the creation of additional Shari’a circuit courts across the country through Republic Act 12108 ... .
Edit

CIDG confiscates P93-M worth of fake 'Crocs' in Pampanga raids

Manila Bulletin 10 May 2025
Nicolas Torre III said his men conducted the operations along with the local police and representatives of footwear firm Crocs using a search warrant issued by a court for violation of Republic Act ...
Edit

Real cops net bogus police officer, 2 pals in Comelec checkpoint

Manila Bulletin 10 May 2025
This statement is subject to further validation,” police said.Navarro said the suspects will be charged for violating Republic Act 10591 (Comprehensive Firearms and Ammunition Regulation Act) and Batas Pambansa Bilang 881 (Omnibus Election Code) ... Gen.
Edit

5 things you may not know about librarians

Manila Bulletin 10 May 2025
But since the enactment of Republic Act No. 6966, or The Philippine Librarianship Act, in September 1990, a license has been required to practice in the field upon completing a degree in Library ...
Edit

UST welcomes CHED resolution affirming compliance with TFI fund disbursement

Manila Bulletin 10 May 2025
... / MANILA BULLETIN / FILE PHOTO UST welcomed the CHED resolution as recognition of its “good faith compliance” with legal obligations governing the use of TFI funds, in accordance with Republic Act No.
Edit

CamSur mayoralty bet faces DQ case over disinformation vs rival candidate

Manila Bulletin 10 May 2025
And for being committed through a computer system and online, her election offense was covered by Republic Act (RA) No. 10175, otherwise referred to as the "Cybercrime Prevention Act of 2012.”The ...
×