由买买提看人间百态

topics

全部话题 - 话题: serialize
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)
x*********n
发帖数: 28013
1
来自主题: EmergingNetworking版 - 为什么fiber要用fastethernet口,不是serial。
我总是感觉serial interface要放在WAN里,fa int要放在LAN里。
这个serial interface到底是什么意思啊?
还有为什么fiber不需要配ip address?
多谢。
a*o
发帖数: 19981
2
然而哥忽然需要serial port那么一下下,难道必须上恶霸淘个usb -》serial?
l*****y
发帖数: 10
3
【 以下文字转载自 Linux 讨论区,原文如下 】
发信人: liferey ( ~ 一生一世), 信区: Linux
标 题: help~~~ Java comm for serial port
发信站: Unknown Space - 未名空间 (Tue Mar 30 14:47:46 2004) WWW-POST
Can someone help me before I get too irritated and explode?
I am trying to run a simple java program to read serial port on Linux. First I
download the program SimpleRead.java from
http://java.sun.com/developer/releases/javacomm/SimpleRead.java
Then I installed javax.comm api and RXTX for linux. So the program is working
perfectly on L
r*****l
发帖数: 2859
4
Serialization is not designed for your purpose. Serialization
just marshal the state of the class.
In order to initialize a class, you need to know its definition,
which is stored in the jar file pre-distributed.
f********f
发帖数: 475
5
来自主题: Java版 - JSSC的serial port
需要用JSSC里的serial port class. 拔插cable时GUI要实时显示“connected"和“
disconnected”。但读写serial port前没有类似.net里的对timeout property的设置
,所以很多时候拔cable时thread陷入到writedata()里出不来。call thread.stop()或
thread.interrupt()也kill不了thread. 怎么能kill这个thread呢?谢谢!
w*s
发帖数: 7227
6
For my embedded linux board, i can attach serial line during debugging,
then i can see my debug message from printf.
Now in the customer site, they won't have serial cable.
i cannot afford to print message to a file all the time.
what should i do ?
g*****g
发帖数: 34805
7
来自主题: Programming版 - Does C++ have serializer and deserialzier
Sure C++ can provide serialization, but probably not
without some custom scheme, which is due to its lack of
reflection mechanism. i.e. You can't just say I want to serialize
this object and let SDK do it, at least not in object code level,
you have to provide an implementation to
actually do that. Correct me if I am wrong in that.

