V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  sutra  ›  全部回复第 44 页 / 共 52 页
回复总数  1027
1 ... 36  37  38  39  40  41  42  43  44  45 ... 52  
@chenxy 你看到等于号结尾的,就该想到是 base64. 虽然不是所有的都有等于号。
2016-10-12 10:35:19 +08:00
回复了 lovelynn 创建的主题 Apple 跪求 mac 下好用的截图工具。QQ 的 jietu.APP 已经拉黑。。。
如果你非得用第三方的,那么我推荐 Skitch 。
2016-10-12 10:33:52 +08:00
回复了 andreby 创建的主题 Java 各位开发中常用哪些注解?
@Override 你这个是 GNU Grep (也就是常用在 Linux 上) 吧? BSD Grep (也就是常用在 Mac 上的)没有 -P 。
2016-10-11 23:59:55 +08:00
回复了 carnival 创建的主题 iPhone 用大容量 iPhone 的朋友们,你们都装了些什么软件?
随便装,偶尔谁介绍一个或者哪个广告看到一个……,装完从来不卸载,但是常用的却没有几个。有时候实在看不下去了,清理一下,不常用的全删掉。
2016-10-11 23:54:32 +08:00
回复了 raighne 创建的主题 JavaScript 请教 js 中文正则表达式
/初三十班(.+)同学 /.exec('初三十班某某同学')[1]
"某某"
2016-10-11 21:26:57 +08:00
回复了 chai2010 创建的主题 Apple Dash 被封杀的最新进展
我不认为是 Apple 的问题,正如电话录音中说的,两个帐号是同一个 legal entity 。
2016-10-11 18:51:47 +08:00
回复了 zungmou 创建的主题 问与答 IP:Port 这种形式有统一的叫法吗?
不过这个实例里是个 DNS 地址嘛。

所以就 let dnsServerAddress = "114.114.114.114:53"
2016-10-11 18:50:57 +08:00
回复了 zungmou 创建的主题 问与答 IP:Port 这种形式有统一的叫法吗?
let アドレス = "114.114.114.114:53"
2016-10-11 18:23:34 +08:00
回复了 Technetiumer 创建的主题 站长 为啥 gitlab.com 有备案?
ICP 备案主体信息

备案 /许可证号: 京 ICP 备 15053528 号 审核通过时间: 2015-10-20
主办单位名称: 刘文辉 主办单位性质: 个人



ICP 备案网站信息

网站名称: 我的 git 分享 网站首页网址:
www.gitlab.com

网站负责人姓名: 刘文辉 网站域名:
gitlab.com

网站备案 /许可证号: 京 ICP 备 15053528 号-1 网站前置审批项:


https://pbs.twimg.com/media/CuetuNRVUAAoL8S.png
2016-10-11 17:29:26 +08:00
回复了 andreby 创建的主题 Java 各位开发中常用哪些注解?
修正一下:利用大写开头排除掉注释里的 @param @return 等,支持下划线

$ find . -iname '*.java' | xargs sed -n 's/.*\(@[A-Z][a-zA-Z0-9_]\{0,\}\).*/\1/p' | sort | uniq -c | sort -nr | pbcopy

173 @Override
127 @Column
63 @Autowired
43 @RequestMapping
36 @Generated
35 @RolesAllowed
27 @PathVariable
26 @Service
24 @Nullable
24 @Nonnull
23 @Path
23 @Bean
18 @StaticMetamodel
18 @Access
16 @Transient
16 @Transactional
16 @ForeignKey
16 @Controller
15 @GET
14 @Entity
13 @Table
12 @XmlTransient
12 @RequestParam
12 @BeanParam
10 @XmlRootElement
9 @ManyToOne
9 @JoinColumn
8 @Version
7 @UniqueConstraint
7 @SuppressWarnings
7 @Produces
7 @PathParam
6 @OneToOne
5 @Test
5 @SortableField
5 @POST
5 @ModelAttribute
5 @Field
5 @ConfigurationProperties
4 @MappedSuperclass
4 @JsonIgnoreProperties
4 @Consumes
4 @Configuration
4 @ComponentScan
3 @Scheduled
3 @QueryParam
3 @Query
3 @EnableJpaAuditing
3 @EnableAspectJAutoProxy
3 @Context
3 @Component
2 @Type
2 @Singleton
2 @Provider
2 @Profile
2 @PreAuthorize
2 @PersistenceContext
2 @Parameter
2 @PUT
2 @Id
2 @GenericGenerator
2 @GeneratedValue
2 @EntityScan
2 @EnableScheduling
2 @EnableJpaRepositories
2 @EnableAutoConfiguration
2 @DefaultValue
2 @DateBridge
2 @CacheResult
1 @SpringBootApplication
1 @Resource
1 @Qualifier
1 @OrderBy
1 @Order
1 @OneToMany
1 @ManyToMany
1 @LastModifiedDate
1 @LastModifiedBy
1 @JoinTable
1 @Indexed
1 @ImportResource
1 @EntityListeners
1 @EnableWebSecurity
1 @EnableJms
1 @EnableGlobalMethodSecurity
1 @EnableCaching
1 @DELETE
1 @CreatedDate
1 @CreatedBy
1 @Analyzer
2016-10-11 16:51:30 +08:00
回复了 andreby 创建的主题 Java 各位开发中常用哪些注解?
$ find . -iname '*.java' | xargs sed -n 's/.*\(@[a-zA-Z0-9]\{1,\}\).*/\1/p' | sort | uniq -c | sort -nr | pbcopy

