Login
Discover
Waves
Communities
Login
Signup
Topics
#sourcecode
Global
Trending
Hot
New
Top
#sourcecode
New
Top communities
Create your community
latest #sourcecode created topics | Ecency
muhshrooms
hive
2026-06-14 06:54
The Great DHF Debate of 2026: Chasing the Code Instead of the Drama
Recently I've been seeing more and more debates about the DHF and the proposed HBD delisting on both Hive and Blurt. At first I was ignoring most of the talk because most people don't even see past their
$ 0.220
24
13
4
vikisecrets
Deutsch D-A-CH
2026-04-02 09:10
Anthropic leaked the source code of its Claude Code coding tool, 512K lines of code leaked, AI translated it to Python and Rust to make it DCMA takedown safe 😂
Anthropic hat versehentlich in einem Debug-File den Source-Code von ihrem Claude Code Tool veröffentlicht, 512K Lines of Code. Stunden später wurde der Source-Code etliche Male auf github geforked und
$ 3.939
150
10
1
nattosenpai
CineTV
2025-04-01 02:21
Source Code (2011) | Nattosheru Review [ENG/SPA]
Hello, cinema fans. Let's talk about one of the best movies of the science fiction and suspense genre that I have ever seen in my life. A film that, for some strange reason that I do not understand, is
incublus
Movies & TV Shows
2024-10-27 18:20
Amazing Sci-Fi: Source Code(2011) Review - Mükemmel bir Bilim Kurgu: Yaşam Şifresi İnceleme
Greetings, what better way to spend a Sunday than with a good science fiction movie? So let me share with you the code to a good movie, or I'll share the movie directly, Source Code.
the9thcreator
Sketchbook
2026-07-07 15:38
Promoted
SCRIBBLE DOG🐶
Hello Creative Sketchbook HIVERS❤️❤️. Hope we’re all good? Good evening to everyone in this special community. I’m super elated to drop another drawing of mine here. It’s my scribble sketch of a dog🐶.
michaelten
crypto
2024-03-10 18:52
Utilizing the Bitcoin Cash Blockchain for Source Code Storage: An Analysis
In the realm of blockchain technology, Bitcoin Cash stands out for its low transaction fees and efficient processing times, making it an attractive platform for a variety of applications beyond simple
ambyr00
DBuzz
2020-09-20 08:46
Last night I coded a Rock-Paper-Scissors game on Python, by using two lists. I w ...
Last night I coded a Rock-Paper-Scissors game on Python, by using two lists. I wonder if there is an another way to do it.
niyoseris
python
2019-12-23 18:07
Python script to crop A3, A2, A1, A0 sizes of documents to A4
Getting print of an A3, A2, A1 or A0 size of image may not easy. Most printers uses A4 document size as standart. Here is a simple cropper in python to crop your images into A4 size image files to help
marjuanm
php
2019-07-10 04:08
Funciones en PHP para sumar y restar horas a una fecha
Reloj | 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
whose
Nature Observer
2026-07-07 03:02
Promoted
Noctuoidea | A Magnificent Caterpillar In The Soft Afternoon Light
Latin NameObservation DateLocation NoctuoideaJuly 06, 2026Vodrochol, Ullapara, Bangladesh Hello my dear all friends. I hope you are all well. Today I am going to share some moments of a caterpillar taken
kiddady
steemhunt
2019-07-01 10:01
PHP CODE CHECKER - Analyse php source code line by line
PHP 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 php programming
marjuanm
php
2019-06-19 13:12
Funciones en PHP para obtener todos los elementos de una fecha
Reloj | 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
php
2019-06-08 03:37
Como convertir una fecha al formato "dd/mm/yyyy" o "yy/mm/dd" desde PHP
Calendario | 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
sourcecode
2018-09-30 04:57
!
New account with an unverified outbound link, Reveal content
Building 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 becoming
asterkame
YAF - Young Art Fair
2026-07-03 16:16
Promoted
Painting a Pomegranate Fruit with Flower
Hello Everyone! Today, I drew a fruit picture. This picture is a pomegranate fruit on branch with flower. I painted this picture with watercolor. In the first step, I painted the background with green,
coldsteem
movies
2018-08-21 11:58
Source Code - Movie Review
I 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. Source Code follows up
camphortree
eos
2018-08-14 08:30
eos源码解析(三):dpos共识源码
eos的出块流程大致如下: Plain Text ........ //启动生产插件 producer_plugin::plugin_startup(); ........ //出块循环 my->schedule_production_loop(); ......... //出块 auto result = start_block(); .......... //签名和提交 auto res
brysj22952
cn
2018-08-12 09:01
PyH源码解析(6)——完结篇
这一篇是精华,基本上不用阅读之前的5篇,只看这一篇就足够了。 Tag对象 PyH的核心就是Tag对象,Tag对象属性有: str tagname:这个就是tag对象的tag名字。比如<div>对象,其名字就div。但是有一些Tag对象没有名字,当然真实的HTML是没有的,在实现代码中,没有Tag名字的对象表示它是一个容器对象,存放的是子Tag的序列,表示若干兄弟Tag的列表。 bool
brysj22952
cn
2018-08-11 10:16
PyH源码解析(5)
检索子Tag对象或者内容 一个Tag对象如果有多个子Tag对象或者内容,那么怎么获得其中的某个子Tag对象或内容。如果Tag对象有ID,则使用其ID作为索引;如果没有设置ID,则使用Tag的名字作为ID,如果有多个相同名字的Tag,则其ID依次在后面增加上001、002、...。需要注意的是,则只是子Tag对象的索引ID,不是Tag对象的属性ID。如下面示例: #例1: >>>
amigoponc
Holos&Lotus
2026-07-07 00:06
Promoted
[Esp./Eng.] ¿Cuándo dejamos de ser humanos para convertirnos en etiquetas? || When do we stop being human and become labels?
Dejemos de ser tan "directos" para herir y empecemos a ser más directos para sanar..., para amar. Menos zoomorfismos, menos cosificación y más reconocimiento del alma ajena.
brysj22952
cn
2018-08-11 08:31
PyH源码解析(4)
增加兄弟Tag对象 这个实际上就是Tag对象的序列,如下所示: >>> a=div('a1')+div('a2')+div('a3') >>> print(a) <div> a1 </div> <div> a2 </div> <div> a3 </div>
brysj22952
cn
2018-08-10 13:40
PyH源码解析(3)
添加Tag对象内容 通过构造函数传递Tag内容 用户使用场景如下: >>> a=div('test') >>> print(a) <div> test </div> 实现原理
brysj22952
cn
2018-08-09 08:15
PyH源码解析(2)
生成Tag对象的属性 用户代码如下所示: >>> a=div(a1='a1') >>> print(a) <div a1="a1"> </div> 在内部实现上,Tag对象的属性存放在一个字典中,字典的名字是attr,原来的名字是attributes,我觉得太长了,修改了一下。核心函数如下: #把字典变成字符串,形如:'
brysj22952
cn
2018-08-08 13:39
PyH源码解析(1)
前言 PyH是什么,以及它有什么用,在之前的博文中有说明:《Python语言PyH模块生成HTML文档使用说明》。 我为什么要写这篇文章呢?并不是基于崇高的乐于分享的心理,主要还是为我自己服务。我发现已经读懂的别人的代码,包括我自己写得代码,时间一长,就忘记了,再阅读源码,虽不至于像全新的一样,还是要耗费很多的精力。所以,我就想把代码的设计思路写成文档,也许会好一些。
Older →