Tools->Options->Text Editor-> Visual Appearance->Font Rendering 设置为 Proportional, 如下图
Tools->Options->Text Editor-> Visual Appearance->Font Rendering 设置为 Proportional, 如下图
Android Studio中,无法进行调试,一直显示 Listing Device, 点击右侧Device File Explorer, 提示错误”Error initializing ADB:Android Debug Bridge not found “,尝试重装 adb无效,最后使用以下方式解决。
This fixes the problem for me:
Open File -> Project Structure;
In Project, select valid Project SDK;
In Modules -> myapp_android -> Dependencies, select a valid Module SDK.
Then click menu File->Invalidate Cache/ Restart, if problem exist,
Then close Android studio, kill adb process in Task Manager, do adb start-server
in command line and start Android studio.
在Ubuntu 18.04系统中安装TimescaleDB的方法
注意:由于本文示例就是用Postgre 10,如果您使用的是更新的版本,比如 PostgreSQL 14,安装timescale请参考以下步骤:
1 |
apt install gnupg postgresql-common apt-transport-https lsb-release wget |
1 |
/usr/share/postgresql-common/pgdg/apt.postgresql.org.sh |
1 |
curl -L https://packagecloud.io/timescale/timescaledb/gpgkey | sudo apt-key add - |
1 2 |
sh -c "echo 'deb https://packagecloud.io/timescale/timescaledb/debian/ $(lsb_release -c -s) main' > /etc/apt/sources.list.d/timescaledb.list" sh -c "echo 'deb https://packagecloud.io/timescale/timescaledb/ubuntu/ $(lsb_release -c -s) main' > /etc/apt/sources.list.d/timescaledb.list" |
1 |
wget --quiet -O - https://packagecloud.io/timescale/timescaledb/gpgkey | apt-key add - |
1 |
apt update |
1 |
apt install timescaledb-2-postgresql-14 |
NOTE
bash apt-get install timescaledb-2-2.6.0-postgresql-12
You can see the full list of TimescaleDB releases by visiting our releases pagehttps://packagecloud.io/timescale/timescaledb按照下面提供的方法在Ubuntu 18.04 LTS服务器中启动并运行TimescaleDB。 Continue reading
# 本文作者: coneco @Coneco’s diary
# 本文链接: https://conecoy.cn/Technology/Development/VS-MSVC多个版本时的正确使用与问题解决/
# 版权声明: 本站所有文章除特别声明外,均采用 (CC)BY-NC-SA 许可协议。转载请注明出处!
本文产生的原因
最近在用 VS 2019 来编译兼容 WinXP 的程序时,发现高版本 (14.29.xxxxx) 的 MSVC 的 runtime 代码部分不兼容 winXP。之后使用低版本(14.25.xxxxx)的 MSVC 就可以运行在 winXP 上,所以本文的目的是记录整个问题的解决工程,方便其他朋友参考。