1-13 664 views
阅读全文 0
请注意,逸凡并不支持低于IE8的浏览器,为了获得最佳效果,请下载最新的浏览器,推荐下载 Chrome浏览器
https://kevin-da-silva.medium.com/vlang-tutorials-hot-code-reload-bfad7186a08d
module main
import time
fn hot_code(v int) {
println('message to change $v')
}
fn main() {
mut v := 1
for {
hot_code(v)
time.sleep(500 * time.millisecond)
...
1-12 583 views
https://kevin-da-silva.medium.com/vlang-tutorials-hot-code-reload-bfad7186a08d
module main
import time
fn hot_code(v int) {
println('message to...
const configDefaultYamlContent = '''
name: UNKNOWN
flutter_gen:
Optional
output: lib/gen/
Optional
line_length: 80
Optional
parse_metadata: false
Optional
integrations:
flutter_svg: false
flare_flutter: false
rive: false
lottie: false
assets:
Opt...
12-12 637 views
const configDefaultYamlContent = '''
name: UNKNOWN
flutter_gen:
Optional
output: lib/gen/
Optional
line_length: 80
Optional
parse_metadata: false
...
您提供的函数列表是一个 Redis 客户端 API 的部分实现,通常用于与 Redis 数据库进行交互。以下是这些函数的简要解释,按类别进行分类以帮助理解其功能和用途。
Pipeline 和 Transaction
Pipeline: 一种机制,可以将多个命令一起发送到 Redis,以减少网络延迟并提...
11-27 545 views
阅读全文 0
fragment shader
#version 330 core
uniform vec3 iResolution; // viewport resolution (in pixels)
uniform float iTime; // shader playback time (in seconds)
uniform float iTimeDelta; // render time (...
1-21 826 views
fragment shader
#version 330 core
uniform vec3 iResolution; // viewport resolution (in pixels)
uniform float iTime; ...
// clang -framework Cocoa main.m -o app && ./app
#import <Cocoa/Cocoa.h>
@interface AppDelegate : NSObject <NSApplicationDelegate>
@end
@implementation AppDelegate
- (void)applicationDidFinishLaunching:(NSNotification *)no...
8-17 682 views
// clang -framework Cocoa main.m -o app && ./app
#import <Cocoa/Cocoa.h>
@interface AppDelegate : NSObject <NSApplicationDelegat...
connect simulator
adb connect 127.0.0.1:5555
clear data
adb -s "81MEBN32GKBS" shell pm clear com.zpszjs.gardepro.mobile
show current activity
adb shell dumpsys window windows | grep "Current"
screenshot
adb shell screencap -p /sdcard/screenshot....
7-14 664 views
connect simulator
adb connect 127.0.0.1:5555
clear data
adb -s "81MEBN32GKBS" shell pm clear com.zpszjs.gardepro.mobile
show current activity
adb...