Release of Inspiration
扁頭舅父仔嘅網誌
搜尋此網誌
2026年6月8日星期一
"Haven't"〈Yoasobi feat. Lee Suhyun〉
2026年6月4日星期四
仲夏
今年仲夏(6–8月)香港預料會比常年偏熱,天文台指出全年平均氣溫「偏高」,並有較高機會進入歷史前十名;媒體與專家估計市區最高溫可能逼近或超過38°C(HKO)。城市熱島效應會令市區比郊區高 約 3–4°C,屯門相對新界內陸或山區仍會感到悶熱但略低於市中心。
Microsoft Copilot
香港今年仲夏(大約6至8月)大機會偏熱,天文台最新季節預報亦指出2026年6月至8月香港氣溫「高於正常」而雨量「正常至偏少」的機會稍高。
perplexity.ai and HKO
根據香港天文台最新的季度預報,在氣候持續暖化與厄爾尼諾現象等多重因素影響下,預料香港今年仲夏(6月至8月)的氣溫會高於正常,且全年平均氣溫有很大機會躋身歷史最高首十位。
gemini.google.com
2026年6月2日星期二
Part I of Python test
def encodeString(stringVal):
encodedList = []
prevChar = stringVal[0]
count = 0
for char in stringVal:
if prevChar != char:
encodedList.append((prevChar, count))
count = 0
prevChar = char
count = count + 1
encodedList.append((prevChar, count))
return encodedList
Step 1: Setup
encodedList = []→ empty list to store results.prevChar = stringVal[0]→ start with the first character of the string.count = 0→ counter for consecutive occurrences.
If the current character is different from the previous one:
Save the previous character and its count into
encodedList.Reset
countto 0.Update
prevCharto the new character.
(character, count) tuples.Naughty
catnap: a short sleep
pickled: (of food) preserved in vinegar
chile con queso: (in Tex-Mex cooking) a thick sauce of melted cheese seasoned with chilli peppers, typically served warm as a dip for tortilla chips
bequeath: pass (something) on or leave (something) to someone else
Plymouth was a beloved American automobile brand produced by the Chrysler Corporation from 1928 until 2001.
tow: to pull a car, boat, etc. behind another vehicle, using a rope or chain
junkyard: a place where old cars, machines, etc. are collected, so that parts of them, or the metal they are made of, can be sold to be used again
a chunk of: (informal) a fairly large amount of something
fetch: to go to where somebody/something is and bring them/it back
cruising: (of a car, etc. or its driver) to drive along slowly, especially when you are looking at or for something
rear-wheel drive: a system in which power from the engine is sent to the back wheels of a vehicle
fishtail: if a vehicle fishtails, the back end slides from side to side
joyriding: the crime of stealing a car and driving it for pleasure, usually in a fast and dangerous way
barbed wire: strong wire with short sharp points on it, used especially for fences
bail out: to escape from a situation that you no longer want to be involved in
pint: a pint of beer (especially in a pub)
foible: a silly habit or a strange or weak aspect of a person’s character that is not considered serious by other people
frenzy: a state of great activity and strong emotion that is often violent or frightening and not under control
attribute something to something: to say or believe that something is the result of a particular thing
intimidate: to frighten or threaten somebody so that they will do what you want
deferential: showing that you respect somebody/something, especially somebody older or more senior than you
"To get a kick out of" is an idiom that means to really enjoy something, or to get a strong feeling of excitement and pleasure from doing or experiencing it.
bemused: showing that you are confused and unable to think clearly
bide: to stay or live in a place
insubordination: the act of refusing to obey orders or show respect for somebody who has a higher rank
Bill Gates "Source Code"
Online Dictionaries Used:
hk.dictionary.search.yahoo.com
www.oxfordlearnersdictionaries.com
Google AI overview
2026年5月28日星期四
Dictionary Comprehensions in Python
Revision:
In Python, lists, tuples, sets, and dictionaries are all built-in data structures, but they differ in mutability, ordering, and how they store data. Lists and dictionaries are mutable, tuples are immutable, and sets enforce uniqueness. Dictionaries store key–value pairs, while the others store single values.
List: [ ]
Tuple: ( )
Set: { } or set()
Dictionary: {key: value}
myList = [1,2,3,4,5]
[2*item for item in myList]
This a list comprehension, not a for loop.
In a for ... in loop, the colon (:) is mandatory because it introduces a block of indented code.
for item in myList:
print(2*item)
Startup Company
bear down on: to move quickly toward someone or something in a determined way
get something off the ground: to start happening successfully; to make something start happening successfully
payroll: a list of people employed by a company showing the amount of money to be paid to each of them
mundane: not interesting or exciting
monte: a card game
viable: that can be done; that will be successful
topology: a branch of mathematics concerned with those properties of geometric configurations (such as point sets) which are unaltered by elastic deformations (such as a stretching or a twisting) that are homeomorphisms
disabuse somebody (of something) to tell somebody that what they think is true is, in fact, not true
Bill Gates "Source Code"
Online Dictionaries Used:
hk.dictionary.search.yahoo.com
www.oxfordlearnersdictionaries.com
www.merriam-webster.com
2026年5月26日星期二
西九文化區日落美景
Aperture Priority (光圈先決): f/9
ISO: 100
(Shutter Speed) 快門: 1/100 second
Focal Length (焦距): 135mm
Equivalent Focal Length (等效焦距): 216mm
Tripod Used and Image Stabilizer Off
White Balance (白平衡): Shade (陰影模式)
效果:相機會自動加暖色調,橘色比肉眼看更明顯
負曝光補償(Exposure Compensation): -1ev
Landscape Picture Style (Contrast: +1, Saturation: +1)
Evaluative Metering (權衡式測光)