跳转至内容
  • D2Learn Opensource - 简介

    已固定 d2learn开源
    1
    0 赞同
    1 帖子
    18 浏览
    尚无回复
  • 增加在线工具功能

    Announcements | 公告
    2
    0 赞同
    2 帖子
    14 浏览
    尚无回复
  • 开启邮件服务

    Announcements | 公告
    3
    0 赞同
    3 帖子
    7 浏览
    sunrisepeakS

    @lu9943 社区的用户注册和邮件认证

  • 0 赞同
    2 帖子
    42 浏览
    LittlefeanL

    增加了一个像素点之间液化连接视觉测试功能

    <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Document</title> <style> body { background-color: black; color: white; display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100vh; /* 使 body 高度为视口高度 */ margin: 0; /* 去除默认的 margin */ } .matrix { display: flex; flex-direction: column; margin: 10px 0; padding: 5px; filter: contrast(500%); } .row { display: flex; } .cell { width: 20px; /* 每个单元格的宽度 */ height: 20px; /* 每个单元格的高度 */ display: flex; align-items: center; justify-content: center; border: none; /* 单元格边框 */ margin: 0; /* 单元格间距 */ filter: blur(10px); /* 默认模糊效果 */ transition: filter 0.3s ease; /* 过渡效果 */ } .cell.true { background-color: rgb(255, 255, 255); /* 1 的背景色 */ } .cell.false { background-color: rgb(0, 0, 0); /* 0 的背景色 */ } .slider-container { margin-top: 20px; /* 滑动框与矩阵的间距 */ } .input-container { margin-bottom: 20px; /* 输入框与滑动框的间距 */ } </style> </head> <body> <div class="input-container"> <label for="wordInput">输入单词: </label> <input type="text" id="wordInput" value="d2learn" /> <button id="lookUpButton">查询</button> </div> <div class="slider-container"> <label for="blurRange">调整模糊程度: </label> <input type="range" id="blurRange" min="0" max="50" value="10" /> </div> <div class="slider-container"> <label for="contrastRange">调整对比度: </label> <input type="range" id="contrastRange" min="100" max="5000" value="500" /> </div> <script> function charToAsciiBinaryArray(char) { const asciiCode = char.charCodeAt(0); const binaryString = asciiCode.toString(2).padStart(8, "0"); return Array.from(binaryString, (bit) => bit === "1"); } function stringToBinaryArrays(str) { return str.split("").map(charToAsciiBinaryArray); } function updateMatrix(word) { const d2learnBinaryArray = stringToBinaryArrays(word); // 清空矩阵内容 matrixContainer.innerHTML = ""; // 创建新的矩阵并添加到 body 中 d2learnBinaryArray.forEach((row) => { const rowDiv = document.createElement("div"); rowDiv.className = "row"; row.forEach((cell) => { const cellDiv = document.createElement("div"); cellDiv.className = "cell " + (cell ? "true" : "false"); rowDiv.appendChild(cellDiv); }); matrixContainer.appendChild(rowDiv); }); } const matrixContainer = document.createElement("div"); matrixContainer.className = "matrix"; document.body.appendChild(matrixContainer); // 初始化默认显示 "d2learn" 的矩阵 updateMatrix("d2learn"); // 处理输入框和查询按钮的事件 const lookUpButton = document.getElementById("lookUpButton"); lookUpButton.addEventListener("click", () => { const word = document.getElementById("wordInput").value; // 获取输入的单词 updateMatrix(word); // 更新矩阵 }); // 处理模糊度滑动框的输入事件 const blurRange = document.getElementById("blurRange"); blurRange.addEventListener("input", () => { const blurValue = blurRange.value; // 获取当前的滑动值 const cells = document.querySelectorAll('.cell'); cells.forEach(cell => { cell.style.filter = `blur(${blurValue}px)`; // 设置模糊效果 }); }); // 处理对比度滑动框的输入事件 const contrastRange = document.getElementById("contrastRange"); contrastRange.addEventListener("input", () => { const contrastValue = contrastRange.value; // 获取当前的滑动值 matrixContainer.style.filter = `contrast(${contrastValue}%)`; // 设置对比度效果 }); console.log(d2learnBinaryArray); </script> </body> </html>
  • 怎么理解aarch64里的堆栈和寄存器?

    已锁定 已解决 General Discussion | 综合讨论
    3
    1 赞同
    3 帖子
    34 浏览
    sunrisepeakS

    @lu9943 在 怎么理解aarch64里的堆栈和寄存器? 中说:

    这我就很纳闷了,要是往上生长,那不就是开辟空间是add吗?然后sp不是往上移动了吗?真的被这个绕晕了呀!(文章出处链接文本)

    其实用 往上生长 这个词是不合适的, 因为这设计到 内存图怎么画
    而使用 往低地址生长 进行记忆。 那么:

    如果内存图最上面是地址0, 那就是 往上生长 反之, 如果 内存地址0在最下面 那么就是 往下生长

    333561cb-e053-42a0-8ad7-ed23ac3f7933-image.png

  • 社区指南

    已固定 Announcements | 公告
    1
    0 赞同
    1 帖子
    58 浏览
    尚无回复
  • Test Q&A features | 测试问答功能

    已锁定 已解决 Announcements | 公告
    5
    0 赞同
    5 帖子
    7 浏览
    sunrisepeakS

    标记问题被解决

    image.png

  • 添加全局搜索功能

    Announcements | 公告
    2
    0 赞同
    2 帖子
    12 浏览
    sunrisepeakS
    Meilisearch 全文本搜索配置(支持中文) 0. config.json

    生成一个key

    openssl rand -hex 32

    nodebb配置文件

    { "search": { "plugin": "nodebb-plugin-meilisearch" }, "meilisearch": { "host": "http://localhost:7700", "apiKey": "your_api_key", "index": "d2learn" } } 1.创建service文件 sudo vim /etc/systemd/system/meilisearch.service 2.配置文件 [Unit] Description=Meilisearch After=systemd-user-sessions.service [Service] Type=simple Restart=always ExecStart=/usr/bin/meilisearch --db-path your_meilisearch_data_path/data.ms --env production Environment="MEILI_MASTER_KEY=your_master_key_here" [Install] WantedBy=multi-user.target 3.加载并启动服务 sudo systemctl daemon-reload sudo systemctl enable meilisearch 4.开机启动 - 可选 sudo systemctl enable meilisearch 5.建立索引 - 可选

    如果已有之前的内容可以到插件配置处进行重建索引

  • hello d2learn

    Announcements | 公告
    1
    0 赞同
    1 帖子
    4 浏览
    尚无回复
  • Welcome | 欢迎大家加入d2learn社区

    Announcements | 公告
    2
    0 赞同
    2 帖子
    22 浏览
    sunrisepeakS

    @sunrisepeak 😊 😠 😊 😠 😊

  • 如何开发一个公开课项目?

    Open Courses | 公开课
    1
    0 赞同
    1 帖子
    23 浏览
    尚无回复
  • Hello D2ds

    已固定 d2ds | 动手学数据结构
    1
    0 赞同
    1 帖子
    20 浏览
    尚无回复
  • Welcome to your NodeBB!

    已移动 Announcements | 公告
    1
    0 赞同
    1 帖子
    9 浏览
    尚无回复