Sivaranjansivadevops.hashnode.dev·Aug 7, 2024Jenkins Pipeline Scripts:Basic Pipeline Questions What is a Jenkins pipeline and how is it defined in a Jenkinsfile? Answer: A Jenkins pipeline is a suite of plugins that support implementing and integrating continuous delivery pipelines into Jenkins. It is defined in a Je...DiscussJenkins
David Carrdcblog.dev·Jun 15, 2024How to Organize Composer Scripts EffectivelyWhat is a composer script? A composer script is a set of custom commands defined in a composer.json file. It lets you automate tasks like running tests, performing analysis, or managing dependencies in a PHP project. This allows you to create a short...Discuss·55 readscomposer.json
Ian Bakerian-baker.net·Jun 6, 2024Code Tuts: API Bulk Feed ProcessorEver get asked to do those "One Time" pushes of X amount of records to one of your company internal APIs? There's setting up all of the postman calls, getting the auth, etc. to contend with and what is seen as a small effort often comes with a lot of...DiscussAPIs
Vivek Khatritech.peculiarvivek.com·May 28, 2024Execute Long-Running Scripts on a VM Without Disrupting Your WorkflowIf you are a developer, running scripts that take hours is pretty usual for you. Most of this execution is done on VMs because local internet connections are unreliable, and putting such a load on local machines that you use for your regular daily ta...Discuss·1 like·31 readsdevtools
Ariska Hidayattech.finlup.id·Mar 22, 2024Rangkuman tentang scripts di package.json (NodeJS)Pada awal pengembangan nodejs pasti sudah sering menjalankan npm run dev atau npm run start. sekarang saya akan membagian sedikit tentang point-point yang harus diperhatikan. point-pointnya sebagai berikut Bisa menjalankan package yg sudah diinstal ...DiscussNode.js
Riva Diasdias-blog.hashnode.dev·Feb 19, 2024Advanced Linux Shell Scripting for DevOps Engineers with User managementIn the world of DevOps, knowing how to use Linux commands effectively is super important. Let’s learn some tricks to make our work easier. This will not only automate repetitive tasks but also enables to manage users and permissions effectively, cont...DiscussLinux
Ankit Kundalaankitkundala.hashnode.dev·Feb 11, 2024✨Ultimate Kubernetes CheatSheet ✨Kubernetes is specially know for its auto-scaling and auto-healing features. Kubernetes is also known as "K8s" as it includes 8 letters between word Kuberenetes from K to s . Why Kuberentes ? Kubernetes provides efficient container orchestration, sca...Discuss✨Ultimate CheatSheet for DevOps✨Kubernetes
Elucian MoiseforProgramming Languagessagecode.hashnode.dev·Oct 19, 2023Python scriptsKeywords: Python has a set of reserved words called keywords which have special meanings. Python has a total of 33 keywords compared to around 50 keywords in Java. The Python keywords are: andassertclasscontinuebreakdefdelelifelseexceptfinallyforfrom...DiscussPython SyntaxKeywords
Sanjay Sikdarread.sanjaysikdar.dev·Sep 14, 2023How do I create my simple post thumbnailsI have created a python script to create thumbnail for me... Here I'm sharing the source code... from PIL import Image, ImageDraw, ImageFont def generate_thumbnail_with_text(width, height, background_color, text, text_color, font_path, output_file):...Discuss·54 readsPython
Sanjay Sikdarread.sanjaysikdar.dev·Sep 14, 2023Extracting text from a PDF with PythonInstall PyMuPDF python -m pip install --upgrade pymupdf Here is the Source Code: import fitz # PyMuPDF def extract_highlighted_text(pdf_path): highlighted_text = [] # Open the PDF file pdf_document = fitz.open(pdf_path) for pag...Discusspypi