Junlin Zhou

Results 36 comments of Junlin Zhou

There's a typo in the readme ```bash sudo mv ./kind /user/local/bin/kind ``` should be ```bash sudo mv ./kind /usr/local/bin/kind ```

> build.gradle(project) `allprojects { repositories { google() jcenter() maven { url 'https://www.jitpack.io' } } }` > > build.gradle(app) `implementation 'com.github.AAChartModel:AAChartCore-Kotlin:-SNAPSHOT'` > > 还是出现了 can't resolve class AAChartCore.AAChartConfiger.AAChartView 版本得按照 git 仓库的标签来,你去...

Try this: ```kotlin val aaChartModel = AAChartModel.Builder(this) .setChartType(chartTypeEnum) .setBackgroundColor("#4b2b7f") .setDataLabelsEnabled(false) .setYAxisGridLineWidth(0f) .setLegendEnabled(false) .setTouchEventEnabled(true) .setSeries( AASeriesElement() .name("Tokyo") .data( arrayOf( arrayOf(2.5, 7.2), arrayOf(7.9, 5.1), arrayOf(13.2, 7.2), ) ) ).build() ```

> including the following statement in my build-gradle script gives a 'Could not find com.github.AAChartModel:AAChartCore-Kotlin:-SNAPSHOT. Required by: project :app' error. Any idea how to fix this error ? > >...

我也遇到了类似的问题,请问近期有修复这个bug的计划吗?

可以看看 [这个链接](https://github.com/edwardzjl/deeplearning.ai_JupyterNotebooks/tree/no-answer-edwardzjl) 之前做的出了问题,这次更新后整个删了重传了。

> 我想说,同时设置 http-only 和 secure是不是重复了呢? > 因为 secure 代表只有 https 协议才会发送cookie,http-only 代表仅当 http 和 https 协议下才发送 cookie,本地方式获取 cookie 无效,可以总结为下面这张表: > > # | http | https | 本地 | >...

> Looking at [Grafana's docs for custom context-path](https://grafana.com/tutorials/run-grafana-behind-a-proxy/), it doesn't look like that it is possible to set this up with environment variables passed to the container... > > Any...

Sorry to comment on this closed issue, but I got a similar problem. I'm working on a project that have 3 categories of dependencies, the default one ("packages"), dev-packages and...