A Journal Through My Activities, Thoughts, and Notes
#网友语录
之前眼睛手术看不见的日子我发誓只要让我能看见东西就行,哪怕看个轮廓也行,我就会好好活着;后来有一周得了中耳炎,每天脑子里的声音都重声,痛苦的不行,我又发誓只要能看清东西听清东西就行。所以现在这种能看到蓝天白云听到虫鸣鸟叫身体无痛无病的每一天我都很开心,每天对我都很宝贵。
之前眼睛手术看不见的日子我发誓只要让我能看见东西就行,哪怕看个轮廓也行,我就会好好活着;后来有一周得了中耳炎,每天脑子里的声音都重声,痛苦的不行,我又发誓只要能看清东西听清东西就行。所以现在这种能看到蓝天白云听到虫鸣鸟叫身体无痛无病的每一天我都很开心,每天对我都很宝贵。
我的自行车已经骑了6年多,自从上次给链条上油之后滑轮滑的分外厉害,每次骑都要小心翼翼的均匀用力,怎么也调不好。恐怕链条和飞轮都该换了。
于是最近两天都在骑Eric的自行车上班,反正他也不骑。很好骑呢!看来买新自行车的计划又可以放放了。
于是最近两天都在骑Eric的自行车上班,反正他也不骑。很好骑呢!看来买新自行车的计划又可以放放了。
#网友语录
家里两台 #Mac 经常要互传文件,隔空投送和系统自带的网络功能经常会找不到对方,最近发现 LocalSend 真不错,基本上完美地解决了我局域网内互传文件的需求,而且还是免费的: localsend.org 👍
家里两台 #Mac 经常要互传文件,隔空投送和系统自带的网络功能经常会找不到对方,最近发现 LocalSend 真不错,基本上完美地解决了我局域网内互传文件的需求,而且还是免费的: localsend.org 👍
明朝末年,经常有地方知县知府不给明军开门,因为明军进城后的烧杀劫掠一点儿不比李自成少。比如持尚方宝剑督师的大学士李建泰,从北京出发领兵迎击李自成,这一路就没有地方官敢给他的明军开门,气的这位大学士还没到保定呢就带着明军攻破了两个县城了……
#网摘
#网摘
The text in @413 (How to stay calm) is from a picture I stole on the internet, it is surprisingly popular. More than a hundred people retweeted it on mastodon. I learnt a lot of people want to be clam in this busy world.
#How To Stay Calm (without any hacks)
Overthinking → Write
Uninspired → Read
Scared → Take a risk
Stuck → Walk
Tired → Sleep
Confused → Ask
Frustrated → Move
Burned out → Take a day off
Impatient → Review progress
Unmotivated → Remember your "why"In #WinForms (and more generally in many Windows applications), the
& character has a special meaning when used in a button's text. It is used to define an access key or mnemonic for the button. When you use & in the text of a button, it allows you to specify a keyboard shortcut that activates the button when the user presses the Alt key along with the corresponding letter.Here's how it works:Single Ampersand &): It creates a mnemonic. For example, if you set a button's text to "Save &File", the F in "File" will be underlined, and the user can press Alt + F to activate the button.Double Ampersand (&&): It is used to display a single & character in the text. This is useful if you want to include an actual & character in the button text but don’t want it to be treated as a mnemonic. For example, if you set the text to "Save && Exit", the button text will display as "Save & Exit", with only the & in "Exit" being treated as a mnemonic.