由买买提看人间百态

topics

全部话题 - 话题: fp1
1 (共1页)
w*******y
发帖数: 60932
1
Panasonic Lumix DMC-FP1 12.1 Megapixel Compact Camera, 6.30-25.20 mm Lens in
Silver Blue or Pink $69 free shipping from Digital etc.
4x Optical Zoom / Up to 7.8x Extra Optical Zoom
Optical Image Stabilizer-2 MEGA O.I.S. (Off / Auto / Mode1 / Mode2) Photo
and Movie modes
Focus Range Display / AF Metering / Focus - Normal / Macro, Zoom Macro,
Quick AF (Always On) / AF Assist Lamp
ISO Sensitivity Auto / 80 / 100 / 200 / 400 / 800 / 1600 / High Sensitivity
(ISO 1600-6400)
White Balance Auto / Daylig... 阅读全帖
d***e
发帖数: 1683
2
来自主题: Classified版 - [求购]panasonic FP1 black
我想要的物品:
panasonic FP1 black
单张面值:
可接受的价格(必须明码标价!):
79.99
物品新旧要求:
new
邮寄方式要求:
My label
买卖双方谁承担邮寄损失(Required if not code only):
付款方式说明:
BOA
其他补充说明:
till got
广告的有效期:
物品来源:
我的联系方式:
mitbbs
二手交易风险自负!请自行验证是否合法和一手卡!:
w*******y
发帖数: 60932
3
来自主题: _DealGroup版 - 【$】Panasonic Lumix DMC-FP1 @ Amazon $79
Panasonic Lumix DMC-FP1 12.1 MP Digital Camera with 4x Optical Image
Stabilized Zoom and 2.7-Inch LCD (Black) $ 79.
Technical Details
* Optical Zoom 4x; Extra Optical Zoom 4.9x, 6.3x, 7.8x / 4x Digital Zoom
/ 4x optical has focal length of 35-140mm in 35mm equiv
* Optical Image Stabilizer-2 MEGA O.I.S. (Off / Auto / Mode1 / Mode2)
Photo and Movie modes
* Focus Range Display / AF Metering / Focus - Normal / Macro, Zoom Macro
, Quick AF (Always On) / AF Assist Lamp
* ISO Sensitiv... 阅读全帖
w*******y
发帖数: 60932
4
Panasonic Lumix DMC-FP1 12.1 MP Digital Camera with 4x Optical Image
Stabilized Zoom and 2.7-Inch LCD (Black)
Link:
http://www.amazon.com/dp/B00395Y9WS/ref=xs_gb_bd_BsDJaliI6DqA?_
I was looking for a camera for my trip to Punta Cana and i found this one on
Amazon. It has good reviews ans is sold and shipped by Amazon so you can
use any credits you might have with them like in my case.
Note: is not is stock until January 13. still is a good deal
f****4
发帖数: 1359
5
这里的"&"是用来给成员函数f赋值的
typedef int (Function_pointer::*f)(int n);
void update( int n, f pointer );
myFunc.update( 1, &Function_pointer::next);
在成员函数指针执行的时候必须用对象的 .* 或者是对象指针的 ->* 来调用
也就是说
Function_pointer::f fp1=&Function_pointer::next;
Function_pointer::f fp2=&Function_pointer::before;
Function_pointer::f fp3=&Function_pointer::next_after_next;
都是正确的,只要这些成员函数类型 是 int (...) (int) 即可
但是当你想调用fp1,fp2,fp3必须得
Function_pointer myFunc;
Function_pointer *myFuncpt=&myFunc;
(myFunc.*fp1)(1);
(myFuncpt->*fp2)(... 阅读全帖
d********f
发帖数: 8289
6
来自主题: Programming版 - fdopen能open同一个fd 两次吗?
sorry, 我没有说清楚。我是说比如fp1 = fdopen(fd, "r"); 用过之后还能够做fp2 =
fdopen(fd, "r")吗?还是要先close了fp1?可是close了fp1, fd也就被close了,
right?

process
f****4
发帖数: 1359
7
不知道你想说啥。。。
C++ static 成员函数指针和非成员函数指针2者类型是不同的
class Function_pointer
{
public:
static int current(int);
int next(int n);
};
//static成员函数指针的类型是和c相同的所以不用instance就能直接调用
typedef int (*sf)(int n);
sf stcFunc= &Function_pointer::current;
cout< //非static成员函数指针的类型则要求用instance才能调用
typedef int (Function_pointer::*f)(int n);
f fp1=&Function_pointer::next;
Function_pointer myFunc;
(myFunc.*fp1)(10);
这和cast,和引用没有任何关系

case

发帖数: 1
8
来自主题: CellularPlan版 - csipsimple/zoiper 自由炮
我会用电脑版的老牌eyebeam做测试.如果这货都不能接那建议,用其它手机登FP重新导
出新帐号和密码再试,或者原手机改串号再登FP.
以前我用我S5登FP1成功拿到帐户密码,当我删了软件和所有文件后再登FP2时,查里面的
帐号还是原来FP1的资料.那APP显的是FP2的号,打出也是FP2号.
现在的情况是我已经改了S5串号.我登FP3拿到了FP3 SIP帐号密码,登FP4时也能拿到FP4
的SIP号和密码.但发现我FP3好像不能接电话了.之后没管它FP3了,用FP4玩SIP.
b*****d
发帖数: 61690
9
来自主题: USANews版 - GOP Establishment彻底疯了
Establishment Republicans reacted with a mix of shock, anger and sadness at
Chris Christie’s endorsement of Donald Trump on Friday, a stunning move
that undermines the GOP mainstream's efforts to prop up Marco Rubio’s
campaign against Trump.
“It’s pretty disgusting why he did it because he’s opportunistic,” said
Tony Fratto of Hamilton Place Strategies, who worked in the George W. Bush
White House. “His days of leadership in the Republican Party are done.”
Fratto also brought up how Christie had... 阅读全帖
f****4
发帖数: 1359
10
===========================================================
发信人: sharkspear (鲨翁), 信区: JobHunting
标 题: Re: 请教一个 c++ member function pointer 问题
发信站: BBS 未名空间站 (Tue Jul 23 23:09:13 2013, 美东)
Function_pointer::next 不可引用,
只有把 next 定义成静态成员函数才可以这么玩。
===========================================================
你确定你知道?
"cast 了一个内存地址"
我猜一下:你管
f fp1=&Function_pointer::next;
叫做cast?
如果那样的话,g++只会警告而不禁止
sf fakeFunc=(sf)&Function_pointer::next;
fakeFunc(102); //不知道call哪去了。。。
非静态成员函数的本质就是 cast 了一个内存地址;并且调用的时候得显... 阅读全帖
t**a
发帖数: 4875
11
来自主题: shopping版 - 最近有没有数码相机的deal ?
松下的卡片机FP1之类的,贼便宜。。。
z****l
发帖数: 5282
12
来自主题: Immigration版 - [转载] 好高兴好高兴!
【 以下文字转载自 NewJersey 讨论区 】
【 原文由 ddaa 所发表 】
回到家看到信箱里有2封CIS的信,激动的我拆信时手都是哆嗦的。果然是我和LG I-485
的approval notices. 高兴死了,拖了好久了。今晚不用自己作饭了。也祝大家周末愉快

Some information if you are interested
I-485 10/2002 EB1-b
FP1 11/2002
FP2 07/2004
AD 09/2004
b***y
发帖数: 2799
13
☆─────────────────────────────────────☆
leoneo (gctrail) 于 (Wed Aug 15 21:58:20 2007) 提到:
TSC EB2
PD 08/24/2005
PERM AD 09/20/2005
140 RD 09/30/2005
140 AD 10/24/2005
485 RD 09/30/2005
FP1 01/30/2006
Changed job and moved on 03/31/2006, didn't file AC21.
Created www.gctrail.com on 06/2006 for Chinese to share EB based GC progress.
FP2 07/14/2007
I140 LUD 7/22
I485 LUD 8/7, 8/8
485 AD08/15/2007
☆─────────────────────────────────────☆
giantwolf (wolf) 于 (Wed Aug 15 21:58:34 2007) 提到:
gx,
a*****s
发帖数: 681
14
来自主题: Immigration版 - 三月份交485的来报道了!!
NSC看来比较准,ND到FP1个月左右。
b*********r
发帖数: 7139
15
来自主题: Immigration版 - [合集] 三月份交485的来报道了!!
☆─────────────────────────────────────☆
fortmyers (city of palm) 于 (Tue Apr 12 22:40:45 2011, 美东) 提到:
update: got FP notice on 04/22
and got FP done on 05/04
let's make a list of the time line
me first:
03/16 RD
03/23 ND
but have not received fp notice
what about you?
☆─────────────────────────────────────☆
guaifei (大肥) 于 (Tue Apr 12 22:48:55 2011, 美东) 提到:
呵呵,我等了1隔板月左右才收到FP notice的,不急。

☆─────────────────────────────────────☆
fortmyers (city of palm) 于 (Tue Apr 12 22:53:37 ... 阅读全帖
c********3
发帖数: 4531
16
来自主题: Immigration版 - combo card 时间
正常,RD2个半月,FP1个半月,combo card仍没消息的飘过
q*****n
发帖数: 96
17
EB1-A,已经FP1个月,485RD两个月,AP还是一点消息都没有
现在着急回家,查了一下AP加急的理由,发现既不满足亲人病危,又不满足财政危机等
emergency,
怎么办啊,大家支支招。。。
o****h
发帖数: 58
18
来自主题: Texas版 - They will remain with us forever
11 great aggies left, they left in smile, they left when singing,
they left while building our tradition...
" target="_blank" class="a2">http://battalion.tamu.edu/web/daily/fp1.html
Let's cherish our life more...
m******t
发帖数: 4077
19
这个和Panasonic Lumix DMC-FP1就是半斤八两吧?
b******3
发帖数: 377
20
来自主题: PhotoGear版 - zz 来自人人网曹原
由于最近胶片市场低迷,决定写篇器材文,而且是以后慢慢更新补充的,写到哪是哪,
想起啥写啥
注,如果是别人写过的我就不重复了,尽量写一些不那么普及的。可以转载可以转发,
也可以不注明出处,就算有人非要盗用我的文章我也不在乎,因为这文只在校内更新,
真有心思看的人,最终会找到这里的。理论上(注意是理论上,我才没那么多闲工夫)
如果我一直写下去,以我过去五年阅读过的摄影器材文献,写一书架的长度都不难。
所以真正的学富五车,敢于直面盗文者。。。哼
从今天开始,我决定每次更新都变粗体方便阅读,请拉到最下边
。。。。
老镜头有老镜头的缺点,我在极热极冷极湿极干的地方都曾遇到过老头罢工的问题,那
些夏天就开胶冬天就恢复的三片胶合镜组都算好的,有些年代太久远或者稍微劣质一点
的镜头一旦出了问题将会是不可逆转的。所以,在选择新老头这件事上一定要结合自己
的需求。
哈苏的镜头群里CF80,FLE distagon50 sonnar150都很不错,但是你可以以将近哈苏三
分之二的价格去买玛米亚RZ67得到同样的效果,如果你买了玛米亚的测光顶,你还能实
现哈苏500系列不... 阅读全帖
p******n
发帖数: 9144
21
来自主题: Java版 - getBytes() 卡住了 求助
这是 osx 下边的errormessage
JikesRVM: WHOOPS. Got a signal (Bus error: 10; #10) that the hardware
signal handler wasn't prepared for.
JikesRVM: UNRECOVERABLE trapped signal 10 (Bus error: 10)
handler stack 3516700c
cs 0x0000001b
ds 0x00000023
es 0x00000023
fs 0x00000000
gs 0x0000000f
ss 0x00000023
edi 0x33a73b00
esi -- PR/VP 0x34328f1c
ebp 0x75841a80
esp -- SP 0x34341a24
ebx 0x33a73b88
edx ... 阅读全帖
w*******y
发帖数: 60932
22
Since everyone is already struggling to decide whether to keep the FP1 or
cancel to get the FH1, I felt compelled to possibly further the confusion .
I saw in one of the other threads that someone was wanting to purchase this
one instead, but could not justify the Amazon price difference (currently $
139). It is highly reviewed on Amazon and I have linked it for reviews:
Amazon link:
http://www.amazon.com/Panasonic-DMC-FH20-Digital-Stabilized-2-7-Inch/dp/B00395WI58/ref=cm_cr_pr_product_top
Pana... 阅读全帖
1 (共1页)