V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  ragnaroks  ›  全部回复第 4 页 / 共 166 页
回复总数  3314
1  2  3  4  5  6  7  8  9  10 ... 166  
wasabi ,按存储量付费,流量免费。不算快但是也不慢,之前用的 bunnyCDN 上个月开始全线 reset
使用上一代 RSC ( 13 )的代码 https://github.com/ragnaroks/ztocp
我最开始也觉得脱裤子放屁,后来我试用了一下,感觉比起 PHP 更像是缺少服务端单一状态管理的 blazor server ,而且性能比 blazor 差的多得多得多
176 天前
回复了 mingdeng 创建的主题 程序员 这几年开始落伍的开发技术有哪些?
你还能想起来名字的都不算落伍。选一个的话我会说是 CoffeeScript 。
挺巧,我也是遇到这个问题,不过我是用的 virtualbox ,试了一番发现不用 virtio 驱动就不会遇到这个问题
我也是一加 coloros ,试了下点贴吧的广告,游戏类似乎是贴吧自己下载然后弹出安装,拼多多和京东会打开自带市场且不会自动下载。
182 天前
回复了 tux 创建的主题 Windows win10,11 居然内置 curl 了
dig 有一大堆东西,不太可能内置。

curl 行为也和 linux ( debian 11 )不同, [curl --header "Host: web.site" https://1.2.3.4] 将会报错证书错误,但 linux 下正常响应
不会用 linux 又不得不用的话,可以考虑装个桌面环境,操作起来与 windows 无异,起码不会被偷裤子
看起来需要增加一个参数用于指定挂载的 DOM 来让第三方做集成,直接使用 body 绝对不是好的选择
197 天前
回复了 qinyui 创建的主题 JavaScript js 生成 html 的 ui 界面有什么好的方式?
react 打包成 web-component ,可直出 componet-name.js
对了,如果开发时间宽裕的话,可以用 unity3D 做,挺多人用 unity3D 做跨平台图形界面应用程序的,但是个人账户发布的制品在启动时会显示 unity3D 的标识。
blazor-desktop ,纯 csharp ,发布到 edge-webview2 ,唯一的问题是新手大概要被 blazor 的一些特性绕几天
miniserve 即用即删,HFS 快捷稳定
第一眼像是静态版 node ,如果能有稳定的生态应该是不错的选择
214 天前
回复了 niurougan 创建的主题 Edge Edge 团队又搞什么鬼
@NSAgold 你说的这个问题,如果是关闭时候弹出的那个,除了卸载 edge 外别无他法
219 天前
回复了 jlak 创建的主题 分享发现 无对比无伤害,容器下测试 wp 和 next.js
@jlak 唯一有点不同的就是我是 ISG 增量生成,但理论上和 SSR 在峰值资源占用上没有差别
219 天前
回复了 jlak 创建的主题 分享发现 无对比无伤害,容器下测试 wp 和 next.js
@jlak 就是普通的 npm run build && npm run start ,点我头像进我网站可测速,我的容器甚至只给了 64M hard limit
220 天前
回复了 jlak 创建的主题 分享发现 无对比无伤害,容器下测试 wp 和 next.js
nextjs 容器( pod ?)内包含 mysqld 吗?一般来说 nextjs SSR 单个实例不会超过 40M 。
看第一页感觉楼主有点得理不饶人,看到后面发现是我跪久了。
root@cn1427:~# cat /var/lib/containers/storage/volumes/openresty-config/_data/nginx.conf
# nginx.conf -- docker-openresty
#
# This file is installed to:
# `/usr/local/openresty/nginx/conf/nginx.conf`
# and is the file loaded by nginx at startup,
# unless the user specifies otherwise.
#
# It tracks the upstream OpenResty's `nginx.conf`, but removes the `server`
# section and adds this directive:
# `include /etc/nginx/conf.d/*.conf;`
#
# The `docker-openresty` file `nginx.vh.default.conf` is copied to
# `/etc/nginx/conf.d/default.conf`. It contains the `server section
# of the upstream `nginx.conf`.
#
# See https://github.com/openresty/docker-openresty/blob/master/README.md#nginx-config-files
#

user root;
worker_processes 2;
worker_rlimit_nofile 65535;
pcre_jit on;
error_log /logs/error.log;

events {
use epoll;
worker_connections 16384;
accept_mutex off;
multi_accept on;
}

http {
include mime.types;
default_type application/octet-stream;
log_format main '$time_local # $remote_addr => $http_x_real_ip[$http_x_forwarded_for] | $status | $http_referer | $http_user_agent | $request';
access_log /logs/access.log main;
client_body_temp_path /var/run/openresty/nginx-client-body;
proxy_temp_path /var/run/openresty/nginx-proxy;
fastcgi_temp_path /var/run/openresty/nginx-fastcgi;
uwsgi_temp_path /var/run/openresty/nginx-uwsgi;
scgi_temp_path /var/run/openresty/nginx-scgi;
sendfile on;
keepalive_timeout 65;
server_tokens off;
more_clear_headers Server;
fastcgi_buffer_size 64k;
fastcgi_buffers 4 64k;
fastcgi_busy_buffers_size 128k;
fastcgi_temp_file_write_size 256k;
resolver 223.5.5.5;
include /etc/nginx/conf.d/*.conf;
}
1  2  3  4  5  6  7  8  9  10 ... 166  
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   3343 人在线   最高记录 6543   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 57ms · UTC 12:01 · PVG 20:01 · LAX 05:01 · JFK 08:01
Developed with CodeLauncher
♥ Do have faith in what you're doing.