BlogHide Resteemsresteemedremlaps (75)in desci • 3 days agoConcept: the Steem Ledger Index Protocol (SLIP)Introduction For today's amusement, we have yet another project that I can't possibly find time to complete at any time in the foreseeable future. Anyone want to lend me a 10-person programming…resteemedfencerdevlog (34)in godot • 5 days agoGodot 4: Square tunnel shader (tutorial)Hi everyone! We've already had a spiral tunnel, a circular tunnel, and a triangular tunnel. How about trying a square or rectangular one this time, which could resemble a classic dungeon-style game…resteemedjustyy (83)in tutorial • 7 days agoC++: const vs constexprC++ const vs constexpr: What’s the Real Difference? Both are used in C++ to define constants. Why This Matters Modern C++ encourages writing immutable, efficient, and expressive code. Two…resteemedanpigon (71)in openai • 7 days agoOpenAI, 자연어를 코드로 바꾸는 Codex 소개OpenAI에서 개발자들에게 혁신적인 도구가 될 수 있는 새로운 AI 시스템인 Codex를 발표했습니다. Codex는 기본적으로 자연어(natural language)를 코드로(code) 변환하는 능력을 가지고 있습니다. GPT를 기반으로 하지만, 방대한 양의 공개된 코드 데이터셋으로 추가 학습되어 프로그래밍 작업에 특화된 성능을 보여줍니다.…resteemedjustyy (83)in blog • 8 days agoTutorial on C++ Smart PointersTutorial on Smart Pointers in C++ Smart pointers in C++ provide automatic and safe memory management. They help avoid memory leaks and dangling pointers by ensuring proper object destruction…resteemedvatman (57)in programming • 10 days agoProgramming Project Part #3Today we're going to build the GUI for this bot. Here’s how the Tkinter GUI is made and what it looks like, plus a quick recap of how the bot works. The idea is to have the first window ask for…resteemedopensourceposter (34)in technology • 10 days agoUnveiling Boost Software License 1.0: A Comprehensive Perspective on Open Source Licensing, Fair Code, and Future InnovationsAbstract: This post provides an in‐depth exploration of the Boost Software License 1.0, a permissive open source license that champions simplicity and flexibility. We examine its origins, key…resteemedjustyy (83)in blog • 10 days agoOpen Sourcing ROT47 CipherHere is a small tool that I find it useful. I usually google "ROT47 Cipher" and I realised that I could just make one and bookmarkit. Deployed to Github page: Please note I've previously…resteemedfencerdevlog (34)in godot • 12 days agoGodot 4: Fire and smoke in 3D (tutorial)Hi everybody. You might remember that the fire effect created using particles in Godot 4 was one of the first tutorials I published on this channel. Since then, more than a year has passed, the…resteemedanpigon (71)in python • 13 days agoPython 개발자를 위한 새로운 반응형 노트북, marimoPython 개발자 여러분, 새로운 도구인 marimo 를 소개합니다. marimo 는 파이썬을 위한 반응형 노트북으로, 기존 노트북 환경의 한계를 극복하는 데 도움을 줄 수 있습니다. marimo 를 사용하면 인터랙티브한 데이터 애플리케이션을 쉽게 구축하고 결과를 공유할 수 있습니다. 특히 데이터 과학 분야에서 데이터를 탐색하고 시각화하며…resteemedopensourceposter (34)in opensource • 14 days agoUnveiling the University of Illinois/NCSA Open Source License: A Comprehensive Look at Open Source, Fair Code, and Innovative Funding ModelsAbstract: This post explores the University of Illinois/NCSA Open Source License in depth. We discuss its origins, core features, adoption examples, technical and legal challenges, and future…resteemedjustyy (83)in sps • 15 days agoProject Official Starts: Fixing Steemd!Thanks for all the supporters for Proposal: Fixing Steemd Build Dependencies in the Latest OS DAO Funding (Virtual Operations) At first, I thought the funding will be transfered hourly at…resteemedjustyy (83)in steem • 16 days agoHow to get steem.min.js v0.8?@ety001 released a steem-js v0.8.0: see: However, in the assets, there is no steem.min.js steem.min.js this is particular very useful if you want to run steem applications in the…resteemedpaulmoon410 (56)in tunes • 18 days agoPeakeCoin BNB Trading Bot - Stop Loss LogicSo here working on the @PeakeCoin project we have had a couple things to hold us off a little bit. Since its currently just me expanding my own work portfolio, so hopefully I can score some side…resteemedopensourceposter (34)in technology • 19 days agoUnveiling Business Source License: A Comprehensive Exploration, Review, and Future OutlookAbstract: In today’s rapidly evolving software ecosystem, licensing is more than just legal jargon—it is a strategic tool that bridges the gap between open collaboration and sustainable funding…resteemedfencerdevlog (34)in godot • 19 days agoGodot 4: Kaleidoscope shader (tutorial)Hey everybody! Let's go back to two dimensions, and take a look at how to create the effect you're currently seeing in the background of this video. It's basically something like a kaleidoscope, for…resteemedjustyy (83)in hive-102132 • 20 days agoPR Merged: Change "about" from textbox to textarea #3950Merged a PR: This is one of the low hanging fruits to improve the steemit frontend e.g. condenser. I expect this change will be tested first in before it is deployed to product. Steem…resteemedremlaps (75)in hive-151113 • 21 days agoProgramming Diary #37: Harnessing AI for lifetime rewards and to enhance the Steem ecosystemSummary @elonmusk on X (Twitter) In today's post, I describe recent progress with the Steem Curation Extension and Thoth projects. The Steem Curation Extension has been…resteemedjustyy (83)in blog • 21 days agoOpen sourcing a Yaml-Json-ConverterI've been learning the front-end using react. With the help of ChatGPT, I've been able to create a small tool: This tool is made using React, and can be handy for converting Json and Yaml to…resteemedjustyy (83)in blog • 21 days agoJavascript is strange: ('b'+'a'+ +'a'+'a').toLowerCase() == 'banana'('b'+'a'+ +'a'+'a').toLowerCase() == 'banana' ('b'+'a'+ +'a'+'a').toLowerCase() 'banana' Why? + + 'a' is + (+ 'a') which becomes NaN So ('b'+'a'+ +'a'+'a') is 'baNaNa' And then…