app:compileDebugKotlin 问题的解决方法

从谷歌codelabs上克隆的软件,在Android Studio中构建的时候提示: A problem was found with the configuration of task ‘:app:compileDebugKotlin’ (type ‘KotlinCompile’). In plugin ‘kotlin-android’ type ‘org.jetbrains.kotl...

DSL element 'android.dataBinding.enabled' is obsolete 解决方法

DSL element ‘android.dataBinding.enabled’ is obsolete 解决方法从谷歌codelabs上克隆的软件,在Android Studio中构建的时候提示: DSL element ‘android.dataBinding.enabled’ is obsolete and has been replaced with ‘android.build...

jcenter() is deprecated 解决方法

jcenter() is deprecated 解决方法从谷歌codelabs上克隆的软件,在Android Studio中构建的时候提示: Please remove usages of jcenter() Maven repository from your build scripts and migrate your build to other Maven repositories...

Gradle sync failed 句柄无效 的解决方法

从Github上克隆了自己的项目,使用Android Studio无法打开,提示如下: 1222:43 Gradle sync started22:43 Gradle sync failed: 句柄无效。 (438 ms) 解决方法: 1File->Project Sturcture 里面,把JDK的地址更换为自己的JDK(例如JDK-15)。

Windows 10 版本 21H1 更新后指纹解锁相关问题

问题场景:Windows 10 版本21H1 更新之后处理器 Intel(R) Core(TM) i7-8565U 原因分析:推测是Windows系统大更新后,安全相关的配置/组件发生变动。

Windows 10 版本 21H1不推送的手动更新方法

背景Windows 在2021年5月推出了21H1版本更新,但是因为推送需要时间,直接点击设置中的获取更新可能无法获取到,所以我们可以根据下面的步骤手动更新系统版本。 步骤 下载Windows 10 更新助手—-易升通过 更新助手网站或直接点击这里下载Windows 10 更新助手。 运行Windows 10 更新助手更新助手下载完成后,直接运行程序,按照步骤, 一直点下一步即可。 更新后...

Windows系统的Anaconda与Tensorflow(tf.contrib不能使用的问题)

前言疫情期间与同学一起学习制作了Covid-2019社交距离检测系统,需要使用到Tensorflow,由于我使用的python环境过高,(项目需要使用python3.6)便想到了在Anaconda环境下安装Tensorflow。将安装过程中的坑记录在这里。 安装过程 安装Anaconda到Windows系统中,打开Anaconda Prompt。 创建虚拟环境,虚拟机名称nameOfVM,...

Debian 7 的 apt-get update返回404 Not Found

简介 Debian 7 (Wheezy)版本 外网环境使用apt-get update返回`12Err http://archive.debian.org wheezy-updates/main i386 Packages 404 Not Found [IP :] 问题分析与解决方法零、Debian Wheezy版本原始源已经不存在了,所以需要修改源列表(S...

CPU中寄存器参数的传递方式和问题和如何解决

CPU的寄存器如何被用来传递参数给系统调用?一开始,参数在CPU’s 寄存器里面,然后当系统调用的时候,CPU会将寄存器里面的参数复制到内核空间kernel space,或者说堆栈stack中。 如果系统调用有很多参数,这可能会导致什么问题?因为CPU里面只有8个通用32位寄存器:eax,ebx,ecx,edx,esi,edi,ebp,esp,除了eax和esp两个特殊的,只有剩下的6个ge...

AssertionError Cannot find installation of real FFmpeg (which comes with ffprobe)

简介Tensorflow视频解码错误,错误提示如下: 1AssertionError: Cannot find installation of real FFmpeg (which comes with ffprobe). 解决办法安装conda-forge。 1conda install ffmpeg -c conda-forge 参考【1】https://github.com/Mrina...