里面有apex安装包,和我写的教程=================================================================================================
2023/12/24 10:12:22 152.51MB apex
1
StartingOutwithPython,GlobalEditionBy作者:TonyGaddis(author)ISBN-10书号:1292225750ISBN-13书号:9781292225753Edition版本:4thedition出版日期:2018-04-20Pages:748ForcoursesinPythonprogramming.Aclearandstudent-friendlyintroductiontothefundamentalsofPythonInStartingOutwithPython,4thEdition,TonyGaddis’accessiblecoverageintroducesstudentstothebasicsofprogramminginahigh-levellanguage.Python,aneasy-to-learnandincreasinglypopularobject-orientedlanguage,allowsreaderstobecomecomfortablewiththefundamentalsofprogrammingwithoutthetroublesomesyntaxthatcanbechallengingfornovices.WiththeknowledgeacquiredusingPython,studentsgainconfidenceintheirskillsandlearntorecognizethelogicbehinddevelopinghigh-qualityprograms.StartingOutwithPythondiscussescontrolstructures,functions,arrays,andpointersbeforeobjectsandclasses.AswithallGaddistexts,clearandeasy-to-readcodelistings,conciseandpracticalreal-worldexamples,focusedexplanations,andanabundanceofexercisesappearineverychapter.Updatestothe4thEditionincluderevised,improvedproblemsthroughout,andnewTurtleGraphicssectionsthatprovideflexibilityasassignable,optionalmaterial.PrefaceChapter1IntroductiontoComputersandProgrammingChapter2Input,Processing,andOutputChapter3DecisionStructuresandBooleanLogicChapter4RepetitionStructuresChapter5FunctionsChapter6FilesandExceptionsChapter7ListsandTuplesChapter8MoreAboutStringsChapter9DictionariesandSetsChapter10ClassesandObject-OrientedProgrammingChapter11InheritanceChapter12RecursionChapter13GUlProgrammingAppendixAInstalingPythonAppendixBIntroductiontoIDLEAppendixCTheASCllCharacterSetAppendixDPredefinedNamedColorsAppendixEMoreAbouttheimportStatementAppendixFInstallingModuleswiththepipUtilityAppendixGAnswerstoCheckpoints
2023/12/9 12:26:18 6.02MB Python
1
ReactNativehelpsdevelopersreusecodeacrossdifferentmobileplatformslikeiOSandAndroid.ThisbookwillshowyoueffectivedesignpatternsintheReactNativeworldandwillmakeyoureadyforprofessionaldevelopmentinbigteams.ThebookwillfocusonlyonthepatternsthatarerelevanttoJavaScript,ECMAScript,ReactandReactNative.However,youcansuccessfullytransferalotoftheskillsandtechniquestootherlanguages.Icallthem“Ideapatterns”.ThisbookwillstartwiththemoststandarddevelopmentpatternsinReactlikecomponentbuildingpatterns,stylingpatternsinReactNativeandthenextendthesepatternstoyourmobileapplicationusingrealworldpracticalexamples.Eachchaptercomeswithfull,separatesourcecodeofapplicationsthatyoucanbuildandrunonyourphone.Thebookisalsodivingintoarchitecturalpatterns.EspeciallyhowtoadaptMVCtoReactenvironment.YouwilllearnFluxarchitectureandhowReduxisimplementingit.Eachapproachwillbepresentedwithitsprosandcons.YouwilllearnhowtoworkwithexternaldatasourcesusinglibrarieslikeReduxthunkandReduxSaga.
2023/12/9 0:57:40 6.11MB react native design patterns
1
LeapMotion官方中文开发文档,PDF文件,对于leapMotion开发者可以提供帮助
2023/11/27 17:15:25 979KB leapmotion
1
C++课程设计题目,包括1、输出10至99之间每位数的乘积大于每位数的和的数,例如对于数字12,有1*22+7,故输出该数。
2、求任意n个数中的最大数和最小数:先输入一个正整数n(个数),而后再输入任意n个实数,找出这n个数中的最大数及最小数并显示出来。
3、对两个有序数组进行合并:设有如下数组A、B,并假设两个数组的元素都已经有序(从大到小降序排列)。
编程序,合并A、B数组形成一个新的数组C,并使C的元素仍有序(从大到小降序排列)。
intA[10]={123,86,80,49,33,15,7,0,-1,-3};
intB[10]={100,64,51,50,27,19,15,12,5,2};
4、有一个分数序列:1/2,1/3,1/4,1/5,1/6,1/7,……,编写函数求序列前n项之和,要求在主程序中提示用户输入整数n,并判断所输入数是否合法(大于1为合法),如果合法则调用求和函数并输出结果。
5、计算两个日期之间的间隔天数:从键盘输入两个日期(如以year1,month1,day1以及year2,month2,day2的方式来输入它们),而后计算出这两个日期的间隔天数并在屏幕上显示出结果。
要求编制具有如下原型的函数difs2Date:longGetDayDifference(inty1,intm1,intd1,inty2,intm2,intd2);
并在主函数中调用向屏幕上输出计算结果。
7、声明并定义一个日期类CDate,其中数据成员m_iYear,m_iMonth,m_iDay,分别表示年、月、日,成员函数SetDate()用来设置年、月、日,成员函数IsLeapYear()用来判断当前的年份是否为闰年,构造函数带有默认形参值,可接收外部参数对m_iYear,m_iMonth,m_iDay进行初始化,另要求编写测试程序,定义一个CDate类对象,将其日期设置为2005年1月1日,调用成员函数IsLeapYear()判断该年份是否为闰年,并输出判断结果.说明:闰年的年份可以被4整除而不能被100整除,或者能被400整除.8、编写一个程序计算两个给定长方形的面积,其中在设计类成员函数GetTotalArea()(用于计算两个长方形的总面积)时使用对象作为参数。
9、设计一个时间类Time,包括3个数据成员,时(h)、分(m)、秒(s),另外包括存取各数据成员和设置时间的成员函数,按上、下午各12小时或按24小时输出时间的成员函数,以及默认构造函数,默认时间值为0时0分0秒。
10、编写一个程序,输入3个学生的英语和计算机成绩,并按总分从高到低排序(要求设计一个学生类Student)。
11.求解一元二次方程。
一元二次方程的定义为:ax2+bx+c=0(1)如果b2-4ac>0,方程有两个不同的实根,分别是:(2)如果b2-4ac<0,方程没有实根,但有虚根;
(3)如果b2-4ac=0,方程有一个实根。
请你编写一个程序,使其能求出多个二次方程的根。
该程序要询问用户是否想继续解下一个方程。
用户输入1来继续,输入其它数字,则终止程序。
程序要求用户输入a,b和c,然后根据前面的条件计算,并输出答案。
要求:使用类实现,(1)a,b,c为该类的私有成员变量;
(2)求根的实现为该类的成员函数,形式为://函数返回值:实根的个数;
//参数:x-用以返回实根值的数组;
intCalResult(doublex[]);(3)该类还包含有参构造函数、析构函数。
2023/10/23 21:12:04 7.01MB C++ 课程设计 源代码
1
TheF1C600processorrepresentsAllwinner’slatestachievementinmobileapplicationsprocessors.Theprocessortargetstheneedsofboomboxmarkets.F1C600processorisbasedontheARM9CPUarchitecturewithahighdegreeoffunctionalintegration.F1C600supportsFullHDvideoplayback,includingH.264,H.263,MPEG1/2/4decoder.IntegratedaudiocodecandI2S/PCMinterfaceprovideenduserswithagoodaudioexperience.TV-INinterfaceenablesvideoinputbyconnectingtovideodevicessuchascamera,andTV-OUTinterfaceenablesvideooutputbyconnectingtoTVdevices.ToreducetheBOMcosts,F1C600built-inDDR1memory,andpackedwithgeneral-purposeperipheralssuchasUSBOTG,UART,SPI,TWI,TP,SD/MMC,CSIetc.F1C600perfectlysupportsvariousapplicationsofmainstreamoperatingsystemssuchasAndriod,Linux,etc.F1C600outperformscompetitorsintermsofitspowerfulperformance,lowpowerconsumption,andflexiblescalability.entiawifiauidoandvideo
2023/9/8 3:03:49 9.69MB 全志 f1c600 手册
1
作曲者genSwooleApi
2023/8/9 22:43:45 11KB PHP
1
《GoogleAPI开发详解》书中GoogleEarth部分的地图定位源程序
2023/7/18 22:44:15 1.81MB google earth API C++
1
由http://brightguo.com官方提供的LeapMotion开发资料
2023/7/13 22:53:12 1016KB leapmotion
1
Today,machinelearningunderliesarangeofapplicationsweuseeveryday,fromproductrecommendationstovoicerecognition--aswellassomewedon'tyetuseeveryday,includingdriverlesscars.Itisthebasisofthenewapproachincomputingwherewedonotwriteprogramsbutcollectdata;theideaistolearnthealgorithmsforthetasksautomaticallyfromdata.Ascomputingdevicesgrowmoreubiquitous,alargerpartofourlivesandworkisrecordeddigitally,andas"BigData"hasgottenbigger,thetheoryofmachinelearning--thefoundationofeffortstoprocessthatdataintoknowledge--hasalsoadvanced.Inthisbook,machinelearningexpertEthemAlpaydinoffersaconciseoverviewofthesubjectforthegeneralreader,describingitsevolution,explainingimportantlearningalgorithms,andpresentingexampleapplications.Alpaydinoffersanaccountofhowdigitaltechnologyadvancedfromnumber-crunchingmainframestomobiledevices,puttingtoday'smachinelearningboomincontext.Hedescribesthebasicsofmachinelearningandsomeapplications;theuseofmachinelearningalgorithmsforpatternrecognition;artificialneuralnetworksinspiredbythehumanbrain;algorithmsthatlearnassociationsbetweeninstances,withsuchapplicationsascustomersegmentationandlearningrecommendations;andreinforcementlearning,whenanautonomousagentlearnsactsoastomaximizerewardandminimizepenalty.Alpaydinthenconsiderssomefuturedirectionsformachinelearningandthenewfieldof"datascience,"anddiscussestheethicalandlegalimplicationsfordataprivacyandsecurity.TableofContentsChapter1WhyWeAreInterestedInMachineLearningChapter2MachineLearning,Statistics,AndDataAnalyticsChapter3PatternRecognitionChapter4NeuralNetworksAndDeepLearningChapter5LearningClustersAndRecommendationsChapter6LearningToTakeActionsChapter7WhereDoWeGoFromHere?
2023/7/11 7:13:56 1.82MB Machine Learning New AI
1
共 89 条记录 首页 上一页 下一页 尾页
在日常工作中,钉钉打卡成了我生活中不可或缺的一部分。然而,有时候这个看似简单的任务却给我带来了不少烦恼。 每天早晚,我总是得牢记打开钉钉应用,点击"工作台",再找到"考勤打卡"进行签到。有时候因为工作忙碌,会忘记打卡,导致考勤异常,影响当月的工作评价。而且,由于我使用的是苹果手机,有时候系统更新后,钉钉的某些功能会出现异常,使得打卡变得更加麻烦。 另外,我的家人使用的是安卓手机,他们也经常抱怨钉钉打卡的繁琐。尤其是对于那些不太熟悉手机操作的长辈来说,每次打卡都是一次挑战。他们总是担心自己会操作失误,导致打卡失败。 为了解决这些烦恼,我开始思考是否可以通过编写一个全自动化脚本来实现钉钉打卡。经过一段时间的摸索和学习,我终于成功编写出了一个适用于苹果和安卓系统的钉钉打卡脚本。
2024-04-09 15:03 15KB 钉钉 钉钉打卡