not b@tk1z
#TIL RT: @jwildeboer@social.wildeboer.net If you, for whatever reason, want to make sure your code does not get used by Google - license it under AGPL :) #LifeHack https://opensource.google/docs/using/agpl-policy/ 🐦🐘🐙
转发过来似乎会丢图,src: https://t.me/plltxe/3252
Telegram
Plltxe.
#TIL
RT: @jwildeboer@social.wildeboer.net
If you, for whatever reason, want to make sure your code does not get used by Google - license it under AGPL :) #LifeHack
https://opensource.google/docs/using/agpl-policy/
🐦🐘🐙
RT: @jwildeboer@social.wildeboer.net
If you, for whatever reason, want to make sure your code does not get used by Google - license it under AGPL :) #LifeHack
https://opensource.google/docs/using/agpl-policy/
🐦🐘🐙
#TIL
在手机开启 USB 调试模式、电脑端正确配置好 ADB 环境的前提下,将电脑与手机相连,将旧版 APK 安装包传输至电脑后通过以下指令即可无视降级限制强制覆盖安装:
https://sspai.com/post/64750
在手机开启 USB 调试模式、电脑端正确配置好 ADB 环境的前提下,将电脑与手机相连,将旧版 APK 安装包传输至电脑后通过以下指令即可无视降级限制强制覆盖安装:
adb install -r -d app.apk
https://sspai.com/post/64750
少数派 - 高品质数字消费指南
爱尝鲜也别忘了「后悔药」:Android 应用降级指南 - 少数派
即便我们在一般情况下更加关注新应用、新功能,学会适时降级也是必不可少的技能之一。
#TIL
list the family names of installed fonts on Windows
list the family names of installed fonts on Windows
src: https://superuser.com/questions/760627/how-to-list-installed-font-families
[System.Reflection.Assembly]::LoadWithPartialName("System.Drawing")
(New-Object System.Drawing.Text.InstalledFontCollection).Families
or
Add-Type -AssemblyName PresentationCore
[Windows.Media.Fonts]::SystemFontFamilies | Select-Object -Property Source
Super User
How to list installed font families?
How can I list the family names of installed fonts on Windows?
Any command line utility or any registry paths?
Any command line utility or any registry paths?
https://stackoverflow.com/questions/31836267/how-does-it-happened-that-a-variable-used-before-its-declared
#TIL
#TIL
Stack Overflow
how does it happened that a variable used before it's declared?
I am confused about a function dictCreate() in file dict.c of redis implementation. I am going to paste the code here:
/* Create a new hash table
* T = O(1)
*/
dict *dictCreate(dictType *type, ...
/* Create a new hash table
* T = O(1)
*/
dict *dictCreate(dictType *type, ...
#TIL 原来 MySQL 里也要考虑 null safety(
https://dev.mysql.com/doc/refman/8.0/en/working-with-null.html
https://stackoverflow.com/questions/21927117/what-is-this-operator-in-mysql/21928508#21928508
https://dev.mysql.com/doc/refman/8.0/en/working-with-null.html
https://stackoverflow.com/questions/21927117/what-is-this-operator-in-mysql/21928508#21928508
Stack Overflow
What is this operator <=> in MySQL?
I'm working on code written by a previous developer and in a query it says,
WHERE p.name <=> NULL
What does <=> mean in this query? Is it something equal to =? Or is it a syntax error...
WHERE p.name <=> NULL
What does <=> mean in this query? Is it something equal to =? Or is it a syntax error...