• Home
  • Insight
  • Blog
  • Business
  • Entertainment
  • Health
  • Politics
  • Shop
    • Gift Shop
    • Value Shop
    • Store
    • Bargain Shop
    • Discount
  • Sports
  • Tech
  • Travel
  • USA
  • Video
  • World
    • Asia
    • Africa
    • South America
    • North America
    • Europe
    • Oceania
Saturday, August 29, 2026
No Result
View All Result
Subscribe Now
  • Home
  • Insight
  • Blog
  • Business
  • Entertainment
  • Health
  • Politics
  • Shop
    • Gift Shop
    • Value Shop
    • Store
    • Bargain Shop
    • Discount
  • Sports
  • Tech
  • Travel
  • USA

    AI-generated CSAM possession protected by First Amendment court ruling

    Opinion | What It Took to Dismantle the Most Powerful Company in the World

    Trump Brands Anti-Genocide Group “Terrorist”

    Fans in Dollywood react to death of music star, actor and beloved figure Dolly Parton at 80

    Tim Curry’s devilish charm was irresistible

    USS Abraham Lincoln heads to Thailand for brief stop after lengthy deployment at sea

    Immigrant Grocery Store Owners Sue NY Mayor Mamdani over Socialist Grocery Scheme

    Homeless agency has posh digs while ‘clients’ live in squalor

    3 rescued belugas make 2,500-mile journey to SeaWorld San Diego

  • Video
  • World
    • Asia
    • Africa
    • South America
    • North America
    • Europe
    • Oceania
The Insight Post
  • Home
  • Insight
  • Blog
  • Business
  • Entertainment
  • Health
  • Politics
  • Shop
    • Gift Shop
    • Value Shop
    • Store
    • Bargain Shop
    • Discount
  • Sports
  • Tech
  • Travel
  • USA

    AI-generated CSAM possession protected by First Amendment court ruling

    Opinion | What It Took to Dismantle the Most Powerful Company in the World

    Trump Brands Anti-Genocide Group “Terrorist”

    Fans in Dollywood react to death of music star, actor and beloved figure Dolly Parton at 80

    Tim Curry’s devilish charm was irresistible

    USS Abraham Lincoln heads to Thailand for brief stop after lengthy deployment at sea

    Immigrant Grocery Store Owners Sue NY Mayor Mamdani over Socialist Grocery Scheme

    Homeless agency has posh digs while ‘clients’ live in squalor

    3 rescued belugas make 2,500-mile journey to SeaWorld San Diego

  • Video
  • World
    • Asia
    • Africa
    • South America
    • North America
    • Europe
    • Oceania
No Result
View All Result
No Result
View All Result
Home Asia

Chairman’s Statement of The 23rd ASEAN Plus Three Foreign Ministers’ Meeting

by Theinsightpost
August 8, 2022
in Asia
0 0
0
Chairman’s Statement of The 23rd ASEAN Plus Three Foreign Ministers’ Meeting

  1. The 23rd ASEAN Plus Three Foreign Ministers’ Meeting was held on 4 August 2022 in Phnom Penh, Cambodia, and chaired by His Excellency PRAK Sokhonn, Deputy Prime Minister and Minister of Foreign Affairs of Cambodia.

Review and Future Direction of ASEAN Plus Three (APT) Cooperation

  1. The Meeting reaffirmed the importance of the APT process as a main vehicle to promote peace, stability and cooperation in East Asia towards the long-term goal of building an East Asian community, with ASEAN as the driving force. The Meeting reiterated the commitment to further strengthening and deepening the APT functional cooperation under the APT process. The Meeting further underlined that the APT process continued to play mutually reinforcing and complementary roles with other ASEAN-led frameworks. The Meeting also recognised the contribution of the APT to ASEAN’s efforts towards realising the ASEAN Community Vision 2025 and deepening regional integration in East Asia. The Meeting noted the importance of the ASEAN Outlook on the Indo-Pacific (AOIP) as a guide for ASEAN’s engagement in the wider Asia-Pacific and Indian Ocean regions.

Download the full statement here

