Skip to content

Instantly share code, notes, and snippets.

View himanshu8dev's full-sized avatar
🎯
Focusing

Himanshu himanshu8dev

🎯
Focusing
View GitHub Profile
@pvanfas
pvanfas / Awesome PHP.md
Last active March 12, 2025 10:10
A curated list of amazingly awesome PHP libraries, resources and shiny things.
#!/bin/bash
MAGE_BASE_URL="$1"
MAGE_SKU="$2"
PAYMENT_KEY="$3"
PAYMENT_METHOD="$4"
STORE_VIEW="$5"
CREDIT_CARD="$6"
CREDIT_CARD_CVC="$7"
@kvnxiao
kvnxiao / awesome-python-sorted-2020-09-27.md
Created September 27, 2020 06:22
awesome-python-sorted-2020-09-27.md
@justinhartman
justinhartman / 0_introduction.md
Last active July 11, 2023 08:23
Setup Azure Ubuntu 18.04 LEMP VM

How To Install Nginx, MySQL, PHP, SFTP on an Ubuntu Azure Virtual Machine

This series of documents will configure and setup a Nginx, MySQL, and PHP (LEMP) server on a basic Standard B1s (1 vcpus, 1 GiB memory) Ubuntu 16.04 or 18.04 LTS Virtual Machine on Microsoft Azure.

This will also install other useful packages and configurations for SFTP and a fully automated SSL service using certbot for Let's Encrypt.

The B1s is Azure's entry level Linux VM and only comes with 1 GiB memory so

@larapollehn
larapollehn / BESTPRACTICE.md
Created July 13, 2020 19:26
JavaScript's best practices check list

Clean JavaScript checklist

  • Proper logger with a default log level.
  • Unit testing of code. Unit tests have a chance to fail. Unit tests which can only pass are not useful.
  • Environment variables.
  • Strict linting rules.
  • JSDoc for code.
  • Proper README.
  • Extensive .gitignore to ignore everything unneeded.
  • Dockerfile file and docker-compose file included.
@ramunasnognys
ramunasnognys / wordpress-checklist.md
Last active May 29, 2025 17:53
Ultimate WordPress Checklist

WordPress Development Checklist

WordPress Setup Checklist

First things first. This first WordPress checklist will help you start out on the right foot when you start to create a WordPress website.

  • Purchase a domain name.
  • Purchase a hosting plan from a reputable hosting company that specializes in WordPress hosting.
  • Install the latest version of the WordPress software on your server.

Basic WordPress Development Checklist

The following developer WordPress checklist is a brief starting point. While there are a number of specific tasks that have to be done, everyone has their own way of doing things. Add to this list as you develop your own workflow.

  • Set up new domain in cPanel
@andrejIka
andrejIka / sample.md
Last active July 1, 2021 07:15
Best wordpress project ever

Use

  • custom class for queue
  • custom written wp-object class for caching, use redis
  • OOP - currently not everything is oop, twig not able to oop
  • mariadb
  • purge redis cache on post save - Put this on cron
  • PSR-4 autoload classes
  • timber everywhere
  • maximum symfony packages
@Pen-y-Fan
Pen-y-Fan / Info for PHPStorm.md
Last active October 13, 2025 15:05
PHPStorm Tips, Tricks and setup

PHPStorm

PhpStorm Tips, ticks and standard setup

  1. Tips and Tracks for PHPStorm (PHPStorm Tips and Tricks.md)
  2. Standard setup for PHP projects (Standard.md)