qwertyegg

qwertyegg

V2EX member #250462, joined on 2017-08-24 00:01:24 +08:00
多进制数的乘法时间复杂度 O(n)?
程序员  •  qwertyegg  •  May 2, 2025  •  Lastly replied by Ljxtt
7
国内可以合法参与 polymarket 吗?
问与答  •  qwertyegg  •  Dec 29, 2024  •  Lastly replied by daozaihuai
1
大家帮我看看这个系统进程是干嘛的
Windows  •  qwertyegg  •  Nov 12, 2022  •  Lastly replied by ragnaroks
6
双人对赌赢的概率?
  •  1   
    问与答  •  qwertyegg  •  Sep 8, 2021  •  Lastly replied by qwertyegg
    1
    请教一个 android 生命周期的问题
    程序员  •  qwertyegg  •  Nov 4, 2020  •  Lastly replied by demo06
    10
    有点不理解这是什么情况
    问与答  •  qwertyegg  •  May 12, 2020  •  Lastly replied by qwertyegg
    2
    qwertyegg's recent replies
    May 1, 2025
    Replied to a topic by qwertyegg 程序员 多进制数的乘法时间复杂度 O(n)?
    前面一段排版有点问题,

    0-0-0 表示 0

    1-1-1 表示 1

    2-2-2 表示 2

    3-3-0 表示 3

    4-4-1 表示 4

    5-0-2 表示 5
    Mar 13, 2025
    Replied to a topic by soberzml Android ios 换安卓手机(求推荐
    @lthon 相机不错

    pixel 喜欢整三星的 modem, e5123 e5300 等等,性能比高通的差不说,耗电飞快
    Dec 20, 2024
    Replied to a topic by wildlynx Google Google 不再是最好的搜索引擎
    大部分时候用 goog ,偶尔顺手用 brave ,表示完全不同意 lz 的说法。
    Dec 10, 2024
    Replied to a topic by lewiet Android 有没有 Android 免费没广告的多开 APP 推荐?
    @penpen0404 island 创建的是 work profile ,小米没用过不清楚。三星不能创建另外三个 profile ,有个 secure folder 可以临时创建一个第三 profile 。pixel ,一加都可以 5 开
    Oct 22, 2024
    Replied to a topic by PatrickLe NAS 付费求搬运 Google Drive 电影库
    现在比较靠谱的是 mega
    Oct 6, 2024
    Replied to a topic by lewiet Android 有没有 Android 免费没广告的多开 APP 推荐?
    island

    自带的 multi profile ,可以五开:本体+work profile(island 同款), 2 个完整 profile ,一个 guest profile

    但是同时能接受消息的只能本体+work profile
    Mar 15, 2024
    Replied to a topic by hellodage663 分享创造 sora 文本转视频软件,介绍与教程
    什么李鬼网站
    油管 premium ,或者免费的 revanced ,mxplayer 都有
    Dec 30, 2023
    Replied to a topic by mfsw Windows windows 下,如何无损旋转 mp4 视频?
    下面这段 ahk 代码,"把 ffmpeg 加到 path 里面"和"mp4 文件不要带空格“两个要求满足的时候应该就可以批量转了

    #Requires AutoHotkey v2.0
    #SingleInstance Force

    ; Get list of files matching a prefix under a folder.
    ; Set prefix an empty string "" if we want all, otherwise add prefix to limit selection
    prefix := ""


    ;=============== init script ===============
    targetPattern := concat3("D:\captures\", prefix, "*.mp4")
    video_files := []
    loop files targetPattern
    video_files.Push(A_LoopFileName)
    lastIndex := video_files.Length

    ;;;;;;;;;;; F2 to cycle through rotation jobs
    #MaxThreadsPerHotkey 1
    F2::{
    static counter := 1
    while (counter <= lastIndex){
    ffmpeg_rotate(video_files[counter])
    counter := counter + 1
    }
    ; MsgBox "That was the last, exit."
    ExitApp
    }


    ffmpeg_rotate(video_file){
    SetWorkingDir "D:\captures"
    Run concat4("ffmpeg -display_rotation:v:0 90 -i ", video_file, " -c copy rotated_", video_file)
    }

    concat3(x, y, z) {
    Return x y z
    }

    concat4(w, x, y, z) {
    Return w x y z
    }
    About   ·   Help   ·   Advertise   ·   Blog   ·   API   ·   FAQ   ·   Solana   ·   3965 Online   Highest 6679   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 22ms · UTC 05:11 · PVG 13:11 · LAX 22:11 · JFK 01:11
    ♥ Do have faith in what you're doing.