samray's repos on GitHub
JavaScript · 146 人关注
blog
A clean, elegant blog built on Rust
Shell · 62 人关注
dotfiles
A shell script to install awesome command for *nix platform and set them up
Emacs Lisp · 21 人关注
emacs.d
My own emacs configuration
C++ · 8 人关注
crawler
只用C/C++内置函数实现的爬虫
Swift · 1 人关注
freshzilla
The answer to challenge in the 100 Days Of SwiftUI from Day 86 to Day 91 course tailors to help users learn things using flashcards
TypeScript · 1 人关注
github-summary
Take the time machine to generate your own GitHub summary
Emacs Lisp · 0 人关注
.emacs.d
💻My personal Emacs configuration.
Java · 0 人关注
AlgorithmsCode
code from Algorithms(4th edition) and my solution to some exercise
Java · 0 人关注
apache-shiro-tutorial-webapp
A step-by-step tutorial showing how to secure a web app with Apache Shiro
Emacs Lisp · 0 人关注
aweshell
Awesome shell extension eshell with wonderful features
Python · 0 人关注
betacat
Python · 0 人关注
bigice
0 人关注
BlogOfComputerNetwork
计算机网络技术共享博客 (A Blog Of ComputerNetwork)
Swift · 0 人关注
bucketlist
App to store the wishlist on the map with customized information
C · 0 人关注
c-collections
0 人关注
comment
Makefile · 0 人关注
csapp
Swift · 0 人关注
diceroller
An fantastic app allows users to roll different type of dices, including support for 4-sided, 6-sided, 8-sided, 10-sided, 12-sided, 20-sided, and even 100-sided.
0 人关注
double-entry-generator
Rule-based double-entry bookkeeping importer (from Alipay/WeChat/Huobi etc. to Beancount).
Swift · 0 人关注
edutainment
App for kids to help them practice multiplication tables
Shell · 0 人关注
emacs-document
translate emacs documents to Chinese for convenient reference
Emacs Lisp · 0 人关注
eshell-prompt-extras
Display extra information and color for your eshell prompt.
TypeScript · 0 人关注
everyone-can-use-english
人人都能用英语
C++ · 0 人关注
fcdeduction
系统设计与实施, 以扣费系统为例
Swift · 0 人关注
friendbook
The solution to the Challenge of 100 Days of SwiftUI
Go · 0 人关注
go-common
哔哩哔哩 bilibili 网站后台工程 源码
Python · 0 人关注
gtb
"Your mom ask you to go to bed" A delightful, enjoyable console notification tool
Java · 0 人关注
guava
Google core libraries for Java
Swift · 0 人关注
guess_the_flag
The source code of the second project Guess The Flag in 100 Days of SwiftUI: https://www.hackingwithswift.com/100/swiftui, including the answer to the challenge.
Swift · 0 人关注
hotprospect
The answer to challenge in the 100 Days Of SwiftUI Day 85 course tailors to track who you meet at conferences
samray

samray

V2EX 第 166309 号会员,加入于 2016-04-04 16:02:43 +08:00
今日活跃度排名 8291
根据 samray 的设置,主题列表被隐藏
二手交易 相关的信息,包括已关闭的交易,不会被隐藏
samray 最近回复了
8 天前
回复了 samray 创建的主题 分享创造 100 Days of SwiftUI
@netabare 对初学者不友好这个真的是深有体会,很多内容着实太新,搜索引擎也搜不到,只能靠自己对着 IDE 自行尝试。
@seaiaddca 我是 SDE, 不是 HR ,也想知道为什么刚裁完人又招人。

只是公司内部看到有这样的机会,分享出来而已。
@azusachino 就是集中在 6 月 26-30 号进行面试,是面向国内的候选人。可以直接点 apply now 等官网通知;或者是我可以帮忙内推.
@qywings 是的,如无意外都是全英文面试,面试官大概率不是中国人。
@deltaone 也可以的。据我所知,目前还是线上面试,所以城市不在上面之列问题也不大。
自己顶, 为啥没有人关注的呢.
2019-03-21 16:14:47 +08:00
回复了 samray 创建的主题 程序员 一条面试题引发的思考--浅谈 Java 公平锁与内存模型
@zealot0630 感谢指正,在你批评的时候,我已经意识到这个问题了,只是文章无法编辑了
2019-03-21 16:05:26 +08:00
回复了 samray 创建的主题 程序员 一条面试题引发的思考--浅谈 Java 公平锁与内存模型
公平锁只能控制顺序排队,不能控制线程每次只输出一次,所以还是需要条件的, 文章有误,特此更正:

private Thread work(Runnable function) {
return new Thread(() -> {
while (index.intValue() < 30) {
lock.lock();
if (index >= 30) {
continue;
}
if (condition.test(index.intValue())) {
function.run();
index++;
}
lock.unlock();
}
});
}
2019-03-13 19:57:42 +08:00
回复了 samray 创建的主题 酷工作 蚂蚁金服-网商银行 实习生春招
继续顶
2019-03-08 11:55:45 +08:00
回复了 samray 创建的主题 酷工作 蚂蚁金服-网商银行 实习生春招
继续顶一波
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   2939 人在线   最高记录 6543   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 13ms · UTC 03:42 · PVG 11:42 · LAX 20:42 · JFK 23:42
Developed with CodeLauncher
♥ Do have faith in what you're doing.