Skip to content

Instantly share code, notes, and snippets.

View MHitMaN's full-sized avatar
🌏
Deep Working!

MHitMaN MHitMaN

🌏
Deep Working!
View GitHub Profile

Testing Connectivity When ICMP Is Blocked (Firewall / DPI / GFW / Country-Level Restrictions)

تست ارتباط در شرایط مسدود بودن ICMP (Firewall / DPI / GFW / محدودیت‌های سطح کشوری)

🇮🇷 فارسی

وقتی پینگ (ICMP) یک سرور به بیرون بسته است، لزوماً به این معنی نیست که هیچ ارتباطی برقرار نمی‌شود. در بسیاری از شبکه‌ها فقط ICMP مسدود شده ولی ترافیک TCP یا UDP همچنان برقرار است.

@MHitMaN
MHitMaN / functions.php
Last active October 5, 2019 09:30
Fix edit block and row buttons RTL Visual Composer(WPBakery) Admin area WordPress
<?php
// Put this code into your current theme functions.
// This will fix your RTL issue with the controls row on Visual Composer(WPBakery).
add_action('admin_head', 'fix_rtl_wpbakery_css');
function fix_rtl_wpbakery_css() {
echo '<style>
.vc_controls-row {
direction: ltr;
@MHitMaN
MHitMaN / functions.php
Last active June 25, 2024 13:13
Edit before output (render) site content WordPress and modify content (Buffer) | Edit site content
<?php
/*
* WordPress modifying the output before render or edit site content.
*
* Apply find and replace rules
* or you can make any modification before content going on to show users.
*
* It's simple, just paste this code on your Plugin/Theme functions.
*/