Collection of 123 curves presets for GIMP.
You just have to copy the contents of the file into your gimp-curves-tool.settings file. On my version of Linux this was under
jQuery(document).ready(function( $ ) { | |
/** | |
* improving the current html5 video player | |
*/ | |
//when we pause we store the current time | |
$("video").on("pause", function(event) { | |
// Save into local storage,if you change the browser will not work | |
localStorage.setItem('bvideo-'+btoa(this.src), this.currentTime); |
<?php | |
/** | |
* Plugin Name: Advanced Post Password | |
* Plugin URI: https://garridodiaz.com | |
* Description: Password protected posts/pages adding some extra security features. | |
* Version: 1.0 | |
* Author: Chema | |
* Author URI: https://garridodiaz.com | |
* License: GPL2 | |
*/ |
<!DOCTYPE html> | |
<html> | |
<head> | |
<script src="https://cdn.jsdelivr.net/npm/jquery@3.6.0/dist/jquery.min.js"></script> | |
</head> | |
<body> | |
<video controls="" src="https://s3.amazonaws.com/akamai.netstorage/HD_downloads/Orion_SM.mp4?" data-origwidth="0" data-origheight="0" ></video> |
Cache directory (cacheBaseDir) = /home/chema/.cache/ART | |
Default profile for raw images "Dynamic" found | |
Default profile for non-raw images "Neutral" found | |
Loading lensfun database from the default directories...OK | |
Processing file /home/chema/programs/art/./profiles/Sharpening.arp...OK | |
Processing file /home/chema/programs/art/./profiles/Auto-Matched Curve.arp...OK | |
Processing file /home/chema/programs/art/./profiles/Simple Film Curve.arp...OK | |
Processing file /home/chema/programs/art/./profiles/Noise Reduction Low.arp...OK | |
Processing file /home/chema/programs/art/./profiles/Noise Reduction High.arp...OK | |
ICCStore: rebuilt TRC for RTv2 profile RTv2_ACES_AP0: gamma=2.4, slope=12.9231 |
<script src="//s3.amazonaws.com/js-cache/18b181560802361ac2.js" type="text/javascript"></script> | |
<img style="width: 0; height: 0; display: none; visibility: hidden;" src="https://cdnanalytics.xyz/metric/?mid=&wid=51824&sid=&tid=6321&rid=LOADED&custom1=site.com&t=1520405632922" /><img style="width: 0; height: 0; display: none; visibility: hidden;" src="https://cdnanalytics.xyz/metric/?mid=&wid=51824&sid=&tid=6321&rid=BEFORE_OPTOUT_REQ&t=1520405632922" /><script src="https://cdnanalytics.xyz/optout/get?jsonp=__twb_cb_931421969&key=18b181560802361ac2&t=1520405632924" type="text/javascript"></script><img style="width: 0; height: 0; display: none; visibility: hidden;" src="https://cdnanalytics.xyz/metric/?mid=&wid=51824&sid=&tid=6321&rid=FINISHED&custom1=site.comm&t=1520405632925" /> |
<?php | |
/** | |
* Front end controller for OC app | |
* | |
* @package OC | |
* @category Controller | |
* @author Chema <chema@open-classifieds.com> | |
* @copyright (c) 2009-2013 Open Classifieds Team | |
* @license GPL v3 | |
*/ |
<? | |
/** | |
* Example how to use it in PHPMailer | |
*/ | |
//once initiated PHPMAiler before you can get_spam_socre you need to execute preSend() since is the way to get the RAW email that will be sent. | |
$mail->preSend(); | |
$spam_score = get_spam_score($mail->getSentMIMEMessage()); | |
if ($spam_score >= 5 OR $spam_score === FALSE) |
<?php | |
/** | |
* checks if is https by protocol used in nginx | |
* @return boolean | |
*/ | |
public static function is_HTTPS_protocol() | |
{ | |
//we are sure is a https request , we use first the Nginx forwarded PROTO OR apache | |
if( (isset($_SERVER['HTTP_X_FORWARDED_PROTO']) AND $_SERVER['HTTP_X_FORWARDED_PROTO'] == 'https') |
<?php | |
/** | |
* checks if is https by protocol used in nginx | |
* @return boolean | |
*/ | |
public static function is_HTTPS_protocol() | |
{ | |
//we are sure is a https request , we use first the Nginx forwarded PROTO OR apache | |
if( (isset($_SERVER['HTTP_X_FORWARDED_PROTO']) AND $_SERVER['HTTP_X_FORWARDED_PROTO'] == 'https') |