Sunday 19 May 2024

Mức thuế ở Úc từ 07/2024

Chính phủ Úc đã thay đổi các mức thuế suất cho thu nhập cá nhân và các mức thu nhập (được gọi là ‘ngưỡng’) áp dụng những thuế suất này. Việc này sẽ áp dụng cho tất cả thu nhập chịu thuế bạn kiếm được từ ngày 1 tháng 7 năm 2024. Những thay đổi này sẽ không ảnh hưởng đến việc khai thuế 2023–24 của bạn.

Từ ngày 1 tháng 7 năm nay, những thay đổi này sẽ:

  • giảm mức thuế suất 19 phần trăm xuống 16 phần trăm
  • giảm mức thuế suất 32,5 phần trăm xuống 30 phần trăm
  • tăng ngưỡng thuế 37 phần trăm từ $120.000 lên $135.000
  • tăng ngưỡng thuế 45 phần trăm từ $180.000 lên $190.000.

Những thay đổi này sẽ giúp giảm thuế cho tất cả những người đóng thuế ở Úc.


Các mức thuế suất và ngưỡng thuế thu nhập áp dụng như thế nào?

Các mức thuế suất và ngưỡng thuế thu nhập cá nhân mới sẽ có hiệu lực từ ngày 1 tháng 7 năm 2024. Nếu bạn là người đóng thuế ở Úc, bạn được hưởng ngưỡng miễn thuế là $18.200. Điều này nghĩa là bạn có thể có thu nhập lên tới $18.200 mỗi năm mà không phải trả thuế.

Nếu bạn có thu nhập từ $18.201 đến $45.000:

  • $18.200 đầu tiên vẫn được miễn thuế, và
  • bạn sẽ phải trả 16 xu tiền thuế cho mỗi đô-la kiếm được từ $18.201 đến $45.000.

Nếu bạn có thu nhập từ $45.001 đến $135.000:

  • $18.200 đầu tiên vẫn được miễn thuế, và
  • bạn sẽ phải trả 16 xu tiền thuế cho mỗi đô-la kiếm được từ $18.201 đến $45.000, cộng với
  • 30 xu tiền thuế cho mỗi đô-la kiếm được từ $45.001 đến $135.000.

Nếu bạn có thu nhập từ $135.001 đến $190.000:

  • $18.200 đầu tiên vẫn được miễn thuế, và
  • bạn sẽ phải trả 16 xu tiền thuế cho mỗi đô-la kiếm được từ $18.201 đến $45.000, cộng với
  • 30 xu tiền thuế cho mỗi đô-la kiếm được từ $45.001 đến $135.000, cộng với
  • 37 xu tiền thuế cho mỗi đô-la kiếm được từ $135.001 đến $190.000.

Nếu bạn có thu nhập trên $190.000:

  • $18.200 đầu tiên vẫn được miễn thuế; và
  • bạn sẽ phải trả 16 xu tiền thuế cho mỗi đô-la kiếm được từ $18.201 đến $45.000, cộng với
  • 30 xu tiền thuế cho mỗi đô-la kiếm được từ $45.001 đến $135.000, cộng với
  • 37 xu tiền thuế cho mỗi đô-la kiếm được từ $135.001 đến $190.000, cộng với
  • 45 xu tiền thuế cho mỗi đô-la kiếm được trên ngưỡng $190.000.

Một số người đóng thuế, chẳng hạn như người đóng thuế có thu nhập thấp và người cao tuổi ('người cao niên') cũng có thể đủ điều kiện được hưởng các khoản giảm thuế (đôi khi được gọi là hoàn thuế), mà trực tiếp giảm bớt số tiền thuế chung cuộc họ phải trả.

Friday 19 April 2024

How to connect to VPS with Private Key on Mac OS

1. Use the cd command to navigate to the directory where your private key file is stored. For example, if your private key is in the Downloads folder, you can navigate there using: 

cd ~/Downloads

2. Set appropriate permissions for your private key: Your private key file should have restricted permissions to ensure security.

chmod 600 your_private_key.pem

3. Connect to the VPS using SSH: Use the ssh command to connect to your VPS. The command syntax is as follows:

ssh -i your_private_key.pem username@your_vps_ip

4. Switch to root account:

sudo -i

5. Read file content:

nano filename.conf

Friday 12 April 2024

How to cycle a fish tank right way

 Here is the fishless cycle. You are adding WAY too much ammonia, and stopping (or greatly slowing) the growth of the very bacteria you want.


I agree: 100% water change, refill (don't forget the dechlor) then allow it to run for 24-48 hours, and check the ammonia. You might find a trace from whatever water lingered after your water change, but it should not keep on rising. If it does, this suggests there is a lot of organic matter, perhaps animal manure, stuck in the pores of the lava rock.

Tuesday 9 April 2024

How to Convert Your International Driving Licence In Australia

If you’ve recently moved to Australia, you might be wondering whether or not your international licence is valid.

In most states, you can drive with an international licence, but only for a short period of time — usually around 3 months. After this period, you will need to transfer your international licence into an Australian state licence, depending on where you’re located. 

The process of transferring an international driver's licence to an Australian driver's licence varies from state to state. 

We explain how to convert your international driving licence in Australia in this state-by-state guide.

Friday 2 February 2024

Dictionary

To add a key-value pair to a blank dictionary
# Create a blank dictionary my_dict = {} # Add a key-value pair my_dict["key"] = "value" # Now my_dict contains {"key": "value"}

We have a dictionary as below

student_scores = {
"Harry": 81,
"Ron": 78,
"Hermione": 99,
"Draco": 74,
"Neville": 62,
}
If we use
for student in student_scores:
score = student_scores[student]
print(score)
The result would be:
81
78
99
74
62
if we use:
for student in student_scores:
score = student_scores[student]
print(student)
The result would be:
Harry
Ron
Hermione
Draco
Neville
if we use:
print(student_scores)
The result would be:
{'Harry': 81, 'Ron': 78, 'Hermione': 99, 'Draco': 74, 'Neville': 62}


How to add dictionary to a list
# Create a list
my_list = []

# Create a dictionary
my_dict = {"key": "value"}

# Add the dictionary to the list
my_list.append(my_dict)

# Now my_list contains the dictionary
How to get the max value in a dictionary
max_value = max(dictionary.value())


Tuesday 30 January 2024

Function

 def greet_with(name, location):

    print(f"hello {name}")
print(f"How is the weather in {location}")
greet_with("Harry", "Inala")

Wednesday 24 January 2024

Convert String to List and List to String

Convert String to List

 my_string = "hello world"


method_1 = list(my_string)
method_2 = my_string.split()
print(method_1)
print(method_2)

The result will be:
['h', 'e', 'l', 'l', 'o', ' ', 'w', 'o', 'r', 'l', 'd']
['hello', 'world']

Convert List to String
my_list = ['h', 'e', 'l', 'l', 'o', ' ', 'w', 'o', 'r', 'l', 'd']
string_from_list = "".join(my_list)

If your list contains elements other than strings (e.g., numbers), you need to convert them to strings first using the map() function or a list comprehension.

string_from_numbers = ''.join(map(str, my_list_of_numbers))


Mức thuế ở Úc từ 07/2024

Chính phủ Úc đã thay đổi các mức thuế suất cho thu nhập cá nhân và các mức thu nhập (được gọi là ‘ngưỡng’) áp dụng những thuế suất này. Việc...