个人比较喜欢的一个IDEA主题,更加护眼,主题是一个jar的包。
导入到idea的方法如下:file–>importsetttings–>主题jar文件–>确认–>重启同样的,自定义的主题也可以保存起来。
什么时候想用就再导入。
2024/6/21 12:41:49 2KB IDEA IDE
1
packageasc;importjava.awt.*;importjavax.swing.*;publicclasscsextendsJFrame{//定义组件JPaneljp1,jp2,jp3;//面板JLabeljlb1,jlb2;//标签JButtonjb1,jb2;//按钮JTextFieldjtf;//文本JPasswordFieldjpf;//密码publicstaticvoidmain(String[]args){cswin=newcs();}//构造函数publiccs(){//创建面板jp1=newJPanel();jp2=newJPanel();jp3=newJPanel();//创建标签jlb1=newJLabel("用户名");jlb2=newJLabel("密码");//创建按钮jb1=newJButton("登录");jb2=newJButton("重置");//创建文本框jtf=newJTextField(10);//创建密码框jpf=newJPasswordField(10);//设置布局管理this.setLayout(newGridLayout(3,1));//网格式布局//加入各个组件jp1.add(jlb1);jp1.add(jtf);jp2.add(jlb2);jp2.add(jpf);jp3.add(jb1);jp3.add(jb2);//加入到JFramethis.add(jp1);this.add(jp2);this.add(jp3);//设置窗体this.setTitle("用户登录");//窗体标签this.setSize(300,150);//窗体大小this.setLocationRelativeTo(null);//在屏幕中间显示(居中显示)this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);//退出关闭JFramethis.setVisible(true);//显示窗体//锁定窗体this.setResizable(false);}}
2024/6/21 2:27:16 2KB ..
1
HennessyandPattersonwrotethefirsteditionofthisbookwhengraduatestudentsbuiltcomputerswith50,000transistors.Today,warehouse-sizecomputerscontainthatmanyservers,eachconsistingofdozensofindependentprocessorsandbillionsoftransistors.Theevolutionofcomputerarchitecturehasbeenrapidandrelentless,butComputerArchitecture:AQuantitativeApproachhaskeptpace,witheacheditionaccuratelyexplainingandanalyzingtheimportantemergingideasthatmakethisfieldsoexciting.
2024/6/20 9:58:41 23.76MB computer arc
1
项目中发现以下导入报错,原来是缺少这个jar包importjavax.ejb.CreateException;importjavax.ejb.EJBHome;
2024/6/16 21:41:26 50KB jar包
1
本文件内含有支持所有Excel文件解析导入的方法
2024/6/16 6:17:34 13KB Import Excel 解析 导入
1
无论您刚接触电脑还是一个有经验的程序员,本书都将有助您学习使用Python语言。
目录表前言本书的读者本书的由来本书目前的状况官方网站约定条款欢迎给我反馈值得思考的一些东西1.介绍简介Python的特色概括为什么不使用Perl?程序员的话2.安装PythonLinux和BSD用户Windows®用户概括3.最初的步骤简介使用带提示符的解释器挑选一个编辑器使用源文件输出它如何工作可执行的Python程序获取帮助概括4.基本概念字面意义上的常量数字符串变量标识符的命名数据类型对象输出它如何工作逻辑行与物理行缩进概括5.运算符与表达式简介运算符运算符优先级计算顺序结合规律表达式使用表达式概括6.控制流简介if语句使用if语句它如何工作while语句使用while语句for循环使用for语句break语句使用break语句continue语句使用continue语句概括7.函数简介定义函数函数形参使用函数形参局部变量使用局部变量使用global语句默认参数值使用默认参数值关键参数使用关键参数return语句使用字面意义上的语句DocStrings使用DocStrings概括8.模块简介使用sys模块字节编译的.pyc文件from..import语句模块的__name__使用模块的__name__制造你自己的模块创建你自己的模块from..importdir()函数使用dir函数概括9.数据结构简介列表对象与类的快速入门使用列表元组使用元组元组与打印语句字典使用字典序列使用序列引用对象与引用更多字符串的内容字符串的方法概括10.解决问题——编写一个Python脚本问题解决方案版本一版本二版本三版本四进一步优化软件开发过程概括11.面向对象的编程简介self类创建一个类对象的方法使用对象的方法__init__方法使用__init__方法类与对象的变量使用类与对象的变量继承使用继承概括12.输入/输出文件使用文件储存器储存与取储存概括13.异常错误try..except处理异常引发异常如何引发异常try..finally使用finally概括14.Python标准库简介sys模块命令行参数更多sys的内容os模块概括15.更多Python的内容特殊的方法单语句块列表综合使用列表综合在函数中接收元组和列表lambda形式使用lambda形式exec和eval语句assert语句repr函数概括16.接下来学习什么?
2024/6/15 13:07:56 1.27MB Phyton 教程
1
在开发环境中输入importdocx测试三方库有没有成功,显示ImportError:Nomodulenamed'exceptions'原来是通过命令行下载的docx安装包还没有完全兼容python3,估计这个安装包还只兼容python2(python2和python3差别还是挺大的,虽然现在python3出来很久了,但是不少三方库还没有更新),因此需要自己找一个兼容的包:python_docx-0.8.6-py2.py3-none-any.whl。
然后在AnacondaPrompt命令窗口中输入一下指令:pipuninstalldocx(把原来安装的docx卸载掉)pipinstallpython_docx-0.8.6-py2.py3-none-any.whl
2024/6/11 9:18:39 180KB No mod
1
WelcometoLongShort-TermMemoryNetworksWithPython.LongShort-TermMemory(LSTM)recurrentneuralnetworksareoneofthemostinterestingtypesofdeeplearningatthemoment.Theyhavebeenusedtodemonstrateworld-classresultsincomplexproblemdomainssuchaslanguagetranslation,automaticimagecaptioning,andtextgeneration.LSTMsareverydi↵erenttootherdeeplearningtechniques,suchasMultilayerPerceptrons(MLPs)andConvolutionalNeuralNetworks(CNNs),inthattheyaredesignedspecificallyforsequencepredictionproblems.IdesignedthisbookforyoutorapidlydiscoverwhatLSTMsare,howtheywork,andhowyoucanbringthisimportanttechnologytoyourownsequencepredictionproblems.
2024/6/10 13:38:01 6.77MB machine lear mastery python
1
Title:RMachineLearningEssentialsAuthor:MicheleUsuelliLength:218pagesEdition:1Language:EnglishPublisher:PacktPublishingPublicationDate:2014-11-25ISBN-10:178398774XISBN-13:9781783987740GainquickaccesstothemachinelearningconceptsandpracticalapplicationsusingtheRdevelopmentenvironmentAboutThisBookBuildmachinelearningalgorithmsusingthemostpowerfultoolsinRIdentifybusinessproblemsandsolvethembydevelopingeffectivesolutionsHands-ontutorialexplainingtheconceptsthroughlotsofpracticalexamples,tipsandtricksWhoThisBookIsForIfyouwanttolearnhowtodevelopeffectivemachinelearningsolutionstoyourbusinessproblemsinR,thisbookisforyou.Itwouldbehelpfultohaveabitoffamiliaritywithbasicobject-orientedprogrammingconcepts,butnopriorexperienceisrequired.InDetailRMachineLearningEssentialsprovidesyouwithanintroductiontomachinelearningwithR.Machinelearningfindsitsapplicationsinspeechrecognition,search-basedoperations,andartificialintelligence,amongotherthings.Youwillstartoffbygettinganintroductiontowhatmachinelearningis,alongwithsomeexamplestodemonstratetheimportanceinunderstandingthebasicideasofmachinelearning.ThisbookwillthenintroduceyoutoRandyouwillseethatitisaninfluentialprogramminglanguagethataidseffectivemachinelearning.Youwilllearnthethreestepstobuildaneffectivemachinelearningsolution,whichareexploringthedata,buildingthesolution,andvalidatingtheresults.Thebookwilldemonstrateeachstep,highlightingtheirpurposeandexplainingtechniquesrelatedtothem.Bytheendofthisbook,youwillbeabletousethemachinelearningtechniqueseffectively,identifybusinessproblems,andsolvethembyapplyingappropriatesolutions.TableofContentsChapter1.TransformingDataintoActionsChapter2.R–APowerfulToolforDevelopingMachineLearningAlgorith
2024/6/9 17:14:38 2.81MB R Machine Learning
1
R_training_Project_1使用R项目1进行数据分析:使用NHTS2017数据集进行探索性数据分析调查名称:017全国家庭旅行调查-加利福尼亚附加项目资料来源::团队Spreasheet数据说明包含CSV文件1.householddata2.locationdata3.persondata4.Tripsdata5.vehiclesdata贴标尝试使用thsc-nhts17-caltranscodebook.xlsx标记值使用字典tsdc-nhts17-caltrans-datadictionary.pdf了解数据缺失值缺少的值已编码为lile-9,-8,-7等。
检查标签是否正确指示1.Importingandunderstandingthedata2.Examplesofdataaggreg
2024/6/7 11:30:07 9KB R
1
共 360 条记录 首页 上一页 下一页 尾页
在日常工作中,钉钉打卡成了我生活中不可或缺的一部分。然而,有时候这个看似简单的任务却给我带来了不少烦恼。 每天早晚,我总是得牢记打开钉钉应用,点击"工作台",再找到"考勤打卡"进行签到。有时候因为工作忙碌,会忘记打卡,导致考勤异常,影响当月的工作评价。而且,由于我使用的是苹果手机,有时候系统更新后,钉钉的某些功能会出现异常,使得打卡变得更加麻烦。 另外,我的家人使用的是安卓手机,他们也经常抱怨钉钉打卡的繁琐。尤其是对于那些不太熟悉手机操作的长辈来说,每次打卡都是一次挑战。他们总是担心自己会操作失误,导致打卡失败。 为了解决这些烦恼,我开始思考是否可以通过编写一个全自动化脚本来实现钉钉打卡。经过一段时间的摸索和学习,我终于成功编写出了一个适用于苹果和安卓系统的钉钉打卡脚本。
2024-04-09 15:03 15KB 钉钉 钉钉打卡