173 @Override
143 @inheritDoc
127 @Column
63 @Autowired
43 @RequestMapping
41 @param
36 @Generated
35 @RolesAllowed
27 @PathVariable
26 @Service
24 @Nullable
24 @Nonnull
23 @Path
23 @Bean
21 @link
20 @return
18 @StaticMetamodel
18 @Access
16 @Transient
16 @Transactional
16 @ForeignKey
16 @Controller
15 @GET
14 @Entity
13 @Table
12 @XmlTransient
12 @RequestParam
12 @BeanParam
10 @XmlRootElement
9 @ManyToOne
9 @JoinColumn
8 @Version
7 @UniqueConstraint
7 @SuppressWarnings
7 @Produces
7 @PathParam
6 @OneToOne
5 @Test
5 @SortableField
5 @POST
5 @ModelAttribute
5 @Field
5 @ConfigurationProperties
4 @throws
4 @see
4 @MappedSuperclass
4 @JsonIgnoreProperties
4 @Consumes
4 @Configuration
4 @ComponentScan
3 @Scheduled
3 @QueryParam
3 @Query
3 @EnableJpaAuditing
3 @EnableAspectJAutoProxy
3 @Context
3 @Component
2 @Type
2 @Singleton
2 @Provider
2 @Profile
2 @PreAuthorize
2 @PersistenceContext
2 @Parameter
2 @PUT
2 @Id
2 @GenericGenerator
2 @GeneratedValue
2 @EntityScan
2 @EnableScheduling
2 @EnableJpaRepositories
2 @EnableAutoConfiguration
2 @DefaultValue
2 @DateBridge
2 @CacheResult
1 @literal
1 @io
1 @author
1 @SpringBootApplication
1 @Resource
1 @Qualifier
1 @OrderBy
1 @Order
1 @OneToMany
1 @ManyToMany
1 @LastModifiedDate
1 @LastModifiedBy
1 @JoinTable
1 @Indexed
1 @ImportResource
1 @EntityListeners
1 @EnableWebSecurity
1 @EnableJms
1 @EnableGlobalMethodSecurity
1 @EnableCaching
1 @DELETE
1 @CreatedDate
1 @CreatedBy
1 @Analyzer
2016-10-11 14:58:12 +08:00
回复了 sisyphus60 创建的主题 macOS Time machine 备份不加密,谁都能访问查看数据吗?
@sisyphus60 能呀。
2016-10-11 11:42:49 +08:00
回复了 zungmou 创建的主题 问与答 IP:Port 这种形式有统一的叫法吗?
套接字

哈哈哈,这个翻译很强大。
2016-10-10 22:50:24 +08:00
回复了 F2Sky 创建的主题 问与答 有好用的网页转 PDF 的工具吗?
2016-10-10 22:45:27 +08:00
回复了 F2Sky 创建的主题 问与答 有好用的网页转 PDF 的工具吗?
2016-10-10 22:40:13 +08:00
回复了 F2Sky 创建的主题 问与答 有好用的网页转 PDF 的工具吗?
@F2Sky 这是因为 V2EX 的 printable css 的问题。
2016-10-10 22:20:42 +08:00
回复了 F2Sky 创建的主题 问与答 有好用的网页转 PDF 的工具吗?
File - Print... - (Destination - Save as PDF)|(Open PDF inPreview)
2016-10-10 21:18:11 +08:00
回复了 maogang39 创建的主题 宽带症候群 万网获取的 10 开头的 IP。。。
rfc7239


https://zh.wikipedia.org/wiki/X-Forwarded-For
X-Forwarded-For: client1, proxy1, proxy2
其中的值通过一个 逗号+空格 把多个 IP 地址区分开, 最左边( client1 )是最原始客户端的 IP 地址, 代理服务器每成功收到一个请求,就把请求来源 IP 地址添加到右边。
2016-10-10 18:50:08 +08:00
回复了 liuzhen 创建的主题 程序员 问一个一元夺宝号码生成问题
比如用 redis 的 INCR 或者 INCRBY 。
2016-10-10 18:46:28 +08:00
回复了 liuzhen 创建的主题 程序员 问一个一元夺宝号码生成问题
@liuzhen 我的意思是如果能用连续的数字,那么问题就方便了。不是说需要不需要连续,而是能不能。
1 ... 36  37  38  39  40  41  42  43  44  45 ... 52  
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   984 人在线   最高记录 6543   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 36ms · UTC 20:49 · PVG 04:49 · LAX 13:49 · JFK 16:49
Developed with CodeLauncher
♥ Do have faith in what you're doing.