Sandip ShresthaforJoBins Engineeringblog.jobins.jp·Nov 30, 2023Maximizing Efficiency with Composer ScriptsIn the ever-evolving landscape of software development, optimizing workflows and streamlining processes is crucial. One powerful tool that often goes underutilized is Composer scripts. Composer, the dependency manager for PHP, allows developers to de...Discuss·2 likescomposer
Lalrinfela Pachuaulazara.hashnode.dev·Nov 2, 2023Installing LAMP stack manually using apt.Installing any kind of software or applications can be challenging in a Linux environment. I will be writing some guidelines to install some services required for a web development stack. To install any kind of software into a Linux system, it is alw...DiscussLAMP stack project
Ogunuyo Ogheneruemu Biruemu.hashnode.dev·Oct 11, 2023A Step-by-Step Guide to Adding Google Two-Factor Authentication (2FA) to Your Website Using PHPIn an increasingly digital world, ensuring the security of your users' accounts is of utmost importance. Two-Factor Authentication (2FA) adds an additional layer of security by requiring users to provide two different authentication factors. Google's...Discuss2FA
Piotrekkrpiotrekkr.hashnode.dev·Oct 6, 2023Dockerfile COPY command may not work as you expectAs the name suggests, docker COPY copies stuff from the host to the docker image, right? Right. Well, mostly right... TLDR You need to watch out for small details of how COPY in Dockerfile works. It is copying source directory contents and never the ...DiscussDockerfile
Gabi DobocanforSandwormblog.sandworm.dev·Sep 25, 2023PHP & Composer Support Is Here! 🐘We're excited to announce Sandworm is adding support for PHP via the Composer package manager. Composer has over 300,000 packages available, covering a wide range of functionality. This includes packages for web development, APIs, microservices, data...Discuss·495 readsPHP
Oybek Kholiqovoybeksblog.hashnode.dev·Sep 21, 2023Modifier in Jetpack ComposeModifiers allow you to decorate or augment a composable. Modifiers let you do these sorts of things: Change the composable's size, layout, behavior, and appearance Add information, like accessibility labels Process user input Add high-level inter...DiscussAndroid
Girdhar Kajalkajalgirdhar05.hashnode.dev·Aug 24, 2023Hosting Websites with Containers:Project Details: The objective of this project is to set up a Dockerized web hosting environment on AWS using Nginx. A separate EC2 instance is created for running a Docker container that hosts the website using a Docker image containing Nginx. Step-...Discuss·1 likedocker images
Sathir M. Mansoorsathir.hashnode.dev·Aug 22, 2023Install Composer in PHP Base Image Docker ContainerComposer is a tool for dependency management in PHP. It allows you to declare the libraries your project depends on and it will manage (install/update) them for you. System Requirements Composer in its latest version requires PHP 7.2.5 to run. A long...DiscussDocker
andrizanblog.andrizan.xyz·Aug 14, 2023Install Composer Ubuntu Serversudo apt-get install curl php8.2-cli php8.2-mbstring git unzip curl –sS https://getcomposer.org/installer | php sudo mv composer.phar /usr/local/bin/composer composer -VDiscusscomposer
Rhytham Negirhythamnegi.com·Jun 7, 2023Mastering Data Sharing Between Screens with Jetpack Compose: 5 Key TechniquesIntroduction Jetpack Compose is a modern toolkit for building Android user interfaces using Kotlin. One of the common problems when building an app is sharing data between different screens. There are many ways to do this, each with its advantages an...Discuss·10 likes·1.5K readsJetpack Compose