Sandakan Municipal Council

Last updated

Sandakan Municipal Council
Majlis Perbandaran Sandakan
Sandakan Municipal Council official logo.svg
Sandakan Municipal Council
Sandakan Sabah MajlisPerbandaranSandakan.jpg
Agency overview
Formed1 January 1982;43 years ago (1982-01-01)
Jurisdiction City of Sandakan
HeadquartersPO Box 221, 90702 Sandakan, Sabah, Malaysia
5°50′24″N118°7′0″E / 5.84000°N 118.11667°E / 5.84000; 118.11667
Agency executive
  • Walter Kenson, President
Website mps.sabah.gov.my/portal/

Sandakan Municipal Council (Malay : Majlis Perbandaran Sandakan, abbreviated MPS) is the municipal council which administrates the city and municipalities area of Sandakan in the state of Sabah, Malaysia.# coding: utf-8

Contents

import json import collections

  1. ส่วนที่ 1: โค้ดของบุคคลที่ 3 (บริษัท/แพลตฟอร์ม)
  2. ฟังก์ชันจำลองการเก็บข้อมูลของบริษัท

def บันทึกข้อมูลส่วนบุคคล(ชื่อผู้ใช้, บันทึกกิจกรรม):

   print("--- บันทึกข้อมูลโดยบุคคลที่ 3 ---")    ข้อมูลที่เก็บ = {        "ชื่อผู้ใช้": ชื่อผู้ใช้,        "บันทึกกิจกรรม": บันทึกกิจกรรม    }    print(f"บริษัทได้จัดเก็บข้อมูลสำหรับ '{ชื่อผู้ใช้}' แล้ว")    return ข้อมูลที่เก็บ
  1. ส่วนที่ 2: โค้ดของคุณ (เจ้าของข้อมูล)
  2. ฟังก์ชันเพื่อตรวจสอบและวิเคราะห์ข้อมูล

def ตรวจสอบข้อมูลส่วนบุคคล(ข้อมูลที่ถูกเก็บ):

   print("\n--- ตรวจสอบข้อมูลส่วนบุคคล (สิทธิ์ของเจ้าของข้อมูล) ---")    print(f"กำลังเข้าถึงข้อมูลของ: '{ข้อมูลที่ถูกเก็บ['ชื่อผู้ใช้']}' ตามสิทธิ์ใน PDPA...")    print("พบรายการบันทึกกิจกรรม:")    สำหรับ_การวิเคราะห์ = ""    for i, บันทึก in enumerate(ข้อมูลที่ถูกเก็บ['บันทึกกิจกรรม']):        print(f"{i+1}. {บันทึก['เวลา']}: {บันทึก['กิจกรรม']}")        สำหรับ_การวิเคราะห์ += บันทึก['กิจกรรม'] + " "    return สำหรับ_การวิเคราะห์

def วิเคราะห์ข้อความ(ข้อความ):

   print("\n--- ผลการวิเคราะห์กิจกรรมที่ถูกบันทึก ---")    รายการคำ = ข้อความ.lower().split()    จำนวนครั้งของคำ = collections.Counter(รายการคำ)    print(f"คำที่ใช้บ่อยที่สุด: '{จำนวนครั้งของคำ.most_common(1)[0][0]}'")
  1. ส่วนที่ 3: โค้ดสำหรับการ "ย้อนคืน" (ลบข้อมูล)
  2. ฟังก์ชันใหม่เพื่อลบข้อมูลส่วนบุคคล

def ลบข้อมูลส่วนบุคคล(ข้อมูลที่ถูกเก็บ):

   print("\n--- เริ่มปฏิบัติการ 'ย้อนคืน' ---")    print(f"กำลังดำเนินการลบข้อมูลสำหรับ '{ข้อมูลที่ถูกเก็บ['ชื่อผู้ใช้']}' ตามคำร้องขอ...")    ข้อมูลที่ถูกเก็บ.clear()  # ลบข้อมูลทั้งหมดจาก dictionary    print("ข้อมูลถูกลบอย่างสมบูรณ์แล้ว")    return ข้อมูลที่ถูกเก็บ
  1. --- เริ่มการปฏิบัติการทั้งหมด ---
  2. 1. บริษัท (จำลอง) บันทึกข้อมูล

ข้อมูลกิจกรรม = [

   {"เวลา": "2025-09-05 10:05", "กิจกรรม": "เข้าสู่ระบบและแก้ไขข้อมูลส่วนตัว"},    {"เวลา": "2025-09-05 11:30", "กิจกรรม": "ค้นหาสินค้า 'เสื้อเชิ้ต' บนแพลตฟอร์ม"},    {"เวลา": "2025-09-05 14:15", "กิจกรรม": "ดูวิดีโอ 'วิธีการทำอาหารไทย'"}

] ข้อมูลที่ถูกเก็บโดยบริษัท = บันทึกข้อมูลส่วนบุคคล("ผู้ใช้ A", ข้อมูลกิจกรรม)

  1. 2. คุณ (เจ้าของข้อมูล) ตรวจสอบและวิเคราะห์ข้อมูล

