RecativeCocoaGitHub推荐书籍,针对Reactive应用于IOS项目的实战篇!!!
2023/12/26 19:14:37 2.75MB IOS Reactive
1
FunctionalReactiveProgrammingOniOS,FunctionalreactiveprogrammingintroductionusingReactiveCocoa中文译本
2023/12/21 16:45:15 4.61MB 开源
1
LearningFunctionalProgramminginGo英文无水印原版pdfpdf所有页面使用FoxitReader、PDF-XChangeViewer、SumatraPDF和Firefox测试都可以打开本资源转载自网络,如有侵权,请联系上传者或csdn删除查看此书详细信息请在美国亚马逊官网搜索此书
2023/12/15 5:22:01 31.49MB Learning Functional Programming Go
1
Aspose.Slidesfor.NETisaMicrosoftPowerPoint®managementAPIthatenables.NETapplicationstoreadandwritePowerPoint®documentswithoutusingMicrosoftPowerPoint®.Aspose.Slidesfor.NETisthefirstandonlycomponentthatprovidesthefunctionalitytomanagePowerPoint®documents.Aspose.Slidesfor.NETprovidesalotofkeyfeaturessuchasmanagingtext,shapes,tables&animations,addingaudioandvideotoslides,previewingslides,exportingslidestoSVG,PDFformatandmore.
2023/12/5 8:02:05 47.37MB Aspose.Slide Aspose 16.11.0.0
1
5GNR:Architecture,Technology,Implementation,andOperationof3GPPNewRadioStandardsisanin-depth,systematic,technicalreferenceon3GPP'sNewRadiostandards(Release15andbeyond),coveringtheunderlyingtheory,functionaldescriptions,practicalconsiderationsandimplementationofthe5Gnewradioaccesstechnology.Thebookdescribesthedesignandoperationofindividualcomponentsandshowshowtheyareintegratedintotheoverallsystemandoperatefromasystemsperspective.Uniquely,thisbookgivesdetailedinformationonRANprotocollayers,transport,networkarchitectureandservices,aswellaspracticalimplementationanddeploymentissues,makingitsuitableforresearchersandengineerswhoaredesigninganddeveloping5Gsystems.Reflectingontheauthor's30plusyearsofexperienceinsignalprocessing,microelectronicsandwirelesscommunicationsystemdesign,thisbookisidealforprofessionalengineers,researchersandgraduatestudentsworkingandresearchingincellularcommunicationsystemsandprotocolsaswellasmobilebroadbandwirelessstandards.Strongfocusonpracticalconsiderations,implementationanddeploymentissuesTakesatop-downapproachtoexplainsystemoperationandfunctionalinterconnectionCoversallfunctionalcomponents,features,andinterfacesbasedonclearprotocolstructureandblockdiagramsDescribesRFandtransceiverdesignconsiderationsinsub-6GHzandmmWavebandsCoversnetworkslicing,SDN/NFV/MECnetworksandcloudandvirtualizedRANarchitecturesComprehensivecoverageofNRmulti-antennatechniquesandbeamformedoperationAconsistentandintegratedcoveragereflectingtheauthor’sdecadesofexperienceindeveloping3G,4Gand5Gtechnologiesandwritingtwosuccessfulbooksintheseareas
2023/11/25 3:32:37 28.93MB 5G NR New Radio
1
FunctionalProgramminginScala正式版
2023/11/10 13:22:02 12.06MB scala functional programming
1
HPEStoreVirtual3200Storage存储服务器规格书HPEStoreVirtual3200providesavirtualizedpoolofstorageresourcestodeliverenterprise–levelstoragefunctionalitythatenhancesvirtualenvironments,simplifiesmanagement,andreducescosts.Easytodeploy,growandmaintain
2023/10/13 22:19:34 677KB HPE StoreVirtual
1
Over110effectiverecipestohelpyoubuildandoperateOpenStackcloudcomputing,storage,networking,andautomationAboutThisBookExploremanynewfeaturesofOpenStack'sJunoandKiloreleasesInstall,configure,andadministercoreprojectswiththehelpofOpenStackObjectStorage,BlockStorage,andNeutronNetworkingservicesHarnesstheabilitiesofexperiencedOpenStackadministratorsandarchitects,andrunyourownprivatecloudsuccessfullyPractical,real-worldexamplesofeachserviceandanaccompanyingVagrantenvironmentthathelpsyoulearnquicklyInDetailOpenStackOpenSourcesoftwareisoneofthemostusedcloudinfrastructurestosupportsoftwaredevelopmentandbigdataanalysis.Itisdevelopedbyathrivingcommunityofindividualdevelopersfromaroundtheglobeandbackedbymostoftheleadingplayersinthecloudspacetoday.Itissimpletoimplement,massivelyscalable,andcanstorealargepoolofdataandnetworkingresources.OpenStackhasastrongecosystemthathelpsyouprovisionyourcloudstorageneeds.AddOpenStack'senterprisefeaturestoreducethecostofyourbusiness.Thisbookwillshowyouthestepstobuildupaprivatecloudenvironment.Atthebeginning,you'lldiscovertheusesofcloudservicessuchastheidentityservice,imageservice,andcomputeservice.You'lldiveintoNeutron,theOpenStackNetworkingservice,andgetyourhandsdirtywithconfiguringML2,networks,routers,andDistributedVirtualRouters.You'llthengathermoreexpertknowledgeonOpenStackcloudcomputingbymanagingyourcloud'ssecurityandmigration.Afterthat,wedelveintoOpenStackObjectstorageandhowtomanageserversandworkwithobjects,cluster,andstoragefunctionalities.Also,asyougodeeperintotherealmofOpenStack,you'lllearnpracticalexamplesofBlockstorage,LBaaS,andFWaaS:installationandconfigurationcoveredgroundup.Finally,youwilllearnOpenStackdashboard,AnsibleandForeman,Key
2023/10/11 16:43:27 7.15MB OpenStack Cloud
1
Lua特性轻量级:它用标准C语言编写并以源代码形式开放,编译后仅仅一百余K,可以很方便的嵌入别的程序里。
可扩展:Lua提供了非常易于使用的扩展接口和机制:由宿主语言(通常是C或C++)提供这些功能,Lua可以使用它们,就像是本来就内置的功能一样。
其它特性:支持面向过程(procedure-oriented)编程和函数式编程(functionalprogramming);
自动内存管理;
只提供了一种通用类型的表(table),用它可以实现数组,哈希表,集合,对象;
语言内置模式匹配;
闭包(closure);
函数也可以看做一个值;
提供多线程(协同进程,并非操作系统所支持的线程)支持;
通过闭包和table可以很方便地支持面向对象编程所需要的一些关键机制,比如数据抽象,虚函数,继承和重载等。
2023/10/7 16:31:34 2.75MB C++
1
TheLabVIEWDatabaseConnectivityToolkitisasetofeasy-to-usetoolswithwhichyoucanquicklyconnecttolocalandremotedatabasesandperformmanycommondatabaseoperationswithouthavingtoperformstructuredquerylanguage(SQL)programming.Itreadilyconnectstopopulardatabases,suchasMicrosoftAccess,SQLServer,andOracle.Ifyouneedadvanceddatabasefunctionalityandflexibility,theDatabaseConnectivityToolkitalsoofferscompleteSQLcapabilities.CompleteSQLfunctionalityConnectiontomostpopulardatabasesthroughMicrosoftADOtechnologyDirectinteractionwithlocalorremotedatabasesHigh-level,easy-to-useVIsforcommondatabaseoperationsTheDatabaseConnectivityToolkitisalsoavailableasabundlewiththeInternetDevelopersToolkitandtheSPCToolkitintheEnterpriseConnectivityToolkit.
2023/9/25 11:01:19 551KB NI LabVIEW 数据库连接工具包 SQL
1
共 78 条记录 首页 上一页 下一页 尾页
在日常工作中,钉钉打卡成了我生活中不可或缺的一部分。然而,有时候这个看似简单的任务却给我带来了不少烦恼。 每天早晚,我总是得牢记打开钉钉应用,点击"工作台",再找到"考勤打卡"进行签到。有时候因为工作忙碌,会忘记打卡,导致考勤异常,影响当月的工作评价。而且,由于我使用的是苹果手机,有时候系统更新后,钉钉的某些功能会出现异常,使得打卡变得更加麻烦。 另外,我的家人使用的是安卓手机,他们也经常抱怨钉钉打卡的繁琐。尤其是对于那些不太熟悉手机操作的长辈来说,每次打卡都是一次挑战。他们总是担心自己会操作失误,导致打卡失败。 为了解决这些烦恼,我开始思考是否可以通过编写一个全自动化脚本来实现钉钉打卡。经过一段时间的摸索和学习,我终于成功编写出了一个适用于苹果和安卓系统的钉钉打卡脚本。
2024-04-09 15:03 15KB 钉钉 钉钉打卡