delphi中的json解析类,用法:转对象:js:=so();js.I['nID']    := nID;       //       js.S['sKey']   := sKey;      //       js.S['sID']    := sID;       //       js.S['sID3']   := sID3;      //取返回值:vJson:=So(lowercase(sResult));       //检查结果       ret:=getJsonValue(vJson,'error','');
2025/2/10 20:38:20 134KB delphi json superobject getJsonValue
1
PBDOM遍历一个节点下的所有节点name及text的函数例:1>trades_sold_get_response!2>trades!3>trade!4>adjust_fee:0.004>buyer_nick:hwangyanhong4>buyer_obtain_point_fee:04>buyer_rate:false4>cod_fee:0.004>cod_status:NEW_CREATED4>consign_time:2011-04-1821:32:404>created:2011-04-1712:25:234>discount_fee:0.004>modified:2011-04-1821:32:404>num:14>num_iid:100502052764>orders!5>order!6>adjust_fee:0.006>buyer_rate:false6>discount_fee:0.006>num:16>num_iid:100502052766>oid:723705613488006>payment:1.006>pic_path:http://img04.taobaocdn.com/bao/uploaded/i4/T1Ny8OXaXKXXaOBDQT_013227.jpg6>price:1.006>refund_status:NO_REFUND6>seller_rate:false6>seller_type:C6>status:WAIT_BUYER_CONFIRM_GOODS6>title:测试商品,请勿购买6>total_fee:1.004>pay_time:2011-04-1712:27:434>payment:1.004>pic_path:http://img04.taobaocdn.com/bao/uploaded/i4/T1Ny8OXaXKXXaOBDQT_013227.jpg4>point_fee:04>post_fee:0.004>price:1.004>real_point_fee:04>received_payment:0.004>receiver_address:所属地区:手机/小灵通号码:13764963675备注:4>receiver_name:不需收货人4>receiver_zip:0000004>seller_nick:xianzai894>seller_rate:false4>shipping_type:free4>sid:723705613488004>status:WAIT_BUYER_CONFIRM_GOODS4>tid:723705613488004>title:现在店4>total_fee:1.004>type:fixed2>total_results:1
1
电信自注册APK源码,包含获取SIM卡的ICCID(20位),IMSI,NID,SID等
2024/9/5 15:53:06 23KB 电信自注册
1
Inputs:[AorV]EitherAorVwhereAisaNxNadjacencymatrix,whereA(I,J)isnonzeroifandonlyifanedgeconnectspointItopointJNOTE:WorksforbothsymmetricandasymmetricAVisaNx2(orNx3)matrixofx,y,(z)coordinates[xyCorE]EitherxyorCorE(orE3)wherexyisaNx2(orNx3)matrixofx,y,(z)coordinates(equivalenttoV)NOTE:onlyvalidwithAasthefirstinputCisaNxNcost(perhapsdistance)matrix,whereC(I,J)containsthevalueofthecosttomovefrompointItopointJNOTE:onlyvalidwithAasthefirstinputEisaPx2matrixcontainingalistofedgeconnectionsNOTE:onlyvalidwithVasthefirstinputE3isaPx3matrixcontainingalistofedgeconnectionsinthefirsttwocolumnsandedgeweightsinthethirdcolumnNOTE:onlyvalidwithVasthefirstinput[SID](optional)1xLvectorofstartingpoints.Ifunspecified,thealgorithmwillcalculatetheminimalpathfromallNpointstothefinishpoint(s)(automaticallysetsSID=1:N)[FID](optional)1xMvectoroffinishpoints.Ifunspecified,thealgorithmwillcalculatetheminimalpathfromthestartingpoint(s)toallNpoints(automaticallysetsFID=1:N)Outputs:[costs]isanLxMmatrixofminimumcostvaluesfortheminimalpaths[paths]isanLxMcellcontainingtheshortestpatharrays[showWaitbar](optional)ascalarlogicalthatinitializesawaitbarifnonzeroNote:Iftheinputsare[A,xy]or[V,E],thecostisassumedtobe(andiscalculatedas)thepointtopointEuclideandistanceIftheinputsare[A,C]or[V,E3],thecostisobtainedfromeithertheCmatrixorfromtheedgeweightsinthe3rdcolumnofE3Example:%Calculatethe(allpairs)shortestdistancesandpathsusing[A,C]inputsn=7;A=zeros(n);xy=10*rand(n,2)tri=delaunay(xy(:,1),xy(:,2));I=tri(:);J=tri(:,[231]);J=J(:);IJ=I+n*(J-1);A(IJ)=1a=(1:n);b=a(ones(n,1),:);C=round(reshape(sqrt(sum((xy(b,:)-
2024/8/21 4:46:22 4KB 路由WSN
1
库存管理系统实体:供应商信息(编号,供应商名称,负责人,联系电话,地址,备注)货品信息(编号,名字,仓库名称,规格,单位,数量,单价,总价,警戒线,编辑日期,备注)用户信息(编号,姓名,密码,权限)仓库信息(编号,仓库名,负责人,仓库电话,所属单位,备注)关系:入库管理(编号,货物名称,供应商名称,仓库名称,货物规格,货物单位,进货数量,单价,总价,进货日期,经收人,备注)出库管理(编号,货物名称,仓库名称,货物规格,货物单位,出库数量,单价,总价,出货日期,出库单位,经手人,备注)实体表:tb_users(UserID,UserName,UserPwd,UserRight)tb_stores(SID,Sname,Speople,Stel,Sunit,Sremarks)tb_goods(GID,Gname,Sname,Gstyle,Gunit,Gcount,Gprice,Gsum,Gcordon,Geditime,Gremarks)tb_supplyer(SUID,SUname,SUpeople,SUtel,SUaddress,SUremarks)关系表:tb_ingoods(IGID,Gname,SUname,Gstyle,Gunit,INcount,Gprice,Gsum,INtime,INpeople,INremarks)tb_outGoods(OGID,Gname,SUname,Gstyle,Gunit,OUTcount,OUTprice,OUTsum,OUTtime,OUTunit,OUTpeople,OUTremarks)
2024/1/29 10:22:21 1.11MB 库存管理系统
1
此SAS的SID亲测有效,有效期到2019.2,SAS安装,先把时间改成2015年1月1日,安装成功后,在使用此sid续期
2023/11/13 16:50:43 5KB SAS SID 激活
1
实现批量对ArcGIS影像栅格格式(*.img;*.sid;*.jpg;*.jpeg;*.bmp;*.tif;*.gif;*.emf;*.wmf;*.png等)配准
2023/8/25 20:45:51 614KB ArcGIS 自动配准
1
微信PC版协议实现,本人亲身调试通过,可做二次开发:1.获取服务器分配的一个唯一会话ID2.通过会话ID获得随机登录二维码3.轮询手机端是否已经扫描二维码并确认4.访问登录地址,获得uin和sid
2020/7/3 9:14:55 88.91MB PC电脑 微信协议 登录
1
信息共享模型,SID中一切的表、字段信息
2021/3/18 10:35:04 785KB SID
1
该存储库不再维护。
它稳定且可以正常工作,不会具有新功能或目标。
ECS出口商将AWSECS集群目标导出到Prometheusmake./bin/ecs-exporter--aws.region="${AWS_REGION}"笔记:默认情况下,此导出器将在端口9222上进行侦听需要AWS凭证或EC2实例的权限您可以使用以下IAM策略来授予所需的权限:{"Version":"2012-10-17","Statement":[{"Sid":"","Effect":"A
2020/3/18 12:26:39 7.18MB aws amazon metrics cluster
1
在日常工作中,钉钉打卡成了我生活中不可或缺的一部分。然而,有时候这个看似简单的任务却给我带来了不少烦恼。 每天早晚,我总是得牢记打开钉钉应用,点击"工作台",再找到"考勤打卡"进行签到。有时候因为工作忙碌,会忘记打卡,导致考勤异常,影响当月的工作评价。而且,由于我使用的是苹果手机,有时候系统更新后,钉钉的某些功能会出现异常,使得打卡变得更加麻烦。 另外,我的家人使用的是安卓手机,他们也经常抱怨钉钉打卡的繁琐。尤其是对于那些不太熟悉手机操作的长辈来说,每次打卡都是一次挑战。他们总是担心自己会操作失误,导致打卡失败。 为了解决这些烦恼,我开始思考是否可以通过编写一个全自动化脚本来实现钉钉打卡。经过一段时间的摸索和学习,我终于成功编写出了一个适用于苹果和安卓系统的钉钉打卡脚本。
2024-04-09 15:03 15KB 钉钉 钉钉打卡