C++QT带有动画的圆形进度条水波进度条,可以设置边框大小,设置进度颜色,设置水波高度等。
效果、详情:https://blog.csdn.net/xiezhongyuan07/article/details/97661993没有积分的留下邮箱,看到后马上发送。
2024/2/29 10:24:47 5KB QT 进度条 水波 动画
1
IMDropsImageTools3.6老朽痴拙汉化版(图像小工具)是一个屏幕捕获、文件共享和图像处理工具。
它具有多线程的批处理图像大小调整、转换、裁剪、旋转翻转、水印、脱色(灰度、消极、棕褐色)、和优化。
支持BMP、GIF、TIFF、JPEG、PNG和EMF图像类型。
它能与LinuxMONO(仅GNOME和Xfce)兼容。
ImageToolsisascreencapture,filesharingandimageprocessingtool.Itfeaturesmulti-threadedbatchimageresizing,conversion,cropping,flipping/rotating,watermarks,decolorizing(grayscale,negative,sepia),andoptimizing.TheBMP,GIF,TIFF,JPEG,PNG,andEMFimagetypesaresupported.ItiscompatiblewithLinuxMONO(onlyforGNOMEandXfce).
2024/2/28 9:18:54 86KB IMDrops Image Tools 图像工具
1
令人放松的逼真的喷泉,配有喷泉喷头,瀑布,飞溅,涟漪,水雾和声音效果。
兼容Unity5~Unity2019.
2024/2/21 23:05:40 128.08MB 喷泉 逼真
1
SUIMONOWaterSystemv2.1.6最新版,Unity3d模型水海洋资源素材纹理材质贴图
2024/2/17 10:22:43 70B SUIMONO Wate unity3D
1
数字水印(DigitalWatermark)技术是通过一定的算法将一些标志性信息直接嵌入到多媒体内容当中,但不影响原内容的价值和使用,并且不能被人的知觉系统觉察或注意到,只有通过专用的检测器或阅读器才能提取。
可用来识别文件、图像或音乐制品的来源、版本、原作者、拥有者、发行人、合法使用人对数字产品的拥有权。
与加密技术不同,数字水印技术并不能阻止盗版活动的发生,但它可以判别对象是否受到保护,监视被保护数据的传播、真伪鉴别和非法拷贝、解决版权纠纷并为法庭提供证据。
数字水印的基本应用领域是版权保护、隐藏标识、认证、安全不可见通信。
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
说明:??轴系测试程序,多通道输入输出,实现时域、频域、轴心轨迹、瀑布图等功能。
(Shaftingtestprogram,multi-channelinputandoutput,toachievetimedomain,frequencydomain,orbit,waterfallandotherfunctions.)
2023/11/3 21:29:23 23KB 瀑布图 时域 频域
1
XiunoBBS是一款国产、小巧、稳定、支持在大数据量下仍然保持高负载能力的轻型论坛。
XiunoBBS4.0.4正式版更新日志:2018-04-11二级导航(二次开发必备,BBS频道化,可以扩展CMS、SHOP、BLOG等频道);
五种语言(简体、繁体、英文、俄语、泰语);
增加注册用户的开关;
增加水印文件的支持,默认view/img/water-small.png(当宽度>10像素时候开始起作用);
修正TAG显示顺序;
几处优化和改进;
主程序的文件和表结构正式版发布以来一直没变,随后的小版本更新频度会越来越低,越来与稳定。
2023/11/3 13:32:31 1.33MB PHP源码-社区论坛
1
真是水波纹,简单不复杂,本人2017.3.1可用,官方购买的正版,分享给大家
2023/10/25 19:02:21 116B 真是水波纹 官方购买 2017可用
1
Enviro-ThecompletedynamicAAAskyandweathersolution!Veryeasysetup:Thenewmanagercomponentmakesiteasyaspossibletosetupenviroinyourscenes.IncludesEnviroLite!ThisversionincludesEnviroLiteversionaswell.Idealformulti-platformprojects:Useliteversionforlowendplatformlikemobilesandstandardforpcandconsoles.Withoneclickyoucanswitchbetweenenviroversions.ThecentralizedAPIforyourownscriptswillworkforbothversionsofcourse.ProfileSystem:Enviro'snewprofilesystemmakestweakingyourskyaseasyaspossible.Tweaksettingsinruntimeandsavetoprofile.Loadprofilesindesignandruntime.Createdifferentprofilesfordifferentscenesorshareyourconfigurationswithotheruser.Day-Nightcycle:Envirosupportsarealisticday-nightcycle.Withcorrectsunandmoonpositionswithfulllocationsupportwithlatitudeandlongitude.Youhaveoptionstouseyoursystemtimeorletenviroupdatetimebasedonrealtimeminutes.Skybox:Enviroincludesanadvancedfastatmosphericskyboxshadertogetgreatlookingskies!Yougotalotofoptionstotweaktheskyandevencansetupfunkyalienskies!Lighting:Envirowillrealisticlylightyourscenebasedonsunaltitude.Youhavecompletecontroloverlightintensityandcolorbymodifyingcurvesandgradientsrightineditor!Youalsocanchoosebetweendifferentambientlightmodesofcourse.Seasons:Envirowillchangeseasonsandgotacomponentstoswapoutgameobject,materialsandtexturesofunityterrain.Youarenotlimitedtorealisticsettings!Youcansetthestartandenddaysofeachseason.Enviroalsosupportstemperaturesimulation,basedonseason,timeofdayandcurrentweather.Clouds:Environewraymarchingcloudsystemisbasedonlatestcloudrenderingpapers.Thesewillbringyouskytolifeandofferplentyoptionstocustomize.CloudsperformanceisoptimizedbyusingtechsliketemporalreprojectionandLODsystem.Inadditiontherearealsofastflatandparticlecloudsoptionstomixoruseformaximumperformance.Fog:Needstunnishinglookingfog?Enviroincludesanadvancedlightscatteringfogimageeffectwithdistance,heightandskyfogsupport.Needfogonyourtransparentmaterial?Noproblem,withonlyafewlinesofcodeyoucouldmodifyyourowntransparentshaderstobefoggedcorrectly.Andafewparticleandtransparentshadersalreadyincludedtogetyoustarted!Weather:Enviroincludesaverypowerfullweathersystem.Youcancreateyourownweathertypesanddrivelight,sky,fogandclouds.Envirosupportsallkindofunityshurikenparticleeffectstogiveyouthefreedomtocreateanyweathereffectyoucanthinkof.Itincludes11premadeweathertypesincluding:ClearSky,cloudy,raining,stormy,snowyandfoggyweather.Youcanenablelightningstormsandchoosedifferentambientandweathersoundsforeachweatherwithsmoothtransitions.VolumetricLighting:NeedsomevolumelighteffectsyouseeinAAAgames?Noproblem,envirosupportvolumetriclightingfordirectional,pointandspotlightsoutofthebox!SceneViewEffects:Previewenviroeffectslikeclouds,volumelightingandfogdirectlywhileyouworkonyourscenes.Youcanenableordisablesceneviewpreviewforeacheffectindividualofcourse.Networking:EnvirosupportUNet,MirrorandPhotonoutofthebox.Itwillsynchronizetimeandweatherwithallyourplayers.Enviroalsogotanminimalmodeforheadlessserverstoonlycalculatetimeandweatherbutnothingmore.VirtualReality:Envirosupportsmultiandsinglepassstereoscopicrendering!TestedonOculusRift.That'snotall!Enviroincludesalotmoregreatfeatures:*Eventsystemforyougamelogic.*WeatherZones.Createasmanyzoneswiththeirownweatherforyourbiomes.*Orbitingsatellites.*VegetationGrowth.Andyoucanusealotofawesome3rd-partyassetsrightofthebox.Activateandadd3rd-partysupportthroughthenewinterface.Againitseasyandfastaspossible!*GaiaCompatible!*CTSCompatible!*AQUASIntegration!*LUXWaterIntegration!*FogVolume3Integration!*VegetationStudioProIntegration!*PlaymakerActions!*ReliefTerrainShaderIntegration!*UBERShaderIntegration!*MicroSplatIntegration!*MegaSplatShaderIntegration!*LuxShaderIntegration!*PhotonNetworkIntegration!*MirrorNetworkIntegration!*PegasusIntegration!Requirements:*Supportgammaandlinearcolorspace.*Supportforwardanddeferredrendering.*WorkingonDX9,DX11,DX12,OpenGlCore,MetalandVulkan.*VolumetricLightingrequiresatleastshader-model3.5+andwillbedeactivatedonDX9Currentlimitation:*Volumetriccloudsarecurrentlynotsuitableforfly-throughs!Willbeworkedoninlaterupdates!
2023/10/14 8:54:48 194.06MB U3D VR
1
共 69 条记录 首页 上一页 下一页 尾页
在日常工作中,钉钉打卡成了我生活中不可或缺的一部分。然而,有时候这个看似简单的任务却给我带来了不少烦恼。 每天早晚,我总是得牢记打开钉钉应用,点击"工作台",再找到"考勤打卡"进行签到。有时候因为工作忙碌,会忘记打卡,导致考勤异常,影响当月的工作评价。而且,由于我使用的是苹果手机,有时候系统更新后,钉钉的某些功能会出现异常,使得打卡变得更加麻烦。 另外,我的家人使用的是安卓手机,他们也经常抱怨钉钉打卡的繁琐。尤其是对于那些不太熟悉手机操作的长辈来说,每次打卡都是一次挑战。他们总是担心自己会操作失误,导致打卡失败。 为了解决这些烦恼,我开始思考是否可以通过编写一个全自动化脚本来实现钉钉打卡。经过一段时间的摸索和学习,我终于成功编写出了一个适用于苹果和安卓系统的钉钉打卡脚本。
2024-04-09 15:03 15KB 钉钉 钉钉打卡