由买买提看人间百态

topics

全部话题 - 话题: usec
1 (共1页)
y*****l
发帖数: 5997
1
来自主题: _pennystock版 - [合集] 铀价格走势图
☆─────────────────────────────────────☆
tanmaomao (坛猫猫) 于 (Tue Nov 16 18:13:00 2010, 美东) 提到:
RT
☆─────────────────────────────────────☆
tanmaomao (坛猫猫) 于 (Tue Nov 16 18:24:25 2010, 美东) 提到:
发信人: tanmaomao (坛猫猫), 信区: Stock
标 题: Re: 铀价格走势图 (转载)
发信站: BBS 未名空间站 (Tue Nov 16 18:23:29 2010, 美东)
Ux U3O8 Price indicator is the longest-running weekly uranium price series,
used by the industry in sales contracts
☆─────────────────────────────────────☆
tanmaomao (坛猫猫) 于 (Wed Nov 17 09:34:37 20... 阅读全帖
a*******1
发帖数: 1554
2
来自主题: Statistics版 - 请问哪里能下载R.h文件.
好像在C程序下要含有这个文件才能被R调用,但visual C++好像没有:
#include "stdafx.h"
#include "R.h"
using namespace System;
int main(array ^args)
{
Console::WriteLine(L"Hello World");
return 0;
}
这个程序编译时说
Cannot open include file: 'R.h': No such file or directory
请问应该怎么做?
比如我有一个程序useC.c
#include
/* useC.c */
void useC(int *i) {
i[0] = 11;
}
但在windows系统,命令行好像跟其它不大一样,用
R CMD SHLIB useC.c
显示“R不是内部或外部命令....”,请大家指点一下应该怎么做,谢谢。
在R下面用system("R CMD SHLIB useC.c")它说
警告信息:
运行命令'R CM... 阅读全帖
k**********g
发帖数: 989
3
来自主题: Programming版 - 看了一下C#的async await

In the past, multicore programming focuses on fully utilizing CPU. This can
be seen in the High-Performance Computing (HPC) benchmark rankings.
This approach neglects an issue that is ubiquitous: Most "processes" (
including computations, communications, and I/O) do not generate (yield) a
block of "result" of size N at once. Instead, almost all real-world
processes yield results incrementally.
To visualize, one can imagine this at a microscopic timing level:
After spending 500 microseconds of i... 阅读全帖
n*****t
发帖数: 22014
4
来自主题: Programming版 - 狠偷懒狠偷懒的一个测试
我们蓝翔技校水平差,码的程序肯定错误百出,大家不许笑。
单进程,也不用锁了。5M 票,320M request,原始数据都是偷 memory 的,测试结果是
3 秒不到。request 前 2 bit 是 opcode,最后几位是 ticket ID。
1、我这个没搜空闲票,先声明一下。
2、IO 会多占一点时间,呵呵,不过估计也就多几秒的时间,懒得整太复杂了。
3、HW 就不提了,丢脸,唯一能透露的是 virtualpc
#include
#include
#include
#define SIZE 5*1024*1024
#define LOOPS 64
unsigned char tickets[SIZE];
unsigned long *reqs;
unsigned char *results;
int main() {
int i;
unsigned char op;
unsigned char *ticket;
unsigned long *... 阅读全帖
s****l
发帖数: 10462
5
USEC, 日本人民的老朋友
USEC CEO: We Stand With Our Japanese Friends
BETHESDA, Md.--(BUSINESS WIRE)--USEC Inc. (NYSE:USU) President and CEO John
Welch today released the following statement in response to the situation in
Japan: “Japan has long been a partner and a ...
p**y
发帖数: 7407
6
来自主题: Stock版 - USU爆了。
终于明白为什么打压下来了
12.33PM的消息
USEC Statement on Trading in Its Common Stock
BETHESDA, Md.--(BUSINESS WIRE)--
USEC Inc. (USU) made the following statement: In view of the unusual market
activity in the Company’s common stock, the New York Stock Exchange has
contacted the Company in accordance with its usual practice. The company
stated that its policy is not to comment on unusual market activity.
USEC Inc., a global energy company, is a leading supplier of enriched
uranium fuel for commercial nuclear p... 阅读全帖
p**y
发帖数: 7407
7
来自主题: Stock版 - USU爆了。
终于明白为什么打压下来了
12.33PM的消息
USEC Statement on Trading in Its Common Stock
BETHESDA, Md.--(BUSINESS WIRE)--
USEC Inc. (USU) made the following statement: In view of the unusual market
activity in the Company’s common stock, the New York Stock Exchange has
contacted the Company in accordance with its usual practice. The company
stated that its policy is not to comment on unusual market activity.
USEC Inc., a global energy company, is a leading supplier of enriched
uranium fuel for commercial nuclear p... 阅读全帖
s*i
发帖数: 5025
8
来自主题: Stock版 - 宣告破产 USU
"The plan of reorganization, which is supported by those holding
approximately 65 percent of USEC’s debt, as well as Toshiba and Babcock &
Wilcox, calls for replacing USEC’s $530 million debt and all of its
preferred and common stock with a new debt issue totaling $240.4 million and
new common stock. The new debt issue would mature in five years and can be
extended for an additional five years subject to certain conditions. The
noteholders would receive $200 million of the new debt and approxima... 阅读全帖
p********m
发帖数: 1737
9
ark《bama《usec
usec才是sec的制高点
m*******y
发帖数: 141
10
来自主题: Automobile版 - 沃尔沃
usec奔驰R350?
n******7
发帖数: 483
11
来自主题: ebiz版 - 3g的价格依旧坚挺
I usec English First name and last name.
t**r
发帖数: 3428
12
rate = 5.0; // unit: messages
per = 8.0; // unit: seconds
allowance = rate; // unit: messages
last_check = now(); // floating-point, e.g. usec accuracy. Unit: seconds
when (message_received):
current = now();
time_passed = current - last_check;
last_check = current;
allowance += time_passed * (rate / per);
if (allowance > rate):
allowance = rate; // throttle
if (allowance < 1.0):
discard_message();
else:
forward_message();
allowance -= 1.0;
s****l
发帖数: 10462
13
谁能用 “普通”话 讲一下这个新闻是什么意思?看不懂。。。。
包子答谢
10-Jan-2011
Unregistered Sale of Equity Securities
Item 3.02 Unregistered Sales of Equity Securities.
On January 10, 2011, USEC Inc. (the "Company") entered into an exchange
agreement with an existing holder of the Company's 3.0% Convertible Senior
Notes due 2014 (the "Notes") whereby the Company agreed to issue 6,952,500
shares of the Company's common stock, par value $.10 per share ("Common
Stock"), and deliver cash for any accrued but unpaid interest on the... 阅读全帖
s********u
发帖数: 1054
14
2010年1月10日, USEC公司和它的可转债持有者达成协议---该债主手上持有公司2014 年到期可转债 3%的份额。按照协议, 公司发行6952500只股票给债主---这些股票的 PAR VALUE 为 $0。1--- 并且用现金支付可转债上已经积累下来但未付清的利息。作为回报, 公司收回该持有者手上本金价值为45 M的可转债。 根据协议,整个交易在2011年1月14日完成。

,
w****r
发帖数: 245
15
大侠,分类都分好了,求神签
# Basic Materials, Agricultural Chemicals
AGU Agrium Inc.
AVD American Vanguard Corp.
CAGC China Agritech Inc.
CF CF Industries Holdings, Inc.
CGA China Green Agriculture, Inc.
CMP Compass Minerals International
COIN Converted Organics Inc.
IPI Intrepid Potash, Inc.
MON Monsanto Co.
MOS Mosaic Co.
NOEC New Oriental Energy & Chemical
POT Potas... 阅读全帖
k***n
发帖数: 3158
B*******n
发帖数: 20645
17
来自主题: Stock版 - NOK爆跌的原因找到鸟
Largest NYSE Short Interest Positions as of Feb. 15
Ticker Avg. Daily
Symbol Company Feb. 15 Jan. 31 Volume

=============================================================================
SPY SPDR S&P 500 ETF 313,917,094 289,628,960 146,913,689
NOK NOKIA CORP-ADR 215,707,954 195,140,945 25,880,627
IWM ISHARES-RUS 2000 208,862,217 197,574,989... 阅读全帖
n****8
发帖数: 294
r*****t
发帖数: 7278
19
Apple Inc. AAPL 498.53 -3.83 (-0.76%) -1.00 498.53 (498.53
) -128.53 -25.78% +3.83 -25.78%
Barrick Gold Corp. (USA) ABX 19.58 +0.51 (2.67%)

Aluminum Corp. of China... ACH 8.68 +0.35 (4.20%) 1,000.00
7,750.00 8,680.00 +930.00 +12.00% +350.00 12.00%
ProShares Ultra Silver... AGQ 23.13 +0.17 (0.74%)

American Intl. Group Inc AIG 47.08 +0.36 (0.7... 阅读全帖
f**r
发帖数: 18
20
来自主题: Stock版 - 有准备捞usu的吗?
USEC says expects to file for bankruptcy in first quarter of 2014.
这也能捞啊。不知道哪天就直接到0.2了。
h******n
发帖数: 28
21
来自主题: Outdoors版 - 吹几个大牛
事情没那么简单,“直接”这个词用在这不恰当,看看分析就清楚了
http://www.csmonitor.com/2008/0128/p03s03-usec.html
n*****t
发帖数: 22014
22
来自主题: Programming版 - 请老魏给出一个简单的文字解释
问题一不存在,这个不同步即使有也是 usec 级的,现实中票的动态变化决定查到抢不
到是常态。实际现在的吞吐也足够应付查询,看业务需要了。
b******7
发帖数: 123
23
来自主题: Programming版 - 请老魏给出一个简单的文字解释
到了persistent阶段,有了加锁,同车次/table数据耦合,付款等分布式transaction
两阶段提交等等,性能还会有这么好吗?

问题一不存在,这个不同步即使有也是 usec 级的,现实中票的动态变化决定查到抢不
到是常态。实际现在的吞吐也足够应付查询,看业务需要了。
p****r
发帖数: 165
24
来自主题: Programming版 - store "" in c string
C code, not going to useC++:
char* P_dir;
P_dir = "D:\2QP\C_P\P Inputs";
at run time, the actual value of P_dir is:
P_dir = "D:2QPC_PP Inputs";
it ignored all the backslash "", how to keep the ""? Thanks
d*******j
发帖数: 42
25
来自主题: MedicalCareer版 - 2018.3.3 SOAP讲座
感谢版主组织SOAP讲座。感谢 TJ Xing前辈给我们分享经验。
SOAP?
2016 51% img match 在纽约
对于外国毕业生来说评分系统里step 1 &step2 分数是最重要的。签证政策改变对有绿
卡公民身份的同学是有优势的。
Soap主要为美国学生设立但是也有img 成功。
如何查看项目是否有soap名额? 看往年nrmp match outcome项目是否招满,如有
unfilled position基本都有soap机会。
所有有资格的同学都会收到soap 邮件,与你是否match成功无关。
教训:不能只看内科或者病理,其他的科目也可以试试申请。当然ps 和推荐信要与专
科相关。Ps 对soap比较重要。
3/12 match results。 R3 12点左右开始, 大家可以看到所有项目的soap位置。大约
有150 (以前,今年只有45个名额)名额可以申请。总共有三轮。不要一次申满150个名
额。要看有内部关系的项目,尽量发动connection,如果项目能看到你的简历,很快就
能面试。内部推荐往往是优先的。首先要决定专业;其次看有联系的项目。往年有中国
同... 阅读全帖
s****l
发帖数: 10462
26
来自主题: _pennystock版 - USU 今天量比较大
谁能用 普通 话 讲一下这个新闻是什么意思?看不懂。。。。
10-Jan-2011
Unregistered Sale of Equity Securities
Item 3.02 Unregistered Sales of Equity Securities.
On January 10, 2011, USEC Inc. (the "Company") entered into an exchange
agreement with an existing holder of the Company's 3.0% Convertible Senior
Notes due 2014 (the "Notes") whereby the Company agreed to issue 6,952,500
shares of the Company's common stock, par value $.10 per share ("Common
Stock"), and deliver cash for any accrued but unpaid interest on the Notes... 阅读全帖
s****l
发帖数: 10462
27
来自主题: _pennystock版 - USU 今天量比较大
谁能用 普通 话 讲一下这个新闻是什么意思?看不懂。。。。
10-Jan-2011
Unregistered Sale of Equity Securities
Item 3.02 Unregistered Sales of Equity Securities.
On January 10, 2011, USEC Inc. (the "Company") entered into an exchange
agreement with an existing holder of the Company's 3.0% Convertible Senior
Notes due 2014 (the "Notes") whereby the Company agreed to issue 6,952,500
shares of the Company's common stock, par value $.10 per share ("Common
Stock"), and deliver cash for any accrued but unpaid interest on the Notes... 阅读全帖
v**********m
发帖数: 5516
28
来自主题: _pennystock版 - CCJ 可能要收购的挖U公司名单
有些已经涨了一些了。
消息是昨天出的,说CCJ 要增发股票,筹资1B。
URRE Uranium Resources... 74.77M
USU USEC Inc. 80.61M
URZ Uranerz Energy Corp 97.99M
URG Ur-Energy Inc. (USA) 110.21M
UEC Uranium Energy Corp. 170.12M
GMO General Moly, Inc. 238.09M
DNN Denison Mines Corp. 588.53M
本人有CCJ 和URRE,所以意见肯定有偏向,YMYD。
1 (共1页)