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...51 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鈥攊t's a systematic approach...CC
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鈥檚 code as the example. It explores the challenges in tailoring the Bitcoin codebase for CKB-VM...845 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鈥檙e working on a project with Docker and need an easy way to st...Devops
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...29 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...AWS - 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...65 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...Makefile
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...Makefile
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...C