.flickr-img-responsive { width:100% !important; height:auto !important; display:block !important; } .LoadingImg img { max-width: 45px; max-height: 45px; box-shadow: none; } .wpfrank-flickr-div{ padding:15px; } @media (max-width: 786px){ .col-md-3 { width:49.9%; float:left; } } .play-pause { display: none !important; } .gallery110906 { overflow:hidden; clear: both; } .fnf{ background-color: #a92929; border-radius: 5px; color: #fff; font-family: initial; text-align: center; padding:12px; } jQuery(function() { jQuery(‘.gallery110906’).flickr({ apiKey: ‘037c012784565c3b5691cc5a0aa912b7’, photosetId: ‘72177720301054613’ }); }); ;(function ($, window, document, undefined) { ‘use strict’; var pluginName = “flickr”, defaults = { apiKey: “”, photosetId: “”, errorText: “
Error generating gallery.
“, loadingSpeed: 38, photosLimit: 200 }, apiUrl=”https://api.flickr.com/services/rest/”, photos = []; // The actual plugin constructor function Plugin(element, options) { this.element = $(element); this.settings = $.extend({}, defaults, options); this._defaults = defaults; this._name = pluginName; this._hideSpinner = function() { this.element.find(‘.spinner-wrapper’).hide().find(‘*’).hide(); }; this._printError = function() { //this.element.find(‘.gallery-container’).append($(“
“, { “class”: “col-lg-12 col-lg-offset-1” }) this.element.find(‘.gallery-container’).append($(“
“, { “class”: “col-lg-12” }) .append($(“
“, { “class”: “error-wrapper” }) .append($(““, { “class”: “label label-danger error” }) .html(this.settings.errorText)))); }; this._flickrAnimate = function() { this.element.find(‘.gallery-container img’).each($.proxy(function(index, el) { var image = el; setTimeout(function() { $(image).parent().fadeIn(); }, this.settings.loadingSpeed * index); }, this)); }; this._printGallery = function(photos) { var element = this.element.find(‘.gallery-container’); $.each(photos, function(key, photo) { var img = $(‘‘, { ‘class’: ‘thumb img-thumbnail flickr-img-responsive’, src: photo.thumbnail, ‘alt’: photo.title }); element.append($(‘
‘, { ‘class’: ‘ col-md-3 col-sm-4 col-center wpfrank-flickr-div’ }) .append($(‘‘, { ‘class’: ”, href: photo.href, ‘data-gallery’: ”, ‘title’: photo.title }).hide() .append(img))); }); element.imagesLoaded() .done($.proxy(this._flickrAnimate, this)) .always($.proxy(this._hideSpinner, this)); }; this._flickrPhotoset = function(photoset) { var _this = this; photos[photoset.id] = []; $.each(photoset.photo, function(key, photo) { // Limit number of photos. if(key >= _this.settings.photosLimit) { return false; } photos[photoset.id][key] = { thumbnail: ‘https://farm’ + photo.farm + ‘.static.flickr.com/’ + photo.server + ‘/’ + photo.id + ‘_’ + photo.secret + ‘_q.jpg’, href: ‘https://farm’ + photo.farm + ‘.static.flickr.com/’ + photo.server + ‘/’ + photo.id + ‘_’ + photo.secret + ‘_b.jpg’, title: photo.title }; }); this._printGallery(photos[photoset.id]); }; this._onFlickrResponse = function(response) { if(response.stat === “ok”) { this._flickrPhotoset(response.photoset); } else { this._hideSpinner(); this._printError(); } }; this._flickrRequest = function(method, data) { var url = apiUrl + “?format=json&jsoncallback=?&method=” + method + “&api_key=” + this.settings.apiKey; $.each(data, function(key, value) { url += “&” + key + “=” + value; }); $.ajax({ dataType: “json”, url: url, context: this, success: this._onFlickrResponse }); }; this._flickrInit = function () { this._flickrRequest(‘flickr.photosets.getPhotos’, { photoset_id: this.settings.photosetId }); }; // Init this.init(); } Plugin.prototype = { init: function () { this._flickrInit(); } }; // Wrapper $.fn[pluginName] = function (options) { this.each(function () { if (!$.data(this, “plugin_” + pluginName)) { $.data(this, “plugin_” + pluginName, new Plugin(this, options)); } }); // Chain return this; }; })(jQuery, window, document);

‹ › ×

    jQuery(function() { // Set blueimp gallery options jQuery.extend(blueimp.Gallery.prototype.options, { useBootstrapModal: false, hidePageScrollbars: false }); });

    The post Chairman’s Statement of The 23rd ASEAN Plus Three Foreign Ministers’ Meeting appeared first on ASEAN Main Portal.



    Source link
    ShareTweetSend
    Previous Post

    Tutu Puoane back on the South African stage after two years away

    Next Post

    Father and son sentenced to life in prison for federal hate crimes in Ahmaud Arbery’s killing – Tampa Bay Now

    Related News

    Asia

     ہنی  البیلا  کا سلیمان  بٹ کے ساتھ مل کر امریکا میں  تھیٹر اور فلم سازی کا اعلان 

    August 29, 2026
    Asia

    India’ Space Industry Enters New Era as Startups Chase Capital, Customers and Global Ambitions

    August 28, 2026
    Asia

    Kioxia and Sandisk to invest $31bn in Japan for AI buildout

    August 28, 2026
    Asia

    Japan’s Next-Gen Stand-Off Jammer Aircraft Enters Operational Test Phase

    August 27, 2026
    Next Post
    Father and son sentenced to life in prison for federal hate crimes in Ahmaud Arbery’s killing – Tampa Bay Now

    Father and son sentenced to life in prison for federal hate crimes in Ahmaud Arbery’s killing – Tampa Bay Now

    Discussion about this post

    Subscribe To Our Newsletters

      Customer Support


      1251 Wilcrest Drive
      Houston, Texas
      77042 USA
      Call-832.795.1420
      e-mail – news@theinsightpost.com

      Subscribe To Our Newsletters

        Categories

        • Africa
        • Africa-East
        • African Sports
        • American Sports
        • Arts
        • Asia
        • Australia
        • Business
        • Business Asia
        • Business- Africa
        • Canada
        • Defense
        • Education
        • Egypt
        • Energy
        • Entertainment
        • Europe
        • European Soccer
        • Finance
        • Germany
        • Ghana
        • Health
        • Insight
        • International
        • Investing
        • Japan
        • Latest Headlines
        • Life & Living
        • Markets
        • Mobile
        • Movies
        • New Zealand
        • Nigeria
        • Politics
        • Scholarships
        • Science
        • South Africa
        • South America
        • Sports
        • Tech
        • Travel
        • UK
        • USA
        • Weather
        • World
        No Result
        View All Result

        Recent News

        Carlton defeats Melbourne to continue dream run with AFL wildcard round win

        August 29, 2026

        Answering the question behind the question

        August 29, 2026

        Disclosure Day | Official Trailer

        August 29, 2026

        Rupee To Be Honored At Caribbean Pop-Up Carnival In Times Square

        August 29, 2026
        • Home
        • Advertise With Us
        • About Us
        • Corporate
        • Consumer Rewards
        • Forum
        • Privacy Policy
        • Social Trends

        Theinsightpost ©2026 | All Rights Reserved. Theinsightpost is an Elnegy LLC company, registered in Texas, USA

        Welcome Back!

        Login to your account below

        Forgotten Password?

        Retrieve your password

        Please enter your username or email address to reset your password.

        Log In

        Add New Playlist

        We are using cookies to give you the best experience on our website.

        You can find out more about which cookies we are using or switch them off in .

        No Result
        View All Result
        • Home
        • Insight
        • Blog
        • Business
        • Entertainment
        • Health
        • Politics
        • Shop
          • Gift Shop
          • Value Shop
          • Store
          • Bargain Shop
          • Discount
        • Sports
        • Tech
        • Travel
        • USA
        • Video
        • World
          • Asia
          • Africa
          • South America
          • North America
          • Europe
          • Oceania

        Theinsightpost ©2026 | All Rights Reserved. Theinsightpost is an Elnegy LLC company, registered in Texas, USA

        The Insight Post
        Powered by  GDPR Cookie Compliance
        Privacy Overview

        This website uses cookies so that we can provide you with the best user experience possible. Cookie information is stored in your browser and performs functions such as recognising you when you return to our website and helping our team to understand which sections of the website you find most interesting and useful.

        Strictly Necessary Cookies

        Strictly Necessary Cookie should be enabled at all times so that we can save your preferences for cookie settings.

        Cookie Policy

        More information about our Cookie Policy