由买买提看人间百态

topics

全部话题 - 话题: float
首页 上页 1 2 3 4 5 6 7 8 9 10 (共10页)
a******o
发帖数: 16625
1
我记错,是40-64 AH, 如果你用4A充电,充满就是大概10小时。
铅酸电池over charge会沸腾的,时间长了就会坏掉。float charge需要有电路控制,
不然要挂定时器的。现在市场上低价的充电器只有做maintainer的时候才可以float,
charging状态能float的不多。很多人不知道,很多产品也忽悠人,结果很多电池挂几
天就废了。
w****i
发帖数: 94
2
来自主题: Faculty版 - 卢刚事件的教训
不是吧,我記得他是用float,導師一定要他用double重做,而且是在他即將畢業的時
候用作否認他工作可靠性的關鍵證據,所以反彈才會那麼強烈。其實float和double沒
多大差別啦,就是導師不爽要修理他而已。float和int可就是天壤之別了。
f*****i
发帖数: 56
3
来自主题: JobHunting版 - 算法题求助
float Getsqr(float x){
float y = x*0.5;
while((y*y - x) > 0.00001){
y -= y * 0.5;
}
return y;
}
这样对吗?
s*****r
发帖数: 773
4
来自主题: JobHunting版 - 发发我自己的Bloomberg的面经
就是一个称呼而已, 没有所谓的什么时候需要用到
在C++中, 因为函数可以被overloading, signature 用来判断哪个函数需要被调用, 在
编译的时候, 这个函数的被重新命名了, 参数list被用来重新命名, 这个过程叫name
mangling 比如你有多个函数
f(int, float) 在编译器里面, 可能函数名字叫 f2_int_float
f(float, float) 在编译器里面, 可能函数名字叫 f2_float_float
这样, 编译器就知道这是完全两个不同的函数
l********n
发帖数: 54
5
来自主题: JobHunting版 - 一个c++题(exception handling)
父类的函数(pure virtual)抛出一个异常,子类继承。有如下代码
class Foo
{
public:
void virtual func() throw (int, float) = 0;
};
class Bar : public Foo
{
public:
void virtual func() throw(short); // line 1: compile error "
// looser throw specifier"
void virtual func() throw(); // line 2: can compile
void virtual func() throw(float, int); // line 3: can compile
void virtual func() throw(float
d**e
发帖数: 6098
6
来自主题: JobHunting版 - 版上牛人能不能帮忙看道面试题?
我猜的
int cache_size ?
float[] cache ?
void updateCache(float value) ?
float getValueAt(int time) ?
updateCache需要上锁,防止多个线程同时更新。

every
to
h*****g
发帖数: 944
7
来自主题: JobHunting版 - 今天最后几个c语言编程的问题
Q1. Which of the following statements about the const qualifier is false?
a) A const variable much be initialized during declaration.
b) no explicit cast is required when converting from non-const to const
c) It is not legal to declare a variable both const and volatile
d) Const pointers are allowed in C
这个是不是选a啊?
Q2. Safe Programming Question
Which of the following will not have undefined behavior?
a) x+= ++i + ++i;
b) i+= ++i;
c) x += ++i;
d) x += ++i + --i;
貌似都能跑啊?到底啥叫underdefined behavior?
Q... 阅读全帖
w**z
发帖数: 8232
8
http://stackoverflow.com/questions/825221/where-can-i-find-the-
It's a math problem more than CS. Well, don't know how far you want to go..
That is the implementation from math lib
public static double sqrt(double a) {
return StrictMath.sqrt(a); // default impl. delegates to StrictMath
// Note that hardware sqrt instructions
// frequently can be directly used by JITs
// and should be much faster than doing
// Math.... 阅读全帖
w****o
发帖数: 2260
9
来自主题: JobHunting版 - onsite后收到A家的拒信,面经。
求平方根的题,是用binary search?
还有这个函数的原型是什么?输入是float,还是int,输出呢?
就是问 原型是 float sqrt(float x)? 还是 int sqrt(int x)?
xiexie !
w****o
发帖数: 2260
10
来自主题: JobHunting版 - onsite后收到A家的拒信,面经。
求平方根的题,是用binary search?
还有这个函数的原型是什么?输入是float,还是int,输出呢?
就是问 原型是 float sqrt(float x)? 还是 int sqrt(int x)?
xiexie !
r*******n
发帖数: 3020
11
log_file = """
Pedro|groceries|apple|1.42
Nitin|tobacco|cigarettes|15.00
Susie|groceries|cereal|5.50
Susie|groceries|milk|4.75
Susie|tobacco|cigarettes|15.00
Susie|fuel|gasoline|44.90
Pedro|fuel|propane|9.60
"""
# to build a dictionary table
dict_cart = {}
for each_line in log_file.split('\n')[1:-1]:
name, category, product, value = each_line.split('|')
if dict_cart.has_key(name):
if dict_cart[name].has_key(category):
dict_cart[name][category]+=float(value)
... 阅读全帖
l******0
发帖数: 313
12
来自主题: JobHunting版 - C的fscanf的问题 (转载)
【 以下文字转载自 Programming 讨论区 】
发信人: love1010 (学会move on), 信区: Programming
标 题: C的fscanf的问题
发信站: BBS 未名空间站 (Sat Aug 18 00:31:27 2012, 美东)
需要从一个文件里读数据写入一些变量里
文件是这样的格式 GOOG|588.88
需要将GOOG写入一个string里,然后将588.88写入一个float number里,我写了以下
code:
char tempprice[10];
char ticker[10];
fscanf(fr,"%[^|]|%[^\n]\n",ticker,tempprice);
float stockprice = stof(tempprice); //将string变成float
上面的code, ticker会正确得到GOOG,但是tempprice却无法得到588.88,请问哪里出
错了?
另外,有更优化的方法么
非常感谢
p****o
发帖数: 46
13
来自主题: JobHunting版 - fb电面面经
void online_user(vector &logs){
if (logs.empty()) return;
map table;
for (vector::const_iterator it = logs.begin();
it != logs.end(); ++it){
table[it->login_time]++;
table[it->logout_time]--;
}
float prev = table.begin()->first;
int num = table.begin()->second;
for (map::const_iterator it = ++table.begin();
it!=table.end(); ++it) {
if (it->second!=0) {
cout << "[" << prev << " - " <<... 阅读全帖
p****o
发帖数: 46
14
来自主题: JobHunting版 - fb电面面经
void online_user(vector &logs){
if (logs.empty()) return;
map table;
for (vector::const_iterator it = logs.begin();
it != logs.end(); ++it){
table[it->login_time]++;
table[it->logout_time]--;
}
float prev = table.begin()->first;
int num = table.begin()->second;
for (map::const_iterator it = ++table.begin();
it!=table.end(); ++it) {
if (it->second!=0) {
cout << "[" << prev << " - " <<... 阅读全帖
w********s
发帖数: 1570
15
来自主题: JobHunting版 - GOOGLE 第二轮电面
第一题,实际上就是二分查找插入的位置k,选择k的两边2个元素比较一下,哪个接近
返回哪个的位置。
int find_min_distance(float* a, int n, int b, int e)
{
if (e < b)
{
float f1 = abs(a[e] - n);
float f2 = abs(a[b] - n);
return f1 < f2 ? e : b;
}
int m = (b + e) / 2;
if (a[m] < n)
{
return find_min_distance(a, n, b + 1, e);
}
else if (a[m] > n)
{
return find_min_distance(a, n, b, m - 1);
}
else
{
return m;
}
}

x:
d*********e
发帖数: 141
16
求斜率的时候
float slope= (float)(points[i].y-points[j].y)/(float)(points[i].x-points[j]
.x);
当两个点的x相等的时候,可以也直接将斜率存进hashmap中吗,这个是不会出异常的?
s*********r
发帖数: 1374
17
来自主题: Living版 - 自己动手装地板 第一篇 选购

是太阳光,这种颜色随着紫外线沉淀的是一次性不可逆转的。基本上头六个月到十二个
月就会稳定。光照不到的地方如果以后再受光照,颜色会和先前受过光照基本一样(六
个月到十二个月后)。
选择光感度大的是因为颜色浅,即使受过光照以后。
还是不怎么明白,因为有些地方(远离窗户的)永远都照不到太阳光,是不是将来就是
能看出来颜色浅一些?挑选木头颜色时是不是就应该选比自己喜欢的颜色稍微淡一些的
,因为光照后会加深?
那个叫Gloss,我选的是Semi-Gloss,正适合我们。现在都买Prefinished的,地板在厂
家Prefinished的会比你自己在家里Finished的要好的多。
ok,我就打算买prefinished的了,不过prefenished铺上后中间有缝隙,因该没问题吧?
德州好像都是Concrete Slab。只有Glue Down和Float,除非在二层可以Nail。Glue
Down的牢实,踩起来像地板,floating的踩起来会有声音,因为下面有空隙。
是不是concrete(一层地面)只能glue down,木头的(二层地面)只能float,其实根
本不用挑选?
个人选择
P*****s
发帖数: 2619
18
来自主题: Living版 - 今天rate怎么样了?
ZT
Mortgage Rates Stabilize After Hitting 2010 Highs. Floating Into Next Week
If you can lock in today at 4.875% with acceptable fees, you should strongly
consider locking. If your lender is offering 5.00% or higher, I feel it is
worth the risk to float. Our "lock at the price highs, float the lows"
strategy has worked well this year. I continue to believe 4.75% is the
lowest rate we shall see this year. With the upcoming end of the Fed’s MBS
purchase program and the seemingly unending supply of
f********g
发帖数: 1634
19
来自主题: Living版 - 贷款问题请教大家啦
新手买房,毫无头绪,请教大家
我们是在washington federal 贷款,他们要求在申请loan时就要交杂七杂八的600多的
申请费,还nonrefunderable, 万一不批怎么办呢,急啊。
另外,关于利率问题,因为他们利率比较高,所以想过几个月就refin,这种情况应选
floating, lock with floating 还是without floating?
J**S
发帖数: 25790
20
地板不LEVEL,不FLAT不能装烂米。。具我所知,烂米只能FLOAT。
不LEVEL,FLOAT的木板会移向一边,时间长了,一边会很紧,变形,翘起来,另一边会
出现GAP。
不FLAT, 不固定的,FLOAT地板会嘎吱嘎吱响。。
l**i
发帖数: 243
21
floating装起来最方便,因为都是lock的接口, 自己装还是floating最灵活,错了还容
易改
Engineered要比hardwood的稳定,hardwood基本上不能floating的
这是我今年装的地板,仅供参考: http://goo.gl/gx8Uba ,
装之前也是头痛了很久,做了不少研究
a*****n
发帖数: 5158
22
来自主题: Living版 - 问一下这个mortgage
mortgate agent发的,这个可调一次的感觉没啥用啊
因为是builder的mortage agent,没法用别家的,NND
-------------
I currently show you doing 20% down on a 30 year fixed conventional
loan. If you were to lock in today, If you were to do a 120 day rate
lock, you would add .125% to today’s rate to determine your cap rate.
Based on where we are today, the cap rate would be 4.375% + .125% or
4.50%. That means the worst your rate could be is 4.50%. You then have
one chance to float the rate down within 30 days of closing. At time... 阅读全帖
c**********e
发帖数: 1184
23
来自主题: Living版 - 问一下这个mortgage
(1)Lender是在询问您是否现在lock利率,如果现在lock,可以保证最高可以拿到4.5%
的利率,且在close之前30天以内有1此免费float down的机会,如果那时候的市场比现
在的差,那么不多说利率还是4.5%;如果那时候的市场比现在好,那么能够float down
的利率是基于那时候的利率再加上0.125%。
(2)一般120天lock的利率没有90天lock的利率要好,可能是银行内部系统的program
有不同,比如那个120天program本身没有90天lock的option,但是有90天option的
program利率价格又没有120天那个好。
个人建议您还是跟lender问清楚如果现在lock利率的话是不是就lock在4.5%不能改了(
如果不考虑那个float down option的话)。另外4.5%,4.375%,4.25%等的利率下您能
拿多少credit或者要付多少point,如果不能改那么根据情况lock一个心宜的,因为他
说的是cap rate为4.5%并没有说不能lock一个低一点的。另外,如果您认为市场将来还
会变好,也可以选择不lock... 阅读全帖
l**h
发帖数: 7994
24
来自主题: Living版 - 请教 - 南加木地板安装
1,不知道
2,我个人更喜欢全木地板。
3,厨房瓷砖比较好。
4,一楼是纯水泥的地板,用Glue Down 还是floating?---- 这个要看你选择什么地板
,好像有的必须Glue Down,有的可以floating。
二楼是用Glue down 还是 floating?---- 二楼不是水泥,木地板是订上的。

-2
l**h
发帖数: 7994
25
来自主题: Living版 - 请教 - 南加木地板安装
1,不知道
2,我个人更喜欢全木地板。
3,厨房瓷砖比较好。
4,一楼是纯水泥的地板,用Glue Down 还是floating?---- 这个要看你选择什么地板
,好像有的必须Glue Down,有的可以floating。
二楼是用Glue down 还是 floating?---- 二楼不是水泥,木地板是订上的。

-2
M**********n
发帖数: 4964
26
来自主题: Living版 - 这利率咋都不降呀
我希望比上月底lock的时候低0.25%吧,现在比那时还略高一点,当初lock了之后被告
诉是lock with float down,只能希望在close之前能用到float down。我想要是当初
做的是lock without float down,论理lender是不是会把rate lock的低一点点。
M**********n
发帖数: 4964
27
要是让我选 "4" 还是 "4.125 with float down",我宁可选 "4",一个月的时间利率
一般变不了多少。
我当时lender在email里清清楚楚承诺了float down,但在closing前始终赖帐没给我
float down,算被赖帐成功了。我那时也只降一些,没这几天降得这么明显。

740
l***x
发帖数: 1761
28
来自主题: Living版 - 纯新手问装木地板的问题
纯新手!打算自己学习装Engineered hardwood地板,floating或者nail-down都可以。
经过Youtube等资源的学习,已经跃跃欲试。但是对于边界怎么处理还是有问题。
现在要铺的地方是地毯,要替换成engineered hardwood。上几张图说说我的问题。图1
,fireplace的红砖基座边界,图2,楼梯跟前(楼梯也要换成木头的),图3,通往外
面deck的推拉门,图4,另一个fireplace的花岗岩(大理石?)基座边界。这四个,我
的理解,是不是直接裁好了尺寸铺到跟前就行了?还是需要header board或者t-
molding或者 threshold?
我不大明白header board的原理,如果是floating的话,不是四周围要用spacer留出空
间吗?可以就这么严丝合缝地顶上?
图1:https://dl.dropboxusercontent.com/u/47932567/1.jpg
图2:https://dl.dropboxusercontent.com/u/47932567/2.jpg
图3:https://dl.dropboxus... 阅读全帖
d******h
发帖数: 750
29
准备把家里两层楼的地毯都换成地板,很喜欢这一款
http://bellacerafloors.com/hardwood-flooring/Agrigento/Hickory/Helorus-flooring.aspx
家里面有3岁小孩,想尽量避免地板胶。二楼还好,可以钉在木头subfloor面上。可以
一楼是水泥地,请问必须要用胶水粘在地上吗?有没有办法float or staple?
产品介绍说是可以glue,nail,staple,float,是针对所有类型的subfloor吗?
另外nail和staple还有float到底什么区别啊?
实在不想用胶水,怕有有害物质。
谢谢!
A**X
发帖数: 34
30
来自主题: Money版 - (BBS原创)I-Bond赌博须知。




5/05-10/05 fix=1.2% float=1.79% rate=6.93%
11/05-04/06 fix=1% float=2.85% rate=6.73%
according to you, you should buy after 11/05 when float is higher, but what? 6
.93>6.73
you should buy before 11/05, right?


wrong again, example first, in 10/05, 10/5 years tips rate is 1.97/1.74
respectively,
which is lower than ibond rate 6.93/6.73
G********r
发帖数: 3161
31
我觉得一对一对于我家娃有用,我家娃喜欢玩水,但是胆子极小,第一次Group不小心
掉水里喝了两口水就再也不想去了,后来另一个组的老师看到就让我娃上一对一,说是
先消除他的心理障碍。我家的也是不敢把头埋水里,幸好我去的那个地方开得很久了,
老师很有经验,发现我娃对于Back float比较不抵触,所以干脆就让我娃先学Back
Float,先Confortable了,不害怕了,学起来就快了。我自己教就是从我小时候学的开
始,先要会Submerge,然后Float,然后加动作,最后学换气,这样对我娃根本不管用
,还是娃觉得怎么好怎么来。我们学得算慢了,因为一开始一周一次,我来版上问过,
这样何时才能学会,后来我们就改成一周两次一对一,周日我自己再带着玩两个小时,
现在学了半年,基本上会自己游了。
我们每周两到三次去游泳,发现还对娃的湿疹有作用,可能是那个游泳池的水里有各种
化学药品的原因。这个寒假三周没上课,娃的湿疹又爆发了。
s*******e
发帖数: 432
32
"最简单缓解通货膨胀的手段莫过于让人民币升值“。 Any inflation will devalue the country's currency if the foreign market is free.
At this moment the best way for China probably is to float the RMB. If RMB is floated, lot of money printed will flush into the international market to buy foreign assets. With those money seeking assets outside China, the supply of RMB will increase and demand for foreign currency will also increase thus RMB will devalues and exporting companies will became more profitable. At the same time... 阅读全帖
f**********c
发帖数: 25
33
来自主题: Stock版 - MCP 庄全跑了 散了吧
Ownership Statistics
Shares O/S: 244,775,000
Float (%): 75.60
Dil. Float (%): 25.37
Inst/Float (%): 51.72
Inst % (208 Holders): 39.10
Fund % (149 Holders): 13.04

发帖数: 1
34
来自主题: Stock版 - ALDX涨疯了

多谢tip,那个药股几天涨500%我还没见识过,涨200%我都觉稀罕了。这是我做大盘股
option才敢想的事。
看了看MRTX的基本材料,the float # will make a big difference。 现金虽多,但
是烧钱很快,不够一年半用。不知会用多长时间,但是这一波暴涨 150% 是跑不掉的。
查了下盘后价,已从+110%撤到+60%。明天很可能先涨后跌,机会在收盘,不过还是见
机行事吧。
Mirati Therapeutics, Inc. (MRTX)
San Diego, CA 92121
Statistics:
Full Time Employees 52
Market Cap (intraday) 119.86M
IPO July 2013
Alltime high 52
Shares Outstanding 24.97M
Float 13.68M
% Held by Institutions 59.95%
Total Cash (mrq) 88.69M
Total Debt (mrq) N/A
Operating Cas... 阅读全帖

发帖数: 1
35
来自主题: Stock版 - ALDX涨疯了
MRTX has caught a lot of attention across the street on Friday:
No.1 @ +136%, Highest Gainers For All US Exchanges
https://www.barchart.com/stocks/price-surprises
No.10 @ 48.8M, Volume Leaders Amongst All US Exchanges
https://www.barchart.com/stocks/most-active/daily-volume-leaders
MRTX has a tiny float @ 13.68M shares, only a fraction of the other top 10
volume leaders on Friday. For example, the #9 volume leader AAPL had 49m
shares traded hands. AAPL has a float of 5.03B, which is 369 times mo... 阅读全帖

发帖数: 1
36
来自主题: Stock版 - ALDX涨疯了
搞错了。不是超低float,雅虎的数据有误。
实际 ALDX public float 11.21M @ http://quotes.wsj.com/ALDX
对于小药股来说,这个数11.2m不多不少。
现在ALDX和NBRV都在新闻后发新股了,该跌的增发份额也都超额完成了,短期内可担心
的事情没啥,我看好这两个股票的后势。

money
---------------------------------------------
Aldeyra Therapeutics, Inc. (ALDX)
Lexington, MA 02421
Shares Outstanding 15.15M
Float 2.02M

发帖数: 1
37
发信人: Goofinaround (老神在在 Be Cool), 信区: 小药股俱乐部
标 题: 抄底题材 SGYP
发信站: BBS 未名空间站 (Sat Sep 16 10:18:26 2017, 美东)
看看这个小药股值不值得关注?
Synergy Pharmaceuticals is making a 3-year
triple bottom @ 2.5.
https://seekingalpha.com/symbol/SGYP
------------------------------------------------
发信人: Goofinaround (比酷 Be Cool), 信区: 小药股俱乐部
标 题: Re: 抄底题材 SGYP
发信站: BBS 未名空间站 (Sun Sep 17 06:22:44 2017, 美东)
SGYP这里的要点是时机,三年三重底。
SGYP最近八个月的交易量也很大,一直有卖压。
当然想建仓的话,TA之外,fundamentals也要好好看看。
Synergy Pharmaceuticals Inc., New York Ci... 阅读全帖
w**********9
发帖数: 1098
38
来自主题: Boston版 - Finish地下室大概多少钱?
可我见过Laminate下面长Mold,Floating起来太贵(Lowes 8/一块),而且更不容易
找平。
1.地面防潮处理
http://www.ebay.com/itm/RadonSeal-Standard-Penetrating-Concrete
我又忘记怎么贴照片了。
The basement waterproofing sealant that seals permanently against the
seepage of water, water vapor, and even harmful radon gas. Your basement
waterproofing, radon mitigation, and mold remediation in one product!
2.floating floor
A.加Mat
ThermalDry Basement Floor Matting: Customize your basement floor with the
carpet or floating floor of your choice, while n... 阅读全帖
c**m
发帖数: 1457
39
really depends on the lender, each lender has different floating policy. You
need to have enough drop in order to float down. just 0.125% drop normally
doesn't qualify a float down.
o*****9
发帖数: 47
40
可以约一下,一起看热闹去~~
FULL SCHEDULE
3:00pm - 5:00pm Adult/Couple/Group Registration opens at SPIN (800 W
. Belmont)
FLOATS/Official Groups (e.g. Spirit Brigade) check-in at the Northeast
Corner of Halsted & Clark
4:30pm - 5:30pm Kids/Pets Registration & Activities begin at Space
Park
5:30pm - 6:00pm Kids/Pets Judged at Space Park and prizes are
awarded
5:00pm - 5:45pm FLOATS/ Official Groups should be lined up on
Halsted between Belmont and Clark
5:15pm - 6:15pm ... 阅读全帖
P**a
发帖数: 1267
41
没有到帐的钱是银行的float,ACH的float应该在1天,international ACH或更长。
float上的利息也是很可观的。
g***w
发帖数: 742
42
来自主题: Minnesota版 - 求助! twincity 附近有啥可玩的?
我收藏的:
150 Things to Do in Minneapolis
From Nordeast pub crawls to the Fringe, what we do for kicks is a big part
of what makes us unique: We ski in the streets and we drive on the ice. We
float milk-carton boats. We read in sculpture gardens, next to giant spoons
and cherries.
In honor of Minneapolis's 150th birthday, we gathered 150 of our favorite
things to do. No matter the season, this list will keep you busy:
Summer
1. Walk around Lake Harriet at sunset so you end up at the band shell for a... 阅读全帖
s******g
发帖数: 755
43
【 以下文字转载自 Apple 讨论区 】
发信人: faucetQ (fq), 信区: Apple
标 题: [Mac Dev]整了个ObjectiveC的笔记,看看气氛对得上不
发信站: BBS 未名空间站 (Mon Feb 2 21:38:18 2009), 转信
整了个类似ObjectiveC学习笔记的东西,发上来大伙看看有兴趣不。
修改了一点,增加了NSAutoreleasePool的内容。
增加了NSString内容。
===========俺系分隔线==================
本文假设读者有基本的C编程能力,如果有C++或者Java的背景会更容易理解但是不是必须。
ObjectiveC基本语法
消息
在objectiveC中,向一个对象发送一个消息的语法为
[ obj method:parameter];
类似的功能在C++中写作
obj->method(parameter);
在java中写作
obj.method(parameter);
在smalltalk中写作
obj method:parameter
显而易见objectiveC和smalltalk... 阅读全帖
t********s
发帖数: 450
m******r
发帖数: 9604
45
来自主题: Cycling版 - Clipless Pedal
不知道这个松紧和cleat的float有没有关系。我刚开始的时候用look delta 0 degree
float,怎么调都觉得紧。现在用look keo 2的7 degree float就很轻松了。刚开始用
还觉得太松了,过一段时间才习惯过来。
m******r
发帖数: 9604
46
来自主题: Cycling版 - 有人比我笨吗?
这两种有没有各种float可以选择?我一开始用clipless是look delta,0 degree
float,觉得很难脱掉。后来换了look keo,9 degree float,就容易得多了
d********t
发帖数: 51
47
来自主题: Fishing版 - 请问重力浮漂的问题
请教大家一个问题,
那天钓鱼,看到老美可以甩很远,过去一问,他们说用的是weighted float. 我现在用
的是6lb的线,所以甩不远应该是float的问题。
去walmart看了几次都没有那种浮漂。
请问大家一般是买什么样的weighted float?
给个照片连接就最好了
多谢
S*****k
发帖数: 352
48
来自主题: Fishing版 - 鱼,大鱼
可能我的唠叨把大家绕晕了,总共三条,周六两条,一公:25" 4.5磅;一母:28"10磅
。周日一公:>25",5.8磅。
回老刘的话,今年sandusky jig 和floating jig 平分秋色,我的三条鱼都是floating
jig上的,也见到floating jig limit走人的主,只是这边水浅,子线自然要短很多。
i**8
发帖数: 2855
49
来自主题: Fishing版 - 初入鱼版
不知道这里有多少潜水的像我一样的菜,每次上mitbbs都会来鱼版看看牛人们的帖子,
羡慕羡慕大家的鱼。
来美国快一年了。在国内总是跟着外公钓鱼,觉得钓鱼很容易。其实都是他老人家把所
有的东西都做完了,把杆子交在我手里,然后告诉我,提,然后鱼就上来了。。。
现在在这边周围没有人钓鱼,只能靠自己从0开始才知道厉害。靠网上的东西瞎摸索,
鱼版精华区也看了个遍,感觉收获不少,至少不是什么都不懂了。。胡乱买了一套渔具
,应该是spinning cast的。2号和6号钩子,float,sinker,earth worm。从一开始连
上饵都不利索,甩杆也不会(这个汗吧),spinning cast每次都线弄乱,不知道要用
float和sinker(蠢吧。。。)。自己去钓了五六次,基本上面讲的问题都解决了(好
吧,至少我认为解决了。。)不过从来没钓上过任何鱼@@也从来没在版面发过帖子,觉
得上牛人太多,自己的问题太弱@@
啰里啰嗦了这么多,也没个point。还是问俩实际点的非常弱的技术问题吧:
1,从下到上的顺序,应该是sinker,hook和float吧。。。我感觉应该是这样的。很多
时候也不知道水
G***G
发帖数: 16778
50
来自主题: Fishing版 - 初入鱼版
your first question is about rig.
It is more complex than sinker, hook, and float.
for example, you can see the order of sinker, hook and float,
but also you can see the order of hook, sinker and float.
You second question is about bait. the answer is yes.
首页 上页 1 2 3 4 5 6 7 8 9 10 (共10页)