Skip to content

Instantly share code, notes, and snippets.

View vanduc1102's full-sized avatar
🐛
💯 💯 💩 😆 🐢

Duke Nguyen vanduc1102

🐛
💯 💯 💩 😆 🐢
View GitHub Profile
@vanduc1102
vanduc1102 / install.md
Last active August 17, 2020 04:45
Install .NET on MAC
@vanduc1102
vanduc1102 / site-ground.sh
Last active July 23, 2020 03:23
Site Ground Git Command to deploy
git remote add deploy-sit ssh://xxx@xxxxxx.sgvps.net:18765/home/your_username/public_html/test.yoursite.com/
git push deploy-sit your_local_branch:master -f
<?php
require __DIR__ . '/vendor/autoload.php';
# https://github.com/phpseclib/phpseclib
use phpseclib\Crypt\RSA;
$update_cache_url = $_GET['url'] ?? $_GET['link'] ?? '';
if( empty ($update_cache_url) || strpos($update_cache_url, 'https://www.sample.com.au/') === false ) {
die("Please provide a valid url, given: " . $update_cache_url);
}
# track this file .gitignore (i.e. do NOT ignore it)
!.gitignore
# ignore compiled / system files
*.com
*.class
*.dll
*.exe
*.o
*.so
setInterval(() => {document.querySelector(".invitation-card__action-btn").click()} , 3000);
@vanduc1102
vanduc1102 / .htaccess
Created June 18, 2020 13:53
PHP .htaccess environment variables
<IfModule mod_security.c>
SecFilterEngine Off
SecFilterScanPOST Off
</IfModule>
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
@vanduc1102
vanduc1102 / functions.php
Last active June 8, 2020 10:34
ampforwp add component script, e.g: amp-accordion
<?php
function prefix_add_amp_component_script( $data ) {
$data['amp_component_scripts']['amp-accordion'] = 'https://cdn.ampproject.org/v0/amp-accordion-0.1.js';
return $data;
}
add_filter( 'amp_post_template_data', 'prefix_add_amp_component_script' );
@vanduc1102
vanduc1102 / remove-dota.sh
Last active June 2, 2020 10:03
MacOS Remove Dota2 completely, Quit your Dota2 and Steam
rm -rf /Applications/Steam.app ~/Library/Application\ Support/Steam/
@vanduc1102
vanduc1102 / apache2.config
Last active June 30, 2020 06:51
Setup apache2 virtual hosts
SetEnv DB_USER root
SetEnv DB_PASSWORD test
SetEnv DB_HOST db
###### All content of apache2.config
Listen 7001
<VirtualHost *:7001>
DocumentRoot /var/www/html/api.local
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined