Wednesday, July 8, 2026

Tayartaw Privacy Policy

Privacy Policy - တရားတော် App

Privacy Policy for တရားတော် App

ULG built the တရားတော် app as a Free app. This SERVICE is provided by ULG at no cost and is intended for use as is.

This page is used to inform visitors regarding my policies with the collection, use, and disclosure of Personal Information if anyone decided to use my Service.

If you choose to use my Service, then you agree to the collection and use of information in relation to this policy. The Personal Information that I collect is used for providing and improving the Service. I will not use or share your information with anyone except as described in this Privacy Policy.

The terms used in this Privacy Policy have the same meanings as in our Terms and Conditions, which are accessible at တရားတော် unless otherwise defined in this Privacy Policy.

Information Collection and Use

For a better experience, while using our Service, I may require you to provide us with certain personally identifiable information. The information that I request will be retained on your device and is not collected by me in any way.

The app does use third-party services that may collect information used to identify you.

Link to the privacy policy of third-party service providers used by the app:

Log Data

I want to inform you that whenever you use my Service, in a case of an error in the app I collect data and information (through third-party products) on your phone called Log Data. This Log Data may include information such as your device Internet Protocol (“IP”) address, device name, operating system version, the configuration of the app when utilizing my Service, the time and date of your use of the Service, and other statistics.

Cookies

Cookies are files with a small amount of data that are commonly used as anonymous unique identifiers. These are sent to your browser from the websites that you visit and are stored on your device's internal memory.

This Service does not use these “cookies” explicitly. However, the app may use third-party code and libraries that use “cookies” to collect information and improve their services. You have the option to either accept or refuse these cookies and know when a cookie is being sent to your device. If you choose to refuse our cookies, you may not be able to use some portions of this Service.

Service Providers

I may employ third-party companies and individuals due to the following reasons:

  • To facilitate our Service;
  • To provide the Service on our behalf;
  • To perform Service-related services; or
  • To assist us in analyzing how our Service is used.

I want to inform users of this Service that these third parties have access to their Personal Information. The reason is to perform the tasks assigned to them on our behalf. However, they are obligated not to disclose or use the information for any other purpose.

Security

I value your trust in providing us your Personal Information, thus we are striving to use commercially acceptable means of protecting it. But remember that no method of transmission over the internet, or method of electronic storage is 100% secure and reliable, and I cannot guarantee its absolute security.

Links to Other Sites

This Service may contain links to other sites. If you click on a third-party link, you will be directed to that site. Note that these external sites are not operated by me. Therefore, I strongly advise you to review the Privacy Policy of these websites. I have no control over and assume no responsibility for the content, privacy policies, or practices of any third-party sites or services.

Children’s Privacy

These Services do not address anyone under the age of 13. I do not knowingly collect personally identifiable information from children under 13 years of age. In the case I discover that a child under 13 has provided me with personal information, I immediately delete this from our servers. If you are a parent or guardian and you are aware that your child has provided us with personal information, please contact me so that I will be able to do the necessary actions.

Changes to This Privacy Policy

I may update our Privacy Policy from time to time. Thus, you are advised to review this page periodically for any changes. I will notify you of any changes by posting the new Privacy Policy on this page.

This policy is effective as of 2026-07-08.

Contact Us

If you have any questions or suggestions about my Privacy Policy, do not hesitate to contact me at mgaunghtway@gmail.com.

Wednesday, July 1, 2026

Train Schedule Privacy Policy

Privacy Policy - ရထားအချိန်စာရင်း

Privacy Policy for ရထားအချိန်စာရင်း

Last updated: July 1, 2026

This Privacy Policy governs the use of the "ရထားအချိန်စာရင်း" mobile application developed by ULG. We are committed to protecting your privacy and ensuring transparency regarding any data interaction within the app.

1. Data Collection and Usage

The ရထားအချိန်စာရင်း app functions as a core train schedule and ticket price information system. We do not personally collect, store, track, or share any personal user data, background locations, or sensitive information. All schedule searches are processed directly without user registration or account sign-in requirements.

2. Advertising Partners (Google AdMob)

To support the ongoing maintenance and development of this free application, we display third-party advertisements via Google AdMob. Google AdMob may collect and process limited device identifiers to serve non-personalized or personalized ads based on your interests. These identifiers may include:

  • Google Advertising ID (AAID)
  • Device identifiers and network status
  • Anonymized analytic logs regarding ad engagement

You can manage or opt-out of personalized advertisement tracking directly within your Android system settings under Settings > Google > Ads.

3. Network Permissions

As declared in the application's manifest framework, the app requires standard internet permissions (android.permission.INTERNET and android.permission.ACCESS_NETWORK_STATE) solely to fetch real-time database updates from our secure API endpoints (gamecoinreseller.shop) and load relevant display advertisements from Google AdMob.

4. Children's Privacy

Our services do not target or solicit data from children under the age of 13. Since we do not collect personal information, we remain strictly compliant with global privacy frameworks, including COPPA and GDPR regulations.

5. Contact Us

If you have any questions or feedback regarding our structural privacy implementations, please reach out to us directly via email at:

Email: mgaunghtway@gmail.com

Sunday, June 21, 2026

Increase SWAP Space and Open BBR

 

Increase SWAP Space and Open BBR (Network Congestion Control)

 

 SWAP Space တိုးခြင်း (ဥပမာ - 2GB သို့မဟုတ် 4GB တိုးခြင်း)

1. ရှိပြီးသား swap ကို ခေတ္တပိတ်ပါ

root@server:~# swapoff -a

2. 4GB ရှိတဲ့ Swap ဖိုင်အသစ်တစ်ခု ဆောက်ပါ (1M x 4096 = 4GB)

root@server:~# dd if=/dev/zero of=/swapfile bs=1M count=4096

3. အဆိုပါ ဖိုင်ကို Security အတွက် Permission ပြင်ပါ

root@server:~# chmod 600 /swapfile

4. Swap အဖြစ် ပြောင်းလဲလိုက်ပါ

root@server:~# mkswap /swapfile

5. Swap ကို စတင် အသက်သွင်းပါ

root@server:~# swapon /swapfile

6. Server ပြန်တက်လာတိုင်း Swap အလိုအလျောက် ပွင့်နေစေရန်

root@server:~# echo '/swapfile none swap sw 0 0' | tee -a /etc/fstab

7. Swap စစ်ရန်

root@server:~# free -h










BBR (Network Congestion Control) ဖွင့်ခြင်း

1. BBR settings တွေကို system configuration ထဲ ထည့်ပါ

root@server:~# echo "net.core.default_qdisc=fq" | tee -a /etc/sysctl.conf
root@server:~# echo "net.ipv4.tcp_congestion_control=bbr" | tee -a /etc/sysctl.conf

2. Setting အသစ်တွေကို Server ထဲ Apply လုပ်ပါ (စတင်အသက်သွင်းပါ)

root@server:~# sysctl -p

3. BBR စစ်ဆေးရန် (Verification)

root@server:~# sysctl net.ipv4.tcp_congestion_control

Alternated another command to check BBR

root@server:~# lsmod | grep bbr

 




Creating Outline Server On Ubuntu OS 24.4

 

Creating Outline Server On Ubuntu OS 24.4

Step 1 - Package update and upgrade













If have a question as What do you want to do about modified configuration file sshd_config?

Choose option 2 



 

 

 

 

 

 


Step 2 - Install curl & wget






 








Step 3 - Run Outline Server Installation Script



 

Step 4 - Install requirments












Step 5 - Finished and Copied Url















Copied Url and Save in Nodepad safely and secuired.


Step 6 – Add Firewall Rule

After finished , add firewall rule for port 50493(TCP) and 28245(TCP & UDP) in Lightnode



 



 



 









Step 7 – Connect Server with Outline Manager

Download Outline Manager from official download link

Outline Manager

Alternated , if have not PC , install AOM app from Google Play Store.

That is not official app from Jigsaw.

AOM app Download  , after installed Outline Manager , open it.



 














Click on Set up Outline anywhere



 

 













Paste Outline Server Url(from Step 4) and click on DONE




 

 

 

 

 

 








Finally Generate Outline VPN Key and Click on Share Button

















Copy Access Key and use it in Outline Client app from PlayStore for android or Outline Client Software for PC.

PDF DOWNLOAD




 

Creating New Ubuntu VPS In Lightnode

 

Creating New Ubuntu VPS

 

Create Account at any VPS Provider , like as Lightnode. Click on below link

https://www.lightnode.com



Click on “Deploy New Cloud VPS” at Deploy Menu



 Step 1

Choose CPUType


 

Step 2

Choose server location



Step 3

Choose System Image


Step 4

Choose Instant


 

Step 5

Choose Network Type for Payment


 

Step 6

Choose storage(Optional)



Step 7

Create SSH Key Or Password

 

 

Remembered SSH Key or Password


 

Step 8

Add Firewall and select your firewall








 

Step 9

Check Cost and Detail and make submit



Step 10

Finally Click on Deploy







View Created Instant In Instatant List Dashboard





Connet server from Windows 10 Terminal by using IPv4 address and SSH Password

Open terminal in Windows

-          Type Win + R to show Runbox

-          Type cmd in Runbox and Enter





Connect with VPS from cmd by ssh

ssh root@130.94.42.235

type yes for first question

Are you sure you want to continue connecting (yes/no/[fingerprint])? Yes

root@130.94.42.235's password:

Enter SSH Password correctly (where you noted when create SSH Key Or Password)

After ssh login success , terminal show as



PDF Download 

 

Created By GCR

Telegam : @gamecoinreseller

Email : gamecoinreseller@gmail.com

 

 

 

Thursday, December 5, 2024

Saturday, February 17, 2024

Tayartaw Privacy Policy

Privacy Policy - တရားတော် App Privacy Policy for တရားတော် App ULG built the တရာ...