These codes for Ephemerid.
First of all disable autop with this:
# wp-config.php
define('WPCF7_AUTOP', false);
Windows Registry Editor Version 5.00 | |
[-HKEY_CLASSES_ROOT\Directory\Background\shell\Cmder] | |
[-HKEY_CLASSES_ROOT\Directory\shell\Cmder] |
[ | |
{ | |
"sku":"BL00001-R01", | |
"store_view_code":"", | |
"attribute_set_code":"Default", | |
"product_type":"", | |
"categories":"Default Category/BİLEKLİK", | |
"product_websites":"base", | |
"name":"BL00001-R01", | |
"short_description":"", |
KL00567-R06,0 | |
KL00567-R08,0 | |
KL00568-G01,2 | |
KL00568-R01,6 | |
KL00569-R01,1 | |
KL00569-R03,0 | |
KL00569-R05,0 | |
KL00569-R07,0 | |
KL00569-R08,0 | |
KL00569-R12,3 |
server { | |
listen 80; | |
listen [::]:80; | |
server_name parkinson.irm.com.tr; | |
root /var/www/html/parkinson/public; | |
index index.php index.html index.htm; | |
location / { |
$.ajax( | |
'https://api.github.com/search/repositories?q=' + encodeURIComponent(search), | |
{ | |
// 'xhr' option overrides jQuery's default | |
// factory for the XMLHttpRequest object. | |
// Use either in global settings or individual call as shown here. | |
xhr: function() { | |
// Get new xhr object using default factory | |
var xhr = $.ajaxSettings.xhr(); | |
// Copy the browser's native setRequestHeader method |
#!/bin/bash | |
wget \ | |
--recursive \ | |
--no-clobber \ | |
--page-requisites \ | |
--html-extension \ | |
--convert-links \ | |
--restrict-file-names=unix \ | |
--domains domain.com \ |
<?php | |
$array1 = $array2 = array ( | |
0 => | |
array ( | |
'id' => '', | |
'name' => '', | |
'description' => null, | |
'categories' => false, | |
'posts' => '', |
{ | |
"+90": "Turkey", | |
"+93": "Afghanistan", | |
"+355": "Albania", | |
"+213": "Algeria", | |
"+1": "US Virgin Islands", | |
"+376": "Andorra", | |
"+244": "Angola", | |
"+54": "Argentina", | |
"+374": "Armenia", |
// Detailed source: https://css-tricks.com/capturing-all-events/ | |
var oldAddEventListener = EventTarget.prototype.addEventListener; | |
var disabled = ['mousemove', 'mouseover']; | |
EventTarget.prototype.addEventListener = function(eventName, eventHandler) | |
{ | |
if(disabled.indexOf(eventName) === -1) { | |
console.log(eventName, eventHandler.toString()); | |
} |