provided
standard
attribute(
mw
发帖数: 525
8
来自主题: Programming版 - Boost.Serialization no longer maintained?
I just checked the website of Boost.Serialization, it seems that the last
update was in 2007.
is this project no longer active?
anyone gives a clue?
ps: how you guys do serialization these days?
thanks a lot in advance
s***s
发帖数: 104
9
来自主题: Programming版 - 问一个关于serial port的问题 (转载)
【 以下文字转载自 Hardware 讨论区 】
发信人: sshfs (blue hat), 信区: Hardware
标 题: 问一个关于serial port的问题
发信站: BBS 未名空间站 (Sat Apr 14 22:47:27 2012, 美东)
不知道发到这个版合不合适。
我有一个读写serial port的程序,在windows xp,baud rate设为115200,上跑起来没
问题,通过和外接的device读写。但是在windows 7下面,很不稳定。当读较多的数据
(其实也就不到100k,并且每次只请求读1k)时,大多情况下,读了几次之后就死在读
上面了。已经折腾好几天了,试了各种超时设置,也试了overlapped和non-overlapped
,都不好使。但是把baud rate降到9600时,好像还比较稳定。请问大家,这是怎么回
事?怎么才能稳定的跑在baud rate设为115200的windows 7上?
谢谢
b**********5
发帖数: 7881
10
来自主题: Programming版 - protobuf 能serialize Float.NaN 么?
比如我有一个field:
optional double field;
如果光是protobuf serialize/deserialize, 这个没问题, 我可以查hasField
但是我们又有个elephant bird 把这些protobuf变成PIG, 好像用了elephant后,
dump出来的field, 如果没set的话, 就dump 出default value which is 0.0。 所以
PIG 就会认为这是个真的0.0, 而不是null。 Basically, after I used elephant
bird to dump out these protobuf, it loses the info on whether the field was
set or not.
所以我想问, 能不能用Double.Nan 来代表这个field没有value。protobuf serialize
deserialize 会不会有问题。 elephant bird dump后, PIG load 起来, 会不会有
问题
W***o
发帖数: 6519
11
来自主题: Programming版 - serialization 到底该怎么理解啊?
最近可能需要写一个serialization/deserialization的code, 是要把一个C里面的
struct保存信息,然后远程传输,再deserialization,运行。比如我的struct是这样:
typedef struct my_data {
char *data;
int *user_array;
int written_by;
int user_array_size;
} my_data;
上面的user_array这个field是一个动态数组,data这个field要保存大量的字符串。请
教一下,该如何serialize/deserialize? 是不是需要用 fopen, fwrite 之类的把 数
据写到一个file里面,利用指针控制fwrite()的位置?
谢谢指教
w*s
发帖数: 7227
12
i have a sqlite3 nested query case. Was hoping to push each query result to
a json array and return it back. But always get "Error: SQLITE_MISUSE:
Database handle is closed" for the 2nd select call. Seems the db.close()
gets called before the 2nd query.
Why is this, i thought serialize can take care of this. How to fix it please
?
var getMyDbInfo = function(callback) {
var db = new sqlite3.Database("MyDB.sqlite3");
db.serialize(function() {
var myJsonObj = {};
db.each("se... 阅读全帖
w*s
发帖数: 7227
13
i have a sqlite3 nested query case. Was hoping to push each query result to
a json array and return it back. But always get "Error: SQLITE_MISUSE:
Database handle is closed" for the 2nd select call. Seems the db.close()
gets called before the 2nd query.
Why is this, i thought serialize can take care of this. How to fix it please
?
var getMyDbInfo = function(callback) {
var db = new sqlite3.Database("MyDB.sqlite3");
db.serialize(function() {
var myJsonObj = {};
db.each("se... 阅读全帖
f*****l
发帖数: 21
14
来自主题: Software版 - microsoft office 2007 professional Serial
打了电话,说是在更新系统。。。如果这就是原因,那估计明天可以搞定
如果原因是我那个serial number被太多人用过,那我死定了。。。怎么搞啊?

可是为什么不能Online activate啊。。。。。
电话和Online 都不成。。。快疯了。。。。。。。
自己回答了。在googl上折腾了1.5个小时以后,终于在baidu上找到了。
TM2QC-XKY7G-WT9B9-DTW6M-X7WVD
如果有人用的着,给我发个包子吧。
用了一段时间的试用,现在不能用了,必须得要serial了
怎么搞定啊?
我google了很久,都找不到可以下载的keygen。。。
谁帮忙??多谢!!!!
t*n
发帖数: 14458
15
来自主题: Software版 - microsoft office 2007 professional Serial
你用的什么office2k7阿,是那个MS发的么?
那个自带SN

打了电话,说是在更新系统。。。如果这就是原因,那估计明天可以搞定
如果原因是我那个serial number被太多人用过,那我死定了。。。怎么搞啊?
可是为什么不能Online activate啊。。。。。
电话和Online 都不成。。。快疯了。。。。。。。
自己回答了。在googl上折腾了1.5个小时以后,终于在baidu上找到了。
TM2QC-XKY7G-WT9B9-DTW6M-X7WVD
如果有人用的着,给我发个包子吧。
用了一段时间的试用,现在不能用了,必须得要serial了
怎么搞定啊?
我google了很久,都找不到可以下载的keygen。。。
谁帮忙??多谢!!!!
p**5
发帖数: 2544
16
Happy New Year!
my laptop has some issue and want to reinstall. But the serial number
printed on the battery is not so clear, some letters are not recognizable
I can see the DELL service tag number. Is it possible to contact DELL and
provide the service tag number to request the win7 serial number?
The win7 disk cannot be found (or it did not come at all, cannot remember
clearly)
The hard drive was reformated already so no backup install on the HD either.
Any suggestions? Thanks.
l********r
发帖数: 175
17
I am trying to install serial edition of lammps2001 on Ubuntu system.
Reading the Makefile.serial file, I could see that it needs to build a /
STUBS directory. I downloaded some files from web like mpi_stusb.csh, mpi_
stubs.h and so on. But it could not work smoothly.
Anyone having some suggestions on how to do? Thanks a lot.
w*******y
发帖数: 60932
18
Best Buy has the Western Digital - Scorpio Blue 320GB Internal Serial ATA
Hard Drive for Laptops (OEM/Bare Drive) for $35 with free shipping.
Link:
http://www.bestbuy.com/site/Western Digital - Scorpio Blue 320GB Internal Serial ATA Hard Drive for Laptops (OEM/Bare Drive)/9861731.p?id=1218186269455&skuId=9861731
w*******y
发帖数: 60932
19
6 Feet High Speed HDMI Cable Male to Male Digital A/V Cable $0.99 with Free
shipping:
http://www.meritline.com/6-feet-high-speed-hdmi-cable-30awg-108
Coupon Code: MLCK9V28NL1
New Camera Camcorder Flexible Mini TriPod/Holder/Stand $0.75 with Free
shipping:
http://www.meritline.com/camera-camcorder-flexible-mini-tripod-
Coupon Code: MLCK9V28NL1
4 Pin IDE to 15 Pin Serial SATA Power Cable Adapter $0.69 with Free shipping:
http://www.meritline.com/4-pin-ide-to-15-pin-serial-sata-power-

Coupon Code... 阅读全帖
T*******t
发帖数: 9274
20
手一抖入了个
据说Rigid和DR都可以一分为二。内部还有一个serial number
外面和里面的serial number要对上才和谐。
在网上google了一下,没发现太多关于怎么把他们分开的信息
好像就是拧,但最后有个机关,需要工具打开。
谁有经验的给我讲讲吧....多谢了
s*********8
发帖数: 901
21
he stole women's panties
BELLEVILLE, Ontario — The lawyer for a military commander who flew Queen
Elizabeth II and other dignitaries around Canada said Thursday his client
will plead guilty to murder, sexual assaults and dozens of breaking and
entering charges.
Col. Russell Williams was the commander of Canada's largest Air Force base
until he was charged earlier this year with the murder of two women, the
sexual assault of two others and 82 break-ins, during which he stole women's
panties.
Mich... 阅读全帖
n****e
发帖数: 327
22
Why 药家鑫 carry a 7 inch knife with
him all the time? Is he a serial killer?
I never carry a knife anywhere.
J**S
发帖数: 25790
23
杀了很多人,居然连嫌疑人都没有。
KILLER自己失手,才被抓。。抓住以后,居然两次逃出来,继续作案。。
在SERIAL KILLER的眼里,美国警察真是笨蛋。。
还看到一个片子,KILLER失手,被警察FBI围捕追捕。 KILLER只能弃车,跑到附近人家
,劫持一个妇女和她的车子跑路,妇女的姐姐报案,结果警察几天也抓不到。 人家还
可以住MOTEL。后来,KILLER把妇女留MOTEL,自己驾车逃。 路上被警察发现,PULL
OVER以后,警察走近了,人家把枪拿出来,警察就投降了,还成了人质。 KILL 逼警察
开警车逃。。 最后,KILL还不是警察抓住的,倒是一个越战的老兵,把KILLER抓住报
警。 那时候,KILLER已经把那个笨蛋警察给杀了。 KILLER被抓,本来警察带KILLER找
警察的配枪,开车的时候。 KILLER用回形针把手铐弄开, 抢前坐的警察的枪, 但是
终因寡不敌众, 被警察开枪打死。 不过,那个被KILLER杀死的笨蛋警察,就不知道被
抛尸在哪里了。。
l****p
发帖数: 27354
24
前几天被抓的这个美国历史上犯案最多的serial attacker/killer 身手不错,如果没
有DNA,根本抓不到,根本就从来不是怀疑对象。
有了DNA,强奸的话不敢不带套,否则需要消灭的干干净净,很难。再加上不断增加的
摄像头和不断清晰的成像技术,在中美这样的国家,成为系列强奸杀人犯真的越来越难
了。
当然了,难是难。还是会有人知难而上的。世界上最成功的杀人犯,永远都是没有被抓
的。
l****z
发帖数: 29846
25
来自主题: USANews版 - Is Harry Reid a serial pederast?
August 4, 2012 by Baron Von Ottomatic
This is shocking news if it’s true, but multiple credible sources may have
uncovered evidence Senate Majority Leader Harry Reid (Democrat, Nevada) is a
serial pederast whose history of abusing young boys stretches back decades
and has affected innocent children in both Nevada and Washington D.C.
As we witnessed with Penn State University and Jerry Sandusky, these kinds
of deviant, illicit acts are often ignored and covered up for years by
people in authori... 阅读全帖
d********e
发帖数: 925
26
我想要的物品:
copy of PC receipt&UPC&Serial number@02/02/10
单张面值:
3 sets for
02/02/10
可接受的价格 (required):
$10/ea
物品新旧要求:
能做hp bundle rebate, never used for any HP bundle rebate. no photoshop PS
邮寄方式要求:
email
买卖双方谁承担邮寄损失(required if not code only):
付款方式说明:
non-cc paypal
其他补充说明:
广告的有效期:
till get
物品来源:
我的联系方式:
bbs mail
b****i
发帖数: 4824
27
来自主题: Classified版 - [求购]1 feb 28 laptop upc and serial $7
我想要的物品:
1 feb 28 laptop upc and serial $7
单张面值:
可接受的价格(必须明码标价!):
$7
物品新旧要求:
邮寄方式要求:
买卖双方谁承担邮寄损失(Required if not code only):
付款方式说明:
其他补充说明:
only need one
广告的有效期:
物品来源:
我的联系方式:
二手交易风险自负!请自行验证是否合法和一手卡!:
b****i
发帖数: 4824
28
来自主题: Classified版 - [出售]3月8号 laptop upc and serial # copy
二手交易风险自负!请自行验证是否合法和一手卡!:
y
我想卖的物品:
3月8号 laptop upc and serial # copy
单张面值:
$10
可接受价格(必须明码标价!):
$10
物品新旧要求:
online
邮寄方式要求:
email
买卖双方谁承担邮寄损失(Required if not code only):
付款方式说明:
paypal
其他补充说明:
广告的有效期:
物品来源(Required for All Cards!):
我的联系方式:
Warranty期限:
能否证明是合法的一手卡?(Required for All Cards!):
f******9
发帖数: 671
29
我想要的物品:
HP J4550打印机UPC+serial No.原件一个@$3 OBO
只要upc原件,不需要发票~~~
单张面值:
可接受的价格(必须明码标价!):
$3 OBO
物品新旧要求:
可以做HP bundle rebate
没做过hp bundle rebate
邮寄方式要求:
ICIP
买卖双方谁承担邮寄损失(Required if not code only):
付款方式说明:
non-cc paypal
A*******1
发帖数: 1561
30
来自主题: Classified版 - [求购] Staples HP G72-B66US Serial Number
我想要的物品:
Staples HP G72 Serial Number ( have not done any rebate with it)
单张面值:
可接受的价格(必须明码标价!):
$3
A*******1
发帖数: 1561
31
来自主题: Classified版 - [求购] Staples HP G72-B66US Serial Number
我想要的物品:
Staples HP G72 Serial Number ( have not done any rebate with it)
单张面值:
可接受的价格(必须明码标价!):
$3
h**********1
发帖数: 66
32
我的2011 course cd expired, 有谁可以share course cd serial number. 我只需要
一次安装。价格站内email联系。谢谢!!
n*******4
发帖数: 6402
33
我想要的物品:
Samsung - 840 EVO 250GB Internal Serial ATA I
单张面值:
90+tax
best buy deal
可接受的价格(必须明码标价!):
110
物品新旧要求:
new seal
邮寄方式要求:
my label(要求zip code 开头是0或者1)
买卖双方谁承担邮寄损失(Required if not code only):
default
付款方式说明:
any
其他补充说明:
要求zip code 开头是0或者1
广告的有效期:
物品来源:
best buy
我的联系方式:
646-8O1 5158
s******[email protected]
二手交易风险自负!请自行验证是否合法和一手卡!:
r******t
发帖数: 109
34
求一个 Epson R2000 original serial number label, $5
t**********0
发帖数: 314
35
出售30+ 台 apple watch serial 2 space gray, 42mm @340, [email protected]
请email : [email protected]
Thanks.
n********8
发帖数: 4
36
莫名其妙收到hp的信问我要serial number。谁有啊?
在哪里可以找到?
不是staples的easy rebate嘛,怎么会这样。
谢谢!
n********8
发帖数: 4
37
啊? serial number 是不一样的吗?
没有一拖二
g********e
发帖数: 410
38
哪个是serial number?最接近的是service tag
谢谢
rl
发帖数: 336
39
p product number
s serial number
S********t
发帖数: 4402
40
随便google的。文章我还没有看。
http://www.simplehelp.net/2010/04/14/how-to-locate-your-ipad-if-its-lost-or-stolen/
locate your iPad by serial numbers:
http://stolenipod.com/archives/4
下面有个how to find lost ipod的文章。不知道有没有帮助:
http://www.ehow.com/how_2092592_find-lost-ipod.html
S********t
发帖数: 4402
41
by serial number的好像也有了。link我给了一个。不过我还没有研究。大家都可以看
看。
v******o
发帖数: 3417
42
来自主题: ebiz版 - 告诫算serial number做rebate的
开眼了,到ebiz,见过了算coupon,算rewards,算serial number,
有没有算credit card,算debit card的?
u******e
发帖数: 1010
43
来自主题: ebiz版 - 桃树 的rebate 要 serial #
桃树 的rebate 要 serial # ,难道需要开苞?
M*****i
发帖数: 1242
44
8月14号买的,都是4.0.1
serial#分别是:
1台331
2台33A
1台33B
1台33C
1台33D
1台33K
1台33V
大家参考.
h****o
发帖数: 3406
45
几年前卖了一个手机就是这样,卖家直接说他收到的就是这样,serial #关他屁事,然
后把他的不能用的手机退给我了。
d*****r
发帖数: 3762
46
No. It says Serial Number in the UPC label
m**********a
发帖数: 10817
47
DocumentIO买的D480,UPC barcode 上面没有写serial no。 只有一个body no。
求答案。
i****e
发帖数: 2058
48
thanksgiving从target.com买的iTouch,只收到空信封,上面附了张notice,说寄品损坏
了。
跟邮局联系,邮局问我要serial number。没用过,不知道像iTouch这样的小东西,会
有sn吗?
谢谢先!
A*******1
发帖数: 1561
49
DocumentIO买的D480,UPC barcode 上面没有写serial no。 只有一个body no。
S********t
发帖数: 4402
50
local买的据我所知是需要对serial number的。不过我还没有在local退过。我只是听
说而已。
我这个是target.com的online order,和amazon.com原理一样。
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)