Redian新闻
>
Hiring Staff accountant I San diego CA
avatar
Hiring Staff accountant I San diego CA# Accounting - 会计审计
s*i
1
自己弄实在是风险大。我有个简单的东西,已经做出来了,内测了一些客户,有些很喜
欢我的产品了。但做是要推广还得投钱;要改进产品,又要花更多的钱。而且我现在是
苦逼的phd,毕业压力大,也没太多时间搞。。
与其这样,还不如licesning专利给其它厂家,让他们做marketing,最后能分点钱。
版上有没有这样搞的??
avatar
s*7
2
好奇怪,最近怎么不见P8388出来预测的帖子了。。。版主还没给她解封吗??
avatar
s*s
3
第一集就感动得要飙泪了
avatar
T*i
5
我现在就把这个实际的单机多线程抢票的算法贴出来。
goodbug号称NASDAQ处理股票交易的算法比这个简单,请TA实现以下给我们看看好不好?
/**************************************************************
///
/// param segmentTickets Tickets left in each segment of the entire
route.
/// param from The start index of the segment of the user requested
route.
/// param length The length of the user requested route.
///
/// return true if the route is successfully reserved; otherwise
false.
*/
bool reserveTicket(int *segmentTickets, int from, int length) {
int *curSegment = segmentTickets + from;
int *endSegment = curSegment + length;
while (curSegment < endSegment) {
int newCount = InterlockedDecrement(curSegment);
if (newCount < 0)
break;
curSegment++;
}
if (curSegment < endSegment) {
// Failed, return back reserved
endSegment = curSegment + 1;
curSegment = segmentTickets + from;
while (curSegment < endSegment) {
InterlockedIncrement(curSegment);
curSegment++;
}
return false;
} else
return true;
}
avatar
x*i
6
Title: Staff accountant I (temporary to Permanent Position)
Job Location: San Diego, CA
Job description:
1. AP
Handling Oversea and domestic wire transfer.
Create the Wire transfer template and co-ordinate with manager in order to
maintain accurate Vendor information.
2. Monthly closing –Related parties
Help accounting manager to exam all related parties accounts during the
Monthly closing; Work with other staff to prepare month financial statement.
Communication with outside CPA and answer CPA questions on the financial
reports.
Qualification:
1. Bachelor degree in accounting or related majors is required. Excellent
computer skill, advance level EXCEL;
2. Can holding multiple jobs at same time, and can finish the projects
within
deadline;
3.Excellent interpersonal skill which can handle and survive under high
pressure in diversity culture office environment;
4.Solid communication skill for both verbal and business writing; MUST
SPEAK Mandarin;
5.ERP software experience and ADP software knowledge is welcome but not
required.
6. Able to working in US without sponsorship;
Compensation:
1. Salary base: $12/hr.
2. Benefit: Will be provided after transfer to permanent position.
Please send your resume with your salary requirement to [email protected]
com
avatar
M*o
7
问题是你得先申请专利,这就得砸些钱进去。然后还得把产品、专利推销出去,让大厂
子或品牌想买你的产品、专利。不是那么容易的。
我认识的人搞了个产品,开模、申请专利就已经花了至少十多万了。现在还没啥起色,
弄不好钱就打水漂了。:p
avatar
L*a
8
好像是上个月27号进去的
时间是2个礼拜
也就是说。。。。
他重出江湖的日期不远了
avatar
T*i
9
其实这个实现不算是最优的,这个设计的每个路段的余票数量是一个int类型。才4个
byte。
其实最优的应该是一个cache line的大小,也就是64字节。保证了各个core不会锁定同
一个cache line。
可以定义:
struct TicketCount {
int count;
char dummy[60];
};
然后用这个TicketCount ×类型替换上面的int × segmentTickets。算法就最优化了
avatar
m*a
10
$12/hr...OMG....
avatar
s*i
11
是的。
申请专利也能花掉很多钱,不过可以先弄个provisional的,甚至可以先搞个国内的专
利,然后去联系厂家。。。
搞prototype也不一定要开模把东西做得那么好,这样也可以省些钱。。
到是联系厂家,很多人倒在这里了。
感觉搞产品比建网站之类的也费钱的多,起码初期是这样的。。

【在 M****o 的大作中提到】
: 问题是你得先申请专利,这就得砸些钱进去。然后还得把产品、专利推销出去,让大厂
: 子或品牌想买你的产品、专利。不是那么容易的。
: 我认识的人搞了个产品,开模、申请专利就已经花了至少十多万了。现在还没啥起色,
: 弄不好钱就打水漂了。:p

avatar
s*n
12
十年前就这个价了吧?
avatar
B*2
13
1. 你的发明能保密吗?能,可以考虑Trade secret,好处是保护时间长,省钱,几乎
一文不花。
2. 你的发明能申请专利吗?(这个要做patentbility analysis)能,可以申请个
provitional application,自己做$65,请律师做$2000-5000。然后联系买家,一年后
如果有钱就转正(申请下来律师费约$20000-$80000),如果没拉到钱就算了;如果不能
申请utility专利,就申请个外观专利,注册个商标啥的,这些便宜。
3. 在美国,一般没人会买没有知识产权保护的发明(可以作为Trade secret的除外)
,不过有时有买家会愿意帮你支付专利申请费用。这个你要具体谈,谈之前记着签个
Non-disclosure agreement(Confidentiality Agreement)。
个人观点,仅供参考。
avatar
g*n
14
公司都用ERP,居然$12。。。

★ 发自iPhone App: ChineseWeb 8.6

【在 x******i 的大作中提到】
: Title: Staff accountant I (temporary to Permanent Position)
: Job Location: San Diego, CA
: Job description:
: 1. AP
: Handling Oversea and domestic wire transfer.
: Create the Wire transfer template and co-ordinate with manager in order to
: maintain accurate Vendor information.
: 2. Monthly closing –Related parties
: Help accounting manager to exam all related parties accounts during the
: Monthly closing; Work with other staff to prepare month financial statement.

avatar
m*r
15
确定这个不是intern?
就算是招temp,显然这个价码也太低了

【在 g****n 的大作中提到】
: 公司都用ERP,居然$12。。。
:
: ★ 发自iPhone App: ChineseWeb 8.6

avatar
t*4
16
坑人吧 intern至少也要$20吧
相关阅读
logo
联系我们隐私协议©2024 redian.news
Redian新闻
Redian.news刊载任何文章,不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。文章信息的合法性及真实性由其作者负责,与Redian.news及其运营公司无关。欢迎投稿,如发现稿件侵权,或作者不愿在本网发表文章,请版权拥有者通知本网处理。