This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<select class="form-control" name="country"> | |
<option value="">Default store</option> | |
<option value="AF">Afghanistan</option> | |
<option value="AX">Åland Islands</option> | |
<option value="AL">Albania</option> | |
<option value="DZ:DZ-01">Algeria - Adrar</option> | |
<option value="DZ:DZ-02">Algeria - Chlef</option> | |
<option value="DZ:DZ-03">Algeria - Laghouat</option> | |
<option value="DZ:DZ-04">Algeria - Oum El Bouaghi</option> | |
<option value="DZ:DZ-05">Algeria - Batna</option> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//s.gravatar.com | |
//0.gravatar.com | |
//1.gravatar.com | |
//2.gravatar.com | |
//ad.doubleclick.net | |
//adservice.google.com | |
//ajax.aspnetcdn.com | |
//ajax.googleapis.com | |
//ajax.microsoft.com | |
//api.pinterest.com |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.site-logo { | |
font-size: 28px; | |
} | |
.payment_box { | |
padding: 15px; | |
margin: 5px 0 0; | |
} | |
#wc-stripe-card-element { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//wp.com | |
//c0.wp.com | |
//stats.wp.com | |
//static.xx.fbcdn.net | |
//connect.facebook.net | |
//www.facebook.com | |
//fonts.gstatic.com | |
//cse.google.com |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Domain Age | |
Keyword Appears in Top Level Domain | |
Keyword As First Word in Domain | |
Domain registration length | |
Keyword in Subdomain | |
Domain History | |
Exact Match Domain | |
Public vs. Private WhoIs | |
Penalized WhoIs Owner | |
Country TLD extension |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
int main() | |
{ | |
long int salary; //to store salary | |
long int newsalary; //to store temp salary | |
float tax; //to store tax | |
//char debug_msg[250]; // short msg | |
//input salary | |
printf("Enter yearly salary: "); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// WooCommerce Order Received Page 404 fix | |
// the correct url of order-received page is https://example.com/checkout/order-received/ which should work | |
// if you will try to use different url like https://example.com/order-received/ then you will get 404 | |
// You can have custom url / page / slug and use shortcode [my_order_id] [my_order_key] in the page | |
// add following function in your theme's functions.php file | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Following .htaccess entry was not working | |
upon examining properly, following code is just fine. | |
## EXPIRES CACHING ## | |
<IfModule mod_expires.c> | |
ExpiresActive On | |
ExpiresByType image/jpg "access plus 1 year" | |
ExpiresByType image/jpeg "access plus 1 year" | |
ExpiresByType image/gif "access plus 1 year" | |
ExpiresByType image/png "access plus 1 year" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head><title>SOUND</title></head> | |
<body> | |
<div>Frequence: <span id="frequency"></span></div> | |
<script type="text/javascript"> | |
var audioCtx = new (window.AudioContext || window.webkitAudioContext)(); | |
var oscillatorNode = audioCtx.createOscillator(); | |
var gainNode = audioCtx.createGain(); |
NewerOlder