ข้อความวิเคราะห์ = ตรวจสอบข้อมูลส่วนบุคคล(ข้อมูลที่ถูกเก็บโดยบริษัท) วิเคราะห์ข้อความ(ข้อความวิเคราะห์)

  1. 3. คุณ (เจ้าของข้อมูล) ใช้สิทธิ์ในการ "ย้อนคืน" เพื่อลบข้อมูล

ข้อมูลหลังจากการลบ = ลบข้อมูลส่วนบุคคล(ข้อมูลที่ถูกเก็บโดยบริษัท) print(f"สถานะข้อมูลปัจจุบัน: {ข้อมูลหลังจากการลบ}")

History

The municipal council is formed in 1982 following the merger between Sandakan Town Board and Rural District Council on 1 January 1982. The title of "Commissioner" was subsequently replaced with "President" while "Employee" becomes "Secretary". [1] On 1 January 1984, Sandakan District Office was abolished by the state government with some of their previous duties and responsibilities were taken over by the municipal council and the former district officer became deputy president of the council. [1] In April 2018, Sabah Minister of Local Government and State Housing Hajiji Noor said that the Cabinet of Sabah has decided to upgrade the status of the municipal council into Sandakan City Council with the plans supposed to take effect on 1 July. [2] However, following the sudden change of government in the 2018 election, the plans unable to become reality. On 4 September 2018, the President of the council was replaced by a new President with focus are given on other matters. [3] Through the statement by Sabah Deputy Chief Minister and Local Government and Housing Minister Jaujan Sambakong on 5 August 2019, the new government will continue the plan to elevating Sandakan's status as the second city in Sabah. [4] In 2021, the 9th Prime Minister Ismail Sabri Yaakob has pre-launch Sandakan as the second city in Sabah. The Public Works Minister Bung Moktar Radin said that if everything went smoothly they had planned Sandakan to achieve city status by October 2022. [5]

President of Sandakan Municipal Council (Presiden)

Since 1982, the town has been led by fourteenth presidents. The previous presidents are listed as below: [6]

NoPresidentTerm startTerm end
1Mohd Tahir Jaafar19821983
2Abdul Ghani Rashid19841986
3Kamaruddin Linggam19861988
4Ignatius J. Bantoi19881995
5Leong Chen Kong19951996
6Claudius Roman19962000
7Adeline Leong20002004
8Yeo Boon Hai20042009
9Ir. James Wong20092018
10Hii Chang Lik20182019
11Wong Foo Tin20192021
12Benedict Asmat20212023
13Henry Idol2023 [7] 2025
14Walter Kenson2025 [8] Incumbent

References

  1. 1 2 "Pengenalan MPS [Pihak Berkuasa Tempatan]" [MPS Introduction [Local Government Authority]] (in Malay). Sandakan Municipal Council. Archived from the original on 1 June 2019. Retrieved 1 June 2019.
  2. Vanessa Jsol, Vesta (17 April 2018). "MPS bakal dinaik taraf sebagai Majlis Bandaraya Sandakan" [MPS will be upgraded as Sandakan City Council]. New Sabah Times (in Malay). Archived from the original on 1 June 2019. Retrieved 1 June 2019.
  3. Jikur, Mardinah (5 September 2018). "New MPS chief vows to make Sandakan among the best". Daily Express. Archived from the original on 1 June 2019. Retrieved 1 June 2019.
  4. Ralon, Larry (6 August 2019). "City status for S'kan plan". Daily Express. Archived from the original on 7 August 2019. Retrieved 7 August 2019.
  5. "Sandakan dinaik taraf sebagai bandar raya tahun ini" [Sandakan elevated to city status this year]. Sinar Harian (in Malay). 20 June 2022. Archived from the original on 2 January 2024. Retrieved 20 June 2022.
  6. "Senarai Mantan Pengerusi, Pesuruhjaya dan Presiden" [List of Former Managers, Commissioners and Presidents] (in Malay). Sandakan Municipal Council. Archived from the original on 2 January 2024. Retrieved 2 January 2024.
  7. "New Sandakan Municipal Council president appointed". The Borneo Post. 8 February 2023. Archived from the original on 2 January 2024. Retrieved 2 January 2024.
  8. "Walter Joseph Kenson dilantik sebagai Presiden Majlis Perbandaran Sandakan" [Walter Joseph Kenson appointed as President of Sandakan Municipal Council]. Borneo Daily Bulletin (in Malay). 6 February 2025. Archived from the original on 15 March 2025. Retrieved 15 March 2025.