所有公开日志
所有WHY42公开日志的联合展示。您可以通过选择日志类型、输入用户名(区分大小写)或相关页面(区分大小写)筛选日志条目。
- 2024年7月23日 (二) 10:55 Riguz 留言 贡献上传文件:Llamafactory-qwen-sft.png
- 2024年7月23日 (二) 03:12 Riguz 留言 贡献创建了页面Caching patterns (创建页面,内容为“When you are caching data from your database, there are caching patterns for Redis and Memcached that you can implement, including proactive and reactive approaches. The patterns you choose to implement should be directly related to your caching and application objectives. Two common approaches are cache-aside or lazy loading (a reactive approach) and write-through (a proactive approach). A cache-aside cache is updated after the data is requested. A write-thro…”)
- 2024年7月23日 (二) 02:59 Riguz 留言 贡献创建了页面文件:From-2pc-to-sage.png
- 2024年7月23日 (二) 02:59 Riguz 留言 贡献上传文件:From-2pc-to-sage.png
- 2024年7月23日 (二) 02:58 Riguz 留言 贡献创建了页面Saga (创建页面,内容为“<ref>https://microservices.io/patterns/data/saga.html</ref> Category:Distributed”)
- 2024年7月19日 (五) 01:44 Riguz 留言 贡献创建了页面Llama.cpp (创建页面,内容为“ Category:Deep Learning”)
- 2024年7月3日 (三) 06:18 Riguz 留言 贡献移动页面Distributed:Paxos算法至Paxos algorithm,不留重定向
- 2024年7月2日 (二) 09:49 Riguz 留言 贡献创建了页面Operational Transform (创建页面,内容为“ * http://operational-transformation.github.io/ * https://jzhao.xyz/thoughts/Operational-Transform * Category:Algorithm”)
- 2024年6月26日 (三) 10:04 Riguz 留言 贡献创建了页面Rust iter and into iter (创建页面,内容为“* iter() iterates over the items by reference * iter_mut() iterates over the items, giving a mutable reference to each item * into_iter() iterates over the items, moving them into the new scope So for x in my_vec { ... } is essentially equivalent to my_vec.into_iter().for_each(|x| ... ) - both move the elements of my_vec into the ... scope. If you just need to look at the data, use iter, if you need to edit/mutate it, use iter_mut, and if you need to give it…”)
- 2024年6月25日 (二) 10:19 Riguz 留言 贡献创建了页面Build LibreOffice (创建页面,内容为“Prepare dependencies:<ref>https://wiki.documentfoundation.org/Development/lode</ref> <syntaxhighlight lang="bash"> git clone https://gerrit.libreoffice.org/lode cd lode ./setup ~/.zshrc export LODE_HOME=$HOME/lode export PATH="${LODE_HOME}/opt/bin:${PATH}" </syntaxhighlight> Build core:<ref>https://wiki.documentfoundation.org/Development/GenericBuildingHints</ref> <syntaxhighlight lang="bash"> git clone https://github.com/LibreOffice/core.git cd core ./autog…”)
- 2024年6月24日 (一) 09:31 Riguz 留言 贡献创建了页面文件:Owncloud.png
- 2024年6月24日 (一) 09:31 Riguz 留言 贡献上传文件:Owncloud.png
- 2024年6月24日 (一) 09:31 Riguz 留言 贡献创建了页面Install Collabora Office (创建页面,内容为“<ref>https://www.collaboraoffice.com/code/quick-tryout-owncloud-docker/</ref> <syntaxhighlight lang="bash"> docker run -d -p 8000:80 owncloud </syntaxhighlight> Then, visit https://localhost:8000 to configure. 600px <syntaxhighlight lang="bash"> </syntaxhighlight>”)
- 2024年6月21日 (五) 03:09 Riguz 留言 贡献创建了页面Build onlyoffice (创建页面,内容为“Only office requires old version of qt <ref>https://github.com/ONLYOFFICE/build_tools/issues/807</ref> <syntaxhighlight lang="bash"> git clone https://github.com/ONLYOFFICE/build_tools cd build_tools cat version 8.1.0 </syntaxhighlight> Modifty the dockerfile: <syntaxhighlight lang="Dockerfile"> FROM ubuntu:16.04 ENV TZ=Etc/UTC RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone RUN sed -i 's/archive.ubuntu.com/mirrors.ustc.ed…”)
- 2024年6月4日 (二) 11:11 Riguz 留言 贡献创建了页面MiniCPM (创建页面,内容为“https://github.com/OpenBMB/MiniCPM MiniCPM 是面壁智能与清华大学自然语言处理实验室共同开源的系列端侧大模型,主体语言模型 MiniCPM-2B 仅有 24亿(2.4B)的非词嵌入参数量, 总计2.7B参数量。 Category:Deep Learning”)
- 2024年5月7日 (二) 03:49 Riguz 留言 贡献创建了页面Stable Diffusion (创建页面,内容为“ = Dockerfile= <syntaxhighlight lang="dockerfile"> FROM nvidia/cuda:12.4.1-cudnn-devel-ubuntu22.04 RUN sed -i 's|http://ports.ubuntu.com/|https://mirrors.tuna.tsinghua.edu.cn/ubuntu-ports/|g' /etc/apt/sources.list /etc/apt/sources.list && \ apt update && \ apt install -y build-essential cmake wget git python3 python3-pip sudo RUN pip3 install jupyterlab RUN apt-get install -y openssh-client openssh-server && \ mkdir -p /var/run/sshd && \ sed -…”)
- 2024年4月18日 (四) 08:53 Riguz 留言 贡献创建了页面Gitea installation (创建页面,内容为“<syntaxhighlight lang="bash"> helm repo add gitea-charts https://dl.gitea.com/charts/ helm install gitea gitea-charts/gitea -f values.yaml -n gitea </syntaxhighlight> values.yaml: <syntaxhighlight lang="yaml"> redis-cluster: enabled: false postgresql: enabled: true postgresql-ha: enabled: false persistence: enabled: true ingress: enabled: true className: nginx hosts: - host: agent-git.ksord.com paths: - pathType: Prefix…”)
- 2024年4月16日 (二) 02:53 Riguz 留言 贡献创建了页面文件:Mat.png
- 2024年4月16日 (二) 02:53 Riguz 留言 贡献上传文件:Mat.png
- 2024年4月15日 (一) 12:45 Riguz 留言 贡献创建了页面文件:Visual-vm.png
- 2024年4月15日 (一) 12:45 Riguz 留言 贡献上传文件:Visual-vm.png
- 2024年4月15日 (一) 11:37 Riguz 留言 贡献移动页面Mac:设置Java版本至Mac set default java version,不留重定向
- 2024年4月15日 (一) 03:11 Riguz 留言 贡献创建了页面文件:Dynamic-cpu-high.png
- 2024年4月15日 (一) 03:11 Riguz 留言 贡献上传文件:Dynamic-cpu-high.png
- 2024年4月15日 (一) 02:54 Riguz 留言 贡献移动页面JVM memory analysis至JVM optimization,不留重定向
- 2024年4月15日 (一) 02:53 Riguz 留言 贡献移动页面Java:内存占用分析至JVM memory analysis,不留重定向
- 2024年4月9日 (二) 06:16 Riguz 留言 贡献创建了页面Kubernetes installation (创建页面,内容为“= Ubuntu 22.04 = <syntaxhighlight lang="bash"> </syntaxhighlight>”)
- 2024年4月7日 (日) 09:48 Riguz 留言 贡献创建了页面EBPF (创建页面,内容为“BPF(Berkeley Packet Filter),中文翻译为伯克利包过滤器,是类 Unix 系统上数据链路层的一种原始接口,提供原始链路层封包的收发。1992 年,Steven McCanne 和 Van Jacobson 写了一篇名为《BSD 数据包过滤:一种新的用户级包捕获架构》的论文。在文中,作者描述了他们如何在 Unix 内核实现网络数据包过滤,这种新的技术比当时最先进的数据包过滤技术快 20 倍…”)
- 2024年3月28日 (四) 06:40 Riguz 留言 贡献移动页面Knative:Installation至Knative installation,不留重定向
- 2024年3月26日 (二) 08:45 Riguz 留言 贡献创建了页面Linux install AppImage (创建页面,内容为“<syntaxhighlight lang="bash"> mkdir ~/Applications cd ~/Applications wget https://inkscape.org/gallery/item/44616/Inkscape-091e20e-x86_64.AppImage chmod u+x Inkscape-091e20e-x86_64.AppImage </syntaxhighlight> <ref>https://docs.appimage.org/user-guide/faq.html#question-where-do-i-store-my-appimages</ref> Category:Linux/Unix”)
- 2024年3月20日 (三) 03:36 Riguz 留言 贡献创建了页面JDK new features (创建页面,内容为“=JDK 22= =JDK 21= =JDK 17= =JDK 11= Category:JDK Category:Java”)
- 2024年3月20日 (三) 03:23 Riguz 留言 贡献移动页面Java:class文件结构至Java class file format,不留重定向
- 2024年3月13日 (三) 03:43 Riguz 留言 贡献移动页面VIM:命令大全至Vim cheat sheet,不留重定向
- 2024年3月8日 (五) 03:51 Riguz 留言 贡献创建了页面Linux Mint shortcuts (创建页面,内容为“Move window to side of screen: Win + ←/↑/→/↓ Switch workspace: Ctrl + Alt + ←/↑/→/↓ Category:Linux/Unix”)
- 2024年3月8日 (五) 02:17 Riguz 留言 贡献创建了页面Linux change console font (创建页面,内容为“ /etc/default/console-setup <syntaxhighlight lang="bash"> CHARMAP="UTF-8" CODESET="Lat7" FONTFACE="Terminus" FONTSIZE="28x14" </syntaxhighlight> <syntaxhighlight lang="bash"> sudo dpkg-reconfigure console-setup </syntaxhighlight> Category:Linux/Unix”)
- 2024年2月29日 (四) 14:02 Riguz 留言 贡献创建了页面69.Sqrt(x) (创建页面,内容为“=Description= {{LeetCode |id=sqrtx |no=69 |difficulty=Easy |category=Math |collection=Top 150 |title=Sqrt(x) |summary=Given a non-negative integer x, return the square root of x rounded down to the nearest integer. The returned integer should be non-negative as well.}} You must not use any built-in exponent function or operator. For example, do not use pow(x, 0.5) in c++ or x ** 0.5 in python. Example 1: <syntaxhighlight lang="bash"> Input: x = 4 Output:…”)
- 2024年2月29日 (四) 06:48 Riguz 留言 贡献移动页面CentOS:证书登陆至Linux ssh login via certificates,不留重定向
- 2024年2月27日 (二) 14:35 Riguz 留言 贡献创建了页面219.Contains Duplicate II (创建页面,内容为“=Description= {{LeetCode |id=triangle |no=219 |difficulty=Medium |category=Array |collection=Top 150 |title=Contains Duplicate II |summary=Given an integer array nums and an integer k, return true if there are two distinct indices i and j in the array such that nums[i] == nums[j] and abs(i - j) <= k.}} Example 1: <syntaxhighlight lang="bash"> Input: nums = [1,2,3,1], k = 3 Output: true </syntaxhighlight> Example 2: <syntaxhighlight lang="bash"> Input: nums =…”)
- 2024年2月20日 (二) 01:55 Riguz 留言 贡献创建了页面文件:Webrtc-workflow.png
- 2024年2月20日 (二) 01:55 Riguz 留言 贡献上传文件:Webrtc-workflow.png
- 2024年2月20日 (二) 01:55 Riguz 留言 贡献创建了页面WebRTC (创建页面,内容为“WebRTC (Web Real-Time Communication) is a free and open-source project providing web browsers and mobile applications with real-time communication (RTC) via application programming interfaces (APIs). It allows audio and video communication to work inside web pages by allowing direct peer-to-peer communication, eliminating the need to install plugins or download native apps. 600px<ref>https://www.wowza.com/blog/webrtc-server-what-it-is-a…”)
- 2024年2月19日 (一) 15:56 Riguz 留言 贡献创建了页面392.Is Subsequence (创建页面,内容为“=Description= {{LeetCode |id=is-subsequence |no=392 |difficulty=Easy |category=String |collection=Top 150 |title=Is Subsequence |summary=Given two strings s and t, return true if s is a subsequence of t, or false otherwise.}} A subsequence of a string is a new string that is formed from the original string by deleting some (can be none) of the characters without disturbing the relative positions of the remaining characters. (i.e., "ace" is a subsequence of "ab…”)
- 2024年2月19日 (一) 15:20 Riguz 留言 贡献创建了页面28.Find the Index of the First Occurrence in a String (创建页面,内容为“=Description= {{LeetCode |id=find-the-index-of-the-first-occurrence-in-a-string |no=28 |difficulty=Easy |category=String |collection=Top 150 |title=Find the Index of the First Occurrence in a String |summary=Given two strings needle and haystack, return the index of the first occurrence of needle in haystack, or -1 if needle is not part of haystack.}} == State Machine == {{Submission|runtime=1ms|memory=41.15MB|rp=36.32|mp=87.80}} <syntaxhighlight lang="java">…”)
- 2024年2月19日 (一) 14:35 Riguz 留言 贡献创建了页面58.Length of Last Word (创建页面,内容为“=Description= {{LeetCode |id=length-of-last-word |no=58 |difficulty=Easy |category=String |collection=Top 150 |title=Length of Last Word |summary=Given a string s consisting of words and spaces, return the length of the last word in the string.}} A word is a maximal substring consisting of non-space characters only. Example 1: <syntaxhighlight lang="bash"> Input: s = "Hello World" Output: 5 </syntaxhighlight> Explanation: The last word is "World" with length…”)
- 2024年2月19日 (一) 14:23 Riguz 留言 贡献创建了页面分类:LeetCode (创建页面,内容为“LeetCode algorithms.”)
- 2024年2月19日 (一) 14:01 Riguz 留言 贡献创建了页面169.Majority Element (创建页面,内容为“=Description= {{LeetCode |id=majority-elemen |no=169 |difficulty=Easy |category=Array |collection=Top 150 |title=Majority Element |summary=Given an array nums of size n, return the majority element..}} The majority element is the element that appears more than ⌊n / 2⌋ times. You may assume that the majority element always exists in the array. Example 1: <syntaxhighlight lang="bash"> Input: nums = [3,2,3] Output: 3 </syntaxhighlight> Example 2: <syntaxhi…”)
- 2024年1月31日 (三) 09:45 Riguz 留言 贡献创建了页面文件:Quic-stream-order.webp
- 2024年1月31日 (三) 09:45 Riguz 留言 贡献上传文件:Quic-stream-order.webp
- 2024年1月31日 (三) 08:00 Riguz 留言 贡献创建了页面文件:Server hello packet.png
- 2024年1月31日 (三) 08:00 Riguz 留言 贡献上传文件:Server hello packet.png