Loading...

home-banner-background home-banner-background

Neurocoda

  • HOME
  • LINKS
  • ARCHIVES
    • CATEGORIES
    • TAGS
  • STATUS
  • ABOUT ME
  • HOME
  • LINKS
  • ARCHIVES
    CATEGORIES
    TAGS
  • STATUS
  • ABOUT ME
94
Tags
7
Categories
40
Posts
Neurocoda
94
Tags
7
Categories
40
Posts
  • Tailscale 暴露 Socks5 端口供代理软件使用

    Tailscale 暴露 Socks5 端口供代理软件使用

    💡本人长期使用 Clash 或 Quantumult X 等软件,在通过 Tailscale 搭建好内网服务后,每次需要访问内网服务时都需要切换软件(Tailscale 客户端与 上述代理软件同一时间只能运行一个),很不方便。故考虑添加内网代理节点到代理软件并配置分流规则使得不再需要频繁切换软件。 部署 Tailscale 容器参考 **Userspace networking mode ...
      2025-01-26  
    • Net 
     
    • Tailscale 
    • | 内网穿透 
    • | 中继服务 
    Read moreTailscale 暴露 Socks5 端口供代理软件使用 
  • 免域名 tailscale derp 搭建

    免域名 tailscale derp 搭建

    #Tailscale #中继服务 #内网穿透 Tailscale 部署1curl -fsSL <https://tailscale.com/install.sh> | sh tailscale 若通过 docker 搭建,可能会导致搭建 docker derper 鉴权错误 (似乎是因为进程通信条件:与 tailscaled 通信不满足) 这里一键脚本搭建好后进行登录操...
      2025-01-13  
    • Net 
     
    • Tailscale 
    • | 内网穿透 
    • | 中继服务 
    Read more免域名 tailscale derp 搭建 
  • 超实数系视角下的函数极限

    超实数系视角下的函数极限

    邻域设 是数轴上一点, 是某一正数,称 为点 的 邻域,记做 ,即 上述描述是 实心邻域 ,另有 去心邻域 的概念: 即不包含 处。 另外,对邻域以 处为界限划分可以将区间划分为 左邻域、右邻域 ,这里不再赘述。 对于邻域的定义, 是一个模糊的数,它用于限定邻域这个区域的大小。函数 在 的邻域有定义即函数在 的附近有定义,但是这个 “附近” 在现阶段数系的角度无...
      2024-11-30  
    • Mathematics 
     
    • 超实数 
    • | 函数极限 
    Read more超实数系视角下的函数极限 
  • Golang 入门指南

    Golang 入门指南

    💡在学习 Golang 时,我发现它在语法上既有类似 C++ 和 Python 的地方,也有独特之处。与 C++ 一样,Golang 是强类型的、编译型语言,强调性能和效率,但它去除了头文件和类等复杂结构,更简洁高效。而与 Python 相似,Golang 提供了自动垃圾回收、内置的并发支持以及简洁的代码风格,减少了编码的繁琐。Golang 没有 Python 的动态类型,变量声明严格要...
      2024-11-04  
    • Coding 
     
    • Golang 
    Read moreGolang 入门指南 
  • 记一次自建 DoH 服务器

    记一次自建 DoH 服务器

    CoreDNSCoreDNS 是一个灵活且功能强大的 DNS 服务器,支持多种插件扩展。它非常适合用于搭建 DoH 服务。 初始化安装必要组件首先,更新系统并安装所需的软件包,包括 Docker Compose 和 Certbot(用于获取 SSL 证书)。 1sudo apt update && sudo apt upgrade -y && sudo ap...
      2024-09-21  
    • Net 
     
    • DNS 
    • | DoH 
    • | 网络安全 
    Read more记一次自建 DoH 服务器 
  • The race is on to control the global supply chain for AI chips

    The race is on to control the global supply chain for AI chips

    💡 All content on this blog is intended solely for the purpose of learning English and is not meant to infringe on any copyrights. All translations and citations are...
      2024-09-13  
    • Linguistics 
     
    • English 
    Read moreThe race is on to control the global supply chain for AI chips 
  • AI firms will soon exhaust most of the internet’s data

    AI firms will soon exhaust most of the internet’s data

    💡 All content on this blog is intended solely for the purpose of learning English and is not meant to infringe on any copyrights. All translations and citations are...
      2024-09-04  
    • Linguistics 
     
    • English 
    Read moreAI firms will soon exhaust most of the internet’s data 
  • A short history of AI

    A short history of AI

    💡 All content on this blog is intended solely for the purpose of learning English and is not meant to infringe on any copyrights. All translations and citations are...
      2024-09-03  
    • Linguistics 
     
    • English 
    Read moreA short history of AI 
  • 多系统共用蓝牙设备

    多系统共用蓝牙设备

    我的环境: Ubuntu : Ubuntu 24.04 DesktopWindows : Windows 11 要点是获取一个系统配对好的蓝牙设备的 MAC地址、LTK、IRK,再将这些信息写入其他系统的注册表。 首先在 Ubuntu 上配对蓝牙设备,再在 windows 上配对,使得两系统存储该蓝牙设备的信息(我们之后就只需要修改 Address,LTK,IRK),并且当前 Windo...
      2024-02-13  
    • Opt 
     
    • 多系统 
    • | 蓝牙 
    Read more多系统共用蓝牙设备 
  • Win 服务器保持断开 RDP 后的会话

    Win 服务器保持断开 RDP 后的会话

    创建文本并输入以下内容: 123for /f "skip=1 tokens=3" %%s in ('query user %USERNAME%') do ( %windir%\\System32\\tscon.exe %%s /dest:console) 将后缀改为 exe 格式。固定到任务栏即可,每次要断开连接就点击这个文件(会保持运行状态)。 进入下面的地址: 1%userprofi...
      2024-01-13  
    • Opt 
     
    • RDP 
    • | Windows 
    Read moreWin 服务器保持断开 RDP 后的会话 
1234
© 2025 - 2025    Neurocoda

40 posts in total 49k words in total

VISITOR COUNT TOTAL PAGE VIEWS
POWERED BY Hexo THEME Redefine v2.8.2
Blog up for days hrs Min Sec