Roman Geraskinrgeraskin.hashnode.dev·Oct 29, 2024Automating Development Environment with Mise: Comprehensive Guide 💫When working in a team, it's important for everyone to have a consistent environment. Also, different projects might require different versions of tools. Additionally, automating routine tasks with the codebase is helpful, so some form of task manage...Discuss·34 readsDevops
Younis Ahmedyounis.hashnode.dev·Oct 26, 2024Makefiles Explained: Boosting Efficiency in Software DevelopmentIn the world of software development, efficiency and organization are key to delivering robust applications. One of the most powerful tools at a developer's disposal is the Makefile. A Makefile is more than just a text file—it's a systematic approach...DiscussCC
CryptapeforCryptape Jungleblog.cryptape.com·Oct 8, 2024Optimizing C++ Code for CKB-VMThis article documents the optimization efforts to directly port C++ code over to the CKB Virtual Machine (CKB-VM) without any modifications, using Bitcoin’s code as the example. It explores the challenges in tailoring the Bitcoin codebase for CKB-VM...Discuss·839 readsEngineeringckb
Huzefa Ahmedhuzefaweb.hashnode.dev·Sep 6, 2024Project 3: Write a MakeFile For Two-Tier-Flask-AppIn this blog, I'll guide you through understanding and writing a Makefile that uses Docker Compose to build, run, and manage a two tier flask app across multiple operating systems. If you’re working on a project with Docker and need an easy way to st...DiscussDevops
John Opiyojohnopiyo.hashnode.dev·Sep 5, 2024Introduction to Makefiles for Go DevelopersIn modern software development, automation and repeatability are essential for maintaining reliable systems. Although Integrated Development Environments (IDEs) simplify tasks, they often lack the flexibility needed for automation, especially in larg...Discuss·28 readsMakefile
RAKESH DUTTAdailydoseindevops.hashnode.dev·Aug 23, 2024Deployed🚀 a two-tier flask & mysqldb applicaton with advanced Shell Script commands integration call MAKEFILE📂.A makefile is a text file that works with the Unix make utility to automate the process of compiling and linking source code to create an executable. It lists source files, compiler options and recompilation rules, making it easy to manage complex bu...DiscussAWS - DevOps ProjectsMakefilefortwotierapp
Runar Kristoffersenblog.runar.dev·Jul 17, 2024Speeding up any and all js-projects with a single, global makefileTLDR: Jump to complete markdown-file When working on various projects, you often need to install dependencies. When switching branches, it's easy to forget this, which can lead to bugs. Consider a branch where one of the dependencies is updated. Eac...Discuss·62 readsMakefile
sammyskanyingi.hashnode.dev·Jul 6, 2024C-MakefilesA make- is a build automation tool used to compile and build projects. Very useful if you have multiple source files. Makefile is just a configuration file that specifies how the project should be built(rules) and the dependencies between different f...DiscussMakefile
Dristanta Silwaldristantasilwal.hashnode.dev·May 8, 2024Let's make something by makeHey there, fellow developer! Let's dive into the wonderful world of make and how it can save us from the headaches of manual compilation. If you've ever found yourself drowning in a sea of source files, make is here to throw you a lifebuoy. What's th...DiscussMakefile
J-Naishj-naish.hashnode.dev·Apr 16, 2024The ".a", ".o", and ".out" files in CToday, I will show you what is ".a" and ".o" files in C/C++, which are unavoidable to develop products in C/C++. Let's dive in. How is a program executed? As you know, computers cannot directly execute programs written in C/C++, Java, Swift, JavaScri...DiscussC