Skip to content

Instantly share code, notes, and snippets.

View manutheblacker's full-sized avatar
🎯
Focusing

Emmanuel A. manutheblacker

🎯
Focusing
View GitHub Profile
@manutheblacker
manutheblacker / mautic-issue-with-email.txt
Last active May 28, 2023 16:24
how to fix biggest issue with mautic 3, 4 and other versions
Follow the instructions mentionned here :
https://github.com/mautic/mautic/issues/3942
I've spent 4 days, 4 nights to fix this issue, please be careful with your mautic nginx configuration.
If you use apache, just chill and have a nice day.
@manutheblacker
manutheblacker / SkeletonLoader.vue
Created November 25, 2022 13:28 — forked from andresabello/SkeletonLoader.vue
A skeleton loader for Vue JS. You will need to implement the setLoadingState. This one is just an example that hides the element after 5 seconds.
<template>
<div class="container">
<div class="row" v-show="loading">
<div class="col-xl-4 pt-5">
<div class="placeholder wave">
<div class="square"></div>
<div class="line"></div>
<div class="line"></div>
</div>
</div>
@manutheblacker
manutheblacker / code.php
Last active November 5, 2022 17:23
How to send SMS & WhatsApp messages both at the same time in Ultimate SMS & WhatsApp Notifications for WooCommerce?
<?php
add_filter('woo_usn_send_only_sms', function( $must_be_sent ){
$must_be_sent = true;
return $must_be_sent;
}, 99);
<?php
/**
* Escape all translations with
*/
__( ‘Some String’, ‘text-domain’ ); _e( ‘Some string’, ‘text-domain’ );.
/**
* When there is no HTML use:
*/
@manutheblacker
manutheblacker / add-custom-sms-gateway.php
Last active September 28, 2022 11:03
How to add custom sms gateway to Ultimate SMS Notifications for WooCommerce ?
<?php
// Use this filter to hide the default API settings.
add_filter('woo_usn_display_sms_api', '__return__false');
// Add your fields for filling SMS Gateways API Keys.
add_action('woo_usn_options_before_sms_api_fields', your_function_here(){
// display your fields here and make sure to add button to save the settings
});
@manutheblacker
manutheblacker / phpcs.md
Created September 16, 2022 03:02 — forked from PatelUtkarsh/phpcs.md
PHPCS for Linux

Installation

Install PEAR

sudo apt-get install php-pear

Install PHP_CodeSniffer

@manutheblacker
manutheblacker / index.html
Created August 3, 2022 06:07
Tailwind Navbar
<!-- navbar goes here -->
<nav class="bg-gray-100">
<div class="max-w-6xl mx-auto px-4">
<div class="flex justify-between">
<div class="flex space-x-4">
<!-- logo -->
<div>
<a href="#" class="flex items-center py-5 px-2 text-gray-700 hover:text-gray-900">
<svg class="h-6 w-6 mr-1 text-blue-400" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<div id="meet"></div>
@manutheblacker
manutheblacker / fix-wordpress-permissions.sh
Created February 11, 2022 20:05 — forked from Adirael/fix-wordpress-permissions.sh
Fix wordpress file permissions
#!/bin/bash
#
# This script configures WordPress file permissions based on recommendations
# from http://codex.wordpress.org/Hardening_WordPress#File_permissions
#
# Author: Michael Conigliaro <mike [at] conigliaro [dot] org>
#
WP_OWNER=www-data # <-- wordpress owner
WP_GROUP=www-data # <-- wordpress group
WP_ROOT=$1 # <-- wordpress root directory
@manutheblacker
manutheblacker / nginx-tuning.md
Created November 16, 2021 05:27 — forked from denji/nginx-tuning.md
NGINX tuning for best performance

Moved to git repository: https://github.com/denji/nginx-tuning

NGINX Tuning For Best Performance

For this configuration you can use web server you like, i decided, because i work mostly with it to use nginx.

Generally, properly configured nginx can handle up to 400K to 500K requests per second (clustered), most what i saw is 50K to 80K (non-clustered) requests per second and 30% CPU load, course, this was 2 x Intel Xeon with HyperThreading enabled, but it can work without problem on slower machines.

You must understand that this config is used in testing environment and not in production so you will need to find a way to implement most of those features best possible for your servers.