cosmic 最近的时间轴更新
cosmic's repos on GitHub
0 人关注
algorithms
Bug-tracking for Jeff's algorithms book, notes, etc.
JavaScript · 0 人关注
Assisstant_Bot
C# · 0 人关注
botbuilder-dotnet
Welcome to the Bot Framework SDK for .NET repository, which is the home for the libraries and packages that enable developers to build sophisticated bot applications using .NET.
TypeScript · 0 人关注
botbuilder-js
Welcome to the Bot Framework SDK for .NET repository, which is the home for the libraries and packages that enable developers to build sophisticated bot applications using .NET.
0 人关注
BotBuilder-Samples
Welcome to the Bot Framework samples repository. Here you will find task-focused samples in C#, JavaScript and TypeScript to help you get started with the Bot Framework SDK!
JavaScript · 0 人关注
botbuilder-tools
Welcome to the Bot Framework Tools repository, which is the home for a set of tools for developers building bots with the Microsoft Bot Framework
0 人关注
botframework-cli
CLI Tools for the Microsoft Bot Framework
C# · 0 人关注
CloudClipBoard
0 人关注
cosmicshuai
HTML · 0 人关注
cosmicshuai.github.io
Cuda · 0 人关注
cuda_practice
Some Practices of CUDA
JavaScript · 0 人关注
github-actions-for-ci
JavaScript · 0 人关注
GithubHelperBot
A teams bot for GitHub
Dockerfile · 0 人关注
hello-github-actions
0 人关注
Hello-Web3
0 人关注
Jared
An easily extensible chat bot for iMessage written in Swift.
Python · 0 人关注
LeetCode_Practice
0 人关注
lgServices
TypeScript · 0 人关注
LGTester
A test framework for testing LG
0 人关注
llama_index
LlamaIndex (GPT Index) is a project that provides a central interface to connect your LLM's with external data.
Matlab · 0 人关注
MachineLearningCourse
Homework and exercises of Machine Learning Course
TypeScript · 0 人关注
monaco-botbuilder-lg
botbuilder-lg language support in Monaco Editor
TypeScript · 0 人关注
monaco-botframework-lu
Python · 0 人关注
SimpleDataStructureImplementation
implement some data structure
C# · 0 人关注
SimpleLazyImplementationm
A simple lazy loading implementation
0 人关注
test_feich
0 人关注
test_repo
test repo for webhook
HTML · 0 人关注
website_blocker
cosmic

cosmic

🏢  Microsoft / SDE
V2EX 第 205820 号会员,加入于 2016-12-13 17:21:02 +08:00
今日活跃度排名 26232
根据 cosmic 的设置,主题列表被隐藏
二手交易 相关的信息,包括已关闭的交易,不会被隐藏
cosmic 最近回复了
两个工作各有优劣,一个是搞重构的 team ,一个是大小周。选城市吧,留北京吧,找机会跳槽
160 天前
回复了 sunsrise 创建的主题 职场话题 求教怎么才能去 google?
try to apply jobs in Google Tokyo, Australia and Swiss
心疼 OP ,祝一切顺利,找到值得工作的公司!
260 天前
回复了 TomasKozey 创建的主题 生活 被裁员了,准备润了
All the best, buddy!
275 天前
回复了 jiobanma 创建的主题 Java 分布式系统生成全局唯一 ID 的方式请教
用 etcd cluster 实现一个全局唯一且连续递增的 sequence generator,确保 consistency 和 availability. 然后服务器每次请求获取一个 batch 的 id,然后服务器每次 assign 一个,当一个 batch 用完后,向 sequence generator service 请求下一个 batch
281 天前
回复了 zming 创建的主题 问与答 组合算法求思路
第一个回复漏了不大于 26 的条件,而且 V 站的格式也有问题,更新了解法在第二个回复的链接里
281 天前
回复了 zming 创建的主题 问与答 组合算法求思路
281 天前
回复了 zming 创建的主题 问与答 组合算法求思路
```
def getAllCombinations(num):
s = str(num)
n = len(s)
@lru_cache(None)
def dfs(idx):
if idx == n:
return [[]]
ans = []
if s[idx] != "0":
for i in range(idx, n):
t = int(s[idx:i+1])
tmp = dfs(i + 1)
for j in tmp:
ans.append([t] + j)
return ans

return dfs(0)
```
2023-03-08 11:47:03 +08:00
回复了 Mikawa 创建的主题 问与答 2023 年,双程序员应该移民吗
加拿大的工作在美国也能投,LinkedIn 上更新一下简历,把 open to work 的地方改成 Vancouver 或者 Toronto ,之前还是很多 HR 来联系的,最近因为裁员潮 HR 联系比较少。工作过去自己只能拿 close work permit ,配偶可以拿 open work permit.
去加拿大读 master 毕业拿 work permit 是非常稳妥的路子。
去美国工资更高,但是身份更难拿,L1 签证被裁员了比较危险。
2022-06-24 14:28:05 +08:00
回复了 johnkiller 创建的主题 程序员 人生中的第一个 PR 被 merge 了
congrats!
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   1684 人在线   最高记录 6543   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 12ms · UTC 16:45 · PVG 00:45 · LAX 09:45 · JFK 12:45
Developed with CodeLauncher
♥ Do have faith in what you're doing.