V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  iwishing  ›  全部回复第 8 页 / 共 10 页
回复总数  182
1  2  3  4  5  6  7  8  9  10  
2018-08-10 09:16:04 +08:00
回复了 nekoneko 创建的主题 奇思妙想 把变色的话题继续到底
读取 app 颜色要比读取外壳颜色容易多了
2018-07-26 10:55:13 +08:00
回复了 88250 创建的主题 分享创造 Java 开源博客 Solo 2.9.2 发布,看板娘来了
看成老板娘+1
2018-06-10 09:47:35 +08:00
回复了 ltoddy 创建的主题 Python Python 一键更新电脑所有第三方依赖的脚本
不怕更新了依赖以后不能用了?
2018-06-06 14:09:00 +08:00
回复了 ranwu 创建的主题 程序员 传说中的全栈技术检查列表
战略性 mark
2018-05-23 08:32:05 +08:00
回复了 billgreen1 创建的主题 Python 请教如何避免函数的副作用
在调用前复制一下入参不行么?所有的函数调用都不想改入参?需要改入参的情况才是常态吧?
2018-04-19 15:50:24 +08:00
回复了 GoPHP 创建的主题 程序员 据说优秀的代码没有 else?
说自己的代码用 if 从来不用 else 的,就好像是说自己的代码从来没有 bug 一样
一个条件判断输入的变量,一般来讲有 4 种情况,true,false,null,'',后三者都会走 else,不走 else 就要在之前全部判定掉
不管怎么说,加 else 是个好习惯
2018-04-17 23:52:15 +08:00
回复了 aliipay 创建的主题 Linux 请教一个 sort 命令的问题
字典顺序
r1226
r126
r1326
2018-04-05 15:27:42 +08:00
回复了 higoge 创建的主题 微软 edge 浏览器无法访问虚拟机 tomcat,但是其他浏览器可以
换个端口看看?
2018-03-29 09:27:36 +08:00
回复了 9nix00 创建的主题 程序员 个人技术公众号开始试运行,求订阅、求扩散
关注 ing
2018-02-15 23:16:17 +08:00
回复了 isCyan 创建的主题 支付宝 大家集五福拿了多少钱?
2.08
2018-01-02 12:50:02 +08:00
回复了 110male 创建的主题 新手求助 django 怎么读
被解救的姜戈里的姜戈
2017-12-31 10:29:10 +08:00
回复了 piaochen0 创建的主题 Linux tar 命令找不到文件的错误
第二个命令在 17.10 可行

我猜,权限问题?
2017-12-20 17:52:13 +08:00
回复了 uuus007 创建的主题 问与答 我觉得我们每个人都应该注意培养一个工作之外的收入来源
996 每天累成狗,哪有时间搞副业,除非上班搞
2017-11-13 17:57:05 +08:00
回复了 warcraft1236 创建的主题 Linux 关于.service 文件的编写
ExecStart=/root/apache-tomcat-9.0.1/bin/startup.sh

#!/bin/sh

# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

# -----------------------------------------------------------------------------
# Start Script for the CATALINA Server
# -----------------------------------------------------------------------------

# Better OS/400 detection: see Bugzilla 31132
os400=false
case "`uname`" in
OS400*) os400=true;;
esac

# resolve links - $0 may be a softlink
PRG="$0"

while [ -h "$PRG" ] ; do
ls=`ls -ld "$PRG"`
link=`expr "$ls" : '.*-> \(.*\)$'`
if expr "$link" : '/.*' > /dev/null; then
PRG="$link"
else
PRG=`dirname "$PRG"`/"$link"
fi
done

PRGDIR=`dirname "$PRG"`
EXECUTABLE=catalina.sh

# Check that target executable exists
if $os400; then
# -x will Only work on the os400 if the files are:
# 1. owned by the user
# 2. owned by the PRIMARY group of the user
# this will not work if the user belongs in secondary groups
eval
else
if [ ! -x "$PRGDIR"/"$EXECUTABLE" ]; then
echo "Cannot find $PRGDIR/$EXECUTABLE"
echo "The file is absent or does not have execute permission"
echo "This file is needed to run this program"
exit 1
fi
fi

exec "$PRGDIR"/"$EXECUTABLE" start "$@"
2017-10-29 18:24:51 +08:00
回复了 wb14123 创建的主题 分享创造 用深度学习做了一个自动对对联的系统
天竟然不对地,对的是人
2017-10-16 00:10:12 +08:00
回复了 woshichuanqilz 创建的主题 Python selenium 调用 ie 无效是为什么什么反应都没有?
可以把 IEDriverServer.exe 放在 c:\windows\system32 目录下,这样就不用改 Path 了
2017-10-16 00:06:50 +08:00
回复了 woshichuanqilz 创建的主题 Python selenium 调用 ie 无效是为什么什么反应都没有?
有报错吗?弹出了驱动程序的那个黑框吗?
2017-10-12 11:18:26 +08:00
回复了 2ME 创建的主题 程序员 复现了神奇的问题
强制自动更新,然后重启了呗,chrome 应该会显示非正常关闭吧?
2017-10-10 13:26:59 +08:00
回复了 liuhaotian 创建的主题 V2EX 最近 V2EX 常出现 Access Denied 页面(第一次打开)
多频繁的登陆会导致封 IP 啊?
1  2  3  4  5  6  7  8  9  10  
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   946 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 49ms · UTC 20:33 · PVG 04:33 · LAX 12:33 · JFK 15:33
Developed with CodeLauncher
♥ Do have faith in what you're doing.