PDF查看器,最小的,最快的,干!云PDF
2023/12/15 20:10:27 5.24MB PDF
1
vs2005工程转换成vc6.0工程的小工具(vcproj->dsw包含源代码),很好用的哦。
1
显著性检测数据集SOD和SED2,其中包含SOD300张原始图片及GT标注图和SED2100张原始图片及GT标注图
2023/12/13 14:46:45 11.91MB 显著性检测 SOD SED2
1
VMP加强版V6右键兼容性运行,或者重新运行。
直到标题正确才能加壳,否则无优化效果。
此VMP版本为VMP加强版【个人版专用】自动优化标记VM的函数,不必再用VM优化器,完整的保护标记函数首次使用VMP时请手动设置专家模式【设置---->专家模式】建议加壳方式为标记函数全部超级(虚拟+变异),【选项】页面《级别》设置为“最快速度”,全否设置DLL如果是内存注入只能加一层VMP,并且级别必须为最快速度EXE文件用最快速度加完可以再加一层SE保护外壳
2023/11/30 13:20:22 10.21MB VMP加强版V6
1
eric6_17_12及汉化文件.zip,能找到这个就都知道这个的用处了,安装顺序,Anaconda3---->PyQt5----->eric6
2023/11/25 16:29:30 19.9MB python eric6
1
HTMLHello使用编码编辑器,对于任何4GeeksAcademyStudent来说,这都是最基本的样板。
接下来做什么?使用创建一个index.html文件,并通过使用以下命令运行Web服务器来实时查看该文件:$pip3installflask&&python3server.py您可以创建任意数量HTML文件您还可以创建CSS文件,并可以使用位于<head></head>标签之间的<head></head><link>标签将它们导入到您的网站中,如下所示:<head>...<linkrel="stylesheet"type="text/css"href="styles.css">...</head>
2023/11/22 20:42:48 4KB Python
1
QT编写DLL给外部程序调用示例方法参数返回值事件回调:1:C#或者NET第一步:引入命名空间;usingSystemRuntimeInteropServices;第二步:声明函数必须与实际DLL中函数名及参数一致;[DllImport&quot;qtdlldll&quot;]publicstaticexternintaddinti;第三步:调用函数执行;ConsoleWriteLineadd10ToString;2:QT第一步:引入头文件;#include&lt;QLibrary&gt;第二步:定
2023/11/22 6:47:12 4.85MB QT DLL VC C#
1
leetcodepython题解,包含大量leetcode题目的解法,源代码,python实现CourseSchedule21.4.4Numberofislands14.5HeapsMergeKSortedLinkedLists1.5.1KthLargestElementinanArray1.5.2Arrays1.62sum‖l1.62SumⅢ1.6.2ContainsDuplicate1.6.3RotateArray1.643SumSmaller1.653Sumclosest1.663Sum1.6.7TwoSum1.68PlusOne1.6.9BestTimetoBuyandSellStock1.6.10Shortestworddistance1.6.11Movezeroes1.6.12ContainsDuplicate1.6.13MajorityElement1.6.14RemoveDuplicatesfromSortedArray1.6.15NestedListWeightSum1.6.16NestedListWeightedSumIl1.6.17Removeelement1.6.18IntersectionofTwoArraysll1.6.19MergeSortedArrays1.6.20ReverseVowelsofaString1.6.21IntersectionofTwoArrays1.6.22Containerwithmostwater1.6.23ProductofArrayExceptSelf1.6.24TrappingRainWater1.6.25MaximumSubarray1.6.26BestTimetoBuyandSellStockIl1.6.27FindMinimuminRotatedSortedArray1.6.28Pascal'sTriangle1.6.29Pascal'sTriangle‖l1.6.30SummaryRanges1.6.31MissingNumber1.6.32StringsValidAnagram1.7.1Validpalindrome1.7.2WordPattern1.7.3ValidParentheses1.7.4IsomorphicStrings1.7.5ReverseString1.7.6BitManipulationSumofTwoIntegers18.1SingleNumber18.2Singlenumber‖18.3SingleNumberIll1.8.4Maths1.9ReverseInteger1.9.1Palindromenumber19.2Pow(x,n)19.3Subsets1.94Subsets‖195FractiontoRecurringDecimal19.6Excelsheetcolumnnumber19.7Excelsheetcolumntitle19.8FactorialTrailingzeros199HappyNumber1.9.10Countprimes1.9.11Plusone19.12DivideTwoIntegers19.13MultiplyStrings1.9.14MaxPointsonaline1.9.15ProductofArrayExceptSelf19.16Powerofthree19.17IntegerBreak1.9.18Poweroffour9.19Adddigits1.9.20UglyNumber1.9.21glyNumberll1.9.22SuperUglyNumber19.23FindKpairswithsmallestsums1.924SelfCrossing1.9.25Paintfence1.9.26Bulbswitcher19.27Nimgame1.9.28Matrix1.10RotateImage1.10.1SetmatrixZeroes1.10.2Searcha2DMatrix1.10.3Searcha2dMatrixl1.10.4SpiralMatrix1.10.5SpiralMatrix‖l1.10.6DesignLRUCache1.11.1IntroductionMyLeetcodeSolutionsinPythonThisbookwillcontainmysolutionsinPythontotheleetcodeproblems.Currently,willjusttrytoposttheacceptedsolutions.TheplanistoeventuallyincludedetailedexplanationsofeachandeverysolutionamdoingthisjustforfunLinkedListCycleLinkedListCvcleGivenalinkedlist,determineifithasacycleinitFollowup:Canyousolveitwithoutusingextraspace?Url:https://leetcode.com/problems/linked-list-cycle/Definitionforsingly-linkedlistclassListNodeobject)###definit(self,x)self,val=xself,nextNoneclassSolution(object):defhasCycle(self,head)IItypehead:ListNodertype:boolIIIIifhead=nonereturnfalseelsefastheadslow=headWhilefastnoneandfast.nextnonesloW=slownextfastfast.nextnextiffast=slow:breaki千fastNoneorfast.next=nonereturnFalseeliffast=slowreturntruereturnfalseLinkedListCycleReverseLinkedListReverseLinkedlistReverseasinglylinkedlistUrl:https://eetcode.com/problems/reverse-linked-list/definitionforsingly-linkedlist#tclassListNode(object):##def-init(self,x)self.∨al=xselfnextnoneclassSolution(object):defreverseList(self,head)11IIl1typehead:ListNodertype:ListNodeifhead=nonereturnnoneelifhead!=noneandheadnext=nonereturnheadelsetempNonenextnodenoneWhileheadNonenextnodeheadnexthead.nexttemptemp=headheadnextnodereturntempDeletenodeinalinkedlistDeletenodeinalinkedlistWriteafunctiontodeleteanode(exceptthetail)inasinglylinkedlist,givenonlyaccesstothatnodeSupposedthelinkedlistis1->2->3->4andyouaregiventhethirdnodewithvalue3,thelinkedlistshouldbecome1->2->4aftercallingyourfunctionUrl:https://eetcode.com/problems/delete-node-in-a-linked-list/Definitionforsingly-linkedlistclassListNode(object):#def-init(self,x)#self,valxself,nextNoneclasssolution(object):defdeleteNode(self,node):IIlIItypenode:ListNodertype:voidDonotreturnanythingmodifynodein-placeinsteadI111fnode=nonepasse⊥se:nextnodenode.nextnodevalnextnodevalnode.nextnextnode,next
2023/11/8 17:06:47 574KB leetcode python题解
1
中文简体|ajax代理简介ajax-proxy是一个用ES6中代理特性实现的用于代理原生对象XMLHttpRequest的库,它可以使您从对XMLHttpRequest进行操作。
使用安装CDN约会<script>https://unpkg.com/@lazyduke/ajax-proxy/dist/index.min.js</script>NPM约会npminstall@lazyduke/ajax-proxy指南APIajax-proxy使用起来十分简单,只有两个方法proxyAjax和unProxyAjax,只要您对XMLHttpRequest有所了解,就能很快上手使用。
proxyAjax(proxyMap)proxyMap:代理对象,key为需要代理的属性或方法,value具体的函数普通属性:response,responseText,timeout......以上可以同过对读/写的操作进行代理,当代理写操作时,可以直接将值指定为true并配合代理方法,对一些只读属性如response进行修改。
注意:
2023/11/1 18:32:44 22KB proxy ajax AjaxTypeScript
1
박종범의github홈페이지프로젝트제。
리관스템입니다。
설계도동영상。
다。
<iframewidth=“640”height=“360”src=“”frameborder=“0”allow=“加速度计;
自动播放;
剪贴板写入;
加密媒体;
陀螺仪;画中画“allowfullscreen></iframe>##参考[검색엔진]()[存储库1]()
2023/10/18 1:46:21 43KB
1
共 209 条记录 首页 上一页 下一页 尾页
在日常工作中,钉钉打卡成了我生活中不可或缺的一部分。然而,有时候这个看似简单的任务却给我带来了不少烦恼。 每天早晚,我总是得牢记打开钉钉应用,点击"工作台",再找到"考勤打卡"进行签到。有时候因为工作忙碌,会忘记打卡,导致考勤异常,影响当月的工作评价。而且,由于我使用的是苹果手机,有时候系统更新后,钉钉的某些功能会出现异常,使得打卡变得更加麻烦。 另外,我的家人使用的是安卓手机,他们也经常抱怨钉钉打卡的繁琐。尤其是对于那些不太熟悉手机操作的长辈来说,每次打卡都是一次挑战。他们总是担心自己会操作失误,导致打卡失败。 为了解决这些烦恼,我开始思考是否可以通过编写一个全自动化脚本来实现钉钉打卡。经过一段时间的摸索和学习,我终于成功编写出了一个适用于苹果和安卓系统的钉钉打卡脚本。
2024-04-09 15:03 15KB 钉钉 钉钉打卡