V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  lovelylain  ›  全部回复第 22 页 / 共 48 页
回复总数  948
1 ... 18  19  20  21  22  23  24  25  26  27 ... 48  
2023-06-30 12:57:52 +08:00
回复了 kylebing 创建的主题 分享发现 支付宝里加视频,真恶心
百度也很恶心,搜索结果里一堆视频自动播放,随随便便几十兆流量就没有了,还找不到设置地方
2023-06-30 12:53:11 +08:00
回复了 muzihuaner 创建的主题 分享创造 欢迎加入山河大学
教育部等八部门关于规范“大学”“学院”名称登记使用的意见 https://www.gov.cn/zhengce/zhengceku/2021-05/19/content_5608515.htm
2023-06-27 23:14:05 +08:00
回复了 evefree2 创建的主题 程序员 有深圳的伙伴一起搞事情吗?
@MrKeanu 现在留邮箱都搞这么复杂了吗?只说是 aes
2023-06-27 22:06:28 +08:00
回复了 qsnow6 创建的主题 NAS 如何管理 NAS 中各种 Docker 容器的端口?
你们没有内网穿透在外网访问的需求吗?我最开始也是在 nginx 里配置域名,但是域名多了也记不住。后来用 panel_iframe 配置到 homeassistant 的侧边栏,不常用的用 weblink 做成链接。但是直接以域名暴露到外网,要想安全就得设置密码,输密码我嫌麻烦,所以整了个 ha 的反代插件,由 ha 来反代服务,这样我只需要给 HA 配置域名就行了,其他服务通过 HA 侧边栏或链接访问,能免密免登录的都尽量免登录。
2023-06-27 09:21:18 +08:00
回复了 n18255447846 创建的主题 问与答 低功耗"软路由"推荐
N1 呗,2G 运存 8G 闪存,CPU 性能跑常用软路由应用也足够,最大缺点就是单网口,我的不知道是有问题还是本来就这样,600M 宽带只能跑 450 ,但是你才 100M 宽带,对你来说完美。
2023-06-21 23:07:57 +08:00
回复了 wenerme 创建的主题 程序员 基于 SNI 的全局代理
clash fakedns 透明代理 不香吗?
2023-06-21 19:32:56 +08:00
回复了 JohnXu20151211 创建的主题 macOS 求推荐 mac 上的 json 格式化工具
@ai277014717 缺个禁止 ensure_ascii 的参数,实用性大打折扣。
去错地方了,应该去贴吧。
2023-06-17 16:58:32 +08:00
回复了 Riesling 创建的主题 问与答 如何远程管理运行中的 docker container?
意思就是想在 image 里埋个后门程序,什么后门程序合适?
2023-06-16 18:42:16 +08:00
回复了 idealhs 创建的主题 程序员 🐒: if (a == 2) return true else return false
if (a==1 && b==2) || (a!=1 && b!=2) {
}
2023-06-15 13:15:37 +08:00
回复了 PrtScScrLk 创建的主题 生活 预约了一次提前还贷。
前几年还的都是利息不是提前还贷的好理由,你要是等额本息贷 100 万 30 年利率 3%,3 年后合计还了 4216.04*36=15 万多,其中本金只还了 6 万 4 ,按你的感觉也是还的都是利息得提前还款吧,但实际上 3%的利率比 3 年存款利率还低,同样多的钱你存定期比提前还还划算。所以是否提前还要看理财收益率能否跑赢房贷利率以及是否愿意为了保持一定的流动性牺牲一些利率,而非因为前期还的都是利息就要提前还。利率 4.95 的话,我也会选择提前还一些。
2023-06-15 12:48:22 +08:00
回复了 idc123 创建的主题 问与答 DNS 是怎么了吗? 114 的
@wowofe dnsmasq
--server=[/[<domain>]/[domain/]][<server>[#<port>]][@<interface>][@<source-ip>[#<port>]]
Specify upstream servers directly. Setting this flag does not suppress reading of /etc/resolv.conf, use --no-resolv to do that. If one or more optional domains are given, that server is used only for those domains and they are queried only using the specified server. This is intended for private nameservers: if you have a nameserver on your network which deals with names of the form xxx.internal.thekelleys.org.uk at 192.168.1.1 then giving the flag --server=/internal.thekelleys.org.uk/192.168.1.1 will send all queries for internal machines to that nameserver, everything else will go to the servers in /etc/resolv.conf. DNSSEC validation is turned off for such private nameservers, UNLESS a --trust-anchor is specified for the domain in question. An empty domain specification, // has the special meaning of "unqualified names only" ie names without any dots in them. A non-standard port may be specified as part of the IP address using a # character. More than one --server flag is allowed, with repeated domain or ipaddr parts as required.
More specific domains take precedence over less specific domains, so: --server=/google.com/1.2.3.4 --server=/www.google.com/2.3.4.5 will send queries for google.com and gmail.google.com to 1.2.3.4, but www.google.com will go to 2.3.4.5

Matching of domains is normally done on complete labels, so /google.com/ matches google.com and www.google.com but NOT supergoogle.com. This can be overridden with a * at the start of a pattern only: /*google.com/ will match google.com and www.google.com AND supergoogle.com. The non-wildcard form has priority, so if /google.com/ and /*google.com/ are both specified then google.com and www.google.com will match /google.com/ and /*google.com/ will only match supergoogle.com.

For historical reasons, the pattern /.google.com/ is equivalent to /google.com/ if you wish to match any subdomain of google.com but NOT google.com itself, use /*.google.com/

The special server address '#' means, "use the standard servers", so --server=/google.com/1.2.3.4 --server=/www.google.com/# will send queries for google.com and its subdomains to 1.2.3.4, except www.google.com (and its subdomains) which will be forwarded as usual.

Also permitted is a -S flag which gives a domain but no IP address; this tells dnsmasq that a domain is local and it may answer queries from /etc/hosts or DHCP but should never forward queries on that domain to any upstream servers. --local is a synonym for --server to make configuration files clearer in this case.

IPv6 addresses may include an %interface scope-id, eg fe80::202:a412:4512:7bbf%eth0.

The optional string after the @ character tells dnsmasq how to set the source of the queries to this nameserver. It can either be an ip-address, an interface name or both. The ip-address should belong to the machine on which dnsmasq is running, otherwise this server line will be logged and then ignored. If an interface name is given, then queries to the server will be forced via that interface; if an ip-address is given then the source address of the queries will be set to that address; and if both are given then a combination of ip-address and interface name will be used to steer requests to the server. The query-port flag is ignored for any servers which have a source address specified but the port may be specified directly as part of the source address. Forcing queries to an interface is not implemented on all platforms supported by dnsmasq.

Upstream servers may be specified with a hostname rather than an IP address. In this case, dnsmasq will try to use the system resolver to get the IP address of a server during startup. If name resolution fails, starting dnsmasq fails, too. If the system's configuration is such that the system resolver sends DNS queries through the dnsmasq instance which is starting up then this will time-out and fail.
2023-06-15 10:22:17 +08:00
回复了 GT1 创建的主题 随想 诊所看不起小病
单说药钱,很多西药如果社康医院给开的话,比网上买药便宜,网上买药比线下药店要便宜。不过这类药在医院是要做验血等检查才给开,验个血就小 100 ,而且有时候碰到庸医不给开,或者会搭售一些更贵的中成药安慰剂。
2023-06-13 09:02:24 +08:00
回复了 Wockee 创建的主题 生活 求助!楼上的住户总是关我家水表阀门
买错摄像头了,换成可视门铃试试
2023-06-09 19:10:25 +08:00
回复了 naminokoe 创建的主题 生活 国外是如何补贴生娃养娃的,以 JP 为例
建议楼主折算成人民币方便对比:
国内生孩子有工作有生育保险顺产自费好像大概几千。
个税专项扣除 3 岁前有婴幼儿照护有 3 岁后有子女教育,每月 1000 额度,按 20%税率折合人民币 200 。
深圳小孩看病同二档医保。
2023-06-09 10:36:01 +08:00
回复了 w1lu0bOo 创建的主题 C++ 如何适应? C 艹程序员做 ANSI C 的项目
是机器上没有 c++运行库还是项目代码是纯 c ,后者的话用 c++实现功能编译成 so 给 c 调用。
2023-06-07 12:57:55 +08:00
回复了 strp 创建的主题 宽带症候群 联通光猫 CUAdmin 密码不对
我这边是
user:CUAdmin
password:cuadmin+( mac 地址前 6 位)
密码是小写
@xiaoxx97 无非是统一标准吧,但是第三方偏不支持怎么实现你说的优势? homeassistant 已经让我家不需要用十几个智能家居 app 就能控制家里的设备,除此之外 matter 还有什么优势?
matter 有什么优势?
1 ... 18  19  20  21  22  23  24  25  26  27 ... 48  
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   5337 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 44ms · UTC 07:58 · PVG 15:58 · LAX 23:58 · JFK 02:58
Developed with CodeLauncher
♥ Do have faith in what you're doing.