V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  pathletboy  ›  全部回复第 1 页 / 共 13 页
回复总数  255
1  2  3  4  5  6  7  8  9  10 ... 13  
4 天前
回复了 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 的代码即使混淆了还是可以审查的
200 天前
回复了 donglongfei2008 创建的主题 新手求助 我的金币去哪儿了?
203 天前
回复了 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)
}
```
273 天前
回复了 Sindo 创建的主题 Android 解决了小米手机谷歌地图没方向的问题
是不是没给 "获取设备动作与方向" 权限?默认禁的,禁了就没方向了。
2023-10-11 11:12:25 +08:00
回复了 kokutou 创建的主题 Android 小米 MIUI 无法忍受的点, 看看你有几项忍不了.
@sodayo 这题我会,游戏加速里,把网络加速关了,那玩意开 VPN 的。
2023-09-01 13:34:52 +08:00
回复了 minikyu 创建的主题 GitHub Github 搜索时,有什么方便快捷的方法屏蔽掉某些用户的仓库?
红绿灯人脸识别 NOT 蓝灯
1  2  3  4  5  6  7  8  9  10 ... 13  
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   3138 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 32ms · UTC 13:46 · PVG 21:46 · LAX 05:46 · JFK 08:46
Developed with CodeLauncher
♥ Do have faith in what you're doing.