Wednesday, May 28, 2025

draft

 

 https://www.threads.com/@alexho219/post/C_2GrRUhfsO?hl=zh-hk

 

 

 

 

 

 

 

 

 

 

 

 

 

本人羅釗海因公受傷出院後,因活動困難需請羅釗蘭女士全日照顧生活起居,

照顧範圍包括但不限於協助上落床、上落輪椅、協助洗澡、去廁所、清潔、三餐煮食、送餐、陪診等。


相關報酬為每月港幣$7,000元正,為期共三個月並於每個月月底以現金支付,共已付港幣$21,000。

 

 

 

 

 

 背景是昨天face to face招了上司黎:

========= 上司 ===========
我:「因為黎緊Patrick放假(4日),所以想搵你安排一D 同事俾我問吓local mail d 野」
佢:「咁你搵返patrick丫」
我:「我已搵左」
佢:「咁佢點講呀?」
我:「佢叫我搵其他同事,佢地個個都識」
佢:「佢地個個都識....」(唔信)
佢:「佢地個個都識....」(唔信, 佢repaet 左2次, 覺得Patrick唔會講)
佢:「咁其實你想問佢 D 咩?」
我:「例如呢D:」
我show 左一D舊email patrick 做既,上司好努力睇同了解,但佢應該睇係唔明,因為佢表情好疑惑,好無奈好難做咁款。
佢:「或者你將D 問題整個list同佢夾吓?」
我:「我已經整緊的了」
佢:「咁我今日下晝或者聽日再搵你地兩個兄」

========= Other ppl ===========
AP:「其實我地team每個人都負責唔同既野,角色冇重疊,local mail 既野應該淨係得Patrick知架wo」
另一SA:「我淨熟Inward d 野,Local mail d 野我唔熟既,如果你想知local既詳細你要問返patrick了」

所以我食屎了,難怪上司自言自語「佢地個個都識....」的確根據條team既duty 分行冇可能會咁講,所以我強烈想更正

Tuesday, May 14, 2024

[Eclipse][Resolved] Eclipse project can't save Web Project Settings Content root

 The problem is whatever you edit in Web Project Settings, after save and close the properties,  Reopen that page again, you would found the valuable you just edited haven't been saved, keep using the default value.

Edit Web Project Settings Content: 

1) In "Project Explorer" View, right click the project, and then click properties
2) Edit the content of Context root
3) Click "Apply and Close"

Clean project 

1) Server View > right click your server > select Clean 

2) wait for finished
3) Server View > right click your server > select Publish

Double Check:

1) In "Project Explorer" View, right click the project, and then click properties
2) you can find the content of Context root changed, but not using the default variable.


Reference

https://stackoverflow.com/questions/2437465/how-to-change-context-root-of-a-dynamic-web-project-in-eclipse


Monday, May 13, 2024

[SQLDeveloper][Resolved] Warning - could not install some modules

Error Message

Warning - could not install some modules: oracle.java_annotations - org.netbeans.InvalidException: Netigso: C:\Softwares\sqldeveloper\ide\lib\annotations.jar: Not found bundle:oracle.java_annotations"

Solution

Visit the directory below and you would found 2 files inside:

C:\Users\[YOUR_USERNAME]\AppData\Roaming\SQL Developer\system23.1.1.345.2114\system_cache\config\Modules

 


Delete them and restart your SQL Developer again.

Reference

https://ahmedfattah.com/2024/01/14/sql-developer-warning-could-not-install-some-modules/


Sunday, November 5, 2023

[Windows11] [Resolved] docker desktop unexpected wsl error

 


Run command prompt with Administrator permission (Run as administrator) 

and then run the command :

netsh winsock reset

And then restart the computer, the issue disappear.


Reference:

https://www.cnblogs.com/520future/p/17615780.html

Tuesday, November 22, 2022

[Resolved][Errno 48] error while attempting to bind on address ('127.0.0.1', 8000): address already in use

Error:

[Errno 48] error while attempting to bind on address ('127.0.0.1', 8000): address already in use

Method 1

run this command to get the the related process

#ps -fA | grep python 

Mark down the second number of returned results. 

#kill 1192 


Method2 

Kill all process on 8000 port: 

#kill -9 $(lsof -t -i:"8000") 


Reference:

https://stackoverflow.com/questions/34457981/trying-to-run-flask-app-gives-address-already-in-use

https://stackoverflow.com/questions/19071512/socket-error-errno-48-address-already-in-usePE4WW9ubHOASEzgiT6lDg65jIDE/edit