HARSHAD DONGARDIVEharshaddongardive.hashnode.dev·Sep 3, 2024How to Deploy a React Project to GitHub Pages.1. Set Up Your React Project: Ensure your React project is ready and working locally. 2. Install GitHub Pages Package: Run the following command to install gh-pages: npm install --save-dev gh-pages 3. Configure vite.config.js: Update your Vite con...DiscussGitHub
Sean Kimskim.foundation·Aug 12, 2024[TWIL] Week of August 04, 2024Hello Builders! Hope you had a wonderful week! For this week’s TWIL post, I’d like to share a slight change to the series moving forward. As I mentioned in my previous post, I’ll continue writing one TWIL post each week, but the content might shift a...DiscussThis Week I Learnedpackages
Tarun Sharmatapstechie.hashnode.dev·Aug 11, 2024Exploring the Basics of Python Modules and PackagesWhat Are Modules? A module is simply a file with Python code. It can contain functions, classes, and variables. Modules help organize code into manageable chunks. Creating a Module Let’s say you have a file named math_utils.py: # math_utils.py def a...DiscussPython Interview Prep: Essential Concepts and TechniquesPython
Sandhya Kondmarekloudsan.hashnode.dev·Aug 6, 2024Discover Python's Potential: Key Features and Practical UsesPython has emerged as one of the most popular programming languages due to its simplicity, versatility, and powerful capabilities. In this blog post, we’ll explore some of Python’s key features and demonstrate their practical applications with real-w...DiscussDynamic Programming
Pulkitblogs.devpulkit.in·Jul 27, 2024How I Created npx devpulkit to Share My DetailsCreating a personalized command-line tool can be a fun and efficient way to share your details with others. In this article, I'll walk you through how I created npx devpulkit. Whether you're a developer looking to showcase your portfolio or someone w...Discuss·2 likesnpm
Michael Pipermichaelpiper.hashnode.dev·Jul 26, 2024Flutter Package vs Plugin: Understanding the Differences and UsesIn Flutter, both packages and plugins are essential for extending the functionality of your applications. However, they serve different purposes and are used in distinct scenarios. This guide will help you understand the differences between packages ...DiscussSoftware Engineering
Nathan Virgílionathanvirgilio.hashnode.dev·Jul 2, 2024Instalando pacotes AURAUR é a sigla para Arch User Repository. Na prática, se trata de um repositório comunitário gerenciado por usuários de distros baseadas em Arch. O repositório contém pacotes nomeados PKGBUILDS que permitem compilar pacotes do repositório com o makepk...DiscussArchLinux
Dhanush Ndhanushnehru.hashnode.dev·Jun 7, 2024Announcing runtime-environment: A Rust Crate for Detecting Operating Systems at RuntimeHey! I am excited to announce the release of my new Rust crate as part of my learning process “runtime_environment”! 🦀 This pack is perfect for programmers who want to detect operating systems at runtime. It also provides a flexible toolkit for this...Discuss·8 likesrust crates
Paresh Singh Rajputpsrajput.hashnode.dev·Apr 17, 2024Libraries Vs Frameworks , no more confusion!!!Ever felt like your code’s as commented-out as your social life? We all hit walls — “install a library” they say, “use a framework” they say. But what does it all mean? Buckle up, because today I decode the developer jargon and turn you from coding...Discuss·26 readsLibraries
Abdullah Bin Altafdevopswithabdullah.hashnode.dev·Feb 21, 2024Lecture # 16 - Packages, PyPI, and pipPackages: Python comes with some built-in packages. There are many more packages out there, but they are not part of python installation. Such packages are called third-party packages. If you want to use the third-party packages you'll need to instal...DiscussDevops