New: sourcecodeAll contenthive-129948hive-196917krhive-185836zzanhive-183959steemphotographyhive-150122hive-101145hive-180932hive-166405hive-183397hive-144064uncommonlabhive-184714hive-188619bitcoinkrsuccesshive-103599hive-193637hive-145157hive-193186hive-180301hive-179660TrendingNewHotLikersjakedavis224 (48)in devops • 8 months agoHow to Block Right Click (Image Download) with CSSimage by @JakeDavis224 WewoChroPix on WeekShot Prompt /imagine prompt: --neu pop --clay smooth --glass 3D In today's web development landscape, there are various…krishu-g (77)in ai • 9 months agoThe Future of AI in Auto Code Publishing and Source Control 🚀🤖Artificial Intelligence (AI) has been making waves in various industries, and software development is no exception. One of the areas where AI is expected to have a significant impact is in auto code…jorgui (25)in sourcecode • 2 years agoThwarting the Theft of Resource Credentials Using Secured Containerized Development Environments (CDEs)Source : Feedback: [email protected] Date: 2/10/2023 Cyberattacks targeting resource credentials such as session tokens are on the rise. Recent high-profile cases such as the source code…choiseojun (25)in autotrading • 4 years agosteemCreated with Sketch.[AUTOMATIC TRADING SYSTEM 2] Functions to compare two exchangesFirst Step. Install Visual studio and make c# winform project. (do you want to know even these? to be continued on other series :) and open the window for new package. (sorry. below example is…kingtutlearning (34)in github • 4 years agoGithub News for King TutI have uploaded #PowerPoint Presentation on #github and reorganized the #sourcecode. #kingtut Here is the link to my github repository page:oneactproducts (25)in crypto • 4 years agoWhy are crypto trading bots better?What is a Trading Bot? Trading bots are basically software programs that interact with the bitcoin exchanges to analyze trading data and then use this information to place buy and sell orders. As…marjuanm (46)in hive-116221 • 5 years agoEl desarrollador de Kiwi Browser libero el código fuente de su navegadorEsta es una de las cosas que me gustan del software libre, poder incorporar funcionalidades de otros desarrollos sin tener que reinventar la rueda y a la vez podemos colaborar con otros proyectos;…marjuanm (46)in php • 6 years agoFunciones en PHP para sumar y restar horas a una fechaReloj | Pexels Concluyo esta serie de artículos sobre la reutilización del código fuente como parte de las buenas prácticas dentro del mundo de la programación de sistemas, de hecho es la base…kiddady (53)in steemhunt • 6 years agoPHP CODE CHECKER - Analyse php source code line by linePHP CODE CHECKER Analyse php source code line by line Screenshots Hunter's comment Here is a great tool to analyse and check your code for potential debugging and code correction in the…marjuanm (46)in php • 6 years agoFunciones en PHP para obtener todos los elementos de una fechaReloj | Pixabay En un artículo anterior publiqué como "Como convertir una fecha al formato "dd/mm/yyyy" o "yy/mm/dd" desde PHP" (artículo que pueden leer haciendo clic en este enlace), agradezco…marjuanm (46)in php • 6 years agoComo convertir una fecha al formato "dd/mm/yyyy" o "yy/mm/dd" desde PHPCalendario | Pixabay Que tal, saludos a todos: Como programadores solemos hacer mucho uso de fechas para consultar datos desde una base de datos, filtrar archivos, guardar registros históricos…schallum (27)in sourcecode • 6 years agoBuilding the Universal Archive of Source Code By Jean-François Abramatic, Roberto Di Cosmo, Stefano Zacchiroli"Building the Universal Archive of Source Code By Jean-François Abramatic, Roberto Di Cosmo, Stefano Zacchiroli Communications of the ACM, September 2018, Vol. 61 No. 10, Pages 29-31 Software is…coldsteem (65)in movies • 6 years agoSource Code - Movie ReviewI am always game for a thriller with a fresh point-of-view. 2011 was a good year for the genre, with the release of strong films like Inception , Unknown and The Adjustment Bureau .…camphortree (25)in eos • 6 years agoeos源码解析(三):dpos共识源码eos的出块流程大致如下: Plain Text ........ //启动生产插件 producer_plugin::plugin_startup(); ........ //出块循环 my->schedule_production_loop(); ......... //出块 auto result = start_block(); ..........…brysj22952 (45)in cn • 6 years agosteemCreated with Sketch.PyH源码解析(6)——完结篇这一篇是精华,基本上不用阅读之前的5篇,只看这一篇就足够了。 Tag对象 PyH的核心就是Tag对象,Tag对象属性有: str tagname:这个就是tag对象的tag名字。比如 对象,其名字就div。但是有一些Tag对象没有名字,当然真实的HTML是没有的,在实现代码中,没有Tag名字的对象表示它是一个容器对象,存放的是子Tag的序列,表示若干兄弟Tag的列表。…brysj22952 (45)in cn • 6 years agosteemCreated with Sketch.PyH源码解析(5)检索子Tag对象或者内容 一个Tag对象如果有多个子Tag对象或者内容,那么怎么获得其中的某个子Tag对象或内容。如果Tag对象有ID,则使用其ID作为索引;如果没有设置ID,则使用Tag的名字作为ID,如果有多个相同名字的Tag,则其ID依次在后面增加上001、002、...。需要注意的是,则只是子Tag对象的索引ID,不是Tag对象的属性ID。如下面示例: #例1:brysj22952 (45)in cn • 6 years agosteemCreated with Sketch.PyH源码解析(4)增加兄弟Tag对象 这个实际上就是Tag对象的序列,如下所示: >>> a=div('a1')+div('a2')+div('a3')brysj22952 (45)in cn • 6 years agosteemCreated with Sketch.PyH源码解析(3)添加Tag对象内容 通过构造函数传递Tag内容 用户使用场景如下: >>> a=div('test')brysj22952 (45)in cn • 6 years agosteemCreated with Sketch.PyH源码解析(2)生成Tag对象的属性 用户代码如下所示: >>> a=div(a1='a1')brysj22952 (45)in cn • 6 years agosteemCreated with Sketch.PyH源码解析(1)前言 PyH是什么,以及它有什么用,在之前的博文中有说明:《 Python语言PyH模块生成HTML文档使用说明 》。 我为什么要写这篇文章呢?并不是基于崇高的乐于分享的心理,主要还是为我自己服务。我发现已经读懂的别人的代码,包括我自己写得代码,时间一长,就忘记了,再阅读源码,虽不至于像全新的一样,还是要耗费很多的精力。所以,我就想把代码的设计思路写成文档,也许会好一些。…