V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  pathletboy  ›  全部回复第 1 页 / 共 13 页
回复总数  257
1  2  3  4  5  6  7  8  9  10 ... 13  
3 天前
回复了 weijancc 创建的主题 程序员 好家伙, GitHub Copilot 今天免费了!
所以这额度大概能用多久?
30 天前
回复了 main1234 创建的主题 程序员 go build/run 非常慢,有什么排查工具么
go build -v
看看哪个包卡着长
国内可能不太好找,推荐有域名的话可以用 cloudflare pages
@Windyzhou 那你是 FTP 慢啊,和 ADB 没啥关系了。
@Windyzhou 一个是 adb 协议传输 apk ,一个是 http 协议传输 apk
@Windyzhou 不用 root
@Windyzhou adb shell 用 busybox wget http://domain/xxx.apk 下载到盒子内置存储后 pm install xxx.apk 安装。
http 可以你自己手机开 server ,我猜你是用的甲壳虫,甲壳虫里切到运行命令选项卡,运行写好的命令一键安装。
试试 adb 跑脚本下载了后 pm install
试试 shizuku 用 adb 激活。
@iddddg JS 的代码即使混淆了还是可以审查的
226 天前
回复了 donglongfei2008 创建的主题 新手求助 我的金币去哪儿了?
229 天前
回复了 afxcn 创建的主题 Go 编程语言 使用 go 遇到的一个奇怪问题,求教
这么改试试
```go
package helper

import (
"math/rand"
"time"
)

const _charsetRand = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789@#$"

var _seededRand *rand.Rand

func init() {
_seededRand = rand.New(rand.NewSource(time.Now().UnixNano()))
}

// RandStringWithCharset rand string with charset
func RandStringWithCharset(length int, charset string) string {
b := make([]byte, length)
l := len(charset)
for i := range b {
b[i] = charset[_seededRand.Intn(l)]
}
return string(b)
}

// RandString rand string
func RandString(length int) string {
return RandStringWithCharset(length, _charsetRand)
}

// RandInt rand int between [min, max)
func RandInt(min int, max int) int {
if min <= 0 || max <= 0 {
return 0
}

if min >= max {
return max
}

return _seededRand.Intn(max-min) + min
}

// RandMax rand int between [0, max)
func RandMax(max int) int {
if max <= 1 {
return 0
}

return _seededRand.Intn(max)
}
```
299 天前
回复了 Sindo 创建的主题 Android 解决了小米手机谷歌地图没方向的问题
是不是没给 "获取设备动作与方向" 权限?默认禁的,禁了就没方向了。
1  2  3  4  5  6  7  8  9  10 ... 13  
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   2629 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 31ms · UTC 07:15 · PVG 15:15 · LAX 23:15 · JFK 02:15
Developed with CodeLauncher
♥ Do have faith in what you're doing.